diff --git a/build/pdfmake.js b/build/pdfmake.js index 7864e4b9b..11d0204e7 100644 --- a/build/pdfmake.js +++ b/build/pdfmake.js @@ -1,4 +1,4 @@ -/*! pdfmake v0.2.23, @license MIT, @link http://pdfmake.org */ +/*! @wellcometrust/pdfmake v2.0.4, @license MIT, @link http://pdfmake.org */ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); @@ -12,35876 +12,9335 @@ return /******/ (function() { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ 464: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var IS_PURE = __webpack_require__(63432); -var store = __webpack_require__(55480); - -(module.exports = function (key, value) { - return store[key] || (store[key] = value !== undefined ? value : {}); -})('versions', []).push({ - version: '3.19.0', - mode: IS_PURE ? 'pure' : 'global', - copyright: '© 2021 Denis Pushkarev (zloirock.ru)' -}); - - -/***/ }), +/***/ 84490: +/***/ (function(__unused_webpack_module, exports) { -/***/ 520: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +"use strict"; -var getBuiltIn = __webpack_require__(38486); -module.exports = getBuiltIn('document', 'documentElement'); +// The following break classes are handled by the pair table +exports.OP = 0; // Opening punctuation +exports.CL = 1; // Closing punctuation +exports.CP = 2; // Closing parenthesis +exports.QU = 3; // Ambiguous quotation +exports.GL = 4; // Glue +exports.NS = 5; // Non-starters +exports.EX = 6; // Exclamation/Interrogation +exports.SY = 7; // Symbols allowing break after +exports.IS = 8; // Infix separator +exports.PR = 9; // Prefix +exports.PO = 10; // Postfix +exports.NU = 11; // Numeric +exports.AL = 12; // Alphabetic +exports.HL = 13; // Hebrew Letter +exports.ID = 14; // Ideographic +exports.IN = 15; // Inseparable characters +exports.HY = 16; // Hyphen +exports.BA = 17; // Break after +exports.BB = 18; // Break before +exports.B2 = 19; // Break on either side (but not pair) +exports.ZW = 20; // Zero-width space +exports.CM = 21; // Combining marks +exports.WJ = 22; // Word joiner +exports.H2 = 23; // Hangul LV +exports.H3 = 24; // Hangul LVT +exports.JL = 25; // Hangul L Jamo +exports.JV = 26; // Hangul V Jamo +exports.JT = 27; // Hangul T Jamo +exports.RI = 28; // Regional Indicator +exports.EB = 29; // Emoji Base +exports.EM = 30; // Emoji Modifier +exports.ZWJ = 31; // Zero Width Joiner +exports.CB = 32; // Contingent break +// The following break classes are not handled by the pair table +exports.AI = 33; // Ambiguous (Alphabetic or Ideograph) +exports.BK = 34; // Break (mandatory) +exports.CJ = 35; // Conditional Japanese Starter +exports.CR = 36; // Carriage return +exports.LF = 37; // Line feed +exports.NL = 38; // Next line +exports.SA = 39; // South-East Asian +exports.SG = 40; // Surrogates +exports.SP = 41; // Space +exports.XX = 42; // Unknown /***/ }), -/***/ 664: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var userAgent = __webpack_require__(40715); - -module.exports = /web0s(?!.*chrome)/i.test(userAgent); - +/***/ 5303: +/***/ (function(__unused_webpack_module, exports) { -/***/ }), +"use strict"; -/***/ 1083: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// TODO: Remove from `core-js@4` -__webpack_require__(71768); +var CI_BRK, CP_BRK, DI_BRK, IN_BRK, PR_BRK; +exports.DI_BRK = DI_BRK = 0; // Direct break opportunity +exports.IN_BRK = IN_BRK = 1; // Indirect break opportunity +exports.CI_BRK = CI_BRK = 2; // Indirect break opportunity for combining marks +exports.CP_BRK = CP_BRK = 3; // Prohibited break for combining marks +exports.PR_BRK = PR_BRK = 4; // Prohibited break +// Based on example pair table from https://www.unicode.org/reports/tr14/tr14-37.html#Table2 +// - ZWJ special processing for LB8a of Revision 41 +// - CB manually added as per Rule LB20 +// - CL, CP, NS, SY, IS, PR, PO, HY, BA, B2 and RI manually adjusted as per LB22 of Revision 45 +exports.pairTable = [ +//OP , CL , CP , QU , GL , NS , EX , SY , IS , PR , PO , NU , AL , HL , ID , IN , HY , BA , BB , B2 , ZW , CM , WJ , H2 , H3 , JL , JV , JT , RI , EB , EM , ZWJ , CB +[PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, CP_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK], +// OP +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// CL +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// CP +[PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], +// QU +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], +// GL +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// NS +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// EX +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// SY +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// IS +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK], +// PR +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// PO +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// NU +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// AL +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// HL +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// ID +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// IN +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, DI_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// HY +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, DI_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// BA +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK], +// BB +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, PR_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// B2 +[DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK], +// ZW +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// CM +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], +// WJ +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// H2 +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// H3 +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// JL +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// JV +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// JT +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// RI +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK], +// EB +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// EM +[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], +// ZWJ +[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, DI_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK] // CB +]; /***/ }), -/***/ 1239: -/***/ (function(module, exports, __webpack_require__) { +/***/ 62420: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { "use strict"; -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** @preserve - (c) 2012 by Cédric Mesnil. All rights reserved. - Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - 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. - 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. - */ - - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; - - // Constants table - var _zl = WordArray.create([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13]); - var _zr = WordArray.create([5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11]); - var _sl = WordArray.create([11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6]); - var _sr = WordArray.create([8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11]); - var _hl = WordArray.create([0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E]); - var _hr = WordArray.create([0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000]); - - /** - * RIPEMD160 hash algorithm. - */ - var RIPEMD160 = C_algo.RIPEMD160 = Hasher.extend({ - _doReset: function _doReset() { - this._hash = WordArray.create([0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]); - }, - _doProcessBlock: function _doProcessBlock(M, offset) { - // Swap endian - for (var i = 0; i < 16; i++) { - // Shortcuts - var offset_i = offset + i; - var M_offset_i = M[offset_i]; - - // Swap - M[offset_i] = (M_offset_i << 8 | M_offset_i >>> 24) & 0x00ff00ff | (M_offset_i << 24 | M_offset_i >>> 8) & 0xff00ff00; - } - // Shortcut - var H = this._hash.words; - var hl = _hl.words; - var hr = _hr.words; - var zl = _zl.words; - var zr = _zr.words; - var sl = _sl.words; - var sr = _sr.words; - - // Working variables - var al, bl, cl, dl, el; - var ar, br, cr, dr, er; - ar = al = H[0]; - br = bl = H[1]; - cr = cl = H[2]; - dr = dl = H[3]; - er = el = H[4]; - // Computation - var t; - for (var i = 0; i < 80; i += 1) { - t = al + M[offset + zl[i]] | 0; - if (i < 16) { - t += f1(bl, cl, dl) + hl[0]; - } else if (i < 32) { - t += f2(bl, cl, dl) + hl[1]; - } else if (i < 48) { - t += f3(bl, cl, dl) + hl[2]; - } else if (i < 64) { - t += f4(bl, cl, dl) + hl[3]; - } else { - // if (i<80) { - t += f5(bl, cl, dl) + hl[4]; - } - t = t | 0; - t = rotl(t, sl[i]); - t = t + el | 0; - al = el; - el = dl; - dl = rotl(cl, 10); - cl = bl; - bl = t; - t = ar + M[offset + zr[i]] | 0; - if (i < 16) { - t += f5(br, cr, dr) + hr[0]; - } else if (i < 32) { - t += f4(br, cr, dr) + hr[1]; - } else if (i < 48) { - t += f3(br, cr, dr) + hr[2]; - } else if (i < 64) { - t += f2(br, cr, dr) + hr[3]; - } else { - // if (i<80) { - t += f1(br, cr, dr) + hr[4]; - } - t = t | 0; - t = rotl(t, sr[i]); - t = t + er | 0; - ar = er; - er = dr; - dr = rotl(cr, 10); - cr = br; - br = t; - } - // Intermediate hash value - t = H[1] + cl + dr | 0; - H[1] = H[2] + dl + er | 0; - H[2] = H[3] + el + ar | 0; - H[3] = H[4] + al + br | 0; - H[4] = H[0] + bl + cr | 0; - H[0] = t; - }, - _doFinalize: function _doFinalize() { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; +__webpack_require__(18756); +exports.EncodeStream = __webpack_require__(95291); +exports.DecodeStream = __webpack_require__(69591); +exports.Array = __webpack_require__(68332); +exports.LazyArray = __webpack_require__(11610); +exports.Bitfield = __webpack_require__(60480); +exports.Boolean = __webpack_require__(75041); +exports.Buffer = __webpack_require__(56711); +exports.Enum = __webpack_require__(36316); +exports.Optional = __webpack_require__(64241); +exports.Reserved = __webpack_require__(13549); +exports.String = __webpack_require__(52676); +exports.Struct = __webpack_require__(88152); +exports.VersionedStruct = __webpack_require__(99757); +var utils = __webpack_require__(18128); +var NumberT = __webpack_require__(56128); +var Pointer = __webpack_require__(9324); +Object.assign(exports, utils, NumberT, Pointer); - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; - dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = (nBitsTotal << 8 | nBitsTotal >>> 24) & 0x00ff00ff | (nBitsTotal << 24 | nBitsTotal >>> 8) & 0xff00ff00; - data.sigBytes = (dataWords.length + 1) * 4; +/***/ }), - // Hash final blocks - this._process(); +/***/ 68332: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Shortcuts - var hash = this._hash; - var H = hash.words; +"use strict"; - // Swap endian - for (var i = 0; i < 5; i++) { - // Shortcut - var H_i = H[i]; - // Swap - H[i] = (H_i << 8 | H_i >>> 24) & 0x00ff00ff | (H_i << 24 | H_i >>> 8) & 0xff00ff00; +__webpack_require__(65292); +__webpack_require__(73844); +__webpack_require__(69330); +__webpack_require__(11765); +__webpack_require__(81755); +__webpack_require__(20731); +__webpack_require__(24863); +__webpack_require__(14032); +__webpack_require__(61726); +__webpack_require__(57114); +__webpack_require__(58281); +__webpack_require__(94712); +function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } +function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } +var _require = __webpack_require__(56128), + NumberT = _require.Number; +var utils = __webpack_require__(18128); +var ArrayT = /*#__PURE__*/function () { + function ArrayT(type, length, lengthType) { + if (lengthType === void 0) { + lengthType = 'count'; + } + this.type = type; + this.length = length; + this.lengthType = lengthType; + } + var _proto = ArrayT.prototype; + _proto.decode = function decode(stream, parent) { + var length; + var pos = stream.pos; + var res = []; + var ctx = parent; + if (this.length != null) { + length = utils.resolveLength(this.length, stream, parent); + } + if (this.length instanceof NumberT) { + // define hidden properties + Object.defineProperties(res, { + parent: { + value: parent + }, + _startOffset: { + value: pos + }, + _currentOffset: { + value: 0, + writable: true + }, + _length: { + value: length } - - // Return final computed hash - return hash; - }, - clone: function clone() { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - return clone; + }); + ctx = res; + } + if (length == null || this.lengthType === 'bytes') { + var target = length != null ? stream.pos + length : (parent != null ? parent._length : undefined) ? parent._startOffset + parent._length : stream.length; + while (stream.pos < target) { + res.push(this.type.decode(stream, ctx)); + } + } else { + for (var i = 0, end = length; i < end; i++) { + res.push(this.type.decode(stream, ctx)); } - }); - function f1(x, y, z) { - return x ^ y ^ z; } - function f2(x, y, z) { - return x & y | ~x & z; + return res; + }; + _proto.size = function size(array, ctx) { + if (!array) { + return this.type.size(null, ctx) * utils.resolveLength(this.length, null, ctx); } - function f3(x, y, z) { - return (x | ~y) ^ z; + var size = 0; + if (this.length instanceof NumberT) { + size += this.length.size(); + ctx = { + parent: ctx + }; } - function f4(x, y, z) { - return x & z | y & ~z; + for (var _iterator = _createForOfIteratorHelperLoose(array), _step; !(_step = _iterator()).done;) { + var item = _step.value; + size += this.type.size(item, ctx); } - function f5(x, y, z) { - return x ^ (y | ~z); + return size; + }; + _proto.encode = function encode(stream, array, parent) { + var ctx = parent; + if (this.length instanceof NumberT) { + ctx = { + pointers: [], + startOffset: stream.pos, + parent: parent + }; + ctx.pointerOffset = stream.pos + this.size(array, ctx); + this.length.encode(stream, array.length); } - function rotl(x, n) { - return x << n | x >>> 32 - n; + for (var _iterator2 = _createForOfIteratorHelperLoose(array), _step2; !(_step2 = _iterator2()).done;) { + var item = _step2.value; + this.type.encode(stream, item, ctx); } - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.RIPEMD160('message'); - * var hash = CryptoJS.RIPEMD160(wordArray); - */ - C.RIPEMD160 = Hasher._createHelper(RIPEMD160); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacRIPEMD160(message, key); - */ - C.HmacRIPEMD160 = Hasher._createHmacHelper(RIPEMD160); - })(Math); - return CryptoJS.RIPEMD160; -}); + if (this.length instanceof NumberT) { + var i = 0; + while (i < ctx.pointers.length) { + var ptr = ctx.pointers[i++]; + ptr.type.encode(stream, ptr.val); + } + } + }; + return ArrayT; +}(); +module.exports = ArrayT; /***/ }), -/***/ 1593: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 60480: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var call = __webpack_require__(2834); -var uncurryThis = __webpack_require__(38347); -var requireObjectCoercible = __webpack_require__(83943); -var isCallable = __webpack_require__(94578); -var isRegExp = __webpack_require__(28831); -var toString = __webpack_require__(25096); -var getMethod = __webpack_require__(51839); -var regExpFlags = __webpack_require__(21182); -var getSubstitution = __webpack_require__(29519); -var wellKnownSymbol = __webpack_require__(38688); -var IS_PURE = __webpack_require__(63432); - -var REPLACE = wellKnownSymbol('replace'); -var RegExpPrototype = RegExp.prototype; -var TypeError = global.TypeError; -var getFlags = uncurryThis(regExpFlags); -var indexOf = uncurryThis(''.indexOf); -var replace = uncurryThis(''.replace); -var stringSlice = uncurryThis(''.slice); -var max = Math.max; -var stringIndexOf = function (string, searchValue, fromIndex) { - if (fromIndex > string.length) return -1; - if (searchValue === '') return fromIndex; - return indexOf(string, searchValue, fromIndex); -}; - -// `String.prototype.replaceAll` method -// https://tc39.es/ecma262/#sec-string.prototype.replaceall -$({ target: 'String', proto: true }, { - replaceAll: function replaceAll(searchValue, replaceValue) { - var O = requireObjectCoercible(this); - var IS_REG_EXP, flags, replacer, string, searchString, functionalReplace, searchLength, advanceBy, replacement; - var position = 0; - var endOfLastMatch = 0; - var result = ''; - if (searchValue != null) { - IS_REG_EXP = isRegExp(searchValue); - if (IS_REG_EXP) { - flags = toString(requireObjectCoercible('flags' in RegExpPrototype - ? searchValue.flags - : getFlags(searchValue) - )); - if (!~indexOf(flags, 'g')) throw TypeError('`.replaceAll` does not allow non-global regexes'); - } - replacer = getMethod(searchValue, REPLACE); - if (replacer) { - return call(replacer, searchValue, O, replaceValue); - } else if (IS_PURE && IS_REG_EXP) { - return replace(toString(O), searchValue, replaceValue); - } +__webpack_require__(74516); +var Bitfield = /*#__PURE__*/function () { + function Bitfield(type, flags) { + if (flags === void 0) { + flags = []; } - string = toString(O); - searchString = toString(searchValue); - functionalReplace = isCallable(replaceValue); - if (!functionalReplace) replaceValue = toString(replaceValue); - searchLength = searchString.length; - advanceBy = max(1, searchLength); - position = stringIndexOf(string, searchString, 0); - while (position !== -1) { - replacement = functionalReplace - ? toString(replaceValue(searchString, position, string)) - : getSubstitution(searchString, string, position, [], undefined, replaceValue); - result += stringSlice(string, endOfLastMatch, position) + replacement; - endOfLastMatch = position + searchLength; - position = stringIndexOf(string, searchString, position + advanceBy); + this.type = type; + this.flags = flags; + } + var _proto = Bitfield.prototype; + _proto.decode = function decode(stream) { + var val = this.type.decode(stream); + var res = {}; + for (var i = 0; i < this.flags.length; i++) { + var flag = this.flags[i]; + if (flag != null) { + res[flag] = !!(val & 1 << i); + } } - if (endOfLastMatch < string.length) { - result += stringSlice(string, endOfLastMatch); + return res; + }; + _proto.size = function size() { + return this.type.size(); + }; + _proto.encode = function encode(stream, keys) { + var val = 0; + for (var i = 0; i < this.flags.length; i++) { + var flag = this.flags[i]; + if (flag != null) { + if (keys[flag]) { + val |= 1 << i; + } + } } - return result; - } -}); - + return this.type.encode(stream, val); + }; + return Bitfield; +}(); +module.exports = Bitfield; /***/ }), -/***/ 2256: -/***/ (function(module, exports, __webpack_require__) { +/***/ 75041: +/***/ (function(module) { "use strict"; -__webpack_require__(94845); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * UTF-16 BE encoding strategy. - */ - var Utf16BE = C_enc.Utf16 = C_enc.Utf16BE = { - /** - * Converts a word array to a UTF-16 BE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 BE string. - * - * @static - * - * @example - * - * var utf16String = CryptoJS.enc.Utf16.stringify(wordArray); - */ - stringify: function stringify(wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; +var BooleanT = /*#__PURE__*/function () { + function BooleanT(type) { + this.type = type; + } + var _proto = BooleanT.prototype; + _proto.decode = function decode(stream, parent) { + return !!this.type.decode(stream, parent); + }; + _proto.size = function size(val, parent) { + return this.type.size(val, parent); + }; + _proto.encode = function encode(stream, val, parent) { + return this.type.encode(stream, +val, parent); + }; + return BooleanT; +}(); +module.exports = BooleanT; - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff; - utf16Chars.push(String.fromCharCode(codePoint)); - } - return utf16Chars.join(''); - }, - /** - * Converts a UTF-16 BE string to a word array. - * - * @param {string} utf16Str The UTF-16 BE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16.parse(utf16String); - */ - parse: function parse(utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; +/***/ }), - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= utf16Str.charCodeAt(i) << 16 - i % 2 * 16; - } - return WordArray.create(words, utf16StrLength * 2); - } - }; +/***/ 56711: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - /** - * UTF-16 LE encoding strategy. - */ - C_enc.Utf16LE = { - /** - * Converts a word array to a UTF-16 LE string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-16 LE string. - * - * @static - * - * @example - * - * var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray); - */ - stringify: function stringify(wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; +"use strict"; - // Convert - var utf16Chars = []; - for (var i = 0; i < sigBytes; i += 2) { - var codePoint = swapEndian(words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff); - utf16Chars.push(String.fromCharCode(codePoint)); - } - return utf16Chars.join(''); - }, - /** - * Converts a UTF-16 LE string to a word array. - * - * @param {string} utf16Str The UTF-16 LE string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str); - */ - parse: function parse(utf16Str) { - // Shortcut - var utf16StrLength = utf16Str.length; - // Convert - var words = []; - for (var i = 0; i < utf16StrLength; i++) { - words[i >>> 1] |= swapEndian(utf16Str.charCodeAt(i) << 16 - i % 2 * 16); - } - return WordArray.create(words, utf16StrLength * 2); - } - }; - function swapEndian(word) { - return word << 8 & 0xff00ff00 | word >>> 8 & 0x00ff00ff; +var utils = __webpack_require__(18128); +var _require = __webpack_require__(56128), + NumberT = _require.Number; +var BufferT = /*#__PURE__*/function () { + function BufferT(length) { + this.length = length; + } + var _proto = BufferT.prototype; + _proto.decode = function decode(stream, parent) { + var length = utils.resolveLength(this.length, stream, parent); + return stream.readBuffer(length); + }; + _proto.size = function size(val, parent) { + if (!val) { + return utils.resolveLength(this.length, null, parent); } - })(); - return CryptoJS.enc.Utf16; -}); + return val.length; + }; + _proto.encode = function encode(stream, buf, parent) { + if (this.length instanceof NumberT) { + this.length.encode(stream, buf.length); + } + return stream.writeBuffer(buf); + }; + return BufferT; +}(); +module.exports = BufferT; /***/ }), -/***/ 2269: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 69591: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. - -var utils = __webpack_require__(72519); -var adler32 = __webpack_require__(46911); -var crc32 = __webpack_require__(99049); -var inflate_fast = __webpack_require__(96395); -var inflate_table = __webpack_require__(92920); - -var CODES = 0; -var LENS = 1; -var DISTS = 2; - -/* Public constants ==========================================================*/ -/* ===========================================================================*/ - - -/* Allowed flush values; see deflate() and inflate() below for details */ -//var Z_NO_FLUSH = 0; -//var Z_PARTIAL_FLUSH = 1; -//var Z_SYNC_FLUSH = 2; -//var Z_FULL_FLUSH = 3; -var Z_FINISH = 4; -var Z_BLOCK = 5; -var Z_TREES = 6; - - -/* Return codes for the compression/decompression functions. Negative values - * are errors, positive values are used for special but normal events. - */ -var Z_OK = 0; -var Z_STREAM_END = 1; -var Z_NEED_DICT = 2; -//var Z_ERRNO = -1; -var Z_STREAM_ERROR = -2; -var Z_DATA_ERROR = -3; -var Z_MEM_ERROR = -4; -var Z_BUF_ERROR = -5; -//var Z_VERSION_ERROR = -6; - -/* The deflate compression method */ -var Z_DEFLATED = 8; +__webpack_require__(20731); +__webpack_require__(14032); +__webpack_require__(61726); +__webpack_require__(57114); +__webpack_require__(46467); +var iconv; +try { + iconv = __webpack_require__(54171); +} catch (error) {} +var DecodeStream = /*#__PURE__*/function () { + function DecodeStream(buffer) { + this.buffer = buffer; + this.pos = 0; + this.length = this.buffer.length; + } + var _proto = DecodeStream.prototype; + _proto.readString = function readString(length, encoding) { + if (encoding === void 0) { + encoding = 'ascii'; + } + switch (encoding) { + case 'utf16le': + case 'ucs2': + case 'utf8': + case 'ascii': + return this.buffer.toString(encoding, this.pos, this.pos += length); + case 'utf16be': + var buf = Buffer.from(this.readBuffer(length)); + // swap the bytes + for (var i = 0, end = buf.length - 1; i < end; i += 2) { + var byte = buf[i]; + buf[i] = buf[i + 1]; + buf[i + 1] = byte; + } + return buf.toString('utf16le'); + default: + buf = this.readBuffer(length); + if (iconv) { + try { + return iconv.decode(buf, encoding); + } catch (error1) {} + } + return buf; + } + }; + _proto.readBuffer = function readBuffer(length) { + return this.buffer.slice(this.pos, this.pos += length); + }; + _proto.readUInt24BE = function readUInt24BE() { + return (this.readUInt16BE() << 8) + this.readUInt8(); + }; + _proto.readUInt24LE = function readUInt24LE() { + return this.readUInt16LE() + (this.readUInt8() << 16); + }; + _proto.readInt24BE = function readInt24BE() { + return (this.readInt16BE() << 8) + this.readUInt8(); + }; + _proto.readInt24LE = function readInt24LE() { + return this.readUInt16LE() + (this.readInt8() << 16); + }; + return DecodeStream; +}(); +DecodeStream.TYPES = { + UInt8: 1, + UInt16: 2, + UInt24: 3, + UInt32: 4, + Int8: 1, + Int16: 2, + Int24: 3, + Int32: 4, + Float: 4, + Double: 8 +}; +var _loop = function _loop(key) { + if (key.slice(0, 4) === 'read') { + var bytes = DecodeStream.TYPES[key.replace(/read|[BL]E/g, '')]; + DecodeStream.prototype[key] = function () { + var ret = this.buffer[key](this.pos); + this.pos += bytes; + return ret; + }; + } +}; +for (var key in Buffer.prototype) { + _loop(key); +} +module.exports = DecodeStream; -/* STATES ====================================================================*/ -/* ===========================================================================*/ +/***/ }), +/***/ 95291: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var HEAD = 1; /* i: waiting for magic header */ -var FLAGS = 2; /* i: waiting for method and flags (gzip) */ -var TIME = 3; /* i: waiting for modification time (gzip) */ -var OS = 4; /* i: waiting for extra flags and operating system (gzip) */ -var EXLEN = 5; /* i: waiting for extra length (gzip) */ -var EXTRA = 6; /* i: waiting for extra bytes (gzip) */ -var NAME = 7; /* i: waiting for end of file name (gzip) */ -var COMMENT = 8; /* i: waiting for end of comment (gzip) */ -var HCRC = 9; /* i: waiting for header crc (gzip) */ -var DICTID = 10; /* i: waiting for dictionary check value */ -var DICT = 11; /* waiting for inflateSetDictionary() call */ -var TYPE = 12; /* i: waiting for type bits, including last-flag bit */ -var TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */ -var STORED = 14; /* i: waiting for stored size (length and complement) */ -var COPY_ = 15; /* i/o: same as COPY below, but only first time in */ -var COPY = 16; /* i/o: waiting for input or output to copy stored block */ -var TABLE = 17; /* i: waiting for dynamic block table lengths */ -var LENLENS = 18; /* i: waiting for code length code lengths */ -var CODELENS = 19; /* i: waiting for length/lit and distance code lengths */ -var LEN_ = 20; /* i: same as LEN below, but only first time in */ -var LEN = 21; /* i: waiting for length/lit/eob code */ -var LENEXT = 22; /* i: waiting for length extra bits */ -var DIST = 23; /* i: waiting for distance code */ -var DISTEXT = 24; /* i: waiting for distance extra bits */ -var MATCH = 25; /* o: waiting for output space to copy string */ -var LIT = 26; /* o: waiting for output space to write literal */ -var CHECK = 27; /* i: waiting for 32-bit check value */ -var LENGTH = 28; /* i: waiting for 32-bit length (gzip) */ -var DONE = 29; /* finished check, done -- remain here until reset */ -var BAD = 30; /* got a data error -- remain here until reset */ -var MEM = 31; /* got an inflate() memory error -- remain here until reset */ -var SYNC = 32; /* looking for synchronization bytes to restart inflate() */ +"use strict"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; -/* ===========================================================================*/ +__webpack_require__(41584); +__webpack_require__(20731); +__webpack_require__(61726); +__webpack_require__(46467); +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +var iconv; +var stream = __webpack_require__(9760); +var DecodeStream = __webpack_require__(69591); +try { + iconv = __webpack_require__(54171); +} catch (error) {} +var EncodeStream = /*#__PURE__*/function (_stream$Readable) { + function EncodeStream(bufferSize) { + var _this; + if (bufferSize === void 0) { + bufferSize = 65536; + } + _this = _stream$Readable.apply(this, arguments) || this; + _this.buffer = Buffer.alloc(bufferSize); + _this.bufferOffset = 0; + _this.pos = 0; + return _this; + } + // do nothing, required by node + _inheritsLoose(EncodeStream, _stream$Readable); + var _proto = EncodeStream.prototype; + _proto._read = function _read() {}; + _proto.ensure = function ensure(bytes) { + if (this.bufferOffset + bytes > this.buffer.length) { + return this.flush(); + } + }; + _proto.flush = function flush() { + if (this.bufferOffset > 0) { + this.push(Buffer.from(this.buffer.slice(0, this.bufferOffset))); + return this.bufferOffset = 0; + } + }; + _proto.writeBuffer = function writeBuffer(buffer) { + this.flush(); + this.push(buffer); + return this.pos += buffer.length; + }; + _proto.writeString = function writeString(string, encoding) { + if (encoding === void 0) { + encoding = 'ascii'; + } + switch (encoding) { + case 'utf16le': + case 'ucs2': + case 'utf8': + case 'ascii': + return this.writeBuffer(Buffer.from(string, encoding)); + case 'utf16be': + var buf = Buffer.from(string, 'utf16le'); -var ENOUGH_LENS = 852; -var ENOUGH_DISTS = 592; -//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS); - -var MAX_WBITS = 15; -/* 32K LZ77 window */ -var DEF_WBITS = MAX_WBITS; - - -function zswap32(q) { - return (((q >>> 24) & 0xff) + - ((q >>> 8) & 0xff00) + - ((q & 0xff00) << 8) + - ((q & 0xff) << 24)); + // swap the bytes + for (var i = 0, end = buf.length - 1; i < end; i += 2) { + var byte = buf[i]; + buf[i] = buf[i + 1]; + buf[i + 1] = byte; + } + return this.writeBuffer(buf); + default: + if (iconv) { + return this.writeBuffer(iconv.encode(string, encoding)); + } else { + throw new Error('Install iconv-lite to enable additional string encodings.'); + } + } + }; + _proto.writeUInt24BE = function writeUInt24BE(val) { + this.ensure(3); + this.buffer[this.bufferOffset++] = val >>> 16 & 0xff; + this.buffer[this.bufferOffset++] = val >>> 8 & 0xff; + this.buffer[this.bufferOffset++] = val & 0xff; + return this.pos += 3; + }; + _proto.writeUInt24LE = function writeUInt24LE(val) { + this.ensure(3); + this.buffer[this.bufferOffset++] = val & 0xff; + this.buffer[this.bufferOffset++] = val >>> 8 & 0xff; + this.buffer[this.bufferOffset++] = val >>> 16 & 0xff; + return this.pos += 3; + }; + _proto.writeInt24BE = function writeInt24BE(val) { + if (val >= 0) { + return this.writeUInt24BE(val); + } else { + return this.writeUInt24BE(val + 0xffffff + 1); + } + }; + _proto.writeInt24LE = function writeInt24LE(val) { + if (val >= 0) { + return this.writeUInt24LE(val); + } else { + return this.writeUInt24LE(val + 0xffffff + 1); + } + }; + _proto.fill = function fill(val, length) { + if (length < this.buffer.length) { + this.ensure(length); + this.buffer.fill(val, this.bufferOffset, this.bufferOffset + length); + this.bufferOffset += length; + return this.pos += length; + } else { + var buf = Buffer.alloc(length); + buf.fill(val); + return this.writeBuffer(buf); + } + }; + _proto.end = function end() { + this.flush(); + return this.push(null); + }; + return EncodeStream; +}(stream.Readable); +var _loop = function _loop(key) { + if (key.slice(0, 5) === 'write') { + var bytes = +DecodeStream.TYPES[key.replace(/write|[BL]E/g, '')]; + EncodeStream.prototype[key] = function (value) { + this.ensure(bytes); + this.buffer[key](value, this.bufferOffset); + this.bufferOffset += bytes; + return this.pos += bytes; + }; + } +}; +for (var key in Buffer.prototype) { + _loop(key); } +module.exports = EncodeStream; +/***/ }), -function InflateState() { - this.mode = 0; /* current inflate mode */ - this.last = false; /* true if processing last block */ - this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */ - this.havedict = false; /* true if dictionary provided */ - this.flags = 0; /* gzip header method and flags (0 if zlib) */ - this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */ - this.check = 0; /* protected copy of check value */ - this.total = 0; /* protected copy of output count */ - // TODO: may be {} - this.head = null; /* where to save gzip header information */ - - /* sliding window */ - this.wbits = 0; /* log base 2 of requested window size */ - this.wsize = 0; /* window size or zero if not using window */ - this.whave = 0; /* valid bytes in the window */ - this.wnext = 0; /* window write index */ - this.window = null; /* allocated sliding window, if needed */ - - /* bit accumulator */ - this.hold = 0; /* input bit accumulator */ - this.bits = 0; /* number of bits in "in" */ +/***/ 36316: +/***/ (function(module) { - /* for string and stored block copying */ - this.length = 0; /* literal or length of data to copy */ - this.offset = 0; /* distance back to copy string from */ +"use strict"; - /* for table and code decoding */ - this.extra = 0; /* extra bits needed */ - /* fixed and dynamic code tables */ - this.lencode = null; /* starting table for length/literal codes */ - this.distcode = null; /* starting table for distance codes */ - this.lenbits = 0; /* index bits for lencode */ - this.distbits = 0; /* index bits for distcode */ +var Enum = /*#__PURE__*/function () { + function Enum(type, options) { + if (options === void 0) { + options = []; + } + this.type = type; + this.options = options; + } + var _proto = Enum.prototype; + _proto.decode = function decode(stream) { + var index = this.type.decode(stream); + return this.options[index] || index; + }; + _proto.size = function size() { + return this.type.size(); + }; + _proto.encode = function encode(stream, val) { + var index = this.options.indexOf(val); + if (index === -1) { + throw new Error("Unknown option in enum: " + val); + } + return this.type.encode(stream, index); + }; + return Enum; +}(); +module.exports = Enum; - /* dynamic table building */ - this.ncode = 0; /* number of code length code lengths */ - this.nlen = 0; /* number of length code lengths */ - this.ndist = 0; /* number of distance code lengths */ - this.have = 0; /* number of code lengths in lens[] */ - this.next = null; /* next available space in codes[] */ +/***/ }), - this.lens = new utils.Buf16(320); /* temporary storage for code lengths */ - this.work = new utils.Buf16(288); /* work area for code table building */ +/***/ 11610: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - /* - because we don't have pointers in js, we use lencode and distcode directly - as buffers so we don't need codes - */ - //this.codes = new utils.Buf32(ENOUGH); /* space for code tables */ - this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */ - this.distdyn = null; /* dynamic table for distance codes (JS specific) */ - this.sane = 0; /* if false, allow invalid distance too far */ - this.back = 0; /* bits back of last unprocessed length/lit */ - this.was = 0; /* initial length of match */ -} +"use strict"; -function inflateResetKeep(strm) { - var state; - if (!strm || !strm.state) { return Z_STREAM_ERROR; } - state = strm.state; - strm.total_in = strm.total_out = state.total = 0; - strm.msg = ''; /*Z_NULL*/ - if (state.wrap) { /* to support ill-conceived Java test suite */ - strm.adler = state.wrap & 1; +__webpack_require__(14032); +__webpack_require__(68067); +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +var ArrayT = __webpack_require__(68332); +var _require = __webpack_require__(56128), + NumberT = _require.Number; +var utils = __webpack_require__(18128); +var _require2 = __webpack_require__(7187), + _inspect = _require2.inspect; +var LazyArrayT = /*#__PURE__*/function (_ArrayT) { + function LazyArrayT() { + return _ArrayT.apply(this, arguments) || this; } - state.mode = HEAD; - state.last = 0; - state.havedict = 0; - state.dmax = 32768; - state.head = null/*Z_NULL*/; - state.hold = 0; - state.bits = 0; - //state.lencode = state.distcode = state.next = state.codes; - state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS); - state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS); - - state.sane = 1; - state.back = -1; - //Tracev((stderr, "inflate: reset\n")); - return Z_OK; -} - -function inflateReset(strm) { - var state; + _inheritsLoose(LazyArrayT, _ArrayT); + var _proto = LazyArrayT.prototype; + _proto.decode = function decode(stream, parent) { + var pos = stream.pos; + var length = utils.resolveLength(this.length, stream, parent); + if (this.length instanceof NumberT) { + parent = { + parent: parent, + _startOffset: pos, + _currentOffset: 0, + _length: length + }; + } + var res = new LazyArray(this.type, length, stream, parent); + stream.pos += length * this.type.size(null, parent); + return res; + }; + _proto.size = function size(val, ctx) { + if (val instanceof LazyArray) { + val = val.toArray(); + } + return _ArrayT.prototype.size.call(this, val, ctx); + }; + _proto.encode = function encode(stream, val, ctx) { + if (val instanceof LazyArray) { + val = val.toArray(); + } + return _ArrayT.prototype.encode.call(this, stream, val, ctx); + }; + return LazyArrayT; +}(ArrayT); +var LazyArray = /*#__PURE__*/function () { + function LazyArray(type, length, stream, ctx) { + this.type = type; + this.length = length; + this.stream = stream; + this.ctx = ctx; + this.base = this.stream.pos; + this.items = []; + } + var _proto2 = LazyArray.prototype; + _proto2.get = function get(index) { + if (index < 0 || index >= this.length) { + return undefined; + } + if (this.items[index] == null) { + var pos = this.stream.pos; + this.stream.pos = this.base + this.type.size(null, this.ctx) * index; + this.items[index] = this.type.decode(this.stream, this.ctx); + this.stream.pos = pos; + } + return this.items[index]; + }; + _proto2.toArray = function toArray() { + var result = []; + for (var i = 0, end = this.length; i < end; i++) { + result.push(this.get(i)); + } + return result; + }; + _proto2.inspect = function inspect() { + return _inspect(this.toArray()); + }; + return LazyArray; +}(); +module.exports = LazyArrayT; - if (!strm || !strm.state) { return Z_STREAM_ERROR; } - state = strm.state; - state.wsize = 0; - state.whave = 0; - state.wnext = 0; - return inflateResetKeep(strm); +/***/ }), -} +/***/ 56128: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { -function inflateReset2(strm, windowBits) { - var wrap; - var state; +"use strict"; - /* get the state */ - if (!strm || !strm.state) { return Z_STREAM_ERROR; } - state = strm.state; - /* extract wrap request from windowBits parameter */ - if (windowBits < 0) { - wrap = 0; - windowBits = -windowBits; - } - else { - wrap = (windowBits >> 4) + 1; - if (windowBits < 48) { - windowBits &= 15; +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +var DecodeStream = __webpack_require__(69591); +var NumberT = /*#__PURE__*/function () { + function NumberT(type, endian) { + if (endian === void 0) { + endian = 'BE'; + } + this.type = type; + this.endian = endian; + this.fn = this.type; + if (this.type[this.type.length - 1] !== '8') { + this.fn += this.endian; } } - - /* set number of window bits, free window if different */ - if (windowBits && (windowBits < 8 || windowBits > 15)) { - return Z_STREAM_ERROR; - } - if (state.window !== null && state.wbits !== windowBits) { - state.window = null; + var _proto = NumberT.prototype; + _proto.size = function size() { + return DecodeStream.TYPES[this.type]; + }; + _proto.decode = function decode(stream) { + return stream["read" + this.fn](); + }; + _proto.encode = function encode(stream, val) { + return stream["write" + this.fn](val); + }; + return NumberT; +}(); +exports.Number = NumberT; +exports.uint8 = new NumberT('UInt8'); +exports.uint16be = exports.uint16 = new NumberT('UInt16', 'BE'); +exports.uint16le = new NumberT('UInt16', 'LE'); +exports.uint24be = exports.uint24 = new NumberT('UInt24', 'BE'); +exports.uint24le = new NumberT('UInt24', 'LE'); +exports.uint32be = exports.uint32 = new NumberT('UInt32', 'BE'); +exports.uint32le = new NumberT('UInt32', 'LE'); +exports.int8 = new NumberT('Int8'); +exports.int16be = exports.int16 = new NumberT('Int16', 'BE'); +exports.int16le = new NumberT('Int16', 'LE'); +exports.int24be = exports.int24 = new NumberT('Int24', 'BE'); +exports.int24le = new NumberT('Int24', 'LE'); +exports.int32be = exports.int32 = new NumberT('Int32', 'BE'); +exports.int32le = new NumberT('Int32', 'LE'); +exports.floatbe = exports.float = new NumberT('Float', 'BE'); +exports.floatle = new NumberT('Float', 'LE'); +exports.doublebe = exports.double = new NumberT('Double', 'BE'); +exports.doublele = new NumberT('Double', 'LE'); +var Fixed = /*#__PURE__*/function (_NumberT) { + function Fixed(size, endian, fracBits) { + var _this; + if (fracBits === void 0) { + fracBits = size >> 1; + } + _this = _NumberT.call(this, "Int" + size, endian) || this; + _this._point = 1 << fracBits; + return _this; } + _inheritsLoose(Fixed, _NumberT); + var _proto2 = Fixed.prototype; + _proto2.decode = function decode(stream) { + return _NumberT.prototype.decode.call(this, stream) / this._point; + }; + _proto2.encode = function encode(stream, val) { + return _NumberT.prototype.encode.call(this, stream, val * this._point | 0); + }; + return Fixed; +}(NumberT); +exports.Fixed = Fixed; +exports.fixed16be = exports.fixed16 = new Fixed(16, 'BE'); +exports.fixed16le = new Fixed(16, 'LE'); +exports.fixed32be = exports.fixed32 = new Fixed(32, 'BE'); +exports.fixed32le = new Fixed(32, 'LE'); - /* update state and reset the rest of it */ - state.wrap = wrap; - state.wbits = windowBits; - return inflateReset(strm); -} +/***/ }), -function inflateInit2(strm, windowBits) { - var ret; - var state; +/***/ 64241: +/***/ (function(module) { - if (!strm) { return Z_STREAM_ERROR; } - //strm.msg = Z_NULL; /* in case we return an error */ +"use strict"; - state = new InflateState(); - //if (state === Z_NULL) return Z_MEM_ERROR; - //Tracev((stderr, "inflate: allocated\n")); - strm.state = state; - state.window = null/*Z_NULL*/; - ret = inflateReset2(strm, windowBits); - if (ret !== Z_OK) { - strm.state = null/*Z_NULL*/; +var Optional = /*#__PURE__*/function () { + function Optional(type, condition) { + if (condition === void 0) { + condition = true; + } + this.type = type; + this.condition = condition; } - return ret; -} - -function inflateInit(strm) { - return inflateInit2(strm, DEF_WBITS); -} - + var _proto = Optional.prototype; + _proto.decode = function decode(stream, parent) { + var condition = this.condition; + if (typeof condition === 'function') { + condition = condition.call(parent, parent); + } + if (condition) { + return this.type.decode(stream, parent); + } + }; + _proto.size = function size(val, parent) { + var condition = this.condition; + if (typeof condition === 'function') { + condition = condition.call(parent, parent); + } + if (condition) { + return this.type.size(val, parent); + } else { + return 0; + } + }; + _proto.encode = function encode(stream, val, parent) { + var condition = this.condition; + if (typeof condition === 'function') { + condition = condition.call(parent, parent); + } + if (condition) { + return this.type.encode(stream, val, parent); + } + }; + return Optional; +}(); +module.exports = Optional; -/* - Return state with length and distance decoding tables and index sizes set to - fixed code decoding. Normally this returns fixed tables from inffixed.h. - If BUILDFIXED is defined, then instead this routine builds the tables the - first time it's called, and returns those tables the first time and - thereafter. This reduces the size of the code by about 2K bytes, in - exchange for a little execution time. However, BUILDFIXED should not be - used for threaded applications, since the rewriting of the tables and virgin - may not be thread-safe. - */ -var virgin = true; +/***/ }), -var lenfix, distfix; // We have no pointers in JS, so keep tables separate +/***/ 9324: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { -function fixedtables(state) { - /* build fixed huffman tables if first call (may not be thread safe) */ - if (virgin) { - var sym; +"use strict"; - lenfix = new utils.Buf32(512); - distfix = new utils.Buf32(32); - /* literal/length table */ - sym = 0; - while (sym < 144) { state.lens[sym++] = 8; } - while (sym < 256) { state.lens[sym++] = 9; } - while (sym < 280) { state.lens[sym++] = 7; } - while (sym < 288) { state.lens[sym++] = 8; } +var utils = __webpack_require__(18128); +var Pointer = /*#__PURE__*/function () { + function Pointer(offsetType, type, options) { + if (options === void 0) { + options = {}; + } + this.offsetType = offsetType; + this.type = type; + this.options = options; + if (this.type === 'void') { + this.type = null; + } + if (this.options.type == null) { + this.options.type = 'local'; + } + if (this.options.allowNull == null) { + this.options.allowNull = true; + } + if (this.options.nullValue == null) { + this.options.nullValue = 0; + } + if (this.options.lazy == null) { + this.options.lazy = false; + } + if (this.options.relativeTo) { + if (typeof this.options.relativeTo !== 'function') { + throw new Error('relativeTo option must be a function'); + } + this.relativeToGetter = options.relativeTo; + } + } + var _proto = Pointer.prototype; + _proto.decode = function decode(stream, ctx) { + var _this = this; + var offset = this.offsetType.decode(stream, ctx); - inflate_table(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 }); + // handle NULL pointers + if (offset === this.options.nullValue && this.options.allowNull) { + return null; + } + var relative; + switch (this.options.type) { + case 'local': + relative = ctx._startOffset; + break; + case 'immediate': + relative = stream.pos - this.offsetType.size(); + break; + case 'parent': + relative = ctx.parent._startOffset; + break; + default: + var c = ctx; + while (c.parent) { + c = c.parent; + } + relative = c._startOffset || 0; + } + if (this.options.relativeTo) { + relative += this.relativeToGetter(ctx); + } + var ptr = offset + relative; + if (this.type != null) { + var val = null; + var decodeValue = function decodeValue() { + if (val != null) { + return val; + } + var pos = stream.pos; + stream.pos = ptr; + val = _this.type.decode(stream, ctx); + stream.pos = pos; + return val; + }; - /* distance table */ - sym = 0; - while (sym < 32) { state.lens[sym++] = 5; } + // If this is a lazy pointer, define a getter to decode only when needed. + // This obviously only works when the pointer is contained by a Struct. + if (this.options.lazy) { + return new utils.PropertyDescriptor({ + get: decodeValue + }); + } + return decodeValue(); + } else { + return ptr; + } + }; + _proto.size = function size(val, ctx) { + var parent = ctx; + switch (this.options.type) { + case 'local': + case 'immediate': + break; + case 'parent': + ctx = ctx.parent; + break; + default: + // global + while (ctx.parent) { + ctx = ctx.parent; + } + } + var type = this.type; + if (type == null) { + if (!(val instanceof VoidPointer)) { + throw new Error("Must be a VoidPointer"); + } + var _val = val; + type = _val.type; + val = val.value; + } + if (val && ctx) { + ctx.pointerSize += type.size(val, parent); + } + return this.offsetType.size(); + }; + _proto.encode = function encode(stream, val, ctx) { + var relative; + var parent = ctx; + if (val == null) { + this.offsetType.encode(stream, this.options.nullValue); + return; + } + switch (this.options.type) { + case 'local': + relative = ctx.startOffset; + break; + case 'immediate': + relative = stream.pos + this.offsetType.size(val, parent); + break; + case 'parent': + ctx = ctx.parent; + relative = ctx.startOffset; + break; + default: + // global + relative = 0; + while (ctx.parent) { + ctx = ctx.parent; + } + } + if (this.options.relativeTo) { + relative += this.relativeToGetter(parent.val); + } + this.offsetType.encode(stream, ctx.pointerOffset - relative); + var type = this.type; + if (type == null) { + if (!(val instanceof VoidPointer)) { + throw new Error("Must be a VoidPointer"); + } + var _val2 = val; + type = _val2.type; + val = val.value; + } + ctx.pointers.push({ + type: type, + val: val, + parent: parent + }); + return ctx.pointerOffset += type.size(val, parent); + }; + return Pointer; +}(); // A pointer whose type is determined at decode time +var VoidPointer = function VoidPointer(type, value) { + this.type = type; + this.value = value; +}; +exports.Pointer = Pointer; +exports.VoidPointer = VoidPointer; - inflate_table(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 }); +/***/ }), - /* do this just once */ - virgin = false; - } +/***/ 13549: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - state.lencode = lenfix; - state.lenbits = 9; - state.distcode = distfix; - state.distbits = 5; -} +"use strict"; -/* - Update the window with the last wsize (normally 32K) bytes written before - returning. If window does not exist yet, create it. This is only called - when a window is already in use, or when output has been written during this - inflate call, but the end of the deflate stream has not been reached yet. - It is also called to create a window for dictionary data when a dictionary - is loaded. +__webpack_require__(41584); +var utils = __webpack_require__(18128); +var Reserved = /*#__PURE__*/function () { + function Reserved(type, count) { + if (count === void 0) { + count = 1; + } + this.type = type; + this.count = count; + } + var _proto = Reserved.prototype; + _proto.decode = function decode(stream, parent) { + stream.pos += this.size(null, parent); + return undefined; + }; + _proto.size = function size(data, parent) { + var count = utils.resolveLength(this.count, null, parent); + return this.type.size() * count; + }; + _proto.encode = function encode(stream, val, parent) { + return stream.fill(0, this.size(val, parent)); + }; + return Reserved; +}(); +module.exports = Reserved; - Providing output buffers larger than 32K to inflate() should provide a speed - advantage, since only the last 32K of output is copied to the sliding window - upon return from inflate(), and since all distances after the first 32K of - output will fall in the output data, making match copies simpler and faster. - The advantage may be dependent on the size of the processor's data caches. - */ -function updatewindow(strm, src, end, copy) { - var dist; - var state = strm.state; +/***/ }), - /* if it hasn't been done already, allocate space for the window */ - if (state.window === null) { - state.wsize = 1 << state.wbits; - state.wnext = 0; - state.whave = 0; +/***/ 52676: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - state.window = new utils.Buf8(state.wsize); - } +"use strict"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; - /* copy state->wsize or less output bytes into the circular window */ - if (copy >= state.wsize) { - utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0); - state.wnext = 0; - state.whave = state.wsize; + +var _require = __webpack_require__(56128), + NumberT = _require.Number; +var utils = __webpack_require__(18128); +var StringT = /*#__PURE__*/function () { + function StringT(length, encoding) { + if (encoding === void 0) { + encoding = 'ascii'; + } + this.length = length; + this.encoding = encoding; } - else { - dist = state.wsize - state.wnext; - if (dist > copy) { - dist = copy; + var _proto = StringT.prototype; + _proto.decode = function decode(stream, parent) { + var length, pos; + if (this.length != null) { + length = utils.resolveLength(this.length, stream, parent); + } else { + var buffer; + buffer = stream.buffer; + length = stream.length; + pos = stream.pos; + while (pos < length && buffer[pos] !== 0x00) { + ++pos; + } + length = pos - stream.pos; } - //zmemcpy(state->window + state->wnext, end - copy, dist); - utils.arraySet(state.window, src, end - copy, dist, state.wnext); - copy -= dist; - if (copy) { - //zmemcpy(state->window, end - copy, copy); - utils.arraySet(state.window, src, end - copy, copy, 0); - state.wnext = copy; - state.whave = state.wsize; + var encoding = this.encoding; + if (typeof encoding === 'function') { + encoding = encoding.call(parent, parent) || 'ascii'; } - else { - state.wnext += dist; - if (state.wnext === state.wsize) { state.wnext = 0; } - if (state.whave < state.wsize) { state.whave += dist; } + var string = stream.readString(length, encoding); + if (this.length == null && stream.pos < stream.length) { + stream.pos++; } - } - return 0; -} + return string; + }; + _proto.size = function size(val, parent) { + // Use the defined value if no value was given + if (!val) { + return utils.resolveLength(this.length, null, parent); + } + var encoding = this.encoding; + if (typeof encoding === 'function') { + encoding = encoding.call(parent != null ? parent.val : undefined, parent != null ? parent.val : undefined) || 'ascii'; + } + if (encoding === 'utf16be') { + encoding = 'utf16le'; + } + var size = Buffer.byteLength(val, encoding); + if (this.length instanceof NumberT) { + size += this.length.size(); + } + if (this.length == null) { + size++; + } + return size; + }; + _proto.encode = function encode(stream, val, parent) { + var encoding = this.encoding; + if (typeof encoding === 'function') { + encoding = encoding.call(parent != null ? parent.val : undefined, parent != null ? parent.val : undefined) || 'ascii'; + } + if (this.length instanceof NumberT) { + this.length.encode(stream, Buffer.byteLength(val, encoding)); + } + stream.writeString(val, encoding); + if (this.length == null) { + return stream.writeUInt8(0x00); + } + }; + return StringT; +}(); +module.exports = StringT; -function inflate(strm, flush) { - var state; - var input, output; // input/output buffers - var next; /* next input INDEX */ - var put; /* next output INDEX */ - var have, left; /* available input and output */ - var hold; /* bit buffer */ - var bits; /* bits in bit buffer */ - var _in, _out; /* save starting available input and output */ - var copy; /* number of stored or match bytes to copy */ - var from; /* where to copy match bytes from */ - var from_source; - var here = 0; /* current decoding table entry */ - var here_bits, here_op, here_val; // paked "here" denormalized (JS specific) - //var last; /* parent table entry */ - var last_bits, last_op, last_val; // paked "last" denormalized (JS specific) - var len; /* length to copy for repeats, bits to drop */ - var ret; /* return code */ - var hbuf = new utils.Buf8(4); /* buffer for gzip header crc calculation */ - var opts; +/***/ }), - var n; // temporary var for NEED_BITS +/***/ 88152: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - var order = /* permutation of code lengths */ - [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]; +"use strict"; - if (!strm || !strm.state || !strm.output || - (!strm.input && strm.avail_in !== 0)) { - return Z_STREAM_ERROR; +var utils = __webpack_require__(18128); +var Struct = /*#__PURE__*/function () { + function Struct(fields) { + if (fields === void 0) { + fields = {}; + } + this.fields = fields; } + var _proto = Struct.prototype; + _proto.decode = function decode(stream, parent, length) { + if (length === void 0) { + length = 0; + } + var res = this._setup(stream, parent, length); + this._parseFields(stream, res, this.fields); + if (this.process != null) { + this.process.call(res, stream); + } + return res; + }; + _proto._setup = function _setup(stream, parent, length) { + var res = {}; - state = strm.state; - if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */ + // define hidden properties + Object.defineProperties(res, { + parent: { + value: parent + }, + _startOffset: { + value: stream.pos + }, + _currentOffset: { + value: 0, + writable: true + }, + _length: { + value: length + } + }); + return res; + }; + _proto._parseFields = function _parseFields(stream, res, fields) { + for (var key in fields) { + var val; + var type = fields[key]; + if (typeof type === 'function') { + val = type.call(res, res); + } else { + val = type.decode(stream, res); + } + if (val !== undefined) { + if (val instanceof utils.PropertyDescriptor) { + Object.defineProperty(res, key, val); + } else { + res[key] = val; + } + } + res._currentOffset = stream.pos - res._startOffset; + } + }; + _proto.size = function size(val, parent, includePointers) { + if (val == null) { + val = {}; + } + if (includePointers == null) { + includePointers = true; + } + var ctx = { + parent: parent, + val: val, + pointerSize: 0 + }; + var size = 0; + for (var key in this.fields) { + var type = this.fields[key]; + if (type.size != null) { + size += type.size(val[key], ctx); + } + } + if (includePointers) { + size += ctx.pointerSize; + } + return size; + }; + _proto.encode = function encode(stream, val, parent) { + var type; + if (this.preEncode != null) { + this.preEncode.call(val, stream); + } + var ctx = { + pointers: [], + startOffset: stream.pos, + parent: parent, + val: val, + pointerSize: 0 + }; + ctx.pointerOffset = stream.pos + this.size(val, ctx, false); + for (var key in this.fields) { + type = this.fields[key]; + if (type.encode != null) { + type.encode(stream, val[key], ctx); + } + } + var i = 0; + while (i < ctx.pointers.length) { + var ptr = ctx.pointers[i++]; + ptr.type.encode(stream, ptr.val, ptr.parent); + } + }; + return Struct; +}(); +module.exports = Struct; +/***/ }), - //--- LOAD() --- - put = strm.next_out; - output = strm.output; - left = strm.avail_out; - next = strm.next_in; - input = strm.input; - have = strm.avail_in; - hold = state.hold; - bits = state.bits; - //--- +/***/ 99757: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - _in = have; - _out = left; - ret = Z_OK; +"use strict"; - inf_leave: // goto emulation - for (;;) { - switch (state.mode) { - case HEAD: - if (state.wrap === 0) { - state.mode = TYPEDO; - break; - } - //=== NEEDBITS(16); - while (bits < 16) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */ - state.check = 0/*crc32(0L, Z_NULL, 0)*/; - //=== CRC2(state.check, hold); - hbuf[0] = hold & 0xff; - hbuf[1] = (hold >>> 8) & 0xff; - state.check = crc32(state.check, hbuf, 2, 0); - //===// - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = FLAGS; - break; - } - state.flags = 0; /* expect zlib header */ - if (state.head) { - state.head.done = false; - } - if (!(state.wrap & 1) || /* check if zlib header allowed */ - (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) { - strm.msg = 'incorrect header check'; - state.mode = BAD; - break; - } - if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) { - strm.msg = 'unknown compression method'; - state.mode = BAD; - break; - } - //--- DROPBITS(4) ---// - hold >>>= 4; - bits -= 4; - //---// - len = (hold & 0x0f)/*BITS(4)*/ + 8; - if (state.wbits === 0) { - state.wbits = len; - } - else if (len > state.wbits) { - strm.msg = 'invalid window size'; - state.mode = BAD; - break; - } - state.dmax = 1 << len; - //Tracev((stderr, "inflate: zlib header ok\n")); - strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; - state.mode = hold & 0x200 ? DICTID : TYPE; - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - break; - case FLAGS: - //=== NEEDBITS(16); */ - while (bits < 16) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.flags = hold; - if ((state.flags & 0xff) !== Z_DEFLATED) { - strm.msg = 'unknown compression method'; - state.mode = BAD; - break; - } - if (state.flags & 0xe000) { - strm.msg = 'unknown header flags set'; - state.mode = BAD; - break; - } - if (state.head) { - state.head.text = ((hold >> 8) & 1); - } - if (state.flags & 0x0200) { - //=== CRC2(state.check, hold); - hbuf[0] = hold & 0xff; - hbuf[1] = (hold >>> 8) & 0xff; - state.check = crc32(state.check, hbuf, 2, 0); - //===// - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = TIME; - /* falls through */ - case TIME: - //=== NEEDBITS(32); */ - while (bits < 32) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if (state.head) { - state.head.time = hold; - } - if (state.flags & 0x0200) { - //=== CRC4(state.check, hold) - hbuf[0] = hold & 0xff; - hbuf[1] = (hold >>> 8) & 0xff; - hbuf[2] = (hold >>> 16) & 0xff; - hbuf[3] = (hold >>> 24) & 0xff; - state.check = crc32(state.check, hbuf, 4, 0); - //=== - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = OS; - /* falls through */ - case OS: - //=== NEEDBITS(16); */ - while (bits < 16) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if (state.head) { - state.head.xflags = (hold & 0xff); - state.head.os = (hold >> 8); - } - if (state.flags & 0x0200) { - //=== CRC2(state.check, hold); - hbuf[0] = hold & 0xff; - hbuf[1] = (hold >>> 8) & 0xff; - state.check = crc32(state.check, hbuf, 2, 0); - //===// - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = EXLEN; - /* falls through */ - case EXLEN: - if (state.flags & 0x0400) { - //=== NEEDBITS(16); */ - while (bits < 16) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.length = hold; - if (state.head) { - state.head.extra_len = hold; - } - if (state.flags & 0x0200) { - //=== CRC2(state.check, hold); - hbuf[0] = hold & 0xff; - hbuf[1] = (hold >>> 8) & 0xff; - state.check = crc32(state.check, hbuf, 2, 0); - //===// - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - } - else if (state.head) { - state.head.extra = null/*Z_NULL*/; +__webpack_require__(14032); +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +var Struct = __webpack_require__(88152); +var getPath = function getPath(object, pathArray) { + return pathArray.reduce(function (prevObj, key) { + return prevObj && prevObj[key]; + }, object); +}; +var VersionedStruct = /*#__PURE__*/function (_Struct) { + function VersionedStruct(type, versions) { + var _this; + if (versions === void 0) { + versions = {}; + } + _this = _Struct.call(this) || this; + _this.type = type; + _this.versions = versions; + if (typeof type === 'string') { + _this.versionPath = type.split('.'); + } + return _this; + } + _inheritsLoose(VersionedStruct, _Struct); + var _proto = VersionedStruct.prototype; + _proto.decode = function decode(stream, parent, length) { + if (length === void 0) { + length = 0; + } + var res = this._setup(stream, parent, length); + if (typeof this.type === 'string') { + res.version = getPath(parent, this.versionPath); + } else { + res.version = this.type.decode(stream); + } + if (this.versions.header) { + this._parseFields(stream, res, this.versions.header); + } + var fields = this.versions[res.version]; + if (fields == null) { + throw new Error("Unknown version " + res.version); + } + if (fields instanceof VersionedStruct) { + return fields.decode(stream, parent); + } + this._parseFields(stream, res, fields); + if (this.process != null) { + this.process.call(res, stream); + } + return res; + }; + _proto.size = function size(val, parent, includePointers) { + if (includePointers === void 0) { + includePointers = true; + } + var key, type; + if (!val) { + throw new Error('Not a fixed size'); + } + var ctx = { + parent: parent, + val: val, + pointerSize: 0 + }; + var size = 0; + if (typeof this.type !== 'string') { + size += this.type.size(val.version, ctx); + } + if (this.versions.header) { + for (key in this.versions.header) { + type = this.versions.header[key]; + if (type.size != null) { + size += type.size(val[key], ctx); } - state.mode = EXTRA; - /* falls through */ - case EXTRA: - if (state.flags & 0x0400) { - copy = state.length; - if (copy > have) { copy = have; } - if (copy) { - if (state.head) { - len = state.head.extra_len - state.length; - if (!state.head.extra) { - // Use untyped array for more convenient processing later - state.head.extra = new Array(state.head.extra_len); - } - utils.arraySet( - state.head.extra, - input, - next, - // extra field is limited to 65536 bytes - // - no need for additional size check - copy, - /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/ - len - ); - //zmemcpy(state.head.extra + len, next, - // len + copy > state.head.extra_max ? - // state.head.extra_max - len : copy); - } - if (state.flags & 0x0200) { - state.check = crc32(state.check, input, copy, next); - } - have -= copy; - next += copy; - state.length -= copy; - } - if (state.length) { break inf_leave; } + } + } + var fields = this.versions[val.version]; + if (fields == null) { + throw new Error("Unknown version " + val.version); + } + for (key in fields) { + type = fields[key]; + if (type.size != null) { + size += type.size(val[key], ctx); + } + } + if (includePointers) { + size += ctx.pointerSize; + } + return size; + }; + _proto.encode = function encode(stream, val, parent) { + var key, type; + if (this.preEncode != null) { + this.preEncode.call(val, stream); + } + var ctx = { + pointers: [], + startOffset: stream.pos, + parent: parent, + val: val, + pointerSize: 0 + }; + ctx.pointerOffset = stream.pos + this.size(val, ctx, false); + if (typeof this.type !== 'string') { + this.type.encode(stream, val.version); + } + if (this.versions.header) { + for (key in this.versions.header) { + type = this.versions.header[key]; + if (type.encode != null) { + type.encode(stream, val[key], ctx); } - state.length = 0; - state.mode = NAME; - /* falls through */ - case NAME: - if (state.flags & 0x0800) { - if (have === 0) { break inf_leave; } - copy = 0; - do { - // TODO: 2 or 1 bytes? - len = input[next + copy++]; - /* use constant limit because in js we should not preallocate memory */ - if (state.head && len && - (state.length < 65536 /*state.head.name_max*/)) { - state.head.name += String.fromCharCode(len); - } - } while (len && copy < have); + } + } + var fields = this.versions[val.version]; + for (key in fields) { + type = fields[key]; + if (type.encode != null) { + type.encode(stream, val[key], ctx); + } + } + var i = 0; + while (i < ctx.pointers.length) { + var ptr = ctx.pointers[i++]; + ptr.type.encode(stream, ptr.val, ptr.parent); + } + }; + return VersionedStruct; +}(Struct); +module.exports = VersionedStruct; - if (state.flags & 0x0200) { - state.check = crc32(state.check, input, copy, next); - } - have -= copy; - next += copy; - if (len) { break inf_leave; } - } - else if (state.head) { - state.head.name = null; - } - state.length = 0; - state.mode = COMMENT; - /* falls through */ - case COMMENT: - if (state.flags & 0x1000) { - if (have === 0) { break inf_leave; } - copy = 0; - do { - len = input[next + copy++]; - /* use constant limit because in js we should not preallocate memory */ - if (state.head && len && - (state.length < 65536 /*state.head.comm_max*/)) { - state.head.comment += String.fromCharCode(len); - } - } while (len && copy < have); - if (state.flags & 0x0200) { - state.check = crc32(state.check, input, copy, next); - } - have -= copy; - next += copy; - if (len) { break inf_leave; } - } - else if (state.head) { - state.head.comment = null; - } - state.mode = HCRC; - /* falls through */ - case HCRC: - if (state.flags & 0x0200) { - //=== NEEDBITS(16); */ - while (bits < 16) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if (hold !== (state.check & 0xffff)) { - strm.msg = 'header crc mismatch'; - state.mode = BAD; - break; - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - } - if (state.head) { - state.head.hcrc = ((state.flags >> 9) & 1); - state.head.done = true; - } - strm.adler = state.check = 0; - state.mode = TYPE; - break; - case DICTID: - //=== NEEDBITS(32); */ - while (bits < 32) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - strm.adler = state.check = zswap32(hold); - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = DICT; - /* falls through */ - case DICT: - if (state.havedict === 0) { - //--- RESTORE() --- - strm.next_out = put; - strm.avail_out = left; - strm.next_in = next; - strm.avail_in = have; - state.hold = hold; - state.bits = bits; - //--- - return Z_NEED_DICT; - } - strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; - state.mode = TYPE; - /* falls through */ - case TYPE: - if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; } - /* falls through */ - case TYPEDO: - if (state.last) { - //--- BYTEBITS() ---// - hold >>>= bits & 7; - bits -= bits & 7; - //---// - state.mode = CHECK; - break; - } - //=== NEEDBITS(3); */ - while (bits < 3) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.last = (hold & 0x01)/*BITS(1)*/; - //--- DROPBITS(1) ---// - hold >>>= 1; - bits -= 1; - //---// +/***/ }), - switch ((hold & 0x03)/*BITS(2)*/) { - case 0: /* stored block */ - //Tracev((stderr, "inflate: stored block%s\n", - // state.last ? " (last)" : "")); - state.mode = STORED; - break; - case 1: /* fixed block */ - fixedtables(state); - //Tracev((stderr, "inflate: fixed codes block%s\n", - // state.last ? " (last)" : "")); - state.mode = LEN_; /* decode codes */ - if (flush === Z_TREES) { - //--- DROPBITS(2) ---// - hold >>>= 2; - bits -= 2; - //---// - break inf_leave; - } - break; - case 2: /* dynamic block */ - //Tracev((stderr, "inflate: dynamic codes block%s\n", - // state.last ? " (last)" : "")); - state.mode = TABLE; - break; - case 3: - strm.msg = 'invalid block type'; - state.mode = BAD; - } - //--- DROPBITS(2) ---// - hold >>>= 2; - bits -= 2; - //---// - break; - case STORED: - //--- BYTEBITS() ---// /* go to byte boundary */ - hold >>>= bits & 7; - bits -= bits & 7; - //---// - //=== NEEDBITS(32); */ - while (bits < 32) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) { - strm.msg = 'invalid stored block lengths'; - state.mode = BAD; - break; - } - state.length = hold & 0xffff; - //Tracev((stderr, "inflate: stored length %u\n", - // state.length)); - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - state.mode = COPY_; - if (flush === Z_TREES) { break inf_leave; } - /* falls through */ - case COPY_: - state.mode = COPY; - /* falls through */ - case COPY: - copy = state.length; - if (copy) { - if (copy > have) { copy = have; } - if (copy > left) { copy = left; } - if (copy === 0) { break inf_leave; } - //--- zmemcpy(put, next, copy); --- - utils.arraySet(output, input, next, copy, put); - //---// - have -= copy; - next += copy; - left -= copy; - put += copy; - state.length -= copy; - break; - } - //Tracev((stderr, "inflate: stored end\n")); - state.mode = TYPE; - break; - case TABLE: - //=== NEEDBITS(14); */ - while (bits < 14) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257; - //--- DROPBITS(5) ---// - hold >>>= 5; - bits -= 5; - //---// - state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1; - //--- DROPBITS(5) ---// - hold >>>= 5; - bits -= 5; - //---// - state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4; - //--- DROPBITS(4) ---// - hold >>>= 4; - bits -= 4; - //---// -//#ifndef PKZIP_BUG_WORKAROUND - if (state.nlen > 286 || state.ndist > 30) { - strm.msg = 'too many length or distance symbols'; - state.mode = BAD; - break; - } -//#endif - //Tracev((stderr, "inflate: table sizes ok\n")); - state.have = 0; - state.mode = LENLENS; - /* falls through */ - case LENLENS: - while (state.have < state.ncode) { - //=== NEEDBITS(3); - while (bits < 3) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.lens[order[state.have++]] = (hold & 0x07);//BITS(3); - //--- DROPBITS(3) ---// - hold >>>= 3; - bits -= 3; - //---// - } - while (state.have < 19) { - state.lens[order[state.have++]] = 0; - } - // We have separate tables & no pointers. 2 commented lines below not needed. - //state.next = state.codes; - //state.lencode = state.next; - // Switch to use dynamic table - state.lencode = state.lendyn; - state.lenbits = 7; +/***/ 18128: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - opts = { bits: state.lenbits }; - ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts); - state.lenbits = opts.bits; +"use strict"; - if (ret) { - strm.msg = 'invalid code lengths set'; - state.mode = BAD; - break; - } - //Tracev((stderr, "inflate: code lengths ok\n")); - state.have = 0; - state.mode = CODELENS; - /* falls through */ - case CODELENS: - while (state.have < state.nlen + state.ndist) { - for (;;) { - here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/ - here_bits = here >>> 24; - here_op = (here >>> 16) & 0xff; - here_val = here & 0xffff; - if ((here_bits) <= bits) { break; } - //--- PULLBYTE() ---// - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - //---// - } - if (here_val < 16) { - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - state.lens[state.have++] = here_val; - } - else { - if (here_val === 16) { - //=== NEEDBITS(here.bits + 2); - n = here_bits + 2; - while (bits < n) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - if (state.have === 0) { - strm.msg = 'invalid bit length repeat'; - state.mode = BAD; - break; - } - len = state.lens[state.have - 1]; - copy = 3 + (hold & 0x03);//BITS(2); - //--- DROPBITS(2) ---// - hold >>>= 2; - bits -= 2; - //---// - } - else if (here_val === 17) { - //=== NEEDBITS(here.bits + 3); - n = here_bits + 3; - while (bits < n) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - len = 0; - copy = 3 + (hold & 0x07);//BITS(3); - //--- DROPBITS(3) ---// - hold >>>= 3; - bits -= 3; - //---// - } - else { - //=== NEEDBITS(here.bits + 7); - n = here_bits + 7; - while (bits < n) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - len = 0; - copy = 11 + (hold & 0x7f);//BITS(7); - //--- DROPBITS(7) ---// - hold >>>= 7; - bits -= 7; - //---// - } - if (state.have + copy > state.nlen + state.ndist) { - strm.msg = 'invalid bit length repeat'; - state.mode = BAD; - break; - } - while (copy--) { - state.lens[state.have++] = len; - } - } - } +var _require = __webpack_require__(56128), + NumberT = _require.Number; +exports.resolveLength = function (length, stream, parent) { + var res; + if (typeof length === 'number') { + res = length; + } else if (typeof length === 'function') { + res = length.call(parent, parent); + } else if (parent && typeof length === 'string') { + res = parent[length]; + } else if (stream && length instanceof NumberT) { + res = length.decode(stream); + } + if (isNaN(res)) { + throw new Error('Not a fixed size'); + } + return res; +}; +var PropertyDescriptor = function PropertyDescriptor(opts) { + if (opts === void 0) { + opts = {}; + } + this.enumerable = true; + this.configurable = true; + for (var key in opts) { + var val = opts[key]; + this[key] = val; + } +}; +exports.PropertyDescriptor = PropertyDescriptor; - /* handle error breaks in while */ - if (state.mode === BAD) { break; } +/***/ }), - /* check for end-of-block code (better have one) */ - if (state.lens[256] === 0) { - strm.msg = 'invalid code -- missing end-of-block'; - state.mode = BAD; - break; - } +/***/ 14598: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - /* build code tables -- note: do not change the lenbits or distbits - values here (9 and 6) without reading the comments in inftrees.h - concerning the ENOUGH constants, which depend on those values */ - state.lenbits = 9; +"use strict"; +/*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ +/* eslint-disable no-proto */ - opts = { bits: state.lenbits }; - ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts); - // We have separate tables & no pointers. 2 commented lines below not needed. - // state.next_index = opts.table_index; - state.lenbits = opts.bits; - // state.lencode = state.next; - if (ret) { - strm.msg = 'invalid literal/lengths set'; - state.mode = BAD; - break; - } - state.distbits = 6; - //state.distcode.copy(state.codes); - // Switch to use dynamic table - state.distcode = state.distdyn; - opts = { bits: state.distbits }; - ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts); - // We have separate tables & no pointers. 2 commented lines below not needed. - // state.next_index = opts.table_index; - state.distbits = opts.bits; - // state.distcode = state.next; +__webpack_require__(65292); +__webpack_require__(73844); +__webpack_require__(5597); +__webpack_require__(39081); +__webpack_require__(68626); +__webpack_require__(41584); +__webpack_require__(58028); +__webpack_require__(81755); +__webpack_require__(20731); +__webpack_require__(8953); +__webpack_require__(7585); +__webpack_require__(24863); +__webpack_require__(7283); +__webpack_require__(2876); +__webpack_require__(14032); +__webpack_require__(61726); +__webpack_require__(57114); +__webpack_require__(47458); +__webpack_require__(46467); +__webpack_require__(72095); +__webpack_require__(56912); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } +function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } +function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } +function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +var base64 = __webpack_require__(32504); +var ieee754 = __webpack_require__(89029); +var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' // eslint-disable-line dot-notation +? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation +: null; +exports.Buffer = Buffer; +exports.SlowBuffer = SlowBuffer; +exports.INSPECT_MAX_BYTES = 50; +var K_MAX_LENGTH = 0x7fffffff; +exports.kMaxLength = K_MAX_LENGTH; - if (ret) { - strm.msg = 'invalid distances set'; - state.mode = BAD; - break; - } - //Tracev((stderr, 'inflate: codes ok\n')); - state.mode = LEN_; - if (flush === Z_TREES) { break inf_leave; } - /* falls through */ - case LEN_: - state.mode = LEN; - /* falls through */ - case LEN: - if (have >= 6 && left >= 258) { - //--- RESTORE() --- - strm.next_out = put; - strm.avail_out = left; - strm.next_in = next; - strm.avail_in = have; - state.hold = hold; - state.bits = bits; - //--- - inflate_fast(strm, _out); - //--- LOAD() --- - put = strm.next_out; - output = strm.output; - left = strm.avail_out; - next = strm.next_in; - input = strm.input; - have = strm.avail_in; - hold = state.hold; - bits = state.bits; - //--- +/** + * If `Buffer.TYPED_ARRAY_SUPPORT`: + * === true Use Uint8Array implementation (fastest) + * === false Print warning and recommend using `buffer` v4.x which has an Object + * implementation (most compatible, even IE6) + * + * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, + * Opera 11.6+, iOS 4.2+. + * + * We report that the browser does not support typed arrays if the are not subclassable + * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` + * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support + * for __proto__ and has a buggy typed array implementation. + */ +Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport(); +if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') { + console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'); +} +function typedArraySupport() { + // Can typed array instances can be augmented? + try { + var arr = new Uint8Array(1); + var proto = { + foo: function foo() { + return 42; + } + }; + Object.setPrototypeOf(proto, Uint8Array.prototype); + Object.setPrototypeOf(arr, proto); + return arr.foo() === 42; + } catch (e) { + return false; + } +} +Object.defineProperty(Buffer.prototype, 'parent', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.buffer; + } +}); +Object.defineProperty(Buffer.prototype, 'offset', { + enumerable: true, + get: function get() { + if (!Buffer.isBuffer(this)) return undefined; + return this.byteOffset; + } +}); +function createBuffer(length) { + if (length > K_MAX_LENGTH) { + throw new RangeError('The value "' + length + '" is invalid for option "size"'); + } + // Return an augmented `Uint8Array` instance + var buf = new Uint8Array(length); + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; +} - if (state.mode === TYPE) { - state.back = -1; - } - break; - } - state.back = 0; - for (;;) { - here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/ - here_bits = here >>> 24; - here_op = (here >>> 16) & 0xff; - here_val = here & 0xffff; +/** + * The Buffer constructor returns instances of `Uint8Array` that have their + * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of + * `Uint8Array`, so the returned instances will have all the node `Buffer` methods + * and the `Uint8Array` methods. Square bracket notation works as expected -- it + * returns a single octet. + * + * The `Uint8Array` prototype remains unmodified. + */ - if (here_bits <= bits) { break; } - //--- PULLBYTE() ---// - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - //---// - } - if (here_op && (here_op & 0xf0) === 0) { - last_bits = here_bits; - last_op = here_op; - last_val = here_val; - for (;;) { - here = state.lencode[last_val + - ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; - here_bits = here >>> 24; - here_op = (here >>> 16) & 0xff; - here_val = here & 0xffff; +function Buffer(arg, encodingOrOffset, length) { + // Common case. + if (typeof arg === 'number') { + if (typeof encodingOrOffset === 'string') { + throw new TypeError('The "string" argument must be of type string. Received type number'); + } + return allocUnsafe(arg); + } + return from(arg, encodingOrOffset, length); +} +Buffer.poolSize = 8192; // not used by this implementation - if ((last_bits + here_bits) <= bits) { break; } - //--- PULLBYTE() ---// - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - //---// - } - //--- DROPBITS(last.bits) ---// - hold >>>= last_bits; - bits -= last_bits; - //---// - state.back += last_bits; - } - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - state.back += here_bits; - state.length = here_val; - if (here_op === 0) { - //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? - // "inflate: literal '%c'\n" : - // "inflate: literal 0x%02x\n", here.val)); - state.mode = LIT; - break; - } - if (here_op & 32) { - //Tracevv((stderr, "inflate: end of block\n")); - state.back = -1; - state.mode = TYPE; - break; - } - if (here_op & 64) { - strm.msg = 'invalid literal/length code'; - state.mode = BAD; - break; - } - state.extra = here_op & 15; - state.mode = LENEXT; - /* falls through */ - case LENEXT: - if (state.extra) { - //=== NEEDBITS(state.extra); - n = state.extra; - while (bits < n) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; - //--- DROPBITS(state.extra) ---// - hold >>>= state.extra; - bits -= state.extra; - //---// - state.back += state.extra; - } - //Tracevv((stderr, "inflate: length %u\n", state.length)); - state.was = state.length; - state.mode = DIST; - /* falls through */ - case DIST: - for (;;) { - here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/ - here_bits = here >>> 24; - here_op = (here >>> 16) & 0xff; - here_val = here & 0xffff; - - if ((here_bits) <= bits) { break; } - //--- PULLBYTE() ---// - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - //---// - } - if ((here_op & 0xf0) === 0) { - last_bits = here_bits; - last_op = here_op; - last_val = here_val; - for (;;) { - here = state.distcode[last_val + - ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; - here_bits = here >>> 24; - here_op = (here >>> 16) & 0xff; - here_val = here & 0xffff; - - if ((last_bits + here_bits) <= bits) { break; } - //--- PULLBYTE() ---// - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - //---// - } - //--- DROPBITS(last.bits) ---// - hold >>>= last_bits; - bits -= last_bits; - //---// - state.back += last_bits; - } - //--- DROPBITS(here.bits) ---// - hold >>>= here_bits; - bits -= here_bits; - //---// - state.back += here_bits; - if (here_op & 64) { - strm.msg = 'invalid distance code'; - state.mode = BAD; - break; - } - state.offset = here_val; - state.extra = (here_op) & 15; - state.mode = DISTEXT; - /* falls through */ - case DISTEXT: - if (state.extra) { - //=== NEEDBITS(state.extra); - n = state.extra; - while (bits < n) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; - //--- DROPBITS(state.extra) ---// - hold >>>= state.extra; - bits -= state.extra; - //---// - state.back += state.extra; - } -//#ifdef INFLATE_STRICT - if (state.offset > state.dmax) { - strm.msg = 'invalid distance too far back'; - state.mode = BAD; - break; - } -//#endif - //Tracevv((stderr, "inflate: distance %u\n", state.offset)); - state.mode = MATCH; - /* falls through */ - case MATCH: - if (left === 0) { break inf_leave; } - copy = _out - left; - if (state.offset > copy) { /* copy from window */ - copy = state.offset - copy; - if (copy > state.whave) { - if (state.sane) { - strm.msg = 'invalid distance too far back'; - state.mode = BAD; - break; - } -// (!) This block is disabled in zlib defaults, -// don't enable it for binary compatibility -//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR -// Trace((stderr, "inflate.c too far\n")); -// copy -= state.whave; -// if (copy > state.length) { copy = state.length; } -// if (copy > left) { copy = left; } -// left -= copy; -// state.length -= copy; -// do { -// output[put++] = 0; -// } while (--copy); -// if (state.length === 0) { state.mode = LEN; } -// break; -//#endif - } - if (copy > state.wnext) { - copy -= state.wnext; - from = state.wsize - copy; - } - else { - from = state.wnext - copy; - } - if (copy > state.length) { copy = state.length; } - from_source = state.window; - } - else { /* copy from output */ - from_source = output; - from = put - state.offset; - copy = state.length; - } - if (copy > left) { copy = left; } - left -= copy; - state.length -= copy; - do { - output[put++] = from_source[from++]; - } while (--copy); - if (state.length === 0) { state.mode = LEN; } - break; - case LIT: - if (left === 0) { break inf_leave; } - output[put++] = state.length; - left--; - state.mode = LEN; - break; - case CHECK: - if (state.wrap) { - //=== NEEDBITS(32); - while (bits < 32) { - if (have === 0) { break inf_leave; } - have--; - // Use '|' instead of '+' to make sure that result is signed - hold |= input[next++] << bits; - bits += 8; - } - //===// - _out -= left; - strm.total_out += _out; - state.total += _out; - if (_out) { - strm.adler = state.check = - /*UPDATE(state.check, put - _out, _out);*/ - (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out)); - - } - _out = left; - // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too - if ((state.flags ? hold : zswap32(hold)) !== state.check) { - strm.msg = 'incorrect data check'; - state.mode = BAD; - break; - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - //Tracev((stderr, "inflate: check matches trailer\n")); - } - state.mode = LENGTH; - /* falls through */ - case LENGTH: - if (state.wrap && state.flags) { - //=== NEEDBITS(32); - while (bits < 32) { - if (have === 0) { break inf_leave; } - have--; - hold += input[next++] << bits; - bits += 8; - } - //===// - if (hold !== (state.total & 0xffffffff)) { - strm.msg = 'incorrect length check'; - state.mode = BAD; - break; - } - //=== INITBITS(); - hold = 0; - bits = 0; - //===// - //Tracev((stderr, "inflate: length matches trailer\n")); - } - state.mode = DONE; - /* falls through */ - case DONE: - ret = Z_STREAM_END; - break inf_leave; - case BAD: - ret = Z_DATA_ERROR; - break inf_leave; - case MEM: - return Z_MEM_ERROR; - case SYNC: - /* falls through */ - default: - return Z_STREAM_ERROR; - } +function from(value, encodingOrOffset, length) { + if (typeof value === 'string') { + return fromString(value, encodingOrOffset); } - - // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave" - - /* - Return from inflate(), updating the total counts and the check value. - If there was no progress during the inflate() call, return a buffer - error. Call updatewindow() to create and/or update the window state. - Note: a memory error from inflate() is non-recoverable. - */ - - //--- RESTORE() --- - strm.next_out = put; - strm.avail_out = left; - strm.next_in = next; - strm.avail_in = have; - state.hold = hold; - state.bits = bits; - //--- - - if (state.wsize || (_out !== strm.avail_out && state.mode < BAD && - (state.mode < CHECK || flush !== Z_FINISH))) { - if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) { - state.mode = MEM; - return Z_MEM_ERROR; - } + if (ArrayBuffer.isView(value)) { + return fromArrayView(value); } - _in -= strm.avail_in; - _out -= strm.avail_out; - strm.total_in += _in; - strm.total_out += _out; - state.total += _out; - if (state.wrap && _out) { - strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/ - (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out)); + if (value == null) { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value); } - strm.data_type = state.bits + (state.last ? 64 : 0) + - (state.mode === TYPE ? 128 : 0) + - (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0); - if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) { - ret = Z_BUF_ERROR; + if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) { + return fromArrayBuffer(value, encodingOrOffset, length); } - return ret; + if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) { + return fromArrayBuffer(value, encodingOrOffset, length); + } + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type number'); + } + var valueOf = value.valueOf && value.valueOf(); + if (valueOf != null && valueOf !== value) { + return Buffer.from(valueOf, encodingOrOffset, length); + } + var b = fromObject(value); + if (b) return b; + if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') { + return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length); + } + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value); } -function inflateEnd(strm) { +/** + * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError + * if value is a number. + * Buffer.from(str[, encoding]) + * Buffer.from(array) + * Buffer.from(buffer) + * Buffer.from(arrayBuffer[, byteOffset[, length]]) + **/ +Buffer.from = function (value, encodingOrOffset, length) { + return from(value, encodingOrOffset, length); +}; - if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) { - return Z_STREAM_ERROR; +// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: +// https://github.com/feross/buffer/pull/148 +Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype); +Object.setPrototypeOf(Buffer, Uint8Array); +function assertSize(size) { + if (typeof size !== 'number') { + throw new TypeError('"size" argument must be of type number'); + } else if (size < 0) { + throw new RangeError('The value "' + size + '" is invalid for option "size"'); } - - var state = strm.state; - if (state.window) { - state.window = null; +} +function alloc(size, fill, encoding) { + assertSize(size); + if (size <= 0) { + return createBuffer(size); } - strm.state = null; - return Z_OK; + if (fill !== undefined) { + // Only pay attention to encoding if it's a string. This + // prevents accidentally sending in a number that would + // be interpreted as a start offset. + return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill); + } + return createBuffer(size); } -function inflateGetHeader(strm, head) { - var state; - - /* check state */ - if (!strm || !strm.state) { return Z_STREAM_ERROR; } - state = strm.state; - if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; } - - /* save header structure */ - state.head = head; - head.done = false; - return Z_OK; +/** + * Creates a new filled Buffer instance. + * alloc(size[, fill[, encoding]]) + **/ +Buffer.alloc = function (size, fill, encoding) { + return alloc(size, fill, encoding); +}; +function allocUnsafe(size) { + assertSize(size); + return createBuffer(size < 0 ? 0 : checked(size) | 0); } -function inflateSetDictionary(strm, dictionary) { - var dictLength = dictionary.length; - - var state; - var dictid; - var ret; - - /* check state */ - if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; } - state = strm.state; - - if (state.wrap !== 0 && state.mode !== DICT) { - return Z_STREAM_ERROR; +/** + * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. + * */ +Buffer.allocUnsafe = function (size) { + return allocUnsafe(size); +}; +/** + * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. + */ +Buffer.allocUnsafeSlow = function (size) { + return allocUnsafe(size); +}; +function fromString(string, encoding) { + if (typeof encoding !== 'string' || encoding === '') { + encoding = 'utf8'; + } + if (!Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + var length = byteLength(string, encoding) | 0; + var buf = createBuffer(length); + var actual = buf.write(string, encoding); + if (actual !== length) { + // Writing a hex string, for example, that contains invalid characters will + // cause everything after the first invalid character to be ignored. (e.g. + // 'abxxcd' will be treated as 'ab') + buf = buf.slice(0, actual); + } + return buf; +} +function fromArrayLike(array) { + var length = array.length < 0 ? 0 : checked(array.length) | 0; + var buf = createBuffer(length); + for (var i = 0; i < length; i += 1) { + buf[i] = array[i] & 255; + } + return buf; +} +function fromArrayView(arrayView) { + if (isInstance(arrayView, Uint8Array)) { + var copy = new Uint8Array(arrayView); + return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength); + } + return fromArrayLike(arrayView); +} +function fromArrayBuffer(array, byteOffset, length) { + if (byteOffset < 0 || array.byteLength < byteOffset) { + throw new RangeError('"offset" is outside of buffer bounds'); + } + if (array.byteLength < byteOffset + (length || 0)) { + throw new RangeError('"length" is outside of buffer bounds'); + } + var buf; + if (byteOffset === undefined && length === undefined) { + buf = new Uint8Array(array); + } else if (length === undefined) { + buf = new Uint8Array(array, byteOffset); + } else { + buf = new Uint8Array(array, byteOffset, length); } - /* check for correct dictionary identifier */ - if (state.mode === DICT) { - dictid = 1; /* adler32(0, null, 0)*/ - /* dictid = adler32(dictid, dictionary, dictLength); */ - dictid = adler32(dictid, dictionary, dictLength, 0); - if (dictid !== state.check) { - return Z_DATA_ERROR; + // Return an augmented `Uint8Array` instance + Object.setPrototypeOf(buf, Buffer.prototype); + return buf; +} +function fromObject(obj) { + if (Buffer.isBuffer(obj)) { + var len = checked(obj.length) | 0; + var buf = createBuffer(len); + if (buf.length === 0) { + return buf; } + obj.copy(buf, 0, 0, len); + return buf; } - /* copy dictionary to window using updatewindow(), which will amend the - existing dictionary if appropriate */ - ret = updatewindow(strm, dictionary, dictLength, dictLength); - if (ret) { - state.mode = MEM; - return Z_MEM_ERROR; + if (obj.length !== undefined) { + if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { + return createBuffer(0); + } + return fromArrayLike(obj); + } + if (obj.type === 'Buffer' && Array.isArray(obj.data)) { + return fromArrayLike(obj.data); } - state.havedict = 1; - // Tracev((stderr, "inflate: dictionary set\n")); - return Z_OK; } - -exports.inflateReset = inflateReset; -exports.inflateReset2 = inflateReset2; -exports.inflateResetKeep = inflateResetKeep; -exports.inflateInit = inflateInit; -exports.inflateInit2 = inflateInit2; -exports.inflate = inflate; -exports.inflateEnd = inflateEnd; -exports.inflateGetHeader = inflateGetHeader; -exports.inflateSetDictionary = inflateSetDictionary; -exports.inflateInfo = 'pako inflate (from Nodeca project)'; - -/* Not implemented -exports.inflateCopy = inflateCopy; -exports.inflateGetDictionary = inflateGetDictionary; -exports.inflateMark = inflateMark; -exports.inflatePrime = inflatePrime; -exports.inflateSync = inflateSync; -exports.inflateSyncPoint = inflateSyncPoint; -exports.inflateUndermine = inflateUndermine; -*/ - - -/***/ }), - -/***/ 2318: -/***/ (function(module) { - -"use strict"; - - -function TraversalTracker() { - this.events = {}; +function checked(length) { + // Note: cannot use `length < K_MAX_LENGTH` here because that fails when + // length is NaN (which is otherwise coerced to zero.) + if (length >= K_MAX_LENGTH) { + throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes'); + } + return length | 0; } - -TraversalTracker.prototype.startTracking = function (event, callback) { - var callbacks = this.events[event] || (this.events[event] = []); - - if (callbacks.indexOf(callback) < 0) { - callbacks.push(callback); - } -}; - -TraversalTracker.prototype.stopTracking = function (event, callback) { - var callbacks = this.events[event]; - - if (!callbacks) { - return; - } - - var index = callbacks.indexOf(callback); - if (index >= 0) { - callbacks.splice(index, 1); - } +function SlowBuffer(length) { + if (+length != length) { + // eslint-disable-line eqeqeq + length = 0; + } + return Buffer.alloc(+length); +} +Buffer.isBuffer = function isBuffer(b) { + return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false }; - -TraversalTracker.prototype.emit = function (event) { - var args = Array.prototype.slice.call(arguments, 1); - var callbacks = this.events[event]; - - if (!callbacks) { - return; - } - - callbacks.forEach(function (callback) { - callback.apply(this, args); - }); +Buffer.compare = function compare(a, b) { + if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength); + if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength); + if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { + throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'); + } + if (a === b) return 0; + var x = a.length; + var y = b.length; + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i]; + y = b[i]; + break; + } + } + if (x < y) return -1; + if (y < x) return 1; + return 0; }; - -TraversalTracker.prototype.auto = function (event, callback, innerFunction) { - this.startTracking(event, callback); - innerFunction(); - this.stopTracking(event, callback); +Buffer.isEncoding = function isEncoding(encoding) { + switch (String(encoding).toLowerCase()) { + case 'hex': + case 'utf8': + case 'utf-8': + case 'ascii': + case 'latin1': + case 'binary': + case 'base64': + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return true; + default: + return false; + } }; - -module.exports = TraversalTracker; - - -/***/ }), - -/***/ 2416: -/***/ (function(module) { - -// IE8- don't enum bug keys -module.exports = [ - 'constructor', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'toLocaleString', - 'toString', - 'valueOf' -]; - - -/***/ }), - -/***/ 2644: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var call = __webpack_require__(2834); -var isObject = __webpack_require__(24517); -var isSymbol = __webpack_require__(46290); -var getMethod = __webpack_require__(51839); -var ordinaryToPrimitive = __webpack_require__(39629); -var wellKnownSymbol = __webpack_require__(38688); - -var TypeError = global.TypeError; -var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); - -// `ToPrimitive` abstract operation -// https://tc39.es/ecma262/#sec-toprimitive -module.exports = function (input, pref) { - if (!isObject(input) || isSymbol(input)) return input; - var exoticToPrim = getMethod(input, TO_PRIMITIVE); - var result; - if (exoticToPrim) { - if (pref === undefined) pref = 'default'; - result = call(exoticToPrim, input, pref); - if (!isObject(result) || isSymbol(result)) return result; - throw TypeError("Can't convert object to primitive value"); +Buffer.concat = function concat(list, length) { + if (!Array.isArray(list)) { + throw new TypeError('"list" argument must be an Array of Buffers'); } - if (pref === undefined) pref = 'number'; - return ordinaryToPrimitive(input, pref); + if (list.length === 0) { + return Buffer.alloc(0); + } + var i; + if (length === undefined) { + length = 0; + for (i = 0; i < list.length; ++i) { + length += list[i].length; + } + } + var buffer = Buffer.allocUnsafe(length); + var pos = 0; + for (i = 0; i < list.length; ++i) { + var buf = list[i]; + if (isInstance(buf, Uint8Array)) { + if (pos + buf.length > buffer.length) { + if (!Buffer.isBuffer(buf)) buf = Buffer.from(buf); + buf.copy(buffer, pos); + } else { + Uint8Array.prototype.set.call(buffer, buf, pos); + } + } else if (!Buffer.isBuffer(buf)) { + throw new TypeError('"list" argument must be an Array of Buffers'); + } else { + buf.copy(buffer, pos); + } + pos += buf.length; + } + return buffer; }; +function byteLength(string, encoding) { + if (Buffer.isBuffer(string)) { + return string.length; + } + if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { + return string.byteLength; + } + if (typeof string !== 'string') { + throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + typeof string); + } + var len = string.length; + var mustMatch = arguments.length > 2 && arguments[2] === true; + if (!mustMatch && len === 0) return 0; + // Use a for loop to avoid recursion + var loweredCase = false; + for (;;) { + switch (encoding) { + case 'ascii': + case 'latin1': + case 'binary': + return len; + case 'utf8': + case 'utf-8': + return utf8ToBytes(string).length; + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return len * 2; + case 'hex': + return len >>> 1; + case 'base64': + return base64ToBytes(string).length; + default: + if (loweredCase) { + return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8 + } + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; + } + } +} +Buffer.byteLength = byteLength; +function slowToString(encoding, start, end) { + var loweredCase = false; -/***/ }), + // No need to verify that "this.length <= MAX_UINT32" since it's a read-only + // property of a typed array. -/***/ 2675: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // This behaves neither like String nor Uint8Array in that we set start/end + // to their upper/lower bounds if the value passed is out of range. + // undefined is handled specially as per ECMA-262 6th Edition, + // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. + if (start === undefined || start < 0) { + start = 0; + } + // Return early if start > this.length. Done here to prevent potential uint32 + // coercion fail below. + if (start > this.length) { + return ''; + } + if (end === undefined || end > this.length) { + end = this.length; + } + if (end <= 0) { + return ''; + } -var hasOwn = __webpack_require__(20340); -var ownKeys = __webpack_require__(21594); -var getOwnPropertyDescriptorModule = __webpack_require__(72062); -var definePropertyModule = __webpack_require__(95892); + // Force coercion to uint32. This will also coerce falsey/NaN values to 0. + end >>>= 0; + start >>>= 0; + if (end <= start) { + return ''; + } + if (!encoding) encoding = 'utf8'; + while (true) { + switch (encoding) { + case 'hex': + return hexSlice(this, start, end); + case 'utf8': + case 'utf-8': + return utf8Slice(this, start, end); + case 'ascii': + return asciiSlice(this, start, end); + case 'latin1': + case 'binary': + return latin1Slice(this, start, end); + case 'base64': + return base64Slice(this, start, end); + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return utf16leSlice(this, start, end); + default: + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = (encoding + '').toLowerCase(); + loweredCase = true; + } + } +} -module.exports = function (target, source) { - var keys = ownKeys(source); - var defineProperty = definePropertyModule.f; - var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; - for (var i = 0; i < keys.length; i++) { - var key = keys[i]; - if (!hasOwn(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key)); +// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) +// to detect a Buffer instance. It's not possible to use `instanceof Buffer` +// reliably in a browserify context because there could be multiple different +// copies of the 'buffer' package in use. This method works even for Buffer +// instances that were created from another copy of the `buffer` package. +// See: https://github.com/feross/buffer/issues/154 +Buffer.prototype._isBuffer = true; +function swap(b, n, m) { + var i = b[n]; + b[n] = b[m]; + b[m] = i; +} +Buffer.prototype.swap16 = function swap16() { + var len = this.length; + if (len % 2 !== 0) { + throw new RangeError('Buffer size must be a multiple of 16-bits'); + } + for (var i = 0; i < len; i += 2) { + swap(this, i, i + 1); } + return this; }; - - -/***/ }), - -/***/ 2834: -/***/ (function(module) { - -var call = Function.prototype.call; - -module.exports = call.bind ? call.bind(call) : function () { - return call.apply(call, arguments); +Buffer.prototype.swap32 = function swap32() { + var len = this.length; + if (len % 4 !== 0) { + throw new RangeError('Buffer size must be a multiple of 32-bits'); + } + for (var i = 0; i < len; i += 4) { + swap(this, i, i + 3); + swap(this, i + 1, i + 2); + } + return this; }; - - -/***/ }), - -/***/ 2857: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var $forEach = (__webpack_require__(91102).forEach); - -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - -// `%TypedArray%.prototype.forEach` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.foreach -exportTypedArrayMethod('forEach', function forEach(callbackfn /* , thisArg */) { - $forEach(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); -}); - - -/***/ }), - -/***/ 2868: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var isPrototypeOf = __webpack_require__(70176); - -var TypeError = global.TypeError; - -module.exports = function (it, Prototype) { - if (isPrototypeOf(Prototype, it)) return it; - throw TypeError('Incorrect invocation'); +Buffer.prototype.swap64 = function swap64() { + var len = this.length; + if (len % 8 !== 0) { + throw new RangeError('Buffer size must be a multiple of 64-bits'); + } + for (var i = 0; i < len; i += 8) { + swap(this, i, i + 7); + swap(this, i + 1, i + 6); + swap(this, i + 2, i + 5); + swap(this, i + 3, i + 4); + } + return this; +}; +Buffer.prototype.toString = function toString() { + var length = this.length; + if (length === 0) return ''; + if (arguments.length === 0) return utf8Slice(this, 0, length); + return slowToString.apply(this, arguments); +}; +Buffer.prototype.toLocaleString = Buffer.prototype.toString; +Buffer.prototype.equals = function equals(b) { + if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer'); + if (this === b) return true; + return Buffer.compare(this, b) === 0; +}; +Buffer.prototype.inspect = function inspect() { + var str = ''; + var max = exports.INSPECT_MAX_BYTES; + str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim(); + if (this.length > max) str += ' ... '; + return ''; +}; +if (customInspectSymbol) { + Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect; +} +Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) { + if (isInstance(target, Uint8Array)) { + target = Buffer.from(target, target.offset, target.byteLength); + } + if (!Buffer.isBuffer(target)) { + throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + typeof target); + } + if (start === undefined) { + start = 0; + } + if (end === undefined) { + end = target ? target.length : 0; + } + if (thisStart === undefined) { + thisStart = 0; + } + if (thisEnd === undefined) { + thisEnd = this.length; + } + if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { + throw new RangeError('out of range index'); + } + if (thisStart >= thisEnd && start >= end) { + return 0; + } + if (thisStart >= thisEnd) { + return -1; + } + if (start >= end) { + return 1; + } + start >>>= 0; + end >>>= 0; + thisStart >>>= 0; + thisEnd >>>= 0; + if (this === target) return 0; + var x = thisEnd - thisStart; + var y = end - start; + var len = Math.min(x, y); + var thisCopy = this.slice(thisStart, thisEnd); + var targetCopy = target.slice(start, end); + for (var i = 0; i < len; ++i) { + if (thisCopy[i] !== targetCopy[i]) { + x = thisCopy[i]; + y = targetCopy[i]; + break; + } + } + if (x < y) return -1; + if (y < x) return 1; + return 0; }; +// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, +// OR the last index of `val` in `buffer` at offset <= `byteOffset`. +// +// Arguments: +// - buffer - a Buffer to search +// - val - a string, Buffer, or number +// - byteOffset - an index into `buffer`; will be clamped to an int32 +// - encoding - an optional encoding, relevant is val is a string +// - dir - true for indexOf, false for lastIndexOf +function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) { + // Empty buffer means no match + if (buffer.length === 0) return -1; -/***/ }), - -/***/ 2876: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var $ = __webpack_require__(56475); -var isIntegralNumber = __webpack_require__(17506); - -// `Number.isInteger` method -// https://tc39.es/ecma262/#sec-number.isinteger -$({ target: 'Number', stat: true }, { - isInteger: isIntegralNumber -}); - - -/***/ }), - -/***/ 3131: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var createTypedArrayConstructor = __webpack_require__(98828); - -// `Float32Array` constructor -// https://tc39.es/ecma262/#sec-typedarray-objects -createTypedArrayConstructor('Float32', function (init) { - return function Float32Array(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; -}); - - -/***/ }), - -/***/ 3157: -/***/ (function(module) { - -module.exports = typeof window == 'object'; - - -/***/ }), + // Normalize byteOffset + if (typeof byteOffset === 'string') { + encoding = byteOffset; + byteOffset = 0; + } else if (byteOffset > 0x7fffffff) { + byteOffset = 0x7fffffff; + } else if (byteOffset < -0x80000000) { + byteOffset = -0x80000000; + } + byteOffset = +byteOffset; // Coerce to Number. + if (numberIsNaN(byteOffset)) { + // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer + byteOffset = dir ? 0 : buffer.length - 1; + } -/***/ 3483: -/***/ (function(module) { + // Normalize byteOffset: negative offsets start from the end of the buffer + if (byteOffset < 0) byteOffset = buffer.length + byteOffset; + if (byteOffset >= buffer.length) { + if (dir) return -1;else byteOffset = buffer.length - 1; + } else if (byteOffset < 0) { + if (dir) byteOffset = 0;else return -1; + } -var TINF_OK = 0; -var TINF_DATA_ERROR = -3; + // Normalize val + if (typeof val === 'string') { + val = Buffer.from(val, encoding); + } -function Tree() { - this.table = new Uint16Array(16); /* table of code length counts */ - this.trans = new Uint16Array(288); /* code -> symbol translation table */ + // Finally, search either indexOf (if dir is true) or lastIndexOf + if (Buffer.isBuffer(val)) { + // Special case: looking for empty string/buffer always fails + if (val.length === 0) { + return -1; + } + return arrayIndexOf(buffer, val, byteOffset, encoding, dir); + } else if (typeof val === 'number') { + val = val & 0xFF; // Search for a byte value [0-255] + if (typeof Uint8Array.prototype.indexOf === 'function') { + if (dir) { + return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset); + } else { + return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset); + } + } + return arrayIndexOf(buffer, [val], byteOffset, encoding, dir); + } + throw new TypeError('val must be string, number or Buffer'); } - -function Data(source, dest) { - this.source = source; - this.sourceIndex = 0; - this.tag = 0; - this.bitcount = 0; - - this.dest = dest; - this.destLen = 0; - - this.ltree = new Tree(); /* dynamic length/symbol tree */ - this.dtree = new Tree(); /* dynamic distance tree */ -} - -/* --------------------------------------------------- * - * -- uninitialized global data (static structures) -- * - * --------------------------------------------------- */ - -var sltree = new Tree(); -var sdtree = new Tree(); - -/* extra bits and base tables for length codes */ -var length_bits = new Uint8Array(30); -var length_base = new Uint16Array(30); - -/* extra bits and base tables for distance codes */ -var dist_bits = new Uint8Array(30); -var dist_base = new Uint16Array(30); - -/* special ordering of code length codes */ -var clcidx = new Uint8Array([ - 16, 17, 18, 0, 8, 7, 9, 6, - 10, 5, 11, 4, 12, 3, 13, 2, - 14, 1, 15 -]); - -/* used by tinf_decode_trees, avoids allocations every call */ -var code_tree = new Tree(); -var lengths = new Uint8Array(288 + 32); - -/* ----------------------- * - * -- utility functions -- * - * ----------------------- */ - -/* build extra bits and base tables */ -function tinf_build_bits_base(bits, base, delta, first) { - var i, sum; - - /* build bits table */ - for (i = 0; i < delta; ++i) bits[i] = 0; - for (i = 0; i < 30 - delta; ++i) bits[i + delta] = i / delta | 0; - - /* build base table */ - for (sum = first, i = 0; i < 30; ++i) { - base[i] = sum; - sum += 1 << bits[i]; +function arrayIndexOf(arr, val, byteOffset, encoding, dir) { + var indexSize = 1; + var arrLength = arr.length; + var valLength = val.length; + if (encoding !== undefined) { + encoding = String(encoding).toLowerCase(); + if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') { + if (arr.length < 2 || val.length < 2) { + return -1; + } + indexSize = 2; + arrLength /= 2; + valLength /= 2; + byteOffset /= 2; + } + } + function read(buf, i) { + if (indexSize === 1) { + return buf[i]; + } else { + return buf.readUInt16BE(i * indexSize); + } } -} - -/* build the fixed huffman trees */ -function tinf_build_fixed_trees(lt, dt) { var i; - - /* build fixed length tree */ - for (i = 0; i < 7; ++i) lt.table[i] = 0; - - lt.table[7] = 24; - lt.table[8] = 152; - lt.table[9] = 112; - - for (i = 0; i < 24; ++i) lt.trans[i] = 256 + i; - for (i = 0; i < 144; ++i) lt.trans[24 + i] = i; - for (i = 0; i < 8; ++i) lt.trans[24 + 144 + i] = 280 + i; - for (i = 0; i < 112; ++i) lt.trans[24 + 144 + 8 + i] = 144 + i; - - /* build fixed distance tree */ - for (i = 0; i < 5; ++i) dt.table[i] = 0; - - dt.table[5] = 32; - - for (i = 0; i < 32; ++i) dt.trans[i] = i; + if (dir) { + var foundIndex = -1; + for (i = byteOffset; i < arrLength; i++) { + if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { + if (foundIndex === -1) foundIndex = i; + if (i - foundIndex + 1 === valLength) return foundIndex * indexSize; + } else { + if (foundIndex !== -1) i -= i - foundIndex; + foundIndex = -1; + } + } + } else { + if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength; + for (i = byteOffset; i >= 0; i--) { + var found = true; + for (var j = 0; j < valLength; j++) { + if (read(arr, i + j) !== read(val, j)) { + found = false; + break; + } + } + if (found) return i; + } + } + return -1; } - -/* given an array of code lengths, build a tree */ -var offs = new Uint16Array(16); - -function tinf_build_tree(t, lengths, off, num) { - var i, sum; - - /* clear code length count table */ - for (i = 0; i < 16; ++i) t.table[i] = 0; - - /* scan symbol lengths, and sum code length counts */ - for (i = 0; i < num; ++i) t.table[lengths[off + i]]++; - - t.table[0] = 0; - - /* compute offset table for distribution sort */ - for (sum = 0, i = 0; i < 16; ++i) { - offs[i] = sum; - sum += t.table[i]; +Buffer.prototype.includes = function includes(val, byteOffset, encoding) { + return this.indexOf(val, byteOffset, encoding) !== -1; +}; +Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, true); +}; +Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) { + return bidirectionalIndexOf(this, val, byteOffset, encoding, false); +}; +function hexWrite(buf, string, offset, length) { + offset = Number(offset) || 0; + var remaining = buf.length - offset; + if (!length) { + length = remaining; + } else { + length = Number(length); + if (length > remaining) { + length = remaining; + } } - - /* create code->symbol translation table (symbols sorted by code) */ - for (i = 0; i < num; ++i) { - if (lengths[off + i]) t.trans[offs[lengths[off + i]]++] = i; + var strLen = string.length; + if (length > strLen / 2) { + length = strLen / 2; } -} - -/* ---------------------- * - * -- decode functions -- * - * ---------------------- */ - -/* get one bit from source stream */ -function tinf_getbit(d) { - /* check if tag is empty */ - if (!d.bitcount--) { - /* load next tag */ - d.tag = d.source[d.sourceIndex++]; - d.bitcount = 7; + var i; + for (i = 0; i < length; ++i) { + var parsed = parseInt(string.substr(i * 2, 2), 16); + if (numberIsNaN(parsed)) return i; + buf[offset + i] = parsed; } - - /* shift bit out of tag */ - var bit = d.tag & 1; - d.tag >>>= 1; - - return bit; + return i; } - -/* read a num bit value from a stream and add base */ -function tinf_read_bits(d, num, base) { - if (!num) - return base; - - while (d.bitcount < 24) { - d.tag |= d.source[d.sourceIndex++] << d.bitcount; - d.bitcount += 8; - } - - var val = d.tag & (0xffff >>> (16 - num)); - d.tag >>>= num; - d.bitcount -= num; - return val + base; +function utf8Write(buf, string, offset, length) { + return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); } - -/* given a data stream and a tree, decode a symbol */ -function tinf_decode_symbol(d, t) { - while (d.bitcount < 24) { - d.tag |= d.source[d.sourceIndex++] << d.bitcount; - d.bitcount += 8; - } - - var sum = 0, cur = 0, len = 0; - var tag = d.tag; - - /* get more bits while code value is above sum */ - do { - cur = 2 * cur + (tag & 1); - tag >>>= 1; - ++len; - - sum += t.table[len]; - cur -= t.table[len]; - } while (cur >= 0); - - d.tag = tag; - d.bitcount -= len; - - return t.trans[sum + cur]; +function asciiWrite(buf, string, offset, length) { + return blitBuffer(asciiToBytes(string), buf, offset, length); } - -/* given a data stream, decode dynamic trees from it */ -function tinf_decode_trees(d, lt, dt) { - var hlit, hdist, hclen; - var i, num, length; - - /* get 5 bits HLIT (257-286) */ - hlit = tinf_read_bits(d, 5, 257); - - /* get 5 bits HDIST (1-32) */ - hdist = tinf_read_bits(d, 5, 1); - - /* get 4 bits HCLEN (4-19) */ - hclen = tinf_read_bits(d, 4, 4); - - for (i = 0; i < 19; ++i) lengths[i] = 0; - - /* read code lengths for code length alphabet */ - for (i = 0; i < hclen; ++i) { - /* get 3 bits code length (0-7) */ - var clen = tinf_read_bits(d, 3, 0); - lengths[clcidx[i]] = clen; +function base64Write(buf, string, offset, length) { + return blitBuffer(base64ToBytes(string), buf, offset, length); +} +function ucs2Write(buf, string, offset, length) { + return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); +} +Buffer.prototype.write = function write(string, offset, length, encoding) { + // Buffer#write(string) + if (offset === undefined) { + encoding = 'utf8'; + length = this.length; + offset = 0; + // Buffer#write(string, encoding) + } else if (length === undefined && typeof offset === 'string') { + encoding = offset; + length = this.length; + offset = 0; + // Buffer#write(string, offset[, length][, encoding]) + } else if (isFinite(offset)) { + offset = offset >>> 0; + if (isFinite(length)) { + length = length >>> 0; + if (encoding === undefined) encoding = 'utf8'; + } else { + encoding = length; + length = undefined; + } + } else { + throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported'); } - - /* build code length tree */ - tinf_build_tree(code_tree, lengths, 0, 19); - - /* decode code lengths for the dynamic trees */ - for (num = 0; num < hlit + hdist;) { - var sym = tinf_decode_symbol(d, code_tree); - - switch (sym) { - case 16: - /* copy previous code length 3-6 times (read 2 bits) */ - var prev = lengths[num - 1]; - for (length = tinf_read_bits(d, 2, 3); length; --length) { - lengths[num++] = prev; - } - break; - case 17: - /* repeat code length 0 for 3-10 times (read 3 bits) */ - for (length = tinf_read_bits(d, 3, 3); length; --length) { - lengths[num++] = 0; - } - break; - case 18: - /* repeat code length 0 for 11-138 times (read 7 bits) */ - for (length = tinf_read_bits(d, 7, 11); length; --length) { - lengths[num++] = 0; - } - break; + var remaining = this.length - offset; + if (length === undefined || length > remaining) length = remaining; + if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) { + throw new RangeError('Attempt to write outside buffer bounds'); + } + if (!encoding) encoding = 'utf8'; + var loweredCase = false; + for (;;) { + switch (encoding) { + case 'hex': + return hexWrite(this, string, offset, length); + case 'utf8': + case 'utf-8': + return utf8Write(this, string, offset, length); + case 'ascii': + case 'latin1': + case 'binary': + return asciiWrite(this, string, offset, length); + case 'base64': + // Warning: maxLength not taken into account in base64Write + return base64Write(this, string, offset, length); + case 'ucs2': + case 'ucs-2': + case 'utf16le': + case 'utf-16le': + return ucs2Write(this, string, offset, length); default: - /* values 0-15 represent the actual code lengths */ - lengths[num++] = sym; - break; + if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); + encoding = ('' + encoding).toLowerCase(); + loweredCase = true; } } - - /* build dynamic trees */ - tinf_build_tree(lt, lengths, 0, hlit); - tinf_build_tree(dt, lengths, hlit, hdist); +}; +Buffer.prototype.toJSON = function toJSON() { + return { + type: 'Buffer', + data: Array.prototype.slice.call(this._arr || this, 0) + }; +}; +function base64Slice(buf, start, end) { + if (start === 0 && end === buf.length) { + return base64.fromByteArray(buf); + } else { + return base64.fromByteArray(buf.slice(start, end)); + } } - -/* ----------------------------- * - * -- block inflate functions -- * - * ----------------------------- */ - -/* given a stream and two trees, inflate a block of data */ -function tinf_inflate_block_data(d, lt, dt) { - while (1) { - var sym = tinf_decode_symbol(d, lt); - - /* check for end of block */ - if (sym === 256) { - return TINF_OK; - } - - if (sym < 256) { - d.dest[d.destLen++] = sym; - } else { - var length, dist, offs; - var i; - - sym -= 257; - - /* possibly get more bits from length code */ - length = tinf_read_bits(d, length_bits[sym], length_base[sym]); - - dist = tinf_decode_symbol(d, dt); - - /* possibly get more bits from distance code */ - offs = d.destLen - tinf_read_bits(d, dist_bits[dist], dist_base[dist]); - - /* copy match */ - for (i = offs; i < offs + length; ++i) { - d.dest[d.destLen++] = d.dest[i]; +function utf8Slice(buf, start, end) { + end = Math.min(buf.length, end); + var res = []; + var i = start; + while (i < end) { + var firstByte = buf[i]; + var codePoint = null; + var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1; + if (i + bytesPerSequence <= end) { + var secondByte = void 0, + thirdByte = void 0, + fourthByte = void 0, + tempCodePoint = void 0; + switch (bytesPerSequence) { + case 1: + if (firstByte < 0x80) { + codePoint = firstByte; + } + break; + case 2: + secondByte = buf[i + 1]; + if ((secondByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F; + if (tempCodePoint > 0x7F) { + codePoint = tempCodePoint; + } + } + break; + case 3: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F; + if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { + codePoint = tempCodePoint; + } + } + break; + case 4: + secondByte = buf[i + 1]; + thirdByte = buf[i + 2]; + fourthByte = buf[i + 3]; + if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { + tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F; + if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { + codePoint = tempCodePoint; + } + } } } + if (codePoint === null) { + // we did not generate a valid codePoint so insert a + // replacement char (U+FFFD) and advance only 1 byte + codePoint = 0xFFFD; + bytesPerSequence = 1; + } else if (codePoint > 0xFFFF) { + // encode to utf16 (surrogate pair dance) + codePoint -= 0x10000; + res.push(codePoint >>> 10 & 0x3FF | 0xD800); + codePoint = 0xDC00 | codePoint & 0x3FF; + } + res.push(codePoint); + i += bytesPerSequence; } + return decodeCodePointsArray(res); } -/* inflate an uncompressed block of data */ -function tinf_inflate_uncompressed_block(d) { - var length, invlength; - var i; - - /* unread from bitbuffer */ - while (d.bitcount > 8) { - d.sourceIndex--; - d.bitcount -= 8; +// Based on http://stackoverflow.com/a/22747272/680742, the browser with +// the lowest limit is Chrome, with 0x10000 args. +// We go 1 magnitude less, for safety +var MAX_ARGUMENTS_LENGTH = 0x1000; +function decodeCodePointsArray(codePoints) { + var len = codePoints.length; + if (len <= MAX_ARGUMENTS_LENGTH) { + return String.fromCharCode.apply(String, codePoints); // avoid extra slice() } - /* get length */ - length = d.source[d.sourceIndex + 1]; - length = 256 * length + d.source[d.sourceIndex]; - - /* get one's complement of length */ - invlength = d.source[d.sourceIndex + 3]; - invlength = 256 * invlength + d.source[d.sourceIndex + 2]; - - /* check length */ - if (length !== (~invlength & 0x0000ffff)) - return TINF_DATA_ERROR; - - d.sourceIndex += 4; - - /* copy block */ - for (i = length; i; --i) - d.dest[d.destLen++] = d.source[d.sourceIndex++]; - - /* make sure we start next block on a byte boundary */ - d.bitcount = 0; - - return TINF_OK; + // Decode in chunks to avoid "call stack size exceeded". + var res = ''; + var i = 0; + while (i < len) { + res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)); + } + return res; } - -/* inflate stream from source to dest */ -function tinf_uncompress(source, dest) { - var d = new Data(source, dest); - var bfinal, btype, res; - - do { - /* read final block flag */ - bfinal = tinf_getbit(d); - - /* read block type (2 bits) */ - btype = tinf_read_bits(d, 2, 0); - - /* decompress block */ - switch (btype) { - case 0: - /* decompress uncompressed block */ - res = tinf_inflate_uncompressed_block(d); - break; - case 1: - /* decompress block with fixed huffman trees */ - res = tinf_inflate_block_data(d, sltree, sdtree); - break; - case 2: - /* decompress block with dynamic huffman trees */ - tinf_decode_trees(d, d.ltree, d.dtree); - res = tinf_inflate_block_data(d, d.ltree, d.dtree); - break; - default: - res = TINF_DATA_ERROR; - } - - if (res !== TINF_OK) - throw new Error('Data error'); - - } while (!bfinal); - - if (d.destLen < d.dest.length) { - if (typeof d.dest.slice === 'function') - return d.dest.slice(0, d.destLen); - else - return d.dest.subarray(0, d.destLen); +function asciiSlice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i] & 0x7F); } - - return d.dest; + return ret; } - -/* -------------------- * - * -- initialization -- * - * -------------------- */ - -/* build fixed huffman trees */ -tinf_build_fixed_trees(sltree, sdtree); - -/* build extra bits and base tables */ -tinf_build_bits_base(length_bits, length_base, 4, 3); -tinf_build_bits_base(dist_bits, dist_base, 2, 1); - -/* fix a special case */ -length_bits[28] = 0; -length_base[28] = 258; - -module.exports = tinf_uncompress; - - -/***/ }), - -/***/ 3534: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var getPolyfill = __webpack_require__(89636); -var define = __webpack_require__(77802); - -module.exports = function shimObjectIs() { - var polyfill = getPolyfill(); - define(Object, { is: polyfill }, { - is: function testObjectIs() { - return Object.is !== polyfill; - } - }); - return polyfill; +function latin1Slice(buf, start, end) { + var ret = ''; + end = Math.min(buf.length, end); + for (var i = start; i < end; ++i) { + ret += String.fromCharCode(buf[i]); + } + return ret; +} +function hexSlice(buf, start, end) { + var len = buf.length; + if (!start || start < 0) start = 0; + if (!end || end < 0 || end > len) end = len; + var out = ''; + for (var i = start; i < end; ++i) { + out += hexSliceLookupTable[buf[i]]; + } + return out; +} +function utf16leSlice(buf, start, end) { + var bytes = buf.slice(start, end); + var res = ''; + // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) + for (var i = 0; i < bytes.length - 1; i += 2) { + res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256); + } + return res; +} +Buffer.prototype.slice = function slice(start, end) { + var len = this.length; + start = ~~start; + end = end === undefined ? len : ~~end; + if (start < 0) { + start += len; + if (start < 0) start = 0; + } else if (start > len) { + start = len; + } + if (end < 0) { + end += len; + if (end < 0) end = 0; + } else if (end > len) { + end = len; + } + if (end < start) end = start; + var newBuf = this.subarray(start, end); + // Return an augmented `Uint8Array` instance + Object.setPrototypeOf(newBuf, Buffer.prototype); + return newBuf; }; - -/***/ }), - -/***/ 3746: -/***/ (function(module) { - -"use strict"; - - -var fnToStr = Function.prototype.toString; -var reflectApply = typeof Reflect === 'object' && Reflect !== null && Reflect.apply; -var badArrayLike; -var isCallableMarker; -if (typeof reflectApply === 'function' && typeof Object.defineProperty === 'function') { - try { - badArrayLike = Object.defineProperty({}, 'length', { - get: function () { - throw isCallableMarker; - } - }); - isCallableMarker = {}; - // eslint-disable-next-line no-throw-literal - reflectApply(function () { throw 42; }, null, badArrayLike); - } catch (_) { - if (_ !== isCallableMarker) { - reflectApply = null; - } - } -} else { - reflectApply = null; +/* + * Need to make sure that buffer isn't trying to write out of bounds. + */ +function checkOffset(offset, ext, length) { + if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint'); + if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length'); } - -var constructorRegex = /^\s*class\b/; -var isES6ClassFn = function isES6ClassFunction(value) { - try { - var fnStr = fnToStr.call(value); - return constructorRegex.test(fnStr); - } catch (e) { - return false; // not a function - } +Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + return val; }; - -var tryFunctionObject = function tryFunctionToStr(value) { - try { - if (isES6ClassFn(value)) { return false; } - fnToStr.call(value); - return true; - } catch (e) { - return false; - } +Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) { + checkOffset(offset, byteLength, this.length); + } + var val = this[offset + --byteLength]; + var mul = 1; + while (byteLength > 0 && (mul *= 0x100)) { + val += this[offset + --byteLength] * mul; + } + return val; }; -var toStr = Object.prototype.toString; -var objectClass = '[object Object]'; -var fnClass = '[object Function]'; -var genClass = '[object GeneratorFunction]'; -var ddaClass = '[object HTMLAllCollection]'; // IE 11 -var ddaClass2 = '[object HTML document.all class]'; -var ddaClass3 = '[object HTMLCollection]'; // IE 9-10 -var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag` - -var isIE68 = !(0 in [,]); // eslint-disable-line no-sparse-arrays, comma-spacing - -var isDDA = function isDocumentDotAll() { return false; }; -if (typeof document === 'object') { - // Firefox 3 canonicalizes DDA to undefined when it's not accessed directly - var all = document.all; - if (toStr.call(all) === toStr.call(document.all)) { - isDDA = function isDocumentDotAll(value) { - /* globals document: false */ - // in IE 6-8, typeof document.all is "object" and it's truthy - if ((isIE68 || !value) && (typeof value === 'undefined' || typeof value === 'object')) { - try { - var str = toStr.call(value); - return ( - str === ddaClass - || str === ddaClass2 - || str === ddaClass3 // opera 12.16 - || str === objectClass // IE 6-8 - ) && value('') == null; // eslint-disable-line eqeqeq - } catch (e) { /**/ } - } - return false; - }; - } -} - -module.exports = reflectApply - ? function isCallable(value) { - if (isDDA(value)) { return true; } - if (!value) { return false; } - if (typeof value !== 'function' && typeof value !== 'object') { return false; } - try { - reflectApply(value, null, badArrayLike); - } catch (e) { - if (e !== isCallableMarker) { return false; } - } - return !isES6ClassFn(value) && tryFunctionObject(value); - } - : function isCallable(value) { - if (isDDA(value)) { return true; } - if (!value) { return false; } - if (typeof value !== 'function' && typeof value !== 'object') { return false; } - if (hasToStringTag) { return tryFunctionObject(value); } - if (isES6ClassFn(value)) { return false; } - var strClass = toStr.call(value); - if (strClass !== fnClass && strClass !== genClass && !(/^\[object HTML/).test(strClass)) { return false; } - return tryFunctionObject(value); - }; - - -/***/ }), - -/***/ 3774: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('./max')} */ -module.exports = Math.max; - - -/***/ }), - -/***/ 3809: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var userAgent = __webpack_require__(40715); - -var firefox = userAgent.match(/firefox\/(\d+)/i); - -module.exports = !!firefox && +firefox[1]; - - -/***/ }), - -/***/ 3840: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -/* eslint-disable no-proto -- safe */ -var uncurryThis = __webpack_require__(38347); -var anObject = __webpack_require__(34984); -var aPossiblePrototype = __webpack_require__(58659); - -// `Object.setPrototypeOf` method -// https://tc39.es/ecma262/#sec-object.setprototypeof -// Works with __proto__ only. Old v8 can't work with null proto objects. -// eslint-disable-next-line es/no-object-setprototypeof -- safe -module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { - var CORRECT_SETTER = false; - var test = {}; - var setter; - try { - // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe - setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set); - setter(test, []); - CORRECT_SETTER = test instanceof Array; - } catch (error) { /* empty */ } - return function setPrototypeOf(O, proto) { - anObject(O); - aPossiblePrototype(proto); - if (CORRECT_SETTER) setter(O, proto); - else O.__proto__ = proto; - return O; - }; -}() : undefined); - - -/***/ }), - -/***/ 3858: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var $some = (__webpack_require__(91102).some); - -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - -// `%TypedArray%.prototype.some` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.some -exportTypedArrayMethod('some', function some(callbackfn /* , thisArg */) { - return $some(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); +Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + return this[offset]; +}; +Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] | this[offset + 1] << 8; +}; +Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + return this[offset] << 8 | this[offset + 1]; +}; +Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000; +}; +Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]); +}; +Buffer.prototype.readBigUInt64LE = defineBigIntMethod(function readBigUInt64LE(offset) { + offset = offset >>> 0; + validateNumber(offset, 'offset'); + var first = this[offset]; + var last = this[offset + 7]; + if (first === undefined || last === undefined) { + boundsError(offset, this.length - 8); + } + var lo = first + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 24); + var hi = this[++offset] + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + last * Math.pow(2, 24); + return BigInt(lo) + (BigInt(hi) << BigInt(32)); }); +Buffer.prototype.readBigUInt64BE = defineBigIntMethod(function readBigUInt64BE(offset) { + offset = offset >>> 0; + validateNumber(offset, 'offset'); + var first = this[offset]; + var last = this[offset + 7]; + if (first === undefined || last === undefined) { + boundsError(offset, this.length - 8); + } + var hi = first * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + this[++offset]; + var lo = this[++offset] * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + last; + return (BigInt(hi) << BigInt(32)) + BigInt(lo); +}); +Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var val = this[offset]; + var mul = 1; + var i = 0; + while (++i < byteLength && (mul *= 0x100)) { + val += this[offset + i] * mul; + } + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; +}; +Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) checkOffset(offset, byteLength, this.length); + var i = byteLength; + var mul = 1; + var val = this[offset + --i]; + while (i > 0 && (mul *= 0x100)) { + val += this[offset + --i] * mul; + } + mul *= 0x80; + if (val >= mul) val -= Math.pow(2, 8 * byteLength); + return val; +}; +Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 1, this.length); + if (!(this[offset] & 0x80)) return this[offset]; + return (0xff - this[offset] + 1) * -1; +}; +Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset] | this[offset + 1] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; +}; +Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 2, this.length); + var val = this[offset + 1] | this[offset] << 8; + return val & 0x8000 ? val | 0xFFFF0000 : val; +}; +Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24; +}; +Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]; +}; +Buffer.prototype.readBigInt64LE = defineBigIntMethod(function readBigInt64LE(offset) { + offset = offset >>> 0; + validateNumber(offset, 'offset'); + var first = this[offset]; + var last = this[offset + 7]; + if (first === undefined || last === undefined) { + boundsError(offset, this.length - 8); + } + var val = this[offset + 4] + this[offset + 5] * Math.pow(2, 8) + this[offset + 6] * Math.pow(2, 16) + (last << 24); // Overflow - -/***/ }), - -/***/ 3919: -/***/ (function(module) { - -"use strict"; - - -var hasOwn = typeof Object.hasOwn === "undefined" ? Function.call.bind(Object.prototype.hasOwnProperty) : Object.hasOwn - -function mergeModules (target, module) { - for (var key in module) { - if (hasOwn(module, key)) { - target[key] = module[key] - } + return (BigInt(val) << BigInt(32)) + BigInt(first + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 24)); +}); +Buffer.prototype.readBigInt64BE = defineBigIntMethod(function readBigInt64BE(offset) { + offset = offset >>> 0; + validateNumber(offset, 'offset'); + var first = this[offset]; + var last = this[offset + 7]; + if (first === undefined || last === undefined) { + boundsError(offset, this.length - 8); } + var val = (first << 24) + + // Overflow + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + this[++offset]; + return (BigInt(val) << BigInt(32)) + BigInt(this[++offset] * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + last); +}); +Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, true, 23, 4); +}; +Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 4, this.length); + return ieee754.read(this, offset, false, 23, 4); +}; +Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, true, 52, 8); +}; +Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) { + offset = offset >>> 0; + if (!noAssert) checkOffset(offset, 8, this.length); + return ieee754.read(this, offset, false, 52, 8); +}; +function checkInt(buf, value, offset, ext, max, min) { + if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); + if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); + if (offset + ext > buf.length) throw new RangeError('Index out of range'); } +Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + var mul = 1; + var i = 0; + this[offset] = value & 0xFF; + while (++i < byteLength && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + return offset + byteLength; +}; +Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + if (!noAssert) { + var maxBytes = Math.pow(2, 8 * byteLength) - 1; + checkInt(this, value, offset, byteLength, maxBytes, 0); + } + var i = byteLength - 1; + var mul = 1; + this[offset + i] = value & 0xFF; + while (--i >= 0 && (mul *= 0x100)) { + this[offset + i] = value / mul & 0xFF; + } + return offset + byteLength; +}; +Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0); + this[offset] = value & 0xff; + return offset + 1; +}; +Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; +}; +Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; +}; +Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset + 3] = value >>> 24; + this[offset + 2] = value >>> 16; + this[offset + 1] = value >>> 8; + this[offset] = value & 0xff; + return offset + 4; +}; +Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; +}; +function wrtBigUInt64LE(buf, value, offset, min, max) { + checkIntBI(value, min, max, buf, offset, 7); + var lo = Number(value & BigInt(0xffffffff)); + buf[offset++] = lo; + lo = lo >> 8; + buf[offset++] = lo; + lo = lo >> 8; + buf[offset++] = lo; + lo = lo >> 8; + buf[offset++] = lo; + var hi = Number(value >> BigInt(32) & BigInt(0xffffffff)); + buf[offset++] = hi; + hi = hi >> 8; + buf[offset++] = hi; + hi = hi >> 8; + buf[offset++] = hi; + hi = hi >> 8; + buf[offset++] = hi; + return offset; +} +function wrtBigUInt64BE(buf, value, offset, min, max) { + checkIntBI(value, min, max, buf, offset, 7); + var lo = Number(value & BigInt(0xffffffff)); + buf[offset + 7] = lo; + lo = lo >> 8; + buf[offset + 6] = lo; + lo = lo >> 8; + buf[offset + 5] = lo; + lo = lo >> 8; + buf[offset + 4] = lo; + var hi = Number(value >> BigInt(32) & BigInt(0xffffffff)); + buf[offset + 3] = hi; + hi = hi >> 8; + buf[offset + 2] = hi; + hi = hi >> 8; + buf[offset + 1] = hi; + hi = hi >> 8; + buf[offset] = hi; + return offset + 8; +} +Buffer.prototype.writeBigUInt64LE = defineBigIntMethod(function writeBigUInt64LE(value, offset) { + if (offset === void 0) { + offset = 0; + } + return wrtBigUInt64LE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff')); +}); +Buffer.prototype.writeBigUInt64BE = defineBigIntMethod(function writeBigUInt64BE(value, offset) { + if (offset === void 0) { + offset = 0; + } + return wrtBigUInt64BE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff')); +}); +Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + var i = 0; + var mul = 1; + var sub = 0; + this[offset] = value & 0xFF; + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { + sub = 1; + } + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + return offset + byteLength; +}; +Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) { + var limit = Math.pow(2, 8 * byteLength - 1); + checkInt(this, value, offset, byteLength, limit - 1, -limit); + } + var i = byteLength - 1; + var mul = 1; + var sub = 0; + this[offset + i] = value & 0xFF; + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { + sub = 1; + } + this[offset + i] = (value / mul >> 0) - sub & 0xFF; + } + return offset + byteLength; +}; +Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80); + if (value < 0) value = 0xff + value + 1; + this[offset] = value & 0xff; + return offset + 1; +}; +Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + return offset + 2; +}; +Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); + this[offset] = value >>> 8; + this[offset + 1] = value & 0xff; + return offset + 2; +}; +Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + this[offset] = value & 0xff; + this[offset + 1] = value >>> 8; + this[offset + 2] = value >>> 16; + this[offset + 3] = value >>> 24; + return offset + 4; +}; +Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); + if (value < 0) value = 0xffffffff + value + 1; + this[offset] = value >>> 24; + this[offset + 1] = value >>> 16; + this[offset + 2] = value >>> 8; + this[offset + 3] = value & 0xff; + return offset + 4; +}; +Buffer.prototype.writeBigInt64LE = defineBigIntMethod(function writeBigInt64LE(value, offset) { + if (offset === void 0) { + offset = 0; + } + return wrtBigUInt64LE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff')); +}); +Buffer.prototype.writeBigInt64BE = defineBigIntMethod(function writeBigInt64BE(value, offset) { + if (offset === void 0) { + offset = 0; + } + return wrtBigUInt64BE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff')); +}); +function checkIEEE754(buf, value, offset, ext, max, min) { + if (offset + ext > buf.length) throw new RangeError('Index out of range'); + if (offset < 0) throw new RangeError('Index out of range'); +} +function writeFloat(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) { + checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38); + } + ieee754.write(buf, value, offset, littleEndian, 23, 4); + return offset + 4; +} +Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) { + return writeFloat(this, value, offset, true, noAssert); +}; +Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) { + return writeFloat(this, value, offset, false, noAssert); +}; +function writeDouble(buf, value, offset, littleEndian, noAssert) { + value = +value; + offset = offset >>> 0; + if (!noAssert) { + checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308); + } + ieee754.write(buf, value, offset, littleEndian, 52, 8); + return offset + 8; +} +Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) { + return writeDouble(this, value, offset, true, noAssert); +}; +Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) { + return writeDouble(this, value, offset, false, noAssert); +}; -module.exports = mergeModules - - -/***/ }), - -/***/ 4420: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(39081); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var C_algo = C.algo; - - /** - * HMAC algorithm. - */ - var HMAC = C_algo.HMAC = Base.extend({ - /** - * Initializes a newly created HMAC. - * - * @param {Hasher} hasher The hash algorithm to use. - * @param {WordArray|string} key The secret key. - * - * @example - * - * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key); - */ - init: function init(hasher, key) { - // Init hasher - hasher = this._hasher = new hasher.init(); +// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) +Buffer.prototype.copy = function copy(target, targetStart, start, end) { + if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer'); + if (!start) start = 0; + if (!end && end !== 0) end = this.length; + if (targetStart >= target.length) targetStart = target.length; + if (!targetStart) targetStart = 0; + if (end > 0 && end < start) end = start; - // Convert string to WordArray, else assume WordArray already - if (typeof key == 'string') { - key = Utf8.parse(key); - } + // Copy 0 bytes; we're done + if (end === start) return 0; + if (target.length === 0 || this.length === 0) return 0; - // Shortcuts - var hasherBlockSize = hasher.blockSize; - var hasherBlockSizeBytes = hasherBlockSize * 4; + // Fatal error conditions + if (targetStart < 0) { + throw new RangeError('targetStart out of bounds'); + } + if (start < 0 || start >= this.length) throw new RangeError('Index out of range'); + if (end < 0) throw new RangeError('sourceEnd out of bounds'); - // Allow arbitrary length keys - if (key.sigBytes > hasherBlockSizeBytes) { - key = hasher.finalize(key); - } + // Are we oob? + if (end > this.length) end = this.length; + if (target.length - targetStart < end - start) { + end = target.length - targetStart + start; + } + var len = end - start; + if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { + // Use built-in when available, missing from IE11 + this.copyWithin(targetStart, start, end); + } else { + Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart); + } + return len; +}; - // Clamp excess bits - key.clamp(); +// Usage: +// buffer.fill(number[, offset[, end]]) +// buffer.fill(buffer[, offset[, end]]) +// buffer.fill(string[, offset[, end]][, encoding]) +Buffer.prototype.fill = function fill(val, start, end, encoding) { + // Handle string cases: + if (typeof val === 'string') { + if (typeof start === 'string') { + encoding = start; + start = 0; + end = this.length; + } else if (typeof end === 'string') { + encoding = end; + end = this.length; + } + if (encoding !== undefined && typeof encoding !== 'string') { + throw new TypeError('encoding must be a string'); + } + if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { + throw new TypeError('Unknown encoding: ' + encoding); + } + if (val.length === 1) { + var code = val.charCodeAt(0); + if (encoding === 'utf8' && code < 128 || encoding === 'latin1') { + // Fast path: If `val` fits into a single byte, use that numeric value. + val = code; + } + } + } else if (typeof val === 'number') { + val = val & 255; + } else if (typeof val === 'boolean') { + val = Number(val); + } - // Clone key for inner and outer pads - var oKey = this._oKey = key.clone(); - var iKey = this._iKey = key.clone(); + // Invalid ranges are not set to a default, so can range check early. + if (start < 0 || this.length < start || this.length < end) { + throw new RangeError('Out of range index'); + } + if (end <= start) { + return this; + } + start = start >>> 0; + end = end === undefined ? this.length : end >>> 0; + if (!val) val = 0; + var i; + if (typeof val === 'number') { + for (i = start; i < end; ++i) { + this[i] = val; + } + } else { + var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding); + var len = bytes.length; + if (len === 0) { + throw new TypeError('The value "' + val + '" is invalid for argument "value"'); + } + for (i = 0; i < end - start; ++i) { + this[i + start] = bytes[i % len]; + } + } + return this; +}; - // Shortcuts - var oKeyWords = oKey.words; - var iKeyWords = iKey.words; +// CUSTOM ERRORS +// ============= - // XOR keys with pad constants - for (var i = 0; i < hasherBlockSize; i++) { - oKeyWords[i] ^= 0x5c5c5c5c; - iKeyWords[i] ^= 0x36363636; - } - oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes; +// Simplified versions from Node, changed for Buffer-only usage +var errors = {}; +function E(sym, getMessage, Base) { + errors[sym] = /*#__PURE__*/function (_Base) { + function NodeError() { + var _this; + _this = _Base.call(this) || this; + Object.defineProperty(_this, 'message', { + value: getMessage.apply(_this, arguments), + writable: true, + configurable: true + }); - // Set initial values - this.reset(); + // Add the error code to the name to include it in the stack trace. + _this.name = _this.name + " [" + sym + "]"; + // Access the stack to generate the error message including the error code + // from the name. + _this.stack; // eslint-disable-line no-unused-expressions + // Reset the name to the actual name. + delete _this.name; + return _this; + } + _inheritsLoose(NodeError, _Base); + var _proto = NodeError.prototype; + _proto.toString = function toString() { + return this.name + " [" + sym + "]: " + this.message; + }; + return _createClass(NodeError, [{ + key: "code", + get: function get() { + return sym; }, - /** - * Resets this HMAC to its initial state. - * - * @example - * - * hmacHasher.reset(); - */ - reset: function reset() { - // Shortcut - var hasher = this._hasher; + set: function set(value) { + Object.defineProperty(this, 'code', { + configurable: true, + enumerable: true, + value: value, + writable: true + }); + } + }]); + }(Base); +} +E('ERR_BUFFER_OUT_OF_BOUNDS', function (name) { + if (name) { + return name + " is outside of buffer bounds"; + } + return 'Attempt to access memory outside buffer bounds'; +}, RangeError); +E('ERR_INVALID_ARG_TYPE', function (name, actual) { + return "The \"" + name + "\" argument must be of type number. Received type " + typeof actual; +}, TypeError); +E('ERR_OUT_OF_RANGE', function (str, range, input) { + var msg = "The value of \"" + str + "\" is out of range."; + var received = input; + if (Number.isInteger(input) && Math.abs(input) > Math.pow(2, 32)) { + received = addNumericalSeparator(String(input)); + } else if (typeof input === 'bigint') { + received = String(input); + if (input > Math.pow(BigInt(2), BigInt(32)) || input < -Math.pow(BigInt(2), BigInt(32))) { + received = addNumericalSeparator(received); + } + received += 'n'; + } + msg += " It must be " + range + ". Received " + received; + return msg; +}, RangeError); +function addNumericalSeparator(val) { + var res = ''; + var i = val.length; + var start = val[0] === '-' ? 1 : 0; + for (; i >= start + 4; i -= 3) { + res = "_" + val.slice(i - 3, i) + res; + } + return "" + val.slice(0, i) + res; +} - // Reset - hasher.reset(); - hasher.update(this._iKey); - }, - /** - * Updates this HMAC with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {HMAC} This HMAC instance. - * - * @example - * - * hmacHasher.update('message'); - * hmacHasher.update(wordArray); - */ - update: function update(messageUpdate) { - this._hasher.update(messageUpdate); - - // Chainable - return this; - }, - /** - * Finalizes the HMAC computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The HMAC. - * - * @example - * - * var hmac = hmacHasher.finalize(); - * var hmac = hmacHasher.finalize('message'); - * var hmac = hmacHasher.finalize(wordArray); - */ - finalize: function finalize(messageUpdate) { - // Shortcut - var hasher = this._hasher; +// CHECK FUNCTIONS +// =============== - // Compute HMAC - var innerHash = hasher.finalize(messageUpdate); - hasher.reset(); - var hmac = hasher.finalize(this._oKey.clone().concat(innerHash)); - return hmac; +function checkBounds(buf, offset, byteLength) { + validateNumber(offset, 'offset'); + if (buf[offset] === undefined || buf[offset + byteLength] === undefined) { + boundsError(offset, buf.length - (byteLength + 1)); + } +} +function checkIntBI(value, min, max, buf, offset, byteLength) { + if (value > max || value < min) { + var n = typeof min === 'bigint' ? 'n' : ''; + var range; + if (byteLength > 3) { + if (min === 0 || min === BigInt(0)) { + range = ">= 0" + n + " and < 2" + n + " ** " + (byteLength + 1) * 8 + n; + } else { + range = ">= -(2" + n + " ** " + ((byteLength + 1) * 8 - 1) + n + ") and < 2 ** " + ("" + ((byteLength + 1) * 8 - 1) + n); } - }); - })(); -}); - -/***/ }), - -/***/ 4660: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var $reduce = (__webpack_require__(32843).left); + } else { + range = ">= " + min + n + " and <= " + max + n; + } + throw new errors.ERR_OUT_OF_RANGE('value', range, value); + } + checkBounds(buf, offset, byteLength); +} +function validateNumber(value, name) { + if (typeof value !== 'number') { + throw new errors.ERR_INVALID_ARG_TYPE(name, 'number', value); + } +} +function boundsError(value, length, type) { + if (Math.floor(value) !== value) { + validateNumber(value, type); + throw new errors.ERR_OUT_OF_RANGE(type || 'offset', 'an integer', value); + } + if (length < 0) { + throw new errors.ERR_BUFFER_OUT_OF_BOUNDS(); + } + throw new errors.ERR_OUT_OF_RANGE(type || 'offset', ">= " + (type ? 1 : 0) + " and <= " + length, value); +} -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +// HELPER FUNCTIONS +// ================ -// `%TypedArray%.prototype.reduce` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce -exportTypedArrayMethod('reduce', function reduce(callbackfn /* , initialValue */) { - var length = arguments.length; - return $reduce(aTypedArray(this), callbackfn, length, length > 1 ? arguments[1] : undefined); -}); +var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g; +function base64clean(str) { + // Node takes equal signs as end of the Base64 encoding + str = str.split('=')[0]; + // Node strips out invalid characters like \n and \t from the string, base64-js does not + str = str.trim().replace(INVALID_BASE64_RE, ''); + // Node converts strings with length < 2 to '' + if (str.length < 2) return ''; + // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not + while (str.length % 4 !== 0) { + str = str + '='; + } + return str; +} +function utf8ToBytes(string, units) { + units = units || Infinity; + var codePoint; + var length = string.length; + var leadSurrogate = null; + var bytes = []; + for (var i = 0; i < length; ++i) { + codePoint = string.charCodeAt(i); + // is surrogate component + if (codePoint > 0xD7FF && codePoint < 0xE000) { + // last char was a lead + if (!leadSurrogate) { + // no lead yet + if (codePoint > 0xDBFF) { + // unexpected trail + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } else if (i + 1 === length) { + // unpaired lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + continue; + } -/***/ }), + // valid lead + leadSurrogate = codePoint; + continue; + } -/***/ 5049: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // 2 leads in a row + if (codePoint < 0xDC00) { + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + leadSurrogate = codePoint; + continue; + } -"use strict"; + // valid surrogate pair + codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000; + } else if (leadSurrogate) { + // valid bmp char, but last char was a lead + if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); + } + leadSurrogate = null; + // encode utf8 + if (codePoint < 0x80) { + if ((units -= 1) < 0) break; + bytes.push(codePoint); + } else if (codePoint < 0x800) { + if ((units -= 2) < 0) break; + bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x10000) { + if ((units -= 3) < 0) break; + bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else if (codePoint < 0x110000) { + if ((units -= 4) < 0) break; + bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); + } else { + throw new Error('Invalid code point'); + } + } + return bytes; +} +function asciiToBytes(str) { + var byteArray = []; + for (var i = 0; i < str.length; ++i) { + // Node's code seems to be doing this and not & 0x7F.. + byteArray.push(str.charCodeAt(i) & 0xFF); + } + return byteArray; +} +function utf16leToBytes(str, units) { + var c, hi, lo; + var byteArray = []; + for (var i = 0; i < str.length; ++i) { + if ((units -= 2) < 0) break; + c = str.charCodeAt(i); + hi = c >> 8; + lo = c % 256; + byteArray.push(lo); + byteArray.push(hi); + } + return byteArray; +} +function base64ToBytes(str) { + return base64.toByteArray(base64clean(str)); +} +function blitBuffer(src, dst, offset, length) { + var i; + for (i = 0; i < length; ++i) { + if (i + offset >= dst.length || i >= src.length) break; + dst[i + offset] = src[i]; + } + return i; +} -var implementation = __webpack_require__(12719); +// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass +// the `instanceof` check but they should be treated as of that type. +// See: https://github.com/feross/buffer/issues/166 +function isInstance(obj, type) { + return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; +} +function numberIsNaN(obj) { + // For IE11 support + return obj !== obj; // eslint-disable-line no-self-compare +} -module.exports = Function.prototype.bind || implementation; +// Create lookup table for `toString('hex')` +// See: https://github.com/feross/buffer/issues/219 +var hexSliceLookupTable = function () { + var alphabet = '0123456789abcdef'; + var table = new Array(256); + for (var i = 0; i < 16; ++i) { + var i16 = i * 16; + for (var j = 0; j < 16; ++j) { + table[i16 + j] = alphabet[i] + alphabet[j]; + } + } + return table; +}(); +// Return not function with Error if BigInt not supported +function defineBigIntMethod(fn) { + return typeof BigInt === 'undefined' ? BufferBigIntNotDefined : fn; +} +function BufferBigIntNotDefined() { + throw new Error('BigInt not supported'); +} /***/ }), -/***/ 5155: +/***/ 30450: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); +"use strict"; -module.exports = global.Promise; +__webpack_require__(8953); +__webpack_require__(14032); +// eslint-disable-next-line es/no-typed-arrays -- safe +module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined'; /***/ }), -/***/ 5303: -/***/ (function(__unused_webpack_module, exports) { +/***/ 59754: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var CI_BRK, CP_BRK, DI_BRK, IN_BRK, PR_BRK; -exports.DI_BRK = DI_BRK = 0; // Direct break opportunity -exports.IN_BRK = IN_BRK = 1; // Indirect break opportunity -exports.CI_BRK = CI_BRK = 2; // Indirect break opportunity for combining marks -exports.CP_BRK = CP_BRK = 3; // Prohibited break for combining marks -exports.PR_BRK = PR_BRK = 4; // Prohibited break +var NATIVE_ARRAY_BUFFER = __webpack_require__(30450); +var DESCRIPTORS = __webpack_require__(15567); +var global = __webpack_require__(32010); +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); +var hasOwn = __webpack_require__(20340); +var classof = __webpack_require__(52564); +var tryToString = __webpack_require__(68664); +var createNonEnumerableProperty = __webpack_require__(48914); +var redefine = __webpack_require__(13711); +var defineProperty = (__webpack_require__(95892).f); +var isPrototypeOf = __webpack_require__(70176); +var getPrototypeOf = __webpack_require__(69548); +var setPrototypeOf = __webpack_require__(3840); +var wellKnownSymbol = __webpack_require__(38688); +var uid = __webpack_require__(46859); +var Int8Array = global.Int8Array; +var Int8ArrayPrototype = Int8Array && Int8Array.prototype; +var Uint8ClampedArray = global.Uint8ClampedArray; +var Uint8ClampedArrayPrototype = Uint8ClampedArray && Uint8ClampedArray.prototype; +var TypedArray = Int8Array && getPrototypeOf(Int8Array); +var TypedArrayPrototype = Int8ArrayPrototype && getPrototypeOf(Int8ArrayPrototype); +var ObjectPrototype = Object.prototype; +var TypeError = global.TypeError; +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG'); +var TYPED_ARRAY_CONSTRUCTOR = uid('TYPED_ARRAY_CONSTRUCTOR'); +// Fixing native typed arrays in Opera Presto crashes the browser, see #595 +var NATIVE_ARRAY_BUFFER_VIEWS = NATIVE_ARRAY_BUFFER && !!setPrototypeOf && classof(global.opera) !== 'Opera'; +var TYPED_ARRAY_TAG_REQIRED = false; +var NAME, Constructor, Prototype; +var TypedArrayConstructorsList = { + Int8Array: 1, + Uint8Array: 1, + Uint8ClampedArray: 1, + Int16Array: 2, + Uint16Array: 2, + Int32Array: 4, + Uint32Array: 4, + Float32Array: 4, + Float64Array: 8 +}; +var BigIntArrayConstructorsList = { + BigInt64Array: 8, + BigUint64Array: 8 +}; +var isView = function isView(it) { + if (!isObject(it)) return false; + var klass = classof(it); + return klass === 'DataView' || hasOwn(TypedArrayConstructorsList, klass) || hasOwn(BigIntArrayConstructorsList, klass); +}; +var isTypedArray = function isTypedArray(it) { + if (!isObject(it)) return false; + var klass = classof(it); + return hasOwn(TypedArrayConstructorsList, klass) || hasOwn(BigIntArrayConstructorsList, klass); +}; +var aTypedArray = function aTypedArray(it) { + if (isTypedArray(it)) return it; + throw TypeError('Target is not a typed array'); +}; +var aTypedArrayConstructor = function aTypedArrayConstructor(C) { + if (isCallable(C) && (!setPrototypeOf || isPrototypeOf(TypedArray, C))) return C; + throw TypeError(tryToString(C) + ' is not a typed array constructor'); +}; +var exportTypedArrayMethod = function exportTypedArrayMethod(KEY, property, forced) { + if (!DESCRIPTORS) return; + if (forced) for (var ARRAY in TypedArrayConstructorsList) { + var TypedArrayConstructor = global[ARRAY]; + if (TypedArrayConstructor && hasOwn(TypedArrayConstructor.prototype, KEY)) try { + delete TypedArrayConstructor.prototype[KEY]; + } catch (error) {/* empty */} + } + if (!TypedArrayPrototype[KEY] || forced) { + redefine(TypedArrayPrototype, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && Int8ArrayPrototype[KEY] || property); + } +}; +var exportTypedArrayStaticMethod = function exportTypedArrayStaticMethod(KEY, property, forced) { + var ARRAY, TypedArrayConstructor; + if (!DESCRIPTORS) return; + if (setPrototypeOf) { + if (forced) for (ARRAY in TypedArrayConstructorsList) { + TypedArrayConstructor = global[ARRAY]; + if (TypedArrayConstructor && hasOwn(TypedArrayConstructor, KEY)) try { + delete TypedArrayConstructor[KEY]; + } catch (error) {/* empty */} + } + if (!TypedArray[KEY] || forced) { + // V8 ~ Chrome 49-50 `%TypedArray%` methods are non-writable non-configurable + try { + return redefine(TypedArray, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && TypedArray[KEY] || property); + } catch (error) {/* empty */} + } else return; + } + for (ARRAY in TypedArrayConstructorsList) { + TypedArrayConstructor = global[ARRAY]; + if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) { + redefine(TypedArrayConstructor, KEY, property); + } + } +}; +for (NAME in TypedArrayConstructorsList) { + Constructor = global[NAME]; + Prototype = Constructor && Constructor.prototype; + if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);else NATIVE_ARRAY_BUFFER_VIEWS = false; +} +for (NAME in BigIntArrayConstructorsList) { + Constructor = global[NAME]; + Prototype = Constructor && Constructor.prototype; + if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor); +} -// Based on example pair table from https://www.unicode.org/reports/tr14/tr14-37.html#Table2 -// - ZWJ special processing for LB8a of Revision 41 -// - CB manually added as per Rule LB20 -// - CL, CP, NS, SY, IS, PR, PO, HY, BA, B2 and RI manually adjusted as per LB22 of Revision 45 -exports.pairTable = [ -//OP , CL , CP , QU , GL , NS , EX , SY , IS , PR , PO , NU , AL , HL , ID , IN , HY , BA , BB , B2 , ZW , CM , WJ , H2 , H3 , JL , JV , JT , RI , EB , EM , ZWJ , CB -[PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, CP_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK], -// OP -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// CL -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// CP -[PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], -// QU -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], -// GL -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// NS -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// EX -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// SY -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// IS -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK], -// PR -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// PO -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// NU -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// AL -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// HL -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// ID -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// IN -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, DI_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// HY -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, DI_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// BA -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK], -// BB -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, PR_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// B2 -[DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK], -// ZW -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// CM -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK], -// WJ -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// H2 -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// H3 -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// JL -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// JV -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// JT -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// RI -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, DI_BRK], -// EB -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, IN_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// EM -[IN_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, PR_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, IN_BRK, IN_BRK, IN_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK], -// ZWJ -[DI_BRK, PR_BRK, PR_BRK, IN_BRK, IN_BRK, DI_BRK, PR_BRK, PR_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, PR_BRK, CI_BRK, PR_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, DI_BRK, IN_BRK, DI_BRK] // CB -]; +// WebKit bug - typed arrays constructors prototype is Object.prototype +if (!NATIVE_ARRAY_BUFFER_VIEWS || !isCallable(TypedArray) || TypedArray === Function.prototype) { + // eslint-disable-next-line no-shadow -- safe + TypedArray = function TypedArray() { + throw TypeError('Incorrect invocation'); + }; + if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) { + if (global[NAME]) setPrototypeOf(global[NAME], TypedArray); + } +} +if (!NATIVE_ARRAY_BUFFER_VIEWS || !TypedArrayPrototype || TypedArrayPrototype === ObjectPrototype) { + TypedArrayPrototype = TypedArray.prototype; + if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) { + if (global[NAME]) setPrototypeOf(global[NAME].prototype, TypedArrayPrototype); + } +} + +// WebKit bug - one more object in Uint8ClampedArray prototype chain +if (NATIVE_ARRAY_BUFFER_VIEWS && getPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype) { + setPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype); +} +if (DESCRIPTORS && !hasOwn(TypedArrayPrototype, TO_STRING_TAG)) { + TYPED_ARRAY_TAG_REQIRED = true; + defineProperty(TypedArrayPrototype, TO_STRING_TAG, { + get: function get() { + return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined; + } + }); + for (NAME in TypedArrayConstructorsList) if (global[NAME]) { + createNonEnumerableProperty(global[NAME], TYPED_ARRAY_TAG, NAME); + } +} +module.exports = { + NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS, + TYPED_ARRAY_CONSTRUCTOR: TYPED_ARRAY_CONSTRUCTOR, + TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQIRED && TYPED_ARRAY_TAG, + aTypedArray: aTypedArray, + aTypedArrayConstructor: aTypedArrayConstructor, + exportTypedArrayMethod: exportTypedArrayMethod, + exportTypedArrayStaticMethod: exportTypedArrayStaticMethod, + isView: isView, + isTypedArray: isTypedArray, + TypedArray: TypedArray, + TypedArrayPrototype: TypedArrayPrototype +}; /***/ }), -/***/ 5417: +/***/ 83124: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var UnicodeTrie = __webpack_require__(59006); - -var base64 = __webpack_require__(32504); -var _require = __webpack_require__(84490), - BK = _require.BK, - CR = _require.CR, - LF = _require.LF, - NL = _require.NL, - SG = _require.SG, - WJ = _require.WJ, - SP = _require.SP, - ZWJ = _require.ZWJ, - BA = _require.BA, - HY = _require.HY, - NS = _require.NS, - AI = _require.AI, - AL = _require.AL, - CJ = _require.CJ, - HL = _require.HL, - RI = _require.RI, - SA = _require.SA, - XX = _require.XX; -var _require2 = __webpack_require__(5303), - DI_BRK = _require2.DI_BRK, - IN_BRK = _require2.IN_BRK, - CI_BRK = _require2.CI_BRK, - CP_BRK = _require2.CP_BRK, - PR_BRK = _require2.PR_BRK, - pairTable = _require2.pairTable; -var data = base64.toByteArray("AAgOAAAAAACA3QAAAe0OEvHtnXuMXUUdx+d2d2/33r237V3YSoFC11r6IGgbRFBEfFF5KCVCMYKFaKn8AYqmwUeqECFabUGQipUiNCkgSRElUkKwJRWtwSpJrZpCI4E2NQqiBsFGwWL8Tu6Md3Z23o9zbund5JM5c+b1m9/85nnOuXtTHyFrwXpwL9gBngTPgj+Dv4H9Ae4B0N9PSAMcDqaB0X57urmIs8AQ72SEnQ4+ABaBxWAJWAquENJ9BtdfANeCleBGcCv4NvgeuBv8AGwCm8FWlpbzOPw7wC7wFNgDngMvgpfAq2DCACF10ACHgaPAzIF2+PFwT2Th1P8OuO8FZ4MPggvAxWAp+A6VHe5ysILFvx7u6oF2+Wvg3g7uYvlT+TbC/TH4CdgCtoGtfW3/E2An8++Gu5eleR7uP8B+8BoLf4LFH6i23Vp1rB5a1Q7TGMeCUYYY18RcxF0gxT8H5b3dIw8X3iPkdxauPwQWgyVgWbVT30/h+mrwZan8r8L/FcEWVsJ/E1grpKXcwdLdI9y/H9cPgUerbbun0PadCHcbjQd+D55mafcx9y9wXwKvCLJUJiLdRH09ef4xupqE/KeCY8Bx4M3gbeBdYCE4G3wYXASWgGXgSibTcuaugHs9WA3WgNvBBha2Ee4D4GFNPTYL9x/D9XaJXwnXvwW7wDPgTzQd2A9eAwODhDTBCJgOZoETwEngtEFmF3DPAouY/0K4Swb9dbaMpbkS7nKP9CsCyrpOSrNK8K9kNnYL7q0DGwbb/XnjoDv3gQfBZvBz8GvwO/AHdr3Pkv4F4fplj3J79OgRBx8HypajR48ePXr06NGjx8HFv7pABhX/HRx7HqKjr9Y+y6PXg7X2WRoPm1Kzpz8CcWaweLPhHt/fPq95C65PZnmfDnchOLfWPo/7OLgQ15ewdJ+E++na2PMhyudw72bDGc01CP8aWAm+Dr4BVoHV4IZeWC+sF9YL64UlD1sD1oE7au0z0zK5p1YuZde/R49uJnYdez/62EPgkVr4c7pHkfYXivTbcW8n2A32gOekOH+F/5/gAOivE9IArXpbrmlwR+vljz9bJrV552RCvgQ2GXgRzJ9CyGVTxofdLd17Gv6jW4RcAG5ote/9FO4B8NZhQs4DN4O9kOFY6OFSsB48C/qGCFkAyERCzh9q+0WuA2sqHX4m+Smv4t6RjXYelItwvQ7sBtOahHwU3NYcn+5Q4pFmRz89evTocajxStM898/FfLSgrg8/sT5+zcLDTkXY+6S0C+E/l907SXO+Rt/Lujrxe1kmztPU70JDvSmXILwJWS9TxLuC3VtuycPGCoV+VfD41yvKW6W4d1O9/S5YtZ+Qtbi+k/m/D/eHYBPzb4G7DfyS+enZ42/qnXPFp+pjZdgD/yX0XcV6+93DF+H+G5AhtcxPIs/BoY5cg0g7RRGXx/8Ewo8Y6vhp/Bnwz2F5zId7CgunZ6Dv1uTF0585pNY7P9NdhPCPDI1Ncyn8l4OrwHKwguVB12WrNPnpoPW5BWluA3eCuxRl3cfyfFCom43NBjkeQ9h2Tzlzs7PL5CmD3UwHew26+KMm7AVHu8hJaL1fTtj29L3E/wi6oPvWvkY7bAjucKOYtpymKWdGo/3e5KxGR8YTGvmfZ4XW46RGmnMIG6excs6Ae46nPuh7pGXbvm/fOB91vLhRXvkmlkKuK8BnFTb8xYL6TyqugbzXJZCZ9tlVrO9+C+53G5134A8G1htsjdbvXoT/KEBPmwq04dS2v6UxNnxbAXV5gul4Z6J+tMtBZtv4+Qzy2Ndof+fwPHP/zsbg/QFz02tIM4B9ZRO0mp379NxxBpgD5gv3T8H16eAMcCZYxMIWw/2YEG8pri9n/qvgfr45fm67VtjPzmbpVrJ7NzL3VrjvF/Jdh+sN3M/cB+A+LOV/bVNdX13b0G9KtmrSHCo8jvqfGjFu7WiWP37E8s2+yv8ZwVbYRgvMAm9kvMkhjStzAZbIBGIR+ngAy2NSZ9f0Hv2bIIShCckU5k5sb+OdGGQ0BKqSPzeE1WFCgWXK5dO2rDD/COn9zTvEUfXJ4zT3c9DP2oH2+ZoAtc9RBr/mY0SLdGyap+Nxh6W0In2Sn5C8/W00c/7dXn63we1DtAHud9WZbFNimmFL2iIoqt8eDPQHptERIkNoO8prFVvblm13OaG6oGM+n7P4/RrRz2HdTktotxHFdZW5tvm72UWEtm9dQF6n++hU1FmVFL++L2Nsdt3/1IVrWaacda4Se91t+pHDVXF5HFd9pG7X14NNyePr6wkfPTRI+H6qDPvLqRM5DR2beZ8W95Divq0IWXXyy/d18Yq09ZhyY/fyPjafY37yta8ybD9l3W15+crXYhQ5rsj2Wkb7iDadon1c+tKI4p5NR6HjPl/vqvLm92uK8lTjWNntkwJTu9hkiJmHVf3S1V5UOii6PWL1nVqOkP5QI/b2L2o+Kqr/h9i0bHNl9HudnKn0btKBbZzItQ7n47Drmutg6P+ubZK7/5va0PU8XZS56DP4Isci07gUo3/fscdlfMyp6xR6dy0vt/275K1bJ8qkHI99bdK3v4vt4Gtzs7sEWa5aZH4NDz3yfWG368bXLlQ6GZYQ7/UL1y3mryroZ+nkZwK28SD1vlt+7sNd+lcR3Ji1RKq1WcvhftFzousYxftH7Ngu2pZubcGfD8eMizp5Y/uha/m69NNK5siSOapkcq2lTOOGvE4y9aPclFl20eXTvwoZO374ymob90Jx3Zfk2h/I849q7VNE+WXsj+ZFlJ96Xcd1PyD4ue2J69/Q9V+u9uPrQC7/sHRftjE+n+eQP2Ztl5Kc+0TX/WND8vP2iF23xO7lfO3XtKfLhUm/PE6Ze78RD/3Fknr8i907yWsoUx+M3S+0SNjcHyu7qg6+aYvqF671TLXfTzU+2uaTnOOzbFc+7yHoZE59npIL175kay/ZxlKMH6a+NSJdl90XKXytpbMpTr/kP5zJfqxQDzneYWTstxh9pPPdYJ/CL8alTBag+fFvHFXtQMutWxBloOUMMHS6GWSyVYS4pvgmexXtVjc/TFWk9ZnnZLt3+caI10/8Xkb+hsYlfeh+QOyPNQN1S7hv2nqivEVSj/Ex+1lu73Ib1olbu4jpfN4ddbWbHN+/mcpWfUem+g7RhK4833SuepHbN0d5PjKF1kUll3xPFc5d+btTW9uqdCHXwaQ7kw252ENIW9vKTdEfTLox+VPYT6r8XXUWq7tYuXyZnEAG+ic+pwyVdRLDp8wcOp0kEZNXzLyqw3f+yEkjMI1sFznk8ulDKcoKlcFVlz75qPyu9+U8YuvnqnfXNDn6t6neNr3xfHj4JEU500ma8SSkjjodptBlTLurbI7rTxUnhcxF6d9W76KRbd6G3DdVNj2qia/qD3KY2O90elLJocpHJc90Q7kqVLqaLlGUjYj+Pg00jD8Xk+Wnf5UAN8c8HGrvXKYi+4irnsoo09ctU29Fll2UraSyaxnTOar8DFw+w60St+cRNlzfm9E9y9CNUTZM5/7iOTWR6imOgaKf/pn6hJw/f8dDdS6u0tNhDN1ZOlGUoauTrqyQNvCd21Mjy8N/T7AixBkQrm3tRKS0tngDwrWYzobuLFwXV3WfP5uR9TGTXdvc3BRVjq18l3rbwmaS8c9QByR4m3Sb/lPVX2V/M4naDkV79GFmJDad2NaLOdpBpxsbvs+/YubgVPO5bn3h+75BahnEOU/EVb+yTL7vQeTQp04GH/twfTYaCv9ehe8XXdZ0Ic+IY94Hcik/9h0Zk35c7MdWXo737HM/y6dllPENj9zeuvq7vMMYam88fZnfU7nOHznf6/AdP+W8ffXv2q6uelDlE1N/Wx+Prb/MG8ARBVJ0eb7rz5Tf6sl5l/G9nizDnJLJudZoaNqU/hbsCPH73dhu+03aWPiZhW9/yLHf8IGvT1OtzwZJ56yG/7YvX5sSdn+yof6x5av2ebxcV1dOZ9pDVgSXys/36uLzG1s5Nvj7pKo9axm2zsueylxeT1lWlQ4rkuuzx5f3+VXPPGIhgbLnKp/rtiJdcz2lOtMpAtMZV27E/kRttyaF83dFbf3NdYwXx6sZpH0uVkZ/VslmOrspa24V1+O56u3TdmXpQdaJy36wLPm4LZVR7jyp/CLOmULtzeWZoqstuLS9rhzTmqwIe3LVia0f2OSP3c/71Ec8V0itv6JtONbOXdb3Oc5YdcTaQVFzRWg7+z6HydnHy+qPoWO+j1yq8anofifWl7ri97chNiq/z6KyM37t8333sJR/SF/3bUvd+z+8nV3KNPWfIvt3mfNZijFAZT8xfXSekLfOtl3rHCuPzxrEdT7U9UvRjn3HKV5/XTuo2i3n+E3L5L+3yN+TkH+z07ZGDlkviuXLcX3aL7b+8m+duhCzJonp/yF9wabPItZhJmJ/N8pVfvn31Fok7PeiYsalFON4bPnyuOO7Ru2G+S52fqB5DAt55bJtXf2LtJdQParCVevHlqcufduvKJuQ5yxxvA/Zw6W0l5D3+nz7a4wdieXxd+FS2SjPN7Z9XXDRp62/dMv4GTM22uwx1/iTe7zTUSfjf1Mqld36EHv2xvPoprMnGfGvIiDHk+/x+EQTP7fMOjl928f0/855OTnaJ5XeQsevVHNojO5147ePXLH681mDqOBhqef/Ivp+7PMF1Vxs02kMITLK30zp/k+FbX1RdP/w1b2OMt9hiR1bKLHfZ+XWT+4+ahqzVM8iUug81r5tfTf3+JB6DPFpk1zllLUu9523cpPLdlR6zTVP+bShGFd1lh/Td33rVdT44WqTtjqktOtc87osc8x5hM9vyLrK49v+Pvmp7De0/vyvLJvk1C3+1OOyLyG/aSSud1L/TlLq/BoZ5M2xNj66IFRlT9fcT4GqDYosQ3df/G0zlR5U4UVzjAJZPpW8NlLI5lOejzwq+eS4rnWZbsjTx7ZUrq4sXdrQPmAa82Pb0HVuyZl3rrrZ7Nal/ULzdy0zBUXrMaQcU18v6ncmxd9eM/1fkdQ24Tvu+paZ2q5S6z13+anlTyVfrv4aWz/desfFfn3WEj727rNGKHJdlqsM1VompjzT+shXv7F75dj3J3K3qY7QM7DcZ2L/Aw=="); -var classTrie = new UnicodeTrie(data); -var mapClass = function mapClass(c) { - switch (c) { - case AI: - return AL; - case SA: - case SG: - case XX: - return AL; - case CJ: - return NS; - default: - return c; - } +__webpack_require__(24863); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var DESCRIPTORS = __webpack_require__(15567); +var NATIVE_ARRAY_BUFFER = __webpack_require__(30450); +var FunctionName = __webpack_require__(7081); +var createNonEnumerableProperty = __webpack_require__(48914); +var redefineAll = __webpack_require__(15341); +var fails = __webpack_require__(47044); +var anInstance = __webpack_require__(2868); +var toIntegerOrInfinity = __webpack_require__(26882); +var toLength = __webpack_require__(23417); +var toIndex = __webpack_require__(71265); +var IEEE754 = __webpack_require__(64397); +var getPrototypeOf = __webpack_require__(69548); +var setPrototypeOf = __webpack_require__(3840); +var getOwnPropertyNames = (__webpack_require__(6611).f); +var defineProperty = (__webpack_require__(95892).f); +var arrayFill = __webpack_require__(72864); +var arraySlice = __webpack_require__(73163); +var setToStringTag = __webpack_require__(15216); +var InternalStateModule = __webpack_require__(70172); +var PROPER_FUNCTION_NAME = FunctionName.PROPER; +var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE; +var getInternalState = InternalStateModule.get; +var setInternalState = InternalStateModule.set; +var ARRAY_BUFFER = 'ArrayBuffer'; +var DATA_VIEW = 'DataView'; +var PROTOTYPE = 'prototype'; +var WRONG_LENGTH = 'Wrong length'; +var WRONG_INDEX = 'Wrong index'; +var NativeArrayBuffer = global[ARRAY_BUFFER]; +var $ArrayBuffer = NativeArrayBuffer; +var ArrayBufferPrototype = $ArrayBuffer && $ArrayBuffer[PROTOTYPE]; +var $DataView = global[DATA_VIEW]; +var DataViewPrototype = $DataView && $DataView[PROTOTYPE]; +var ObjectPrototype = Object.prototype; +var Array = global.Array; +var RangeError = global.RangeError; +var fill = uncurryThis(arrayFill); +var reverse = uncurryThis([].reverse); +var packIEEE754 = IEEE754.pack; +var unpackIEEE754 = IEEE754.unpack; +var packInt8 = function packInt8(number) { + return [number & 0xFF]; }; -var mapFirst = function mapFirst(c) { - switch (c) { - case LF: - case NL: - return BK; - case SP: - return WJ; - default: - return c; - } +var packInt16 = function packInt16(number) { + return [number & 0xFF, number >> 8 & 0xFF]; }; -var Break = function Break(position, required) { - if (required === void 0) { - required = false; - } - this.position = position; - this.required = required; +var packInt32 = function packInt32(number) { + return [number & 0xFF, number >> 8 & 0xFF, number >> 16 & 0xFF, number >> 24 & 0xFF]; }; -var LineBreaker = /*#__PURE__*/function () { - function LineBreaker(string) { - this.string = string; - this.pos = 0; - this.lastPos = 0; - this.curClass = null; - this.nextClass = null; - this.LB8a = false; - this.LB21a = false; - this.LB30a = 0; - } - var _proto = LineBreaker.prototype; - _proto.nextCodePoint = function nextCodePoint() { - var code = this.string.charCodeAt(this.pos++); - var next = this.string.charCodeAt(this.pos); - - // If a surrogate pair - if (0xd800 <= code && code <= 0xdbff && 0xdc00 <= next && next <= 0xdfff) { - this.pos++; - return (code - 0xd800) * 0x400 + (next - 0xdc00) + 0x10000; - } - return code; - }; - _proto.nextCharClass = function nextCharClass() { - return mapClass(classTrie.get(this.nextCodePoint())); - }; - _proto.getSimpleBreak = function getSimpleBreak() { - // handle classes not handled by the pair table - switch (this.nextClass) { - case SP: - return false; - case BK: - case LF: - case NL: - this.curClass = BK; - return false; - case CR: - this.curClass = CR; - return false; +var unpackInt32 = function unpackInt32(buffer) { + return buffer[3] << 24 | buffer[2] << 16 | buffer[1] << 8 | buffer[0]; +}; +var packFloat32 = function packFloat32(number) { + return packIEEE754(number, 23, 4); +}; +var packFloat64 = function packFloat64(number) { + return packIEEE754(number, 52, 8); +}; +var addGetter = function addGetter(Constructor, key) { + defineProperty(Constructor[PROTOTYPE], key, { + get: function get() { + return getInternalState(this)[key]; } - return null; + }); +}; +var get = function get(view, count, index, isLittleEndian) { + var intIndex = toIndex(index); + var store = getInternalState(view); + if (intIndex + count > store.byteLength) throw RangeError(WRONG_INDEX); + var bytes = getInternalState(store.buffer).bytes; + var start = intIndex + store.byteOffset; + var pack = arraySlice(bytes, start, start + count); + return isLittleEndian ? pack : reverse(pack); +}; +var set = function set(view, count, index, conversion, value, isLittleEndian) { + var intIndex = toIndex(index); + var store = getInternalState(view); + if (intIndex + count > store.byteLength) throw RangeError(WRONG_INDEX); + var bytes = getInternalState(store.buffer).bytes; + var start = intIndex + store.byteOffset; + var pack = conversion(+value); + for (var i = 0; i < count; i++) bytes[start + i] = pack[isLittleEndian ? i : count - i - 1]; +}; +if (!NATIVE_ARRAY_BUFFER) { + $ArrayBuffer = function ArrayBuffer(length) { + anInstance(this, ArrayBufferPrototype); + var byteLength = toIndex(length); + setInternalState(this, { + bytes: fill(Array(byteLength), 0), + byteLength: byteLength + }); + if (!DESCRIPTORS) this.byteLength = byteLength; }; - _proto.getPairTableBreak = function getPairTableBreak(lastClass) { - // if not handled already, use the pair table - var shouldBreak = false; - switch (pairTable[this.curClass][this.nextClass]) { - case DI_BRK: - // Direct break - shouldBreak = true; - break; - case IN_BRK: - // possible indirect break - shouldBreak = lastClass === SP; - break; - case CI_BRK: - shouldBreak = lastClass === SP; - if (!shouldBreak) { - shouldBreak = false; - return shouldBreak; - } - break; - case CP_BRK: - // prohibited for combining marks - if (lastClass !== SP) { - return shouldBreak; - } - break; - case PR_BRK: - break; - } - if (this.LB8a) { - shouldBreak = false; - } - - // Rule LB21a - if (this.LB21a && (this.curClass === HY || this.curClass === BA)) { - shouldBreak = false; - this.LB21a = false; - } else { - this.LB21a = this.curClass === HL; - } - - // Rule LB30a - if (this.curClass === RI) { - this.LB30a++; - if (this.LB30a == 2 && this.nextClass === RI) { - shouldBreak = true; - this.LB30a = 0; - } - } else { - this.LB30a = 0; + ArrayBufferPrototype = $ArrayBuffer[PROTOTYPE]; + $DataView = function DataView(buffer, byteOffset, byteLength) { + anInstance(this, DataViewPrototype); + anInstance(buffer, ArrayBufferPrototype); + var bufferLength = getInternalState(buffer).byteLength; + var offset = toIntegerOrInfinity(byteOffset); + if (offset < 0 || offset > bufferLength) throw RangeError('Wrong offset'); + byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength); + if (offset + byteLength > bufferLength) throw RangeError(WRONG_LENGTH); + setInternalState(this, { + buffer: buffer, + byteLength: byteLength, + byteOffset: offset + }); + if (!DESCRIPTORS) { + this.buffer = buffer; + this.byteLength = byteLength; + this.byteOffset = offset; } - this.curClass = this.nextClass; - return shouldBreak; }; - _proto.nextBreak = function nextBreak() { - // get the first char if we're at the beginning of the string - if (this.curClass == null) { - var firstClass = this.nextCharClass(); - this.curClass = mapFirst(firstClass); - this.nextClass = firstClass; - this.LB8a = firstClass === ZWJ; - this.LB30a = 0; + DataViewPrototype = $DataView[PROTOTYPE]; + if (DESCRIPTORS) { + addGetter($ArrayBuffer, 'byteLength'); + addGetter($DataView, 'buffer'); + addGetter($DataView, 'byteLength'); + addGetter($DataView, 'byteOffset'); + } + redefineAll(DataViewPrototype, { + getInt8: function getInt8(byteOffset) { + return get(this, 1, byteOffset)[0] << 24 >> 24; + }, + getUint8: function getUint8(byteOffset) { + return get(this, 1, byteOffset)[0]; + }, + getInt16: function getInt16(byteOffset /* , littleEndian */) { + var bytes = get(this, 2, byteOffset, arguments.length > 1 ? arguments[1] : undefined); + return (bytes[1] << 8 | bytes[0]) << 16 >> 16; + }, + getUint16: function getUint16(byteOffset /* , littleEndian */) { + var bytes = get(this, 2, byteOffset, arguments.length > 1 ? arguments[1] : undefined); + return bytes[1] << 8 | bytes[0]; + }, + getInt32: function getInt32(byteOffset /* , littleEndian */) { + return unpackInt32(get(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined)); + }, + getUint32: function getUint32(byteOffset /* , littleEndian */) { + return unpackInt32(get(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined)) >>> 0; + }, + getFloat32: function getFloat32(byteOffset /* , littleEndian */) { + return unpackIEEE754(get(this, 4, byteOffset, arguments.length > 1 ? arguments[1] : undefined), 23); + }, + getFloat64: function getFloat64(byteOffset /* , littleEndian */) { + return unpackIEEE754(get(this, 8, byteOffset, arguments.length > 1 ? arguments[1] : undefined), 52); + }, + setInt8: function setInt8(byteOffset, value) { + set(this, 1, byteOffset, packInt8, value); + }, + setUint8: function setUint8(byteOffset, value) { + set(this, 1, byteOffset, packInt8, value); + }, + setInt16: function setInt16(byteOffset, value /* , littleEndian */) { + set(this, 2, byteOffset, packInt16, value, arguments.length > 2 ? arguments[2] : undefined); + }, + setUint16: function setUint16(byteOffset, value /* , littleEndian */) { + set(this, 2, byteOffset, packInt16, value, arguments.length > 2 ? arguments[2] : undefined); + }, + setInt32: function setInt32(byteOffset, value /* , littleEndian */) { + set(this, 4, byteOffset, packInt32, value, arguments.length > 2 ? arguments[2] : undefined); + }, + setUint32: function setUint32(byteOffset, value /* , littleEndian */) { + set(this, 4, byteOffset, packInt32, value, arguments.length > 2 ? arguments[2] : undefined); + }, + setFloat32: function setFloat32(byteOffset, value /* , littleEndian */) { + set(this, 4, byteOffset, packFloat32, value, arguments.length > 2 ? arguments[2] : undefined); + }, + setFloat64: function setFloat64(byteOffset, value /* , littleEndian */) { + set(this, 8, byteOffset, packFloat64, value, arguments.length > 2 ? arguments[2] : undefined); } - while (this.pos < this.string.length) { - this.lastPos = this.pos; - var lastClass = this.nextClass; - this.nextClass = this.nextCharClass(); - - // explicit newline - if (this.curClass === BK || this.curClass === CR && this.nextClass !== LF) { - this.curClass = mapFirst(mapClass(this.nextClass)); - return new Break(this.lastPos, true); - } - var shouldBreak = this.getSimpleBreak(); - if (shouldBreak === null) { - shouldBreak = this.getPairTableBreak(lastClass); - } - - // Rule LB8a - this.LB8a = this.nextClass === ZWJ; - if (shouldBreak) { - return new Break(this.lastPos); + }); +} else { + var INCORRECT_ARRAY_BUFFER_NAME = PROPER_FUNCTION_NAME && NativeArrayBuffer.name !== ARRAY_BUFFER; + /* eslint-disable no-new -- required for testing */ + if (!fails(function () { + NativeArrayBuffer(1); + }) || !fails(function () { + new NativeArrayBuffer(-1); + }) || fails(function () { + new NativeArrayBuffer(); + new NativeArrayBuffer(1.5); + new NativeArrayBuffer(NaN); + return INCORRECT_ARRAY_BUFFER_NAME && !CONFIGURABLE_FUNCTION_NAME; + })) { + /* eslint-enable no-new -- required for testing */ + $ArrayBuffer = function ArrayBuffer(length) { + anInstance(this, ArrayBufferPrototype); + return new NativeArrayBuffer(toIndex(length)); + }; + $ArrayBuffer[PROTOTYPE] = ArrayBufferPrototype; + for (var keys = getOwnPropertyNames(NativeArrayBuffer), j = 0, key; keys.length > j;) { + if (!((key = keys[j++]) in $ArrayBuffer)) { + createNonEnumerableProperty($ArrayBuffer, key, NativeArrayBuffer[key]); } } - if (this.lastPos < this.string.length) { - this.lastPos = this.string.length; - return new Break(this.string.length); - } - return null; - }; - return LineBreaker; -}(); -module.exports = LineBreaker; - -/***/ }), - -/***/ 5557: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var SVGtoPDF = __webpack_require__(64781); -module.exports = SVGtoPDF; - -/***/ }), - -/***/ 5597: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var defineWellKnownSymbol = __webpack_require__(46042); - -// `Symbol.toPrimitive` well-known symbol -// https://tc39.es/ecma262/#sec-symbol.toprimitive -defineWellKnownSymbol('toPrimitive'); - - -/***/ }), - -/***/ 5844: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var fails = __webpack_require__(47044); -var isCallable = __webpack_require__(94578); -var create = __webpack_require__(10819); -var getPrototypeOf = __webpack_require__(69548); -var redefine = __webpack_require__(13711); -var wellKnownSymbol = __webpack_require__(38688); -var IS_PURE = __webpack_require__(63432); - -var ITERATOR = wellKnownSymbol('iterator'); -var BUGGY_SAFARI_ITERATORS = false; - -// `%IteratorPrototype%` object -// https://tc39.es/ecma262/#sec-%iteratorprototype%-object -var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; - -/* eslint-disable es/no-array-prototype-keys -- safe */ -if ([].keys) { - arrayIterator = [].keys(); - // Safari 8 has buggy iterators w/o `next` - if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; - else { - PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator)); - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; + ArrayBufferPrototype.constructor = $ArrayBuffer; + } else if (INCORRECT_ARRAY_BUFFER_NAME && CONFIGURABLE_FUNCTION_NAME) { + createNonEnumerableProperty(NativeArrayBuffer, 'name', ARRAY_BUFFER); } -} - -var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () { - var test = {}; - // FF44- legacy iterators case - return IteratorPrototype[ITERATOR].call(test) !== test; -}); -if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {}; -else if (IS_PURE) IteratorPrototype = create(IteratorPrototype); + // WebKit bug - the same parent prototype for typed arrays and data view + if (setPrototypeOf && getPrototypeOf(DataViewPrototype) !== ObjectPrototype) { + setPrototypeOf(DataViewPrototype, ObjectPrototype); + } -// `%IteratorPrototype%[@@iterator]()` method -// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator -if (!isCallable(IteratorPrototype[ITERATOR])) { - redefine(IteratorPrototype, ITERATOR, function () { - return this; + // iOS Safari 7.x bug + var testView = new $DataView(new $ArrayBuffer(2)); + var $setInt8 = uncurryThis(DataViewPrototype.setInt8); + testView.setInt8(0, 2147483648); + testView.setInt8(1, 2147483649); + if (testView.getInt8(0) || !testView.getInt8(1)) redefineAll(DataViewPrototype, { + setInt8: function setInt8(byteOffset, value) { + $setInt8(this, byteOffset, value << 24 >> 24); + }, + setUint8: function setUint8(byteOffset, value) { + $setInt8(this, byteOffset, value << 24 >> 24); + } + }, { + unsafe: true }); } - +setToStringTag($ArrayBuffer, ARRAY_BUFFER); +setToStringTag($DataView, DATA_VIEW); module.exports = { - IteratorPrototype: IteratorPrototype, - BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS + ArrayBuffer: $ArrayBuffer, + DataView: $DataView }; - /***/ }), -/***/ 6422: +/***/ 8953: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var call = __webpack_require__(2834); -var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); -var anObject = __webpack_require__(34984); -var toLength = __webpack_require__(23417); -var toString = __webpack_require__(25096); -var requireObjectCoercible = __webpack_require__(83943); -var getMethod = __webpack_require__(51839); -var advanceStringIndex = __webpack_require__(36352); -var regExpExec = __webpack_require__(66723); - -// @@match logic -fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNative) { - return [ - // `String.prototype.match` method - // https://tc39.es/ecma262/#sec-string.prototype.match - function match(regexp) { - var O = requireObjectCoercible(this); - var matcher = regexp == undefined ? undefined : getMethod(regexp, MATCH); - return matcher ? call(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString(O)); - }, - // `RegExp.prototype[@@match]` method - // https://tc39.es/ecma262/#sec-regexp.prototype-@@match - function (string) { - var rx = anObject(this); - var S = toString(string); - var res = maybeCallNative(nativeMatch, rx, S); - - if (res.done) return res.value; - if (!rx.global) return regExpExec(rx, S); +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var arrayBufferModule = __webpack_require__(83124); +var setSpecies = __webpack_require__(51334); +var ARRAY_BUFFER = 'ArrayBuffer'; +var ArrayBuffer = arrayBufferModule[ARRAY_BUFFER]; +var NativeArrayBuffer = global[ARRAY_BUFFER]; - var fullUnicode = rx.unicode; - rx.lastIndex = 0; - var A = []; - var n = 0; - var result; - while ((result = regExpExec(rx, S)) !== null) { - var matchStr = toString(result[0]); - A[n] = matchStr; - if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); - n++; - } - return n === 0 ? null : A; - } - ]; +// `ArrayBuffer` constructor +// https://tc39.es/ecma262/#sec-arraybuffer-constructor +$({ + global: true, + forced: NativeArrayBuffer !== ArrayBuffer +}, { + ArrayBuffer: ArrayBuffer }); - +setSpecies(ARRAY_BUFFER); /***/ }), -/***/ 6564: +/***/ 22956: /***/ (function(module, exports, __webpack_require__) { "use strict"; -__webpack_require__(20731); ; (function (root, factory, undef) { if (true) { // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); } else // removed by dead control flow {} })(void 0, function (CryptoJS) { - /** - * Output Feedback block mode. - */ - CryptoJS.mode.OFB = function () { - var OFB = CryptoJS.lib.BlockCipherMode.extend(); - var Encryptor = OFB.Encryptor = OFB.extend({ - processBlock: function processBlock(words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - var iv = this._iv; - var keystream = this._keystream; + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var BlockCipher = C_lib.BlockCipher; + var C_algo = C.algo; - // Generate keystream - if (iv) { - keystream = this._keystream = iv.slice(0); + // Lookup tables + var SBOX = []; + var INV_SBOX = []; + var SUB_MIX_0 = []; + var SUB_MIX_1 = []; + var SUB_MIX_2 = []; + var SUB_MIX_3 = []; + var INV_SUB_MIX_0 = []; + var INV_SUB_MIX_1 = []; + var INV_SUB_MIX_2 = []; + var INV_SUB_MIX_3 = []; - // Remove IV for subsequent blocks - this._iv = undefined; + // Compute lookup tables + (function () { + // Compute double table + var d = []; + for (var i = 0; i < 256; i++) { + if (i < 128) { + d[i] = i << 1; + } else { + d[i] = i << 1 ^ 0x11b; } - cipher.encryptBlock(keystream, 0); + } - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; + // Walk GF(2^8) + var x = 0; + var xi = 0; + for (var i = 0; i < 256; i++) { + // Compute sbox + var sx = xi ^ xi << 1 ^ xi << 2 ^ xi << 3 ^ xi << 4; + sx = sx >>> 8 ^ sx & 0xff ^ 0x63; + SBOX[x] = sx; + INV_SBOX[sx] = x; + + // Compute multiplication + var x2 = d[x]; + var x4 = d[x2]; + var x8 = d[x4]; + + // Compute sub bytes, mix columns tables + var t = d[sx] * 0x101 ^ sx * 0x1010100; + SUB_MIX_0[x] = t << 24 | t >>> 8; + SUB_MIX_1[x] = t << 16 | t >>> 16; + SUB_MIX_2[x] = t << 8 | t >>> 24; + SUB_MIX_3[x] = t; + + // Compute inv sub bytes, inv mix columns tables + var t = x8 * 0x1010101 ^ x4 * 0x10001 ^ x2 * 0x101 ^ x * 0x1010100; + INV_SUB_MIX_0[sx] = t << 24 | t >>> 8; + INV_SUB_MIX_1[sx] = t << 16 | t >>> 16; + INV_SUB_MIX_2[sx] = t << 8 | t >>> 24; + INV_SUB_MIX_3[sx] = t; + + // Compute next counter + if (!x) { + x = xi = 1; + } else { + x = x2 ^ d[d[d[x8 ^ x2]]]; + xi ^= d[d[xi]]; } } - }); - OFB.Decryptor = Encryptor; - return OFB; - }(); - return CryptoJS.mode.OFB; -}); + })(); -/***/ }), + // Precomputed Rcon lookup + var RCON = [0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36]; -/***/ 6611: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + /** + * AES block cipher algorithm. + */ + var AES = C_algo.AES = BlockCipher.extend({ + _doReset: function _doReset() { + var t; -var internalObjectKeys = __webpack_require__(64429); -var enumBugKeys = __webpack_require__(2416); + // Skip reset of nRounds has been set before and key did not change + if (this._nRounds && this._keyPriorReset === this._key) { + return; + } -var hiddenKeys = enumBugKeys.concat('length', 'prototype'); + // Shortcuts + var key = this._keyPriorReset = this._key; + var keyWords = key.words; + var keySize = key.sigBytes / 4; -// `Object.getOwnPropertyNames` method -// https://tc39.es/ecma262/#sec-object.getownpropertynames -// eslint-disable-next-line es/no-object-getownpropertynames -- safe -exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { - return internalObjectKeys(O, hiddenKeys); -}; + // Compute number of rounds + var nRounds = this._nRounds = keySize + 6; + // Compute number of key schedule rows + var ksRows = (nRounds + 1) * 4; -/***/ }), + // Compute key schedule + var keySchedule = this._keySchedule = []; + for (var ksRow = 0; ksRow < ksRows; ksRow++) { + if (ksRow < keySize) { + keySchedule[ksRow] = keyWords[ksRow]; + } else { + t = keySchedule[ksRow - 1]; + if (!(ksRow % keySize)) { + // Rot word + t = t << 8 | t >>> 24; -/***/ 6616: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // Sub word + t = SBOX[t >>> 24] << 24 | SBOX[t >>> 16 & 0xff] << 16 | SBOX[t >>> 8 & 0xff] << 8 | SBOX[t & 0xff]; -var global = __webpack_require__(32010); -var apply = __webpack_require__(58448); -var bind = __webpack_require__(25567); -var isCallable = __webpack_require__(94578); -var hasOwn = __webpack_require__(20340); -var fails = __webpack_require__(47044); -var html = __webpack_require__(520); -var arraySlice = __webpack_require__(73163); -var createElement = __webpack_require__(12072); -var IS_IOS = __webpack_require__(17716); -var IS_NODE = __webpack_require__(95053); + // Mix Rcon + t ^= RCON[ksRow / keySize | 0] << 24; + } else if (keySize > 6 && ksRow % keySize == 4) { + // Sub word + t = SBOX[t >>> 24] << 24 | SBOX[t >>> 16 & 0xff] << 16 | SBOX[t >>> 8 & 0xff] << 8 | SBOX[t & 0xff]; + } + keySchedule[ksRow] = keySchedule[ksRow - keySize] ^ t; + } + } -var set = global.setImmediate; -var clear = global.clearImmediate; -var process = global.process; -var Dispatch = global.Dispatch; -var Function = global.Function; -var MessageChannel = global.MessageChannel; -var String = global.String; -var counter = 0; -var queue = {}; -var ONREADYSTATECHANGE = 'onreadystatechange'; -var location, defer, channel, port; + // Compute inv key schedule + var invKeySchedule = this._invKeySchedule = []; + for (var invKsRow = 0; invKsRow < ksRows; invKsRow++) { + var ksRow = ksRows - invKsRow; + if (invKsRow % 4) { + var t = keySchedule[ksRow]; + } else { + var t = keySchedule[ksRow - 4]; + } + if (invKsRow < 4 || ksRow <= 4) { + invKeySchedule[invKsRow] = t; + } else { + invKeySchedule[invKsRow] = INV_SUB_MIX_0[SBOX[t >>> 24]] ^ INV_SUB_MIX_1[SBOX[t >>> 16 & 0xff]] ^ INV_SUB_MIX_2[SBOX[t >>> 8 & 0xff]] ^ INV_SUB_MIX_3[SBOX[t & 0xff]]; + } + } + }, + encryptBlock: function encryptBlock(M, offset) { + this._doCryptBlock(M, offset, this._keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX); + }, + decryptBlock: function decryptBlock(M, offset) { + // Swap 2nd and 4th rows + var t = M[offset + 1]; + M[offset + 1] = M[offset + 3]; + M[offset + 3] = t; + this._doCryptBlock(M, offset, this._invKeySchedule, INV_SUB_MIX_0, INV_SUB_MIX_1, INV_SUB_MIX_2, INV_SUB_MIX_3, INV_SBOX); -try { - // Deno throws a ReferenceError on `location` access without `--location` flag - location = global.location; -} catch (error) { /* empty */ } + // Inv swap 2nd and 4th rows + var t = M[offset + 1]; + M[offset + 1] = M[offset + 3]; + M[offset + 3] = t; + }, + _doCryptBlock: function _doCryptBlock(M, offset, keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX) { + // Shortcut + var nRounds = this._nRounds; -var run = function (id) { - if (hasOwn(queue, id)) { - var fn = queue[id]; - delete queue[id]; - fn(); - } -}; + // Get input, add round key + var s0 = M[offset] ^ keySchedule[0]; + var s1 = M[offset + 1] ^ keySchedule[1]; + var s2 = M[offset + 2] ^ keySchedule[2]; + var s3 = M[offset + 3] ^ keySchedule[3]; -var runner = function (id) { - return function () { - run(id); - }; -}; + // Key schedule row counter + var ksRow = 4; -var listener = function (event) { - run(event.data); -}; + // Rounds + for (var round = 1; round < nRounds; round++) { + // Shift rows, sub bytes, mix columns, add round key + var t0 = SUB_MIX_0[s0 >>> 24] ^ SUB_MIX_1[s1 >>> 16 & 0xff] ^ SUB_MIX_2[s2 >>> 8 & 0xff] ^ SUB_MIX_3[s3 & 0xff] ^ keySchedule[ksRow++]; + var t1 = SUB_MIX_0[s1 >>> 24] ^ SUB_MIX_1[s2 >>> 16 & 0xff] ^ SUB_MIX_2[s3 >>> 8 & 0xff] ^ SUB_MIX_3[s0 & 0xff] ^ keySchedule[ksRow++]; + var t2 = SUB_MIX_0[s2 >>> 24] ^ SUB_MIX_1[s3 >>> 16 & 0xff] ^ SUB_MIX_2[s0 >>> 8 & 0xff] ^ SUB_MIX_3[s1 & 0xff] ^ keySchedule[ksRow++]; + var t3 = SUB_MIX_0[s3 >>> 24] ^ SUB_MIX_1[s0 >>> 16 & 0xff] ^ SUB_MIX_2[s1 >>> 8 & 0xff] ^ SUB_MIX_3[s2 & 0xff] ^ keySchedule[ksRow++]; -var post = function (id) { - // old engines have not location.origin - global.postMessage(String(id), location.protocol + '//' + location.host); -}; + // Update state + s0 = t0; + s1 = t1; + s2 = t2; + s3 = t3; + } -// Node.js 0.9+ & IE10+ has setImmediate, otherwise: -if (!set || !clear) { - set = function setImmediate(fn) { - var args = arraySlice(arguments, 1); - queue[++counter] = function () { - apply(isCallable(fn) ? fn : Function(fn), undefined, args); - }; - defer(counter); - return counter; - }; - clear = function clearImmediate(id) { - delete queue[id]; - }; - // Node.js 0.8- - if (IS_NODE) { - defer = function (id) { - process.nextTick(runner(id)); - }; - // Sphere (JS game engine) Dispatch API - } else if (Dispatch && Dispatch.now) { - defer = function (id) { - Dispatch.now(runner(id)); - }; - // Browsers with MessageChannel, includes WebWorkers - // except iOS - https://github.com/zloirock/core-js/issues/624 - } else if (MessageChannel && !IS_IOS) { - channel = new MessageChannel(); - port = channel.port2; - channel.port1.onmessage = listener; - defer = bind(port.postMessage, port); - // Browsers with postMessage, skip WebWorkers - // IE8 has postMessage, but it's sync & typeof its postMessage is 'object' - } else if ( - global.addEventListener && - isCallable(global.postMessage) && - !global.importScripts && - location && location.protocol !== 'file:' && - !fails(post) - ) { - defer = post; - global.addEventListener('message', listener, false); - // IE8- - } else if (ONREADYSTATECHANGE in createElement('script')) { - defer = function (id) { - html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () { - html.removeChild(this); - run(id); - }; - }; - // Rest old browsers - } else { - defer = function (id) { - setTimeout(runner(id), 0); - }; - } -} + // Shift rows, sub bytes, add round key + var t0 = (SBOX[s0 >>> 24] << 24 | SBOX[s1 >>> 16 & 0xff] << 16 | SBOX[s2 >>> 8 & 0xff] << 8 | SBOX[s3 & 0xff]) ^ keySchedule[ksRow++]; + var t1 = (SBOX[s1 >>> 24] << 24 | SBOX[s2 >>> 16 & 0xff] << 16 | SBOX[s3 >>> 8 & 0xff] << 8 | SBOX[s0 & 0xff]) ^ keySchedule[ksRow++]; + var t2 = (SBOX[s2 >>> 24] << 24 | SBOX[s3 >>> 16 & 0xff] << 16 | SBOX[s0 >>> 8 & 0xff] << 8 | SBOX[s1 & 0xff]) ^ keySchedule[ksRow++]; + var t3 = (SBOX[s3 >>> 24] << 24 | SBOX[s0 >>> 16 & 0xff] << 16 | SBOX[s1 >>> 8 & 0xff] << 8 | SBOX[s2 & 0xff]) ^ keySchedule[ksRow++]; -module.exports = { - set: set, - clear: clear -}; + // Set output + M[offset] = t0; + M[offset + 1] = t1; + M[offset + 2] = t2; + M[offset + 3] = t3; + }, + keySize: 256 / 32 + }); + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.AES.encrypt(message, key, cfg); + * var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg); + */ + C.AES = BlockCipher._createHelper(AES); + })(); + return CryptoJS.AES; +}); /***/ }), -/***/ 6729: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 73517: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -/* provided dependency */ var process = __webpack_require__(9964); - -var Buffer = (__webpack_require__(14598).Buffer); -var Transform = (__webpack_require__(9760).Transform); -var binding = __webpack_require__(72908); -var util = __webpack_require__(7187); -var assert = (__webpack_require__(80182).ok); -var kMaxLength = (__webpack_require__(14598).kMaxLength); -var kRangeErrorMessage = 'Cannot create final Buffer. It would be larger ' + 'than 0x' + kMaxLength.toString(16) + ' bytes'; -// zlib doesn't provide these, so kludge them in following the same -// const naming scheme zlib uses. -binding.Z_MIN_WINDOWBITS = 8; -binding.Z_MAX_WINDOWBITS = 15; -binding.Z_DEFAULT_WINDOWBITS = 15; +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var BlockCipher = C_lib.BlockCipher; + var C_algo = C.algo; + var N = 16; -// fewer than 64 bytes per chunk is stupid. -// technically it could work with as few as 8, but even 64 bytes -// is absurdly low. Usually a MB or more is best. -binding.Z_MIN_CHUNK = 64; -binding.Z_MAX_CHUNK = Infinity; -binding.Z_DEFAULT_CHUNK = 16 * 1024; + //Origin pbox and sbox, derived from PI + var ORIG_P = [0x243F6A88, 0x85A308D3, 0x13198A2E, 0x03707344, 0xA4093822, 0x299F31D0, 0x082EFA98, 0xEC4E6C89, 0x452821E6, 0x38D01377, 0xBE5466CF, 0x34E90C6C, 0xC0AC29B7, 0xC97C50DD, 0x3F84D5B5, 0xB5470917, 0x9216D5D9, 0x8979FB1B]; + var ORIG_S = [[0xD1310BA6, 0x98DFB5AC, 0x2FFD72DB, 0xD01ADFB7, 0xB8E1AFED, 0x6A267E96, 0xBA7C9045, 0xF12C7F99, 0x24A19947, 0xB3916CF7, 0x0801F2E2, 0x858EFC16, 0x636920D8, 0x71574E69, 0xA458FEA3, 0xF4933D7E, 0x0D95748F, 0x728EB658, 0x718BCD58, 0x82154AEE, 0x7B54A41D, 0xC25A59B5, 0x9C30D539, 0x2AF26013, 0xC5D1B023, 0x286085F0, 0xCA417918, 0xB8DB38EF, 0x8E79DCB0, 0x603A180E, 0x6C9E0E8B, 0xB01E8A3E, 0xD71577C1, 0xBD314B27, 0x78AF2FDA, 0x55605C60, 0xE65525F3, 0xAA55AB94, 0x57489862, 0x63E81440, 0x55CA396A, 0x2AAB10B6, 0xB4CC5C34, 0x1141E8CE, 0xA15486AF, 0x7C72E993, 0xB3EE1411, 0x636FBC2A, 0x2BA9C55D, 0x741831F6, 0xCE5C3E16, 0x9B87931E, 0xAFD6BA33, 0x6C24CF5C, 0x7A325381, 0x28958677, 0x3B8F4898, 0x6B4BB9AF, 0xC4BFE81B, 0x66282193, 0x61D809CC, 0xFB21A991, 0x487CAC60, 0x5DEC8032, 0xEF845D5D, 0xE98575B1, 0xDC262302, 0xEB651B88, 0x23893E81, 0xD396ACC5, 0x0F6D6FF3, 0x83F44239, 0x2E0B4482, 0xA4842004, 0x69C8F04A, 0x9E1F9B5E, 0x21C66842, 0xF6E96C9A, 0x670C9C61, 0xABD388F0, 0x6A51A0D2, 0xD8542F68, 0x960FA728, 0xAB5133A3, 0x6EEF0B6C, 0x137A3BE4, 0xBA3BF050, 0x7EFB2A98, 0xA1F1651D, 0x39AF0176, 0x66CA593E, 0x82430E88, 0x8CEE8619, 0x456F9FB4, 0x7D84A5C3, 0x3B8B5EBE, 0xE06F75D8, 0x85C12073, 0x401A449F, 0x56C16AA6, 0x4ED3AA62, 0x363F7706, 0x1BFEDF72, 0x429B023D, 0x37D0D724, 0xD00A1248, 0xDB0FEAD3, 0x49F1C09B, 0x075372C9, 0x80991B7B, 0x25D479D8, 0xF6E8DEF7, 0xE3FE501A, 0xB6794C3B, 0x976CE0BD, 0x04C006BA, 0xC1A94FB6, 0x409F60C4, 0x5E5C9EC2, 0x196A2463, 0x68FB6FAF, 0x3E6C53B5, 0x1339B2EB, 0x3B52EC6F, 0x6DFC511F, 0x9B30952C, 0xCC814544, 0xAF5EBD09, 0xBEE3D004, 0xDE334AFD, 0x660F2807, 0x192E4BB3, 0xC0CBA857, 0x45C8740F, 0xD20B5F39, 0xB9D3FBDB, 0x5579C0BD, 0x1A60320A, 0xD6A100C6, 0x402C7279, 0x679F25FE, 0xFB1FA3CC, 0x8EA5E9F8, 0xDB3222F8, 0x3C7516DF, 0xFD616B15, 0x2F501EC8, 0xAD0552AB, 0x323DB5FA, 0xFD238760, 0x53317B48, 0x3E00DF82, 0x9E5C57BB, 0xCA6F8CA0, 0x1A87562E, 0xDF1769DB, 0xD542A8F6, 0x287EFFC3, 0xAC6732C6, 0x8C4F5573, 0x695B27B0, 0xBBCA58C8, 0xE1FFA35D, 0xB8F011A0, 0x10FA3D98, 0xFD2183B8, 0x4AFCB56C, 0x2DD1D35B, 0x9A53E479, 0xB6F84565, 0xD28E49BC, 0x4BFB9790, 0xE1DDF2DA, 0xA4CB7E33, 0x62FB1341, 0xCEE4C6E8, 0xEF20CADA, 0x36774C01, 0xD07E9EFE, 0x2BF11FB4, 0x95DBDA4D, 0xAE909198, 0xEAAD8E71, 0x6B93D5A0, 0xD08ED1D0, 0xAFC725E0, 0x8E3C5B2F, 0x8E7594B7, 0x8FF6E2FB, 0xF2122B64, 0x8888B812, 0x900DF01C, 0x4FAD5EA0, 0x688FC31C, 0xD1CFF191, 0xB3A8C1AD, 0x2F2F2218, 0xBE0E1777, 0xEA752DFE, 0x8B021FA1, 0xE5A0CC0F, 0xB56F74E8, 0x18ACF3D6, 0xCE89E299, 0xB4A84FE0, 0xFD13E0B7, 0x7CC43B81, 0xD2ADA8D9, 0x165FA266, 0x80957705, 0x93CC7314, 0x211A1477, 0xE6AD2065, 0x77B5FA86, 0xC75442F5, 0xFB9D35CF, 0xEBCDAF0C, 0x7B3E89A0, 0xD6411BD3, 0xAE1E7E49, 0x00250E2D, 0x2071B35E, 0x226800BB, 0x57B8E0AF, 0x2464369B, 0xF009B91E, 0x5563911D, 0x59DFA6AA, 0x78C14389, 0xD95A537F, 0x207D5BA2, 0x02E5B9C5, 0x83260376, 0x6295CFA9, 0x11C81968, 0x4E734A41, 0xB3472DCA, 0x7B14A94A, 0x1B510052, 0x9A532915, 0xD60F573F, 0xBC9BC6E4, 0x2B60A476, 0x81E67400, 0x08BA6FB5, 0x571BE91F, 0xF296EC6B, 0x2A0DD915, 0xB6636521, 0xE7B9F9B6, 0xFF34052E, 0xC5855664, 0x53B02D5D, 0xA99F8FA1, 0x08BA4799, 0x6E85076A], [0x4B7A70E9, 0xB5B32944, 0xDB75092E, 0xC4192623, 0xAD6EA6B0, 0x49A7DF7D, 0x9CEE60B8, 0x8FEDB266, 0xECAA8C71, 0x699A17FF, 0x5664526C, 0xC2B19EE1, 0x193602A5, 0x75094C29, 0xA0591340, 0xE4183A3E, 0x3F54989A, 0x5B429D65, 0x6B8FE4D6, 0x99F73FD6, 0xA1D29C07, 0xEFE830F5, 0x4D2D38E6, 0xF0255DC1, 0x4CDD2086, 0x8470EB26, 0x6382E9C6, 0x021ECC5E, 0x09686B3F, 0x3EBAEFC9, 0x3C971814, 0x6B6A70A1, 0x687F3584, 0x52A0E286, 0xB79C5305, 0xAA500737, 0x3E07841C, 0x7FDEAE5C, 0x8E7D44EC, 0x5716F2B8, 0xB03ADA37, 0xF0500C0D, 0xF01C1F04, 0x0200B3FF, 0xAE0CF51A, 0x3CB574B2, 0x25837A58, 0xDC0921BD, 0xD19113F9, 0x7CA92FF6, 0x94324773, 0x22F54701, 0x3AE5E581, 0x37C2DADC, 0xC8B57634, 0x9AF3DDA7, 0xA9446146, 0x0FD0030E, 0xECC8C73E, 0xA4751E41, 0xE238CD99, 0x3BEA0E2F, 0x3280BBA1, 0x183EB331, 0x4E548B38, 0x4F6DB908, 0x6F420D03, 0xF60A04BF, 0x2CB81290, 0x24977C79, 0x5679B072, 0xBCAF89AF, 0xDE9A771F, 0xD9930810, 0xB38BAE12, 0xDCCF3F2E, 0x5512721F, 0x2E6B7124, 0x501ADDE6, 0x9F84CD87, 0x7A584718, 0x7408DA17, 0xBC9F9ABC, 0xE94B7D8C, 0xEC7AEC3A, 0xDB851DFA, 0x63094366, 0xC464C3D2, 0xEF1C1847, 0x3215D908, 0xDD433B37, 0x24C2BA16, 0x12A14D43, 0x2A65C451, 0x50940002, 0x133AE4DD, 0x71DFF89E, 0x10314E55, 0x81AC77D6, 0x5F11199B, 0x043556F1, 0xD7A3C76B, 0x3C11183B, 0x5924A509, 0xF28FE6ED, 0x97F1FBFA, 0x9EBABF2C, 0x1E153C6E, 0x86E34570, 0xEAE96FB1, 0x860E5E0A, 0x5A3E2AB3, 0x771FE71C, 0x4E3D06FA, 0x2965DCB9, 0x99E71D0F, 0x803E89D6, 0x5266C825, 0x2E4CC978, 0x9C10B36A, 0xC6150EBA, 0x94E2EA78, 0xA5FC3C53, 0x1E0A2DF4, 0xF2F74EA7, 0x361D2B3D, 0x1939260F, 0x19C27960, 0x5223A708, 0xF71312B6, 0xEBADFE6E, 0xEAC31F66, 0xE3BC4595, 0xA67BC883, 0xB17F37D1, 0x018CFF28, 0xC332DDEF, 0xBE6C5AA5, 0x65582185, 0x68AB9802, 0xEECEA50F, 0xDB2F953B, 0x2AEF7DAD, 0x5B6E2F84, 0x1521B628, 0x29076170, 0xECDD4775, 0x619F1510, 0x13CCA830, 0xEB61BD96, 0x0334FE1E, 0xAA0363CF, 0xB5735C90, 0x4C70A239, 0xD59E9E0B, 0xCBAADE14, 0xEECC86BC, 0x60622CA7, 0x9CAB5CAB, 0xB2F3846E, 0x648B1EAF, 0x19BDF0CA, 0xA02369B9, 0x655ABB50, 0x40685A32, 0x3C2AB4B3, 0x319EE9D5, 0xC021B8F7, 0x9B540B19, 0x875FA099, 0x95F7997E, 0x623D7DA8, 0xF837889A, 0x97E32D77, 0x11ED935F, 0x16681281, 0x0E358829, 0xC7E61FD6, 0x96DEDFA1, 0x7858BA99, 0x57F584A5, 0x1B227263, 0x9B83C3FF, 0x1AC24696, 0xCDB30AEB, 0x532E3054, 0x8FD948E4, 0x6DBC3128, 0x58EBF2EF, 0x34C6FFEA, 0xFE28ED61, 0xEE7C3C73, 0x5D4A14D9, 0xE864B7E3, 0x42105D14, 0x203E13E0, 0x45EEE2B6, 0xA3AAABEA, 0xDB6C4F15, 0xFACB4FD0, 0xC742F442, 0xEF6ABBB5, 0x654F3B1D, 0x41CD2105, 0xD81E799E, 0x86854DC7, 0xE44B476A, 0x3D816250, 0xCF62A1F2, 0x5B8D2646, 0xFC8883A0, 0xC1C7B6A3, 0x7F1524C3, 0x69CB7492, 0x47848A0B, 0x5692B285, 0x095BBF00, 0xAD19489D, 0x1462B174, 0x23820E00, 0x58428D2A, 0x0C55F5EA, 0x1DADF43E, 0x233F7061, 0x3372F092, 0x8D937E41, 0xD65FECF1, 0x6C223BDB, 0x7CDE3759, 0xCBEE7460, 0x4085F2A7, 0xCE77326E, 0xA6078084, 0x19F8509E, 0xE8EFD855, 0x61D99735, 0xA969A7AA, 0xC50C06C2, 0x5A04ABFC, 0x800BCADC, 0x9E447A2E, 0xC3453484, 0xFDD56705, 0x0E1E9EC9, 0xDB73DBD3, 0x105588CD, 0x675FDA79, 0xE3674340, 0xC5C43465, 0x713E38D8, 0x3D28F89E, 0xF16DFF20, 0x153E21E7, 0x8FB03D4A, 0xE6E39F2B, 0xDB83ADF7], [0xE93D5A68, 0x948140F7, 0xF64C261C, 0x94692934, 0x411520F7, 0x7602D4F7, 0xBCF46B2E, 0xD4A20068, 0xD4082471, 0x3320F46A, 0x43B7D4B7, 0x500061AF, 0x1E39F62E, 0x97244546, 0x14214F74, 0xBF8B8840, 0x4D95FC1D, 0x96B591AF, 0x70F4DDD3, 0x66A02F45, 0xBFBC09EC, 0x03BD9785, 0x7FAC6DD0, 0x31CB8504, 0x96EB27B3, 0x55FD3941, 0xDA2547E6, 0xABCA0A9A, 0x28507825, 0x530429F4, 0x0A2C86DA, 0xE9B66DFB, 0x68DC1462, 0xD7486900, 0x680EC0A4, 0x27A18DEE, 0x4F3FFEA2, 0xE887AD8C, 0xB58CE006, 0x7AF4D6B6, 0xAACE1E7C, 0xD3375FEC, 0xCE78A399, 0x406B2A42, 0x20FE9E35, 0xD9F385B9, 0xEE39D7AB, 0x3B124E8B, 0x1DC9FAF7, 0x4B6D1856, 0x26A36631, 0xEAE397B2, 0x3A6EFA74, 0xDD5B4332, 0x6841E7F7, 0xCA7820FB, 0xFB0AF54E, 0xD8FEB397, 0x454056AC, 0xBA489527, 0x55533A3A, 0x20838D87, 0xFE6BA9B7, 0xD096954B, 0x55A867BC, 0xA1159A58, 0xCCA92963, 0x99E1DB33, 0xA62A4A56, 0x3F3125F9, 0x5EF47E1C, 0x9029317C, 0xFDF8E802, 0x04272F70, 0x80BB155C, 0x05282CE3, 0x95C11548, 0xE4C66D22, 0x48C1133F, 0xC70F86DC, 0x07F9C9EE, 0x41041F0F, 0x404779A4, 0x5D886E17, 0x325F51EB, 0xD59BC0D1, 0xF2BCC18F, 0x41113564, 0x257B7834, 0x602A9C60, 0xDFF8E8A3, 0x1F636C1B, 0x0E12B4C2, 0x02E1329E, 0xAF664FD1, 0xCAD18115, 0x6B2395E0, 0x333E92E1, 0x3B240B62, 0xEEBEB922, 0x85B2A20E, 0xE6BA0D99, 0xDE720C8C, 0x2DA2F728, 0xD0127845, 0x95B794FD, 0x647D0862, 0xE7CCF5F0, 0x5449A36F, 0x877D48FA, 0xC39DFD27, 0xF33E8D1E, 0x0A476341, 0x992EFF74, 0x3A6F6EAB, 0xF4F8FD37, 0xA812DC60, 0xA1EBDDF8, 0x991BE14C, 0xDB6E6B0D, 0xC67B5510, 0x6D672C37, 0x2765D43B, 0xDCD0E804, 0xF1290DC7, 0xCC00FFA3, 0xB5390F92, 0x690FED0B, 0x667B9FFB, 0xCEDB7D9C, 0xA091CF0B, 0xD9155EA3, 0xBB132F88, 0x515BAD24, 0x7B9479BF, 0x763BD6EB, 0x37392EB3, 0xCC115979, 0x8026E297, 0xF42E312D, 0x6842ADA7, 0xC66A2B3B, 0x12754CCC, 0x782EF11C, 0x6A124237, 0xB79251E7, 0x06A1BBE6, 0x4BFB6350, 0x1A6B1018, 0x11CAEDFA, 0x3D25BDD8, 0xE2E1C3C9, 0x44421659, 0x0A121386, 0xD90CEC6E, 0xD5ABEA2A, 0x64AF674E, 0xDA86A85F, 0xBEBFE988, 0x64E4C3FE, 0x9DBC8057, 0xF0F7C086, 0x60787BF8, 0x6003604D, 0xD1FD8346, 0xF6381FB0, 0x7745AE04, 0xD736FCCC, 0x83426B33, 0xF01EAB71, 0xB0804187, 0x3C005E5F, 0x77A057BE, 0xBDE8AE24, 0x55464299, 0xBF582E61, 0x4E58F48F, 0xF2DDFDA2, 0xF474EF38, 0x8789BDC2, 0x5366F9C3, 0xC8B38E74, 0xB475F255, 0x46FCD9B9, 0x7AEB2661, 0x8B1DDF84, 0x846A0E79, 0x915F95E2, 0x466E598E, 0x20B45770, 0x8CD55591, 0xC902DE4C, 0xB90BACE1, 0xBB8205D0, 0x11A86248, 0x7574A99E, 0xB77F19B6, 0xE0A9DC09, 0x662D09A1, 0xC4324633, 0xE85A1F02, 0x09F0BE8C, 0x4A99A025, 0x1D6EFE10, 0x1AB93D1D, 0x0BA5A4DF, 0xA186F20F, 0x2868F169, 0xDCB7DA83, 0x573906FE, 0xA1E2CE9B, 0x4FCD7F52, 0x50115E01, 0xA70683FA, 0xA002B5C4, 0x0DE6D027, 0x9AF88C27, 0x773F8641, 0xC3604C06, 0x61A806B5, 0xF0177A28, 0xC0F586E0, 0x006058AA, 0x30DC7D62, 0x11E69ED7, 0x2338EA63, 0x53C2DD94, 0xC2C21634, 0xBBCBEE56, 0x90BCB6DE, 0xEBFC7DA1, 0xCE591D76, 0x6F05E409, 0x4B7C0188, 0x39720A3D, 0x7C927C24, 0x86E3725F, 0x724D9DB9, 0x1AC15BB4, 0xD39EB8FC, 0xED545578, 0x08FCA5B5, 0xD83D7CD3, 0x4DAD0FC4, 0x1E50EF5E, 0xB161E6F8, 0xA28514D9, 0x6C51133C, 0x6FD5C7E7, 0x56E14EC4, 0x362ABFCE, 0xDDC6C837, 0xD79A3234, 0x92638212, 0x670EFA8E, 0x406000E0], [0x3A39CE37, 0xD3FAF5CF, 0xABC27737, 0x5AC52D1B, 0x5CB0679E, 0x4FA33742, 0xD3822740, 0x99BC9BBE, 0xD5118E9D, 0xBF0F7315, 0xD62D1C7E, 0xC700C47B, 0xB78C1B6B, 0x21A19045, 0xB26EB1BE, 0x6A366EB4, 0x5748AB2F, 0xBC946E79, 0xC6A376D2, 0x6549C2C8, 0x530FF8EE, 0x468DDE7D, 0xD5730A1D, 0x4CD04DC6, 0x2939BBDB, 0xA9BA4650, 0xAC9526E8, 0xBE5EE304, 0xA1FAD5F0, 0x6A2D519A, 0x63EF8CE2, 0x9A86EE22, 0xC089C2B8, 0x43242EF6, 0xA51E03AA, 0x9CF2D0A4, 0x83C061BA, 0x9BE96A4D, 0x8FE51550, 0xBA645BD6, 0x2826A2F9, 0xA73A3AE1, 0x4BA99586, 0xEF5562E9, 0xC72FEFD3, 0xF752F7DA, 0x3F046F69, 0x77FA0A59, 0x80E4A915, 0x87B08601, 0x9B09E6AD, 0x3B3EE593, 0xE990FD5A, 0x9E34D797, 0x2CF0B7D9, 0x022B8B51, 0x96D5AC3A, 0x017DA67D, 0xD1CF3ED6, 0x7C7D2D28, 0x1F9F25CF, 0xADF2B89B, 0x5AD6B472, 0x5A88F54C, 0xE029AC71, 0xE019A5E6, 0x47B0ACFD, 0xED93FA9B, 0xE8D3C48D, 0x283B57CC, 0xF8D56629, 0x79132E28, 0x785F0191, 0xED756055, 0xF7960E44, 0xE3D35E8C, 0x15056DD4, 0x88F46DBA, 0x03A16125, 0x0564F0BD, 0xC3EB9E15, 0x3C9057A2, 0x97271AEC, 0xA93A072A, 0x1B3F6D9B, 0x1E6321F5, 0xF59C66FB, 0x26DCF319, 0x7533D928, 0xB155FDF5, 0x03563482, 0x8ABA3CBB, 0x28517711, 0xC20AD9F8, 0xABCC5167, 0xCCAD925F, 0x4DE81751, 0x3830DC8E, 0x379D5862, 0x9320F991, 0xEA7A90C2, 0xFB3E7BCE, 0x5121CE64, 0x774FBE32, 0xA8B6E37E, 0xC3293D46, 0x48DE5369, 0x6413E680, 0xA2AE0810, 0xDD6DB224, 0x69852DFD, 0x09072166, 0xB39A460A, 0x6445C0DD, 0x586CDECF, 0x1C20C8AE, 0x5BBEF7DD, 0x1B588D40, 0xCCD2017F, 0x6BB4E3BB, 0xDDA26A7E, 0x3A59FF45, 0x3E350A44, 0xBCB4CDD5, 0x72EACEA8, 0xFA6484BB, 0x8D6612AE, 0xBF3C6F47, 0xD29BE463, 0x542F5D9E, 0xAEC2771B, 0xF64E6370, 0x740E0D8D, 0xE75B1357, 0xF8721671, 0xAF537D5D, 0x4040CB08, 0x4EB4E2CC, 0x34D2466A, 0x0115AF84, 0xE1B00428, 0x95983A1D, 0x06B89FB4, 0xCE6EA048, 0x6F3F3B82, 0x3520AB82, 0x011A1D4B, 0x277227F8, 0x611560B1, 0xE7933FDC, 0xBB3A792B, 0x344525BD, 0xA08839E1, 0x51CE794B, 0x2F32C9B7, 0xA01FBAC9, 0xE01CC87E, 0xBCC7D1F6, 0xCF0111C3, 0xA1E8AAC7, 0x1A908749, 0xD44FBD9A, 0xD0DADECB, 0xD50ADA38, 0x0339C32A, 0xC6913667, 0x8DF9317C, 0xE0B12B4F, 0xF79E59B7, 0x43F5BB3A, 0xF2D519FF, 0x27D9459C, 0xBF97222C, 0x15E6FC2A, 0x0F91FC71, 0x9B941525, 0xFAE59361, 0xCEB69CEB, 0xC2A86459, 0x12BAA8D1, 0xB6C1075E, 0xE3056A0C, 0x10D25065, 0xCB03A442, 0xE0EC6E0E, 0x1698DB3B, 0x4C98A0BE, 0x3278E964, 0x9F1F9532, 0xE0D392DF, 0xD3A0342B, 0x8971F21E, 0x1B0A7441, 0x4BA3348C, 0xC5BE7120, 0xC37632D8, 0xDF359F8D, 0x9B992F2E, 0xE60B6F47, 0x0FE3F11D, 0xE54CDA54, 0x1EDAD891, 0xCE6279CF, 0xCD3E7E6F, 0x1618B166, 0xFD2C1D05, 0x848FD2C5, 0xF6FB2299, 0xF523F357, 0xA6327623, 0x93A83531, 0x56CCCD02, 0xACF08162, 0x5A75EBB5, 0x6E163697, 0x88D273CC, 0xDE966292, 0x81B949D0, 0x4C50901B, 0x71C65614, 0xE6C6C7BD, 0x327A140A, 0x45E1D006, 0xC3F27B9A, 0xC9AA53FD, 0x62A80F00, 0xBB25BFE2, 0x35BDD2F6, 0x71126905, 0xB2040222, 0xB6CBCF7C, 0xCD769C2B, 0x53113EC0, 0x1640E3D3, 0x38ABBD60, 0x2547ADF0, 0xBA38209C, 0xF746CE76, 0x77AFA1C5, 0x20756060, 0x85CBFE4E, 0x8AE88DD8, 0x7AAAF9B0, 0x4CF9AA7E, 0x1948C25C, 0x02FB8A8C, 0x01C36AE4, 0xD6EBE1F9, 0x90D4F869, 0xA65CDEA0, 0x3F09252D, 0xC208E69F, 0xB74E6132, 0xCE77E25B, 0x578FDFE3, 0x3AC372E6]]; + var BLOWFISH_CTX = { + pbox: [], + sbox: [] + }; + function F(ctx, x) { + var a = x >> 24 & 0xFF; + var b = x >> 16 & 0xFF; + var c = x >> 8 & 0xFF; + var d = x & 0xFF; + var y = ctx.sbox[0][a] + ctx.sbox[1][b]; + y = y ^ ctx.sbox[2][c]; + y = y + ctx.sbox[3][d]; + return y; + } + function BlowFish_Encrypt(ctx, left, right) { + var Xl = left; + var Xr = right; + var temp; + for (var i = 0; i < N; ++i) { + Xl = Xl ^ ctx.pbox[i]; + Xr = F(ctx, Xl) ^ Xr; + temp = Xl; + Xl = Xr; + Xr = temp; + } + temp = Xl; + Xl = Xr; + Xr = temp; + Xr = Xr ^ ctx.pbox[N]; + Xl = Xl ^ ctx.pbox[N + 1]; + return { + left: Xl, + right: Xr + }; + } + function BlowFish_Decrypt(ctx, left, right) { + var Xl = left; + var Xr = right; + var temp; + for (var i = N + 1; i > 1; --i) { + Xl = Xl ^ ctx.pbox[i]; + Xr = F(ctx, Xl) ^ Xr; + temp = Xl; + Xl = Xr; + Xr = temp; + } + temp = Xl; + Xl = Xr; + Xr = temp; + Xr = Xr ^ ctx.pbox[1]; + Xl = Xl ^ ctx.pbox[0]; + return { + left: Xl, + right: Xr + }; + } -binding.Z_MIN_MEMLEVEL = 1; -binding.Z_MAX_MEMLEVEL = 9; -binding.Z_DEFAULT_MEMLEVEL = 8; + /** + * Initialization ctx's pbox and sbox. + * + * @param {Object} ctx The object has pbox and sbox. + * @param {Array} key An array of 32-bit words. + * @param {int} keysize The length of the key. + * + * @example + * + * BlowFishInit(BLOWFISH_CTX, key, 128/32); + */ + function BlowFishInit(ctx, key, keysize) { + for (var Row = 0; Row < 4; Row++) { + ctx.sbox[Row] = []; + for (var Col = 0; Col < 256; Col++) { + ctx.sbox[Row][Col] = ORIG_S[Row][Col]; + } + } + var keyIndex = 0; + for (var index = 0; index < N + 2; index++) { + ctx.pbox[index] = ORIG_P[index] ^ key[keyIndex]; + keyIndex++; + if (keyIndex >= keysize) { + keyIndex = 0; + } + } + var Data1 = 0; + var Data2 = 0; + var res = 0; + for (var i = 0; i < N + 2; i += 2) { + res = BlowFish_Encrypt(ctx, Data1, Data2); + Data1 = res.left; + Data2 = res.right; + ctx.pbox[i] = Data1; + ctx.pbox[i + 1] = Data2; + } + for (var _i = 0; _i < 4; _i++) { + for (var j = 0; j < 256; j += 2) { + res = BlowFish_Encrypt(ctx, Data1, Data2); + Data1 = res.left; + Data2 = res.right; + ctx.sbox[_i][j] = Data1; + ctx.sbox[_i][j + 1] = Data2; + } + } + return true; + } -binding.Z_MIN_LEVEL = -1; -binding.Z_MAX_LEVEL = 9; -binding.Z_DEFAULT_LEVEL = binding.Z_DEFAULT_COMPRESSION; + /** + * Blowfish block cipher algorithm. + */ + var Blowfish = C_algo.Blowfish = BlockCipher.extend({ + _doReset: function _doReset() { + // Skip reset of nRounds has been set before and key did not change + if (this._keyPriorReset === this._key) { + return; + } -// expose all the zlib constants -var bkeys = Object.keys(binding); -for (var bk = 0; bk < bkeys.length; bk++) { - var bkey = bkeys[bk]; - if (bkey.match(/^Z/)) { - Object.defineProperty(exports, bkey, { - enumerable: true, value: binding[bkey], writable: false - }); - } -} + // Shortcuts + var key = this._keyPriorReset = this._key; + var keyWords = key.words; + var keySize = key.sigBytes / 4; -// translation table for return codes. -var codes = { - Z_OK: binding.Z_OK, - Z_STREAM_END: binding.Z_STREAM_END, - Z_NEED_DICT: binding.Z_NEED_DICT, - Z_ERRNO: binding.Z_ERRNO, - Z_STREAM_ERROR: binding.Z_STREAM_ERROR, - Z_DATA_ERROR: binding.Z_DATA_ERROR, - Z_MEM_ERROR: binding.Z_MEM_ERROR, - Z_BUF_ERROR: binding.Z_BUF_ERROR, - Z_VERSION_ERROR: binding.Z_VERSION_ERROR -}; - -var ckeys = Object.keys(codes); -for (var ck = 0; ck < ckeys.length; ck++) { - var ckey = ckeys[ck]; - codes[codes[ckey]] = ckey; -} - -Object.defineProperty(exports, "codes", ({ - enumerable: true, value: Object.freeze(codes), writable: false -})); + //Initialization pbox and sbox + BlowFishInit(BLOWFISH_CTX, keyWords, keySize); + }, + encryptBlock: function encryptBlock(M, offset) { + var res = BlowFish_Encrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); + M[offset] = res.left; + M[offset + 1] = res.right; + }, + decryptBlock: function decryptBlock(M, offset) { + var res = BlowFish_Decrypt(BLOWFISH_CTX, M[offset], M[offset + 1]); + M[offset] = res.left; + M[offset + 1] = res.right; + }, + blockSize: 64 / 32, + keySize: 128 / 32, + ivSize: 64 / 32 + }); -exports.Deflate = Deflate; -exports.Inflate = Inflate; -exports.Gzip = Gzip; -exports.Gunzip = Gunzip; -exports.DeflateRaw = DeflateRaw; -exports.InflateRaw = InflateRaw; -exports.Unzip = Unzip; + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.Blowfish.encrypt(message, key, cfg); + * var plaintext = CryptoJS.Blowfish.decrypt(ciphertext, key, cfg); + */ + C.Blowfish = BlockCipher._createHelper(Blowfish); + })(); + return CryptoJS.Blowfish; +}); -exports.createDeflate = function (o) { - return new Deflate(o); -}; +/***/ }), -exports.createInflate = function (o) { - return new Inflate(o); -}; +/***/ 51270: +/***/ (function(module, exports, __webpack_require__) { -exports.createDeflateRaw = function (o) { - return new DeflateRaw(o); -}; +"use strict"; -exports.createInflateRaw = function (o) { - return new InflateRaw(o); -}; -exports.createGzip = function (o) { - return new Gzip(o); -}; +__webpack_require__(39081); +__webpack_require__(20731); +__webpack_require__(23913); +__webpack_require__(14032); +__webpack_require__(57114); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(82747)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Cipher core components. + */ + CryptoJS.lib.Cipher || function (undefined) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Base = C_lib.Base; + var WordArray = C_lib.WordArray; + var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm; + var C_enc = C.enc; + var Utf8 = C_enc.Utf8; + var Base64 = C_enc.Base64; + var C_algo = C.algo; + var EvpKDF = C_algo.EvpKDF; -exports.createGunzip = function (o) { - return new Gunzip(o); -}; + /** + * Abstract base cipher template. + * + * @property {number} keySize This cipher's key size. Default: 4 (128 bits) + * @property {number} ivSize This cipher's IV size. Default: 4 (128 bits) + * @property {number} _ENC_XFORM_MODE A constant representing encryption mode. + * @property {number} _DEC_XFORM_MODE A constant representing decryption mode. + */ + var Cipher = C_lib.Cipher = BufferedBlockAlgorithm.extend({ + /** + * Configuration options. + * + * @property {WordArray} iv The IV to use for this operation. + */ + cfg: Base.extend(), + /** + * Creates this cipher in encryption mode. + * + * @param {WordArray} key The key. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {Cipher} A cipher instance. + * + * @static + * + * @example + * + * var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray }); + */ + createEncryptor: function createEncryptor(key, cfg) { + return this.create(this._ENC_XFORM_MODE, key, cfg); + }, + /** + * Creates this cipher in decryption mode. + * + * @param {WordArray} key The key. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {Cipher} A cipher instance. + * + * @static + * + * @example + * + * var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray }); + */ + createDecryptor: function createDecryptor(key, cfg) { + return this.create(this._DEC_XFORM_MODE, key, cfg); + }, + /** + * Initializes a newly created cipher. + * + * @param {number} xformMode Either the encryption or decryption transormation mode constant. + * @param {WordArray} key The key. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @example + * + * var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray }); + */ + init: function init(xformMode, key, cfg) { + // Apply config defaults + this.cfg = this.cfg.extend(cfg); -exports.createUnzip = function (o) { - return new Unzip(o); -}; + // Store transform mode and key + this._xformMode = xformMode; + this._key = key; -// Convenience methods. -// compress/decompress a string or buffer in one step. -exports.deflate = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new Deflate(opts), buffer, callback); -}; + // Set initial values + this.reset(); + }, + /** + * Resets this cipher to its initial state. + * + * @example + * + * cipher.reset(); + */ + reset: function reset() { + // Reset data buffer + BufferedBlockAlgorithm.reset.call(this); -exports.deflateSync = function (buffer, opts) { - return zlibBufferSync(new Deflate(opts), buffer); -}; + // Perform concrete-cipher logic + this._doReset(); + }, + /** + * Adds data to be encrypted or decrypted. + * + * @param {WordArray|string} dataUpdate The data to encrypt or decrypt. + * + * @return {WordArray} The data after processing. + * + * @example + * + * var encrypted = cipher.process('data'); + * var encrypted = cipher.process(wordArray); + */ + process: function process(dataUpdate) { + // Append + this._append(dataUpdate); -exports.gzip = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new Gzip(opts), buffer, callback); -}; + // Process available blocks + return this._process(); + }, + /** + * Finalizes the encryption or decryption process. + * Note that the finalize operation is effectively a destructive, read-once operation. + * + * @param {WordArray|string} dataUpdate The final data to encrypt or decrypt. + * + * @return {WordArray} The data after final processing. + * + * @example + * + * var encrypted = cipher.finalize(); + * var encrypted = cipher.finalize('data'); + * var encrypted = cipher.finalize(wordArray); + */ + finalize: function finalize(dataUpdate) { + // Final data update + if (dataUpdate) { + this._append(dataUpdate); + } -exports.gzipSync = function (buffer, opts) { - return zlibBufferSync(new Gzip(opts), buffer); -}; + // Perform concrete-cipher logic + var finalProcessedData = this._doFinalize(); + return finalProcessedData; + }, + keySize: 128 / 32, + ivSize: 128 / 32, + _ENC_XFORM_MODE: 1, + _DEC_XFORM_MODE: 2, + /** + * Creates shortcut functions to a cipher's object interface. + * + * @param {Cipher} cipher The cipher to create a helper for. + * + * @return {Object} An object with encrypt and decrypt shortcut functions. + * + * @static + * + * @example + * + * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES); + */ + _createHelper: function () { + function selectCipherStrategy(key) { + if (typeof key == 'string') { + return PasswordBasedCipher; + } else { + return SerializableCipher; + } + } + return function (cipher) { + return { + encrypt: function encrypt(message, key, cfg) { + return selectCipherStrategy(key).encrypt(cipher, message, key, cfg); + }, + decrypt: function decrypt(ciphertext, key, cfg) { + return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg); + } + }; + }; + }() + }); -exports.deflateRaw = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new DeflateRaw(opts), buffer, callback); -}; + /** + * Abstract base stream cipher template. + * + * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 1 (32 bits) + */ + var StreamCipher = C_lib.StreamCipher = Cipher.extend({ + _doFinalize: function _doFinalize() { + // Process partial blocks + var finalProcessedBlocks = this._process(!!'flush'); + return finalProcessedBlocks; + }, + blockSize: 1 + }); -exports.deflateRawSync = function (buffer, opts) { - return zlibBufferSync(new DeflateRaw(opts), buffer); -}; + /** + * Mode namespace. + */ + var C_mode = C.mode = {}; -exports.unzip = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new Unzip(opts), buffer, callback); -}; + /** + * Abstract base block cipher mode template. + */ + var BlockCipherMode = C_lib.BlockCipherMode = Base.extend({ + /** + * Creates this mode for encryption. + * + * @param {Cipher} cipher A block cipher instance. + * @param {Array} iv The IV words. + * + * @static + * + * @example + * + * var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words); + */ + createEncryptor: function createEncryptor(cipher, iv) { + return this.Encryptor.create(cipher, iv); + }, + /** + * Creates this mode for decryption. + * + * @param {Cipher} cipher A block cipher instance. + * @param {Array} iv The IV words. + * + * @static + * + * @example + * + * var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words); + */ + createDecryptor: function createDecryptor(cipher, iv) { + return this.Decryptor.create(cipher, iv); + }, + /** + * Initializes a newly created mode. + * + * @param {Cipher} cipher A block cipher instance. + * @param {Array} iv The IV words. + * + * @example + * + * var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words); + */ + init: function init(cipher, iv) { + this._cipher = cipher; + this._iv = iv; + } + }); -exports.unzipSync = function (buffer, opts) { - return zlibBufferSync(new Unzip(opts), buffer); -}; + /** + * Cipher Block Chaining mode. + */ + var CBC = C_mode.CBC = function () { + /** + * Abstract base CBC mode. + */ + var CBC = BlockCipherMode.extend(); -exports.inflate = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new Inflate(opts), buffer, callback); -}; + /** + * CBC encryptor. + */ + CBC.Encryptor = CBC.extend({ + /** + * Processes the data block at offset. + * + * @param {Array} words The data words to operate on. + * @param {number} offset The offset where the block starts. + * + * @example + * + * mode.processBlock(data.words, offset); + */ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; -exports.inflateSync = function (buffer, opts) { - return zlibBufferSync(new Inflate(opts), buffer); -}; + // XOR and encrypt + xorBlock.call(this, words, offset, blockSize); + cipher.encryptBlock(words, offset); -exports.gunzip = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new Gunzip(opts), buffer, callback); -}; + // Remember this block to use with next block + this._prevBlock = words.slice(offset, offset + blockSize); + } + }); -exports.gunzipSync = function (buffer, opts) { - return zlibBufferSync(new Gunzip(opts), buffer); -}; + /** + * CBC decryptor. + */ + CBC.Decryptor = CBC.extend({ + /** + * Processes the data block at offset. + * + * @param {Array} words The data words to operate on. + * @param {number} offset The offset where the block starts. + * + * @example + * + * mode.processBlock(data.words, offset); + */ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; -exports.inflateRaw = function (buffer, opts, callback) { - if (typeof opts === 'function') { - callback = opts; - opts = {}; - } - return zlibBuffer(new InflateRaw(opts), buffer, callback); -}; + // Remember this block to use with next block + var thisBlock = words.slice(offset, offset + blockSize); -exports.inflateRawSync = function (buffer, opts) { - return zlibBufferSync(new InflateRaw(opts), buffer); -}; + // Decrypt and XOR + cipher.decryptBlock(words, offset); + xorBlock.call(this, words, offset, blockSize); -function zlibBuffer(engine, buffer, callback) { - var buffers = []; - var nread = 0; + // This block becomes the previous block + this._prevBlock = thisBlock; + } + }); + function xorBlock(words, offset, blockSize) { + var block; - engine.on('error', onError); - engine.on('end', onEnd); + // Shortcut + var iv = this._iv; - engine.end(buffer); - flow(); + // Choose mixing block + if (iv) { + block = iv; - function flow() { - var chunk; - while (null !== (chunk = engine.read())) { - buffers.push(chunk); - nread += chunk.length; - } - engine.once('readable', flow); - } + // Remove IV for subsequent blocks + this._iv = undefined; + } else { + block = this._prevBlock; + } - function onError(err) { - engine.removeListener('end', onEnd); - engine.removeListener('readable', flow); - callback(err); - } + // XOR blocks + for (var i = 0; i < blockSize; i++) { + words[offset + i] ^= block[i]; + } + } + return CBC; + }(); - function onEnd() { - var buf; - var err = null; + /** + * Padding namespace. + */ + var C_pad = C.pad = {}; - if (nread >= kMaxLength) { - err = new RangeError(kRangeErrorMessage); - } else { - buf = Buffer.concat(buffers, nread); - } + /** + * PKCS #5/7 padding strategy. + */ + var Pkcs7 = C_pad.Pkcs7 = { + /** + * Pads data using the algorithm defined in PKCS #5/7. + * + * @param {WordArray} data The data to pad. + * @param {number} blockSize The multiple that the data should be padded to. + * + * @static + * + * @example + * + * CryptoJS.pad.Pkcs7.pad(wordArray, 4); + */ + pad: function pad(data, blockSize) { + // Shortcut + var blockSizeBytes = blockSize * 4; - buffers = []; - engine.close(); - callback(err, buf); - } -} + // Count padding bytes + var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; -function zlibBufferSync(engine, buffer) { - if (typeof buffer === 'string') buffer = Buffer.from(buffer); + // Create padding word + var paddingWord = nPaddingBytes << 24 | nPaddingBytes << 16 | nPaddingBytes << 8 | nPaddingBytes; - if (!Buffer.isBuffer(buffer)) throw new TypeError('Not a string or buffer'); + // Create padding + var paddingWords = []; + for (var i = 0; i < nPaddingBytes; i += 4) { + paddingWords.push(paddingWord); + } + var padding = WordArray.create(paddingWords, nPaddingBytes); - var flushFlag = engine._finishFlushFlag; + // Add padding + data.concat(padding); + }, + /** + * Unpads data that had been padded using the algorithm defined in PKCS #5/7. + * + * @param {WordArray} data The data to unpad. + * + * @static + * + * @example + * + * CryptoJS.pad.Pkcs7.unpad(wordArray); + */ + unpad: function unpad(data) { + // Get number of padding bytes from last byte + var nPaddingBytes = data.words[data.sigBytes - 1 >>> 2] & 0xff; - return engine._processChunk(buffer, flushFlag); -} + // Remove padding + data.sigBytes -= nPaddingBytes; + } + }; -// generic zlib -// minimal 2-byte header -function Deflate(opts) { - if (!(this instanceof Deflate)) return new Deflate(opts); - Zlib.call(this, opts, binding.DEFLATE); -} + /** + * Abstract base block cipher template. + * + * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 4 (128 bits) + */ + var BlockCipher = C_lib.BlockCipher = Cipher.extend({ + /** + * Configuration options. + * + * @property {Mode} mode The block mode to use. Default: CBC + * @property {Padding} padding The padding strategy to use. Default: Pkcs7 + */ + cfg: Cipher.cfg.extend({ + mode: CBC, + padding: Pkcs7 + }), + reset: function reset() { + var modeCreator; -function Inflate(opts) { - if (!(this instanceof Inflate)) return new Inflate(opts); - Zlib.call(this, opts, binding.INFLATE); -} + // Reset cipher + Cipher.reset.call(this); -// gzip - bigger header, same deflate compression -function Gzip(opts) { - if (!(this instanceof Gzip)) return new Gzip(opts); - Zlib.call(this, opts, binding.GZIP); -} + // Shortcuts + var cfg = this.cfg; + var iv = cfg.iv; + var mode = cfg.mode; -function Gunzip(opts) { - if (!(this instanceof Gunzip)) return new Gunzip(opts); - Zlib.call(this, opts, binding.GUNZIP); -} + // Reset block mode + if (this._xformMode == this._ENC_XFORM_MODE) { + modeCreator = mode.createEncryptor; + } else /* if (this._xformMode == this._DEC_XFORM_MODE) */{ + modeCreator = mode.createDecryptor; + // Keep at least one block in the buffer for unpadding + this._minBufferSize = 1; + } + if (this._mode && this._mode.__creator == modeCreator) { + this._mode.init(this, iv && iv.words); + } else { + this._mode = modeCreator.call(mode, this, iv && iv.words); + this._mode.__creator = modeCreator; + } + }, + _doProcessBlock: function _doProcessBlock(words, offset) { + this._mode.processBlock(words, offset); + }, + _doFinalize: function _doFinalize() { + var finalProcessedBlocks; -// raw - no header -function DeflateRaw(opts) { - if (!(this instanceof DeflateRaw)) return new DeflateRaw(opts); - Zlib.call(this, opts, binding.DEFLATERAW); -} + // Shortcut + var padding = this.cfg.padding; -function InflateRaw(opts) { - if (!(this instanceof InflateRaw)) return new InflateRaw(opts); - Zlib.call(this, opts, binding.INFLATERAW); -} + // Finalize + if (this._xformMode == this._ENC_XFORM_MODE) { + // Pad data + padding.pad(this._data, this.blockSize); -// auto-detect header. -function Unzip(opts) { - if (!(this instanceof Unzip)) return new Unzip(opts); - Zlib.call(this, opts, binding.UNZIP); -} + // Process final blocks + finalProcessedBlocks = this._process(!!'flush'); + } else /* if (this._xformMode == this._DEC_XFORM_MODE) */{ + // Process final blocks + finalProcessedBlocks = this._process(!!'flush'); -function isValidFlushFlag(flag) { - return flag === binding.Z_NO_FLUSH || flag === binding.Z_PARTIAL_FLUSH || flag === binding.Z_SYNC_FLUSH || flag === binding.Z_FULL_FLUSH || flag === binding.Z_FINISH || flag === binding.Z_BLOCK; -} + // Unpad data + padding.unpad(finalProcessedBlocks); + } + return finalProcessedBlocks; + }, + blockSize: 128 / 32 + }); -// the Zlib class they all inherit from -// This thing manages the queue of requests, and returns -// true or false if there is anything in the queue when -// you call the .write() method. + /** + * A collection of cipher parameters. + * + * @property {WordArray} ciphertext The raw ciphertext. + * @property {WordArray} key The key to this ciphertext. + * @property {WordArray} iv The IV used in the ciphering operation. + * @property {WordArray} salt The salt used with a key derivation function. + * @property {Cipher} algorithm The cipher algorithm. + * @property {Mode} mode The block mode used in the ciphering operation. + * @property {Padding} padding The padding scheme used in the ciphering operation. + * @property {number} blockSize The block size of the cipher. + * @property {Format} formatter The default formatting strategy to convert this cipher params object to a string. + */ + var CipherParams = C_lib.CipherParams = Base.extend({ + /** + * Initializes a newly created cipher params object. + * + * @param {Object} cipherParams An object with any of the possible cipher parameters. + * + * @example + * + * var cipherParams = CryptoJS.lib.CipherParams.create({ + * ciphertext: ciphertextWordArray, + * key: keyWordArray, + * iv: ivWordArray, + * salt: saltWordArray, + * algorithm: CryptoJS.algo.AES, + * mode: CryptoJS.mode.CBC, + * padding: CryptoJS.pad.PKCS7, + * blockSize: 4, + * formatter: CryptoJS.format.OpenSSL + * }); + */ + init: function init(cipherParams) { + this.mixIn(cipherParams); + }, + /** + * Converts this cipher params object to a string. + * + * @param {Format} formatter (Optional) The formatting strategy to use. + * + * @return {string} The stringified cipher params. + * + * @throws Error If neither the formatter nor the default formatter is set. + * + * @example + * + * var string = cipherParams + ''; + * var string = cipherParams.toString(); + * var string = cipherParams.toString(CryptoJS.format.OpenSSL); + */ + toString: function toString(formatter) { + return (formatter || this.formatter).stringify(this); + } + }); -function Zlib(opts, mode) { - var _this = this; + /** + * Format namespace. + */ + var C_format = C.format = {}; - this._opts = opts = opts || {}; - this._chunkSize = opts.chunkSize || exports.Z_DEFAULT_CHUNK; + /** + * OpenSSL formatting strategy. + */ + var OpenSSLFormatter = C_format.OpenSSL = { + /** + * Converts a cipher params object to an OpenSSL-compatible string. + * + * @param {CipherParams} cipherParams The cipher params object. + * + * @return {string} The OpenSSL-compatible string. + * + * @static + * + * @example + * + * var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams); + */ + stringify: function stringify(cipherParams) { + var wordArray; - Transform.call(this, opts); + // Shortcuts + var ciphertext = cipherParams.ciphertext; + var salt = cipherParams.salt; - if (opts.flush && !isValidFlushFlag(opts.flush)) { - throw new Error('Invalid flush flag: ' + opts.flush); - } - if (opts.finishFlush && !isValidFlushFlag(opts.finishFlush)) { - throw new Error('Invalid flush flag: ' + opts.finishFlush); - } + // Format + if (salt) { + wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext); + } else { + wordArray = ciphertext; + } + return wordArray.toString(Base64); + }, + /** + * Converts an OpenSSL-compatible string to a cipher params object. + * + * @param {string} openSSLStr The OpenSSL-compatible string. + * + * @return {CipherParams} The cipher params object. + * + * @static + * + * @example + * + * var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString); + */ + parse: function parse(openSSLStr) { + var salt; - this._flushFlag = opts.flush || binding.Z_NO_FLUSH; - this._finishFlushFlag = typeof opts.finishFlush !== 'undefined' ? opts.finishFlush : binding.Z_FINISH; + // Parse base64 + var ciphertext = Base64.parse(openSSLStr); - if (opts.chunkSize) { - if (opts.chunkSize < exports.Z_MIN_CHUNK || opts.chunkSize > exports.Z_MAX_CHUNK) { - throw new Error('Invalid chunk size: ' + opts.chunkSize); - } - } + // Shortcut + var ciphertextWords = ciphertext.words; - if (opts.windowBits) { - if (opts.windowBits < exports.Z_MIN_WINDOWBITS || opts.windowBits > exports.Z_MAX_WINDOWBITS) { - throw new Error('Invalid windowBits: ' + opts.windowBits); - } - } + // Test for salt + if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) { + // Extract salt + salt = WordArray.create(ciphertextWords.slice(2, 4)); - if (opts.level) { - if (opts.level < exports.Z_MIN_LEVEL || opts.level > exports.Z_MAX_LEVEL) { - throw new Error('Invalid compression level: ' + opts.level); - } - } + // Remove salt from ciphertext + ciphertextWords.splice(0, 4); + ciphertext.sigBytes -= 16; + } + return CipherParams.create({ + ciphertext: ciphertext, + salt: salt + }); + } + }; - if (opts.memLevel) { - if (opts.memLevel < exports.Z_MIN_MEMLEVEL || opts.memLevel > exports.Z_MAX_MEMLEVEL) { - throw new Error('Invalid memLevel: ' + opts.memLevel); - } - } + /** + * A cipher wrapper that returns ciphertext as a serializable cipher params object. + */ + var SerializableCipher = C_lib.SerializableCipher = Base.extend({ + /** + * Configuration options. + * + * @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL + */ + cfg: Base.extend({ + format: OpenSSLFormatter + }), + /** + * Encrypts a message. + * + * @param {Cipher} cipher The cipher algorithm to use. + * @param {WordArray|string} message The message to encrypt. + * @param {WordArray} key The key. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {CipherParams} A cipher params object. + * + * @static + * + * @example + * + * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key); + * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv }); + * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL }); + */ + encrypt: function encrypt(cipher, message, key, cfg) { + // Apply config defaults + cfg = this.cfg.extend(cfg); - if (opts.strategy) { - if (opts.strategy != exports.Z_FILTERED && opts.strategy != exports.Z_HUFFMAN_ONLY && opts.strategy != exports.Z_RLE && opts.strategy != exports.Z_FIXED && opts.strategy != exports.Z_DEFAULT_STRATEGY) { - throw new Error('Invalid strategy: ' + opts.strategy); - } - } + // Encrypt + var encryptor = cipher.createEncryptor(key, cfg); + var ciphertext = encryptor.finalize(message); - if (opts.dictionary) { - if (!Buffer.isBuffer(opts.dictionary)) { - throw new Error('Invalid dictionary: it should be a Buffer instance'); - } - } + // Shortcut + var cipherCfg = encryptor.cfg; - this._handle = new binding.Zlib(mode); + // Create and return serializable cipher params + return CipherParams.create({ + ciphertext: ciphertext, + key: key, + iv: cipherCfg.iv, + algorithm: cipher, + mode: cipherCfg.mode, + padding: cipherCfg.padding, + blockSize: cipher.blockSize, + formatter: cfg.format + }); + }, + /** + * Decrypts serialized ciphertext. + * + * @param {Cipher} cipher The cipher algorithm to use. + * @param {CipherParams|string} ciphertext The ciphertext to decrypt. + * @param {WordArray} key The key. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {WordArray} The plaintext. + * + * @static + * + * @example + * + * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL }); + * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL }); + */ + decrypt: function decrypt(cipher, ciphertext, key, cfg) { + // Apply config defaults + cfg = this.cfg.extend(cfg); - var self = this; - this._hadError = false; - this._handle.onerror = function (message, errno) { - // there is no way to cleanly recover. - // continuing only obscures problems. - _close(self); - self._hadError = true; + // Convert string to CipherParams + ciphertext = this._parse(ciphertext, cfg.format); - var error = new Error(message); - error.errno = errno; - error.code = exports.codes[errno]; - self.emit('error', error); - }; + // Decrypt + var plaintext = cipher.createDecryptor(key, cfg).finalize(ciphertext.ciphertext); + return plaintext; + }, + /** + * Converts serialized ciphertext to CipherParams, + * else assumed CipherParams already and returns ciphertext unchanged. + * + * @param {CipherParams|string} ciphertext The ciphertext. + * @param {Formatter} format The formatting strategy to use to parse serialized ciphertext. + * + * @return {CipherParams} The unserialized ciphertext. + * + * @static + * + * @example + * + * var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format); + */ + _parse: function _parse(ciphertext, format) { + if (typeof ciphertext == 'string') { + return format.parse(ciphertext, this); + } else { + return ciphertext; + } + } + }); - var level = exports.Z_DEFAULT_COMPRESSION; - if (typeof opts.level === 'number') level = opts.level; + /** + * Key derivation function namespace. + */ + var C_kdf = C.kdf = {}; - var strategy = exports.Z_DEFAULT_STRATEGY; - if (typeof opts.strategy === 'number') strategy = opts.strategy; + /** + * OpenSSL key derivation function. + */ + var OpenSSLKdf = C_kdf.OpenSSL = { + /** + * Derives a key and IV from a password. + * + * @param {string} password The password to derive from. + * @param {number} keySize The size in words of the key to generate. + * @param {number} ivSize The size in words of the IV to generate. + * @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly. + * + * @return {CipherParams} A cipher params object with the key, IV, and salt. + * + * @static + * + * @example + * + * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32); + * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt'); + */ + execute: function execute(password, keySize, ivSize, salt, hasher) { + // Generate random salt + if (!salt) { + salt = WordArray.random(64 / 8); + } - this._handle.init(opts.windowBits || exports.Z_DEFAULT_WINDOWBITS, level, opts.memLevel || exports.Z_DEFAULT_MEMLEVEL, strategy, opts.dictionary); + // Derive key and IV + if (!hasher) { + var key = EvpKDF.create({ + keySize: keySize + ivSize + }).compute(password, salt); + } else { + var key = EvpKDF.create({ + keySize: keySize + ivSize, + hasher: hasher + }).compute(password, salt); + } - this._buffer = Buffer.allocUnsafe(this._chunkSize); - this._offset = 0; - this._level = level; - this._strategy = strategy; + // Separate key and IV + var iv = WordArray.create(key.words.slice(keySize), ivSize * 4); + key.sigBytes = keySize * 4; - this.once('end', this.close); + // Return params + return CipherParams.create({ + key: key, + iv: iv, + salt: salt + }); + } + }; - Object.defineProperty(this, '_closed', { - get: function () { - return !_this._handle; - }, - configurable: true, - enumerable: true - }); -} - -util.inherits(Zlib, Transform); - -Zlib.prototype.params = function (level, strategy, callback) { - if (level < exports.Z_MIN_LEVEL || level > exports.Z_MAX_LEVEL) { - throw new RangeError('Invalid compression level: ' + level); - } - if (strategy != exports.Z_FILTERED && strategy != exports.Z_HUFFMAN_ONLY && strategy != exports.Z_RLE && strategy != exports.Z_FIXED && strategy != exports.Z_DEFAULT_STRATEGY) { - throw new TypeError('Invalid strategy: ' + strategy); - } - - if (this._level !== level || this._strategy !== strategy) { - var self = this; - this.flush(binding.Z_SYNC_FLUSH, function () { - assert(self._handle, 'zlib binding closed'); - self._handle.params(level, strategy); - if (!self._hadError) { - self._level = level; - self._strategy = strategy; - if (callback) callback(); - } - }); - } else { - process.nextTick(callback); - } -}; - -Zlib.prototype.reset = function () { - assert(this._handle, 'zlib binding closed'); - return this._handle.reset(); -}; - -// This is the _flush function called by the transform class, -// internally, when the last chunk has been written. -Zlib.prototype._flush = function (callback) { - this._transform(Buffer.alloc(0), '', callback); -}; - -Zlib.prototype.flush = function (kind, callback) { - var _this2 = this; - - var ws = this._writableState; - - if (typeof kind === 'function' || kind === undefined && !callback) { - callback = kind; - kind = binding.Z_FULL_FLUSH; - } - - if (ws.ended) { - if (callback) process.nextTick(callback); - } else if (ws.ending) { - if (callback) this.once('end', callback); - } else if (ws.needDrain) { - if (callback) { - this.once('drain', function () { - return _this2.flush(kind, callback); - }); - } - } else { - this._flushFlag = kind; - this.write(Buffer.alloc(0), '', callback); - } -}; - -Zlib.prototype.close = function (callback) { - _close(this, callback); - process.nextTick(emitCloseNT, this); -}; - -function _close(engine, callback) { - if (callback) process.nextTick(callback); - - // Caller may invoke .close after a zlib error (which will null _handle). - if (!engine._handle) return; - - engine._handle.close(); - engine._handle = null; -} - -function emitCloseNT(self) { - self.emit('close'); -} - -Zlib.prototype._transform = function (chunk, encoding, cb) { - var flushFlag; - var ws = this._writableState; - var ending = ws.ending || ws.ended; - var last = ending && (!chunk || ws.length === chunk.length); - - if (chunk !== null && !Buffer.isBuffer(chunk)) return cb(new Error('invalid input')); - - if (!this._handle) return cb(new Error('zlib binding closed')); - - // If it's the last chunk, or a final flush, we use the Z_FINISH flush flag - // (or whatever flag was provided using opts.finishFlush). - // If it's explicitly flushing at some other time, then we use - // Z_FULL_FLUSH. Otherwise, use Z_NO_FLUSH for maximum compression - // goodness. - if (last) flushFlag = this._finishFlushFlag;else { - flushFlag = this._flushFlag; - // once we've flushed the last of the queue, stop flushing and - // go back to the normal behavior. - if (chunk.length >= ws.length) { - this._flushFlag = this._opts.flush || binding.Z_NO_FLUSH; - } - } - - this._processChunk(chunk, flushFlag, cb); -}; - -Zlib.prototype._processChunk = function (chunk, flushFlag, cb) { - var availInBefore = chunk && chunk.length; - var availOutBefore = this._chunkSize - this._offset; - var inOff = 0; - - var self = this; - - var async = typeof cb === 'function'; - - if (!async) { - var buffers = []; - var nread = 0; - - var error; - this.on('error', function (er) { - error = er; - }); - - assert(this._handle, 'zlib binding closed'); - do { - var res = this._handle.writeSync(flushFlag, chunk, // in - inOff, // in_off - availInBefore, // in_len - this._buffer, // out - this._offset, //out_off - availOutBefore); // out_len - } while (!this._hadError && callback(res[0], res[1])); - - if (this._hadError) { - throw error; - } - - if (nread >= kMaxLength) { - _close(this); - throw new RangeError(kRangeErrorMessage); - } + /** + * A serializable cipher wrapper that derives the key from a password, + * and returns ciphertext as a serializable cipher params object. + */ + var PasswordBasedCipher = C_lib.PasswordBasedCipher = SerializableCipher.extend({ + /** + * Configuration options. + * + * @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL + */ + cfg: SerializableCipher.cfg.extend({ + kdf: OpenSSLKdf + }), + /** + * Encrypts a message using a password. + * + * @param {Cipher} cipher The cipher algorithm to use. + * @param {WordArray|string} message The message to encrypt. + * @param {string} password The password. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {CipherParams} A cipher params object. + * + * @static + * + * @example + * + * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password'); + * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL }); + */ + encrypt: function encrypt(cipher, message, password, cfg) { + // Apply config defaults + cfg = this.cfg.extend(cfg); - var buf = Buffer.concat(buffers, nread); - _close(this); + // Derive key and other params + var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, cfg.salt, cfg.hasher); - return buf; - } + // Add IV to config + cfg.iv = derivedParams.iv; - assert(this._handle, 'zlib binding closed'); - var req = this._handle.write(flushFlag, chunk, // in - inOff, // in_off - availInBefore, // in_len - this._buffer, // out - this._offset, //out_off - availOutBefore); // out_len + // Encrypt + var ciphertext = SerializableCipher.encrypt.call(this, cipher, message, derivedParams.key, cfg); - req.buffer = chunk; - req.callback = callback; + // Mix in derived params + ciphertext.mixIn(derivedParams); + return ciphertext; + }, + /** + * Decrypts serialized ciphertext using a password. + * + * @param {Cipher} cipher The cipher algorithm to use. + * @param {CipherParams|string} ciphertext The ciphertext to decrypt. + * @param {string} password The password. + * @param {Object} cfg (Optional) The configuration options to use for this operation. + * + * @return {WordArray} The plaintext. + * + * @static + * + * @example + * + * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL }); + * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL }); + */ + decrypt: function decrypt(cipher, ciphertext, password, cfg) { + // Apply config defaults + cfg = this.cfg.extend(cfg); - function callback(availInAfter, availOutAfter) { - // When the callback is used in an async write, the callback's - // context is the `req` object that was created. The req object - // is === this._handle, and that's why it's important to null - // out the values after they are done being used. `this._handle` - // can stay in memory longer than the callback and buffer are needed. - if (this) { - this.buffer = null; - this.callback = null; - } + // Convert string to CipherParams + ciphertext = this._parse(ciphertext, cfg.format); - if (self._hadError) return; + // Derive key and other params + var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, ciphertext.salt, cfg.hasher); - var have = availOutBefore - availOutAfter; - assert(have >= 0, 'have should not go down'); + // Add IV to config + cfg.iv = derivedParams.iv; - if (have > 0) { - var out = self._buffer.slice(self._offset, self._offset + have); - self._offset += have; - // serve some output to the consumer. - if (async) { - self.push(out); - } else { - buffers.push(out); - nread += out.length; + // Decrypt + var plaintext = SerializableCipher.decrypt.call(this, cipher, ciphertext, derivedParams.key, cfg); + return plaintext; } - } - - // exhausted the output buffer, or used all the input create a new one. - if (availOutAfter === 0 || self._offset >= self._chunkSize) { - availOutBefore = self._chunkSize; - self._offset = 0; - self._buffer = Buffer.allocUnsafe(self._chunkSize); - } - - if (availOutAfter === 0) { - // Not actually done. Need to reprocess. - // Also, update the availInBefore to the availInAfter value, - // so that if we have to hit it a third (fourth, etc.) time, - // it'll have the correct byte counts. - inOff += availInBefore - availInAfter; - availInBefore = availInAfter; - - if (!async) return true; - - var newReq = self._handle.write(flushFlag, chunk, inOff, availInBefore, self._buffer, self._offset, self._chunkSize); - newReq.callback = callback; // this same function - newReq.buffer = chunk; - return; - } - - if (!async) return false; - - // finished with the chunk. - cb(); - } -}; - -util.inherits(Deflate, Zlib); -util.inherits(Inflate, Zlib); -util.inherits(Gzip, Zlib); -util.inherits(Gunzip, Zlib); -util.inherits(DeflateRaw, Zlib); -util.inherits(InflateRaw, Zlib); -util.inherits(Unzip, Zlib); + }); + }(); +}); /***/ }), -/***/ 6819: +/***/ 48352: /***/ (function(module, exports, __webpack_require__) { "use strict"; +__webpack_require__(39081); +__webpack_require__(81755); +__webpack_require__(94845); +__webpack_require__(20731); +__webpack_require__(23913); +__webpack_require__(8953); +__webpack_require__(14032); +__webpack_require__(57114); +__webpack_require__(59735); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +__webpack_require__(49109); ; -(function (root, factory, undef) { +(function (root, factory) { if (true) { // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + module.exports = exports = factory(); } else // removed by dead control flow {} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var StreamCipher = C_lib.StreamCipher; - var C_algo = C.algo; +})(void 0, function () { + /*globals window, global, require*/ - // Reusable objects - var S = []; - var C_ = []; - var G = []; + /** + * CryptoJS core components. + */ + var CryptoJS = CryptoJS || function (Math, undefined) { + var crypto; - /** - * Rabbit stream cipher algorithm - */ - var Rabbit = C_algo.Rabbit = StreamCipher.extend({ - _doReset: function _doReset() { - // Shortcuts - var K = this._key.words; - var iv = this.cfg.iv; + // Native crypto from window (Browser) + if (typeof window !== 'undefined' && window.crypto) { + crypto = window.crypto; + } - // Swap endian - for (var i = 0; i < 4; i++) { - K[i] = (K[i] << 8 | K[i] >>> 24) & 0x00ff00ff | (K[i] << 24 | K[i] >>> 8) & 0xff00ff00; - } + // Native crypto in web worker (Browser) + if (typeof self !== 'undefined' && self.crypto) { + crypto = self.crypto; + } - // Generate initial state values - var X = this._X = [K[0], K[3] << 16 | K[2] >>> 16, K[1], K[0] << 16 | K[3] >>> 16, K[2], K[1] << 16 | K[0] >>> 16, K[3], K[2] << 16 | K[1] >>> 16]; + // Native crypto from worker + if (typeof globalThis !== 'undefined' && globalThis.crypto) { + crypto = globalThis.crypto; + } - // Generate initial counter values - var C = this._C = [K[2] << 16 | K[2] >>> 16, K[0] & 0xffff0000 | K[1] & 0x0000ffff, K[3] << 16 | K[3] >>> 16, K[1] & 0xffff0000 | K[2] & 0x0000ffff, K[0] << 16 | K[0] >>> 16, K[2] & 0xffff0000 | K[3] & 0x0000ffff, K[1] << 16 | K[1] >>> 16, K[3] & 0xffff0000 | K[0] & 0x0000ffff]; + // Native (experimental IE 11) crypto from window (Browser) + if (!crypto && typeof window !== 'undefined' && window.msCrypto) { + crypto = window.msCrypto; + } - // Carry bit - this._b = 0; + // Native crypto from global (NodeJS) + if (!crypto && typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.crypto) { + crypto = __webpack_require__.g.crypto; + } - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); + // Native crypto import via require (NodeJS) + if (!crypto && "function" === 'function') { + try { + crypto = __webpack_require__(50477); + } catch (err) {} + } + + /* + * Cryptographically secure pseudorandom number generator + * + * As Math.random() is cryptographically not safe to use + */ + var cryptoSecureRandomInt = function cryptoSecureRandomInt() { + if (crypto) { + // Use getRandomValues method (Browser) + if (typeof crypto.getRandomValues === 'function') { + try { + return crypto.getRandomValues(new Uint32Array(1))[0]; + } catch (err) {} } - // Modify the counters - for (var i = 0; i < 8; i++) { - C[i] ^= X[i + 4 & 7]; + // Use randomBytes method (NodeJS) + if (typeof crypto.randomBytes === 'function') { + try { + return crypto.randomBytes(4).readInt32LE(); + } catch (err) {} } + } + throw new Error('Native crypto module could not be used to get secure random number.'); + }; - // IV setup - if (iv) { - // Shortcuts - var IV = iv.words; - var IV_0 = IV[0]; - var IV_1 = IV[1]; + /* + * Local polyfill of Object.create + */ + var create = Object.create || function () { + function F() {} + return function (obj) { + var subtype; + F.prototype = obj; + subtype = new F(); + F.prototype = null; + return subtype; + }; + }(); - // Generate four subvectors - var i0 = (IV_0 << 8 | IV_0 >>> 24) & 0x00ff00ff | (IV_0 << 24 | IV_0 >>> 8) & 0xff00ff00; - var i2 = (IV_1 << 8 | IV_1 >>> 24) & 0x00ff00ff | (IV_1 << 24 | IV_1 >>> 8) & 0xff00ff00; - var i1 = i0 >>> 16 | i2 & 0xffff0000; - var i3 = i2 << 16 | i0 & 0x0000ffff; + /** + * CryptoJS namespace. + */ + var C = {}; - // Modify counter values - C[0] ^= i0; - C[1] ^= i1; - C[2] ^= i2; - C[3] ^= i3; - C[4] ^= i0; - C[5] ^= i1; - C[6] ^= i2; - C[7] ^= i3; + /** + * Library namespace. + */ + var C_lib = C.lib = {}; - // Iterate the system four times - for (var i = 0; i < 4; i++) { - nextState.call(this); + /** + * Base object for prototypal inheritance. + */ + var Base = C_lib.Base = function () { + return { + /** + * Creates a new object that inherits from this object. + * + * @param {Object} overrides Properties to copy into the new object. + * + * @return {Object} The new object. + * + * @static + * + * @example + * + * var MyType = CryptoJS.lib.Base.extend({ + * field: 'value', + * + * method: function () { + * } + * }); + */ + extend: function extend(overrides) { + // Spawn + var subtype = create(this); + + // Augment + if (overrides) { + subtype.mixIn(overrides); } - } - }, - _doProcessBlock: function _doProcessBlock(M, offset) { - // Shortcut - var X = this._X; - // Iterate the system - nextState.call(this); + // Create default initializer + if (!subtype.hasOwnProperty('init') || this.init === subtype.init) { + subtype.init = function () { + subtype.$super.init.apply(this, arguments); + }; + } - // Generate four keystream words - S[0] = X[0] ^ X[5] >>> 16 ^ X[3] << 16; - S[1] = X[2] ^ X[7] >>> 16 ^ X[5] << 16; - S[2] = X[4] ^ X[1] >>> 16 ^ X[7] << 16; - S[3] = X[6] ^ X[3] >>> 16 ^ X[1] << 16; - for (var i = 0; i < 4; i++) { - // Swap endian - S[i] = (S[i] << 8 | S[i] >>> 24) & 0x00ff00ff | (S[i] << 24 | S[i] >>> 8) & 0xff00ff00; + // Initializer's prototype is the subtype object + subtype.init.prototype = subtype; - // Encrypt - M[offset + i] ^= S[i]; - } - }, - blockSize: 128 / 32, - ivSize: 64 / 32 - }); - function nextState() { - // Shortcuts - var X = this._X; - var C = this._C; + // Reference supertype + subtype.$super = this; + return subtype; + }, + /** + * Extends this object and runs the init method. + * Arguments to create() will be passed to init(). + * + * @return {Object} The new object. + * + * @static + * + * @example + * + * var instance = MyType.create(); + */ + create: function create() { + var instance = this.extend(); + instance.init.apply(instance, arguments); + return instance; + }, + /** + * Initializes a newly created object. + * Override this method to add some logic when your objects are created. + * + * @example + * + * var MyType = CryptoJS.lib.Base.extend({ + * init: function () { + * // ... + * } + * }); + */ + init: function init() {}, + /** + * Copies properties into this object. + * + * @param {Object} properties The properties to mix in. + * + * @example + * + * MyType.mixIn({ + * field: 'value' + * }); + */ + mixIn: function mixIn(properties) { + for (var propertyName in properties) { + if (properties.hasOwnProperty(propertyName)) { + this[propertyName] = properties[propertyName]; + } + } - // Save old counter values - for (var i = 0; i < 8; i++) { - C_[i] = C[i]; - } + // IE won't copy toString using the loop above + if (properties.hasOwnProperty('toString')) { + this.toString = properties.toString; + } + }, + /** + * Creates a copy of this object. + * + * @return {Object} The clone. + * + * @example + * + * var clone = instance.clone(); + */ + clone: function clone() { + return this.init.prototype.extend(this); + } + }; + }(); - // Calculate new counter values - C[0] = C[0] + 0x4d34d34d + this._b | 0; - C[1] = C[1] + 0xd34d34d3 + (C[0] >>> 0 < C_[0] >>> 0 ? 1 : 0) | 0; - C[2] = C[2] + 0x34d34d34 + (C[1] >>> 0 < C_[1] >>> 0 ? 1 : 0) | 0; - C[3] = C[3] + 0x4d34d34d + (C[2] >>> 0 < C_[2] >>> 0 ? 1 : 0) | 0; - C[4] = C[4] + 0xd34d34d3 + (C[3] >>> 0 < C_[3] >>> 0 ? 1 : 0) | 0; - C[5] = C[5] + 0x34d34d34 + (C[4] >>> 0 < C_[4] >>> 0 ? 1 : 0) | 0; - C[6] = C[6] + 0x4d34d34d + (C[5] >>> 0 < C_[5] >>> 0 ? 1 : 0) | 0; - C[7] = C[7] + 0xd34d34d3 + (C[6] >>> 0 < C_[6] >>> 0 ? 1 : 0) | 0; - this._b = C[7] >>> 0 < C_[7] >>> 0 ? 1 : 0; + /** + * An array of 32-bit words. + * + * @property {Array} words The array of 32-bit words. + * @property {number} sigBytes The number of significant bytes in this word array. + */ + var WordArray = C_lib.WordArray = Base.extend({ + /** + * Initializes a newly created word array. + * + * @param {Array} words (Optional) An array of 32-bit words. + * @param {number} sigBytes (Optional) The number of significant bytes in the words. + * + * @example + * + * var wordArray = CryptoJS.lib.WordArray.create(); + * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]); + * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6); + */ + init: function init(words, sigBytes) { + words = this.words = words || []; + if (sigBytes != undefined) { + this.sigBytes = sigBytes; + } else { + this.sigBytes = words.length * 4; + } + }, + /** + * Converts this word array to a string. + * + * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex + * + * @return {string} The stringified word array. + * + * @example + * + * var string = wordArray + ''; + * var string = wordArray.toString(); + * var string = wordArray.toString(CryptoJS.enc.Utf8); + */ + toString: function toString(encoder) { + return (encoder || Hex).stringify(this); + }, + /** + * Concatenates a word array to this word array. + * + * @param {WordArray} wordArray The word array to append. + * + * @return {WordArray} This word array. + * + * @example + * + * wordArray1.concat(wordArray2); + */ + concat: function concat(wordArray) { + // Shortcuts + var thisWords = this.words; + var thatWords = wordArray.words; + var thisSigBytes = this.sigBytes; + var thatSigBytes = wordArray.sigBytes; - // Calculate the g-values - for (var i = 0; i < 8; i++) { - var gx = X[i] + C[i]; + // Clamp excess bits + this.clamp(); - // Construct high and low argument for squaring - var ga = gx & 0xffff; - var gb = gx >>> 16; + // Concat + if (thisSigBytes % 4) { + // Copy one byte at a time + for (var i = 0; i < thatSigBytes; i++) { + var thatByte = thatWords[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; + thisWords[thisSigBytes + i >>> 2] |= thatByte << 24 - (thisSigBytes + i) % 4 * 8; + } + } else { + // Copy one word at a time + for (var j = 0; j < thatSigBytes; j += 4) { + thisWords[thisSigBytes + j >>> 2] = thatWords[j >>> 2]; + } + } + this.sigBytes += thatSigBytes; - // Calculate high and low result of squaring - var gh = ((ga * ga >>> 17) + ga * gb >>> 15) + gb * gb; - var gl = ((gx & 0xffff0000) * gx | 0) + ((gx & 0x0000ffff) * gx | 0); + // Chainable + return this; + }, + /** + * Removes insignificant bits. + * + * @example + * + * wordArray.clamp(); + */ + clamp: function clamp() { + // Shortcuts + var words = this.words; + var sigBytes = this.sigBytes; - // High XOR low - G[i] = gh ^ gl; + // Clamp + words[sigBytes >>> 2] &= 0xffffffff << 32 - sigBytes % 4 * 8; + words.length = Math.ceil(sigBytes / 4); + }, + /** + * Creates a copy of this word array. + * + * @return {WordArray} The clone. + * + * @example + * + * var clone = wordArray.clone(); + */ + clone: function clone() { + var clone = Base.clone.call(this); + clone.words = this.words.slice(0); + return clone; + }, + /** + * Creates a word array filled with random bytes. + * + * @param {number} nBytes The number of random bytes to generate. + * + * @return {WordArray} The random word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.lib.WordArray.random(16); + */ + random: function random(nBytes) { + var words = []; + for (var i = 0; i < nBytes; i += 4) { + words.push(cryptoSecureRandomInt()); + } + return new WordArray.init(words, nBytes); } + }); - // Calculate new state values - X[0] = G[0] + (G[7] << 16 | G[7] >>> 16) + (G[6] << 16 | G[6] >>> 16) | 0; - X[1] = G[1] + (G[0] << 8 | G[0] >>> 24) + G[7] | 0; - X[2] = G[2] + (G[1] << 16 | G[1] >>> 16) + (G[0] << 16 | G[0] >>> 16) | 0; - X[3] = G[3] + (G[2] << 8 | G[2] >>> 24) + G[1] | 0; - X[4] = G[4] + (G[3] << 16 | G[3] >>> 16) + (G[2] << 16 | G[2] >>> 16) | 0; - X[5] = G[5] + (G[4] << 8 | G[4] >>> 24) + G[3] | 0; - X[6] = G[6] + (G[5] << 16 | G[5] >>> 16) + (G[4] << 16 | G[4] >>> 16) | 0; - X[7] = G[7] + (G[6] << 8 | G[6] >>> 24) + G[5] | 0; - } + /** + * Encoder namespace. + */ + var C_enc = C.enc = {}; /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.Rabbit.encrypt(message, key, cfg); - * var plaintext = CryptoJS.Rabbit.decrypt(ciphertext, key, cfg); + * Hex encoding strategy. */ - C.Rabbit = StreamCipher._createHelper(Rabbit); - })(); - return CryptoJS.Rabbit; -}); + var Hex = C_enc.Hex = { + /** + * Converts a word array to a hex string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The hex string. + * + * @static + * + * @example + * + * var hexString = CryptoJS.enc.Hex.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; -/***/ }), + // Convert + var hexChars = []; + for (var i = 0; i < sigBytes; i++) { + var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; + hexChars.push((bite >>> 4).toString(16)); + hexChars.push((bite & 0x0f).toString(16)); + } + return hexChars.join(''); + }, + /** + * Converts a hex string to a word array. + * + * @param {string} hexStr The hex string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Hex.parse(hexString); + */ + parse: function parse(hexStr) { + // Shortcut + var hexStrLength = hexStr.length; -/***/ 7043: -/***/ (function(__unused_webpack_module, exports) { + // Convert + var words = []; + for (var i = 0; i < hexStrLength; i += 2) { + words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << 24 - i % 8 * 4; + } + return new WordArray.init(words, hexStrLength / 2); + } + }; -/* Copyright 2013 Google Inc. All Rights Reserved. + /** + * Latin1 encoding strategy. + */ + var Latin1 = C_enc.Latin1 = { + /** + * Converts a word array to a Latin1 string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The Latin1 string. + * + * @static + * + * @example + * + * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; - 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 + // Convert + var latin1Chars = []; + for (var i = 0; i < sigBytes; i++) { + var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; + latin1Chars.push(String.fromCharCode(bite)); + } + return latin1Chars.join(''); + }, + /** + * Converts a Latin1 string to a word array. + * + * @param {string} latin1Str The Latin1 string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Latin1.parse(latin1String); + */ + parse: function parse(latin1Str) { + // Shortcut + var latin1StrLength = latin1Str.length; - http://www.apache.org/licenses/LICENSE-2.0 + // Convert + var words = []; + for (var i = 0; i < latin1StrLength; i++) { + words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << 24 - i % 4 * 8; + } + return new WordArray.init(words, latin1StrLength); + } + }; - 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. + /** + * UTF-8 encoding strategy. + */ + var Utf8 = C_enc.Utf8 = { + /** + * Converts a word array to a UTF-8 string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The UTF-8 string. + * + * @static + * + * @example + * + * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + try { + return decodeURIComponent(escape(Latin1.stringify(wordArray))); + } catch (e) { + throw new Error('Malformed UTF-8 data'); + } + }, + /** + * Converts a UTF-8 string to a word array. + * + * @param {string} utf8Str The UTF-8 string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Utf8.parse(utf8String); + */ + parse: function parse(utf8Str) { + return Latin1.parse(unescape(encodeURIComponent(utf8Str))); + } + }; - Lookup table to map the previous two bytes to a context id. + /** + * Abstract buffered block algorithm template. + * + * The property blockSize must be implemented in a concrete subtype. + * + * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0 + */ + var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({ + /** + * Resets this block algorithm's data buffer to its initial state. + * + * @example + * + * bufferedBlockAlgorithm.reset(); + */ + reset: function reset() { + // Initial values + this._data = new WordArray.init(); + this._nDataBytes = 0; + }, + /** + * Adds new data to this block algorithm's buffer. + * + * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8. + * + * @example + * + * bufferedBlockAlgorithm._append('data'); + * bufferedBlockAlgorithm._append(wordArray); + */ + _append: function _append(data) { + // Convert string to WordArray, else assume WordArray already + if (typeof data == 'string') { + data = Utf8.parse(data); + } - There are four different context modeling modes defined here: - CONTEXT_LSB6: context id is the least significant 6 bits of the last byte, - CONTEXT_MSB6: context id is the most significant 6 bits of the last byte, - CONTEXT_UTF8: second-order context model tuned for UTF8-encoded text, - CONTEXT_SIGNED: second-order context model tuned for signed integers. + // Append + this._data.concat(data); + this._nDataBytes += data.sigBytes; + }, + /** + * Processes available data blocks. + * + * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype. + * + * @param {boolean} doFlush Whether all blocks and partial blocks should be processed. + * + * @return {WordArray} The processed data. + * + * @example + * + * var processedData = bufferedBlockAlgorithm._process(); + * var processedData = bufferedBlockAlgorithm._process(!!'flush'); + */ + _process: function _process(doFlush) { + var processedWords; - The context id for the UTF8 context model is calculated as follows. If p1 - and p2 are the previous two bytes, we calcualte the context as + // Shortcuts + var data = this._data; + var dataWords = data.words; + var dataSigBytes = data.sigBytes; + var blockSize = this.blockSize; + var blockSizeBytes = blockSize * 4; - context = kContextLookup[p1] | kContextLookup[p2 + 256]. + // Count blocks ready + var nBlocksReady = dataSigBytes / blockSizeBytes; + if (doFlush) { + // Round up to include partial blocks + nBlocksReady = Math.ceil(nBlocksReady); + } else { + // Round down to include only full blocks, + // less the number of blocks that must remain in the buffer + nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0); + } - If the previous two bytes are ASCII characters (i.e. < 128), this will be - equivalent to + // Count words ready + var nWordsReady = nBlocksReady * blockSize; - context = 4 * context1(p1) + context2(p2), + // Count bytes ready + var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes); - where context1 is based on the previous byte in the following way: - - 0 : non-ASCII control - 1 : \t, \n, \r - 2 : space - 3 : other punctuation - 4 : " ' - 5 : % - 6 : ( < [ { - 7 : ) > ] } - 8 : , ; : - 9 : . - 10 : = - 11 : number - 12 : upper-case vowel - 13 : upper-case consonant - 14 : lower-case vowel - 15 : lower-case consonant - - and context2 is based on the second last byte: - - 0 : control, space - 1 : punctuation - 2 : upper-case letter, number - 3 : lower-case letter - - If the last byte is ASCII, and the second last byte is not (in a valid UTF8 - stream it will be a continuation byte, value between 128 and 191), the - context is the same as if the second last byte was an ASCII control or space. - - If the last byte is a UTF8 lead byte (value >= 192), then the next byte will - be a continuation byte and the context id is 2 or 3 depending on the LSB of - the last byte and to a lesser extent on the second last byte if it is ASCII. - - If the last byte is a UTF8 continuation byte, the second last byte can be: - - continuation byte: the next byte is probably ASCII or lead byte (assuming - 4-byte UTF8 characters are rare) and the context id is 0 or 1. - - lead byte (192 - 207): next byte is ASCII or lead byte, context is 0 or 1 - - lead byte (208 - 255): next byte is continuation byte, context is 2 or 3 - - The possible value combinations of the previous two bytes, the range of - context ids and the type of the next byte is summarized in the table below: - - |--------\-----------------------------------------------------------------| - | \ Last byte | - | Second \---------------------------------------------------------------| - | last byte \ ASCII | cont. byte | lead byte | - | \ (0-127) | (128-191) | (192-) | - |=============|===================|=====================|==================| - | ASCII | next: ASCII/lead | not valid | next: cont. | - | (0-127) | context: 4 - 63 | | context: 2 - 3 | - |-------------|-------------------|---------------------|------------------| - | cont. byte | next: ASCII/lead | next: ASCII/lead | next: cont. | - | (128-191) | context: 4 - 63 | context: 0 - 1 | context: 2 - 3 | - |-------------|-------------------|---------------------|------------------| - | lead byte | not valid | next: ASCII/lead | not valid | - | (192-207) | | context: 0 - 1 | | - |-------------|-------------------|---------------------|------------------| - | lead byte | not valid | next: cont. | not valid | - | (208-) | | context: 2 - 3 | | - |-------------|-------------------|---------------------|------------------| + // Process blocks + if (nWordsReady) { + for (var offset = 0; offset < nWordsReady; offset += blockSize) { + // Perform concrete-algorithm logic + this._doProcessBlock(dataWords, offset); + } - The context id for the signed context mode is calculated as: + // Remove processed words + processedWords = dataWords.splice(0, nWordsReady); + data.sigBytes -= nBytesReady; + } - context = (kContextLookup[512 + p1] << 3) | kContextLookup[512 + p2]. + // Return processed words + return new WordArray.init(processedWords, nBytesReady); + }, + /** + * Creates a copy of this object. + * + * @return {Object} The clone. + * + * @example + * + * var clone = bufferedBlockAlgorithm.clone(); + */ + clone: function clone() { + var clone = Base.clone.call(this); + clone._data = this._data.clone(); + return clone; + }, + _minBufferSize: 0 + }); - For any context modeling modes, the context ids can be calculated by |-ing - together two lookups from one table using context model dependent offsets: + /** + * Abstract hasher template. + * + * @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits) + */ + var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({ + /** + * Configuration options. + */ + cfg: Base.extend(), + /** + * Initializes a newly created hasher. + * + * @param {Object} cfg (Optional) The configuration options to use for this hash computation. + * + * @example + * + * var hasher = CryptoJS.algo.SHA256.create(); + */ + init: function init(cfg) { + // Apply config defaults + this.cfg = this.cfg.extend(cfg); - context = kContextLookup[offset1 + p1] | kContextLookup[offset2 + p2]. + // Set initial values + this.reset(); + }, + /** + * Resets this hasher to its initial state. + * + * @example + * + * hasher.reset(); + */ + reset: function reset() { + // Reset data buffer + BufferedBlockAlgorithm.reset.call(this); - where offset1 and offset2 are dependent on the context mode. -*/ + // Perform concrete-hasher logic + this._doReset(); + }, + /** + * Updates this hasher with a message. + * + * @param {WordArray|string} messageUpdate The message to append. + * + * @return {Hasher} This hasher. + * + * @example + * + * hasher.update('message'); + * hasher.update(wordArray); + */ + update: function update(messageUpdate) { + // Append + this._append(messageUpdate); -var CONTEXT_LSB6 = 0; -var CONTEXT_MSB6 = 1; -var CONTEXT_UTF8 = 2; -var CONTEXT_SIGNED = 3; + // Update the hash + this._process(); -/* Common context lookup table for all context modes. */ -exports.lookup = new Uint8Array([ - /* CONTEXT_UTF8, last byte. */ - /* ASCII range. */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 8, 12, 16, 12, 12, 20, 12, 16, 24, 28, 12, 12, 32, 12, 36, 12, - 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 32, 32, 24, 40, 28, 12, - 12, 48, 52, 52, 52, 48, 52, 52, 52, 48, 52, 52, 52, 52, 52, 48, - 52, 52, 52, 52, 52, 48, 52, 52, 52, 52, 52, 24, 12, 28, 12, 12, - 12, 56, 60, 60, 60, 56, 60, 60, 60, 56, 60, 60, 60, 60, 60, 56, - 60, 60, 60, 60, 60, 56, 60, 60, 60, 60, 60, 24, 12, 28, 12, 0, - /* UTF8 continuation byte range. */ - 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, - 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, - 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, - 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, - /* UTF8 lead byte range. */ - 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, - 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, - 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, - 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, - /* CONTEXT_UTF8 second last byte. */ - /* ASCII range. */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, - 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, - 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0, - /* UTF8 continuation byte range. */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - /* UTF8 lead byte range. */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - /* CONTEXT_SIGNED, second last byte. */ - 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, - 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, - /* CONTEXT_SIGNED, last byte, same as the above values shifted by 3 bits. */ - 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, - 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, - 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, - 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 56, - /* CONTEXT_LSB6, last byte. */ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - /* CONTEXT_MSB6, last byte. */ - 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, - 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, - 8, 8, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, - 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, - 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, - 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, - 24, 24, 24, 24, 25, 25, 25, 25, 26, 26, 26, 26, 27, 27, 27, 27, - 28, 28, 28, 28, 29, 29, 29, 29, 30, 30, 30, 30, 31, 31, 31, 31, - 32, 32, 32, 32, 33, 33, 33, 33, 34, 34, 34, 34, 35, 35, 35, 35, - 36, 36, 36, 36, 37, 37, 37, 37, 38, 38, 38, 38, 39, 39, 39, 39, - 40, 40, 40, 40, 41, 41, 41, 41, 42, 42, 42, 42, 43, 43, 43, 43, - 44, 44, 44, 44, 45, 45, 45, 45, 46, 46, 46, 46, 47, 47, 47, 47, - 48, 48, 48, 48, 49, 49, 49, 49, 50, 50, 50, 50, 51, 51, 51, 51, - 52, 52, 52, 52, 53, 53, 53, 53, 54, 54, 54, 54, 55, 55, 55, 55, - 56, 56, 56, 56, 57, 57, 57, 57, 58, 58, 58, 58, 59, 59, 59, 59, - 60, 60, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 63, 63, 63, 63, - /* CONTEXT_{M,L}SB6, second last byte, */ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -]); + // Chainable + return this; + }, + /** + * Finalizes the hash computation. + * Note that the finalize operation is effectively a destructive, read-once operation. + * + * @param {WordArray|string} messageUpdate (Optional) A final message update. + * + * @return {WordArray} The hash. + * + * @example + * + * var hash = hasher.finalize(); + * var hash = hasher.finalize('message'); + * var hash = hasher.finalize(wordArray); + */ + finalize: function finalize(messageUpdate) { + // Final message update + if (messageUpdate) { + this._append(messageUpdate); + } -exports.lookupOffsets = new Uint16Array([ - /* CONTEXT_LSB6 */ - 1024, 1536, - /* CONTEXT_MSB6 */ - 1280, 1536, - /* CONTEXT_UTF8 */ - 0, 256, - /* CONTEXT_SIGNED */ - 768, 512, -]); + // Perform concrete-hasher logic + var hash = this._doFinalize(); + return hash; + }, + blockSize: 512 / 32, + /** + * Creates a shortcut function to a hasher's object interface. + * + * @param {Hasher} hasher The hasher to create a helper for. + * + * @return {Function} The shortcut function. + * + * @static + * + * @example + * + * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256); + */ + _createHelper: function _createHelper(hasher) { + return function (message, cfg) { + return new hasher.init(cfg).finalize(message); + }; + }, + /** + * Creates a shortcut function to the HMAC's object interface. + * + * @param {Hasher} hasher The hasher to use in this HMAC helper. + * + * @return {Function} The shortcut function. + * + * @static + * + * @example + * + * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256); + */ + _createHmacHelper: function _createHmacHelper(hasher) { + return function (message, key) { + return new C_algo.HMAC.init(hasher, key).finalize(message); + }; + } + }); + /** + * Algorithm namespace. + */ + var C_algo = C.algo = {}; + return C; + }(Math); + return CryptoJS; +}); /***/ }), -/***/ 7051: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 66947: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -var callBind = __webpack_require__(26601); -var define = __webpack_require__(77802); +__webpack_require__(94845); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var C_enc = C.enc; -var implementation = __webpack_require__(82621); -var getPolyfill = __webpack_require__(61320); -var shim = __webpack_require__(35074); + /** + * Base64 encoding strategy. + */ + var Base64 = C_enc.Base64 = { + /** + * Converts a word array to a Base64 string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The Base64 string. + * + * @static + * + * @example + * + * var base64String = CryptoJS.enc.Base64.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; + var map = this._map; -var polyfill = callBind(getPolyfill(), Number); + // Clamp excess bits + wordArray.clamp(); -/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */ + // Convert + var base64Chars = []; + for (var i = 0; i < sigBytes; i += 3) { + var byte1 = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; + var byte2 = words[i + 1 >>> 2] >>> 24 - (i + 1) % 4 * 8 & 0xff; + var byte3 = words[i + 2 >>> 2] >>> 24 - (i + 2) % 4 * 8 & 0xff; + var triplet = byte1 << 16 | byte2 << 8 | byte3; + for (var j = 0; j < 4 && i + j * 0.75 < sigBytes; j++) { + base64Chars.push(map.charAt(triplet >>> 6 * (3 - j) & 0x3f)); + } + } -define(polyfill, { - getPolyfill: getPolyfill, - implementation: implementation, - shim: shim -}); + // Add padding + var paddingChar = map.charAt(64); + if (paddingChar) { + while (base64Chars.length % 4) { + base64Chars.push(paddingChar); + } + } + return base64Chars.join(''); + }, + /** + * Converts a Base64 string to a word array. + * + * @param {string} base64Str The Base64 string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Base64.parse(base64String); + */ + parse: function parse(base64Str) { + // Shortcuts + var base64StrLength = base64Str.length; + var map = this._map; + var reverseMap = this._reverseMap; + if (!reverseMap) { + reverseMap = this._reverseMap = []; + for (var j = 0; j < map.length; j++) { + reverseMap[map.charCodeAt(j)] = j; + } + } -module.exports = polyfill; + // Ignore padding + var paddingChar = map.charAt(64); + if (paddingChar) { + var paddingIndex = base64Str.indexOf(paddingChar); + if (paddingIndex !== -1) { + base64StrLength = paddingIndex; + } + } + // Convert + return parseLoop(base64Str, base64StrLength, reverseMap); + }, + _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=' + }; + function parseLoop(base64Str, base64StrLength, reverseMap) { + var words = []; + var nBytes = 0; + for (var i = 0; i < base64StrLength; i++) { + if (i % 4) { + var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << i % 4 * 2; + var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> 6 - i % 4 * 2; + var bitsCombined = bits1 | bits2; + words[nBytes >>> 2] |= bitsCombined << 24 - nBytes % 4 * 8; + nBytes++; + } + } + return WordArray.create(words, nBytes); + } + })(); + return CryptoJS.enc.Base64; +}); /***/ }), -/***/ 7081: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(15567); -var hasOwn = __webpack_require__(20340); +/***/ 16190: +/***/ (function(module, exports, __webpack_require__) { -var FunctionPrototype = Function.prototype; -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe -var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor; +"use strict"; -var EXISTS = hasOwn(FunctionPrototype, 'name'); -// additional protection from minified / mangled / dropped function names -var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something'; -var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable)); -module.exports = { - EXISTS: EXISTS, - PROPER: PROPER, - CONFIGURABLE: CONFIGURABLE -}; - - -/***/ }), - -/***/ 7187: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +__webpack_require__(94845); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var C_enc = C.enc; -/* provided dependency */ var process = __webpack_require__(9964); -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. + /** + * Base64url encoding strategy. + */ + var Base64url = C_enc.Base64url = { + /** + * Converts a word array to a Base64url string. + * + * @param {WordArray} wordArray The word array. + * + * @param {boolean} urlSafe Whether to use url safe + * + * @return {string} The Base64url string. + * + * @static + * + * @example + * + * var base64String = CryptoJS.enc.Base64url.stringify(wordArray); + */ + stringify: function stringify(wordArray, urlSafe) { + if (urlSafe === undefined) { + urlSafe = true; + } + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; + var map = urlSafe ? this._safe_map : this._map; -var getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || - function getOwnPropertyDescriptors(obj) { - var keys = Object.keys(obj); - var descriptors = {}; - for (var i = 0; i < keys.length; i++) { - descriptors[keys[i]] = Object.getOwnPropertyDescriptor(obj, keys[i]); - } - return descriptors; - }; + // Clamp excess bits + wordArray.clamp(); -var formatRegExp = /%[sdj%]/g; -exports.format = function(f) { - if (!isString(f)) { - var objects = []; - for (var i = 0; i < arguments.length; i++) { - objects.push(inspect(arguments[i])); - } - return objects.join(' '); - } + // Convert + var base64Chars = []; + for (var i = 0; i < sigBytes; i += 3) { + var byte1 = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; + var byte2 = words[i + 1 >>> 2] >>> 24 - (i + 1) % 4 * 8 & 0xff; + var byte3 = words[i + 2 >>> 2] >>> 24 - (i + 2) % 4 * 8 & 0xff; + var triplet = byte1 << 16 | byte2 << 8 | byte3; + for (var j = 0; j < 4 && i + j * 0.75 < sigBytes; j++) { + base64Chars.push(map.charAt(triplet >>> 6 * (3 - j) & 0x3f)); + } + } - var i = 1; - var args = arguments; - var len = args.length; - var str = String(f).replace(formatRegExp, function(x) { - if (x === '%%') return '%'; - if (i >= len) return x; - switch (x) { - case '%s': return String(args[i++]); - case '%d': return Number(args[i++]); - case '%j': - try { - return JSON.stringify(args[i++]); - } catch (_) { - return '[Circular]'; + // Add padding + var paddingChar = map.charAt(64); + if (paddingChar) { + while (base64Chars.length % 4) { + base64Chars.push(paddingChar); + } + } + return base64Chars.join(''); + }, + /** + * Converts a Base64url string to a word array. + * + * @param {string} base64Str The Base64url string. + * + * @param {boolean} urlSafe Whether to use url safe + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Base64url.parse(base64String); + */ + parse: function parse(base64Str, urlSafe) { + if (urlSafe === undefined) { + urlSafe = true; } - default: - return x; - } - }); - for (var x = args[i]; i < len; x = args[++i]) { - if (isNull(x) || !isObject(x)) { - str += ' ' + x; - } else { - str += ' ' + inspect(x); - } - } - return str; -}; + // Shortcuts + var base64StrLength = base64Str.length; + var map = urlSafe ? this._safe_map : this._map; + var reverseMap = this._reverseMap; + if (!reverseMap) { + reverseMap = this._reverseMap = []; + for (var j = 0; j < map.length; j++) { + reverseMap[map.charCodeAt(j)] = j; + } + } -// Mark that a method should not be used. -// Returns a modified function which warns once by default. -// If --no-deprecation is set, then it is a no-op. -exports.deprecate = function(fn, msg) { - if (typeof process !== 'undefined' && process.noDeprecation === true) { - return fn; - } + // Ignore padding + var paddingChar = map.charAt(64); + if (paddingChar) { + var paddingIndex = base64Str.indexOf(paddingChar); + if (paddingIndex !== -1) { + base64StrLength = paddingIndex; + } + } - // Allow for deprecating things in the process of starting up. - if (typeof process === 'undefined') { - return function() { - return exports.deprecate(fn, msg).apply(this, arguments); + // Convert + return parseLoop(base64Str, base64StrLength, reverseMap); + }, + _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=', + _safe_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_' }; - } - - var warned = false; - function deprecated() { - if (!warned) { - if (process.throwDeprecation) { - throw new Error(msg); - } else if (process.traceDeprecation) { - console.trace(msg); - } else { - console.error(msg); + function parseLoop(base64Str, base64StrLength, reverseMap) { + var words = []; + var nBytes = 0; + for (var i = 0; i < base64StrLength; i++) { + if (i % 4) { + var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << i % 4 * 2; + var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> 6 - i % 4 * 2; + var bitsCombined = bits1 | bits2; + words[nBytes >>> 2] |= bitsCombined << 24 - nBytes % 4 * 8; + nBytes++; + } } - warned = true; - } - return fn.apply(this, arguments); - } - - return deprecated; -}; - - -var debugs = {}; -var debugEnvRegex = /^$/; - -if (process.env.NODE_DEBUG) { - var debugEnv = process.env.NODE_DEBUG; - debugEnv = debugEnv.replace(/[|\\{}()[\]^$+?.]/g, '\\$&') - .replace(/\*/g, '.*') - .replace(/,/g, '$|^') - .toUpperCase(); - debugEnvRegex = new RegExp('^' + debugEnv + '$', 'i'); -} -exports.debuglog = function(set) { - set = set.toUpperCase(); - if (!debugs[set]) { - if (debugEnvRegex.test(set)) { - var pid = process.pid; - debugs[set] = function() { - var msg = exports.format.apply(exports, arguments); - console.error('%s %d: %s', set, pid, msg); - }; - } else { - debugs[set] = function() {}; + return WordArray.create(words, nBytes); } - } - return debugs[set]; -}; - - -/** - * Echos the value of a value. Trys to print the value out - * in the best way possible given the different types. - * - * @param {Object} obj The object to print out. - * @param {Object} opts Optional options object that alters the output. - */ -/* legacy: obj, showHidden, depth, colors*/ -function inspect(obj, opts) { - // default options - var ctx = { - seen: [], - stylize: stylizeNoColor - }; - // legacy... - if (arguments.length >= 3) ctx.depth = arguments[2]; - if (arguments.length >= 4) ctx.colors = arguments[3]; - if (isBoolean(opts)) { - // legacy... - ctx.showHidden = opts; - } else if (opts) { - // got an "options" object - exports._extend(ctx, opts); - } - // set default options - if (isUndefined(ctx.showHidden)) ctx.showHidden = false; - if (isUndefined(ctx.depth)) ctx.depth = 2; - if (isUndefined(ctx.colors)) ctx.colors = false; - if (isUndefined(ctx.customInspect)) ctx.customInspect = true; - if (ctx.colors) ctx.stylize = stylizeWithColor; - return formatValue(ctx, obj, ctx.depth); -} -exports.inspect = inspect; - - -// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics -inspect.colors = { - 'bold' : [1, 22], - 'italic' : [3, 23], - 'underline' : [4, 24], - 'inverse' : [7, 27], - 'white' : [37, 39], - 'grey' : [90, 39], - 'black' : [30, 39], - 'blue' : [34, 39], - 'cyan' : [36, 39], - 'green' : [32, 39], - 'magenta' : [35, 39], - 'red' : [31, 39], - 'yellow' : [33, 39] -}; - -// Don't use 'blue' not visible on cmd.exe -inspect.styles = { - 'special': 'cyan', - 'number': 'yellow', - 'boolean': 'yellow', - 'undefined': 'grey', - 'null': 'bold', - 'string': 'green', - 'date': 'magenta', - // "name": intentionally not styling - 'regexp': 'red' -}; + })(); + return CryptoJS.enc.Base64url; +}); +/***/ }), -function stylizeWithColor(str, styleType) { - var style = inspect.styles[styleType]; +/***/ 2256: +/***/ (function(module, exports, __webpack_require__) { - if (style) { - return '\u001b[' + inspect.colors[style][0] + 'm' + str + - '\u001b[' + inspect.colors[style][1] + 'm'; - } else { - return str; - } -} +"use strict"; -function stylizeNoColor(str, styleType) { - return str; -} +__webpack_require__(94845); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var C_enc = C.enc; + /** + * UTF-16 BE encoding strategy. + */ + var Utf16BE = C_enc.Utf16 = C_enc.Utf16BE = { + /** + * Converts a word array to a UTF-16 BE string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The UTF-16 BE string. + * + * @static + * + * @example + * + * var utf16String = CryptoJS.enc.Utf16.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; -function arrayToHash(array) { - var hash = {}; + // Convert + var utf16Chars = []; + for (var i = 0; i < sigBytes; i += 2) { + var codePoint = words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff; + utf16Chars.push(String.fromCharCode(codePoint)); + } + return utf16Chars.join(''); + }, + /** + * Converts a UTF-16 BE string to a word array. + * + * @param {string} utf16Str The UTF-16 BE string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Utf16.parse(utf16String); + */ + parse: function parse(utf16Str) { + // Shortcut + var utf16StrLength = utf16Str.length; - array.forEach(function(val, idx) { - hash[val] = true; - }); + // Convert + var words = []; + for (var i = 0; i < utf16StrLength; i++) { + words[i >>> 1] |= utf16Str.charCodeAt(i) << 16 - i % 2 * 16; + } + return WordArray.create(words, utf16StrLength * 2); + } + }; - return hash; -} + /** + * UTF-16 LE encoding strategy. + */ + C_enc.Utf16LE = { + /** + * Converts a word array to a UTF-16 LE string. + * + * @param {WordArray} wordArray The word array. + * + * @return {string} The UTF-16 LE string. + * + * @static + * + * @example + * + * var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray); + */ + stringify: function stringify(wordArray) { + // Shortcuts + var words = wordArray.words; + var sigBytes = wordArray.sigBytes; + // Convert + var utf16Chars = []; + for (var i = 0; i < sigBytes; i += 2) { + var codePoint = swapEndian(words[i >>> 2] >>> 16 - i % 4 * 8 & 0xffff); + utf16Chars.push(String.fromCharCode(codePoint)); + } + return utf16Chars.join(''); + }, + /** + * Converts a UTF-16 LE string to a word array. + * + * @param {string} utf16Str The UTF-16 LE string. + * + * @return {WordArray} The word array. + * + * @static + * + * @example + * + * var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str); + */ + parse: function parse(utf16Str) { + // Shortcut + var utf16StrLength = utf16Str.length; -function formatValue(ctx, value, recurseTimes) { - // Provide a hook for user-specified inspect functions. - // Check that value is an object with an inspect function on it - if (ctx.customInspect && - value && - isFunction(value.inspect) && - // Filter out the util module, it's inspect function is special - value.inspect !== exports.inspect && - // Also filter out any prototype objects using the circular check. - !(value.constructor && value.constructor.prototype === value)) { - var ret = value.inspect(recurseTimes, ctx); - if (!isString(ret)) { - ret = formatValue(ctx, ret, recurseTimes); + // Convert + var words = []; + for (var i = 0; i < utf16StrLength; i++) { + words[i >>> 1] |= swapEndian(utf16Str.charCodeAt(i) << 16 - i % 2 * 16); + } + return WordArray.create(words, utf16StrLength * 2); + } + }; + function swapEndian(word) { + return word << 8 & 0xff00ff00 | word >>> 8 & 0x00ff00ff; } - return ret; - } + })(); + return CryptoJS.enc.Utf16; +}); - // Primitive types cannot have properties - var primitive = formatPrimitive(ctx, value); - if (primitive) { - return primitive; - } +/***/ }), - // Look up the keys of the object. - var keys = Object.keys(value); - var visibleKeys = arrayToHash(keys); +/***/ 82747: +/***/ (function(module, exports, __webpack_require__) { - if (ctx.showHidden) { - keys = Object.getOwnPropertyNames(value); - } +"use strict"; - // IE doesn't make error fields non-enumerable - // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx - if (isError(value) - && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) { - return formatError(value); - } - // Some type of object without properties can be shortcutted. - if (keys.length === 0) { - if (isFunction(value)) { - var name = value.name ? ': ' + value.name : ''; - return ctx.stylize('[Function' + name + ']', 'special'); - } - if (isRegExp(value)) { - return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); - } - if (isDate(value)) { - return ctx.stylize(Date.prototype.toString.call(value), 'date'); - } - if (isError(value)) { - return formatError(value); - } - } +__webpack_require__(39081); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(37146), __webpack_require__(4420)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Base = C_lib.Base; + var WordArray = C_lib.WordArray; + var C_algo = C.algo; + var MD5 = C_algo.MD5; - var base = '', array = false, braces = ['{', '}']; + /** + * This key derivation function is meant to conform with EVP_BytesToKey. + * www.openssl.org/docs/crypto/EVP_BytesToKey.html + */ + var EvpKDF = C_algo.EvpKDF = Base.extend({ + /** + * Configuration options. + * + * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) + * @property {Hasher} hasher The hash algorithm to use. Default: MD5 + * @property {number} iterations The number of iterations to perform. Default: 1 + */ + cfg: Base.extend({ + keySize: 128 / 32, + hasher: MD5, + iterations: 1 + }), + /** + * Initializes a newly created key derivation function. + * + * @param {Object} cfg (Optional) The configuration options to use for the derivation. + * + * @example + * + * var kdf = CryptoJS.algo.EvpKDF.create(); + * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8 }); + * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8, iterations: 1000 }); + */ + init: function init(cfg) { + this.cfg = this.cfg.extend(cfg); + }, + /** + * Derives a key from a password. + * + * @param {WordArray|string} password The password. + * @param {WordArray|string} salt A salt. + * + * @return {WordArray} The derived key. + * + * @example + * + * var key = kdf.compute(password, salt); + */ + compute: function compute(password, salt) { + var block; - // Make Array say that they are Array - if (isArray(value)) { - array = true; - braces = ['[', ']']; - } + // Shortcut + var cfg = this.cfg; - // Make functions say that they are functions - if (isFunction(value)) { - var n = value.name ? ': ' + value.name : ''; - base = ' [Function' + n + ']'; - } + // Init hasher + var hasher = cfg.hasher.create(); - // Make RegExps say that they are RegExps - if (isRegExp(value)) { - base = ' ' + RegExp.prototype.toString.call(value); - } + // Initial values + var derivedKey = WordArray.create(); - // Make dates with properties first say the date - if (isDate(value)) { - base = ' ' + Date.prototype.toUTCString.call(value); - } + // Shortcuts + var derivedKeyWords = derivedKey.words; + var keySize = cfg.keySize; + var iterations = cfg.iterations; - // Make error with message first say the error - if (isError(value)) { - base = ' ' + formatError(value); - } + // Generate key + while (derivedKeyWords.length < keySize) { + if (block) { + hasher.update(block); + } + block = hasher.update(password).finalize(salt); + hasher.reset(); - if (keys.length === 0 && (!array || value.length == 0)) { - return braces[0] + base + braces[1]; - } + // Iterations + for (var i = 1; i < iterations; i++) { + block = hasher.finalize(block); + hasher.reset(); + } + derivedKey.concat(block); + } + derivedKey.sigBytes = keySize * 4; + return derivedKey; + } + }); - if (recurseTimes < 0) { - if (isRegExp(value)) { - return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp'); - } else { - return ctx.stylize('[Object]', 'special'); - } - } + /** + * Derives a key from a password. + * + * @param {WordArray|string} password The password. + * @param {WordArray|string} salt A salt. + * @param {Object} cfg (Optional) The configuration options to use for this computation. + * + * @return {WordArray} The derived key. + * + * @static + * + * @example + * + * var key = CryptoJS.EvpKDF(password, salt); + * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8 }); + * var key = CryptoJS.EvpKDF(password, salt, { keySize: 8, iterations: 1000 }); + */ + C.EvpKDF = function (password, salt, cfg) { + return EvpKDF.create(cfg).compute(password, salt); + }; + })(); + return CryptoJS.EvpKDF; +}); - ctx.seen.push(value); +/***/ }), - var output; - if (array) { - output = formatArray(ctx, value, recurseTimes, visibleKeys, keys); - } else { - output = keys.map(function(key) { - return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array); - }); - } +/***/ 73948: +/***/ (function(module, exports, __webpack_require__) { - ctx.seen.pop(); +"use strict"; - return reduceToSingleString(output, base, braces); -} +__webpack_require__(14032); +__webpack_require__(57114); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function (undefined) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var CipherParams = C_lib.CipherParams; + var C_enc = C.enc; + var Hex = C_enc.Hex; + var C_format = C.format; + var HexFormatter = C_format.Hex = { + /** + * Converts the ciphertext of a cipher params object to a hexadecimally encoded string. + * + * @param {CipherParams} cipherParams The cipher params object. + * + * @return {string} The hexadecimally encoded string. + * + * @static + * + * @example + * + * var hexString = CryptoJS.format.Hex.stringify(cipherParams); + */ + stringify: function stringify(cipherParams) { + return cipherParams.ciphertext.toString(Hex); + }, + /** + * Converts a hexadecimally encoded ciphertext string to a cipher params object. + * + * @param {string} input The hexadecimally encoded string. + * + * @return {CipherParams} The cipher params object. + * + * @static + * + * @example + * + * var cipherParams = CryptoJS.format.Hex.parse(hexString); + */ + parse: function parse(input) { + var ciphertext = Hex.parse(input); + return CipherParams.create({ + ciphertext: ciphertext + }); + } + }; + })(); + return CryptoJS.format.Hex; +}); -function formatPrimitive(ctx, value) { - if (isUndefined(value)) - return ctx.stylize('undefined', 'undefined'); - if (isString(value)) { - var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') - .replace(/'/g, "\\'") - .replace(/\\"/g, '"') + '\''; - return ctx.stylize(simple, 'string'); - } - if (isNumber(value)) - return ctx.stylize('' + value, 'number'); - if (isBoolean(value)) - return ctx.stylize('' + value, 'boolean'); - // For some reason typeof null is "object", so special case here. - if (isNull(value)) - return ctx.stylize('null', 'null'); -} +/***/ }), +/***/ 4420: +/***/ (function(module, exports, __webpack_require__) { -function formatError(value) { - return '[' + Error.prototype.toString.call(value) + ']'; -} +"use strict"; -function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { - var output = []; - for (var i = 0, l = value.length; i < l; ++i) { - if (hasOwnProperty(value, String(i))) { - output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, - String(i), true)); - } else { - output.push(''); - } - } - keys.forEach(function(key) { - if (!key.match(/^\d+$/)) { - output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, - key, true)); - } - }); - return output; -} +__webpack_require__(39081); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Base = C_lib.Base; + var C_enc = C.enc; + var Utf8 = C_enc.Utf8; + var C_algo = C.algo; + /** + * HMAC algorithm. + */ + var HMAC = C_algo.HMAC = Base.extend({ + /** + * Initializes a newly created HMAC. + * + * @param {Hasher} hasher The hash algorithm to use. + * @param {WordArray|string} key The secret key. + * + * @example + * + * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key); + */ + init: function init(hasher, key) { + // Init hasher + hasher = this._hasher = new hasher.init(); -function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { - var name, str, desc; - desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] }; - if (desc.get) { - if (desc.set) { - str = ctx.stylize('[Getter/Setter]', 'special'); - } else { - str = ctx.stylize('[Getter]', 'special'); - } - } else { - if (desc.set) { - str = ctx.stylize('[Setter]', 'special'); - } - } - if (!hasOwnProperty(visibleKeys, key)) { - name = '[' + key + ']'; - } - if (!str) { - if (ctx.seen.indexOf(desc.value) < 0) { - if (isNull(recurseTimes)) { - str = formatValue(ctx, desc.value, null); - } else { - str = formatValue(ctx, desc.value, recurseTimes - 1); - } - if (str.indexOf('\n') > -1) { - if (array) { - str = str.split('\n').map(function(line) { - return ' ' + line; - }).join('\n').slice(2); - } else { - str = '\n' + str.split('\n').map(function(line) { - return ' ' + line; - }).join('\n'); + // Convert string to WordArray, else assume WordArray already + if (typeof key == 'string') { + key = Utf8.parse(key); } - } - } else { - str = ctx.stylize('[Circular]', 'special'); - } - } - if (isUndefined(name)) { - if (array && key.match(/^\d+$/)) { - return str; - } - name = JSON.stringify('' + key); - if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { - name = name.slice(1, -1); - name = ctx.stylize(name, 'name'); - } else { - name = name.replace(/'/g, "\\'") - .replace(/\\"/g, '"') - .replace(/(^"|"$)/g, "'"); - name = ctx.stylize(name, 'string'); - } - } - return name + ': ' + str; -} + // Shortcuts + var hasherBlockSize = hasher.blockSize; + var hasherBlockSizeBytes = hasherBlockSize * 4; + // Allow arbitrary length keys + if (key.sigBytes > hasherBlockSizeBytes) { + key = hasher.finalize(key); + } -function reduceToSingleString(output, base, braces) { - var numLinesEst = 0; - var length = output.reduce(function(prev, cur) { - numLinesEst++; - if (cur.indexOf('\n') >= 0) numLinesEst++; - return prev + cur.replace(/\u001b\[\d\d?m/g, '').length + 1; - }, 0); + // Clamp excess bits + key.clamp(); - if (length > 60) { - return braces[0] + - (base === '' ? '' : base + '\n ') + - ' ' + - output.join(',\n ') + - ' ' + - braces[1]; - } + // Clone key for inner and outer pads + var oKey = this._oKey = key.clone(); + var iKey = this._iKey = key.clone(); - return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; -} + // Shortcuts + var oKeyWords = oKey.words; + var iKeyWords = iKey.words; + // XOR keys with pad constants + for (var i = 0; i < hasherBlockSize; i++) { + oKeyWords[i] ^= 0x5c5c5c5c; + iKeyWords[i] ^= 0x36363636; + } + oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes; -// NOTE: These type checking functions intentionally don't use `instanceof` -// because it is fragile and can be easily faked with `Object.create()`. -exports.types = __webpack_require__(29490); + // Set initial values + this.reset(); + }, + /** + * Resets this HMAC to its initial state. + * + * @example + * + * hmacHasher.reset(); + */ + reset: function reset() { + // Shortcut + var hasher = this._hasher; -function isArray(ar) { - return Array.isArray(ar); -} -exports.isArray = isArray; + // Reset + hasher.reset(); + hasher.update(this._iKey); + }, + /** + * Updates this HMAC with a message. + * + * @param {WordArray|string} messageUpdate The message to append. + * + * @return {HMAC} This HMAC instance. + * + * @example + * + * hmacHasher.update('message'); + * hmacHasher.update(wordArray); + */ + update: function update(messageUpdate) { + this._hasher.update(messageUpdate); -function isBoolean(arg) { - return typeof arg === 'boolean'; -} -exports.isBoolean = isBoolean; + // Chainable + return this; + }, + /** + * Finalizes the HMAC computation. + * Note that the finalize operation is effectively a destructive, read-once operation. + * + * @param {WordArray|string} messageUpdate (Optional) A final message update. + * + * @return {WordArray} The HMAC. + * + * @example + * + * var hmac = hmacHasher.finalize(); + * var hmac = hmacHasher.finalize('message'); + * var hmac = hmacHasher.finalize(wordArray); + */ + finalize: function finalize(messageUpdate) { + // Shortcut + var hasher = this._hasher; -function isNull(arg) { - return arg === null; -} -exports.isNull = isNull; + // Compute HMAC + var innerHash = hasher.finalize(messageUpdate); + hasher.reset(); + var hmac = hasher.finalize(this._oKey.clone().concat(innerHash)); + return hmac; + } + }); + })(); +}); -function isNullOrUndefined(arg) { - return arg == null; -} -exports.isNullOrUndefined = isNullOrUndefined; +/***/ }), -function isNumber(arg) { - return typeof arg === 'number'; -} -exports.isNumber = isNumber; +/***/ 94119: +/***/ (function(module, exports, __webpack_require__) { -function isString(arg) { - return typeof arg === 'string'; -} -exports.isString = isString; +"use strict"; -function isSymbol(arg) { - return typeof arg === 'symbol'; -} -exports.isSymbol = isSymbol; -function isUndefined(arg) { - return arg === void 0; -} -exports.isUndefined = isUndefined; +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909), __webpack_require__(14287), __webpack_require__(2256), __webpack_require__(66947), __webpack_require__(16190), __webpack_require__(68319), __webpack_require__(37146), __webpack_require__(66664), __webpack_require__(11905), __webpack_require__(51965), __webpack_require__(27772), __webpack_require__(16720), __webpack_require__(1239), __webpack_require__(4420), __webpack_require__(44130), __webpack_require__(82747), __webpack_require__(51270), __webpack_require__(62256), __webpack_require__(48306), __webpack_require__(65881), __webpack_require__(6564), __webpack_require__(29819), __webpack_require__(28164), __webpack_require__(91780), __webpack_require__(14623), __webpack_require__(85628), __webpack_require__(61807), __webpack_require__(73948), __webpack_require__(22956), __webpack_require__(24107), __webpack_require__(95086), __webpack_require__(6819), __webpack_require__(75891), __webpack_require__(73517)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + return CryptoJS; +}); -function isRegExp(re) { - return isObject(re) && objectToString(re) === '[object RegExp]'; -} -exports.isRegExp = isRegExp; -exports.types.isRegExp = isRegExp; - -function isObject(arg) { - return typeof arg === 'object' && arg !== null; -} -exports.isObject = isObject; - -function isDate(d) { - return isObject(d) && objectToString(d) === '[object Date]'; -} -exports.isDate = isDate; -exports.types.isDate = isDate; - -function isError(e) { - return isObject(e) && - (objectToString(e) === '[object Error]' || e instanceof Error); -} -exports.isError = isError; -exports.types.isNativeError = isError; - -function isFunction(arg) { - return typeof arg === 'function'; -} -exports.isFunction = isFunction; +/***/ }), -function isPrimitive(arg) { - return arg === null || - typeof arg === 'boolean' || - typeof arg === 'number' || - typeof arg === 'string' || - typeof arg === 'symbol' || // ES6 symbol - typeof arg === 'undefined'; -} -exports.isPrimitive = isPrimitive; +/***/ 14287: +/***/ (function(module, exports, __webpack_require__) { -exports.isBuffer = __webpack_require__(41201); +"use strict"; -function objectToString(o) { - return Object.prototype.toString.call(o); -} +__webpack_require__(81755); +__webpack_require__(8953); +__webpack_require__(14032); +__webpack_require__(3131); +__webpack_require__(90868); +__webpack_require__(65553); +__webpack_require__(75626); +__webpack_require__(95756); +__webpack_require__(56912); +__webpack_require__(58099); +__webpack_require__(47969); +__webpack_require__(59735); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Check if typed arrays are supported + if (typeof ArrayBuffer != 'function') { + return; + } -function pad(n) { - return n < 10 ? '0' + n.toString(10) : n.toString(10); -} + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + // Reference original init + var superInit = WordArray.init; -var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', - 'Oct', 'Nov', 'Dec']; + // Augment WordArray.init to handle typed arrays + var subInit = WordArray.init = function (typedArray) { + // Convert buffers to uint8 + if (typedArray instanceof ArrayBuffer) { + typedArray = new Uint8Array(typedArray); + } -// 26 Feb 16:19:34 -function timestamp() { - var d = new Date(); - var time = [pad(d.getHours()), - pad(d.getMinutes()), - pad(d.getSeconds())].join(':'); - return [d.getDate(), months[d.getMonth()], time].join(' '); -} + // Convert other array views to uint8 + if (typedArray instanceof Int8Array || typeof Uint8ClampedArray !== "undefined" && typedArray instanceof Uint8ClampedArray || typedArray instanceof Int16Array || typedArray instanceof Uint16Array || typedArray instanceof Int32Array || typedArray instanceof Uint32Array || typedArray instanceof Float32Array || typedArray instanceof Float64Array) { + typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength); + } + // Handle Uint8Array + if (typedArray instanceof Uint8Array) { + // Shortcut + var typedArrayByteLength = typedArray.byteLength; -// log is just a thin wrapper to console.log that prepends a timestamp -exports.log = function() { - console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments)); -}; + // Extract bytes + var words = []; + for (var i = 0; i < typedArrayByteLength; i++) { + words[i >>> 2] |= typedArray[i] << 24 - i % 4 * 8; + } + // Initialize this word array + superInit.call(this, words, typedArrayByteLength); + } else { + // Else call normal init + superInit.apply(this, arguments); + } + }; + subInit.prototype = WordArray; + })(); + return CryptoJS.lib.WordArray; +}); -/** - * Inherit the prototype methods from one constructor into another. - * - * The Function.prototype.inherits from lang.js rewritten as a standalone - * function (not on Function.prototype). NOTE: If this file is to be loaded - * during bootstrapping this function needs to be rewritten using some native - * functions as prototype setup using normal JavaScript does not work as - * expected during bootstrapping (see mirror.js in r114903). - * - * @param {function} ctor Constructor function which needs to inherit the - * prototype. - * @param {function} superCtor Constructor function to inherit prototype from. - */ -exports.inherits = __webpack_require__(89784); +/***/ }), -exports._extend = function(origin, add) { - // Don't do anything if add isn't an object - if (!add || !isObject(add)) return origin; +/***/ 68319: +/***/ (function(module, exports, __webpack_require__) { - var keys = Object.keys(add); - var i = keys.length; - while (i--) { - origin[keys[i]] = add[keys[i]]; - } - return origin; -}; +"use strict"; -function hasOwnProperty(obj, prop) { - return Object.prototype.hasOwnProperty.call(obj, prop); -} -var kCustomPromisifiedSymbol = typeof Symbol !== 'undefined' ? Symbol('util.promisify.custom') : undefined; +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function (Math) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var Hasher = C_lib.Hasher; + var C_algo = C.algo; -exports.promisify = function promisify(original) { - if (typeof original !== 'function') - throw new TypeError('The "original" argument must be of type Function'); + // Constants table + var T = []; - if (kCustomPromisifiedSymbol && original[kCustomPromisifiedSymbol]) { - var fn = original[kCustomPromisifiedSymbol]; - if (typeof fn !== 'function') { - throw new TypeError('The "util.promisify.custom" argument must be of type Function'); - } - Object.defineProperty(fn, kCustomPromisifiedSymbol, { - value: fn, enumerable: false, writable: false, configurable: true - }); - return fn; - } + // Compute constants + (function () { + for (var i = 0; i < 64; i++) { + T[i] = Math.abs(Math.sin(i + 1)) * 0x100000000 | 0; + } + })(); - function fn() { - var promiseResolve, promiseReject; - var promise = new Promise(function (resolve, reject) { - promiseResolve = resolve; - promiseReject = reject; - }); + /** + * MD5 hash algorithm. + */ + var MD5 = C_algo.MD5 = Hasher.extend({ + _doReset: function _doReset() { + this._hash = new WordArray.init([0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476]); + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Swap endian + for (var i = 0; i < 16; i++) { + // Shortcuts + var offset_i = offset + i; + var M_offset_i = M[offset_i]; + M[offset_i] = (M_offset_i << 8 | M_offset_i >>> 24) & 0x00ff00ff | (M_offset_i << 24 | M_offset_i >>> 8) & 0xff00ff00; + } - var args = []; - for (var i = 0; i < arguments.length; i++) { - args.push(arguments[i]); - } - args.push(function (err, value) { - if (err) { - promiseReject(err); - } else { - promiseResolve(value); - } - }); + // Shortcuts + var H = this._hash.words; + var M_offset_0 = M[offset + 0]; + var M_offset_1 = M[offset + 1]; + var M_offset_2 = M[offset + 2]; + var M_offset_3 = M[offset + 3]; + var M_offset_4 = M[offset + 4]; + var M_offset_5 = M[offset + 5]; + var M_offset_6 = M[offset + 6]; + var M_offset_7 = M[offset + 7]; + var M_offset_8 = M[offset + 8]; + var M_offset_9 = M[offset + 9]; + var M_offset_10 = M[offset + 10]; + var M_offset_11 = M[offset + 11]; + var M_offset_12 = M[offset + 12]; + var M_offset_13 = M[offset + 13]; + var M_offset_14 = M[offset + 14]; + var M_offset_15 = M[offset + 15]; - try { - original.apply(this, args); - } catch (err) { - promiseReject(err); - } + // Working variables + var a = H[0]; + var b = H[1]; + var c = H[2]; + var d = H[3]; - return promise; - } + // Computation + a = FF(a, b, c, d, M_offset_0, 7, T[0]); + d = FF(d, a, b, c, M_offset_1, 12, T[1]); + c = FF(c, d, a, b, M_offset_2, 17, T[2]); + b = FF(b, c, d, a, M_offset_3, 22, T[3]); + a = FF(a, b, c, d, M_offset_4, 7, T[4]); + d = FF(d, a, b, c, M_offset_5, 12, T[5]); + c = FF(c, d, a, b, M_offset_6, 17, T[6]); + b = FF(b, c, d, a, M_offset_7, 22, T[7]); + a = FF(a, b, c, d, M_offset_8, 7, T[8]); + d = FF(d, a, b, c, M_offset_9, 12, T[9]); + c = FF(c, d, a, b, M_offset_10, 17, T[10]); + b = FF(b, c, d, a, M_offset_11, 22, T[11]); + a = FF(a, b, c, d, M_offset_12, 7, T[12]); + d = FF(d, a, b, c, M_offset_13, 12, T[13]); + c = FF(c, d, a, b, M_offset_14, 17, T[14]); + b = FF(b, c, d, a, M_offset_15, 22, T[15]); + a = GG(a, b, c, d, M_offset_1, 5, T[16]); + d = GG(d, a, b, c, M_offset_6, 9, T[17]); + c = GG(c, d, a, b, M_offset_11, 14, T[18]); + b = GG(b, c, d, a, M_offset_0, 20, T[19]); + a = GG(a, b, c, d, M_offset_5, 5, T[20]); + d = GG(d, a, b, c, M_offset_10, 9, T[21]); + c = GG(c, d, a, b, M_offset_15, 14, T[22]); + b = GG(b, c, d, a, M_offset_4, 20, T[23]); + a = GG(a, b, c, d, M_offset_9, 5, T[24]); + d = GG(d, a, b, c, M_offset_14, 9, T[25]); + c = GG(c, d, a, b, M_offset_3, 14, T[26]); + b = GG(b, c, d, a, M_offset_8, 20, T[27]); + a = GG(a, b, c, d, M_offset_13, 5, T[28]); + d = GG(d, a, b, c, M_offset_2, 9, T[29]); + c = GG(c, d, a, b, M_offset_7, 14, T[30]); + b = GG(b, c, d, a, M_offset_12, 20, T[31]); + a = HH(a, b, c, d, M_offset_5, 4, T[32]); + d = HH(d, a, b, c, M_offset_8, 11, T[33]); + c = HH(c, d, a, b, M_offset_11, 16, T[34]); + b = HH(b, c, d, a, M_offset_14, 23, T[35]); + a = HH(a, b, c, d, M_offset_1, 4, T[36]); + d = HH(d, a, b, c, M_offset_4, 11, T[37]); + c = HH(c, d, a, b, M_offset_7, 16, T[38]); + b = HH(b, c, d, a, M_offset_10, 23, T[39]); + a = HH(a, b, c, d, M_offset_13, 4, T[40]); + d = HH(d, a, b, c, M_offset_0, 11, T[41]); + c = HH(c, d, a, b, M_offset_3, 16, T[42]); + b = HH(b, c, d, a, M_offset_6, 23, T[43]); + a = HH(a, b, c, d, M_offset_9, 4, T[44]); + d = HH(d, a, b, c, M_offset_12, 11, T[45]); + c = HH(c, d, a, b, M_offset_15, 16, T[46]); + b = HH(b, c, d, a, M_offset_2, 23, T[47]); + a = II(a, b, c, d, M_offset_0, 6, T[48]); + d = II(d, a, b, c, M_offset_7, 10, T[49]); + c = II(c, d, a, b, M_offset_14, 15, T[50]); + b = II(b, c, d, a, M_offset_5, 21, T[51]); + a = II(a, b, c, d, M_offset_12, 6, T[52]); + d = II(d, a, b, c, M_offset_3, 10, T[53]); + c = II(c, d, a, b, M_offset_10, 15, T[54]); + b = II(b, c, d, a, M_offset_1, 21, T[55]); + a = II(a, b, c, d, M_offset_8, 6, T[56]); + d = II(d, a, b, c, M_offset_15, 10, T[57]); + c = II(c, d, a, b, M_offset_6, 15, T[58]); + b = II(b, c, d, a, M_offset_13, 21, T[59]); + a = II(a, b, c, d, M_offset_4, 6, T[60]); + d = II(d, a, b, c, M_offset_11, 10, T[61]); + c = II(c, d, a, b, M_offset_2, 15, T[62]); + b = II(b, c, d, a, M_offset_9, 21, T[63]); - Object.setPrototypeOf(fn, Object.getPrototypeOf(original)); + // Intermediate hash value + H[0] = H[0] + a | 0; + H[1] = H[1] + b | 0; + H[2] = H[2] + c | 0; + H[3] = H[3] + d | 0; + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; - if (kCustomPromisifiedSymbol) Object.defineProperty(fn, kCustomPromisifiedSymbol, { - value: fn, enumerable: false, writable: false, configurable: true - }); - return Object.defineProperties( - fn, - getOwnPropertyDescriptors(original) - ); -} + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; + var nBitsTotalH = Math.floor(nBitsTotal / 0x100000000); + var nBitsTotalL = nBitsTotal; + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = (nBitsTotalH << 8 | nBitsTotalH >>> 24) & 0x00ff00ff | (nBitsTotalH << 24 | nBitsTotalH >>> 8) & 0xff00ff00; + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = (nBitsTotalL << 8 | nBitsTotalL >>> 24) & 0x00ff00ff | (nBitsTotalL << 24 | nBitsTotalL >>> 8) & 0xff00ff00; + data.sigBytes = (dataWords.length + 1) * 4; -exports.promisify.custom = kCustomPromisifiedSymbol + // Hash final blocks + this._process(); -function callbackifyOnRejected(reason, cb) { - // `!reason` guard inspired by bluebird (Ref: https://goo.gl/t5IS6M). - // Because `null` is a special error value in callbacks which means "no error - // occurred", we error-wrap so the callback consumer can distinguish between - // "the promise rejected with null" or "the promise fulfilled with undefined". - if (!reason) { - var newReason = new Error('Promise was rejected with a falsy value'); - newReason.reason = reason; - reason = newReason; - } - return cb(reason); -} + // Shortcuts + var hash = this._hash; + var H = hash.words; -function callbackify(original) { - if (typeof original !== 'function') { - throw new TypeError('The "original" argument must be of type Function'); - } + // Swap endian + for (var i = 0; i < 4; i++) { + // Shortcut + var H_i = H[i]; + H[i] = (H_i << 8 | H_i >>> 24) & 0x00ff00ff | (H_i << 24 | H_i >>> 8) & 0xff00ff00; + } - // We DO NOT return the promise as it gives the user a false sense that - // the promise is actually somehow related to the callback's execution - // and that the callback throwing will reject the promise. - function callbackified() { - var args = []; - for (var i = 0; i < arguments.length; i++) { - args.push(arguments[i]); + // Return final computed hash + return hash; + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + clone._hash = this._hash.clone(); + return clone; + } + }); + function FF(a, b, c, d, x, s, t) { + var n = a + (b & c | ~b & d) + x + t; + return (n << s | n >>> 32 - s) + b; } - - var maybeCb = args.pop(); - if (typeof maybeCb !== 'function') { - throw new TypeError('The last argument must be of type Function'); + function GG(a, b, c, d, x, s, t) { + var n = a + (b & d | c & ~d) + x + t; + return (n << s | n >>> 32 - s) + b; + } + function HH(a, b, c, d, x, s, t) { + var n = a + (b ^ c ^ d) + x + t; + return (n << s | n >>> 32 - s) + b; + } + function II(a, b, c, d, x, s, t) { + var n = a + (c ^ (b | ~d)) + x + t; + return (n << s | n >>> 32 - s) + b; } - var self = this; - var cb = function() { - return maybeCb.apply(self, arguments); - }; - // In true node style we process the callback on `nextTick` with all the - // implications (stack, `uncaughtException`, `async_hooks`) - original.apply(this, args) - .then(function(ret) { process.nextTick(cb.bind(null, null, ret)) }, - function(rej) { process.nextTick(callbackifyOnRejected.bind(null, rej, cb)) }); - } - Object.setPrototypeOf(callbackified, Object.getPrototypeOf(original)); - Object.defineProperties(callbackified, - getOwnPropertyDescriptors(original)); - return callbackified; -} -exports.callbackify = callbackify; + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.MD5('message'); + * var hash = CryptoJS.MD5(wordArray); + */ + C.MD5 = Hasher._createHelper(MD5); + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacMD5(message, key); + */ + C.HmacMD5 = Hasher._createHmacHelper(MD5); + })(Math); + return CryptoJS.MD5; +}); /***/ }), -/***/ 7283: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 62256: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -var DESCRIPTORS = __webpack_require__(15567); -var global = __webpack_require__(32010); -var uncurryThis = __webpack_require__(38347); -var isForced = __webpack_require__(39599); -var redefine = __webpack_require__(13711); -var hasOwn = __webpack_require__(20340); -var inheritIfRequired = __webpack_require__(51868); -var isPrototypeOf = __webpack_require__(70176); -var isSymbol = __webpack_require__(46290); -var toPrimitive = __webpack_require__(2644); -var fails = __webpack_require__(47044); -var getOwnPropertyNames = (__webpack_require__(6611).f); -var getOwnPropertyDescriptor = (__webpack_require__(72062).f); -var defineProperty = (__webpack_require__(95892).f); -var thisNumberValue = __webpack_require__(16679); -var trim = (__webpack_require__(29841).trim); -var NUMBER = 'Number'; -var NativeNumber = global[NUMBER]; -var NumberPrototype = NativeNumber.prototype; -var TypeError = global.TypeError; -var arraySlice = uncurryThis(''.slice); -var charCodeAt = uncurryThis(''.charCodeAt); - -// `ToNumeric` abstract operation -// https://tc39.es/ecma262/#sec-tonumeric -var toNumeric = function (value) { - var primValue = toPrimitive(value, 'number'); - return typeof primValue == 'bigint' ? primValue : toNumber(primValue); -}; - -// `ToNumber` abstract operation -// https://tc39.es/ecma262/#sec-tonumber -var toNumber = function (argument) { - var it = toPrimitive(argument, 'number'); - var first, third, radix, maxCode, digits, length, index, code; - if (isSymbol(it)) throw TypeError('Cannot convert a Symbol value to a number'); - if (typeof it == 'string' && it.length > 2) { - it = trim(it); - first = charCodeAt(it, 0); - if (first === 43 || first === 45) { - third = charCodeAt(it, 2); - if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix - } else if (first === 48) { - switch (charCodeAt(it, 1)) { - case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i - case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i - default: return +it; +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Cipher Feedback block mode. + */ + CryptoJS.mode.CFB = function () { + var CFB = CryptoJS.lib.BlockCipherMode.extend(); + CFB.Encryptor = CFB.extend({ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; + generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); + + // Remember this block to use with next block + this._prevBlock = words.slice(offset, offset + blockSize); } - digits = arraySlice(it, 2); - length = digits.length; - for (index = 0; index < length; index++) { - code = charCodeAt(digits, index); - // parseInt parses a string to a first unavailable symbol - // but ToNumber should return NaN if a string contains unavailable symbols - if (code < 48 || code > maxCode) return NaN; - } return parseInt(digits, radix); - } - } return +it; -}; + }); + CFB.Decryptor = CFB.extend({ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; -// `Number` constructor -// https://tc39.es/ecma262/#sec-number-constructor -if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) { - var NumberWrapper = function Number(value) { - var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value)); - var dummy = this; - // check on 1..constructor(foo) case - return isPrototypeOf(NumberPrototype, dummy) && fails(function () { thisNumberValue(dummy); }) - ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n; - }; - for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : ( - // ES3: - 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + - // ES2015 (in case, if modules with ES2015 Number statics required before): - 'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' + - // ESNext - 'fromString,range' - ).split(','), j = 0, key; keys.length > j; j++) { - if (hasOwn(NativeNumber, key = keys[j]) && !hasOwn(NumberWrapper, key)) { - defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key)); - } - } - NumberWrapper.prototype = NumberPrototype; - NumberPrototype.constructor = NumberWrapper; - redefine(global, NUMBER, NumberWrapper); -} + // Remember this block to use with next block + var thisBlock = words.slice(offset, offset + blockSize); + generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher); + // This block becomes the previous block + this._prevBlock = thisBlock; + } + }); + function generateKeystreamAndEncrypt(words, offset, blockSize, cipher) { + var keystream; -/***/ }), + // Shortcut + var iv = this._iv; -/***/ 7421: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // Generate keystream + if (iv) { + keystream = iv.slice(0); -var global = __webpack_require__(32010); + // Remove IV for subsequent blocks + this._iv = undefined; + } else { + keystream = this._prevBlock; + } + cipher.encryptBlock(keystream, 0); -// eslint-disable-next-line es/no-object-defineproperty -- safe -var defineProperty = Object.defineProperty; + // Encrypt + for (var i = 0; i < blockSize; i++) { + words[offset + i] ^= keystream[i]; + } + } + return CFB; + }(); + return CryptoJS.mode.CFB; +}); -module.exports = function (key, value) { - try { - defineProperty(global, key, { value: value, configurable: true, writable: true }); - } catch (error) { - global[key] = value; - } return value; -}; +/***/ }), +/***/ 65881: +/***/ (function(module, exports, __webpack_require__) { -/***/ }), +"use strict"; -/***/ 7452: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var fails = __webpack_require__(47044); +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** @preserve + * Counter block mode compatible with Dr Brian Gladman fileenc.c + * derived from CryptoJS.mode.CTR + * Jan Hruby jhruby.web@gmail.com + */ + CryptoJS.mode.CTRGladman = function () { + var CTRGladman = CryptoJS.lib.BlockCipherMode.extend(); + function incWord(word) { + if ((word >> 24 & 0xff) === 0xff) { + //overflow + var b1 = word >> 16 & 0xff; + var b2 = word >> 8 & 0xff; + var b3 = word & 0xff; + if (b1 === 0xff) + // overflow b1 + { + b1 = 0; + if (b2 === 0xff) { + b2 = 0; + if (b3 === 0xff) { + b3 = 0; + } else { + ++b3; + } + } else { + ++b2; + } + } else { + ++b1; + } + word = 0; + word += b1 << 16; + word += b2 << 8; + word += b3; + } else { + word += 0x01 << 24; + } + return word; + } + function incCounter(counter) { + if ((counter[0] = incWord(counter[0])) === 0) { + // encr_data in fileenc.c from Dr Brian Gladman's counts only with DWORD j < 8 + counter[1] = incWord(counter[1]); + } + return counter; + } + var Encryptor = CTRGladman.Encryptor = CTRGladman.extend({ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; + var iv = this._iv; + var counter = this._counter; -// check the existence of a method, lowercase -// of a tag and escaping quotes in arguments -module.exports = function (METHOD_NAME) { - return fails(function () { - var test = ''[METHOD_NAME]('"'); - return test !== test.toLowerCase() || test.split('"').length > 3; - }); -}; + // Generate keystream + if (iv) { + counter = this._counter = iv.slice(0); + + // Remove IV for subsequent blocks + this._iv = undefined; + } + incCounter(counter); + var keystream = counter.slice(0); + cipher.encryptBlock(keystream, 0); + // Encrypt + for (var i = 0; i < blockSize; i++) { + words[offset + i] ^= keystream[i]; + } + } + }); + CTRGladman.Decryptor = Encryptor; + return CTRGladman; + }(); + return CryptoJS.mode.CTRGladman; +}); /***/ }), -/***/ 7514: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 48306: +/***/ (function(module, exports, __webpack_require__) { -var global = __webpack_require__(32010); -var uncurryThis = __webpack_require__(38347); -var fails = __webpack_require__(47044); -var classof = __webpack_require__(93975); +"use strict"; -var Object = global.Object; -var split = uncurryThis(''.split); -// fallback for non-array-like ES3 and non-enumerable old V8 strings -module.exports = fails(function () { - // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 - // eslint-disable-next-line no-prototype-builtins -- safe - return !Object('z').propertyIsEnumerable(0); -}) ? function (it) { - return classof(it) == 'String' ? split(it, '') : Object(it); -} : Object; +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Counter block mode. + */ + CryptoJS.mode.CTR = function () { + var CTR = CryptoJS.lib.BlockCipherMode.extend(); + var Encryptor = CTR.Encryptor = CTR.extend({ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; + var iv = this._iv; + var counter = this._counter; + // Generate keystream + if (iv) { + counter = this._counter = iv.slice(0); -/***/ }), + // Remove IV for subsequent blocks + this._iv = undefined; + } + var keystream = counter.slice(0); + cipher.encryptBlock(keystream, 0); -/***/ 7585: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + // Increment counter + counter[blockSize - 1] = counter[blockSize - 1] + 1 | 0; -var hasOwn = __webpack_require__(20340); -var redefine = __webpack_require__(13711); -var dateToPrimitive = __webpack_require__(53087); -var wellKnownSymbol = __webpack_require__(38688); + // Encrypt + for (var i = 0; i < blockSize; i++) { + words[offset + i] ^= keystream[i]; + } + } + }); + CTR.Decryptor = Encryptor; + return CTR; + }(); + return CryptoJS.mode.CTR; +}); -var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); -var DatePrototype = Date.prototype; +/***/ }), -// `Date.prototype[@@toPrimitive]` method -// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive -if (!hasOwn(DatePrototype, TO_PRIMITIVE)) { - redefine(DatePrototype, TO_PRIMITIVE, dateToPrimitive); -} +/***/ 29819: +/***/ (function(module, exports, __webpack_require__) { +"use strict"; + + +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Electronic Codebook block mode. + */ + CryptoJS.mode.ECB = function () { + var ECB = CryptoJS.lib.BlockCipherMode.extend(); + ECB.Encryptor = ECB.extend({ + processBlock: function processBlock(words, offset) { + this._cipher.encryptBlock(words, offset); + } + }); + ECB.Decryptor = ECB.extend({ + processBlock: function processBlock(words, offset) { + this._cipher.decryptBlock(words, offset); + } + }); + return ECB; + }(); + return CryptoJS.mode.ECB; +}); /***/ }), -/***/ 7785: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 6564: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -// Internet Explorer polyfills -if (typeof window !== 'undefined' && !window.Promise) { - __webpack_require__(98168); -} -__webpack_require__(83043); - -var fetchUrl = function (url, headers) { - return new Promise(function (resolve, reject) { - var xhr = new XMLHttpRequest(); - xhr.open('GET', url, true); - for (var headerName in headers) { - xhr.setRequestHeader(headerName, headers[headerName]); - } - xhr.responseType = 'arraybuffer'; +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Output Feedback block mode. + */ + CryptoJS.mode.OFB = function () { + var OFB = CryptoJS.lib.BlockCipherMode.extend(); + var Encryptor = OFB.Encryptor = OFB.extend({ + processBlock: function processBlock(words, offset) { + // Shortcuts + var cipher = this._cipher; + var blockSize = cipher.blockSize; + var iv = this._iv; + var keystream = this._keystream; - xhr.onreadystatechange = function () { - if (xhr.readyState !== 4) { - return; - } + // Generate keystream + if (iv) { + keystream = this._keystream = iv.slice(0); - var ok = xhr.status >= 200 && xhr.status < 300; - if (!ok) { - setTimeout(function () { - reject(new TypeError('Failed to fetch (url: "' + url + '")')); - }, 0); - } - }; + // Remove IV for subsequent blocks + this._iv = undefined; + } + cipher.encryptBlock(keystream, 0); - xhr.onload = function () { - var ok = xhr.status >= 200 && xhr.status < 300; - if (ok) { - resolve(xhr.response); - } - }; + // Encrypt + for (var i = 0; i < blockSize; i++) { + words[offset + i] ^= keystream[i]; + } + } + }); + OFB.Decryptor = Encryptor; + return OFB; + }(); + return CryptoJS.mode.OFB; +}); - xhr.onerror = function () { - setTimeout(function () { - reject(new TypeError('Network request failed (url: "' + url + '")')); - }, 0); - }; +/***/ }), - xhr.ontimeout = function () { - setTimeout(function () { - reject(new TypeError('Network request failed (url: "' + url + '")')); - }, 0); - }; +/***/ 28164: +/***/ (function(module, exports, __webpack_require__) { - xhr.send(); - }); -}; +"use strict"; -function URLBrowserResolver(fs) { - this.fs = fs; - this.resolving = {}; -} -URLBrowserResolver.prototype.resolve = function (url, headers) { - if (!this.resolving[url]) { - var _this = this; - this.resolving[url] = new Promise(function (resolve, reject) { - if (url.toLowerCase().indexOf('https://') === 0 || url.toLowerCase().indexOf('http://') === 0) { - if (_this.fs.existsSync(url)) { - // url was downloaded earlier - resolve(); - } else { - fetchUrl(url, headers).then(function (buffer) { - _this.fs.writeFileSync(url, buffer); - resolve(); - }, function (result) { - reject(result); - }); - } - } else { - // cannot be resolved - resolve(); - } - }); - } +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * ANSI X.923 padding strategy. + */ + CryptoJS.pad.AnsiX923 = { + pad: function pad(data, blockSize) { + // Shortcuts + var dataSigBytes = data.sigBytes; + var blockSizeBytes = blockSize * 4; - return this.resolving[url]; -}; + // Count padding bytes + var nPaddingBytes = blockSizeBytes - dataSigBytes % blockSizeBytes; -URLBrowserResolver.prototype.resolved = function () { - var _this = this; - return new Promise(function (resolve, reject) { - Promise.all(Object.values(_this.resolving)).then(function () { - resolve(); - }, function (result) { - reject(result); - }); - }); -}; + // Compute last byte position + var lastBytePos = dataSigBytes + nPaddingBytes - 1; -module.exports = URLBrowserResolver; + // Pad + data.clamp(); + data.words[lastBytePos >>> 2] |= nPaddingBytes << 24 - lastBytePos % 4 * 8; + data.sigBytes += nPaddingBytes; + }, + unpad: function unpad(data) { + // Get number of padding bytes from last byte + var nPaddingBytes = data.words[data.sigBytes - 1 >>> 2] & 0xff; + // Remove padding + data.sigBytes -= nPaddingBytes; + } + }; + return CryptoJS.pad.Ansix923; +}); /***/ }), -/***/ 7844: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 91780: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -var implementation = __webpack_require__(83089); - -var supportsDescriptors = (__webpack_require__(77802).supportsDescriptors); -var $gOPD = Object.getOwnPropertyDescriptor; - -module.exports = function getPolyfill() { - if (supportsDescriptors && (/a/mig).flags === 'gim') { - var descriptor = $gOPD(RegExp.prototype, 'flags'); - if ( - descriptor - && typeof descriptor.get === 'function' - && 'dotAll' in RegExp.prototype - && 'hasIndices' in RegExp.prototype - ) { - /* eslint getter-return: 0 */ - var calls = ''; - var o = {}; - Object.defineProperty(o, 'hasIndices', { - get: function () { - calls += 'd'; - } - }); - Object.defineProperty(o, 'sticky', { - get: function () { - calls += 'y'; - } - }); +__webpack_require__(39081); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * ISO 10126 padding strategy. + */ + CryptoJS.pad.Iso10126 = { + pad: function pad(data, blockSize) { + // Shortcut + var blockSizeBytes = blockSize * 4; - descriptor.get.call(o); + // Count padding bytes + var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; - if (calls === 'dy') { - return descriptor.get; - } - } - } - return implementation; -}; + // Pad + data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes - 1)).concat(CryptoJS.lib.WordArray.create([nPaddingBytes << 24], 1)); + }, + unpad: function unpad(data) { + // Get number of padding bytes from last byte + var nPaddingBytes = data.words[data.sigBytes - 1 >>> 2] & 0xff; + // Remove padding + data.sigBytes -= nPaddingBytes; + } + }; + return CryptoJS.pad.Iso10126; +}); /***/ }), -/***/ 7851: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 14623: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -var apply = __webpack_require__(58448); -var call = __webpack_require__(2834); -var uncurryThis = __webpack_require__(38347); -var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); -var isRegExp = __webpack_require__(28831); -var anObject = __webpack_require__(34984); -var requireObjectCoercible = __webpack_require__(83943); -var speciesConstructor = __webpack_require__(27754); -var advanceStringIndex = __webpack_require__(36352); -var toLength = __webpack_require__(23417); -var toString = __webpack_require__(25096); -var getMethod = __webpack_require__(51839); -var arraySlice = __webpack_require__(73163); -var callRegExpExec = __webpack_require__(66723); -var regexpExec = __webpack_require__(49820); -var stickyHelpers = __webpack_require__(74846); -var fails = __webpack_require__(47044); -var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y; -var MAX_UINT32 = 0xFFFFFFFF; -var min = Math.min; -var $push = [].push; -var exec = uncurryThis(/./.exec); -var push = uncurryThis($push); -var stringSlice = uncurryThis(''.slice); +__webpack_require__(39081); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * ISO/IEC 9797-1 Padding Method 2. + */ + CryptoJS.pad.Iso97971 = { + pad: function pad(data, blockSize) { + // Add 0x80 byte + data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1)); -// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec -// Weex JS has frozen built-in prototypes, so use try / catch wrapper -var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () { - // eslint-disable-next-line regexp/no-empty-group -- required for testing - var re = /(?:)/; - var originalExec = re.exec; - re.exec = function () { return originalExec.apply(this, arguments); }; - var result = 'ab'.split(re); - return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b'; + // Zero pad the rest + CryptoJS.pad.ZeroPadding.pad(data, blockSize); + }, + unpad: function unpad(data) { + // Remove zero padding + CryptoJS.pad.ZeroPadding.unpad(data); + + // Remove one more byte -- the 0x80 byte + data.sigBytes--; + } + }; + return CryptoJS.pad.Iso97971; }); -// @@split logic -fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) { - var internalSplit; - if ( - 'abbc'.split(/(b)*/)[1] == 'c' || - // eslint-disable-next-line regexp/no-empty-group -- required for testing - 'test'.split(/(?:)/, -1).length != 4 || - 'ab'.split(/(?:ab)*/).length != 2 || - '.'.split(/(.?)(.?)/).length != 4 || - // eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing - '.'.split(/()()/).length > 1 || - ''.split(/.?/).length - ) { - // based on es5-shim implementation, need to rework it - internalSplit = function (separator, limit) { - var string = toString(requireObjectCoercible(this)); - var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; - if (lim === 0) return []; - if (separator === undefined) return [string]; - // If `separator` is not a regex, use native split - if (!isRegExp(separator)) { - return call(nativeSplit, string, separator, lim); - } - var output = []; - var flags = (separator.ignoreCase ? 'i' : '') + - (separator.multiline ? 'm' : '') + - (separator.unicode ? 'u' : '') + - (separator.sticky ? 'y' : ''); - var lastLastIndex = 0; - // Make `global` and avoid `lastIndex` issues by working with a copy - var separatorCopy = new RegExp(separator.source, flags + 'g'); - var match, lastIndex, lastLength; - while (match = call(regexpExec, separatorCopy, string)) { - lastIndex = separatorCopy.lastIndex; - if (lastIndex > lastLastIndex) { - push(output, stringSlice(string, lastLastIndex, match.index)); - if (match.length > 1 && match.index < string.length) apply($push, output, arraySlice(match, 1)); - lastLength = match[0].length; - lastLastIndex = lastIndex; - if (output.length >= lim) break; - } - if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop - } - if (lastLastIndex === string.length) { - if (lastLength || !exec(separatorCopy, '')) push(output, ''); - } else push(output, stringSlice(string, lastLastIndex)); - return output.length > lim ? arraySlice(output, 0, lim) : output; - }; - // Chakra, V8 - } else if ('0'.split(undefined, 0).length) { - internalSplit = function (separator, limit) { - return separator === undefined && limit === 0 ? [] : call(nativeSplit, this, separator, limit); - }; - } else internalSplit = nativeSplit; +/***/ }), - return [ - // `String.prototype.split` method - // https://tc39.es/ecma262/#sec-string.prototype.split - function split(separator, limit) { - var O = requireObjectCoercible(this); - var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT); - return splitter - ? call(splitter, separator, O, limit) - : call(internalSplit, toString(O), separator, limit); - }, - // `RegExp.prototype[@@split]` method - // https://tc39.es/ecma262/#sec-regexp.prototype-@@split - // - // NOTE: This cannot be properly polyfilled in engines that don't support - // the 'y' flag. - function (string, limit) { - var rx = anObject(this); - var S = toString(string); - var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit); +/***/ 61807: +/***/ (function(module, exports, __webpack_require__) { - if (res.done) return res.value; +"use strict"; - var C = speciesConstructor(rx, RegExp); - var unicodeMatching = rx.unicode; - var flags = (rx.ignoreCase ? 'i' : '') + - (rx.multiline ? 'm' : '') + - (rx.unicode ? 'u' : '') + - (UNSUPPORTED_Y ? 'g' : 'y'); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * A noop padding strategy. + */ + CryptoJS.pad.NoPadding = { + pad: function pad() {}, + unpad: function unpad() {} + }; + return CryptoJS.pad.NoPadding; +}); - // ^(? + rx + ) is needed, in combination with some S slicing, to - // simulate the 'y' flag. - var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags); - var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; - if (lim === 0) return []; - if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : []; - var p = 0; - var q = 0; - var A = []; - while (q < S.length) { - splitter.lastIndex = UNSUPPORTED_Y ? 0 : q; - var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice(S, q) : S); - var e; - if ( - z === null || - (e = min(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p - ) { - q = advanceStringIndex(S, q, unicodeMatching); - } else { - push(A, stringSlice(S, p, q)); - if (A.length === lim) return A; - for (var i = 1; i <= z.length - 1; i++) { - push(A, z[i]); - if (A.length === lim) return A; - } - q = p = e; +/***/ }), + +/***/ 85628: +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** + * Zero padding strategy. + */ + CryptoJS.pad.ZeroPadding = { + pad: function pad(data, blockSize) { + // Shortcut + var blockSizeBytes = blockSize * 4; + + // Pad + data.clamp(); + data.sigBytes += blockSizeBytes - (data.sigBytes % blockSizeBytes || blockSizeBytes); + }, + unpad: function unpad(data) { + // Shortcut + var dataWords = data.words; + + // Unpad + var i = data.sigBytes - 1; + for (var i = data.sigBytes - 1; i >= 0; i--) { + if (dataWords[i >>> 2] >>> 24 - i % 4 * 8 & 0xff) { + data.sigBytes = i + 1; + break; } } - push(A, stringSlice(S, p)); - return A; } - ]; -}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y); - + }; + return CryptoJS.pad.ZeroPadding; +}); /***/ }), -/***/ 8807: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 44130: +/***/ (function(module, exports, __webpack_require__) { -/* eslint-disable es/no-object-getownpropertynames -- safe */ -var classof = __webpack_require__(93975); -var toIndexedObject = __webpack_require__(98086); -var $getOwnPropertyNames = (__webpack_require__(6611).f); -var arraySlice = __webpack_require__(73163); +"use strict"; -var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames - ? Object.getOwnPropertyNames(window) : []; -var getWindowNames = function (it) { - try { - return $getOwnPropertyNames(it); - } catch (error) { - return arraySlice(windowNames); - } -}; +__webpack_require__(39081); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66664), __webpack_require__(4420)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Base = C_lib.Base; + var WordArray = C_lib.WordArray; + var C_algo = C.algo; + var SHA256 = C_algo.SHA256; + var HMAC = C_algo.HMAC; -// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window -module.exports.f = function getOwnPropertyNames(it) { - return windowNames && classof(it) == 'Window' - ? getWindowNames(it) - : $getOwnPropertyNames(toIndexedObject(it)); -}; + /** + * Password-Based Key Derivation Function 2 algorithm. + */ + var PBKDF2 = C_algo.PBKDF2 = Base.extend({ + /** + * Configuration options. + * + * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) + * @property {Hasher} hasher The hasher to use. Default: SHA256 + * @property {number} iterations The number of iterations to perform. Default: 250000 + */ + cfg: Base.extend({ + keySize: 128 / 32, + hasher: SHA256, + iterations: 250000 + }), + /** + * Initializes a newly created key derivation function. + * + * @param {Object} cfg (Optional) The configuration options to use for the derivation. + * + * @example + * + * var kdf = CryptoJS.algo.PBKDF2.create(); + * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 }); + * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 }); + */ + init: function init(cfg) { + this.cfg = this.cfg.extend(cfg); + }, + /** + * Computes the Password-Based Key Derivation Function 2. + * + * @param {WordArray|string} password The password. + * @param {WordArray|string} salt A salt. + * + * @return {WordArray} The derived key. + * + * @example + * + * var key = kdf.compute(password, salt); + */ + compute: function compute(password, salt) { + // Shortcut + var cfg = this.cfg; + // Init HMAC + var hmac = HMAC.create(cfg.hasher, password); -/***/ }), + // Initial values + var derivedKey = WordArray.create(); + var blockIndex = WordArray.create([0x00000001]); -/***/ 8953: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + // Shortcuts + var derivedKeyWords = derivedKey.words; + var blockIndexWords = blockIndex.words; + var keySize = cfg.keySize; + var iterations = cfg.iterations; -"use strict"; + // Generate key + while (derivedKeyWords.length < keySize) { + var block = hmac.update(salt).finalize(blockIndex); + hmac.reset(); + // Shortcuts + var blockWords = block.words; + var blockWordsLength = blockWords.length; -var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var arrayBufferModule = __webpack_require__(83124); -var setSpecies = __webpack_require__(51334); -var ARRAY_BUFFER = 'ArrayBuffer'; -var ArrayBuffer = arrayBufferModule[ARRAY_BUFFER]; -var NativeArrayBuffer = global[ARRAY_BUFFER]; + // Iterations + var intermediate = block; + for (var i = 1; i < iterations; i++) { + intermediate = hmac.finalize(intermediate); + hmac.reset(); -// `ArrayBuffer` constructor -// https://tc39.es/ecma262/#sec-arraybuffer-constructor -$({ - global: true, - forced: NativeArrayBuffer !== ArrayBuffer -}, { - ArrayBuffer: ArrayBuffer + // Shortcut + var intermediateWords = intermediate.words; + + // XOR intermediate with block + for (var j = 0; j < blockWordsLength; j++) { + blockWords[j] ^= intermediateWords[j]; + } + } + derivedKey.concat(block); + blockIndexWords[0]++; + } + derivedKey.sigBytes = keySize * 4; + return derivedKey; + } + }); + + /** + * Computes the Password-Based Key Derivation Function 2. + * + * @param {WordArray|string} password The password. + * @param {WordArray|string} salt A salt. + * @param {Object} cfg (Optional) The configuration options to use for this computation. + * + * @return {WordArray} The derived key. + * + * @static + * + * @example + * + * var key = CryptoJS.PBKDF2(password, salt); + * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8 }); + * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8, iterations: 1000 }); + */ + C.PBKDF2 = function (password, salt, cfg) { + return PBKDF2.create(cfg).compute(password, salt); + }; + })(); + return CryptoJS.PBKDF2; }); -setSpecies(ARRAY_BUFFER); /***/ }), -/***/ 9240: -/***/ (function(module) { +/***/ 75891: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -module.exports = /*#__PURE__*/JSON.parse('{"ifd":{"8298":"Copyright","8769":"ExifIFDPointer","8822":"ExposureProgram","8824":"SpectralSensitivity","8825":"GPSInfoIFDPointer","8827":"PhotographicSensitivity","8828":"OECF","8830":"SensitivityType","8831":"StandardOutputSensitivity","8832":"RecommendedExposureIndex","8833":"ISOSpeed","8834":"ISOSpeedLatitudeyyy","8835":"ISOSpeedLatitudezzz","9000":"ExifVersion","9003":"DateTimeOriginal","9004":"DateTimeDigitized","9101":"ComponentsConfiguration","9102":"CompressedBitsPerPixel","9201":"ShutterSpeedValue","9202":"ApertureValue","9203":"BrightnessValue","9204":"ExposureBiasValue","9205":"MaxApertureValue","9206":"SubjectDistance","9207":"MeteringMode","9208":"LightSource","9209":"Flash","9214":"SubjectArea","9286":"UserComment","9290":"SubSecTime","9291":"SubSecTimeOriginal","9292":"SubSecTimeDigitized","010e":"ImageDescription","010f":"Make","011a":"XResolution","011b":"YResolution","011c":"PlanarConfiguration","012d":"TransferFunction","013b":"Artist","013e":"WhitePoint","013f":"PrimaryChromaticities","0100":"ImageWidth","0101":"ImageHeight","0102":"BitsPerSample","0103":"Compression","0106":"PhotometricInterpretation","0110":"Model","0111":"StripOffsets","0112":"Orientation","0115":"SamplesPerPixel","0116":"RowsPerStrip","0117":"StripByteCounts","0128":"ResolutionUnit","0131":"Software","0132":"DateTime","0201":"JPEGInterchangeFormat","0202":"JPEGInterchangeFormatLength","0211":"YCbCrCoefficients","0212":"YCbCrSubSampling","0213":"YCbCrPositioning","0214":"ReferenceBlackWhite","829a":"ExposureTime","829d":"FNumber","920a":"FocalLength","927c":"MakerNote","a000":"FlashpixVersion","a001":"ColorSpace","a002":"PixelXDimension","a003":"PixelYDimension","a004":"RelatedSoundFile","a005":"InteroperabilityIFDPointer","a20b":"FlashEnergy","a20c":"SpatialFrequencyResponse","a20e":"FocalPlaneXResolution","a20f":"FocalPlaneYResolution","a40a":"Sharpness","a40b":"DeviceSettingDescription","a40c":"SubjectDistanceRange","a210":"FocalPlaneResolutionUnit","a214":"SubjectLocation","a215":"ExposureIndex","a217":"SensingMethod","a300":"FileSource","a301":"SceneType","a302":"CFAPattern","a401":"CustomRendered","a402":"ExposureMode","a403":"WhiteBalance","a404":"DigitalZoomRatio","a405":"FocalLengthIn35mmFilm","a406":"SceneCaptureType","a407":"GainControl","a408":"Contrast","a409":"Saturation","a420":"ImageUniqueID","a430":"CameraOwnerName","a431":"BodySerialNumber","a432":"LensSpecification","a433":"LensMake","a434":"LensModel","a435":"LensSerialNumber","a500":"Gamma"},"gps":{"0000":"GPSVersionID","0001":"GPSLatitudeRef","0002":"GPSLatitude","0003":"GPSLongitudeRef","0004":"GPSLongitude","0005":"GPSAltitudeRef","0006":"GPSAltitude","0007":"GPSTimeStamp","0008":"GPSSatellites","0009":"GPSStatus","000a":"GPSMeasureMode","000b":"GPSDOP","000c":"GPSSpeedRef","000d":"GPSSpeed","000e":"GPSTrackRef","000f":"GPSTrack","0010":"GPSImgDirectionRef","0011":"GPSImgDirection","0012":"GPSMapDatum","0013":"GPSDestLatitudeRef","0014":"GPSDestLatitude","0015":"GPSDestLongitudeRef","0016":"GPSDestLongitude","0017":"GPSDestBearingRef","0018":"GPSDestBearing","0019":"GPSDestDistanceRef","001a":"GPSDestDistance","001b":"GPSProcessingMethod","001c":"GPSAreaInformation","001d":"GPSDateStamp","001e":"GPSDifferential","001f":"GPSHPositioningError"}}'); -/***/ }), -/***/ 9324: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var StreamCipher = C_lib.StreamCipher; + var C_algo = C.algo; -"use strict"; + // Reusable objects + var S = []; + var C_ = []; + var G = []; + /** + * Rabbit stream cipher algorithm. + * + * This is a legacy version that neglected to convert the key to little-endian. + * This error doesn't affect the cipher's security, + * but it does affect its compatibility with other implementations. + */ + var RabbitLegacy = C_algo.RabbitLegacy = StreamCipher.extend({ + _doReset: function _doReset() { + // Shortcuts + var K = this._key.words; + var iv = this.cfg.iv; -var utils = __webpack_require__(18128); -var Pointer = /*#__PURE__*/function () { - function Pointer(offsetType, type, options) { - if (options === void 0) { - options = {}; - } - this.offsetType = offsetType; - this.type = type; - this.options = options; - if (this.type === 'void') { - this.type = null; - } - if (this.options.type == null) { - this.options.type = 'local'; - } - if (this.options.allowNull == null) { - this.options.allowNull = true; - } - if (this.options.nullValue == null) { - this.options.nullValue = 0; - } - if (this.options.lazy == null) { - this.options.lazy = false; - } - if (this.options.relativeTo) { - if (typeof this.options.relativeTo !== 'function') { - throw new Error('relativeTo option must be a function'); - } - this.relativeToGetter = options.relativeTo; - } - } - var _proto = Pointer.prototype; - _proto.decode = function decode(stream, ctx) { - var _this = this; - var offset = this.offsetType.decode(stream, ctx); + // Generate initial state values + var X = this._X = [K[0], K[3] << 16 | K[2] >>> 16, K[1], K[0] << 16 | K[3] >>> 16, K[2], K[1] << 16 | K[0] >>> 16, K[3], K[2] << 16 | K[1] >>> 16]; - // handle NULL pointers - if (offset === this.options.nullValue && this.options.allowNull) { - return null; - } - var relative; - switch (this.options.type) { - case 'local': - relative = ctx._startOffset; - break; - case 'immediate': - relative = stream.pos - this.offsetType.size(); - break; - case 'parent': - relative = ctx.parent._startOffset; - break; - default: - var c = ctx; - while (c.parent) { - c = c.parent; + // Generate initial counter values + var C = this._C = [K[2] << 16 | K[2] >>> 16, K[0] & 0xffff0000 | K[1] & 0x0000ffff, K[3] << 16 | K[3] >>> 16, K[1] & 0xffff0000 | K[2] & 0x0000ffff, K[0] << 16 | K[0] >>> 16, K[2] & 0xffff0000 | K[3] & 0x0000ffff, K[1] << 16 | K[1] >>> 16, K[3] & 0xffff0000 | K[0] & 0x0000ffff]; + + // Carry bit + this._b = 0; + + // Iterate the system four times + for (var i = 0; i < 4; i++) { + nextState.call(this); } - relative = c._startOffset || 0; - } - if (this.options.relativeTo) { - relative += this.relativeToGetter(ctx); - } - var ptr = offset + relative; - if (this.type != null) { - var val = null; - var decodeValue = function decodeValue() { - if (val != null) { - return val; + + // Modify the counters + for (var i = 0; i < 8; i++) { + C[i] ^= X[i + 4 & 7]; } - var pos = stream.pos; - stream.pos = ptr; - val = _this.type.decode(stream, ctx); - stream.pos = pos; - return val; - }; - // If this is a lazy pointer, define a getter to decode only when needed. - // This obviously only works when the pointer is contained by a Struct. - if (this.options.lazy) { - return new utils.PropertyDescriptor({ - get: decodeValue - }); - } - return decodeValue(); - } else { - return ptr; - } - }; - _proto.size = function size(val, ctx) { - var parent = ctx; - switch (this.options.type) { - case 'local': - case 'immediate': - break; - case 'parent': - ctx = ctx.parent; - break; - default: - // global - while (ctx.parent) { - ctx = ctx.parent; + // IV setup + if (iv) { + // Shortcuts + var IV = iv.words; + var IV_0 = IV[0]; + var IV_1 = IV[1]; + + // Generate four subvectors + var i0 = (IV_0 << 8 | IV_0 >>> 24) & 0x00ff00ff | (IV_0 << 24 | IV_0 >>> 8) & 0xff00ff00; + var i2 = (IV_1 << 8 | IV_1 >>> 24) & 0x00ff00ff | (IV_1 << 24 | IV_1 >>> 8) & 0xff00ff00; + var i1 = i0 >>> 16 | i2 & 0xffff0000; + var i3 = i2 << 16 | i0 & 0x0000ffff; + + // Modify counter values + C[0] ^= i0; + C[1] ^= i1; + C[2] ^= i2; + C[3] ^= i3; + C[4] ^= i0; + C[5] ^= i1; + C[6] ^= i2; + C[7] ^= i3; + + // Iterate the system four times + for (var i = 0; i < 4; i++) { + nextState.call(this); + } } - } - var type = this.type; - if (type == null) { - if (!(val instanceof VoidPointer)) { - throw new Error("Must be a VoidPointer"); - } - var _val = val; - type = _val.type; - val = val.value; - } - if (val && ctx) { - ctx.pointerSize += type.size(val, parent); - } - return this.offsetType.size(); - }; - _proto.encode = function encode(stream, val, ctx) { - var relative; - var parent = ctx; - if (val == null) { - this.offsetType.encode(stream, this.options.nullValue); - return; - } - switch (this.options.type) { - case 'local': - relative = ctx.startOffset; - break; - case 'immediate': - relative = stream.pos + this.offsetType.size(val, parent); - break; - case 'parent': - ctx = ctx.parent; - relative = ctx.startOffset; - break; - default: - // global - relative = 0; - while (ctx.parent) { - ctx = ctx.parent; + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcut + var X = this._X; + + // Iterate the system + nextState.call(this); + + // Generate four keystream words + S[0] = X[0] ^ X[5] >>> 16 ^ X[3] << 16; + S[1] = X[2] ^ X[7] >>> 16 ^ X[5] << 16; + S[2] = X[4] ^ X[1] >>> 16 ^ X[7] << 16; + S[3] = X[6] ^ X[3] >>> 16 ^ X[1] << 16; + for (var i = 0; i < 4; i++) { + // Swap endian + S[i] = (S[i] << 8 | S[i] >>> 24) & 0x00ff00ff | (S[i] << 24 | S[i] >>> 8) & 0xff00ff00; + + // Encrypt + M[offset + i] ^= S[i]; } - } - if (this.options.relativeTo) { - relative += this.relativeToGetter(parent.val); - } - this.offsetType.encode(stream, ctx.pointerOffset - relative); - var type = this.type; - if (type == null) { - if (!(val instanceof VoidPointer)) { - throw new Error("Must be a VoidPointer"); - } - var _val2 = val; - type = _val2.type; - val = val.value; - } - ctx.pointers.push({ - type: type, - val: val, - parent: parent + }, + blockSize: 128 / 32, + ivSize: 64 / 32 }); - return ctx.pointerOffset += type.size(val, parent); - }; - return Pointer; -}(); // A pointer whose type is determined at decode time -var VoidPointer = function VoidPointer(type, value) { - this.type = type; - this.value = value; -}; -exports.Pointer = Pointer; -exports.VoidPointer = VoidPointer; + function nextState() { + // Shortcuts + var X = this._X; + var C = this._C; -/***/ }), + // Save old counter values + for (var i = 0; i < 8; i++) { + C_[i] = C[i]; + } -/***/ 9567: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // Calculate new counter values + C[0] = C[0] + 0x4d34d34d + this._b | 0; + C[1] = C[1] + 0xd34d34d3 + (C[0] >>> 0 < C_[0] >>> 0 ? 1 : 0) | 0; + C[2] = C[2] + 0x34d34d34 + (C[1] >>> 0 < C_[1] >>> 0 ? 1 : 0) | 0; + C[3] = C[3] + 0x4d34d34d + (C[2] >>> 0 < C_[2] >>> 0 ? 1 : 0) | 0; + C[4] = C[4] + 0xd34d34d3 + (C[3] >>> 0 < C_[3] >>> 0 ? 1 : 0) | 0; + C[5] = C[5] + 0x34d34d34 + (C[4] >>> 0 < C_[4] >>> 0 ? 1 : 0) | 0; + C[6] = C[6] + 0x4d34d34d + (C[5] >>> 0 < C_[5] >>> 0 ? 1 : 0) | 0; + C[7] = C[7] + 0xd34d34d3 + (C[6] >>> 0 < C_[6] >>> 0 ? 1 : 0) | 0; + this._b = C[7] >>> 0 < C_[7] >>> 0 ? 1 : 0; -/* eslint-disable es/no-symbol -- required for testing */ -var NATIVE_SYMBOL = __webpack_require__(46887); + // Calculate the g-values + for (var i = 0; i < 8; i++) { + var gx = X[i] + C[i]; -module.exports = NATIVE_SYMBOL - && !Symbol.sham - && typeof Symbol.iterator == 'symbol'; + // Construct high and low argument for squaring + var ga = gx & 0xffff; + var gb = gx >>> 16; + + // Calculate high and low result of squaring + var gh = ((ga * ga >>> 17) + ga * gb >>> 15) + gb * gb; + var gl = ((gx & 0xffff0000) * gx | 0) + ((gx & 0x0000ffff) * gx | 0); + + // High XOR low + G[i] = gh ^ gl; + } + + // Calculate new state values + X[0] = G[0] + (G[7] << 16 | G[7] >>> 16) + (G[6] << 16 | G[6] >>> 16) | 0; + X[1] = G[1] + (G[0] << 8 | G[0] >>> 24) + G[7] | 0; + X[2] = G[2] + (G[1] << 16 | G[1] >>> 16) + (G[0] << 16 | G[0] >>> 16) | 0; + X[3] = G[3] + (G[2] << 8 | G[2] >>> 24) + G[1] | 0; + X[4] = G[4] + (G[3] << 16 | G[3] >>> 16) + (G[2] << 16 | G[2] >>> 16) | 0; + X[5] = G[5] + (G[4] << 8 | G[4] >>> 24) + G[3] | 0; + X[6] = G[6] + (G[5] << 16 | G[5] >>> 16) + (G[4] << 16 | G[4] >>> 16) | 0; + X[7] = G[7] + (G[6] << 8 | G[6] >>> 24) + G[5] | 0; + } + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.RabbitLegacy.encrypt(message, key, cfg); + * var plaintext = CryptoJS.RabbitLegacy.decrypt(ciphertext, key, cfg); + */ + C.RabbitLegacy = StreamCipher._createHelper(RabbitLegacy); + })(); + return CryptoJS.RabbitLegacy; +}); /***/ }), -/***/ 9649: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 6819: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -var defineProperty = (__webpack_require__(95892).f); -var create = __webpack_require__(10819); -var redefineAll = __webpack_require__(15341); -var bind = __webpack_require__(25567); -var anInstance = __webpack_require__(2868); -var iterate = __webpack_require__(80383); -var defineIterator = __webpack_require__(97001); -var setSpecies = __webpack_require__(51334); -var DESCRIPTORS = __webpack_require__(15567); -var fastKey = (__webpack_require__(62148).fastKey); -var InternalStateModule = __webpack_require__(70172); -var setInternalState = InternalStateModule.set; -var internalStateGetterFor = InternalStateModule.getterFor; +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var StreamCipher = C_lib.StreamCipher; + var C_algo = C.algo; -module.exports = { - getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) { - var Constructor = wrapper(function (that, iterable) { - anInstance(that, Prototype); - setInternalState(that, { - type: CONSTRUCTOR_NAME, - index: create(null), - first: undefined, - last: undefined, - size: 0 - }); - if (!DESCRIPTORS) that.size = 0; - if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); - }); + // Reusable objects + var S = []; + var C_ = []; + var G = []; - var Prototype = Constructor.prototype; + /** + * Rabbit stream cipher algorithm + */ + var Rabbit = C_algo.Rabbit = StreamCipher.extend({ + _doReset: function _doReset() { + // Shortcuts + var K = this._key.words; + var iv = this.cfg.iv; - var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME); + // Swap endian + for (var i = 0; i < 4; i++) { + K[i] = (K[i] << 8 | K[i] >>> 24) & 0x00ff00ff | (K[i] << 24 | K[i] >>> 8) & 0xff00ff00; + } - var define = function (that, key, value) { - var state = getInternalState(that); - var entry = getEntry(that, key); - var previous, index; - // change existing entry - if (entry) { - entry.value = value; - // create new entry - } else { - state.last = entry = { - index: index = fastKey(key, true), - key: key, - value: value, - previous: previous = state.last, - next: undefined, - removed: false - }; - if (!state.first) state.first = entry; - if (previous) previous.next = entry; - if (DESCRIPTORS) state.size++; - else that.size++; - // add to index - if (index !== 'F') state.index[index] = entry; - } return that; - }; + // Generate initial state values + var X = this._X = [K[0], K[3] << 16 | K[2] >>> 16, K[1], K[0] << 16 | K[3] >>> 16, K[2], K[1] << 16 | K[0] >>> 16, K[3], K[2] << 16 | K[1] >>> 16]; - var getEntry = function (that, key) { - var state = getInternalState(that); - // fast case - var index = fastKey(key); - var entry; - if (index !== 'F') return state.index[index]; - // frozen object case - for (entry = state.first; entry; entry = entry.next) { - if (entry.key == key) return entry; - } - }; + // Generate initial counter values + var C = this._C = [K[2] << 16 | K[2] >>> 16, K[0] & 0xffff0000 | K[1] & 0x0000ffff, K[3] << 16 | K[3] >>> 16, K[1] & 0xffff0000 | K[2] & 0x0000ffff, K[0] << 16 | K[0] >>> 16, K[2] & 0xffff0000 | K[3] & 0x0000ffff, K[1] << 16 | K[1] >>> 16, K[3] & 0xffff0000 | K[0] & 0x0000ffff]; - redefineAll(Prototype, { - // `{ Map, Set }.prototype.clear()` methods - // https://tc39.es/ecma262/#sec-map.prototype.clear - // https://tc39.es/ecma262/#sec-set.prototype.clear - clear: function clear() { - var that = this; - var state = getInternalState(that); - var data = state.index; - var entry = state.first; - while (entry) { - entry.removed = true; - if (entry.previous) entry.previous = entry.previous.next = undefined; - delete data[entry.index]; - entry = entry.next; + // Carry bit + this._b = 0; + + // Iterate the system four times + for (var i = 0; i < 4; i++) { + nextState.call(this); + } + + // Modify the counters + for (var i = 0; i < 8; i++) { + C[i] ^= X[i + 4 & 7]; + } + + // IV setup + if (iv) { + // Shortcuts + var IV = iv.words; + var IV_0 = IV[0]; + var IV_1 = IV[1]; + + // Generate four subvectors + var i0 = (IV_0 << 8 | IV_0 >>> 24) & 0x00ff00ff | (IV_0 << 24 | IV_0 >>> 8) & 0xff00ff00; + var i2 = (IV_1 << 8 | IV_1 >>> 24) & 0x00ff00ff | (IV_1 << 24 | IV_1 >>> 8) & 0xff00ff00; + var i1 = i0 >>> 16 | i2 & 0xffff0000; + var i3 = i2 << 16 | i0 & 0x0000ffff; + + // Modify counter values + C[0] ^= i0; + C[1] ^= i1; + C[2] ^= i2; + C[3] ^= i3; + C[4] ^= i0; + C[5] ^= i1; + C[6] ^= i2; + C[7] ^= i3; + + // Iterate the system four times + for (var i = 0; i < 4; i++) { + nextState.call(this); + } } - state.first = state.last = undefined; - if (DESCRIPTORS) state.size = 0; - else that.size = 0; - }, - // `{ Map, Set }.prototype.delete(key)` methods - // https://tc39.es/ecma262/#sec-map.prototype.delete - // https://tc39.es/ecma262/#sec-set.prototype.delete - 'delete': function (key) { - var that = this; - var state = getInternalState(that); - var entry = getEntry(that, key); - if (entry) { - var next = entry.next; - var prev = entry.previous; - delete state.index[entry.index]; - entry.removed = true; - if (prev) prev.next = next; - if (next) next.previous = prev; - if (state.first == entry) state.first = next; - if (state.last == entry) state.last = prev; - if (DESCRIPTORS) state.size--; - else that.size--; - } return !!entry; }, - // `{ Map, Set }.prototype.forEach(callbackfn, thisArg = undefined)` methods - // https://tc39.es/ecma262/#sec-map.prototype.foreach - // https://tc39.es/ecma262/#sec-set.prototype.foreach - forEach: function forEach(callbackfn /* , that = undefined */) { - var state = getInternalState(this); - var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined); - var entry; - while (entry = entry ? entry.next : state.first) { - boundFunction(entry.value, entry.key, this); - // revert to the last existing entry - while (entry && entry.removed) entry = entry.previous; + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcut + var X = this._X; + + // Iterate the system + nextState.call(this); + + // Generate four keystream words + S[0] = X[0] ^ X[5] >>> 16 ^ X[3] << 16; + S[1] = X[2] ^ X[7] >>> 16 ^ X[5] << 16; + S[2] = X[4] ^ X[1] >>> 16 ^ X[7] << 16; + S[3] = X[6] ^ X[3] >>> 16 ^ X[1] << 16; + for (var i = 0; i < 4; i++) { + // Swap endian + S[i] = (S[i] << 8 | S[i] >>> 24) & 0x00ff00ff | (S[i] << 24 | S[i] >>> 8) & 0xff00ff00; + + // Encrypt + M[offset + i] ^= S[i]; } }, - // `{ Map, Set}.prototype.has(key)` methods - // https://tc39.es/ecma262/#sec-map.prototype.has - // https://tc39.es/ecma262/#sec-set.prototype.has - has: function has(key) { - return !!getEntry(this, key); - } + blockSize: 128 / 32, + ivSize: 64 / 32 }); + function nextState() { + // Shortcuts + var X = this._X; + var C = this._C; - redefineAll(Prototype, IS_MAP ? { - // `Map.prototype.get(key)` method - // https://tc39.es/ecma262/#sec-map.prototype.get - get: function get(key) { - var entry = getEntry(this, key); - return entry && entry.value; - }, - // `Map.prototype.set(key, value)` method - // https://tc39.es/ecma262/#sec-map.prototype.set - set: function set(key, value) { - return define(this, key === 0 ? 0 : key, value); + // Save old counter values + for (var i = 0; i < 8; i++) { + C_[i] = C[i]; } - } : { - // `Set.prototype.add(value)` method - // https://tc39.es/ecma262/#sec-set.prototype.add - add: function add(value) { - return define(this, value = value === 0 ? 0 : value, value); - } - }); - if (DESCRIPTORS) defineProperty(Prototype, 'size', { - get: function () { - return getInternalState(this).size; - } - }); - return Constructor; - }, - setStrong: function (Constructor, CONSTRUCTOR_NAME, IS_MAP) { - var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator'; - var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME); - var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME); - // `{ Map, Set }.prototype.{ keys, values, entries, @@iterator }()` methods - // https://tc39.es/ecma262/#sec-map.prototype.entries - // https://tc39.es/ecma262/#sec-map.prototype.keys - // https://tc39.es/ecma262/#sec-map.prototype.values - // https://tc39.es/ecma262/#sec-map.prototype-@@iterator - // https://tc39.es/ecma262/#sec-set.prototype.entries - // https://tc39.es/ecma262/#sec-set.prototype.keys - // https://tc39.es/ecma262/#sec-set.prototype.values - // https://tc39.es/ecma262/#sec-set.prototype-@@iterator - defineIterator(Constructor, CONSTRUCTOR_NAME, function (iterated, kind) { - setInternalState(this, { - type: ITERATOR_NAME, - target: iterated, - state: getInternalCollectionState(iterated), - kind: kind, - last: undefined - }); - }, function () { - var state = getInternalIteratorState(this); - var kind = state.kind; - var entry = state.last; - // revert to the last existing entry - while (entry && entry.removed) entry = entry.previous; - // get next entry - if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) { - // or finish the iteration - state.target = undefined; - return { value: undefined, done: true }; - } - // return step by kind - if (kind == 'keys') return { value: entry.key, done: false }; - if (kind == 'values') return { value: entry.value, done: false }; - return { value: [entry.key, entry.value], done: false }; - }, IS_MAP ? 'entries' : 'values', !IS_MAP, true); - - // `{ Map, Set }.prototype[@@species]` accessors - // https://tc39.es/ecma262/#sec-get-map-@@species - // https://tc39.es/ecma262/#sec-get-set-@@species - setSpecies(CONSTRUCTOR_NAME); - } -}; - - -/***/ }), -/***/ 9760: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // Calculate new counter values + C[0] = C[0] + 0x4d34d34d + this._b | 0; + C[1] = C[1] + 0xd34d34d3 + (C[0] >>> 0 < C_[0] >>> 0 ? 1 : 0) | 0; + C[2] = C[2] + 0x34d34d34 + (C[1] >>> 0 < C_[1] >>> 0 ? 1 : 0) | 0; + C[3] = C[3] + 0x4d34d34d + (C[2] >>> 0 < C_[2] >>> 0 ? 1 : 0) | 0; + C[4] = C[4] + 0xd34d34d3 + (C[3] >>> 0 < C_[3] >>> 0 ? 1 : 0) | 0; + C[5] = C[5] + 0x34d34d34 + (C[4] >>> 0 < C_[4] >>> 0 ? 1 : 0) | 0; + C[6] = C[6] + 0x4d34d34d + (C[5] >>> 0 < C_[5] >>> 0 ? 1 : 0) | 0; + C[7] = C[7] + 0xd34d34d3 + (C[6] >>> 0 < C_[6] >>> 0 ? 1 : 0) | 0; + this._b = C[7] >>> 0 < C_[7] >>> 0 ? 1 : 0; -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. + // Calculate the g-values + for (var i = 0; i < 8; i++) { + var gx = X[i] + C[i]; -module.exports = Stream; + // Construct high and low argument for squaring + var ga = gx & 0xffff; + var gb = gx >>> 16; -var EE = (__webpack_require__(64785).EventEmitter); -var inherits = __webpack_require__(89784); + // Calculate high and low result of squaring + var gh = ((ga * ga >>> 17) + ga * gb >>> 15) + gb * gb; + var gl = ((gx & 0xffff0000) * gx | 0) + ((gx & 0x0000ffff) * gx | 0); -inherits(Stream, EE); -Stream.Readable = __webpack_require__(88261); -Stream.Writable = __webpack_require__(29781); -Stream.Duplex = __webpack_require__(14903); -Stream.Transform = __webpack_require__(48569); -Stream.PassThrough = __webpack_require__(17723); -Stream.finished = __webpack_require__(12167) -Stream.pipeline = __webpack_require__(43765) + // High XOR low + G[i] = gh ^ gl; + } -// Backwards-compat with node 0.4.x -Stream.Stream = Stream; + // Calculate new state values + X[0] = G[0] + (G[7] << 16 | G[7] >>> 16) + (G[6] << 16 | G[6] >>> 16) | 0; + X[1] = G[1] + (G[0] << 8 | G[0] >>> 24) + G[7] | 0; + X[2] = G[2] + (G[1] << 16 | G[1] >>> 16) + (G[0] << 16 | G[0] >>> 16) | 0; + X[3] = G[3] + (G[2] << 8 | G[2] >>> 24) + G[1] | 0; + X[4] = G[4] + (G[3] << 16 | G[3] >>> 16) + (G[2] << 16 | G[2] >>> 16) | 0; + X[5] = G[5] + (G[4] << 8 | G[4] >>> 24) + G[3] | 0; + X[6] = G[6] + (G[5] << 16 | G[5] >>> 16) + (G[4] << 16 | G[4] >>> 16) | 0; + X[7] = G[7] + (G[6] << 8 | G[6] >>> 24) + G[5] | 0; + } + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.Rabbit.encrypt(message, key, cfg); + * var plaintext = CryptoJS.Rabbit.decrypt(ciphertext, key, cfg); + */ + C.Rabbit = StreamCipher._createHelper(Rabbit); + })(); + return CryptoJS.Rabbit; +}); +/***/ }), -// old-style streams. Note that the pipe method (the only relevant -// part of this class) is overridden in the Readable class. +/***/ 95086: +/***/ (function(module, exports, __webpack_require__) { -function Stream() { - EE.call(this); -} +"use strict"; -Stream.prototype.pipe = function(dest, options) { - var source = this; - function ondata(chunk) { - if (dest.writable) { - if (false === dest.write(chunk) && source.pause) { - source.pause(); - } - } - } +__webpack_require__(14032); +__webpack_require__(68067); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var StreamCipher = C_lib.StreamCipher; + var C_algo = C.algo; - source.on('data', ondata); + /** + * RC4 stream cipher algorithm. + */ + var RC4 = C_algo.RC4 = StreamCipher.extend({ + _doReset: function _doReset() { + // Shortcuts + var key = this._key; + var keyWords = key.words; + var keySigBytes = key.sigBytes; - function ondrain() { - if (source.readable && source.resume) { - source.resume(); - } - } + // Init sbox + var S = this._S = []; + for (var i = 0; i < 256; i++) { + S[i] = i; + } - dest.on('drain', ondrain); + // Key setup + for (var i = 0, j = 0; i < 256; i++) { + var keyByteIndex = i % keySigBytes; + var keyByte = keyWords[keyByteIndex >>> 2] >>> 24 - keyByteIndex % 4 * 8 & 0xff; + j = (j + S[i] + keyByte) % 256; - // If the 'end' option is not supplied, dest.end() will be called when - // source gets the 'end' or 'close' events. Only dest.end() once. - if (!dest._isStdio && (!options || options.end !== false)) { - source.on('end', onend); - source.on('close', onclose); - } + // Swap + var t = S[i]; + S[i] = S[j]; + S[j] = t; + } - var didOnEnd = false; - function onend() { - if (didOnEnd) return; - didOnEnd = true; + // Counters + this._i = this._j = 0; + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + M[offset] ^= generateKeystreamWord.call(this); + }, + keySize: 256 / 32, + ivSize: 0 + }); + function generateKeystreamWord() { + // Shortcuts + var S = this._S; + var i = this._i; + var j = this._j; - dest.end(); - } + // Generate keystream word + var keystreamWord = 0; + for (var n = 0; n < 4; n++) { + i = (i + 1) % 256; + j = (j + S[i]) % 256; + // Swap + var t = S[i]; + S[i] = S[j]; + S[j] = t; + keystreamWord |= S[(S[i] + S[j]) % 256] << 24 - n * 8; + } - function onclose() { - if (didOnEnd) return; - didOnEnd = true; + // Update counters + this._i = i; + this._j = j; + return keystreamWord; + } - if (typeof dest.destroy === 'function') dest.destroy(); - } + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.RC4.encrypt(message, key, cfg); + * var plaintext = CryptoJS.RC4.decrypt(ciphertext, key, cfg); + */ + C.RC4 = StreamCipher._createHelper(RC4); - // don't leave dangling pipes when there are errors. - function onerror(er) { - cleanup(); - if (EE.listenerCount(this, 'error') === 0) { - throw er; // Unhandled stream error in pipe. - } - } + /** + * Modified RC4 stream cipher algorithm. + */ + var RC4Drop = C_algo.RC4Drop = RC4.extend({ + /** + * Configuration options. + * + * @property {number} drop The number of keystream words to drop. Default 192 + */ + cfg: RC4.cfg.extend({ + drop: 192 + }), + _doReset: function _doReset() { + RC4._doReset.call(this); - source.on('error', onerror); - dest.on('error', onerror); + // Drop + for (var i = this.cfg.drop; i > 0; i--) { + generateKeystreamWord.call(this); + } + } + }); - // remove all the event listeners that were added. - function cleanup() { - source.removeListener('data', ondata); - dest.removeListener('drain', ondrain); + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.RC4Drop.encrypt(message, key, cfg); + * var plaintext = CryptoJS.RC4Drop.decrypt(ciphertext, key, cfg); + */ + C.RC4Drop = StreamCipher._createHelper(RC4Drop); + })(); + return CryptoJS.RC4; +}); - source.removeListener('end', onend); - source.removeListener('close', onclose); +/***/ }), - source.removeListener('error', onerror); - dest.removeListener('error', onerror); +/***/ 1239: +/***/ (function(module, exports, __webpack_require__) { - source.removeListener('end', cleanup); - source.removeListener('close', cleanup); +"use strict"; - dest.removeListener('close', cleanup); - } - source.on('end', cleanup); - source.on('close', cleanup); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + /** @preserve + (c) 2012 by Cédric Mesnil. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + - 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. + 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. + */ - dest.on('close', cleanup); + (function (Math) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var Hasher = C_lib.Hasher; + var C_algo = C.algo; - dest.emit('pipe', source); + // Constants table + var _zl = WordArray.create([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13]); + var _zr = WordArray.create([5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11]); + var _sl = WordArray.create([11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8, 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12, 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5, 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12, 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6]); + var _sr = WordArray.create([8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11]); + var _hl = WordArray.create([0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E]); + var _hr = WordArray.create([0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000]); - // Allow for unix-like usage: A.pipe(B).pipe(C) - return dest; -}; + /** + * RIPEMD160 hash algorithm. + */ + var RIPEMD160 = C_algo.RIPEMD160 = Hasher.extend({ + _doReset: function _doReset() { + this._hash = WordArray.create([0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]); + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Swap endian + for (var i = 0; i < 16; i++) { + // Shortcuts + var offset_i = offset + i; + var M_offset_i = M[offset_i]; + // Swap + M[offset_i] = (M_offset_i << 8 | M_offset_i >>> 24) & 0x00ff00ff | (M_offset_i << 24 | M_offset_i >>> 8) & 0xff00ff00; + } + // Shortcut + var H = this._hash.words; + var hl = _hl.words; + var hr = _hr.words; + var zl = _zl.words; + var zr = _zr.words; + var sl = _sl.words; + var sr = _sr.words; -/***/ }), + // Working variables + var al, bl, cl, dl, el; + var ar, br, cr, dr, er; + ar = al = H[0]; + br = bl = H[1]; + cr = cl = H[2]; + dr = dl = H[3]; + er = el = H[4]; + // Computation + var t; + for (var i = 0; i < 80; i += 1) { + t = al + M[offset + zl[i]] | 0; + if (i < 16) { + t += f1(bl, cl, dl) + hl[0]; + } else if (i < 32) { + t += f2(bl, cl, dl) + hl[1]; + } else if (i < 48) { + t += f3(bl, cl, dl) + hl[2]; + } else if (i < 64) { + t += f4(bl, cl, dl) + hl[3]; + } else { + // if (i<80) { + t += f5(bl, cl, dl) + hl[4]; + } + t = t | 0; + t = rotl(t, sl[i]); + t = t + el | 0; + al = el; + el = dl; + dl = rotl(cl, 10); + cl = bl; + bl = t; + t = ar + M[offset + zr[i]] | 0; + if (i < 16) { + t += f5(br, cr, dr) + hr[0]; + } else if (i < 32) { + t += f4(br, cr, dr) + hr[1]; + } else if (i < 48) { + t += f3(br, cr, dr) + hr[2]; + } else if (i < 64) { + t += f2(br, cr, dr) + hr[3]; + } else { + // if (i<80) { + t += f1(br, cr, dr) + hr[4]; + } + t = t | 0; + t = rotl(t, sr[i]); + t = t + er | 0; + ar = er; + er = dr; + dr = rotl(cr, 10); + cr = br; + br = t; + } + // Intermediate hash value + t = H[1] + cl + dr | 0; + H[1] = H[2] + dl + er | 0; + H[2] = H[3] + el + ar | 0; + H[3] = H[4] + al + br | 0; + H[4] = H[0] + bl + cr | 0; + H[0] = t; + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; -/***/ 9964: -/***/ (function(module) { + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = (nBitsTotal << 8 | nBitsTotal >>> 24) & 0x00ff00ff | (nBitsTotal << 24 | nBitsTotal >>> 8) & 0xff00ff00; + data.sigBytes = (dataWords.length + 1) * 4; -// shim for using process in browser -var process = module.exports = {}; + // Hash final blocks + this._process(); -// cached from whatever global is present so that test runners that stub it -// don't break things. But we need to wrap it in a try catch in case it is -// wrapped in strict mode code which doesn't define any globals. It's inside a -// function because try/catches deoptimize in certain engines. + // Shortcuts + var hash = this._hash; + var H = hash.words; -var cachedSetTimeout; -var cachedClearTimeout; + // Swap endian + for (var i = 0; i < 5; i++) { + // Shortcut + var H_i = H[i]; -function defaultSetTimout() { - throw new Error('setTimeout has not been defined'); -} -function defaultClearTimeout () { - throw new Error('clearTimeout has not been defined'); -} -(function () { - try { - if (typeof setTimeout === 'function') { - cachedSetTimeout = setTimeout; - } else { - cachedSetTimeout = defaultSetTimout; + // Swap + H[i] = (H_i << 8 | H_i >>> 24) & 0x00ff00ff | (H_i << 24 | H_i >>> 8) & 0xff00ff00; } - } catch (e) { - cachedSetTimeout = defaultSetTimout; + + // Return final computed hash + return hash; + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + clone._hash = this._hash.clone(); + return clone; + } + }); + function f1(x, y, z) { + return x ^ y ^ z; } - try { - if (typeof clearTimeout === 'function') { - cachedClearTimeout = clearTimeout; - } else { - cachedClearTimeout = defaultClearTimeout; - } - } catch (e) { - cachedClearTimeout = defaultClearTimeout; + function f2(x, y, z) { + return x & y | ~x & z; } -} ()) -function runTimeout(fun) { - if (cachedSetTimeout === setTimeout) { - //normal enviroments in sane situations - return setTimeout(fun, 0); + function f3(x, y, z) { + return (x | ~y) ^ z; } - // if setTimeout wasn't available but was latter defined - if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) { - cachedSetTimeout = setTimeout; - return setTimeout(fun, 0); - } - try { - // when when somebody has screwed with setTimeout but no I.E. maddness - return cachedSetTimeout(fun, 0); - } catch(e){ - try { - // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally - return cachedSetTimeout.call(null, fun, 0); - } catch(e){ - // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error - return cachedSetTimeout.call(this, fun, 0); - } - } - - -} -function runClearTimeout(marker) { - if (cachedClearTimeout === clearTimeout) { - //normal enviroments in sane situations - return clearTimeout(marker); + function f4(x, y, z) { + return x & z | y & ~z; } - // if clearTimeout wasn't available but was latter defined - if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) { - cachedClearTimeout = clearTimeout; - return clearTimeout(marker); + function f5(x, y, z) { + return x ^ (y | ~z); } - try { - // when when somebody has screwed with setTimeout but no I.E. maddness - return cachedClearTimeout(marker); - } catch (e){ - try { - // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally - return cachedClearTimeout.call(null, marker); - } catch (e){ - // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error. - // Some versions of I.E. have different rules for clearTimeout vs setTimeout - return cachedClearTimeout.call(this, marker); - } + function rotl(x, n) { + return x << n | x >>> 32 - n; } + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.RIPEMD160('message'); + * var hash = CryptoJS.RIPEMD160(wordArray); + */ + C.RIPEMD160 = Hasher._createHelper(RIPEMD160); + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacRIPEMD160(message, key); + */ + C.HmacRIPEMD160 = Hasher._createHmacHelper(RIPEMD160); + })(Math); + return CryptoJS.RIPEMD160; +}); -} -var queue = []; -var draining = false; -var currentQueue; -var queueIndex = -1; - -function cleanUpNextTick() { - if (!draining || !currentQueue) { - return; - } - draining = false; - if (currentQueue.length) { - queue = currentQueue.concat(queue); - } else { - queueIndex = -1; - } - if (queue.length) { - drainQueue(); - } -} - -function drainQueue() { - if (draining) { - return; - } - var timeout = runTimeout(cleanUpNextTick); - draining = true; - - var len = queue.length; - while(len) { - currentQueue = queue; - queue = []; - while (++queueIndex < len) { - if (currentQueue) { - currentQueue[queueIndex].run(); - } - } - queueIndex = -1; - len = queue.length; - } - currentQueue = null; - draining = false; - runClearTimeout(timeout); -} +/***/ }), -process.nextTick = function (fun) { - var args = new Array(arguments.length - 1); - if (arguments.length > 1) { - for (var i = 1; i < arguments.length; i++) { - args[i - 1] = arguments[i]; - } - } - queue.push(new Item(fun, args)); - if (queue.length === 1 && !draining) { - runTimeout(drainQueue); - } -}; +/***/ 37146: +/***/ (function(module, exports, __webpack_require__) { -// v8 likes predictible objects -function Item(fun, array) { - this.fun = fun; - this.array = array; -} -Item.prototype.run = function () { - this.fun.apply(null, this.array); -}; -process.title = 'browser'; -process.browser = true; -process.env = {}; -process.argv = []; -process.version = ''; // empty string to avoid regexp issues -process.versions = {}; +"use strict"; -function noop() {} -process.on = noop; -process.addListener = noop; -process.once = noop; -process.off = noop; -process.removeListener = noop; -process.removeAllListeners = noop; -process.emit = noop; -process.prependListener = noop; -process.prependOnceListener = noop; +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var Hasher = C_lib.Hasher; + var C_algo = C.algo; -process.listeners = function (name) { return [] } + // Reusable object + var W = []; -process.binding = function (name) { - throw new Error('process.binding is not supported'); -}; + /** + * SHA-1 hash algorithm. + */ + var SHA1 = C_algo.SHA1 = Hasher.extend({ + _doReset: function _doReset() { + this._hash = new WordArray.init([0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0]); + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcut + var H = this._hash.words; -process.cwd = function () { return '/' }; -process.chdir = function (dir) { - throw new Error('process.chdir is not supported'); -}; -process.umask = function() { return 0; }; + // Working variables + var a = H[0]; + var b = H[1]; + var c = H[2]; + var d = H[3]; + var e = H[4]; + // Computation + for (var i = 0; i < 80; i++) { + if (i < 16) { + W[i] = M[offset + i] | 0; + } else { + var n = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]; + W[i] = n << 1 | n >>> 31; + } + var t = (a << 5 | a >>> 27) + e + W[i]; + if (i < 20) { + t += (b & c | ~b & d) + 0x5a827999; + } else if (i < 40) { + t += (b ^ c ^ d) + 0x6ed9eba1; + } else if (i < 60) { + t += (b & c | b & d | c & d) - 0x70e44324; + } else /* if (i < 80) */{ + t += (b ^ c ^ d) - 0x359d3e2a; + } + e = d; + d = c; + c = b << 30 | b >>> 2; + b = a; + a = t; + } -/***/ }), + // Intermediate hash value + H[0] = H[0] + a | 0; + H[1] = H[1] + b | 0; + H[2] = H[2] + c | 0; + H[3] = H[3] + d | 0; + H[4] = H[4] + e | 0; + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; -/***/ 10078: -/***/ (function(module) { + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = nBitsTotal; + data.sigBytes = dataWords.length * 4; -"use strict"; + // Hash final blocks + this._process(); + // Return final computed hash + return this._hash; + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + clone._hash = this._hash.clone(); + return clone; + } + }); -/** @type {import('./functionCall')} */ -module.exports = Function.prototype.call; + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA1('message'); + * var hash = CryptoJS.SHA1(wordArray); + */ + C.SHA1 = Hasher._createHelper(SHA1); + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA1(message, key); + */ + C.HmacSHA1 = Hasher._createHmacHelper(SHA1); + })(); + return CryptoJS.SHA1; +}); /***/ }), -/***/ 10196: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(15567); -var definePropertyModule = __webpack_require__(95892); -var anObject = __webpack_require__(34984); -var toIndexedObject = __webpack_require__(98086); -var objectKeys = __webpack_require__(84675); - -// `Object.defineProperties` method -// https://tc39.es/ecma262/#sec-object.defineproperties -// eslint-disable-next-line es/no-object-defineproperties -- safe -module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { - anObject(O); - var props = toIndexedObject(Properties); - var keys = objectKeys(Properties); - var length = keys.length; - var index = 0; - var key; - while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]); - return O; -}; - - -/***/ }), +/***/ 11905: +/***/ (function(module, exports, __webpack_require__) { -/***/ 10447: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +"use strict"; -var uncurryThis = __webpack_require__(38347); -var isCallable = __webpack_require__(94578); -var store = __webpack_require__(55480); -var functionToString = uncurryThis(Function.toString); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66664)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var C_algo = C.algo; + var SHA256 = C_algo.SHA256; -// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper -if (!isCallable(store.inspectSource)) { - store.inspectSource = function (it) { - return functionToString(it); - }; -} + /** + * SHA-224 hash algorithm. + */ + var SHA224 = C_algo.SHA224 = SHA256.extend({ + _doReset: function _doReset() { + this._hash = new WordArray.init([0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4]); + }, + _doFinalize: function _doFinalize() { + var hash = SHA256._doFinalize.call(this); + hash.sigBytes -= 4; + return hash; + } + }); -module.exports = store.inspectSource; + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA224('message'); + * var hash = CryptoJS.SHA224(wordArray); + */ + C.SHA224 = SHA256._createHelper(SHA224); + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA224(message, key); + */ + C.HmacSHA224 = SHA256._createHmacHelper(SHA224); + })(); + return CryptoJS.SHA224; +}); /***/ }), -/***/ 10713: -/***/ (function(module) { +/***/ 66664: +/***/ (function(module, exports, __webpack_require__) { "use strict"; -/** @type {import('./isNaN')} */ -module.exports = Number.isNaN || function isNaN(a) { - return a !== a; -}; +__webpack_require__(20731); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function (Math) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var Hasher = C_lib.Hasher; + var C_algo = C.algo; + // Initialization and round constants tables + var H = []; + var K = []; -/***/ }), + // Compute constants + (function () { + function isPrime(n) { + var sqrtN = Math.sqrt(n); + for (var factor = 2; factor <= sqrtN; factor++) { + if (!(n % factor)) { + return false; + } + } + return true; + } + function getFractionalBits(n) { + return (n - (n | 0)) * 0x100000000 | 0; + } + var n = 2; + var nPrime = 0; + while (nPrime < 64) { + if (isPrime(n)) { + if (nPrime < 8) { + H[nPrime] = getFractionalBits(Math.pow(n, 1 / 2)); + } + K[nPrime] = getFractionalBits(Math.pow(n, 1 / 3)); + nPrime++; + } + n++; + } + })(); -/***/ 10740: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // Reusable object + var W = []; -"use strict"; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; + /** + * SHA-256 hash algorithm. + */ + var SHA256 = C_algo.SHA256 = Hasher.extend({ + _doReset: function _doReset() { + this._hash = new WordArray.init(H.slice(0)); + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcut + var H = this._hash.words; + // Working variables + var a = H[0]; + var b = H[1]; + var c = H[2]; + var d = H[3]; + var e = H[4]; + var f = H[5]; + var g = H[6]; + var h = H[7]; -__webpack_require__(65292); -__webpack_require__(73844); -__webpack_require__(69330); -__webpack_require__(5597); -__webpack_require__(7585); -__webpack_require__(39081); -__webpack_require__(41584); -__webpack_require__(11765); -__webpack_require__(81755); -__webpack_require__(94845); -__webpack_require__(80055); -__webpack_require__(20731); -__webpack_require__(45337); -__webpack_require__(23913); -__webpack_require__(8953); -__webpack_require__(24863); -__webpack_require__(18828); -__webpack_require__(7283); -__webpack_require__(58549); -__webpack_require__(18756); -__webpack_require__(75174); -__webpack_require__(57444); -__webpack_require__(37309); -__webpack_require__(14032); -__webpack_require__(68067); -__webpack_require__(61726); -__webpack_require__(74516); -__webpack_require__(57114); -__webpack_require__(76014); -__webpack_require__(65578); -__webpack_require__(58281); -__webpack_require__(6422); -__webpack_require__(28264); -__webpack_require__(72095); -__webpack_require__(75626); -__webpack_require__(47969); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -__webpack_require__(42437); -__webpack_require__(94712); -var _; -function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } -function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } -function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } -function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } -function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } -function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } -function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } -function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } -function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } -function _interopDefault(ex) { - return ex && typeof ex === 'object' && 'default' in ex ? ex['default'] : ex; -} -var r = _interopDefault(__webpack_require__(62420)); -var utils = __webpack_require__(18128); -var isEqual = _interopDefault(__webpack_require__(45728)); -var unicode = _interopDefault(__webpack_require__(24766)); -var UnicodeTrie = _interopDefault(__webpack_require__(59006)); -var StateMachine = _interopDefault(__webpack_require__(18645)); -var cloneDeep = _interopDefault(__webpack_require__(41613)); -var inflate = _interopDefault(__webpack_require__(3483)); -var brotli = _interopDefault(__webpack_require__(34460)); -var fs = __webpack_require__(48181); -var fontkit = {}; -fontkit.logErrors = false; -var formats = []; -fontkit.registerFormat = function (format) { - formats.push(format); -}; -fontkit.openSync = function (filename, postscriptName) { - var buffer = fs.readFileSync(filename); - return fontkit.create(buffer, postscriptName); -}; -fontkit.open = function (filename, postscriptName, callback) { - if (typeof postscriptName === 'function') { - callback = postscriptName; - postscriptName = null; - } - fs.readFile(filename, function (err, buffer) { - if (err) { - return callback(err); - } - try { - var font = fontkit.create(buffer, postscriptName); - } catch (e) { - return callback(e); - } - return callback(null, font); - }); - return; -}; -fontkit.create = function (buffer, postscriptName) { - for (var i = 0; i < formats.length; i++) { - var format = formats[i]; - if (format.probe(buffer)) { - var font = new format(new r.DecodeStream(buffer)); - if (postscriptName) { - return font.getFont(postscriptName); + // Computation + for (var i = 0; i < 64; i++) { + if (i < 16) { + W[i] = M[offset + i] | 0; + } else { + var gamma0x = W[i - 15]; + var gamma0 = (gamma0x << 25 | gamma0x >>> 7) ^ (gamma0x << 14 | gamma0x >>> 18) ^ gamma0x >>> 3; + var gamma1x = W[i - 2]; + var gamma1 = (gamma1x << 15 | gamma1x >>> 17) ^ (gamma1x << 13 | gamma1x >>> 19) ^ gamma1x >>> 10; + W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16]; + } + var ch = e & f ^ ~e & g; + var maj = a & b ^ a & c ^ b & c; + var sigma0 = (a << 30 | a >>> 2) ^ (a << 19 | a >>> 13) ^ (a << 10 | a >>> 22); + var sigma1 = (e << 26 | e >>> 6) ^ (e << 21 | e >>> 11) ^ (e << 7 | e >>> 25); + var t1 = h + sigma1 + ch + K[i] + W[i]; + var t2 = sigma0 + maj; + h = g; + g = f; + f = e; + e = d + t1 | 0; + d = c; + c = b; + b = a; + a = t1 + t2 | 0; + } + + // Intermediate hash value + H[0] = H[0] + a | 0; + H[1] = H[1] + b | 0; + H[2] = H[2] + c | 0; + H[3] = H[3] + d | 0; + H[4] = H[4] + e | 0; + H[5] = H[5] + f | 0; + H[6] = H[6] + g | 0; + H[7] = H[7] + h | 0; + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; + + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); + dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = nBitsTotal; + data.sigBytes = dataWords.length * 4; + + // Hash final blocks + this._process(); + + // Return final computed hash + return this._hash; + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + clone._hash = this._hash.clone(); + return clone; } - return font; - } - } - throw new Error('Unknown font format'); -}; -fontkit.defaultLanguage = 'en'; -fontkit.setDefaultLanguage = function (lang) { - if (lang === void 0) { - lang = 'en'; - } - fontkit.defaultLanguage = lang; -}; -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 obj; -} -function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { - var desc = {}; - Object.keys(descriptor).forEach(function (key) { - desc[key] = descriptor[key]; - }); - desc.enumerable = !!desc.enumerable; - desc.configurable = !!desc.configurable; - if ('value' in desc || desc.initializer) { - desc.writable = true; - } - desc = decorators.slice().reverse().reduce(function (desc, decorator) { - return decorator(target, property, desc) || desc; - }, desc); - if (context && desc.initializer !== void 0) { - desc.value = desc.initializer ? desc.initializer.call(context) : void 0; - desc.initializer = undefined; - } - if (desc.initializer === void 0) { - Object.defineProperty(target, property, desc); - desc = null; - } - return desc; -} -/** - * This decorator caches the results of a getter or method such that - * the results are lazily computed once, and then cached. - * @private - */ -function cache(target, key, descriptor) { - if (descriptor.get) { - var get = descriptor.get; - descriptor.get = function () { - var value = get.call(this); - Object.defineProperty(this, key, { - value: value - }); - return value; - }; - } else if (typeof descriptor.value === 'function') { - var fn = descriptor.value; - return { - get: function get() { - var cache = new Map(); - function memoized() { - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA256('message'); + * var hash = CryptoJS.SHA256(wordArray); + */ + C.SHA256 = Hasher._createHelper(SHA256); + + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA256(message, key); + */ + C.HmacSHA256 = Hasher._createHmacHelper(SHA256); + })(Math); + return CryptoJS.SHA256; +}); + +/***/ }), + +/***/ 16720: +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function (Math) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var Hasher = C_lib.Hasher; + var C_x64 = C.x64; + var X64Word = C_x64.Word; + var C_algo = C.algo; + + // Constants tables + var RHO_OFFSETS = []; + var PI_INDEXES = []; + var ROUND_CONSTANTS = []; + + // Compute Constants + (function () { + // Compute rho offset constants + var x = 1, + y = 0; + for (var t = 0; t < 24; t++) { + RHO_OFFSETS[x + 5 * y] = (t + 1) * (t + 2) / 2 % 64; + var newX = y % 5; + var newY = (2 * x + 3 * y) % 5; + x = newX; + y = newY; + } + + // Compute pi index constants + for (var x = 0; x < 5; x++) { + for (var y = 0; y < 5; y++) { + PI_INDEXES[x + 5 * y] = y + (2 * x + 3 * y) % 5 * 5; + } + } + + // Compute round constants + var LFSR = 0x01; + for (var i = 0; i < 24; i++) { + var roundConstantMsw = 0; + var roundConstantLsw = 0; + for (var j = 0; j < 7; j++) { + if (LFSR & 0x01) { + var bitPosition = (1 << j) - 1; + if (bitPosition < 32) { + roundConstantLsw ^= 1 << bitPosition; + } else /* if (bitPosition >= 32) */{ + roundConstantMsw ^= 1 << bitPosition - 32; + } } - var key = args.length > 0 ? args[0] : 'value'; - if (cache.has(key)) { - return cache.get(key); + + // Compute next LFSR + if (LFSR & 0x80) { + // Primitive polynomial over GF(2): x^8 + x^6 + x^5 + x^4 + 1 + LFSR = LFSR << 1 ^ 0x71; + } else { + LFSR <<= 1; } - var result = fn.apply(this, args); - cache.set(key, result); - return result; } - Object.defineProperty(this, key, { - value: memoized - }); - return memoized; + ROUND_CONSTANTS[i] = X64Word.create(roundConstantMsw, roundConstantLsw); } - }; - } -} -var SubHeader = new r.Struct({ - firstCode: r.uint16, - entryCount: r.uint16, - idDelta: r.int16, - idRangeOffset: r.uint16 -}); -var CmapGroup = new r.Struct({ - startCharCode: r.uint32, - endCharCode: r.uint32, - glyphID: r.uint32 -}); -var UnicodeValueRange = new r.Struct({ - startUnicodeValue: r.uint24, - additionalCount: r.uint8 -}); -var UVSMapping = new r.Struct({ - unicodeValue: r.uint24, - glyphID: r.uint16 -}); -var DefaultUVS = new r.Array(UnicodeValueRange, r.uint32); -var NonDefaultUVS = new r.Array(UVSMapping, r.uint32); -var VarSelectorRecord = new r.Struct({ - varSelector: r.uint24, - defaultUVS: new r.Pointer(r.uint32, DefaultUVS, { - type: 'parent' - }), - nonDefaultUVS: new r.Pointer(r.uint32, NonDefaultUVS, { - type: 'parent' - }) -}); -var CmapSubtable = new r.VersionedStruct(r.uint16, { - 0: { - // Byte encoding - length: r.uint16, - // Total table length in bytes (set to 262 for format 0) - language: r.uint16, - // Language code for this encoding subtable, or zero if language-independent - codeMap: new r.LazyArray(r.uint8, 256) - }, - 2: { - // High-byte mapping (CJK) - length: r.uint16, - language: r.uint16, - subHeaderKeys: new r.Array(r.uint16, 256), - subHeaderCount: function subHeaderCount(t) { - return Math.max.apply(Math, t.subHeaderKeys); - }, - subHeaders: new r.LazyArray(SubHeader, 'subHeaderCount'), - glyphIndexArray: new r.LazyArray(r.uint16, 'subHeaderCount') - }, - 4: { - // Segment mapping to delta values - length: r.uint16, - // Total table length in bytes - language: r.uint16, - // Language code - segCountX2: r.uint16, - segCount: function segCount(t) { - return t.segCountX2 >> 1; - }, - searchRange: r.uint16, - entrySelector: r.uint16, - rangeShift: r.uint16, - endCode: new r.LazyArray(r.uint16, 'segCount'), - reservedPad: new r.Reserved(r.uint16), - // This value should be zero - startCode: new r.LazyArray(r.uint16, 'segCount'), - idDelta: new r.LazyArray(r.int16, 'segCount'), - idRangeOffset: new r.LazyArray(r.uint16, 'segCount'), - glyphIndexArray: new r.LazyArray(r.uint16, function (t) { - return (t.length - t._currentOffset) / 2; - }) - }, - 6: { - // Trimmed table - length: r.uint16, - language: r.uint16, - firstCode: r.uint16, - entryCount: r.uint16, - glyphIndices: new r.LazyArray(r.uint16, 'entryCount') - }, - 8: { - // mixed 16-bit and 32-bit coverage - reserved: new r.Reserved(r.uint16), - length: r.uint32, - language: r.uint16, - is32: new r.LazyArray(r.uint8, 8192), - nGroups: r.uint32, - groups: new r.LazyArray(CmapGroup, 'nGroups') - }, - 10: { - // Trimmed Array - reserved: new r.Reserved(r.uint16), - length: r.uint32, - language: r.uint32, - firstCode: r.uint32, - entryCount: r.uint32, - glyphIndices: new r.LazyArray(r.uint16, 'numChars') - }, - 12: { - // Segmented coverage - reserved: new r.Reserved(r.uint16), - length: r.uint32, - language: r.uint32, - nGroups: r.uint32, - groups: new r.LazyArray(CmapGroup, 'nGroups') - }, - 13: { - // Many-to-one range mappings (same as 12 except for group.startGlyphID) - reserved: new r.Reserved(r.uint16), - length: r.uint32, - language: r.uint32, - nGroups: r.uint32, - groups: new r.LazyArray(CmapGroup, 'nGroups') - }, - 14: { - // Unicode Variation Sequences - length: r.uint32, - numRecords: r.uint32, - varSelectors: new r.LazyArray(VarSelectorRecord, 'numRecords') - } -}); -var CmapEntry = new r.Struct({ - platformID: r.uint16, - // Platform identifier - encodingID: r.uint16, - // Platform-specific encoding identifier - table: new r.Pointer(r.uint32, CmapSubtable, { - type: 'parent', - lazy: true - }) -}); // character to glyph mapping + })(); -var cmap = new r.Struct({ - version: r.uint16, - numSubtables: r.uint16, - tables: new r.Array(CmapEntry, 'numSubtables') -}); -var head = new r.Struct({ - version: r.int32, - // 0x00010000 (version 1.0) - revision: r.int32, - // set by font manufacturer - checkSumAdjustment: r.uint32, - magicNumber: r.uint32, - // set to 0x5F0F3CF5 - flags: r.uint16, - unitsPerEm: r.uint16, - // range from 64 to 16384 - created: new r.Array(r.int32, 2), - modified: new r.Array(r.int32, 2), - xMin: r.int16, - // for all glyph bounding boxes - yMin: r.int16, - // for all glyph bounding boxes - xMax: r.int16, - // for all glyph bounding boxes - yMax: r.int16, - // for all glyph bounding boxes - macStyle: new r.Bitfield(r.uint16, ['bold', 'italic', 'underline', 'outline', 'shadow', 'condensed', 'extended']), - lowestRecPPEM: r.uint16, - // smallest readable size in pixels - fontDirectionHint: r.int16, - indexToLocFormat: r.int16, - // 0 for short offsets, 1 for long - glyphDataFormat: r.int16 // 0 for current format -}); -var hhea = new r.Struct({ - version: r.int32, - ascent: r.int16, - // Distance from baseline of highest ascender - descent: r.int16, - // Distance from baseline of lowest descender - lineGap: r.int16, - // Typographic line gap - advanceWidthMax: r.uint16, - // Maximum advance width value in 'hmtx' table - minLeftSideBearing: r.int16, - // Maximum advance width value in 'hmtx' table - minRightSideBearing: r.int16, - // Minimum right sidebearing value - xMaxExtent: r.int16, - caretSlopeRise: r.int16, - // Used to calculate the slope of the cursor (rise/run); 1 for vertical - caretSlopeRun: r.int16, - // 0 for vertical - caretOffset: r.int16, - // Set to 0 for non-slanted fonts - reserved: new r.Reserved(r.int16, 4), - metricDataFormat: r.int16, - // 0 for current format - numberOfMetrics: r.uint16 // Number of advance widths in 'hmtx' table -}); -var HmtxEntry = new r.Struct({ - advance: r.uint16, - bearing: r.int16 -}); -var hmtx = new r.Struct({ - metrics: new r.LazyArray(HmtxEntry, function (t) { - return t.parent.hhea.numberOfMetrics; - }), - bearings: new r.LazyArray(r.int16, function (t) { - return t.parent.maxp.numGlyphs - t.parent.hhea.numberOfMetrics; - }) + // Reusable objects for temporary values + var T = []; + (function () { + for (var i = 0; i < 25; i++) { + T[i] = X64Word.create(); + } + })(); + + /** + * SHA-3 hash algorithm. + */ + var SHA3 = C_algo.SHA3 = Hasher.extend({ + /** + * Configuration options. + * + * @property {number} outputLength + * The desired number of bits in the output hash. + * Only values permitted are: 224, 256, 384, 512. + * Default: 512 + */ + cfg: Hasher.cfg.extend({ + outputLength: 512 + }), + _doReset: function _doReset() { + var state = this._state = []; + for (var i = 0; i < 25; i++) { + state[i] = new X64Word.init(); + } + this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32; + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcuts + var state = this._state; + var nBlockSizeLanes = this.blockSize / 2; + + // Absorb + for (var i = 0; i < nBlockSizeLanes; i++) { + // Shortcuts + var M2i = M[offset + 2 * i]; + var M2i1 = M[offset + 2 * i + 1]; + + // Swap endian + M2i = (M2i << 8 | M2i >>> 24) & 0x00ff00ff | (M2i << 24 | M2i >>> 8) & 0xff00ff00; + M2i1 = (M2i1 << 8 | M2i1 >>> 24) & 0x00ff00ff | (M2i1 << 24 | M2i1 >>> 8) & 0xff00ff00; + + // Absorb message into state + var lane = state[i]; + lane.high ^= M2i1; + lane.low ^= M2i; + } + + // Rounds + for (var round = 0; round < 24; round++) { + // Theta + for (var x = 0; x < 5; x++) { + // Mix column lanes + var tMsw = 0, + tLsw = 0; + for (var y = 0; y < 5; y++) { + var lane = state[x + 5 * y]; + tMsw ^= lane.high; + tLsw ^= lane.low; + } + + // Temporary values + var Tx = T[x]; + Tx.high = tMsw; + Tx.low = tLsw; + } + for (var x = 0; x < 5; x++) { + // Shortcuts + var Tx4 = T[(x + 4) % 5]; + var Tx1 = T[(x + 1) % 5]; + var Tx1Msw = Tx1.high; + var Tx1Lsw = Tx1.low; + + // Mix surrounding columns + var tMsw = Tx4.high ^ (Tx1Msw << 1 | Tx1Lsw >>> 31); + var tLsw = Tx4.low ^ (Tx1Lsw << 1 | Tx1Msw >>> 31); + for (var y = 0; y < 5; y++) { + var lane = state[x + 5 * y]; + lane.high ^= tMsw; + lane.low ^= tLsw; + } + } + + // Rho Pi + for (var laneIndex = 1; laneIndex < 25; laneIndex++) { + var tMsw; + var tLsw; + + // Shortcuts + var lane = state[laneIndex]; + var laneMsw = lane.high; + var laneLsw = lane.low; + var rhoOffset = RHO_OFFSETS[laneIndex]; + + // Rotate lanes + if (rhoOffset < 32) { + tMsw = laneMsw << rhoOffset | laneLsw >>> 32 - rhoOffset; + tLsw = laneLsw << rhoOffset | laneMsw >>> 32 - rhoOffset; + } else /* if (rhoOffset >= 32) */{ + tMsw = laneLsw << rhoOffset - 32 | laneMsw >>> 64 - rhoOffset; + tLsw = laneMsw << rhoOffset - 32 | laneLsw >>> 64 - rhoOffset; + } + + // Transpose lanes + var TPiLane = T[PI_INDEXES[laneIndex]]; + TPiLane.high = tMsw; + TPiLane.low = tLsw; + } + + // Rho pi at x = y = 0 + var T0 = T[0]; + var state0 = state[0]; + T0.high = state0.high; + T0.low = state0.low; + + // Chi + for (var x = 0; x < 5; x++) { + for (var y = 0; y < 5; y++) { + // Shortcuts + var laneIndex = x + 5 * y; + var lane = state[laneIndex]; + var TLane = T[laneIndex]; + var Tx1Lane = T[(x + 1) % 5 + 5 * y]; + var Tx2Lane = T[(x + 2) % 5 + 5 * y]; + + // Mix rows + lane.high = TLane.high ^ ~Tx1Lane.high & Tx2Lane.high; + lane.low = TLane.low ^ ~Tx1Lane.low & Tx2Lane.low; + } + } + + // Iota + var lane = state[0]; + var roundConstant = ROUND_CONSTANTS[round]; + lane.high ^= roundConstant.high; + lane.low ^= roundConstant.low; + } + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; + var blockSizeBits = this.blockSize * 32; + + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x1 << 24 - nBitsLeft % 32; + dataWords[(Math.ceil((nBitsLeft + 1) / blockSizeBits) * blockSizeBits >>> 5) - 1] |= 0x80; + data.sigBytes = dataWords.length * 4; + + // Hash final blocks + this._process(); + + // Shortcuts + var state = this._state; + var outputLengthBytes = this.cfg.outputLength / 8; + var outputLengthLanes = outputLengthBytes / 8; + + // Squeeze + var hashWords = []; + for (var i = 0; i < outputLengthLanes; i++) { + // Shortcuts + var lane = state[i]; + var laneMsw = lane.high; + var laneLsw = lane.low; + + // Swap endian + laneMsw = (laneMsw << 8 | laneMsw >>> 24) & 0x00ff00ff | (laneMsw << 24 | laneMsw >>> 8) & 0xff00ff00; + laneLsw = (laneLsw << 8 | laneLsw >>> 24) & 0x00ff00ff | (laneLsw << 24 | laneLsw >>> 8) & 0xff00ff00; + + // Squeeze state to retrieve hash + hashWords.push(laneLsw); + hashWords.push(laneMsw); + } + + // Return final computed hash + return new WordArray.init(hashWords, outputLengthBytes); + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + var state = clone._state = this._state.slice(0); + for (var i = 0; i < 25; i++) { + state[i] = state[i].clone(); + } + return clone; + } + }); + + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA3('message'); + * var hash = CryptoJS.SHA3(wordArray); + */ + C.SHA3 = Hasher._createHelper(SHA3); + + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA3(message, key); + */ + C.HmacSHA3 = Hasher._createHmacHelper(SHA3); + })(Math); + return CryptoJS.SHA3; }); -var maxp = new r.Struct({ - version: r.int32, - numGlyphs: r.uint16, - // The number of glyphs in the font - maxPoints: r.uint16, - // Maximum points in a non-composite glyph - maxContours: r.uint16, - // Maximum contours in a non-composite glyph - maxComponentPoints: r.uint16, - // Maximum points in a composite glyph - maxComponentContours: r.uint16, - // Maximum contours in a composite glyph - maxZones: r.uint16, - // 1 if instructions do not use the twilight zone, 2 otherwise - maxTwilightPoints: r.uint16, - // Maximum points used in Z0 - maxStorage: r.uint16, - // Number of Storage Area locations - maxFunctionDefs: r.uint16, - // Number of FDEFs - maxInstructionDefs: r.uint16, - // Number of IDEFs - maxStackElements: r.uint16, - // Maximum stack depth - maxSizeOfInstructions: r.uint16, - // Maximum byte count for glyph instructions - maxComponentElements: r.uint16, - // Maximum number of components referenced at “top level” for any composite glyph - maxComponentDepth: r.uint16 // Maximum levels of recursion; 1 for simple components + +/***/ }), + +/***/ 27772: +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909), __webpack_require__(51965)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_x64 = C.x64; + var X64Word = C_x64.Word; + var X64WordArray = C_x64.WordArray; + var C_algo = C.algo; + var SHA512 = C_algo.SHA512; + + /** + * SHA-384 hash algorithm. + */ + var SHA384 = C_algo.SHA384 = SHA512.extend({ + _doReset: function _doReset() { + this._hash = new X64WordArray.init([new X64Word.init(0xcbbb9d5d, 0xc1059ed8), new X64Word.init(0x629a292a, 0x367cd507), new X64Word.init(0x9159015a, 0x3070dd17), new X64Word.init(0x152fecd8, 0xf70e5939), new X64Word.init(0x67332667, 0xffc00b31), new X64Word.init(0x8eb44a87, 0x68581511), new X64Word.init(0xdb0c2e0d, 0x64f98fa7), new X64Word.init(0x47b5481d, 0xbefa4fa4)]); + }, + _doFinalize: function _doFinalize() { + var hash = SHA512._doFinalize.call(this); + hash.sigBytes -= 16; + return hash; + } + }); + + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA384('message'); + * var hash = CryptoJS.SHA384(wordArray); + */ + C.SHA384 = SHA512._createHelper(SHA384); + + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA384(message, key); + */ + C.HmacSHA384 = SHA512._createHmacHelper(SHA384); + })(); + return CryptoJS.SHA384; }); -/** - * Gets an encoding name from platform, encoding, and language ids. - * Returned encoding names can be used in iconv-lite to decode text. - */ -function getEncoding(platformID, encodingID, languageID) { - if (languageID === void 0) { - languageID = 0; - } - if (platformID === 1 && MAC_LANGUAGE_ENCODINGS[languageID]) { - return MAC_LANGUAGE_ENCODINGS[languageID]; - } - return ENCODINGS[platformID][encodingID]; -} // Map of platform ids to encoding ids. +/***/ }), -var ENCODINGS = [ -// unicode -['utf16be', 'utf16be', 'utf16be', 'utf16be', 'utf16be', 'utf16be'], -// macintosh -// Mappings available at http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/ -// 0 Roman 17 Malayalam -// 1 Japanese 18 Sinhalese -// 2 Traditional Chinese 19 Burmese -// 3 Korean 20 Khmer -// 4 Arabic 21 Thai -// 5 Hebrew 22 Laotian -// 6 Greek 23 Georgian -// 7 Russian 24 Armenian -// 8 RSymbol 25 Simplified Chinese -// 9 Devanagari 26 Tibetan -// 10 Gurmukhi 27 Mongolian -// 11 Gujarati 28 Geez -// 12 Oriya 29 Slavic -// 13 Bengali 30 Vietnamese -// 14 Tamil 31 Sindhi -// 15 Telugu 32 (Uninterpreted) -// 16 Kannada -['macroman', 'shift-jis', 'big5', 'euc-kr', 'iso-8859-6', 'iso-8859-8', 'macgreek', 'maccyrillic', 'symbol', 'Devanagari', 'Gurmukhi', 'Gujarati', 'Oriya', 'Bengali', 'Tamil', 'Telugu', 'Kannada', 'Malayalam', 'Sinhalese', 'Burmese', 'Khmer', 'macthai', 'Laotian', 'Georgian', 'Armenian', 'gb-2312-80', 'Tibetan', 'Mongolian', 'Geez', 'maccenteuro', 'Vietnamese', 'Sindhi'], -// ISO (deprecated) -['ascii'], -// windows -// Docs here: http://msdn.microsoft.com/en-us/library/system.text.encoding(v=vs.110).aspx -['symbol', 'utf16be', 'shift-jis', 'gb18030', 'big5', 'wansung', 'johab', null, null, null, 'utf16be']]; // Overrides for Mac scripts by language id. -// See http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/Readme.txt +/***/ 51965: +/***/ (function(module, exports, __webpack_require__) { -var MAC_LANGUAGE_ENCODINGS = { - 15: 'maciceland', - 17: 'macturkish', - 18: 'maccroatian', - 24: 'maccenteuro', - 25: 'maccenteuro', - 26: 'maccenteuro', - 27: 'maccenteuro', - 28: 'maccenteuro', - 30: 'maciceland', - 37: 'macromania', - 38: 'maccenteuro', - 39: 'maccenteuro', - 40: 'maccenteuro', - 143: 'macinuit', - // Unsupported by iconv-lite - 146: 'macgaelic' // Unsupported by iconv-lite -}; // Map of platform ids to BCP-47 language codes. +"use strict"; -var LANGUAGES = [ -// unicode -[], { - // macintosh - 0: 'en', - 30: 'fo', - 60: 'ks', - 90: 'rw', - 1: 'fr', - 31: 'fa', - 61: 'ku', - 91: 'rn', - 2: 'de', - 32: 'ru', - 62: 'sd', - 92: 'ny', - 3: 'it', - 33: 'zh', - 63: 'bo', - 93: 'mg', - 4: 'nl', - 34: 'nl-BE', - 64: 'ne', - 94: 'eo', - 5: 'sv', - 35: 'ga', - 65: 'sa', - 128: 'cy', - 6: 'es', - 36: 'sq', - 66: 'mr', - 129: 'eu', - 7: 'da', - 37: 'ro', - 67: 'bn', - 130: 'ca', - 8: 'pt', - 38: 'cz', - 68: 'as', - 131: 'la', - 9: 'no', - 39: 'sk', - 69: 'gu', - 132: 'qu', - 10: 'he', - 40: 'si', - 70: 'pa', - 133: 'gn', - 11: 'ja', - 41: 'yi', - 71: 'or', - 134: 'ay', - 12: 'ar', - 42: 'sr', - 72: 'ml', - 135: 'tt', - 13: 'fi', - 43: 'mk', - 73: 'kn', - 136: 'ug', - 14: 'el', - 44: 'bg', - 74: 'ta', - 137: 'dz', - 15: 'is', - 45: 'uk', - 75: 'te', - 138: 'jv', - 16: 'mt', - 46: 'be', - 76: 'si', - 139: 'su', - 17: 'tr', - 47: 'uz', - 77: 'my', - 140: 'gl', - 18: 'hr', - 48: 'kk', - 78: 'km', - 141: 'af', - 19: 'zh-Hant', - 49: 'az-Cyrl', - 79: 'lo', - 142: 'br', - 20: 'ur', - 50: 'az-Arab', - 80: 'vi', - 143: 'iu', - 21: 'hi', - 51: 'hy', - 81: 'id', - 144: 'gd', - 22: 'th', - 52: 'ka', - 82: 'tl', - 145: 'gv', - 23: 'ko', - 53: 'mo', - 83: 'ms', - 146: 'ga', - 24: 'lt', - 54: 'ky', - 84: 'ms-Arab', - 147: 'to', - 25: 'pl', - 55: 'tg', - 85: 'am', - 148: 'el-polyton', - 26: 'hu', - 56: 'tk', - 86: 'ti', - 149: 'kl', - 27: 'es', - 57: 'mn-CN', - 87: 'om', - 150: 'az', - 28: 'lv', - 58: 'mn', - 88: 'so', - 151: 'nn', - 29: 'se', - 59: 'ps', - 89: 'sw' -}, -// ISO (deprecated) -[], { - // windows - 0x0436: 'af', - 0x4009: 'en-IN', - 0x0487: 'rw', - 0x0432: 'tn', - 0x041C: 'sq', - 0x1809: 'en-IE', - 0x0441: 'sw', - 0x045B: 'si', - 0x0484: 'gsw', - 0x2009: 'en-JM', - 0x0457: 'kok', - 0x041B: 'sk', - 0x045E: 'am', - 0x4409: 'en-MY', - 0x0412: 'ko', - 0x0424: 'sl', - 0x1401: 'ar-DZ', - 0x1409: 'en-NZ', - 0x0440: 'ky', - 0x2C0A: 'es-AR', - 0x3C01: 'ar-BH', - 0x3409: 'en-PH', - 0x0454: 'lo', - 0x400A: 'es-BO', - 0x0C01: 'ar', - 0x4809: 'en-SG', - 0x0426: 'lv', - 0x340A: 'es-CL', - 0x0801: 'ar-IQ', - 0x1C09: 'en-ZA', - 0x0427: 'lt', - 0x240A: 'es-CO', - 0x2C01: 'ar-JO', - 0x2C09: 'en-TT', - 0x082E: 'dsb', - 0x140A: 'es-CR', - 0x3401: 'ar-KW', - 0x0809: 'en-GB', - 0x046E: 'lb', - 0x1C0A: 'es-DO', - 0x3001: 'ar-LB', - 0x0409: 'en', - 0x042F: 'mk', - 0x300A: 'es-EC', - 0x1001: 'ar-LY', - 0x3009: 'en-ZW', - 0x083E: 'ms-BN', - 0x440A: 'es-SV', - 0x1801: 'ary', - 0x0425: 'et', - 0x043E: 'ms', - 0x100A: 'es-GT', - 0x2001: 'ar-OM', - 0x0438: 'fo', - 0x044C: 'ml', - 0x480A: 'es-HN', - 0x4001: 'ar-QA', - 0x0464: 'fil', - 0x043A: 'mt', - 0x080A: 'es-MX', - 0x0401: 'ar-SA', - 0x040B: 'fi', - 0x0481: 'mi', - 0x4C0A: 'es-NI', - 0x2801: 'ar-SY', - 0x080C: 'fr-BE', - 0x047A: 'arn', - 0x180A: 'es-PA', - 0x1C01: 'aeb', - 0x0C0C: 'fr-CA', - 0x044E: 'mr', - 0x3C0A: 'es-PY', - 0x3801: 'ar-AE', - 0x040C: 'fr', - 0x047C: 'moh', - 0x280A: 'es-PE', - 0x2401: 'ar-YE', - 0x140C: 'fr-LU', - 0x0450: 'mn', - 0x500A: 'es-PR', - 0x042B: 'hy', - 0x180C: 'fr-MC', - 0x0850: 'mn-CN', - 0x0C0A: 'es', - 0x044D: 'as', - 0x100C: 'fr-CH', - 0x0461: 'ne', - 0x040A: 'es', - 0x082C: 'az-Cyrl', - 0x0462: 'fy', - 0x0414: 'nb', - 0x540A: 'es-US', - 0x042C: 'az', - 0x0456: 'gl', - 0x0814: 'nn', - 0x380A: 'es-UY', - 0x046D: 'ba', - 0x0437: 'ka', - 0x0482: 'oc', - 0x200A: 'es-VE', - 0x042D: 'eu', - 0x0C07: 'de-AT', - 0x0448: 'or', - 0x081D: 'sv-FI', - 0x0423: 'be', - 0x0407: 'de', - 0x0463: 'ps', - 0x041D: 'sv', - 0x0845: 'bn', - 0x1407: 'de-LI', - 0x0415: 'pl', - 0x045A: 'syr', - 0x0445: 'bn-IN', - 0x1007: 'de-LU', - 0x0416: 'pt', - 0x0428: 'tg', - 0x201A: 'bs-Cyrl', - 0x0807: 'de-CH', - 0x0816: 'pt-PT', - 0x085F: 'tzm', - 0x141A: 'bs', - 0x0408: 'el', - 0x0446: 'pa', - 0x0449: 'ta', - 0x047E: 'br', - 0x046F: 'kl', - 0x046B: 'qu-BO', - 0x0444: 'tt', - 0x0402: 'bg', - 0x0447: 'gu', - 0x086B: 'qu-EC', - 0x044A: 'te', - 0x0403: 'ca', - 0x0468: 'ha', - 0x0C6B: 'qu', - 0x041E: 'th', - 0x0C04: 'zh-HK', - 0x040D: 'he', - 0x0418: 'ro', - 0x0451: 'bo', - 0x1404: 'zh-MO', - 0x0439: 'hi', - 0x0417: 'rm', - 0x041F: 'tr', - 0x0804: 'zh', - 0x040E: 'hu', - 0x0419: 'ru', - 0x0442: 'tk', - 0x1004: 'zh-SG', - 0x040F: 'is', - 0x243B: 'smn', - 0x0480: 'ug', - 0x0404: 'zh-TW', - 0x0470: 'ig', - 0x103B: 'smj-NO', - 0x0422: 'uk', - 0x0483: 'co', - 0x0421: 'id', - 0x143B: 'smj', - 0x042E: 'hsb', - 0x041A: 'hr', - 0x045D: 'iu', - 0x0C3B: 'se-FI', - 0x0420: 'ur', - 0x101A: 'hr-BA', - 0x085D: 'iu-Latn', - 0x043B: 'se', - 0x0843: 'uz-Cyrl', - 0x0405: 'cs', - 0x083C: 'ga', - 0x083B: 'se-SE', - 0x0443: 'uz', - 0x0406: 'da', - 0x0434: 'xh', - 0x203B: 'sms', - 0x042A: 'vi', - 0x048C: 'prs', - 0x0435: 'zu', - 0x183B: 'sma-NO', - 0x0452: 'cy', - 0x0465: 'dv', - 0x0410: 'it', - 0x1C3B: 'sms', - 0x0488: 'wo', - 0x0813: 'nl-BE', - 0x0810: 'it-CH', - 0x044F: 'sa', - 0x0485: 'sah', - 0x0413: 'nl', - 0x0411: 'ja', - 0x1C1A: 'sr-Cyrl-BA', - 0x0478: 'ii', - 0x0C09: 'en-AU', - 0x044B: 'kn', - 0x0C1A: 'sr', - 0x046A: 'yo', - 0x2809: 'en-BZ', - 0x043F: 'kk', - 0x181A: 'sr-Latn-BA', - 0x1009: 'en-CA', - 0x0453: 'km', - 0x081A: 'sr-Latn', - 0x2409: 'en-029', - 0x0486: 'quc', - 0x046C: 'nso' -}]; -var NameRecord = new r.Struct({ - platformID: r.uint16, - encodingID: r.uint16, - languageID: r.uint16, - nameID: r.uint16, - length: r.uint16, - string: new r.Pointer(r.uint16, new r.String('length', function (t) { - return getEncoding(t.platformID, t.encodingID, t.languageID); - }), { - type: 'parent', - relativeTo: function relativeTo(ctx) { - return ctx.parent.stringOffset; - }, - allowNull: false - }) -}); -var LangTagRecord = new r.Struct({ - length: r.uint16, - tag: new r.Pointer(r.uint16, new r.String('length', 'utf16be'), { - type: 'parent', - relativeTo: function relativeTo(ctx) { - return ctx.stringOffset; - } - }) -}); -var NameTable = new r.VersionedStruct(r.uint16, { - 0: { - count: r.uint16, - stringOffset: r.uint16, - records: new r.Array(NameRecord, 'count') - }, - 1: { - count: r.uint16, - stringOffset: r.uint16, - records: new r.Array(NameRecord, 'count'), - langTagCount: r.uint16, - langTags: new r.Array(LangTagRecord, 'langTagCount') - } -}); -var NAMES = ['copyright', 'fontFamily', 'fontSubfamily', 'uniqueSubfamily', 'fullName', 'version', 'postscriptName', -// Note: A font may have only one PostScript name and that name must be ASCII. -'trademark', 'manufacturer', 'designer', 'description', 'vendorURL', 'designerURL', 'license', 'licenseURL', null, -// reserved -'preferredFamily', 'preferredSubfamily', 'compatibleFull', 'sampleText', 'postscriptCIDFontName', 'wwsFamilyName', 'wwsSubfamilyName']; -NameTable.process = function (stream) { - var records = {}; - for (var _iterator = _createForOfIteratorHelperLoose(this.records), _step; !(_step = _iterator()).done;) { - var record = _step.value; - // find out what language this is for - var language = LANGUAGES[record.platformID][record.languageID]; - if (language == null && this.langTags != null && record.languageID >= 0x8000) { - language = this.langTags[record.languageID - 0x8000].tag; - } - if (language == null) { - language = record.platformID + '-' + record.languageID; - } // if the nameID is >= 256, it is a font feature record (AAT) - var key = record.nameID >= 256 ? 'fontFeatures' : NAMES[record.nameID] || record.nameID; - if (records[key] == null) { - records[key] = {}; - } - var obj = records[key]; - if (record.nameID >= 256) { - obj = obj[record.nameID] || (obj[record.nameID] = {}); - } - if (typeof record.string === 'string' || typeof obj[language] !== 'string') { - obj[language] = record.string; - } - } - this.records = records; -}; -NameTable.preEncode = function () { - if (Array.isArray(this.records)) return; - this.version = 0; - var records = []; - for (var key in this.records) { - var val = this.records[key]; - if (key === 'fontFeatures') continue; - records.push({ - platformID: 3, - encodingID: 1, - languageID: 0x409, - nameID: NAMES.indexOf(key), - length: Buffer.byteLength(val.en, 'utf16le'), - string: val.en - }); - if (key === 'postscriptName') { - records.push({ - platformID: 1, - encodingID: 0, - languageID: 0, - nameID: NAMES.indexOf(key), - length: val.en.length, - string: val.en - }); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Hasher = C_lib.Hasher; + var C_x64 = C.x64; + var X64Word = C_x64.Word; + var X64WordArray = C_x64.WordArray; + var C_algo = C.algo; + function X64Word_create() { + return X64Word.create.apply(X64Word, arguments); } - } - this.records = records; - this.count = records.length; - this.stringOffset = NameTable.size(this, null, false); -}; -var OS2 = new r.VersionedStruct(r.uint16, { - header: { - xAvgCharWidth: r.int16, - // average weighted advance width of lower case letters and space - usWeightClass: r.uint16, - // visual weight of stroke in glyphs - usWidthClass: r.uint16, - // relative change from the normal aspect ratio (width to height ratio) - fsType: new r.Bitfield(r.uint16, [ - // Indicates font embedding licensing rights - null, 'noEmbedding', 'viewOnly', 'editable', null, null, null, null, 'noSubsetting', 'bitmapOnly']), - ySubscriptXSize: r.int16, - // recommended horizontal size in pixels for subscripts - ySubscriptYSize: r.int16, - // recommended vertical size in pixels for subscripts - ySubscriptXOffset: r.int16, - // recommended horizontal offset for subscripts - ySubscriptYOffset: r.int16, - // recommended vertical offset form the baseline for subscripts - ySuperscriptXSize: r.int16, - // recommended horizontal size in pixels for superscripts - ySuperscriptYSize: r.int16, - // recommended vertical size in pixels for superscripts - ySuperscriptXOffset: r.int16, - // recommended horizontal offset for superscripts - ySuperscriptYOffset: r.int16, - // recommended vertical offset from the baseline for superscripts - yStrikeoutSize: r.int16, - // width of the strikeout stroke - yStrikeoutPosition: r.int16, - // position of the strikeout stroke relative to the baseline - sFamilyClass: r.int16, - // classification of font-family design - panose: new r.Array(r.uint8, 10), - // describe the visual characteristics of a given typeface - ulCharRange: new r.Array(r.uint32, 4), - vendorID: new r.String(4), - // four character identifier for the font vendor - fsSelection: new r.Bitfield(r.uint16, [ - // bit field containing information about the font - 'italic', 'underscore', 'negative', 'outlined', 'strikeout', 'bold', 'regular', 'useTypoMetrics', 'wws', 'oblique']), - usFirstCharIndex: r.uint16, - // The minimum Unicode index in this font - usLastCharIndex: r.uint16 // The maximum Unicode index in this font - }, - // The Apple version of this table ends here, but the Microsoft one continues on... - 0: {}, - 1: { - typoAscender: r.int16, - typoDescender: r.int16, - typoLineGap: r.int16, - winAscent: r.uint16, - winDescent: r.uint16, - codePageRange: new r.Array(r.uint32, 2) - }, - 2: { - // these should be common with version 1 somehow - typoAscender: r.int16, - typoDescender: r.int16, - typoLineGap: r.int16, - winAscent: r.uint16, - winDescent: r.uint16, - codePageRange: new r.Array(r.uint32, 2), - xHeight: r.int16, - capHeight: r.int16, - defaultChar: r.uint16, - breakChar: r.uint16, - maxContent: r.uint16 - }, - 5: { - typoAscender: r.int16, - typoDescender: r.int16, - typoLineGap: r.int16, - winAscent: r.uint16, - winDescent: r.uint16, - codePageRange: new r.Array(r.uint32, 2), - xHeight: r.int16, - capHeight: r.int16, - defaultChar: r.uint16, - breakChar: r.uint16, - maxContent: r.uint16, - usLowerOpticalPointSize: r.uint16, - usUpperOpticalPointSize: r.uint16 - } -}); -var versions = OS2.versions; -versions[3] = versions[4] = versions[2]; -var post = new r.VersionedStruct(r.fixed32, { - header: { - // these fields exist at the top of all versions - italicAngle: r.fixed32, - // Italic angle in counter-clockwise degrees from the vertical. - underlinePosition: r.int16, - // Suggested distance of the top of the underline from the baseline - underlineThickness: r.int16, - // Suggested values for the underline thickness - isFixedPitch: r.uint32, - // Whether the font is monospaced - minMemType42: r.uint32, - // Minimum memory usage when a TrueType font is downloaded as a Type 42 font - maxMemType42: r.uint32, - // Maximum memory usage when a TrueType font is downloaded as a Type 42 font - minMemType1: r.uint32, - // Minimum memory usage when a TrueType font is downloaded as a Type 1 font - maxMemType1: r.uint32 // Maximum memory usage when a TrueType font is downloaded as a Type 1 font - }, - 1: {}, - // version 1 has no additional fields - 2: { - numberOfGlyphs: r.uint16, - glyphNameIndex: new r.Array(r.uint16, 'numberOfGlyphs'), - names: new r.Array(new r.String(r.uint8)) - }, - 2.5: { - numberOfGlyphs: r.uint16, - offsets: new r.Array(r.uint8, 'numberOfGlyphs') - }, - 3: {}, - // version 3 has no additional fields - 4: { - map: new r.Array(r.uint32, function (t) { - return t.parent.maxp.numGlyphs; - }) - } -}); -var cvt = new r.Struct({ - controlValues: new r.Array(r.int16) -}); -// These instructions are known as the font program. The main use of this table -// is for the definition of functions that are used in many different glyph programs. + // Constants + var K = [X64Word_create(0x428a2f98, 0xd728ae22), X64Word_create(0x71374491, 0x23ef65cd), X64Word_create(0xb5c0fbcf, 0xec4d3b2f), X64Word_create(0xe9b5dba5, 0x8189dbbc), X64Word_create(0x3956c25b, 0xf348b538), X64Word_create(0x59f111f1, 0xb605d019), X64Word_create(0x923f82a4, 0xaf194f9b), X64Word_create(0xab1c5ed5, 0xda6d8118), X64Word_create(0xd807aa98, 0xa3030242), X64Word_create(0x12835b01, 0x45706fbe), X64Word_create(0x243185be, 0x4ee4b28c), X64Word_create(0x550c7dc3, 0xd5ffb4e2), X64Word_create(0x72be5d74, 0xf27b896f), X64Word_create(0x80deb1fe, 0x3b1696b1), X64Word_create(0x9bdc06a7, 0x25c71235), X64Word_create(0xc19bf174, 0xcf692694), X64Word_create(0xe49b69c1, 0x9ef14ad2), X64Word_create(0xefbe4786, 0x384f25e3), X64Word_create(0x0fc19dc6, 0x8b8cd5b5), X64Word_create(0x240ca1cc, 0x77ac9c65), X64Word_create(0x2de92c6f, 0x592b0275), X64Word_create(0x4a7484aa, 0x6ea6e483), X64Word_create(0x5cb0a9dc, 0xbd41fbd4), X64Word_create(0x76f988da, 0x831153b5), X64Word_create(0x983e5152, 0xee66dfab), X64Word_create(0xa831c66d, 0x2db43210), X64Word_create(0xb00327c8, 0x98fb213f), X64Word_create(0xbf597fc7, 0xbeef0ee4), X64Word_create(0xc6e00bf3, 0x3da88fc2), X64Word_create(0xd5a79147, 0x930aa725), X64Word_create(0x06ca6351, 0xe003826f), X64Word_create(0x14292967, 0x0a0e6e70), X64Word_create(0x27b70a85, 0x46d22ffc), X64Word_create(0x2e1b2138, 0x5c26c926), X64Word_create(0x4d2c6dfc, 0x5ac42aed), X64Word_create(0x53380d13, 0x9d95b3df), X64Word_create(0x650a7354, 0x8baf63de), X64Word_create(0x766a0abb, 0x3c77b2a8), X64Word_create(0x81c2c92e, 0x47edaee6), X64Word_create(0x92722c85, 0x1482353b), X64Word_create(0xa2bfe8a1, 0x4cf10364), X64Word_create(0xa81a664b, 0xbc423001), X64Word_create(0xc24b8b70, 0xd0f89791), X64Word_create(0xc76c51a3, 0x0654be30), X64Word_create(0xd192e819, 0xd6ef5218), X64Word_create(0xd6990624, 0x5565a910), X64Word_create(0xf40e3585, 0x5771202a), X64Word_create(0x106aa070, 0x32bbd1b8), X64Word_create(0x19a4c116, 0xb8d2d0c8), X64Word_create(0x1e376c08, 0x5141ab53), X64Word_create(0x2748774c, 0xdf8eeb99), X64Word_create(0x34b0bcb5, 0xe19b48a8), X64Word_create(0x391c0cb3, 0xc5c95a63), X64Word_create(0x4ed8aa4a, 0xe3418acb), X64Word_create(0x5b9cca4f, 0x7763e373), X64Word_create(0x682e6ff3, 0xd6b2b8a3), X64Word_create(0x748f82ee, 0x5defb2fc), X64Word_create(0x78a5636f, 0x43172f60), X64Word_create(0x84c87814, 0xa1f0ab72), X64Word_create(0x8cc70208, 0x1a6439ec), X64Word_create(0x90befffa, 0x23631e28), X64Word_create(0xa4506ceb, 0xde82bde9), X64Word_create(0xbef9a3f7, 0xb2c67915), X64Word_create(0xc67178f2, 0xe372532b), X64Word_create(0xca273ece, 0xea26619c), X64Word_create(0xd186b8c7, 0x21c0c207), X64Word_create(0xeada7dd6, 0xcde0eb1e), X64Word_create(0xf57d4f7f, 0xee6ed178), X64Word_create(0x06f067aa, 0x72176fba), X64Word_create(0x0a637dc5, 0xa2c898a6), X64Word_create(0x113f9804, 0xbef90dae), X64Word_create(0x1b710b35, 0x131c471b), X64Word_create(0x28db77f5, 0x23047d84), X64Word_create(0x32caab7b, 0x40c72493), X64Word_create(0x3c9ebe0a, 0x15c9bebc), X64Word_create(0x431d67c4, 0x9c100d4c), X64Word_create(0x4cc5d4be, 0xcb3e42b6), X64Word_create(0x597f299c, 0xfc657e2a), X64Word_create(0x5fcb6fab, 0x3ad6faec), X64Word_create(0x6c44198c, 0x4a475817)]; -var fpgm = new r.Struct({ - instructions: new r.Array(r.uint8) -}); -var loca = new r.VersionedStruct('head.indexToLocFormat', { - 0: { - offsets: new r.Array(r.uint16) - }, - 1: { - offsets: new r.Array(r.uint32) - } -}); -loca.process = function () { - if (this.version === 0) { - for (var i = 0; i < this.offsets.length; i++) { - this.offsets[i] <<= 1; - } - } -}; -loca.preEncode = function () { - if (this.version === 0) { - for (var i = 0; i < this.offsets.length; i++) { - this.offsets[i] >>>= 1; - } - } -}; -var prep = new r.Struct({ - controlValueProgram: new r.Array(r.uint8) -}); -var glyf = new r.Array(new r.Buffer()); -var CFFIndex = /*#__PURE__*/function () { - function CFFIndex(type) { - this.type = type; - } - var _proto = CFFIndex.prototype; - _proto.getCFFVersion = function getCFFVersion(ctx) { - while (ctx && !ctx.hdrSize) { - ctx = ctx.parent; - } - return ctx ? ctx.version : -1; - }; - _proto.decode = function decode(stream, parent) { - var version = this.getCFFVersion(parent); - var count = version >= 2 ? stream.readUInt32BE() : stream.readUInt16BE(); - if (count === 0) { - return []; - } - var offSize = stream.readUInt8(); - var offsetType; - if (offSize === 1) { - offsetType = r.uint8; - } else if (offSize === 2) { - offsetType = r.uint16; - } else if (offSize === 3) { - offsetType = r.uint24; - } else if (offSize === 4) { - offsetType = r.uint32; - } else { - throw new Error("Bad offset size in CFFIndex: ".concat(offSize, " ").concat(stream.pos)); - } - var ret = []; - var startPos = stream.pos + (count + 1) * offSize - 1; - var start = offsetType.decode(stream); - for (var i = 0; i < count; i++) { - var end = offsetType.decode(stream); - if (this.type != null) { - var pos = stream.pos; - stream.pos = startPos + start; - parent.length = end - start; - ret.push(this.type.decode(stream, parent)); - stream.pos = pos; - } else { - ret.push({ - offset: startPos + start, - length: end - start - }); + // Reusable objects + var W = []; + (function () { + for (var i = 0; i < 80; i++) { + W[i] = X64Word_create(); } - start = end; - } - stream.pos = startPos + start; - return ret; - }; - _proto.size = function size(arr, parent) { - var size = 2; - if (arr.length === 0) { - return size; - } - var type = this.type || new r.Buffer(); // find maximum offset to detminine offset type - - var offset = 1; - for (var i = 0; i < arr.length; i++) { - var item = arr[i]; - offset += type.size(item, parent); - } - var offsetType; - if (offset <= 0xff) { - offsetType = r.uint8; - } else if (offset <= 0xffff) { - offsetType = r.uint16; - } else if (offset <= 0xffffff) { - offsetType = r.uint24; - } else if (offset <= 0xffffffff) { - offsetType = r.uint32; - } else { - throw new Error("Bad offset in CFFIndex"); - } - size += 1 + offsetType.size() * (arr.length + 1); - size += offset - 1; - return size; - }; - _proto.encode = function encode(stream, arr, parent) { - stream.writeUInt16BE(arr.length); - if (arr.length === 0) { - return; - } - var type = this.type || new r.Buffer(); // find maximum offset to detminine offset type + })(); - var sizes = []; - var offset = 1; - for (var _iterator2 = _createForOfIteratorHelperLoose(arr), _step2; !(_step2 = _iterator2()).done;) { - var item = _step2.value; - var s = type.size(item, parent); - sizes.push(s); - offset += s; - } - var offsetType; - if (offset <= 0xff) { - offsetType = r.uint8; - } else if (offset <= 0xffff) { - offsetType = r.uint16; - } else if (offset <= 0xffffff) { - offsetType = r.uint24; - } else if (offset <= 0xffffffff) { - offsetType = r.uint32; - } else { - throw new Error("Bad offset in CFFIndex"); - } // write offset size + /** + * SHA-512 hash algorithm. + */ + var SHA512 = C_algo.SHA512 = Hasher.extend({ + _doReset: function _doReset() { + this._hash = new X64WordArray.init([new X64Word.init(0x6a09e667, 0xf3bcc908), new X64Word.init(0xbb67ae85, 0x84caa73b), new X64Word.init(0x3c6ef372, 0xfe94f82b), new X64Word.init(0xa54ff53a, 0x5f1d36f1), new X64Word.init(0x510e527f, 0xade682d1), new X64Word.init(0x9b05688c, 0x2b3e6c1f), new X64Word.init(0x1f83d9ab, 0xfb41bd6b), new X64Word.init(0x5be0cd19, 0x137e2179)]); + }, + _doProcessBlock: function _doProcessBlock(M, offset) { + // Shortcuts + var H = this._hash.words; + var H0 = H[0]; + var H1 = H[1]; + var H2 = H[2]; + var H3 = H[3]; + var H4 = H[4]; + var H5 = H[5]; + var H6 = H[6]; + var H7 = H[7]; + var H0h = H0.high; + var H0l = H0.low; + var H1h = H1.high; + var H1l = H1.low; + var H2h = H2.high; + var H2l = H2.low; + var H3h = H3.high; + var H3l = H3.low; + var H4h = H4.high; + var H4l = H4.low; + var H5h = H5.high; + var H5l = H5.low; + var H6h = H6.high; + var H6l = H6.low; + var H7h = H7.high; + var H7l = H7.low; - stream.writeUInt8(offsetType.size()); // write elements + // Working variables + var ah = H0h; + var al = H0l; + var bh = H1h; + var bl = H1l; + var ch = H2h; + var cl = H2l; + var dh = H3h; + var dl = H3l; + var eh = H4h; + var el = H4l; + var fh = H5h; + var fl = H5l; + var gh = H6h; + var gl = H6l; + var hh = H7h; + var hl = H7l; - offset = 1; - offsetType.encode(stream, offset); - for (var _i0 = 0, _sizes = sizes; _i0 < _sizes.length; _i0++) { - var size = _sizes[_i0]; - offset += size; - offsetType.encode(stream, offset); - } - for (var _iterator3 = _createForOfIteratorHelperLoose(arr), _step3; !(_step3 = _iterator3()).done;) { - var _item = _step3.value; - type.encode(stream, _item, parent); - } - return; - }; - return CFFIndex; -}(); -var FLOAT_EOF = 0xf; -var FLOAT_LOOKUP = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.', 'E', 'E-', null, '-']; -var FLOAT_ENCODE_LOOKUP = { - '.': 10, - 'E': 11, - 'E-': 12, - '-': 14 -}; -var CFFOperand = /*#__PURE__*/function () { - function CFFOperand() {} - CFFOperand.decode = function decode(stream, value) { - if (32 <= value && value <= 246) { - return value - 139; - } - if (247 <= value && value <= 250) { - return (value - 247) * 256 + stream.readUInt8() + 108; - } - if (251 <= value && value <= 254) { - return -(value - 251) * 256 - stream.readUInt8() - 108; - } - if (value === 28) { - return stream.readInt16BE(); - } - if (value === 29) { - return stream.readInt32BE(); - } - if (value === 30) { - var str = ''; - while (true) { - var b = stream.readUInt8(); - var n1 = b >> 4; - if (n1 === FLOAT_EOF) { - break; - } - str += FLOAT_LOOKUP[n1]; - var n2 = b & 15; - if (n2 === FLOAT_EOF) { - break; - } - str += FLOAT_LOOKUP[n2]; - } - return parseFloat(str); - } - return null; - }; - CFFOperand.size = function size(value) { - // if the value needs to be forced to the largest size (32 bit) - // e.g. for unknown pointers, set to 32768 - if (value.forceLarge) { - value = 32768; - } - if ((value | 0) !== value) { - // floating point - var str = '' + value; - return 1 + Math.ceil((str.length + 1) / 2); - } else if (-107 <= value && value <= 107) { - return 1; - } else if (108 <= value && value <= 1131 || -1131 <= value && value <= -108) { - return 2; - } else if (-32768 <= value && value <= 32767) { - return 3; - } else { - return 5; - } - }; - CFFOperand.encode = function encode(stream, value) { - // if the value needs to be forced to the largest size (32 bit) - // e.g. for unknown pointers, save the old value and set to 32768 - var val = Number(value); - if (value.forceLarge) { - stream.writeUInt8(29); - return stream.writeInt32BE(val); - } else if ((val | 0) !== val) { - // floating point - stream.writeUInt8(30); - var str = '' + val; - for (var i = 0; i < str.length; i += 2) { - var c1 = str[i]; - var n1 = FLOAT_ENCODE_LOOKUP[c1] || +c1; - if (i === str.length - 1) { - var n2 = FLOAT_EOF; - } else { - var c2 = str[i + 1]; - var n2 = FLOAT_ENCODE_LOOKUP[c2] || +c2; - } - stream.writeUInt8(n1 << 4 | n2 & 15); - } - if (n2 !== FLOAT_EOF) { - return stream.writeUInt8(FLOAT_EOF << 4); - } - } else if (-107 <= val && val <= 107) { - return stream.writeUInt8(val + 139); - } else if (108 <= val && val <= 1131) { - val -= 108; - stream.writeUInt8((val >> 8) + 247); - return stream.writeUInt8(val & 0xff); - } else if (-1131 <= val && val <= -108) { - val = -val - 108; - stream.writeUInt8((val >> 8) + 251); - return stream.writeUInt8(val & 0xff); - } else if (-32768 <= val && val <= 32767) { - stream.writeUInt8(28); - return stream.writeInt16BE(val); - } else { - stream.writeUInt8(29); - return stream.writeInt32BE(val); - } - }; - return CFFOperand; -}(); -var CFFDict = /*#__PURE__*/function () { - function CFFDict(ops) { - if (ops === void 0) { - ops = []; - } - this.ops = ops; - this.fields = {}; - for (var _iterator4 = _createForOfIteratorHelperLoose(ops), _step4; !(_step4 = _iterator4()).done;) { - var field = _step4.value; - var key = Array.isArray(field[0]) ? field[0][0] << 8 | field[0][1] : field[0]; - this.fields[key] = field; - } - } - var _proto2 = CFFDict.prototype; - _proto2.decodeOperands = function decodeOperands(type, stream, ret, operands) { - var _this = this; - if (Array.isArray(type)) { - return operands.map(function (op, i) { - return _this.decodeOperands(type[i], stream, ret, [op]); - }); - } else if (type.decode != null) { - return type.decode(stream, ret, operands); - } else { - switch (type) { - case 'number': - case 'offset': - case 'sid': - return operands[0]; - case 'boolean': - return !!operands[0]; - default: - return operands; - } - } - }; - _proto2.encodeOperands = function encodeOperands(type, stream, ctx, operands) { - var _this2 = this; - if (Array.isArray(type)) { - return operands.map(function (op, i) { - return _this2.encodeOperands(type[i], stream, ctx, op)[0]; - }); - } else if (type.encode != null) { - return type.encode(stream, operands, ctx); - } else if (typeof operands === 'number') { - return [operands]; - } else if (typeof operands === 'boolean') { - return [+operands]; - } else if (Array.isArray(operands)) { - return operands; - } else { - return [operands]; - } - }; - _proto2.decode = function decode(stream, parent) { - var end = stream.pos + parent.length; - var ret = {}; - var operands = []; // define hidden properties + // Rounds + for (var i = 0; i < 80; i++) { + var Wil; + var Wih; - Object.defineProperties(ret, { - parent: { - value: parent - }, - _startOffset: { - value: stream.pos - } - }); // fill in defaults + // Shortcut + var Wi = W[i]; - for (var key in this.fields) { - var field = this.fields[key]; - ret[field[1]] = field[3]; - } - while (stream.pos < end) { - var b = stream.readUInt8(); - if (b < 28) { - if (b === 12) { - b = b << 8 | stream.readUInt8(); - } - var _field = this.fields[b]; - if (!_field) { - throw new Error("Unknown operator ".concat(b)); - } - var val = this.decodeOperands(_field[2], stream, ret, operands); - if (val != null) { - if (val instanceof utils.PropertyDescriptor) { - Object.defineProperty(ret, _field[1], val); + // Extend message + if (i < 16) { + Wih = Wi.high = M[offset + i * 2] | 0; + Wil = Wi.low = M[offset + i * 2 + 1] | 0; } else { - ret[_field[1]] = val; + // Gamma0 + var gamma0x = W[i - 15]; + var gamma0xh = gamma0x.high; + var gamma0xl = gamma0x.low; + var gamma0h = (gamma0xh >>> 1 | gamma0xl << 31) ^ (gamma0xh >>> 8 | gamma0xl << 24) ^ gamma0xh >>> 7; + var gamma0l = (gamma0xl >>> 1 | gamma0xh << 31) ^ (gamma0xl >>> 8 | gamma0xh << 24) ^ (gamma0xl >>> 7 | gamma0xh << 25); + + // Gamma1 + var gamma1x = W[i - 2]; + var gamma1xh = gamma1x.high; + var gamma1xl = gamma1x.low; + var gamma1h = (gamma1xh >>> 19 | gamma1xl << 13) ^ (gamma1xh << 3 | gamma1xl >>> 29) ^ gamma1xh >>> 6; + var gamma1l = (gamma1xl >>> 19 | gamma1xh << 13) ^ (gamma1xl << 3 | gamma1xh >>> 29) ^ (gamma1xl >>> 6 | gamma1xh << 26); + + // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] + var Wi7 = W[i - 7]; + var Wi7h = Wi7.high; + var Wi7l = Wi7.low; + var Wi16 = W[i - 16]; + var Wi16h = Wi16.high; + var Wi16l = Wi16.low; + Wil = gamma0l + Wi7l; + Wih = gamma0h + Wi7h + (Wil >>> 0 < gamma0l >>> 0 ? 1 : 0); + Wil = Wil + gamma1l; + Wih = Wih + gamma1h + (Wil >>> 0 < gamma1l >>> 0 ? 1 : 0); + Wil = Wil + Wi16l; + Wih = Wih + Wi16h + (Wil >>> 0 < Wi16l >>> 0 ? 1 : 0); + Wi.high = Wih; + Wi.low = Wil; } + var chh = eh & fh ^ ~eh & gh; + var chl = el & fl ^ ~el & gl; + var majh = ah & bh ^ ah & ch ^ bh & ch; + var majl = al & bl ^ al & cl ^ bl & cl; + var sigma0h = (ah >>> 28 | al << 4) ^ (ah << 30 | al >>> 2) ^ (ah << 25 | al >>> 7); + var sigma0l = (al >>> 28 | ah << 4) ^ (al << 30 | ah >>> 2) ^ (al << 25 | ah >>> 7); + var sigma1h = (eh >>> 14 | el << 18) ^ (eh >>> 18 | el << 14) ^ (eh << 23 | el >>> 9); + var sigma1l = (el >>> 14 | eh << 18) ^ (el >>> 18 | eh << 14) ^ (el << 23 | eh >>> 9); + + // t1 = h + sigma1 + ch + K[i] + W[i] + var Ki = K[i]; + var Kih = Ki.high; + var Kil = Ki.low; + var t1l = hl + sigma1l; + var t1h = hh + sigma1h + (t1l >>> 0 < hl >>> 0 ? 1 : 0); + var t1l = t1l + chl; + var t1h = t1h + chh + (t1l >>> 0 < chl >>> 0 ? 1 : 0); + var t1l = t1l + Kil; + var t1h = t1h + Kih + (t1l >>> 0 < Kil >>> 0 ? 1 : 0); + var t1l = t1l + Wil; + var t1h = t1h + Wih + (t1l >>> 0 < Wil >>> 0 ? 1 : 0); + + // t2 = sigma0 + maj + var t2l = sigma0l + majl; + var t2h = sigma0h + majh + (t2l >>> 0 < sigma0l >>> 0 ? 1 : 0); + + // Update working variables + hh = gh; + hl = gl; + gh = fh; + gl = fl; + fh = eh; + fl = el; + el = dl + t1l | 0; + eh = dh + t1h + (el >>> 0 < dl >>> 0 ? 1 : 0) | 0; + dh = ch; + dl = cl; + ch = bh; + cl = bl; + bh = ah; + bl = al; + al = t1l + t2l | 0; + ah = t1h + t2h + (al >>> 0 < t1l >>> 0 ? 1 : 0) | 0; } - operands = []; - } else { - operands.push(CFFOperand.decode(stream, b)); - } - } - return ret; - }; - _proto2.size = function size(dict, parent, includePointers) { - if (includePointers === void 0) { - includePointers = true; - } - var ctx = { - parent: parent, - val: dict, - pointerSize: 0, - startOffset: parent.startOffset || 0 - }; - var len = 0; - for (var k in this.fields) { - var field = this.fields[k]; - var val = dict[field[1]]; - if (val == null || isEqual(val, field[3])) { - continue; - } - var operands = this.encodeOperands(field[2], null, ctx, val); - for (var _iterator5 = _createForOfIteratorHelperLoose(operands), _step5; !(_step5 = _iterator5()).done;) { - var op = _step5.value; - len += CFFOperand.size(op); - } - var key = Array.isArray(field[0]) ? field[0] : [field[0]]; - len += key.length; - } - if (includePointers) { - len += ctx.pointerSize; - } - return len; - }; - _proto2.encode = function encode(stream, dict, parent) { - var ctx = { - pointers: [], - startOffset: stream.pos, - parent: parent, - val: dict, - pointerSize: 0 - }; - ctx.pointerOffset = stream.pos + this.size(dict, ctx, false); - for (var _iterator6 = _createForOfIteratorHelperLoose(this.ops), _step6; !(_step6 = _iterator6()).done;) { - var field = _step6.value; - var val = dict[field[1]]; - if (val == null || isEqual(val, field[3])) { - continue; - } - var operands = this.encodeOperands(field[2], stream, ctx, val); - for (var _iterator7 = _createForOfIteratorHelperLoose(operands), _step7; !(_step7 = _iterator7()).done;) { - var op = _step7.value; - CFFOperand.encode(stream, op); - } - var key = Array.isArray(field[0]) ? field[0] : [field[0]]; - for (var _iterator8 = _createForOfIteratorHelperLoose(key), _step8; !(_step8 = _iterator8()).done;) { - var _op = _step8.value; - stream.writeUInt8(_op); - } - } - var i = 0; - while (i < ctx.pointers.length) { - var ptr = ctx.pointers[i++]; - ptr.type.encode(stream, ptr.val, ptr.parent); - } - return; - }; - return CFFDict; -}(); -var CFFPointer = /*#__PURE__*/function (_r$Pointer) { - function CFFPointer(type, options) { - if (options === void 0) { - options = {}; - } - if (options.type == null) { - options.type = 'global'; - } - return _r$Pointer.call(this, null, type, options) || this; - } - _inheritsLoose(CFFPointer, _r$Pointer); - var _proto3 = CFFPointer.prototype; - _proto3.decode = function decode(stream, parent, operands) { - this.offsetType = { - decode: function decode() { - return operands[0]; - } - }; - return _r$Pointer.prototype.decode.call(this, stream, parent, operands); - }; - _proto3.encode = function encode(stream, value, ctx) { - if (!stream) { - // compute the size (so ctx.pointerSize is correct) - this.offsetType = { - size: function size() { - return 0; - } - }; - this.size(value, ctx); - return [new Ptr(0)]; - } - var ptr = null; - this.offsetType = { - encode: function encode(stream, val) { - return ptr = val; - } - }; - _r$Pointer.prototype.encode.call(this, stream, value, ctx); - return [new Ptr(ptr)]; - }; - return CFFPointer; -}(r.Pointer); -var Ptr = /*#__PURE__*/function () { - function Ptr(val) { - this.val = val; - this.forceLarge = true; - } - var _proto4 = Ptr.prototype; - _proto4.valueOf = function valueOf() { - return this.val; - }; - return Ptr; -}(); -var CFFBlendOp = /*#__PURE__*/function () { - function CFFBlendOp() {} - CFFBlendOp.decode = function decode(stream, parent, operands) { - var numBlends = operands.pop(); // TODO: actually blend. For now just consume the deltas - // since we don't use any of the values anyway. - while (operands.length > numBlends) { - operands.pop(); - } - }; - return CFFBlendOp; -}(); -var CFFPrivateDict = new CFFDict([ -// key name type default -[6, 'BlueValues', 'delta', null], [7, 'OtherBlues', 'delta', null], [8, 'FamilyBlues', 'delta', null], [9, 'FamilyOtherBlues', 'delta', null], [[12, 9], 'BlueScale', 'number', 0.039625], [[12, 10], 'BlueShift', 'number', 7], [[12, 11], 'BlueFuzz', 'number', 1], [10, 'StdHW', 'number', null], [11, 'StdVW', 'number', null], [[12, 12], 'StemSnapH', 'delta', null], [[12, 13], 'StemSnapV', 'delta', null], [[12, 14], 'ForceBold', 'boolean', false], [[12, 17], 'LanguageGroup', 'number', 0], [[12, 18], 'ExpansionFactor', 'number', 0.06], [[12, 19], 'initialRandomSeed', 'number', 0], [20, 'defaultWidthX', 'number', 0], [21, 'nominalWidthX', 'number', 0], [22, 'vsindex', 'number', 0], [23, 'blend', CFFBlendOp, null], [19, 'Subrs', new CFFPointer(new CFFIndex(), { - type: 'local' -}), null]]); + // Intermediate hash value + H0l = H0.low = H0l + al; + H0.high = H0h + ah + (H0l >>> 0 < al >>> 0 ? 1 : 0); + H1l = H1.low = H1l + bl; + H1.high = H1h + bh + (H1l >>> 0 < bl >>> 0 ? 1 : 0); + H2l = H2.low = H2l + cl; + H2.high = H2h + ch + (H2l >>> 0 < cl >>> 0 ? 1 : 0); + H3l = H3.low = H3l + dl; + H3.high = H3h + dh + (H3l >>> 0 < dl >>> 0 ? 1 : 0); + H4l = H4.low = H4l + el; + H4.high = H4h + eh + (H4l >>> 0 < el >>> 0 ? 1 : 0); + H5l = H5.low = H5l + fl; + H5.high = H5h + fh + (H5l >>> 0 < fl >>> 0 ? 1 : 0); + H6l = H6.low = H6l + gl; + H6.high = H6h + gh + (H6l >>> 0 < gl >>> 0 ? 1 : 0); + H7l = H7.low = H7l + hl; + H7.high = H7h + hh + (H7l >>> 0 < hl >>> 0 ? 1 : 0); + }, + _doFinalize: function _doFinalize() { + // Shortcuts + var data = this._data; + var dataWords = data.words; + var nBitsTotal = this._nDataBytes * 8; + var nBitsLeft = data.sigBytes * 8; -// Automatically generated from Appendix A of the CFF specification; do -// not edit. Length should be 391. -var standardStrings = [".notdef", "space", "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand", "quoteright", "parenleft", "parenright", "asterisk", "plus", "comma", "hyphen", "period", "slash", "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "colon", "semicolon", "less", "equal", "greater", "question", "at", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "bracketleft", "backslash", "bracketright", "asciicircum", "underscore", "quoteleft", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "braceleft", "bar", "braceright", "asciitilde", "exclamdown", "cent", "sterling", "fraction", "yen", "florin", "section", "currency", "quotesingle", "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi", "fl", "endash", "dagger", "daggerdbl", "periodcentered", "paragraph", "bullet", "quotesinglbase", "quotedblbase", "quotedblright", "guillemotright", "ellipsis", "perthousand", "questiondown", "grave", "acute", "circumflex", "tilde", "macron", "breve", "dotaccent", "dieresis", "ring", "cedilla", "hungarumlaut", "ogonek", "caron", "emdash", "AE", "ordfeminine", "Lslash", "Oslash", "OE", "ordmasculine", "ae", "dotlessi", "lslash", "oslash", "oe", "germandbls", "onesuperior", "logicalnot", "mu", "trademark", "Eth", "onehalf", "plusminus", "Thorn", "onequarter", "divide", "brokenbar", "degree", "thorn", "threequarters", "twosuperior", "registered", "minus", "eth", "multiply", "threesuperior", "copyright", "Aacute", "Acircumflex", "Adieresis", "Agrave", "Aring", "Atilde", "Ccedilla", "Eacute", "Ecircumflex", "Edieresis", "Egrave", "Iacute", "Icircumflex", "Idieresis", "Igrave", "Ntilde", "Oacute", "Ocircumflex", "Odieresis", "Ograve", "Otilde", "Scaron", "Uacute", "Ucircumflex", "Udieresis", "Ugrave", "Yacute", "Ydieresis", "Zcaron", "aacute", "acircumflex", "adieresis", "agrave", "aring", "atilde", "ccedilla", "eacute", "ecircumflex", "edieresis", "egrave", "iacute", "icircumflex", "idieresis", "igrave", "ntilde", "oacute", "ocircumflex", "odieresis", "ograve", "otilde", "scaron", "uacute", "ucircumflex", "udieresis", "ugrave", "yacute", "ydieresis", "zcaron", "exclamsmall", "Hungarumlautsmall", "dollaroldstyle", "dollarsuperior", "ampersandsmall", "Acutesmall", "parenleftsuperior", "parenrightsuperior", "twodotenleader", "onedotenleader", "zerooldstyle", "oneoldstyle", "twooldstyle", "threeoldstyle", "fouroldstyle", "fiveoldstyle", "sixoldstyle", "sevenoldstyle", "eightoldstyle", "nineoldstyle", "commasuperior", "threequartersemdash", "periodsuperior", "questionsmall", "asuperior", "bsuperior", "centsuperior", "dsuperior", "esuperior", "isuperior", "lsuperior", "msuperior", "nsuperior", "osuperior", "rsuperior", "ssuperior", "tsuperior", "ff", "ffi", "ffl", "parenleftinferior", "parenrightinferior", "Circumflexsmall", "hyphensuperior", "Gravesmall", "Asmall", "Bsmall", "Csmall", "Dsmall", "Esmall", "Fsmall", "Gsmall", "Hsmall", "Ismall", "Jsmall", "Ksmall", "Lsmall", "Msmall", "Nsmall", "Osmall", "Psmall", "Qsmall", "Rsmall", "Ssmall", "Tsmall", "Usmall", "Vsmall", "Wsmall", "Xsmall", "Ysmall", "Zsmall", "colonmonetary", "onefitted", "rupiah", "Tildesmall", "exclamdownsmall", "centoldstyle", "Lslashsmall", "Scaronsmall", "Zcaronsmall", "Dieresissmall", "Brevesmall", "Caronsmall", "Dotaccentsmall", "Macronsmall", "figuredash", "hypheninferior", "Ogoneksmall", "Ringsmall", "Cedillasmall", "questiondownsmall", "oneeighth", "threeeighths", "fiveeighths", "seveneighths", "onethird", "twothirds", "zerosuperior", "foursuperior", "fivesuperior", "sixsuperior", "sevensuperior", "eightsuperior", "ninesuperior", "zeroinferior", "oneinferior", "twoinferior", "threeinferior", "fourinferior", "fiveinferior", "sixinferior", "seveninferior", "eightinferior", "nineinferior", "centinferior", "dollarinferior", "periodinferior", "commainferior", "Agravesmall", "Aacutesmall", "Acircumflexsmall", "Atildesmall", "Adieresissmall", "Aringsmall", "AEsmall", "Ccedillasmall", "Egravesmall", "Eacutesmall", "Ecircumflexsmall", "Edieresissmall", "Igravesmall", "Iacutesmall", "Icircumflexsmall", "Idieresissmall", "Ethsmall", "Ntildesmall", "Ogravesmall", "Oacutesmall", "Ocircumflexsmall", "Otildesmall", "Odieresissmall", "OEsmall", "Oslashsmall", "Ugravesmall", "Uacutesmall", "Ucircumflexsmall", "Udieresissmall", "Yacutesmall", "Thornsmall", "Ydieresissmall", "001.000", "001.001", "001.002", "001.003", "Black", "Bold", "Book", "Light", "Medium", "Regular", "Roman", "Semibold"]; -var StandardEncoding = ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent', 'ampersand', 'quoteright', 'parenleft', 'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less', 'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright', 'asciicircum', 'underscore', 'quoteleft', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'braceleft', 'bar', 'braceright', 'asciitilde', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'exclamdown', 'cent', 'sterling', 'fraction', 'yen', 'florin', 'section', 'currency', 'quotesingle', 'quotedblleft', 'guillemotleft', 'guilsinglleft', 'guilsinglright', 'fi', 'fl', '', 'endash', 'dagger', 'daggerdbl', 'periodcentered', '', 'paragraph', 'bullet', 'quotesinglbase', 'quotedblbase', 'quotedblright', 'guillemotright', 'ellipsis', 'perthousand', '', 'questiondown', '', 'grave', 'acute', 'circumflex', 'tilde', 'macron', 'breve', 'dotaccent', 'dieresis', '', 'ring', 'cedilla', '', 'hungarumlaut', 'ogonek', 'caron', 'emdash', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'AE', '', 'ordfeminine', '', '', '', '', 'Lslash', 'Oslash', 'OE', 'ordmasculine', '', '', '', '', '', 'ae', '', '', '', 'dotlessi', '', '', 'lslash', 'oslash', 'oe', 'germandbls']; -var ExpertEncoding = ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'space', 'exclamsmall', 'Hungarumlautsmall', '', 'dollaroldstyle', 'dollarsuperior', 'ampersandsmall', 'Acutesmall', 'parenleftsuperior', 'parenrightsuperior', 'twodotenleader', 'onedotenleader', 'comma', 'hyphen', 'period', 'fraction', 'zerooldstyle', 'oneoldstyle', 'twooldstyle', 'threeoldstyle', 'fouroldstyle', 'fiveoldstyle', 'sixoldstyle', 'sevenoldstyle', 'eightoldstyle', 'nineoldstyle', 'colon', 'semicolon', 'commasuperior', 'threequartersemdash', 'periodsuperior', 'questionsmall', '', 'asuperior', 'bsuperior', 'centsuperior', 'dsuperior', 'esuperior', '', '', 'isuperior', '', '', 'lsuperior', 'msuperior', 'nsuperior', 'osuperior', '', '', 'rsuperior', 'ssuperior', 'tsuperior', '', 'ff', 'fi', 'fl', 'ffi', 'ffl', 'parenleftinferior', '', 'parenrightinferior', 'Circumflexsmall', 'hyphensuperior', 'Gravesmall', 'Asmall', 'Bsmall', 'Csmall', 'Dsmall', 'Esmall', 'Fsmall', 'Gsmall', 'Hsmall', 'Ismall', 'Jsmall', 'Ksmall', 'Lsmall', 'Msmall', 'Nsmall', 'Osmall', 'Psmall', 'Qsmall', 'Rsmall', 'Ssmall', 'Tsmall', 'Usmall', 'Vsmall', 'Wsmall', 'Xsmall', 'Ysmall', 'Zsmall', 'colonmonetary', 'onefitted', 'rupiah', 'Tildesmall', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'exclamdownsmall', 'centoldstyle', 'Lslashsmall', '', '', 'Scaronsmall', 'Zcaronsmall', 'Dieresissmall', 'Brevesmall', 'Caronsmall', '', 'Dotaccentsmall', '', '', 'Macronsmall', '', '', 'figuredash', 'hypheninferior', '', '', 'Ogoneksmall', 'Ringsmall', 'Cedillasmall', '', '', '', 'onequarter', 'onehalf', 'threequarters', 'questiondownsmall', 'oneeighth', 'threeeighths', 'fiveeighths', 'seveneighths', 'onethird', 'twothirds', '', '', 'zerosuperior', 'onesuperior', 'twosuperior', 'threesuperior', 'foursuperior', 'fivesuperior', 'sixsuperior', 'sevensuperior', 'eightsuperior', 'ninesuperior', 'zeroinferior', 'oneinferior', 'twoinferior', 'threeinferior', 'fourinferior', 'fiveinferior', 'sixinferior', 'seveninferior', 'eightinferior', 'nineinferior', 'centinferior', 'dollarinferior', 'periodinferior', 'commainferior', 'Agravesmall', 'Aacutesmall', 'Acircumflexsmall', 'Atildesmall', 'Adieresissmall', 'Aringsmall', 'AEsmall', 'Ccedillasmall', 'Egravesmall', 'Eacutesmall', 'Ecircumflexsmall', 'Edieresissmall', 'Igravesmall', 'Iacutesmall', 'Icircumflexsmall', 'Idieresissmall', 'Ethsmall', 'Ntildesmall', 'Ogravesmall', 'Oacutesmall', 'Ocircumflexsmall', 'Otildesmall', 'Odieresissmall', 'OEsmall', 'Oslashsmall', 'Ugravesmall', 'Uacutesmall', 'Ucircumflexsmall', 'Udieresissmall', 'Yacutesmall', 'Thornsmall', 'Ydieresissmall']; -var ISOAdobeCharset = ['.notdef', 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent', 'ampersand', 'quoteright', 'parenleft', 'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less', 'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright', 'asciicircum', 'underscore', 'quoteleft', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'braceleft', 'bar', 'braceright', 'asciitilde', 'exclamdown', 'cent', 'sterling', 'fraction', 'yen', 'florin', 'section', 'currency', 'quotesingle', 'quotedblleft', 'guillemotleft', 'guilsinglleft', 'guilsinglright', 'fi', 'fl', 'endash', 'dagger', 'daggerdbl', 'periodcentered', 'paragraph', 'bullet', 'quotesinglbase', 'quotedblbase', 'quotedblright', 'guillemotright', 'ellipsis', 'perthousand', 'questiondown', 'grave', 'acute', 'circumflex', 'tilde', 'macron', 'breve', 'dotaccent', 'dieresis', 'ring', 'cedilla', 'hungarumlaut', 'ogonek', 'caron', 'emdash', 'AE', 'ordfeminine', 'Lslash', 'Oslash', 'OE', 'ordmasculine', 'ae', 'dotlessi', 'lslash', 'oslash', 'oe', 'germandbls', 'onesuperior', 'logicalnot', 'mu', 'trademark', 'Eth', 'onehalf', 'plusminus', 'Thorn', 'onequarter', 'divide', 'brokenbar', 'degree', 'thorn', 'threequarters', 'twosuperior', 'registered', 'minus', 'eth', 'multiply', 'threesuperior', 'copyright', 'Aacute', 'Acircumflex', 'Adieresis', 'Agrave', 'Aring', 'Atilde', 'Ccedilla', 'Eacute', 'Ecircumflex', 'Edieresis', 'Egrave', 'Iacute', 'Icircumflex', 'Idieresis', 'Igrave', 'Ntilde', 'Oacute', 'Ocircumflex', 'Odieresis', 'Ograve', 'Otilde', 'Scaron', 'Uacute', 'Ucircumflex', 'Udieresis', 'Ugrave', 'Yacute', 'Ydieresis', 'Zcaron', 'aacute', 'acircumflex', 'adieresis', 'agrave', 'aring', 'atilde', 'ccedilla', 'eacute', 'ecircumflex', 'edieresis', 'egrave', 'iacute', 'icircumflex', 'idieresis', 'igrave', 'ntilde', 'oacute', 'ocircumflex', 'odieresis', 'ograve', 'otilde', 'scaron', 'uacute', 'ucircumflex', 'udieresis', 'ugrave', 'yacute', 'ydieresis', 'zcaron']; -var ExpertCharset = ['.notdef', 'space', 'exclamsmall', 'Hungarumlautsmall', 'dollaroldstyle', 'dollarsuperior', 'ampersandsmall', 'Acutesmall', 'parenleftsuperior', 'parenrightsuperior', 'twodotenleader', 'onedotenleader', 'comma', 'hyphen', 'period', 'fraction', 'zerooldstyle', 'oneoldstyle', 'twooldstyle', 'threeoldstyle', 'fouroldstyle', 'fiveoldstyle', 'sixoldstyle', 'sevenoldstyle', 'eightoldstyle', 'nineoldstyle', 'colon', 'semicolon', 'commasuperior', 'threequartersemdash', 'periodsuperior', 'questionsmall', 'asuperior', 'bsuperior', 'centsuperior', 'dsuperior', 'esuperior', 'isuperior', 'lsuperior', 'msuperior', 'nsuperior', 'osuperior', 'rsuperior', 'ssuperior', 'tsuperior', 'ff', 'fi', 'fl', 'ffi', 'ffl', 'parenleftinferior', 'parenrightinferior', 'Circumflexsmall', 'hyphensuperior', 'Gravesmall', 'Asmall', 'Bsmall', 'Csmall', 'Dsmall', 'Esmall', 'Fsmall', 'Gsmall', 'Hsmall', 'Ismall', 'Jsmall', 'Ksmall', 'Lsmall', 'Msmall', 'Nsmall', 'Osmall', 'Psmall', 'Qsmall', 'Rsmall', 'Ssmall', 'Tsmall', 'Usmall', 'Vsmall', 'Wsmall', 'Xsmall', 'Ysmall', 'Zsmall', 'colonmonetary', 'onefitted', 'rupiah', 'Tildesmall', 'exclamdownsmall', 'centoldstyle', 'Lslashsmall', 'Scaronsmall', 'Zcaronsmall', 'Dieresissmall', 'Brevesmall', 'Caronsmall', 'Dotaccentsmall', 'Macronsmall', 'figuredash', 'hypheninferior', 'Ogoneksmall', 'Ringsmall', 'Cedillasmall', 'onequarter', 'onehalf', 'threequarters', 'questiondownsmall', 'oneeighth', 'threeeighths', 'fiveeighths', 'seveneighths', 'onethird', 'twothirds', 'zerosuperior', 'onesuperior', 'twosuperior', 'threesuperior', 'foursuperior', 'fivesuperior', 'sixsuperior', 'sevensuperior', 'eightsuperior', 'ninesuperior', 'zeroinferior', 'oneinferior', 'twoinferior', 'threeinferior', 'fourinferior', 'fiveinferior', 'sixinferior', 'seveninferior', 'eightinferior', 'nineinferior', 'centinferior', 'dollarinferior', 'periodinferior', 'commainferior', 'Agravesmall', 'Aacutesmall', 'Acircumflexsmall', 'Atildesmall', 'Adieresissmall', 'Aringsmall', 'AEsmall', 'Ccedillasmall', 'Egravesmall', 'Eacutesmall', 'Ecircumflexsmall', 'Edieresissmall', 'Igravesmall', 'Iacutesmall', 'Icircumflexsmall', 'Idieresissmall', 'Ethsmall', 'Ntildesmall', 'Ogravesmall', 'Oacutesmall', 'Ocircumflexsmall', 'Otildesmall', 'Odieresissmall', 'OEsmall', 'Oslashsmall', 'Ugravesmall', 'Uacutesmall', 'Ucircumflexsmall', 'Udieresissmall', 'Yacutesmall', 'Thornsmall', 'Ydieresissmall']; -var ExpertSubsetCharset = ['.notdef', 'space', 'dollaroldstyle', 'dollarsuperior', 'parenleftsuperior', 'parenrightsuperior', 'twodotenleader', 'onedotenleader', 'comma', 'hyphen', 'period', 'fraction', 'zerooldstyle', 'oneoldstyle', 'twooldstyle', 'threeoldstyle', 'fouroldstyle', 'fiveoldstyle', 'sixoldstyle', 'sevenoldstyle', 'eightoldstyle', 'nineoldstyle', 'colon', 'semicolon', 'commasuperior', 'threequartersemdash', 'periodsuperior', 'asuperior', 'bsuperior', 'centsuperior', 'dsuperior', 'esuperior', 'isuperior', 'lsuperior', 'msuperior', 'nsuperior', 'osuperior', 'rsuperior', 'ssuperior', 'tsuperior', 'ff', 'fi', 'fl', 'ffi', 'ffl', 'parenleftinferior', 'parenrightinferior', 'hyphensuperior', 'colonmonetary', 'onefitted', 'rupiah', 'centoldstyle', 'figuredash', 'hypheninferior', 'onequarter', 'onehalf', 'threequarters', 'oneeighth', 'threeeighths', 'fiveeighths', 'seveneighths', 'onethird', 'twothirds', 'zerosuperior', 'onesuperior', 'twosuperior', 'threesuperior', 'foursuperior', 'fivesuperior', 'sixsuperior', 'sevensuperior', 'eightsuperior', 'ninesuperior', 'zeroinferior', 'oneinferior', 'twoinferior', 'threeinferior', 'fourinferior', 'fiveinferior', 'sixinferior', 'seveninferior', 'eightinferior', 'nineinferior', 'centinferior', 'dollarinferior', 'periodinferior', 'commainferior']; + // Add padding + dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; + dataWords[(nBitsLeft + 128 >>> 10 << 5) + 30] = Math.floor(nBitsTotal / 0x100000000); + dataWords[(nBitsLeft + 128 >>> 10 << 5) + 31] = nBitsTotal; + data.sigBytes = dataWords.length * 4; -// Scripts and Languages # -//######################## + // Hash final blocks + this._process(); -var LangSysTable = new r.Struct({ - reserved: new r.Reserved(r.uint16), - reqFeatureIndex: r.uint16, - featureCount: r.uint16, - featureIndexes: new r.Array(r.uint16, 'featureCount') -}); -var LangSysRecord = new r.Struct({ - tag: new r.String(4), - langSys: new r.Pointer(r.uint16, LangSysTable, { - type: 'parent' - }) -}); -var Script = new r.Struct({ - defaultLangSys: new r.Pointer(r.uint16, LangSysTable), - count: r.uint16, - langSysRecords: new r.Array(LangSysRecord, 'count') -}); -var ScriptRecord = new r.Struct({ - tag: new r.String(4), - script: new r.Pointer(r.uint16, Script, { - type: 'parent' - }) -}); -var ScriptList = new r.Array(ScriptRecord, r.uint16); //####################### -// Features and Lookups # -//####################### + // Convert hash to 32-bit word array before returning + var hash = this._hash.toX32(); -var Feature = new r.Struct({ - featureParams: r.uint16, - // pointer - lookupCount: r.uint16, - lookupListIndexes: new r.Array(r.uint16, 'lookupCount') -}); -var FeatureRecord = new r.Struct({ - tag: new r.String(4), - feature: new r.Pointer(r.uint16, Feature, { - type: 'parent' - }) -}); -var FeatureList = new r.Array(FeatureRecord, r.uint16); -var LookupFlags = new r.Struct({ - markAttachmentType: r.uint8, - flags: new r.Bitfield(r.uint8, ['rightToLeft', 'ignoreBaseGlyphs', 'ignoreLigatures', 'ignoreMarks', 'useMarkFilteringSet']) -}); -function LookupList(SubTable) { - var Lookup = new r.Struct({ - lookupType: r.uint16, - flags: LookupFlags, - subTableCount: r.uint16, - subTables: new r.Array(new r.Pointer(r.uint16, SubTable), 'subTableCount'), - markFilteringSet: new r.Optional(r.uint16, function (t) { - return t.flags.flags.useMarkFilteringSet; - }) - }); - return new r.LazyArray(new r.Pointer(r.uint16, Lookup), r.uint16); -} //################# -// Coverage Table # -//################# + // Return final computed hash + return hash; + }, + clone: function clone() { + var clone = Hasher.clone.call(this); + clone._hash = this._hash.clone(); + return clone; + }, + blockSize: 1024 / 32 + }); -var RangeRecord = new r.Struct({ - start: r.uint16, - end: r.uint16, - startCoverageIndex: r.uint16 -}); -var Coverage = new r.VersionedStruct(r.uint16, { - 1: { - glyphCount: r.uint16, - glyphs: new r.Array(r.uint16, 'glyphCount') - }, - 2: { - rangeCount: r.uint16, - rangeRecords: new r.Array(RangeRecord, 'rangeCount') - } -}); //######################### -// Class Definition Table # -//######################### + /** + * Shortcut function to the hasher's object interface. + * + * @param {WordArray|string} message The message to hash. + * + * @return {WordArray} The hash. + * + * @static + * + * @example + * + * var hash = CryptoJS.SHA512('message'); + * var hash = CryptoJS.SHA512(wordArray); + */ + C.SHA512 = Hasher._createHelper(SHA512); -var ClassRangeRecord = new r.Struct({ - start: r.uint16, - end: r.uint16, - class: r.uint16 + /** + * Shortcut function to the HMAC's object interface. + * + * @param {WordArray|string} message The message to hash. + * @param {WordArray|string} key The secret key. + * + * @return {WordArray} The HMAC. + * + * @static + * + * @example + * + * var hmac = CryptoJS.HmacSHA512(message, key); + */ + C.HmacSHA512 = Hasher._createHmacHelper(SHA512); + })(); + return CryptoJS.SHA512; }); -var ClassDef = new r.VersionedStruct(r.uint16, { - 1: { - // Class array - startGlyph: r.uint16, - glyphCount: r.uint16, - classValueArray: new r.Array(r.uint16, 'glyphCount') - }, - 2: { - // Class ranges - classRangeCount: r.uint16, - classRangeRecord: new r.Array(ClassRangeRecord, 'classRangeCount') - } -}); //############### -// Device Table # -//############### -var Device = new r.Struct({ - a: r.uint16, - // startSize for hinting Device, outerIndex for VariationIndex - b: r.uint16, - // endSize for Device, innerIndex for VariationIndex - deltaFormat: r.uint16 -}); //############################################# -// Contextual Substitution/Positioning Tables # -//############################################# +/***/ }), -var LookupRecord = new r.Struct({ - sequenceIndex: r.uint16, - lookupListIndex: r.uint16 -}); -var Rule = new r.Struct({ - glyphCount: r.uint16, - lookupCount: r.uint16, - input: new r.Array(r.uint16, function (t) { - return t.glyphCount - 1; - }), - lookupRecords: new r.Array(LookupRecord, 'lookupCount') -}); -var RuleSet = new r.Array(new r.Pointer(r.uint16, Rule), r.uint16); -var ClassRule = new r.Struct({ - glyphCount: r.uint16, - lookupCount: r.uint16, - classes: new r.Array(r.uint16, function (t) { - return t.glyphCount - 1; - }), - lookupRecords: new r.Array(LookupRecord, 'lookupCount') -}); -var ClassSet = new r.Array(new r.Pointer(r.uint16, ClassRule), r.uint16); -var Context = new r.VersionedStruct(r.uint16, { - 1: { - // Simple context - coverage: new r.Pointer(r.uint16, Coverage), - ruleSetCount: r.uint16, - ruleSets: new r.Array(new r.Pointer(r.uint16, RuleSet), 'ruleSetCount') - }, - 2: { - // Class-based context - coverage: new r.Pointer(r.uint16, Coverage), - classDef: new r.Pointer(r.uint16, ClassDef), - classSetCnt: r.uint16, - classSet: new r.Array(new r.Pointer(r.uint16, ClassSet), 'classSetCnt') - }, - 3: { - glyphCount: r.uint16, - lookupCount: r.uint16, - coverages: new r.Array(new r.Pointer(r.uint16, Coverage), 'glyphCount'), - lookupRecords: new r.Array(LookupRecord, 'lookupCount') - } -}); //###################################################### -// Chaining Contextual Substitution/Positioning Tables # -//###################################################### +/***/ 24107: +/***/ (function(module, exports, __webpack_require__) { -var ChainRule = new r.Struct({ - backtrackGlyphCount: r.uint16, - backtrack: new r.Array(r.uint16, 'backtrackGlyphCount'), - inputGlyphCount: r.uint16, - input: new r.Array(r.uint16, function (t) { - return t.inputGlyphCount - 1; - }), - lookaheadGlyphCount: r.uint16, - lookahead: new r.Array(r.uint16, 'lookaheadGlyphCount'), - lookupCount: r.uint16, - lookupRecords: new r.Array(LookupRecord, 'lookupCount') -}); -var ChainRuleSet = new r.Array(new r.Pointer(r.uint16, ChainRule), r.uint16); -var ChainingContext = new r.VersionedStruct(r.uint16, { - 1: { - // Simple context glyph substitution - coverage: new r.Pointer(r.uint16, Coverage), - chainCount: r.uint16, - chainRuleSets: new r.Array(new r.Pointer(r.uint16, ChainRuleSet), 'chainCount') - }, - 2: { - // Class-based chaining context - coverage: new r.Pointer(r.uint16, Coverage), - backtrackClassDef: new r.Pointer(r.uint16, ClassDef), - inputClassDef: new r.Pointer(r.uint16, ClassDef), - lookaheadClassDef: new r.Pointer(r.uint16, ClassDef), - chainCount: r.uint16, - chainClassSet: new r.Array(new r.Pointer(r.uint16, ChainRuleSet), 'chainCount') - }, - 3: { - // Coverage-based chaining context - backtrackGlyphCount: r.uint16, - backtrackCoverage: new r.Array(new r.Pointer(r.uint16, Coverage), 'backtrackGlyphCount'), - inputGlyphCount: r.uint16, - inputCoverage: new r.Array(new r.Pointer(r.uint16, Coverage), 'inputGlyphCount'), - lookaheadGlyphCount: r.uint16, - lookaheadCoverage: new r.Array(new r.Pointer(r.uint16, Coverage), 'lookaheadGlyphCount'), - lookupCount: r.uint16, - lookupRecords: new r.Array(LookupRecord, 'lookupCount') - } -}); +"use strict"; -/******************* - * Variation Store * - *******************/ -var F2DOT14 = new r.Fixed(16, 'BE', 14); -var RegionAxisCoordinates = new r.Struct({ - startCoord: F2DOT14, - peakCoord: F2DOT14, - endCoord: F2DOT14 -}); -var VariationRegionList = new r.Struct({ - axisCount: r.uint16, - regionCount: r.uint16, - variationRegions: new r.Array(new r.Array(RegionAxisCoordinates, 'axisCount'), 'regionCount') -}); -var DeltaSet = new r.Struct({ - shortDeltas: new r.Array(r.int16, function (t) { - return t.parent.shortDeltaCount; - }), - regionDeltas: new r.Array(r.int8, function (t) { - return t.parent.regionIndexCount - t.parent.shortDeltaCount; - }), - deltas: function deltas(t) { - return t.shortDeltas.concat(t.regionDeltas); - } -}); -var ItemVariationData = new r.Struct({ - itemCount: r.uint16, - shortDeltaCount: r.uint16, - regionIndexCount: r.uint16, - regionIndexes: new r.Array(r.uint16, 'regionIndexCount'), - deltaSets: new r.Array(DeltaSet, 'itemCount') -}); -var ItemVariationStore = new r.Struct({ - format: r.uint16, - variationRegionList: new r.Pointer(r.uint32, VariationRegionList), - variationDataCount: r.uint16, - itemVariationData: new r.Array(new r.Pointer(r.uint32, ItemVariationData), 'variationDataCount') -}); -/********************** - * Feature Variations * - **********************/ +__webpack_require__(20731); +; +(function (root, factory, undef) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function () { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var WordArray = C_lib.WordArray; + var BlockCipher = C_lib.BlockCipher; + var C_algo = C.algo; -var ConditionTable = new r.VersionedStruct(r.uint16, { - 1: (_ = { - axisIndex: r.uint16 - }, _["axisIndex"] = r.uint16, _.filterRangeMinValue = F2DOT14, _.filterRangeMaxValue = F2DOT14, _) -}); -var ConditionSet = new r.Struct({ - conditionCount: r.uint16, - conditionTable: new r.Array(new r.Pointer(r.uint32, ConditionTable), 'conditionCount') -}); -var FeatureTableSubstitutionRecord = new r.Struct({ - featureIndex: r.uint16, - alternateFeatureTable: new r.Pointer(r.uint32, Feature, { - type: 'parent' - }) -}); -var FeatureTableSubstitution = new r.Struct({ - version: r.fixed32, - substitutionCount: r.uint16, - substitutions: new r.Array(FeatureTableSubstitutionRecord, 'substitutionCount') -}); -var FeatureVariationRecord = new r.Struct({ - conditionSet: new r.Pointer(r.uint32, ConditionSet, { - type: 'parent' - }), - featureTableSubstitution: new r.Pointer(r.uint32, FeatureTableSubstitution, { - type: 'parent' - }) -}); -var FeatureVariations = new r.Struct({ - majorVersion: r.uint16, - minorVersion: r.uint16, - featureVariationRecordCount: r.uint32, - featureVariationRecords: new r.Array(FeatureVariationRecord, 'featureVariationRecordCount') -}); + // Permuted Choice 1 constants + var PC1 = [57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36, 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4]; -// otherwise delegates to the provided type. -var PredefinedOp = /*#__PURE__*/function () { - function PredefinedOp(predefinedOps, type) { - this.predefinedOps = predefinedOps; - this.type = type; - } - var _proto5 = PredefinedOp.prototype; - _proto5.decode = function decode(stream, parent, operands) { - if (this.predefinedOps[operands[0]]) { - return this.predefinedOps[operands[0]]; - } - return this.type.decode(stream, parent, operands); - }; - _proto5.size = function size(value, ctx) { - return this.type.size(value, ctx); - }; - _proto5.encode = function encode(stream, value, ctx) { - var index = this.predefinedOps.indexOf(value); - if (index !== -1) { - return index; - } - return this.type.encode(stream, value, ctx); - }; - return PredefinedOp; -}(); -var CFFEncodingVersion = /*#__PURE__*/function (_r$Number) { - function CFFEncodingVersion() { - return _r$Number.call(this, 'UInt8') || this; - } - _inheritsLoose(CFFEncodingVersion, _r$Number); - var _proto6 = CFFEncodingVersion.prototype; - _proto6.decode = function decode(stream) { - return r.uint8.decode(stream) & 0x7f; - }; - return CFFEncodingVersion; -}(r.Number); -var Range1 = new r.Struct({ - first: r.uint16, - nLeft: r.uint8 -}); -var Range2 = new r.Struct({ - first: r.uint16, - nLeft: r.uint16 -}); -var CFFCustomEncoding = new r.VersionedStruct(new CFFEncodingVersion(), { - 0: { - nCodes: r.uint8, - codes: new r.Array(r.uint8, 'nCodes') - }, - 1: { - nRanges: r.uint8, - ranges: new r.Array(Range1, 'nRanges') - } // TODO: supplement? -}); -var CFFEncoding = new PredefinedOp([StandardEncoding, ExpertEncoding], new CFFPointer(CFFCustomEncoding, { - lazy: true -})); // Decodes an array of ranges until the total -// length is equal to the provided length. -var RangeArray = /*#__PURE__*/function (_r$Array) { - function RangeArray() { - return _r$Array.apply(this, arguments) || this; - } - _inheritsLoose(RangeArray, _r$Array); - var _proto7 = RangeArray.prototype; - _proto7.decode = function decode(stream, parent) { - var length = utils.resolveLength(this.length, stream, parent); - var count = 0; - var res = []; - while (count < length) { - var range = this.type.decode(stream, parent); - range.offset = count; - count += range.nLeft + 1; - res.push(range); - } - return res; - }; - return RangeArray; -}(r.Array); -var CFFCustomCharset = new r.VersionedStruct(r.uint8, { - 0: { - glyphs: new r.Array(r.uint16, function (t) { - return t.parent.CharStrings.length - 1; - }) - }, - 1: { - ranges: new RangeArray(Range1, function (t) { - return t.parent.CharStrings.length - 1; - }) - }, - 2: { - ranges: new RangeArray(Range2, function (t) { - return t.parent.CharStrings.length - 1; - }) - } -}); -var CFFCharset = new PredefinedOp([ISOAdobeCharset, ExpertCharset, ExpertSubsetCharset], new CFFPointer(CFFCustomCharset, { - lazy: true -})); -var FDRange3 = new r.Struct({ - first: r.uint16, - fd: r.uint8 -}); -var FDRange4 = new r.Struct({ - first: r.uint32, - fd: r.uint16 -}); -var FDSelect = new r.VersionedStruct(r.uint8, { - 0: { - fds: new r.Array(r.uint8, function (t) { - return t.parent.CharStrings.length; - }) - }, - 3: { - nRanges: r.uint16, - ranges: new r.Array(FDRange3, 'nRanges'), - sentinel: r.uint16 - }, - 4: { - nRanges: r.uint32, - ranges: new r.Array(FDRange4, 'nRanges'), - sentinel: r.uint32 - } -}); -var ptr = new CFFPointer(CFFPrivateDict); -var CFFPrivateOp = /*#__PURE__*/function () { - function CFFPrivateOp() {} - var _proto8 = CFFPrivateOp.prototype; - _proto8.decode = function decode(stream, parent, operands) { - parent.length = operands[0]; - return ptr.decode(stream, parent, [operands[1]]); - }; - _proto8.size = function size(dict, ctx) { - return [CFFPrivateDict.size(dict, ctx, false), ptr.size(dict, ctx)[0]]; - }; - _proto8.encode = function encode(stream, dict, ctx) { - return [CFFPrivateDict.size(dict, ctx, false), ptr.encode(stream, dict, ctx)[0]]; - }; - return CFFPrivateOp; -}(); -var FontDict = new CFFDict([ -// key name type(s) default -[18, 'Private', new CFFPrivateOp(), null], [[12, 38], 'FontName', 'sid', null], [[12, 7], 'FontMatrix', 'array', [0.001, 0, 0, 0.001, 0, 0]], [[12, 5], 'PaintType', 'number', 0]]); -var CFFTopDict = new CFFDict([ -// key name type(s) default -[[12, 30], 'ROS', ['sid', 'sid', 'number'], null], [0, 'version', 'sid', null], [1, 'Notice', 'sid', null], [[12, 0], 'Copyright', 'sid', null], [2, 'FullName', 'sid', null], [3, 'FamilyName', 'sid', null], [4, 'Weight', 'sid', null], [[12, 1], 'isFixedPitch', 'boolean', false], [[12, 2], 'ItalicAngle', 'number', 0], [[12, 3], 'UnderlinePosition', 'number', -100], [[12, 4], 'UnderlineThickness', 'number', 50], [[12, 5], 'PaintType', 'number', 0], [[12, 6], 'CharstringType', 'number', 2], [[12, 7], 'FontMatrix', 'array', [0.001, 0, 0, 0.001, 0, 0]], [13, 'UniqueID', 'number', null], [5, 'FontBBox', 'array', [0, 0, 0, 0]], [[12, 8], 'StrokeWidth', 'number', 0], [14, 'XUID', 'array', null], [15, 'charset', CFFCharset, ISOAdobeCharset], [16, 'Encoding', CFFEncoding, StandardEncoding], [17, 'CharStrings', new CFFPointer(new CFFIndex()), null], [18, 'Private', new CFFPrivateOp(), null], [[12, 20], 'SyntheticBase', 'number', null], [[12, 21], 'PostScript', 'sid', null], [[12, 22], 'BaseFontName', 'sid', null], [[12, 23], 'BaseFontBlend', 'delta', null], -// CID font specific -[[12, 31], 'CIDFontVersion', 'number', 0], [[12, 32], 'CIDFontRevision', 'number', 0], [[12, 33], 'CIDFontType', 'number', 0], [[12, 34], 'CIDCount', 'number', 8720], [[12, 35], 'UIDBase', 'number', null], [[12, 37], 'FDSelect', new CFFPointer(FDSelect), null], [[12, 36], 'FDArray', new CFFPointer(new CFFIndex(FontDict)), null], [[12, 38], 'FontName', 'sid', null]]); -var VariationStore = new r.Struct({ - length: r.uint16, - itemVariationStore: ItemVariationStore -}); -var CFF2TopDict = new CFFDict([[[12, 7], 'FontMatrix', 'array', [0.001, 0, 0, 0.001, 0, 0]], [17, 'CharStrings', new CFFPointer(new CFFIndex()), null], [[12, 37], 'FDSelect', new CFFPointer(FDSelect), null], [[12, 36], 'FDArray', new CFFPointer(new CFFIndex(FontDict)), null], [24, 'vstore', new CFFPointer(VariationStore), null], [25, 'maxstack', 'number', 193]]); -var CFFTop = new r.VersionedStruct(r.fixed16, { - 1: { - hdrSize: r.uint8, - offSize: r.uint8, - nameIndex: new CFFIndex(new r.String('length')), - topDictIndex: new CFFIndex(CFFTopDict), - stringIndex: new CFFIndex(new r.String('length')), - globalSubrIndex: new CFFIndex() - }, - 2: { - hdrSize: r.uint8, - length: r.uint16, - topDict: CFF2TopDict, - globalSubrIndex: new CFFIndex() - } -}); -var CFFFont = /*#__PURE__*/function () { - function CFFFont(stream) { - this.stream = stream; - this.decode(); - } - CFFFont.decode = function decode(stream) { - return new CFFFont(stream); - }; - var _proto9 = CFFFont.prototype; - _proto9.decode = function decode() { - var start = this.stream.pos; - var top = CFFTop.decode(this.stream); - for (var key in top) { - var val = top[key]; - this[key] = val; - } - if (this.version < 2) { - if (this.topDictIndex.length !== 1) { - throw new Error("Only a single font is allowed in CFF"); - } - this.topDict = this.topDictIndex[0]; - } - this.isCIDFont = this.topDict.ROS != null; - return this; - }; - _proto9.string = function string(sid) { - if (this.version >= 2) { - return null; - } - if (sid < standardStrings.length) { - return standardStrings[sid]; - } - return this.stringIndex[sid - standardStrings.length]; - }; - _proto9.getCharString = function getCharString(glyph) { - this.stream.pos = this.topDict.CharStrings[glyph].offset; - return this.stream.readBuffer(this.topDict.CharStrings[glyph].length); - }; - _proto9.getGlyphName = function getGlyphName(gid) { - // CFF2 glyph names are in the post table. - if (this.version >= 2) { - return null; - } // CID-keyed fonts don't have glyph names - - if (this.isCIDFont) { - return null; - } - var charset = this.topDict.charset; - if (Array.isArray(charset)) { - return charset[gid]; - } - if (gid === 0) { - return '.notdef'; - } - gid -= 1; - switch (charset.version) { - case 0: - return this.string(charset.glyphs[gid]); - case 1: - case 2: - for (var i = 0; i < charset.ranges.length; i++) { - var range = charset.ranges[i]; - if (range.offset <= gid && gid <= range.offset + range.nLeft) { - return this.string(range.first + (gid - range.offset)); - } - } - break; - } - return null; - }; - _proto9.fdForGlyph = function fdForGlyph(gid) { - if (!this.topDict.FDSelect) { - return null; - } - switch (this.topDict.FDSelect.version) { - case 0: - return this.topDict.FDSelect.fds[gid]; - case 3: - case 4: - var ranges = this.topDict.FDSelect.ranges; - var low = 0; - var high = ranges.length - 1; - while (low <= high) { - var mid = low + high >> 1; - if (gid < ranges[mid].first) { - high = mid - 1; - } else if (mid < high && gid >= ranges[mid + 1].first) { - low = mid + 1; - } else { - return ranges[mid].fd; - } - } - default: - throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version)); - } - }; - _proto9.privateDictForGlyph = function privateDictForGlyph(gid) { - if (this.topDict.FDSelect) { - var fd = this.fdForGlyph(gid); - if (this.topDict.FDArray[fd]) { - return this.topDict.FDArray[fd].Private; - } - return null; - } - if (this.version < 2) { - return this.topDict.Private; - } - return this.topDict.FDArray[0].Private; - }; - return _createClass(CFFFont, [{ - key: "postscriptName", - get: function get() { - if (this.version < 2) { - return this.nameIndex[0]; - } - return null; - } - }, { - key: "fullName", - get: function get() { - return this.string(this.topDict.FullName); - } - }, { - key: "familyName", - get: function get() { - return this.string(this.topDict.FamilyName); - } - }]); -}(); -var VerticalOrigin = new r.Struct({ - glyphIndex: r.uint16, - vertOriginY: r.int16 -}); -var VORG = new r.Struct({ - majorVersion: r.uint16, - minorVersion: r.uint16, - defaultVertOriginY: r.int16, - numVertOriginYMetrics: r.uint16, - metrics: new r.Array(VerticalOrigin, 'numVertOriginYMetrics') -}); -var BigMetrics = new r.Struct({ - height: r.uint8, - width: r.uint8, - horiBearingX: r.int8, - horiBearingY: r.int8, - horiAdvance: r.uint8, - vertBearingX: r.int8, - vertBearingY: r.int8, - vertAdvance: r.uint8 -}); -var SmallMetrics = new r.Struct({ - height: r.uint8, - width: r.uint8, - bearingX: r.int8, - bearingY: r.int8, - advance: r.uint8 -}); -var EBDTComponent = new r.Struct({ - glyph: r.uint16, - xOffset: r.int8, - yOffset: r.int8 -}); -var ByteAligned = function ByteAligned() {}; -var BitAligned = function BitAligned() {}; -var glyph = new r.VersionedStruct('version', { - 1: { - metrics: SmallMetrics, - data: ByteAligned - }, - 2: { - metrics: SmallMetrics, - data: BitAligned - }, - // format 3 is deprecated - // format 4 is not supported by Microsoft - 5: { - data: BitAligned - }, - 6: { - metrics: BigMetrics, - data: ByteAligned - }, - 7: { - metrics: BigMetrics, - data: BitAligned - }, - 8: { - metrics: SmallMetrics, - pad: new r.Reserved(r.uint8), - numComponents: r.uint16, - components: new r.Array(EBDTComponent, 'numComponents') - }, - 9: { - metrics: BigMetrics, - pad: new r.Reserved(r.uint8), - numComponents: r.uint16, - components: new r.Array(EBDTComponent, 'numComponents') - }, - 17: { - metrics: SmallMetrics, - dataLen: r.uint32, - data: new r.Buffer('dataLen') - }, - 18: { - metrics: BigMetrics, - dataLen: r.uint32, - data: new r.Buffer('dataLen') - }, - 19: { - dataLen: r.uint32, - data: new r.Buffer('dataLen') - } -}); -var SBitLineMetrics = new r.Struct({ - ascender: r.int8, - descender: r.int8, - widthMax: r.uint8, - caretSlopeNumerator: r.int8, - caretSlopeDenominator: r.int8, - caretOffset: r.int8, - minOriginSB: r.int8, - minAdvanceSB: r.int8, - maxBeforeBL: r.int8, - minAfterBL: r.int8, - pad: new r.Reserved(r.int8, 2) -}); -var CodeOffsetPair = new r.Struct({ - glyphCode: r.uint16, - offset: r.uint16 -}); -var IndexSubtable = new r.VersionedStruct(r.uint16, { - header: { - imageFormat: r.uint16, - imageDataOffset: r.uint32 - }, - 1: { - offsetArray: new r.Array(r.uint32, function (t) { - return t.parent.lastGlyphIndex - t.parent.firstGlyphIndex + 1; - }) - }, - 2: { - imageSize: r.uint32, - bigMetrics: BigMetrics - }, - 3: { - offsetArray: new r.Array(r.uint16, function (t) { - return t.parent.lastGlyphIndex - t.parent.firstGlyphIndex + 1; - }) - }, - 4: { - numGlyphs: r.uint32, - glyphArray: new r.Array(CodeOffsetPair, function (t) { - return t.numGlyphs + 1; - }) - }, - 5: { - imageSize: r.uint32, - bigMetrics: BigMetrics, - numGlyphs: r.uint32, - glyphCodeArray: new r.Array(r.uint16, 'numGlyphs') - } -}); -var IndexSubtableArray = new r.Struct({ - firstGlyphIndex: r.uint16, - lastGlyphIndex: r.uint16, - subtable: new r.Pointer(r.uint32, IndexSubtable) -}); -var BitmapSizeTable = new r.Struct({ - indexSubTableArray: new r.Pointer(r.uint32, new r.Array(IndexSubtableArray, 1), { - type: 'parent' - }), - indexTablesSize: r.uint32, - numberOfIndexSubTables: r.uint32, - colorRef: r.uint32, - hori: SBitLineMetrics, - vert: SBitLineMetrics, - startGlyphIndex: r.uint16, - endGlyphIndex: r.uint16, - ppemX: r.uint8, - ppemY: r.uint8, - bitDepth: r.uint8, - flags: new r.Bitfield(r.uint8, ['horizontal', 'vertical']) -}); -var EBLC = new r.Struct({ - version: r.uint32, - // 0x00020000 - numSizes: r.uint32, - sizes: new r.Array(BitmapSizeTable, 'numSizes') -}); -var ImageTable = new r.Struct({ - ppem: r.uint16, - resolution: r.uint16, - imageOffsets: new r.Array(new r.Pointer(r.uint32, 'void'), function (t) { - return t.parent.parent.maxp.numGlyphs + 1; - }) -}); // This is the Apple sbix table, used by the "Apple Color Emoji" font. -// It includes several image tables with images for each bitmap glyph -// of several different sizes. + // Permuted Choice 2 constants + var PC2 = [14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32]; -var sbix = new r.Struct({ - version: r.uint16, - flags: new r.Bitfield(r.uint16, ['renderOutlines']), - numImgTables: r.uint32, - imageTables: new r.Array(new r.Pointer(r.uint32, ImageTable), 'numImgTables') -}); -var LayerRecord = new r.Struct({ - gid: r.uint16, - // Glyph ID of layer glyph (must be in z-order from bottom to top). - paletteIndex: r.uint16 // Index value to use in the appropriate palette. This value must -}); // be less than numPaletteEntries in the CPAL table, except for -// the special case noted below. Each palette entry is 16 bits. -// A palette index of 0xFFFF is a special case indicating that -// the text foreground color should be used. - -var BaseGlyphRecord = new r.Struct({ - gid: r.uint16, - // Glyph ID of reference glyph. This glyph is for reference only - // and is not rendered for color. - firstLayerIndex: r.uint16, - // Index (from beginning of the Layer Records) to the layer record. - // There will be numLayers consecutive entries for this base glyph. - numLayers: r.uint16 -}); -var COLR = new r.Struct({ - version: r.uint16, - numBaseGlyphRecords: r.uint16, - baseGlyphRecord: new r.Pointer(r.uint32, new r.Array(BaseGlyphRecord, 'numBaseGlyphRecords')), - layerRecords: new r.Pointer(r.uint32, new r.Array(LayerRecord, 'numLayerRecords'), { - lazy: true - }), - numLayerRecords: r.uint16 -}); -var ColorRecord = new r.Struct({ - blue: r.uint8, - green: r.uint8, - red: r.uint8, - alpha: r.uint8 -}); -var CPAL = new r.VersionedStruct(r.uint16, { - header: { - numPaletteEntries: r.uint16, - numPalettes: r.uint16, - numColorRecords: r.uint16, - colorRecords: new r.Pointer(r.uint32, new r.Array(ColorRecord, 'numColorRecords')), - colorRecordIndices: new r.Array(r.uint16, 'numPalettes') - }, - 0: {}, - 1: { - offsetPaletteTypeArray: new r.Pointer(r.uint32, new r.Array(r.uint32, 'numPalettes')), - offsetPaletteLabelArray: new r.Pointer(r.uint32, new r.Array(r.uint16, 'numPalettes')), - offsetPaletteEntryLabelArray: new r.Pointer(r.uint32, new r.Array(r.uint16, 'numPaletteEntries')) - } -}); -var BaseCoord = new r.VersionedStruct(r.uint16, { - 1: { - // Design units only - coordinate: r.int16 // X or Y value, in design units - }, - 2: { - // Design units plus contour point - coordinate: r.int16, - // X or Y value, in design units - referenceGlyph: r.uint16, - // GlyphID of control glyph - baseCoordPoint: r.uint16 // Index of contour point on the referenceGlyph - }, - 3: { - // Design units plus Device table - coordinate: r.int16, - // X or Y value, in design units - deviceTable: new r.Pointer(r.uint16, Device) // Device table for X or Y value - } -}); -var BaseValues = new r.Struct({ - defaultIndex: r.uint16, - // Index of default baseline for this script-same index in the BaseTagList - baseCoordCount: r.uint16, - baseCoords: new r.Array(new r.Pointer(r.uint16, BaseCoord), 'baseCoordCount') -}); -var FeatMinMaxRecord = new r.Struct({ - tag: new r.String(4), - // 4-byte feature identification tag-must match FeatureTag in FeatureList - minCoord: new r.Pointer(r.uint16, BaseCoord, { - type: 'parent' - }), - // May be NULL - maxCoord: new r.Pointer(r.uint16, BaseCoord, { - type: 'parent' - }) // May be NULL -}); -var MinMax = new r.Struct({ - minCoord: new r.Pointer(r.uint16, BaseCoord), - // May be NULL - maxCoord: new r.Pointer(r.uint16, BaseCoord), - // May be NULL - featMinMaxCount: r.uint16, - // May be 0 - featMinMaxRecords: new r.Array(FeatMinMaxRecord, 'featMinMaxCount') // In alphabetical order -}); -var BaseLangSysRecord = new r.Struct({ - tag: new r.String(4), - // 4-byte language system identification tag - minMax: new r.Pointer(r.uint16, MinMax, { - type: 'parent' - }) -}); -var BaseScript = new r.Struct({ - baseValues: new r.Pointer(r.uint16, BaseValues), - // May be NULL - defaultMinMax: new r.Pointer(r.uint16, MinMax), - // May be NULL - baseLangSysCount: r.uint16, - // May be 0 - baseLangSysRecords: new r.Array(BaseLangSysRecord, 'baseLangSysCount') // in alphabetical order by BaseLangSysTag -}); -var BaseScriptRecord = new r.Struct({ - tag: new r.String(4), - // 4-byte script identification tag - script: new r.Pointer(r.uint16, BaseScript, { - type: 'parent' - }) -}); -var BaseScriptList = new r.Array(BaseScriptRecord, r.uint16); // Array of 4-byte baseline identification tags-must be in alphabetical order - -var BaseTagList = new r.Array(new r.String(4), r.uint16); -var Axis = new r.Struct({ - baseTagList: new r.Pointer(r.uint16, BaseTagList), - // May be NULL - baseScriptList: new r.Pointer(r.uint16, BaseScriptList) -}); -var BASE = new r.VersionedStruct(r.uint32, { - header: { - horizAxis: new r.Pointer(r.uint16, Axis), - // May be NULL - vertAxis: new r.Pointer(r.uint16, Axis) // May be NULL - }, - 0x00010000: {}, - 0x00010001: { - itemVariationStore: new r.Pointer(r.uint32, ItemVariationStore) - } -}); -var AttachPoint = new r.Array(r.uint16, r.uint16); -var AttachList = new r.Struct({ - coverage: new r.Pointer(r.uint16, Coverage), - glyphCount: r.uint16, - attachPoints: new r.Array(new r.Pointer(r.uint16, AttachPoint), 'glyphCount') -}); -var CaretValue = new r.VersionedStruct(r.uint16, { - 1: { - // Design units only - coordinate: r.int16 - }, - 2: { - // Contour point - caretValuePoint: r.uint16 - }, - 3: { - // Design units plus Device table - coordinate: r.int16, - deviceTable: new r.Pointer(r.uint16, Device) - } -}); -var LigGlyph = new r.Array(new r.Pointer(r.uint16, CaretValue), r.uint16); -var LigCaretList = new r.Struct({ - coverage: new r.Pointer(r.uint16, Coverage), - ligGlyphCount: r.uint16, - ligGlyphs: new r.Array(new r.Pointer(r.uint16, LigGlyph), 'ligGlyphCount') -}); -var MarkGlyphSetsDef = new r.Struct({ - markSetTableFormat: r.uint16, - markSetCount: r.uint16, - coverage: new r.Array(new r.Pointer(r.uint32, Coverage), 'markSetCount') -}); -var GDEF = new r.VersionedStruct(r.uint32, { - header: { - glyphClassDef: new r.Pointer(r.uint16, ClassDef), - attachList: new r.Pointer(r.uint16, AttachList), - ligCaretList: new r.Pointer(r.uint16, LigCaretList), - markAttachClassDef: new r.Pointer(r.uint16, ClassDef) - }, - 0x00010000: {}, - 0x00010002: { - markGlyphSetsDef: new r.Pointer(r.uint16, MarkGlyphSetsDef) - }, - 0x00010003: { - markGlyphSetsDef: new r.Pointer(r.uint16, MarkGlyphSetsDef), - itemVariationStore: new r.Pointer(r.uint32, ItemVariationStore) - } -}); -var ValueFormat = new r.Bitfield(r.uint16, ['xPlacement', 'yPlacement', 'xAdvance', 'yAdvance', 'xPlaDevice', 'yPlaDevice', 'xAdvDevice', 'yAdvDevice']); -var types = { - xPlacement: r.int16, - yPlacement: r.int16, - xAdvance: r.int16, - yAdvance: r.int16, - xPlaDevice: new r.Pointer(r.uint16, Device, { - type: 'global', - relativeTo: function relativeTo(ctx) { - return ctx.rel; - } - }), - yPlaDevice: new r.Pointer(r.uint16, Device, { - type: 'global', - relativeTo: function relativeTo(ctx) { - return ctx.rel; - } - }), - xAdvDevice: new r.Pointer(r.uint16, Device, { - type: 'global', - relativeTo: function relativeTo(ctx) { - return ctx.rel; - } - }), - yAdvDevice: new r.Pointer(r.uint16, Device, { - type: 'global', - relativeTo: function relativeTo(ctx) { - return ctx.rel; - } - }) -}; -var ValueRecord = /*#__PURE__*/function () { - function ValueRecord(key) { - if (key === void 0) { - key = 'valueFormat'; - } - this.key = key; - } - var _proto0 = ValueRecord.prototype; - _proto0.buildStruct = function buildStruct(parent) { - var struct = parent; - while (!struct[this.key] && struct.parent) { - struct = struct.parent; - } - if (!struct[this.key]) return; - var fields = {}; - fields.rel = function () { - return struct._startOffset; - }; - var format = struct[this.key]; - for (var key in format) { - if (format[key]) { - fields[key] = types[key]; - } - } - return new r.Struct(fields); - }; - _proto0.size = function size(val, ctx) { - return this.buildStruct(ctx).size(val, ctx); - }; - _proto0.decode = function decode(stream, parent) { - var res = this.buildStruct(parent).decode(stream, parent); - delete res.rel; - return res; - }; - return ValueRecord; -}(); -var PairValueRecord = new r.Struct({ - secondGlyph: r.uint16, - value1: new ValueRecord('valueFormat1'), - value2: new ValueRecord('valueFormat2') -}); -var PairSet = new r.Array(PairValueRecord, r.uint16); -var Class2Record = new r.Struct({ - value1: new ValueRecord('valueFormat1'), - value2: new ValueRecord('valueFormat2') -}); -var Anchor = new r.VersionedStruct(r.uint16, { - 1: { - // Design units only - xCoordinate: r.int16, - yCoordinate: r.int16 - }, - 2: { - // Design units plus contour point - xCoordinate: r.int16, - yCoordinate: r.int16, - anchorPoint: r.uint16 - }, - 3: { - // Design units plus Device tables - xCoordinate: r.int16, - yCoordinate: r.int16, - xDeviceTable: new r.Pointer(r.uint16, Device), - yDeviceTable: new r.Pointer(r.uint16, Device) - } -}); -var EntryExitRecord = new r.Struct({ - entryAnchor: new r.Pointer(r.uint16, Anchor, { - type: 'parent' - }), - exitAnchor: new r.Pointer(r.uint16, Anchor, { - type: 'parent' - }) -}); -var MarkRecord = new r.Struct({ - class: r.uint16, - markAnchor: new r.Pointer(r.uint16, Anchor, { - type: 'parent' - }) -}); -var MarkArray = new r.Array(MarkRecord, r.uint16); -var BaseRecord = new r.Array(new r.Pointer(r.uint16, Anchor), function (t) { - return t.parent.classCount; -}); -var BaseArray = new r.Array(BaseRecord, r.uint16); -var ComponentRecord = new r.Array(new r.Pointer(r.uint16, Anchor), function (t) { - return t.parent.parent.classCount; -}); -var LigatureAttach = new r.Array(ComponentRecord, r.uint16); -var LigatureArray = new r.Array(new r.Pointer(r.uint16, LigatureAttach), r.uint16); -var GPOSLookup = new r.VersionedStruct('lookupType', { - 1: new r.VersionedStruct(r.uint16, { - // Single Adjustment - 1: { - // Single positioning value - coverage: new r.Pointer(r.uint16, Coverage), - valueFormat: ValueFormat, - value: new ValueRecord() - }, - 2: { - coverage: new r.Pointer(r.uint16, Coverage), - valueFormat: ValueFormat, - valueCount: r.uint16, - values: new r.LazyArray(new ValueRecord(), 'valueCount') - } - }), - 2: new r.VersionedStruct(r.uint16, { - // Pair Adjustment Positioning - 1: { - // Adjustments for glyph pairs - coverage: new r.Pointer(r.uint16, Coverage), - valueFormat1: ValueFormat, - valueFormat2: ValueFormat, - pairSetCount: r.uint16, - pairSets: new r.LazyArray(new r.Pointer(r.uint16, PairSet), 'pairSetCount') - }, - 2: { - // Class pair adjustment - coverage: new r.Pointer(r.uint16, Coverage), - valueFormat1: ValueFormat, - valueFormat2: ValueFormat, - classDef1: new r.Pointer(r.uint16, ClassDef), - classDef2: new r.Pointer(r.uint16, ClassDef), - class1Count: r.uint16, - class2Count: r.uint16, - classRecords: new r.LazyArray(new r.LazyArray(Class2Record, 'class2Count'), 'class1Count') - } - }), - 3: { - // Cursive Attachment Positioning - format: r.uint16, - coverage: new r.Pointer(r.uint16, Coverage), - entryExitCount: r.uint16, - entryExitRecords: new r.Array(EntryExitRecord, 'entryExitCount') - }, - 4: { - // MarkToBase Attachment Positioning - format: r.uint16, - markCoverage: new r.Pointer(r.uint16, Coverage), - baseCoverage: new r.Pointer(r.uint16, Coverage), - classCount: r.uint16, - markArray: new r.Pointer(r.uint16, MarkArray), - baseArray: new r.Pointer(r.uint16, BaseArray) - }, - 5: { - // MarkToLigature Attachment Positioning - format: r.uint16, - markCoverage: new r.Pointer(r.uint16, Coverage), - ligatureCoverage: new r.Pointer(r.uint16, Coverage), - classCount: r.uint16, - markArray: new r.Pointer(r.uint16, MarkArray), - ligatureArray: new r.Pointer(r.uint16, LigatureArray) - }, - 6: { - // MarkToMark Attachment Positioning - format: r.uint16, - mark1Coverage: new r.Pointer(r.uint16, Coverage), - mark2Coverage: new r.Pointer(r.uint16, Coverage), - classCount: r.uint16, - mark1Array: new r.Pointer(r.uint16, MarkArray), - mark2Array: new r.Pointer(r.uint16, BaseArray) - }, - 7: Context, - // Contextual positioning - 8: ChainingContext, - // Chaining contextual positioning - 9: { - // Extension Positioning - posFormat: r.uint16, - lookupType: r.uint16, - // cannot also be 9 - extension: new r.Pointer(r.uint32, GPOSLookup) - } -}); // Fix circular reference - -GPOSLookup.versions[9].extension.type = GPOSLookup; -var GPOS = new r.VersionedStruct(r.uint32, { - header: { - scriptList: new r.Pointer(r.uint16, ScriptList), - featureList: new r.Pointer(r.uint16, FeatureList), - lookupList: new r.Pointer(r.uint16, new LookupList(GPOSLookup)) - }, - 0x00010000: {}, - 0x00010001: { - featureVariations: new r.Pointer(r.uint32, FeatureVariations) - } -}); // export GPOSLookup for JSTF table - -var Sequence = new r.Array(r.uint16, r.uint16); -var AlternateSet = Sequence; -var Ligature = new r.Struct({ - glyph: r.uint16, - compCount: r.uint16, - components: new r.Array(r.uint16, function (t) { - return t.compCount - 1; - }) -}); -var LigatureSet = new r.Array(new r.Pointer(r.uint16, Ligature), r.uint16); -var GSUBLookup = new r.VersionedStruct('lookupType', { - 1: new r.VersionedStruct(r.uint16, { - // Single Substitution - 1: { - coverage: new r.Pointer(r.uint16, Coverage), - deltaGlyphID: r.int16 - }, - 2: { - coverage: new r.Pointer(r.uint16, Coverage), - glyphCount: r.uint16, - substitute: new r.LazyArray(r.uint16, 'glyphCount') - } - }), - 2: { - // Multiple Substitution - substFormat: r.uint16, - coverage: new r.Pointer(r.uint16, Coverage), - count: r.uint16, - sequences: new r.LazyArray(new r.Pointer(r.uint16, Sequence), 'count') - }, - 3: { - // Alternate Substitution - substFormat: r.uint16, - coverage: new r.Pointer(r.uint16, Coverage), - count: r.uint16, - alternateSet: new r.LazyArray(new r.Pointer(r.uint16, AlternateSet), 'count') - }, - 4: { - // Ligature Substitution - substFormat: r.uint16, - coverage: new r.Pointer(r.uint16, Coverage), - count: r.uint16, - ligatureSets: new r.LazyArray(new r.Pointer(r.uint16, LigatureSet), 'count') - }, - 5: Context, - // Contextual Substitution - 6: ChainingContext, - // Chaining Contextual Substitution - 7: { - // Extension Substitution - substFormat: r.uint16, - lookupType: r.uint16, - // cannot also be 7 - extension: new r.Pointer(r.uint32, GSUBLookup) - }, - 8: { - // Reverse Chaining Contextual Single Substitution - substFormat: r.uint16, - coverage: new r.Pointer(r.uint16, Coverage), - backtrackCoverage: new r.Array(new r.Pointer(r.uint16, Coverage), 'backtrackGlyphCount'), - lookaheadGlyphCount: r.uint16, - lookaheadCoverage: new r.Array(new r.Pointer(r.uint16, Coverage), 'lookaheadGlyphCount'), - glyphCount: r.uint16, - substitutes: new r.Array(r.uint16, 'glyphCount') - } -}); // Fix circular reference - -GSUBLookup.versions[7].extension.type = GSUBLookup; -var GSUB = new r.VersionedStruct(r.uint32, { - header: { - scriptList: new r.Pointer(r.uint16, ScriptList), - featureList: new r.Pointer(r.uint16, FeatureList), - lookupList: new r.Pointer(r.uint16, new LookupList(GSUBLookup)) - }, - 0x00010000: {}, - 0x00010001: { - featureVariations: new r.Pointer(r.uint32, FeatureVariations) - } -}); -var JstfGSUBModList = new r.Array(r.uint16, r.uint16); -var JstfPriority = new r.Struct({ - shrinkageEnableGSUB: new r.Pointer(r.uint16, JstfGSUBModList), - shrinkageDisableGSUB: new r.Pointer(r.uint16, JstfGSUBModList), - shrinkageEnableGPOS: new r.Pointer(r.uint16, JstfGSUBModList), - shrinkageDisableGPOS: new r.Pointer(r.uint16, JstfGSUBModList), - shrinkageJstfMax: new r.Pointer(r.uint16, new LookupList(GPOSLookup)), - extensionEnableGSUB: new r.Pointer(r.uint16, JstfGSUBModList), - extensionDisableGSUB: new r.Pointer(r.uint16, JstfGSUBModList), - extensionEnableGPOS: new r.Pointer(r.uint16, JstfGSUBModList), - extensionDisableGPOS: new r.Pointer(r.uint16, JstfGSUBModList), - extensionJstfMax: new r.Pointer(r.uint16, new LookupList(GPOSLookup)) -}); -var JstfLangSys = new r.Array(new r.Pointer(r.uint16, JstfPriority), r.uint16); -var JstfLangSysRecord = new r.Struct({ - tag: new r.String(4), - jstfLangSys: new r.Pointer(r.uint16, JstfLangSys) -}); -var JstfScript = new r.Struct({ - extenderGlyphs: new r.Pointer(r.uint16, new r.Array(r.uint16, r.uint16)), - // array of glyphs to extend line length - defaultLangSys: new r.Pointer(r.uint16, JstfLangSys), - langSysCount: r.uint16, - langSysRecords: new r.Array(JstfLangSysRecord, 'langSysCount') -}); -var JstfScriptRecord = new r.Struct({ - tag: new r.String(4), - script: new r.Pointer(r.uint16, JstfScript, { - type: 'parent' - }) -}); -var JSTF = new r.Struct({ - version: r.uint32, - // should be 0x00010000 - scriptCount: r.uint16, - scriptList: new r.Array(JstfScriptRecord, 'scriptCount') -}); -var VariableSizeNumber = /*#__PURE__*/function () { - function VariableSizeNumber(size) { - this._size = size; - } - var _proto1 = VariableSizeNumber.prototype; - _proto1.decode = function decode(stream, parent) { - switch (this.size(0, parent)) { - case 1: - return stream.readUInt8(); - case 2: - return stream.readUInt16BE(); - case 3: - return stream.readUInt24BE(); - case 4: - return stream.readUInt32BE(); - } - }; - _proto1.size = function size(val, parent) { - return utils.resolveLength(this._size, null, parent); - }; - return VariableSizeNumber; -}(); -var MapDataEntry = new r.Struct({ - entry: new VariableSizeNumber(function (t) { - return ((t.parent.entryFormat & 0x0030) >> 4) + 1; - }), - outerIndex: function outerIndex(t) { - return t.entry >> (t.parent.entryFormat & 0x000F) + 1; - }, - innerIndex: function innerIndex(t) { - return t.entry & (1 << (t.parent.entryFormat & 0x000F) + 1) - 1; - } -}); -var DeltaSetIndexMap = new r.Struct({ - entryFormat: r.uint16, - mapCount: r.uint16, - mapData: new r.Array(MapDataEntry, 'mapCount') -}); -var HVAR = new r.Struct({ - majorVersion: r.uint16, - minorVersion: r.uint16, - itemVariationStore: new r.Pointer(r.uint32, ItemVariationStore), - advanceWidthMapping: new r.Pointer(r.uint32, DeltaSetIndexMap), - LSBMapping: new r.Pointer(r.uint32, DeltaSetIndexMap), - RSBMapping: new r.Pointer(r.uint32, DeltaSetIndexMap) -}); -var Signature = new r.Struct({ - format: r.uint32, - length: r.uint32, - offset: r.uint32 -}); -var SignatureBlock = new r.Struct({ - reserved: new r.Reserved(r.uint16, 2), - cbSignature: r.uint32, - // Length (in bytes) of the PKCS#7 packet in pbSignature - signature: new r.Buffer('cbSignature') -}); -var DSIG = new r.Struct({ - ulVersion: r.uint32, - // Version number of the DSIG table (0x00000001) - usNumSigs: r.uint16, - // Number of signatures in the table - usFlag: r.uint16, - // Permission flags - signatures: new r.Array(Signature, 'usNumSigs'), - signatureBlocks: new r.Array(SignatureBlock, 'usNumSigs') -}); -var GaspRange = new r.Struct({ - rangeMaxPPEM: r.uint16, - // Upper limit of range, in ppem - rangeGaspBehavior: new r.Bitfield(r.uint16, [ - // Flags describing desired rasterizer behavior - 'grayscale', 'gridfit', 'symmetricSmoothing', 'symmetricGridfit' // only in version 1, for ClearType - ]) -}); -var gasp = new r.Struct({ - version: r.uint16, - // set to 0 - numRanges: r.uint16, - gaspRanges: new r.Array(GaspRange, 'numRanges') // Sorted by ppem -}); -var DeviceRecord = new r.Struct({ - pixelSize: r.uint8, - maximumWidth: r.uint8, - widths: new r.Array(r.uint8, function (t) { - return t.parent.parent.maxp.numGlyphs; - }) -}); // The Horizontal Device Metrics table stores integer advance widths scaled to particular pixel sizes - -var hdmx = new r.Struct({ - version: r.uint16, - numRecords: r.int16, - sizeDeviceRecord: r.int32, - records: new r.Array(DeviceRecord, 'numRecords') -}); -var KernPair = new r.Struct({ - left: r.uint16, - right: r.uint16, - value: r.int16 -}); -var ClassTable = new r.Struct({ - firstGlyph: r.uint16, - nGlyphs: r.uint16, - offsets: new r.Array(r.uint16, 'nGlyphs'), - max: function max(t) { - return t.offsets.length && Math.max.apply(Math, t.offsets); - } -}); -var Kern2Array = new r.Struct({ - off: function off(t) { - return t._startOffset - t.parent.parent._startOffset; - }, - len: function len(t) { - return ((t.parent.leftTable.max - t.off) / t.parent.rowWidth + 1) * (t.parent.rowWidth / 2); - }, - values: new r.LazyArray(r.int16, 'len') -}); -var KernSubtable = new r.VersionedStruct('format', { - 0: { - nPairs: r.uint16, - searchRange: r.uint16, - entrySelector: r.uint16, - rangeShift: r.uint16, - pairs: new r.Array(KernPair, 'nPairs') - }, - 2: { - rowWidth: r.uint16, - leftTable: new r.Pointer(r.uint16, ClassTable, { - type: 'parent' - }), - rightTable: new r.Pointer(r.uint16, ClassTable, { - type: 'parent' - }), - array: new r.Pointer(r.uint16, Kern2Array, { - type: 'parent' - }) - }, - 3: { - glyphCount: r.uint16, - kernValueCount: r.uint8, - leftClassCount: r.uint8, - rightClassCount: r.uint8, - flags: r.uint8, - kernValue: new r.Array(r.int16, 'kernValueCount'), - leftClass: new r.Array(r.uint8, 'glyphCount'), - rightClass: new r.Array(r.uint8, 'glyphCount'), - kernIndex: new r.Array(r.uint8, function (t) { - return t.leftClassCount * t.rightClassCount; - }) - } -}); -var KernTable = new r.VersionedStruct('version', { - 0: { - // Microsoft uses this format - subVersion: r.uint16, - // Microsoft has an extra sub-table version number - length: r.uint16, - // Length of the subtable, in bytes - format: r.uint8, - // Format of subtable - coverage: new r.Bitfield(r.uint8, ['horizontal', - // 1 if table has horizontal data, 0 if vertical - 'minimum', - // If set to 1, the table has minimum values. If set to 0, the table has kerning values. - 'crossStream', - // If set to 1, kerning is perpendicular to the flow of the text - 'override' // If set to 1 the value in this table replaces the accumulated value - ]), - subtable: KernSubtable, - padding: new r.Reserved(r.uint8, function (t) { - return t.length - t._currentOffset; - }) - }, - 1: { - // Apple uses this format - length: r.uint32, - coverage: new r.Bitfield(r.uint8, [null, null, null, null, null, 'variation', - // Set if table has variation kerning values - 'crossStream', - // Set if table has cross-stream kerning values - 'vertical' // Set if table has vertical kerning values - ]), - format: r.uint8, - tupleIndex: r.uint16, - subtable: KernSubtable, - padding: new r.Reserved(r.uint8, function (t) { - return t.length - t._currentOffset; - }) - } -}); -var kern = new r.VersionedStruct(r.uint16, { - 0: { - // Microsoft Version - nTables: r.uint16, - tables: new r.Array(KernTable, 'nTables') - }, - 1: { - // Apple Version - reserved: new r.Reserved(r.uint16), - // the other half of the version number - nTables: r.uint32, - tables: new r.Array(KernTable, 'nTables') - } -}); - -// Records the ppem for each glyph at which the scaling becomes linear again, -// despite instructions effecting the advance width - -var LTSH = new r.Struct({ - version: r.uint16, - numGlyphs: r.uint16, - yPels: new r.Array(r.uint8, 'numGlyphs') -}); - -// NOTE: The PCLT table is strongly discouraged for OpenType fonts with TrueType outlines - -var PCLT = new r.Struct({ - version: r.uint16, - fontNumber: r.uint32, - pitch: r.uint16, - xHeight: r.uint16, - style: r.uint16, - typeFamily: r.uint16, - capHeight: r.uint16, - symbolSet: r.uint16, - typeface: new r.String(16), - characterComplement: new r.String(8), - fileName: new r.String(6), - strokeWeight: new r.String(1), - widthType: new r.String(1), - serifStyle: r.uint8, - reserved: new r.Reserved(r.uint8) -}); - -// sizes. This is needed in order to match font metrics on Windows. - -var Ratio = new r.Struct({ - bCharSet: r.uint8, - // Character set - xRatio: r.uint8, - // Value to use for x-Ratio - yStartRatio: r.uint8, - // Starting y-Ratio value - yEndRatio: r.uint8 // Ending y-Ratio value -}); -var vTable = new r.Struct({ - yPelHeight: r.uint16, - // yPelHeight to which values apply - yMax: r.int16, - // Maximum value (in pels) for this yPelHeight - yMin: r.int16 // Minimum value (in pels) for this yPelHeight -}); -var VdmxGroup = new r.Struct({ - recs: r.uint16, - // Number of height records in this group - startsz: r.uint8, - // Starting yPelHeight - endsz: r.uint8, - // Ending yPelHeight - entries: new r.Array(vTable, 'recs') // The VDMX records -}); -var VDMX = new r.Struct({ - version: r.uint16, - // Version number (0 or 1) - numRecs: r.uint16, - // Number of VDMX groups present - numRatios: r.uint16, - // Number of aspect ratio groupings - ratioRanges: new r.Array(Ratio, 'numRatios'), - // Ratio ranges - offsets: new r.Array(r.uint16, 'numRatios'), - // Offset to the VDMX group for this ratio range - groups: new r.Array(VdmxGroup, 'numRecs') // The actual VDMX groupings -}); -var vhea = new r.Struct({ - version: r.uint16, - // Version number of the Vertical Header Table - ascent: r.int16, - // The vertical typographic ascender for this font - descent: r.int16, - // The vertical typographic descender for this font - lineGap: r.int16, - // The vertical typographic line gap for this font - advanceHeightMax: r.int16, - // The maximum advance height measurement found in the font - minTopSideBearing: r.int16, - // The minimum top side bearing measurement found in the font - minBottomSideBearing: r.int16, - // The minimum bottom side bearing measurement found in the font - yMaxExtent: r.int16, - caretSlopeRise: r.int16, - // Caret slope (rise/run) - caretSlopeRun: r.int16, - caretOffset: r.int16, - // Set value equal to 0 for nonslanted fonts - reserved: new r.Reserved(r.int16, 4), - metricDataFormat: r.int16, - // Set to 0 - numberOfMetrics: r.uint16 // Number of advance heights in the Vertical Metrics table -}); -var VmtxEntry = new r.Struct({ - advance: r.uint16, - // The advance height of the glyph - bearing: r.int16 // The top sidebearing of the glyph -}); // Vertical Metrics Table - -var vmtx = new r.Struct({ - metrics: new r.LazyArray(VmtxEntry, function (t) { - return t.parent.vhea.numberOfMetrics; - }), - bearings: new r.LazyArray(r.int16, function (t) { - return t.parent.maxp.numGlyphs - t.parent.vhea.numberOfMetrics; - }) -}); -var shortFrac = new r.Fixed(16, 'BE', 14); -var Correspondence = new r.Struct({ - fromCoord: shortFrac, - toCoord: shortFrac -}); -var Segment = new r.Struct({ - pairCount: r.uint16, - correspondence: new r.Array(Correspondence, 'pairCount') -}); -var avar = new r.Struct({ - version: r.fixed32, - axisCount: r.uint32, - segment: new r.Array(Segment, 'axisCount') -}); -var UnboundedArrayAccessor = /*#__PURE__*/function () { - function UnboundedArrayAccessor(type, stream, parent) { - this.type = type; - this.stream = stream; - this.parent = parent; - this.base = this.stream.pos; - this._items = []; - } - var _proto10 = UnboundedArrayAccessor.prototype; - _proto10.getItem = function getItem(index) { - if (this._items[index] == null) { - var pos = this.stream.pos; - this.stream.pos = this.base + this.type.size(null, this.parent) * index; - this._items[index] = this.type.decode(this.stream, this.parent); - this.stream.pos = pos; - } - return this._items[index]; - }; - _proto10.inspect = function inspect() { - return "[UnboundedArray ".concat(this.type.constructor.name, "]"); - }; - return UnboundedArrayAccessor; -}(); -var UnboundedArray = /*#__PURE__*/function (_r$Array2) { - function UnboundedArray(type) { - return _r$Array2.call(this, type, 0) || this; - } - _inheritsLoose(UnboundedArray, _r$Array2); - var _proto11 = UnboundedArray.prototype; - _proto11.decode = function decode(stream, parent) { - return new UnboundedArrayAccessor(this.type, stream, parent); - }; - return UnboundedArray; -}(r.Array); -var LookupTable = function LookupTable(ValueType) { - if (ValueType === void 0) { - ValueType = r.uint16; - } - // Helper class that makes internal structures invisible to pointers - var Shadow = /*#__PURE__*/function () { - function Shadow(type) { - this.type = type; - } - var _proto12 = Shadow.prototype; - _proto12.decode = function decode(stream, ctx) { - ctx = ctx.parent.parent; - return this.type.decode(stream, ctx); - }; - _proto12.size = function size(val, ctx) { - ctx = ctx.parent.parent; - return this.type.size(val, ctx); - }; - _proto12.encode = function encode(stream, val, ctx) { - ctx = ctx.parent.parent; - return this.type.encode(stream, val, ctx); - }; - return Shadow; - }(); - ValueType = new Shadow(ValueType); - var BinarySearchHeader = new r.Struct({ - unitSize: r.uint16, - nUnits: r.uint16, - searchRange: r.uint16, - entrySelector: r.uint16, - rangeShift: r.uint16 - }); - var LookupSegmentSingle = new r.Struct({ - lastGlyph: r.uint16, - firstGlyph: r.uint16, - value: ValueType - }); - var LookupSegmentArray = new r.Struct({ - lastGlyph: r.uint16, - firstGlyph: r.uint16, - values: new r.Pointer(r.uint16, new r.Array(ValueType, function (t) { - return t.lastGlyph - t.firstGlyph + 1; - }), { - type: 'parent' - }) - }); - var LookupSingle = new r.Struct({ - glyph: r.uint16, - value: ValueType - }); - return new r.VersionedStruct(r.uint16, { - 0: { - values: new UnboundedArray(ValueType) // length == number of glyphs maybe? - }, - 2: { - binarySearchHeader: BinarySearchHeader, - segments: new r.Array(LookupSegmentSingle, function (t) { - return t.binarySearchHeader.nUnits; - }) - }, - 4: { - binarySearchHeader: BinarySearchHeader, - segments: new r.Array(LookupSegmentArray, function (t) { - return t.binarySearchHeader.nUnits; - }) - }, - 6: { - binarySearchHeader: BinarySearchHeader, - segments: new r.Array(LookupSingle, function (t) { - return t.binarySearchHeader.nUnits; - }) - }, - 8: { - firstGlyph: r.uint16, - count: r.uint16, - values: new r.Array(ValueType, 'count') - } - }); -}; -function StateTable(entryData, lookupType) { - if (entryData === void 0) { - entryData = {}; - } - if (lookupType === void 0) { - lookupType = r.uint16; - } - var entry = Object.assign({ - newState: r.uint16, - flags: r.uint16 - }, entryData); - var Entry = new r.Struct(entry); - var StateArray = new UnboundedArray(new r.Array(r.uint16, function (t) { - return t.nClasses; - })); - var StateHeader = new r.Struct({ - nClasses: r.uint32, - classTable: new r.Pointer(r.uint32, new LookupTable(lookupType)), - stateArray: new r.Pointer(r.uint32, StateArray), - entryTable: new r.Pointer(r.uint32, new UnboundedArray(Entry)) - }); - return StateHeader; -} // This is the old version of the StateTable structure - -function StateTable1(entryData, lookupType) { - if (entryData === void 0) { - entryData = {}; - } - if (lookupType === void 0) { - lookupType = r.uint16; - } - var ClassLookupTable = new r.Struct({ - version: function version() { - return 8; - }, - // simulate LookupTable - firstGlyph: r.uint16, - values: new r.Array(r.uint8, r.uint16) - }); - var entry = Object.assign({ - newStateOffset: r.uint16, - // convert offset to stateArray index - newState: function newState(t) { - return (t.newStateOffset - (t.parent.stateArray.base - t.parent._startOffset)) / t.parent.nClasses; - }, - flags: r.uint16 - }, entryData); - var Entry = new r.Struct(entry); - var StateArray = new UnboundedArray(new r.Array(r.uint8, function (t) { - return t.nClasses; - })); - var StateHeader1 = new r.Struct({ - nClasses: r.uint16, - classTable: new r.Pointer(r.uint16, ClassLookupTable), - stateArray: new r.Pointer(r.uint16, StateArray), - entryTable: new r.Pointer(r.uint16, new UnboundedArray(Entry)) - }); - return StateHeader1; -} -var BslnSubtable = new r.VersionedStruct('format', { - 0: { - // Distance-based, no mapping - deltas: new r.Array(r.int16, 32) - }, - 1: { - // Distance-based, with mapping - deltas: new r.Array(r.int16, 32), - mappingData: new LookupTable(r.uint16) - }, - 2: { - // Control point-based, no mapping - standardGlyph: r.uint16, - controlPoints: new r.Array(r.uint16, 32) - }, - 3: { - // Control point-based, with mapping - standardGlyph: r.uint16, - controlPoints: new r.Array(r.uint16, 32), - mappingData: new LookupTable(r.uint16) - } -}); -var bsln = new r.Struct({ - version: r.fixed32, - format: r.uint16, - defaultBaseline: r.uint16, - subtable: BslnSubtable -}); -var Setting = new r.Struct({ - setting: r.uint16, - nameIndex: r.int16, - name: function name(t) { - return t.parent.parent.parent.name.records.fontFeatures[t.nameIndex]; - } -}); -var FeatureName = new r.Struct({ - feature: r.uint16, - nSettings: r.uint16, - settingTable: new r.Pointer(r.uint32, new r.Array(Setting, 'nSettings'), { - type: 'parent' - }), - featureFlags: new r.Bitfield(r.uint8, [null, null, null, null, null, null, 'hasDefault', 'exclusive']), - defaultSetting: r.uint8, - nameIndex: r.int16, - name: function name(t) { - return t.parent.parent.name.records.fontFeatures[t.nameIndex]; - } -}); -var feat = new r.Struct({ - version: r.fixed32, - featureNameCount: r.uint16, - reserved1: new r.Reserved(r.uint16), - reserved2: new r.Reserved(r.uint32), - featureNames: new r.Array(FeatureName, 'featureNameCount') -}); -var Axis$1 = new r.Struct({ - axisTag: new r.String(4), - minValue: r.fixed32, - defaultValue: r.fixed32, - maxValue: r.fixed32, - flags: r.uint16, - nameID: r.uint16, - name: function name(t) { - return t.parent.parent.name.records.fontFeatures[t.nameID]; - } -}); -var Instance = new r.Struct({ - nameID: r.uint16, - name: function name(t) { - return t.parent.parent.name.records.fontFeatures[t.nameID]; - }, - flags: r.uint16, - coord: new r.Array(r.fixed32, function (t) { - return t.parent.axisCount; - }), - postscriptNameID: new r.Optional(r.uint16, function (t) { - return t.parent.instanceSize - t._currentOffset > 0; - }) -}); -var fvar = new r.Struct({ - version: r.fixed32, - offsetToData: r.uint16, - countSizePairs: r.uint16, - axisCount: r.uint16, - axisSize: r.uint16, - instanceCount: r.uint16, - instanceSize: r.uint16, - axis: new r.Array(Axis$1, 'axisCount'), - instance: new r.Array(Instance, 'instanceCount') -}); -var shortFrac$1 = new r.Fixed(16, 'BE', 14); -var Offset = /*#__PURE__*/function () { - function Offset() {} - Offset.decode = function decode(stream, parent) { - // In short format, offsets are multiplied by 2. - // This doesn't seem to be documented by Apple, but it - // is implemented this way in Freetype. - return parent.flags ? stream.readUInt32BE() : stream.readUInt16BE() * 2; - }; - return Offset; -}(); -var gvar = new r.Struct({ - version: r.uint16, - reserved: new r.Reserved(r.uint16), - axisCount: r.uint16, - globalCoordCount: r.uint16, - globalCoords: new r.Pointer(r.uint32, new r.Array(new r.Array(shortFrac$1, 'axisCount'), 'globalCoordCount')), - glyphCount: r.uint16, - flags: r.uint16, - offsetToData: r.uint32, - offsets: new r.Array(new r.Pointer(Offset, 'void', { - relativeTo: function relativeTo(ctx) { - return ctx.offsetToData; - }, - allowNull: false - }), function (t) { - return t.glyphCount + 1; - }) -}); -var ClassTable$1 = new r.Struct({ - length: r.uint16, - coverage: r.uint16, - subFeatureFlags: r.uint32, - stateTable: new StateTable1() -}); -var WidthDeltaRecord = new r.Struct({ - justClass: r.uint32, - beforeGrowLimit: r.fixed32, - beforeShrinkLimit: r.fixed32, - afterGrowLimit: r.fixed32, - afterShrinkLimit: r.fixed32, - growFlags: r.uint16, - shrinkFlags: r.uint16 -}); -var WidthDeltaCluster = new r.Array(WidthDeltaRecord, r.uint32); -var ActionData = new r.VersionedStruct('actionType', { - 0: { - // Decomposition action - lowerLimit: r.fixed32, - upperLimit: r.fixed32, - order: r.uint16, - glyphs: new r.Array(r.uint16, r.uint16) - }, - 1: { - // Unconditional add glyph action - addGlyph: r.uint16 - }, - 2: { - // Conditional add glyph action - substThreshold: r.fixed32, - addGlyph: r.uint16, - substGlyph: r.uint16 - }, - 3: {}, - // Stretch glyph action (no data, not supported by CoreText) - 4: { - // Ductile glyph action (not supported by CoreText) - variationAxis: r.uint32, - minimumLimit: r.fixed32, - noStretchValue: r.fixed32, - maximumLimit: r.fixed32 - }, - 5: { - // Repeated add glyph action - flags: r.uint16, - glyph: r.uint16 - } -}); -var Action = new r.Struct({ - actionClass: r.uint16, - actionType: r.uint16, - actionLength: r.uint32, - actionData: ActionData, - padding: new r.Reserved(r.uint8, function (t) { - return t.actionLength - t._currentOffset; - }) -}); -var PostcompensationAction = new r.Array(Action, r.uint32); -var PostCompensationTable = new r.Struct({ - lookupTable: new LookupTable(new r.Pointer(r.uint16, PostcompensationAction)) -}); -var JustificationTable = new r.Struct({ - classTable: new r.Pointer(r.uint16, ClassTable$1, { - type: 'parent' - }), - wdcOffset: r.uint16, - postCompensationTable: new r.Pointer(r.uint16, PostCompensationTable, { - type: 'parent' - }), - widthDeltaClusters: new LookupTable(new r.Pointer(r.uint16, WidthDeltaCluster, { - type: 'parent', - relativeTo: function relativeTo(ctx) { - return ctx.wdcOffset; - } - })) -}); -var just = new r.Struct({ - version: r.uint32, - format: r.uint16, - horizontal: new r.Pointer(r.uint16, JustificationTable), - vertical: new r.Pointer(r.uint16, JustificationTable) -}); -var LigatureData = { - action: r.uint16 -}; -var ContextualData = { - markIndex: r.uint16, - currentIndex: r.uint16 -}; -var InsertionData = { - currentInsertIndex: r.uint16, - markedInsertIndex: r.uint16 -}; -var SubstitutionTable = new r.Struct({ - items: new UnboundedArray(new r.Pointer(r.uint32, new LookupTable())) -}); -var SubtableData = new r.VersionedStruct('type', { - 0: { - // Indic Rearrangement Subtable - stateTable: new StateTable() - }, - 1: { - // Contextual Glyph Substitution Subtable - stateTable: new StateTable(ContextualData), - substitutionTable: new r.Pointer(r.uint32, SubstitutionTable) - }, - 2: { - // Ligature subtable - stateTable: new StateTable(LigatureData), - ligatureActions: new r.Pointer(r.uint32, new UnboundedArray(r.uint32)), - components: new r.Pointer(r.uint32, new UnboundedArray(r.uint16)), - ligatureList: new r.Pointer(r.uint32, new UnboundedArray(r.uint16)) - }, - 4: { - // Non-contextual Glyph Substitution Subtable - lookupTable: new LookupTable() - }, - 5: { - // Glyph Insertion Subtable - stateTable: new StateTable(InsertionData), - insertionActions: new r.Pointer(r.uint32, new UnboundedArray(r.uint16)) - } -}); -var Subtable = new r.Struct({ - length: r.uint32, - coverage: r.uint24, - type: r.uint8, - subFeatureFlags: r.uint32, - table: SubtableData, - padding: new r.Reserved(r.uint8, function (t) { - return t.length - t._currentOffset; - }) -}); -var FeatureEntry = new r.Struct({ - featureType: r.uint16, - featureSetting: r.uint16, - enableFlags: r.uint32, - disableFlags: r.uint32 -}); -var MorxChain = new r.Struct({ - defaultFlags: r.uint32, - chainLength: r.uint32, - nFeatureEntries: r.uint32, - nSubtables: r.uint32, - features: new r.Array(FeatureEntry, 'nFeatureEntries'), - subtables: new r.Array(Subtable, 'nSubtables') -}); -var morx = new r.Struct({ - version: r.uint16, - unused: new r.Reserved(r.uint16), - nChains: r.uint32, - chains: new r.Array(MorxChain, 'nChains') -}); -var OpticalBounds = new r.Struct({ - left: r.int16, - top: r.int16, - right: r.int16, - bottom: r.int16 -}); -var opbd = new r.Struct({ - version: r.fixed32, - format: r.uint16, - lookupTable: new LookupTable(OpticalBounds) -}); -var tables = {}; -tables.cmap = cmap; -tables.head = head; -tables.hhea = hhea; -tables.hmtx = hmtx; -tables.maxp = maxp; -tables.name = NameTable; -tables['OS/2'] = OS2; -tables.post = post; // TrueType Outlines -tables.fpgm = fpgm; -tables.loca = loca; -tables.prep = prep; -tables['cvt '] = cvt; -tables.glyf = glyf; // PostScript Outlines -tables['CFF '] = CFFFont; -tables['CFF2'] = CFFFont; -tables.VORG = VORG; // Bitmap Glyphs -tables.EBLC = EBLC; -tables.CBLC = tables.EBLC; -tables.sbix = sbix; -tables.COLR = COLR; -tables.CPAL = CPAL; // Advanced OpenType Tables -tables.BASE = BASE; -tables.GDEF = GDEF; -tables.GPOS = GPOS; -tables.GSUB = GSUB; -tables.JSTF = JSTF; // OpenType variations tables -tables.HVAR = HVAR; // Other OpenType Tables -tables.DSIG = DSIG; -tables.gasp = gasp; -tables.hdmx = hdmx; -tables.kern = kern; -tables.LTSH = LTSH; -tables.PCLT = PCLT; -tables.VDMX = VDMX; -tables.vhea = vhea; -tables.vmtx = vmtx; // Apple Advanced Typography Tables -tables.avar = avar; -tables.bsln = bsln; -tables.feat = feat; -tables.fvar = fvar; -tables.gvar = gvar; -tables.just = just; -tables.morx = morx; -tables.opbd = opbd; -var TableEntry = new r.Struct({ - tag: new r.String(4), - checkSum: r.uint32, - offset: new r.Pointer(r.uint32, 'void', { - type: 'global' - }), - length: r.uint32 -}); -var Directory = new r.Struct({ - tag: new r.String(4), - numTables: r.uint16, - searchRange: r.uint16, - entrySelector: r.uint16, - rangeShift: r.uint16, - tables: new r.Array(TableEntry, 'numTables') -}); -Directory.process = function () { - var tables = {}; - for (var _iterator9 = _createForOfIteratorHelperLoose(this.tables), _step9; !(_step9 = _iterator9()).done;) { - var table = _step9.value; - tables[table.tag] = table; - } - this.tables = tables; -}; -Directory.preEncode = function (stream) { - var tables$1 = []; - for (var tag in this.tables) { - var table = this.tables[tag]; - if (table) { - tables$1.push({ - tag: tag, - checkSum: 0, - offset: new r.VoidPointer(tables[tag], table), - length: tables[tag].size(table) - }); - } - } - this.tag = 'true'; - this.numTables = tables$1.length; - this.tables = tables$1; - var maxExponentFor2 = Math.floor(Math.log(this.numTables) / Math.LN2); - var maxPowerOf2 = Math.pow(2, maxExponentFor2); - this.searchRange = maxPowerOf2 * 16; - this.entrySelector = Math.log(maxPowerOf2) / Math.LN2; - this.rangeShift = this.numTables * 16 - this.searchRange; -}; -function binarySearch(arr, cmp) { - var min = 0; - var max = arr.length - 1; - while (min <= max) { - var mid = min + max >> 1; - var res = cmp(arr[mid]); - if (res < 0) { - max = mid - 1; - } else if (res > 0) { - min = mid + 1; - } else { - return mid; - } - } - return -1; -} -function range(index, end) { - var range = []; - while (index < end) { - range.push(index++); - } - return range; -} -var _class; -try { - var iconv = __webpack_require__(54171); -} catch (err) {} -var CmapProcessor = (_class = /*#__PURE__*/function () { - function CmapProcessor(cmapTable) { - // Attempt to find a Unicode cmap first - this.encoding = null; - this.cmap = this.findSubtable(cmapTable, [ - // 32-bit subtables - [3, 10], [0, 6], [0, 4], - // 16-bit subtables - [3, 1], [0, 3], [0, 2], [0, 1], [0, 0]]); // If not unicode cmap was found, and iconv-lite is installed, - // take the first table with a supported encoding. - - if (!this.cmap && iconv) { - for (var _iterator0 = _createForOfIteratorHelperLoose(cmapTable.tables), _step0; !(_step0 = _iterator0()).done;) { - var cmap = _step0.value; - var encoding = getEncoding(cmap.platformID, cmap.encodingID, cmap.table.language - 1); - if (iconv.encodingExists(encoding)) { - this.cmap = cmap.table; - this.encoding = encoding; - } - } - } - if (!this.cmap) { - throw new Error("Could not find a supported cmap table"); - } - this.uvs = this.findSubtable(cmapTable, [[0, 5]]); - if (this.uvs && this.uvs.version !== 14) { - this.uvs = null; - } - } - var _proto13 = CmapProcessor.prototype; - _proto13.findSubtable = function findSubtable(cmapTable, pairs) { - for (var _iterator1 = _createForOfIteratorHelperLoose(pairs), _step1; !(_step1 = _iterator1()).done;) { - var _step1$value = _step1.value, - platformID = _step1$value[0], - encodingID = _step1$value[1]; - for (var _iterator10 = _createForOfIteratorHelperLoose(cmapTable.tables), _step10; !(_step10 = _iterator10()).done;) { - var cmap = _step10.value; - if (cmap.platformID === platformID && cmap.encodingID === encodingID) { - return cmap.table; - } - } - } - return null; - }; - _proto13.lookup = function lookup(codepoint, variationSelector) { - // If there is no Unicode cmap in this font, we need to re-encode - // the codepoint in the encoding that the cmap supports. - if (this.encoding) { - var buf = iconv.encode(String.fromCodePoint(codepoint), this.encoding); - codepoint = 0; - for (var i = 0; i < buf.length; i++) { - codepoint = codepoint << 8 | buf[i]; - } // Otherwise, try to get a Unicode variation selector for this codepoint if one is provided. - } else if (variationSelector) { - var gid = this.getVariationSelector(codepoint, variationSelector); - if (gid) { - return gid; - } - } - var cmap = this.cmap; - switch (cmap.version) { - case 0: - return cmap.codeMap.get(codepoint) || 0; - case 4: - { - var min = 0; - var max = cmap.segCount - 1; - while (min <= max) { - var mid = min + max >> 1; - if (codepoint < cmap.startCode.get(mid)) { - max = mid - 1; - } else if (codepoint > cmap.endCode.get(mid)) { - min = mid + 1; - } else { - var rangeOffset = cmap.idRangeOffset.get(mid); - var _gid = void 0; - if (rangeOffset === 0) { - _gid = codepoint + cmap.idDelta.get(mid); - } else { - var index = rangeOffset / 2 + (codepoint - cmap.startCode.get(mid)) - (cmap.segCount - mid); - _gid = cmap.glyphIndexArray.get(index) || 0; - if (_gid !== 0) { - _gid += cmap.idDelta.get(mid); - } - } - return _gid & 0xffff; - } - } - return 0; - } - case 8: - throw new Error('TODO: cmap format 8'); - case 6: - case 10: - return cmap.glyphIndices.get(codepoint - cmap.firstCode) || 0; - case 12: - case 13: - { - var _min = 0; - var _max = cmap.nGroups - 1; - while (_min <= _max) { - var _mid = _min + _max >> 1; - var group = cmap.groups.get(_mid); - if (codepoint < group.startCharCode) { - _max = _mid - 1; - } else if (codepoint > group.endCharCode) { - _min = _mid + 1; - } else { - if (cmap.version === 12) { - return group.glyphID + (codepoint - group.startCharCode); - } else { - return group.glyphID; - } - } - } - return 0; - } - case 14: - throw new Error('TODO: cmap format 14'); - default: - throw new Error("Unknown cmap format ".concat(cmap.version)); - } - }; - _proto13.getVariationSelector = function getVariationSelector(codepoint, variationSelector) { - if (!this.uvs) { - return 0; - } - var selectors = this.uvs.varSelectors.toArray(); - var i = binarySearch(selectors, function (x) { - return variationSelector - x.varSelector; - }); - var sel = selectors[i]; - if (i !== -1 && sel.defaultUVS) { - i = binarySearch(sel.defaultUVS, function (x) { - return codepoint < x.startUnicodeValue ? -1 : codepoint > x.startUnicodeValue + x.additionalCount ? +1 : 0; - }); - } - if (i !== -1 && sel.nonDefaultUVS) { - i = binarySearch(sel.nonDefaultUVS, function (x) { - return codepoint - x.unicodeValue; - }); - if (i !== -1) { - return sel.nonDefaultUVS[i].glyphID; - } - } - return 0; - }; - _proto13.getCharacterSet = function getCharacterSet() { - var cmap = this.cmap; - switch (cmap.version) { - case 0: - return range(0, cmap.codeMap.length); - case 4: - { - var res = []; - var endCodes = cmap.endCode.toArray(); - for (var i = 0; i < endCodes.length; i++) { - var tail = endCodes[i] + 1; - var start = cmap.startCode.get(i); - res.push.apply(res, range(start, tail)); - } - return res; - } - case 8: - throw new Error('TODO: cmap format 8'); - case 6: - case 10: - return range(cmap.firstCode, cmap.firstCode + cmap.glyphIndices.length); - case 12: - case 13: - { - var _res = []; - for (var _iterator11 = _createForOfIteratorHelperLoose(cmap.groups.toArray()), _step11; !(_step11 = _iterator11()).done;) { - var group = _step11.value; - _res.push.apply(_res, range(group.startCharCode, group.endCharCode + 1)); - } - return _res; - } - case 14: - throw new Error('TODO: cmap format 14'); - default: - throw new Error("Unknown cmap format ".concat(cmap.version)); - } - }; - _proto13.codePointsForGlyph = function codePointsForGlyph(gid) { - var cmap = this.cmap; - switch (cmap.version) { - case 0: - { - var res = []; - for (var i = 0; i < 256; i++) { - if (cmap.codeMap.get(i) === gid) { - res.push(i); - } - } - return res; - } - case 4: - { - var _res2 = []; - for (var _i = 0; _i < cmap.segCount; _i++) { - var end = cmap.endCode.get(_i); - var start = cmap.startCode.get(_i); - var rangeOffset = cmap.idRangeOffset.get(_i); - var delta = cmap.idDelta.get(_i); - for (var c = start; c <= end; c++) { - var g = 0; - if (rangeOffset === 0) { - g = c + delta; - } else { - var index = rangeOffset / 2 + (c - start) - (cmap.segCount - _i); - g = cmap.glyphIndexArray.get(index) || 0; - if (g !== 0) { - g += delta; - } - } - if (g === gid) { - _res2.push(c); - } - } - } - return _res2; - } - case 12: - { - var _res3 = []; - for (var _iterator12 = _createForOfIteratorHelperLoose(cmap.groups.toArray()), _step12; !(_step12 = _iterator12()).done;) { - var group = _step12.value; - if (gid >= group.glyphID && gid <= group.glyphID + (group.endCharCode - group.startCharCode)) { - _res3.push(group.startCharCode + (gid - group.glyphID)); - } - } - return _res3; - } - case 13: - { - var _res4 = []; - for (var _iterator13 = _createForOfIteratorHelperLoose(cmap.groups.toArray()), _step13; !(_step13 = _iterator13()).done;) { - var _group = _step13.value; - if (gid === _group.glyphID) { - _res4.push.apply(_res4, range(_group.startCharCode, _group.endCharCode + 1)); - } - } - return _res4; - } - default: - throw new Error("Unknown cmap format ".concat(cmap.version)); - } - }; - return CmapProcessor; -}(), _applyDecoratedDescriptor(_class.prototype, "getCharacterSet", [cache], Object.getOwnPropertyDescriptor(_class.prototype, "getCharacterSet"), _class.prototype), _applyDecoratedDescriptor(_class.prototype, "codePointsForGlyph", [cache], Object.getOwnPropertyDescriptor(_class.prototype, "codePointsForGlyph"), _class.prototype), _class); -var KernProcessor = /*#__PURE__*/function () { - function KernProcessor(font) { - this.kern = font.kern; - } - var _proto14 = KernProcessor.prototype; - _proto14.process = function process(glyphs, positions) { - for (var glyphIndex = 0; glyphIndex < glyphs.length - 1; glyphIndex++) { - var left = glyphs[glyphIndex].id; - var right = glyphs[glyphIndex + 1].id; - positions[glyphIndex].xAdvance += this.getKerning(left, right); - } - }; - _proto14.getKerning = function getKerning(left, right) { - var res = 0; - for (var _iterator14 = _createForOfIteratorHelperLoose(this.kern.tables), _step14; !(_step14 = _iterator14()).done;) { - var table = _step14.value; - if (table.coverage.crossStream) { - continue; - } - switch (table.version) { - case 0: - if (!table.coverage.horizontal) { - continue; - } - break; - case 1: - if (table.coverage.vertical || table.coverage.variation) { - continue; - } - break; - default: - throw new Error("Unsupported kerning table version ".concat(table.version)); - } - var val = 0; - var s = table.subtable; - switch (table.format) { - case 0: - var pairIdx = binarySearch(s.pairs, function (pair) { - return left - pair.left || right - pair.right; - }); - if (pairIdx >= 0) { - val = s.pairs[pairIdx].value; - } - break; - case 2: - var leftOffset = 0, - rightOffset = 0; - if (left >= s.leftTable.firstGlyph && left < s.leftTable.firstGlyph + s.leftTable.nGlyphs) { - leftOffset = s.leftTable.offsets[left - s.leftTable.firstGlyph]; - } else { - leftOffset = s.array.off; - } - if (right >= s.rightTable.firstGlyph && right < s.rightTable.firstGlyph + s.rightTable.nGlyphs) { - rightOffset = s.rightTable.offsets[right - s.rightTable.firstGlyph]; - } - var index = (leftOffset + rightOffset - s.array.off) / 2; - val = s.array.values.get(index); - break; - case 3: - if (left >= s.glyphCount || right >= s.glyphCount) { - return 0; - } - val = s.kernValue[s.kernIndex[s.leftClass[left] * s.rightClassCount + s.rightClass[right]]]; - break; - default: - throw new Error("Unsupported kerning sub-table format ".concat(table.format)); - } // Microsoft supports the override flag, which resets the result - // Otherwise, the sum of the results from all subtables is returned - - if (table.coverage.override) { - res = val; - } else { - res += val; - } - } - return res; - }; - return KernProcessor; -}(); -/** - * This class is used when GPOS does not define 'mark' or 'mkmk' features - * for positioning marks relative to base glyphs. It uses the unicode - * combining class property to position marks. - * - * Based on code from Harfbuzz, thanks! - * https://github.com/behdad/harfbuzz/blob/master/src/hb-ot-shape-fallback.cc - */ -var UnicodeLayoutEngine = /*#__PURE__*/function () { - function UnicodeLayoutEngine(font) { - this.font = font; - } - var _proto15 = UnicodeLayoutEngine.prototype; - _proto15.positionGlyphs = function positionGlyphs(glyphs, positions) { - // find each base + mark cluster, and position the marks relative to the base - var clusterStart = 0; - var clusterEnd = 0; - for (var index = 0; index < glyphs.length; index++) { - var glyph = glyphs[index]; - if (glyph.isMark) { - // TODO: handle ligatures - clusterEnd = index; - } else { - if (clusterStart !== clusterEnd) { - this.positionCluster(glyphs, positions, clusterStart, clusterEnd); - } - clusterStart = clusterEnd = index; - } - } - if (clusterStart !== clusterEnd) { - this.positionCluster(glyphs, positions, clusterStart, clusterEnd); - } - return positions; - }; - _proto15.positionCluster = function positionCluster(glyphs, positions, clusterStart, clusterEnd) { - var base = glyphs[clusterStart]; - var baseBox = base.cbox.copy(); // adjust bounding box for ligature glyphs - - if (base.codePoints.length > 1) { - // LTR. TODO: RTL support. - baseBox.minX += (base.codePoints.length - 1) * baseBox.width / base.codePoints.length; - } - var xOffset = -positions[clusterStart].xAdvance; - var yOffset = 0; - var yGap = this.font.unitsPerEm / 16; // position each of the mark glyphs relative to the base glyph - - for (var index = clusterStart + 1; index <= clusterEnd; index++) { - var mark = glyphs[index]; - var markBox = mark.cbox; - var position = positions[index]; - var combiningClass = this.getCombiningClass(mark.codePoints[0]); - if (combiningClass !== 'Not_Reordered') { - position.xOffset = position.yOffset = 0; // x positioning - - switch (combiningClass) { - case 'Double_Above': - case 'Double_Below': - // LTR. TODO: RTL support. - position.xOffset += baseBox.minX - markBox.width / 2 - markBox.minX; - break; - case 'Attached_Below_Left': - case 'Below_Left': - case 'Above_Left': - // left align - position.xOffset += baseBox.minX - markBox.minX; - break; - case 'Attached_Above_Right': - case 'Below_Right': - case 'Above_Right': - // right align - position.xOffset += baseBox.maxX - markBox.width - markBox.minX; - break; - default: - // Attached_Below, Attached_Above, Below, Above, other - // center align - position.xOffset += baseBox.minX + (baseBox.width - markBox.width) / 2 - markBox.minX; - } // y positioning - - switch (combiningClass) { - case 'Double_Below': - case 'Below_Left': - case 'Below': - case 'Below_Right': - case 'Attached_Below_Left': - case 'Attached_Below': - // add a small gap between the glyphs if they are not attached - if (combiningClass === 'Attached_Below_Left' || combiningClass === 'Attached_Below') { - baseBox.minY += yGap; - } - position.yOffset = -baseBox.minY - markBox.maxY; - baseBox.minY += markBox.height; - break; - case 'Double_Above': - case 'Above_Left': - case 'Above': - case 'Above_Right': - case 'Attached_Above': - case 'Attached_Above_Right': - // add a small gap between the glyphs if they are not attached - if (combiningClass === 'Attached_Above' || combiningClass === 'Attached_Above_Right') { - baseBox.maxY += yGap; - } - position.yOffset = baseBox.maxY - markBox.minY; - baseBox.maxY += markBox.height; - break; - } - position.xAdvance = position.yAdvance = 0; - position.xOffset += xOffset; - position.yOffset += yOffset; - } else { - xOffset -= position.xAdvance; - yOffset -= position.yAdvance; - } - } - return; - }; - _proto15.getCombiningClass = function getCombiningClass(codePoint) { - var combiningClass = unicode.getCombiningClass(codePoint); // Thai / Lao need some per-character work - - if ((codePoint & ~0xff) === 0x0e00) { - if (combiningClass === 'Not_Reordered') { - switch (codePoint) { - case 0x0e31: - case 0x0e34: - case 0x0e35: - case 0x0e36: - case 0x0e37: - case 0x0e47: - case 0x0e4c: - case 0x0e3d: - case 0x0e4e: - return 'Above_Right'; - case 0x0eb1: - case 0x0eb4: - case 0x0eb5: - case 0x0eb6: - case 0x0eb7: - case 0x0ebb: - case 0x0ecc: - case 0x0ecd: - return 'Above'; - case 0x0ebc: - return 'Below'; - } - } else if (codePoint === 0x0e3a) { - // virama - return 'Below_Right'; - } - } - switch (combiningClass) { - // Hebrew - case 'CCC10': // sheva - - case 'CCC11': // hataf segol - - case 'CCC12': // hataf patah - - case 'CCC13': // hataf qamats - - case 'CCC14': // hiriq - - case 'CCC15': // tsere - - case 'CCC16': // segol - - case 'CCC17': // patah - - case 'CCC18': // qamats - - case 'CCC20': // qubuts - - case 'CCC22': - // meteg - return 'Below'; - case 'CCC23': - // rafe - return 'Attached_Above'; - case 'CCC24': - // shin dot - return 'Above_Right'; - case 'CCC25': // sin dot - - case 'CCC19': - // holam - return 'Above_Left'; - case 'CCC26': - // point varika - return 'Above'; - case 'CCC21': - // dagesh - break; - // Arabic and Syriac - - case 'CCC27': // fathatan - - case 'CCC28': // dammatan - - case 'CCC30': // fatha - - case 'CCC31': // damma - - case 'CCC33': // shadda - - case 'CCC34': // sukun - - case 'CCC35': // superscript alef - - case 'CCC36': - // superscript alaph - return 'Above'; - case 'CCC29': // kasratan - - case 'CCC32': - // kasra - return 'Below'; - // Thai - - case 'CCC103': - // sara u / sara uu - return 'Below_Right'; - case 'CCC107': - // mai - return 'Above_Right'; - // Lao - - case 'CCC118': - // sign u / sign uu - return 'Below'; - case 'CCC122': - // mai - return 'Above'; - // Tibetan - - case 'CCC129': // sign aa - - case 'CCC132': - // sign u - return 'Below'; - case 'CCC130': - // sign i - return 'Above'; - } - return combiningClass; - }; - return UnicodeLayoutEngine; -}(); -/** - * Represents a glyph bounding box - */ -var BBox = /*#__PURE__*/function () { - function BBox(minX, minY, maxX, maxY) { - if (minX === void 0) { - minX = Infinity; - } - if (minY === void 0) { - minY = Infinity; - } - if (maxX === void 0) { - maxX = -Infinity; - } - if (maxY === void 0) { - maxY = -Infinity; - } - /** - * The minimum X position in the bounding box - * @type {number} - */ - this.minX = minX; - /** - * The minimum Y position in the bounding box - * @type {number} - */ - - this.minY = minY; - /** - * The maxmimum X position in the bounding box - * @type {number} - */ - - this.maxX = maxX; - /** - * The maxmimum Y position in the bounding box - * @type {number} - */ - - this.maxY = maxY; - } - /** - * The width of the bounding box - * @type {number} - */ - var _proto16 = BBox.prototype; - _proto16.addPoint = function addPoint(x, y) { - if (Math.abs(x) !== Infinity) { - if (x < this.minX) { - this.minX = x; - } - if (x > this.maxX) { - this.maxX = x; - } - } - if (Math.abs(y) !== Infinity) { - if (y < this.minY) { - this.minY = y; - } - if (y > this.maxY) { - this.maxY = y; - } - } - }; - _proto16.copy = function copy() { - return new BBox(this.minX, this.minY, this.maxX, this.maxY); - }; - return _createClass(BBox, [{ - key: "width", - get: function get() { - return this.maxX - this.minX; - } - /** - * The height of the bounding box - * @type {number} - */ - }, { - key: "height", - get: function get() { - return this.maxY - this.minY; - } - }]); -}(); // Data from http://www.microsoft.com/typography/otspec/scripttags.htm -// and http://www.unicode.org/Public/UNIDATA/PropertyValueAliases.txt. -var UNICODE_SCRIPTS = { - Caucasian_Albanian: 'aghb', - Arabic: 'arab', - Imperial_Aramaic: 'armi', - Armenian: 'armn', - Avestan: 'avst', - Balinese: 'bali', - Bamum: 'bamu', - Bassa_Vah: 'bass', - Batak: 'batk', - Bengali: ['bng2', 'beng'], - Bopomofo: 'bopo', - Brahmi: 'brah', - Braille: 'brai', - Buginese: 'bugi', - Buhid: 'buhd', - Chakma: 'cakm', - Canadian_Aboriginal: 'cans', - Carian: 'cari', - Cham: 'cham', - Cherokee: 'cher', - Coptic: 'copt', - Cypriot: 'cprt', - Cyrillic: 'cyrl', - Devanagari: ['dev2', 'deva'], - Deseret: 'dsrt', - Duployan: 'dupl', - Egyptian_Hieroglyphs: 'egyp', - Elbasan: 'elba', - Ethiopic: 'ethi', - Georgian: 'geor', - Glagolitic: 'glag', - Gothic: 'goth', - Grantha: 'gran', - Greek: 'grek', - Gujarati: ['gjr2', 'gujr'], - Gurmukhi: ['gur2', 'guru'], - Hangul: 'hang', - Han: 'hani', - Hanunoo: 'hano', - Hebrew: 'hebr', - Hiragana: 'hira', - Pahawh_Hmong: 'hmng', - Katakana_Or_Hiragana: 'hrkt', - Old_Italic: 'ital', - Javanese: 'java', - Kayah_Li: 'kali', - Katakana: 'kana', - Kharoshthi: 'khar', - Khmer: 'khmr', - Khojki: 'khoj', - Kannada: ['knd2', 'knda'], - Kaithi: 'kthi', - Tai_Tham: 'lana', - Lao: 'lao ', - Latin: 'latn', - Lepcha: 'lepc', - Limbu: 'limb', - Linear_A: 'lina', - Linear_B: 'linb', - Lisu: 'lisu', - Lycian: 'lyci', - Lydian: 'lydi', - Mahajani: 'mahj', - Mandaic: 'mand', - Manichaean: 'mani', - Mende_Kikakui: 'mend', - Meroitic_Cursive: 'merc', - Meroitic_Hieroglyphs: 'mero', - Malayalam: ['mlm2', 'mlym'], - Modi: 'modi', - Mongolian: 'mong', - Mro: 'mroo', - Meetei_Mayek: 'mtei', - Myanmar: ['mym2', 'mymr'], - Old_North_Arabian: 'narb', - Nabataean: 'nbat', - Nko: 'nko ', - Ogham: 'ogam', - Ol_Chiki: 'olck', - Old_Turkic: 'orkh', - Oriya: ['ory2', 'orya'], - Osmanya: 'osma', - Palmyrene: 'palm', - Pau_Cin_Hau: 'pauc', - Old_Permic: 'perm', - Phags_Pa: 'phag', - Inscriptional_Pahlavi: 'phli', - Psalter_Pahlavi: 'phlp', - Phoenician: 'phnx', - Miao: 'plrd', - Inscriptional_Parthian: 'prti', - Rejang: 'rjng', - Runic: 'runr', - Samaritan: 'samr', - Old_South_Arabian: 'sarb', - Saurashtra: 'saur', - Shavian: 'shaw', - Sharada: 'shrd', - Siddham: 'sidd', - Khudawadi: 'sind', - Sinhala: 'sinh', - Sora_Sompeng: 'sora', - Sundanese: 'sund', - Syloti_Nagri: 'sylo', - Syriac: 'syrc', - Tagbanwa: 'tagb', - Takri: 'takr', - Tai_Le: 'tale', - New_Tai_Lue: 'talu', - Tamil: ['tml2', 'taml'], - Tai_Viet: 'tavt', - Telugu: ['tel2', 'telu'], - Tifinagh: 'tfng', - Tagalog: 'tglg', - Thaana: 'thaa', - Thai: 'thai', - Tibetan: 'tibt', - Tirhuta: 'tirh', - Ugaritic: 'ugar', - Vai: 'vai ', - Warang_Citi: 'wara', - Old_Persian: 'xpeo', - Cuneiform: 'xsux', - Yi: 'yi ', - Inherited: 'zinh', - Common: 'zyyy', - Unknown: 'zzzz' -}; -var OPENTYPE_SCRIPTS = {}; -for (var script in UNICODE_SCRIPTS) { - var tag = UNICODE_SCRIPTS[script]; - if (Array.isArray(tag)) { - for (var _iterator15 = _createForOfIteratorHelperLoose(tag), _step15; !(_step15 = _iterator15()).done;) { - var t = _step15.value; - OPENTYPE_SCRIPTS[t] = script; - } - } else { - OPENTYPE_SCRIPTS[tag] = script; - } -} -function fromOpenType(tag) { - return OPENTYPE_SCRIPTS[tag]; -} -function forString(string) { - var len = string.length; - var idx = 0; - while (idx < len) { - var code = string.charCodeAt(idx++); // Check if this is a high surrogate - - if (0xd800 <= code && code <= 0xdbff && idx < len) { - var next = string.charCodeAt(idx); // Check if this is a low surrogate - - if (0xdc00 <= next && next <= 0xdfff) { - idx++; - code = ((code & 0x3FF) << 10) + (next & 0x3FF) + 0x10000; - } - } - var _script = unicode.getScript(code); - if (_script !== 'Common' && _script !== 'Inherited' && _script !== 'Unknown') { - return UNICODE_SCRIPTS[_script]; - } - } - return UNICODE_SCRIPTS.Unknown; -} -function forCodePoints(codePoints) { - for (var i = 0; i < codePoints.length; i++) { - var codePoint = codePoints[i]; - var _script2 = unicode.getScript(codePoint); - if (_script2 !== 'Common' && _script2 !== 'Inherited' && _script2 !== 'Unknown') { - return UNICODE_SCRIPTS[_script2]; - } - } - return UNICODE_SCRIPTS.Unknown; -} // The scripts in this map are written from right to left - -var RTL = { - arab: true, - // Arabic - hebr: true, - // Hebrew - syrc: true, - // Syriac - thaa: true, - // Thaana - cprt: true, - // Cypriot Syllabary - khar: true, - // Kharosthi - phnx: true, - // Phoenician - 'nko ': true, - // N'Ko - lydi: true, - // Lydian - avst: true, - // Avestan - armi: true, - // Imperial Aramaic - phli: true, - // Inscriptional Pahlavi - prti: true, - // Inscriptional Parthian - sarb: true, - // Old South Arabian - orkh: true, - // Old Turkic, Orkhon Runic - samr: true, - // Samaritan - mand: true, - // Mandaic, Mandaean - merc: true, - // Meroitic Cursive - mero: true, - // Meroitic Hieroglyphs - // Unicode 7.0 (not listed on http://www.microsoft.com/typography/otspec/scripttags.htm) - mani: true, - // Manichaean - mend: true, - // Mende Kikakui - nbat: true, - // Nabataean - narb: true, - // Old North Arabian - palm: true, - // Palmyrene - phlp: true // Psalter Pahlavi -}; -function direction(script) { - if (RTL[script]) { - return 'rtl'; - } - return 'ltr'; -} - -/** - * Represents a run of Glyph and GlyphPosition objects. - * Returned by the font layout method. - */ -var GlyphRun = /*#__PURE__*/function () { - function GlyphRun(glyphs, features, script, language, direction$1) { - /** - * An array of Glyph objects in the run - * @type {Glyph[]} - */ - this.glyphs = glyphs; - /** - * An array of GlyphPosition objects for each glyph in the run - * @type {GlyphPosition[]} - */ - - this.positions = null; - /** - * The script that was requested for shaping. This was either passed in or detected automatically. - * @type {string} - */ - - this.script = script; - /** - * The language requested for shaping, as passed in. If `null`, the default language for the - * script was used. - * @type {string} - */ - - this.language = language || null; - /** - * The direction requested for shaping, as passed in (either ltr or rtl). - * If `null`, the default direction of the script is used. - * @type {string} - */ - - this.direction = direction$1 || direction(script); - /** - * The features requested during shaping. This is a combination of user - * specified features and features chosen by the shaper. - * @type {object} - */ - - this.features = {}; // Convert features to an object - - if (Array.isArray(features)) { - for (var _iterator16 = _createForOfIteratorHelperLoose(features), _step16; !(_step16 = _iterator16()).done;) { - var tag = _step16.value; - this.features[tag] = true; - } - } else if (typeof features === 'object') { - this.features = features; - } - } - /** - * The total advance width of the run. - * @type {number} - */ - return _createClass(GlyphRun, [{ - key: "advanceWidth", - get: function get() { - var width = 0; - for (var _iterator17 = _createForOfIteratorHelperLoose(this.positions), _step17; !(_step17 = _iterator17()).done;) { - var position = _step17.value; - width += position.xAdvance; - } - return width; - } - /** - * The total advance height of the run. - * @type {number} - */ - }, { - key: "advanceHeight", - get: function get() { - var height = 0; - for (var _iterator18 = _createForOfIteratorHelperLoose(this.positions), _step18; !(_step18 = _iterator18()).done;) { - var position = _step18.value; - height += position.yAdvance; - } - return height; - } - /** - * The bounding box containing all glyphs in the run. - * @type {BBox} - */ - }, { - key: "bbox", - get: function get() { - var bbox = new BBox(); - var x = 0; - var y = 0; - for (var index = 0; index < this.glyphs.length; index++) { - var glyph = this.glyphs[index]; - var p = this.positions[index]; - var b = glyph.bbox; - bbox.addPoint(b.minX + x + p.xOffset, b.minY + y + p.yOffset); - bbox.addPoint(b.maxX + x + p.xOffset, b.maxY + y + p.yOffset); - x += p.xAdvance; - y += p.yAdvance; - } - return bbox; - } - }]); -}(); -/** - * Represents positioning information for a glyph in a GlyphRun. - */ -var GlyphPosition = function GlyphPosition(xAdvance, yAdvance, xOffset, yOffset) { - if (xAdvance === void 0) { - xAdvance = 0; - } - if (yAdvance === void 0) { - yAdvance = 0; - } - if (xOffset === void 0) { - xOffset = 0; - } - if (yOffset === void 0) { - yOffset = 0; - } - /** - * The amount to move the virtual pen in the X direction after rendering this glyph. - * @type {number} - */ - this.xAdvance = xAdvance; - /** - * The amount to move the virtual pen in the Y direction after rendering this glyph. - * @type {number} - */ - - this.yAdvance = yAdvance; - /** - * The offset from the pen position in the X direction at which to render this glyph. - * @type {number} - */ - - this.xOffset = xOffset; - /** - * The offset from the pen position in the Y direction at which to render this glyph. - * @type {number} - */ - - this.yOffset = yOffset; -}; // see https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html -// and /System/Library/Frameworks/CoreText.framework/Versions/A/Headers/SFNTLayoutTypes.h on a Mac -var features = { - allTypographicFeatures: { - code: 0, - exclusive: false, - allTypeFeatures: 0 - }, - ligatures: { - code: 1, - exclusive: false, - requiredLigatures: 0, - commonLigatures: 2, - rareLigatures: 4, - // logos: 6 - rebusPictures: 8, - diphthongLigatures: 10, - squaredLigatures: 12, - abbrevSquaredLigatures: 14, - symbolLigatures: 16, - contextualLigatures: 18, - historicalLigatures: 20 - }, - cursiveConnection: { - code: 2, - exclusive: true, - unconnected: 0, - partiallyConnected: 1, - cursive: 2 - }, - letterCase: { - code: 3, - exclusive: true - }, - // upperAndLowerCase: 0 # deprecated - // allCaps: 1 # deprecated - // allLowerCase: 2 # deprecated - // smallCaps: 3 # deprecated - // initialCaps: 4 # deprecated - // initialCapsAndSmallCaps: 5 # deprecated - verticalSubstitution: { - code: 4, - exclusive: false, - substituteVerticalForms: 0 - }, - linguisticRearrangement: { - code: 5, - exclusive: false, - linguisticRearrangement: 0 - }, - numberSpacing: { - code: 6, - exclusive: true, - monospacedNumbers: 0, - proportionalNumbers: 1, - thirdWidthNumbers: 2, - quarterWidthNumbers: 3 - }, - smartSwash: { - code: 8, - exclusive: false, - wordInitialSwashes: 0, - wordFinalSwashes: 2, - // lineInitialSwashes: 4 - // lineFinalSwashes: 6 - nonFinalSwashes: 8 - }, - diacritics: { - code: 9, - exclusive: true, - showDiacritics: 0, - hideDiacritics: 1, - decomposeDiacritics: 2 - }, - verticalPosition: { - code: 10, - exclusive: true, - normalPosition: 0, - superiors: 1, - inferiors: 2, - ordinals: 3, - scientificInferiors: 4 - }, - fractions: { - code: 11, - exclusive: true, - noFractions: 0, - verticalFractions: 1, - diagonalFractions: 2 - }, - overlappingCharacters: { - code: 13, - exclusive: false, - preventOverlap: 0 - }, - typographicExtras: { - code: 14, - exclusive: false, - // hyphensToEmDash: 0 - // hyphenToEnDash: 2 - slashedZero: 4 - }, - // formInterrobang: 6 - // smartQuotes: 8 - // periodsToEllipsis: 10 - mathematicalExtras: { - code: 15, - exclusive: false, - // hyphenToMinus: 0 - // asteristoMultiply: 2 - // slashToDivide: 4 - // inequalityLigatures: 6 - // exponents: 8 - mathematicalGreek: 10 - }, - ornamentSets: { - code: 16, - exclusive: true, - noOrnaments: 0, - dingbats: 1, - piCharacters: 2, - fleurons: 3, - decorativeBorders: 4, - internationalSymbols: 5, - mathSymbols: 6 - }, - characterAlternatives: { - code: 17, - exclusive: true, - noAlternates: 0 - }, - // user defined options - designComplexity: { - code: 18, - exclusive: true, - designLevel1: 0, - designLevel2: 1, - designLevel3: 2, - designLevel4: 3, - designLevel5: 4 - }, - styleOptions: { - code: 19, - exclusive: true, - noStyleOptions: 0, - displayText: 1, - engravedText: 2, - illuminatedCaps: 3, - titlingCaps: 4, - tallCaps: 5 - }, - characterShape: { - code: 20, - exclusive: true, - traditionalCharacters: 0, - simplifiedCharacters: 1, - JIS1978Characters: 2, - JIS1983Characters: 3, - JIS1990Characters: 4, - traditionalAltOne: 5, - traditionalAltTwo: 6, - traditionalAltThree: 7, - traditionalAltFour: 8, - traditionalAltFive: 9, - expertCharacters: 10, - JIS2004Characters: 11, - hojoCharacters: 12, - NLCCharacters: 13, - traditionalNamesCharacters: 14 - }, - numberCase: { - code: 21, - exclusive: true, - lowerCaseNumbers: 0, - upperCaseNumbers: 1 - }, - textSpacing: { - code: 22, - exclusive: true, - proportionalText: 0, - monospacedText: 1, - halfWidthText: 2, - thirdWidthText: 3, - quarterWidthText: 4, - altProportionalText: 5, - altHalfWidthText: 6 - }, - transliteration: { - code: 23, - exclusive: true, - noTransliteration: 0 - }, - // hanjaToHangul: 1 - // hiraganaToKatakana: 2 - // katakanaToHiragana: 3 - // kanaToRomanization: 4 - // romanizationToHiragana: 5 - // romanizationToKatakana: 6 - // hanjaToHangulAltOne: 7 - // hanjaToHangulAltTwo: 8 - // hanjaToHangulAltThree: 9 - annotation: { - code: 24, - exclusive: true, - noAnnotation: 0, - boxAnnotation: 1, - roundedBoxAnnotation: 2, - circleAnnotation: 3, - invertedCircleAnnotation: 4, - parenthesisAnnotation: 5, - periodAnnotation: 6, - romanNumeralAnnotation: 7, - diamondAnnotation: 8, - invertedBoxAnnotation: 9, - invertedRoundedBoxAnnotation: 10 - }, - kanaSpacing: { - code: 25, - exclusive: true, - fullWidthKana: 0, - proportionalKana: 1 - }, - ideographicSpacing: { - code: 26, - exclusive: true, - fullWidthIdeographs: 0, - proportionalIdeographs: 1, - halfWidthIdeographs: 2 - }, - unicodeDecomposition: { - code: 27, - exclusive: false, - canonicalComposition: 0, - compatibilityComposition: 2, - transcodingComposition: 4 - }, - rubyKana: { - code: 28, - exclusive: false, - // noRubyKana: 0 # deprecated - use rubyKanaOff instead - // rubyKana: 1 # deprecated - use rubyKanaOn instead - rubyKana: 2 - }, - CJKSymbolAlternatives: { - code: 29, - exclusive: true, - noCJKSymbolAlternatives: 0, - CJKSymbolAltOne: 1, - CJKSymbolAltTwo: 2, - CJKSymbolAltThree: 3, - CJKSymbolAltFour: 4, - CJKSymbolAltFive: 5 - }, - ideographicAlternatives: { - code: 30, - exclusive: true, - noIdeographicAlternatives: 0, - ideographicAltOne: 1, - ideographicAltTwo: 2, - ideographicAltThree: 3, - ideographicAltFour: 4, - ideographicAltFive: 5 - }, - CJKVerticalRomanPlacement: { - code: 31, - exclusive: true, - CJKVerticalRomanCentered: 0, - CJKVerticalRomanHBaseline: 1 - }, - italicCJKRoman: { - code: 32, - exclusive: false, - // noCJKItalicRoman: 0 # deprecated - use CJKItalicRomanOff instead - // CJKItalicRoman: 1 # deprecated - use CJKItalicRomanOn instead - CJKItalicRoman: 2 - }, - caseSensitiveLayout: { - code: 33, - exclusive: false, - caseSensitiveLayout: 0, - caseSensitiveSpacing: 2 - }, - alternateKana: { - code: 34, - exclusive: false, - alternateHorizKana: 0, - alternateVertKana: 2 - }, - stylisticAlternatives: { - code: 35, - exclusive: false, - noStylisticAlternates: 0, - stylisticAltOne: 2, - stylisticAltTwo: 4, - stylisticAltThree: 6, - stylisticAltFour: 8, - stylisticAltFive: 10, - stylisticAltSix: 12, - stylisticAltSeven: 14, - stylisticAltEight: 16, - stylisticAltNine: 18, - stylisticAltTen: 20, - stylisticAltEleven: 22, - stylisticAltTwelve: 24, - stylisticAltThirteen: 26, - stylisticAltFourteen: 28, - stylisticAltFifteen: 30, - stylisticAltSixteen: 32, - stylisticAltSeventeen: 34, - stylisticAltEighteen: 36, - stylisticAltNineteen: 38, - stylisticAltTwenty: 40 - }, - contextualAlternates: { - code: 36, - exclusive: false, - contextualAlternates: 0, - swashAlternates: 2, - contextualSwashAlternates: 4 - }, - lowerCase: { - code: 37, - exclusive: true, - defaultLowerCase: 0, - lowerCaseSmallCaps: 1, - lowerCasePetiteCaps: 2 - }, - upperCase: { - code: 38, - exclusive: true, - defaultUpperCase: 0, - upperCaseSmallCaps: 1, - upperCasePetiteCaps: 2 - }, - languageTag: { - // indices into ltag table - code: 39, - exclusive: true - }, - CJKRomanSpacing: { - code: 103, - exclusive: true, - halfWidthCJKRoman: 0, - proportionalCJKRoman: 1, - defaultCJKRoman: 2, - fullWidthCJKRoman: 3 - } -}; -var feature = function feature(name, selector) { - return [features[name].code, features[name][selector]]; -}; -var OTMapping = { - rlig: feature('ligatures', 'requiredLigatures'), - clig: feature('ligatures', 'contextualLigatures'), - dlig: feature('ligatures', 'rareLigatures'), - hlig: feature('ligatures', 'historicalLigatures'), - liga: feature('ligatures', 'commonLigatures'), - hist: feature('ligatures', 'historicalLigatures'), - // ?? - smcp: feature('lowerCase', 'lowerCaseSmallCaps'), - pcap: feature('lowerCase', 'lowerCasePetiteCaps'), - frac: feature('fractions', 'diagonalFractions'), - dnom: feature('fractions', 'diagonalFractions'), - // ?? - numr: feature('fractions', 'diagonalFractions'), - // ?? - afrc: feature('fractions', 'verticalFractions'), - // aalt - // abvf, abvm, abvs, akhn, blwf, blwm, blws, cfar, cjct, cpsp, falt, isol, jalt, ljmo, mset? - // ltra, ltrm, nukt, pref, pres, pstf, psts, rand, rkrf, rphf, rtla, rtlm, size, tjmo, tnum? - // unic, vatu, vhal, vjmo, vpal, vrt2 - // dist -> trak table? - // kern, vkrn -> kern table - // lfbd + opbd + rtbd -> opbd table? - // mark, mkmk -> acnt table? - // locl -> languageTag + ltag table - case: feature('caseSensitiveLayout', 'caseSensitiveLayout'), - // also caseSensitiveSpacing - ccmp: feature('unicodeDecomposition', 'canonicalComposition'), - // compatibilityComposition? - cpct: feature('CJKVerticalRomanPlacement', 'CJKVerticalRomanCentered'), - // guess..., probably not given below - valt: feature('CJKVerticalRomanPlacement', 'CJKVerticalRomanCentered'), - swsh: feature('contextualAlternates', 'swashAlternates'), - cswh: feature('contextualAlternates', 'contextualSwashAlternates'), - curs: feature('cursiveConnection', 'cursive'), - // ?? - c2pc: feature('upperCase', 'upperCasePetiteCaps'), - c2sc: feature('upperCase', 'upperCaseSmallCaps'), - init: feature('smartSwash', 'wordInitialSwashes'), - // ?? - fin2: feature('smartSwash', 'wordFinalSwashes'), - // ?? - medi: feature('smartSwash', 'nonFinalSwashes'), - // ?? - med2: feature('smartSwash', 'nonFinalSwashes'), - // ?? - fin3: feature('smartSwash', 'wordFinalSwashes'), - // ?? - fina: feature('smartSwash', 'wordFinalSwashes'), - // ?? - pkna: feature('kanaSpacing', 'proportionalKana'), - half: feature('textSpacing', 'halfWidthText'), - // also HalfWidthCJKRoman, HalfWidthIdeographs? - halt: feature('textSpacing', 'altHalfWidthText'), - hkna: feature('alternateKana', 'alternateHorizKana'), - vkna: feature('alternateKana', 'alternateVertKana'), - // hngl: feature 'transliteration', 'hanjaToHangulSelector' # deprecated - ital: feature('italicCJKRoman', 'CJKItalicRoman'), - lnum: feature('numberCase', 'upperCaseNumbers'), - onum: feature('numberCase', 'lowerCaseNumbers'), - mgrk: feature('mathematicalExtras', 'mathematicalGreek'), - // nalt: not enough info. what type of annotation? - // ornm: ditto, which ornament style? - calt: feature('contextualAlternates', 'contextualAlternates'), - // or more? - vrt2: feature('verticalSubstitution', 'substituteVerticalForms'), - // oh... below? - vert: feature('verticalSubstitution', 'substituteVerticalForms'), - tnum: feature('numberSpacing', 'monospacedNumbers'), - pnum: feature('numberSpacing', 'proportionalNumbers'), - sups: feature('verticalPosition', 'superiors'), - subs: feature('verticalPosition', 'inferiors'), - ordn: feature('verticalPosition', 'ordinals'), - pwid: feature('textSpacing', 'proportionalText'), - hwid: feature('textSpacing', 'halfWidthText'), - qwid: feature('textSpacing', 'quarterWidthText'), - // also QuarterWidthNumbers? - twid: feature('textSpacing', 'thirdWidthText'), - // also ThirdWidthNumbers? - fwid: feature('textSpacing', 'proportionalText'), - //?? - palt: feature('textSpacing', 'altProportionalText'), - trad: feature('characterShape', 'traditionalCharacters'), - smpl: feature('characterShape', 'simplifiedCharacters'), - jp78: feature('characterShape', 'JIS1978Characters'), - jp83: feature('characterShape', 'JIS1983Characters'), - jp90: feature('characterShape', 'JIS1990Characters'), - jp04: feature('characterShape', 'JIS2004Characters'), - expt: feature('characterShape', 'expertCharacters'), - hojo: feature('characterShape', 'hojoCharacters'), - nlck: feature('characterShape', 'NLCCharacters'), - tnam: feature('characterShape', 'traditionalNamesCharacters'), - ruby: feature('rubyKana', 'rubyKana'), - titl: feature('styleOptions', 'titlingCaps'), - zero: feature('typographicExtras', 'slashedZero'), - ss01: feature('stylisticAlternatives', 'stylisticAltOne'), - ss02: feature('stylisticAlternatives', 'stylisticAltTwo'), - ss03: feature('stylisticAlternatives', 'stylisticAltThree'), - ss04: feature('stylisticAlternatives', 'stylisticAltFour'), - ss05: feature('stylisticAlternatives', 'stylisticAltFive'), - ss06: feature('stylisticAlternatives', 'stylisticAltSix'), - ss07: feature('stylisticAlternatives', 'stylisticAltSeven'), - ss08: feature('stylisticAlternatives', 'stylisticAltEight'), - ss09: feature('stylisticAlternatives', 'stylisticAltNine'), - ss10: feature('stylisticAlternatives', 'stylisticAltTen'), - ss11: feature('stylisticAlternatives', 'stylisticAltEleven'), - ss12: feature('stylisticAlternatives', 'stylisticAltTwelve'), - ss13: feature('stylisticAlternatives', 'stylisticAltThirteen'), - ss14: feature('stylisticAlternatives', 'stylisticAltFourteen'), - ss15: feature('stylisticAlternatives', 'stylisticAltFifteen'), - ss16: feature('stylisticAlternatives', 'stylisticAltSixteen'), - ss17: feature('stylisticAlternatives', 'stylisticAltSeventeen'), - ss18: feature('stylisticAlternatives', 'stylisticAltEighteen'), - ss19: feature('stylisticAlternatives', 'stylisticAltNineteen'), - ss20: feature('stylisticAlternatives', 'stylisticAltTwenty') -}; // salt: feature 'stylisticAlternatives', 'stylisticAltOne' # hmm, which one to choose -// Add cv01-cv99 features - -for (var i = 1; i <= 99; i++) { - OTMapping["cv".concat("00".concat(i).slice(-2))] = [features.characterAlternatives.code, i]; -} // create inverse mapping - -var AATMapping = {}; -for (var ot in OTMapping) { - var aat = OTMapping[ot]; - if (AATMapping[aat[0]] == null) { - AATMapping[aat[0]] = {}; - } - AATMapping[aat[0]][aat[1]] = ot; -} // Maps an array of OpenType features to AAT features -// in the form of {featureType:{featureSetting:true}} - -function mapOTToAAT(features) { - var res = {}; - for (var k in features) { - var r = void 0; - if (r = OTMapping[k]) { - if (res[r[0]] == null) { - res[r[0]] = {}; - } - res[r[0]][r[1]] = features[k]; - } - } - return res; -} // Maps strings in a [featureType, featureSetting] -// to their equivalent number codes - -function mapFeatureStrings(f) { - var type = f[0], - setting = f[1]; - if (isNaN(type)) { - var typeCode = features[type] && features[type].code; - } else { - var typeCode = type; - } - if (isNaN(setting)) { - var settingCode = features[type] && features[type][setting]; - } else { - var settingCode = setting; - } - return [typeCode, settingCode]; -} // Maps AAT features to an array of OpenType features -// Supports both arrays in the form of [[featureType, featureSetting]] -// and objects in the form of {featureType:{featureSetting:true}} -// featureTypes and featureSettings can be either strings or number codes - -function mapAATToOT(features) { - var res = {}; - if (Array.isArray(features)) { - for (var k = 0; k < features.length; k++) { - var r = void 0; - var f = mapFeatureStrings(features[k]); - if (r = AATMapping[f[0]] && AATMapping[f[0]][f[1]]) { - res[r] = true; - } - } - } else if (typeof features === 'object') { - for (var type in features) { - var _feature = features[type]; - for (var setting in _feature) { - var _r = void 0; - var _f = mapFeatureStrings([type, setting]); - if (_feature[setting] && (_r = AATMapping[_f[0]] && AATMapping[_f[0]][_f[1]])) { - res[_r] = true; - } - } - } - } - return Object.keys(res); -} -var _class$1; -var AATLookupTable = (_class$1 = /*#__PURE__*/function () { - function AATLookupTable(table) { - this.table = table; - } - var _proto17 = AATLookupTable.prototype; - _proto17.lookup = function lookup(glyph) { - switch (this.table.version) { - case 0: - // simple array format - return this.table.values.getItem(glyph); - case 2: // segment format - - case 4: - { - var min = 0; - var max = this.table.binarySearchHeader.nUnits - 1; - while (min <= max) { - var mid = min + max >> 1; - var seg = this.table.segments[mid]; // special end of search value - - if (seg.firstGlyph === 0xffff) { - return null; - } - if (glyph < seg.firstGlyph) { - max = mid - 1; - } else if (glyph > seg.lastGlyph) { - min = mid + 1; - } else { - if (this.table.version === 2) { - return seg.value; - } else { - return seg.values[glyph - seg.firstGlyph]; - } - } - } - return null; - } - case 6: - { - // lookup single - var _min = 0; - var _max = this.table.binarySearchHeader.nUnits - 1; - while (_min <= _max) { - var mid = _min + _max >> 1; - var seg = this.table.segments[mid]; // special end of search value - - if (seg.glyph === 0xffff) { - return null; - } - if (glyph < seg.glyph) { - _max = mid - 1; - } else if (glyph > seg.glyph) { - _min = mid + 1; - } else { - return seg.value; - } - } - return null; - } - case 8: - // lookup trimmed - return this.table.values[glyph - this.table.firstGlyph]; - default: - throw new Error("Unknown lookup table format: ".concat(this.table.version)); - } - }; - _proto17.glyphsForValue = function glyphsForValue(classValue) { - var res = []; - switch (this.table.version) { - case 2: // segment format - - case 4: - { - for (var _iterator19 = _createForOfIteratorHelperLoose(this.table.segments), _step19; !(_step19 = _iterator19()).done;) { - var segment = _step19.value; - if (this.table.version === 2 && segment.value === classValue) { - res.push.apply(res, range(segment.firstGlyph, segment.lastGlyph + 1)); - } else { - for (var index = 0; index < segment.values.length; index++) { - if (segment.values[index] === classValue) { - res.push(segment.firstGlyph + index); - } - } - } - } - break; - } - case 6: - { - // lookup single - for (var _iterator20 = _createForOfIteratorHelperLoose(this.table.segments), _step20; !(_step20 = _iterator20()).done;) { - var _segment = _step20.value; - if (_segment.value === classValue) { - res.push(_segment.glyph); - } - } - break; - } - case 8: - { - // lookup trimmed - for (var i = 0; i < this.table.values.length; i++) { - if (this.table.values[i] === classValue) { - res.push(this.table.firstGlyph + i); - } - } - break; - } - default: - throw new Error("Unknown lookup table format: ".concat(this.table.version)); - } - return res; - }; - return AATLookupTable; -}(), _applyDecoratedDescriptor(_class$1.prototype, "glyphsForValue", [cache], Object.getOwnPropertyDescriptor(_class$1.prototype, "glyphsForValue"), _class$1.prototype), _class$1); -var START_OF_TEXT_STATE = 0; -var END_OF_TEXT_CLASS = 0; -var OUT_OF_BOUNDS_CLASS = 1; -var DELETED_GLYPH_CLASS = 2; -var DONT_ADVANCE = 0x4000; -var AATStateMachine = /*#__PURE__*/function () { - function AATStateMachine(stateTable) { - this.stateTable = stateTable; - this.lookupTable = new AATLookupTable(stateTable.classTable); - } - var _proto18 = AATStateMachine.prototype; - _proto18.process = function process(glyphs, reverse, processEntry) { - var currentState = START_OF_TEXT_STATE; // START_OF_LINE_STATE is used for kashida glyph insertions sometimes I think? - - var index = reverse ? glyphs.length - 1 : 0; - var dir = reverse ? -1 : 1; - while (dir === 1 && index <= glyphs.length || dir === -1 && index >= -1) { - var glyph = null; - var classCode = OUT_OF_BOUNDS_CLASS; - var shouldAdvance = true; - if (index === glyphs.length || index === -1) { - classCode = END_OF_TEXT_CLASS; - } else { - glyph = glyphs[index]; - if (glyph.id === 0xffff) { - // deleted glyph - classCode = DELETED_GLYPH_CLASS; - } else { - classCode = this.lookupTable.lookup(glyph.id); - if (classCode == null) { - classCode = OUT_OF_BOUNDS_CLASS; - } - } - } - var row = this.stateTable.stateArray.getItem(currentState); - var entryIndex = row[classCode]; - var entry = this.stateTable.entryTable.getItem(entryIndex); - if (classCode !== END_OF_TEXT_CLASS && classCode !== DELETED_GLYPH_CLASS) { - processEntry(glyph, entry, index); - shouldAdvance = !(entry.flags & DONT_ADVANCE); - } - currentState = entry.newState; - if (shouldAdvance) { - index += dir; - } - } - return glyphs; - } - /** - * Performs a depth-first traversal of the glyph strings - * represented by the state machine. - */; - _proto18.traverse = function traverse(opts, state, visited) { - if (state === void 0) { - state = 0; - } - if (visited === void 0) { - visited = new Set(); - } - if (visited.has(state)) { - return; - } - visited.add(state); - var _this$stateTable = this.stateTable, - nClasses = _this$stateTable.nClasses, - stateArray = _this$stateTable.stateArray, - entryTable = _this$stateTable.entryTable; - var row = stateArray.getItem(state); // Skip predefined classes - - for (var classCode = 4; classCode < nClasses; classCode++) { - var entryIndex = row[classCode]; - var entry = entryTable.getItem(entryIndex); // Try all glyphs in the class - - for (var _iterator21 = _createForOfIteratorHelperLoose(this.lookupTable.glyphsForValue(classCode)), _step21; !(_step21 = _iterator21()).done;) { - var glyph = _step21.value; - if (opts.enter) { - opts.enter(glyph, entry); - } - if (entry.newState !== 0) { - this.traverse(opts, entry.newState, visited); - } - if (opts.exit) { - opts.exit(glyph, entry); - } - } - } - }; - return AATStateMachine; -}(); -var _class$2; -var MARK_FIRST = 0x8000; -var MARK_LAST = 0x2000; -var VERB = 0x000F; // contextual substitution and glyph insertion flag - -var SET_MARK = 0x8000; // ligature entry flags - -var SET_COMPONENT = 0x8000; -var PERFORM_ACTION = 0x2000; // ligature action masks - -var LAST_MASK = 0x80000000; -var STORE_MASK = 0x40000000; -var OFFSET_MASK = 0x3FFFFFFF; -var REVERSE_DIRECTION = 0x400000; -var CURRENT_INSERT_BEFORE = 0x0800; -var MARKED_INSERT_BEFORE = 0x0400; -var CURRENT_INSERT_COUNT = 0x03E0; -var MARKED_INSERT_COUNT = 0x001F; -var AATMorxProcessor = (_class$2 = /*#__PURE__*/function () { - function AATMorxProcessor(font) { - this.processIndicRearragement = this.processIndicRearragement.bind(this); - this.processContextualSubstitution = this.processContextualSubstitution.bind(this); - this.processLigature = this.processLigature.bind(this); - this.processNoncontextualSubstitutions = this.processNoncontextualSubstitutions.bind(this); - this.processGlyphInsertion = this.processGlyphInsertion.bind(this); - this.font = font; - this.morx = font.morx; - this.inputCache = null; - } // Processes an array of glyphs and applies the specified features - // Features should be in the form of {featureType:{featureSetting:boolean}} - var _proto19 = AATMorxProcessor.prototype; - _proto19.process = function process(glyphs, features) { - if (features === void 0) { - features = {}; - } - for (var _iterator22 = _createForOfIteratorHelperLoose(this.morx.chains), _step22; !(_step22 = _iterator22()).done;) { - var chain = _step22.value; - var flags = chain.defaultFlags; // enable/disable the requested features - - for (var _iterator23 = _createForOfIteratorHelperLoose(chain.features), _step23; !(_step23 = _iterator23()).done;) { - var feature = _step23.value; - var f = void 0; - if (f = features[feature.featureType]) { - if (f[feature.featureSetting]) { - flags &= feature.disableFlags; - flags |= feature.enableFlags; - } else if (f[feature.featureSetting] === false) { - flags |= ~feature.disableFlags; - flags &= ~feature.enableFlags; - } - } - } - for (var _iterator24 = _createForOfIteratorHelperLoose(chain.subtables), _step24; !(_step24 = _iterator24()).done;) { - var subtable = _step24.value; - if (subtable.subFeatureFlags & flags) { - this.processSubtable(subtable, glyphs); - } - } - } // remove deleted glyphs - - var index = glyphs.length - 1; - while (index >= 0) { - if (glyphs[index].id === 0xffff) { - glyphs.splice(index, 1); - } - index--; - } - return glyphs; - }; - _proto19.processSubtable = function processSubtable(subtable, glyphs) { - this.subtable = subtable; - this.glyphs = glyphs; - if (this.subtable.type === 4) { - this.processNoncontextualSubstitutions(this.subtable, this.glyphs); - return; - } - this.ligatureStack = []; - this.markedGlyph = null; - this.firstGlyph = null; - this.lastGlyph = null; - this.markedIndex = null; - var stateMachine = this.getStateMachine(subtable); - var process = this.getProcessor(); - var reverse = !!(this.subtable.coverage & REVERSE_DIRECTION); - return stateMachine.process(this.glyphs, reverse, process); - }; - _proto19.getStateMachine = function getStateMachine(subtable) { - return new AATStateMachine(subtable.table.stateTable); - }; - _proto19.getProcessor = function getProcessor() { - switch (this.subtable.type) { - case 0: - return this.processIndicRearragement; - case 1: - return this.processContextualSubstitution; - case 2: - return this.processLigature; - case 4: - return this.processNoncontextualSubstitutions; - case 5: - return this.processGlyphInsertion; - default: - throw new Error("Invalid morx subtable type: ".concat(this.subtable.type)); - } - }; - _proto19.processIndicRearragement = function processIndicRearragement(glyph, entry, index) { - if (entry.flags & MARK_FIRST) { - this.firstGlyph = index; - } - if (entry.flags & MARK_LAST) { - this.lastGlyph = index; - } - reorderGlyphs(this.glyphs, entry.flags & VERB, this.firstGlyph, this.lastGlyph); - }; - _proto19.processContextualSubstitution = function processContextualSubstitution(glyph, entry, index) { - var subsitutions = this.subtable.table.substitutionTable.items; - if (entry.markIndex !== 0xffff) { - var lookup = subsitutions.getItem(entry.markIndex); - var lookupTable = new AATLookupTable(lookup); - glyph = this.glyphs[this.markedGlyph]; - var gid = lookupTable.lookup(glyph.id); - if (gid) { - this.glyphs[this.markedGlyph] = this.font.getGlyph(gid, glyph.codePoints); - } - } - if (entry.currentIndex !== 0xffff) { - var _lookup = subsitutions.getItem(entry.currentIndex); - var _lookupTable = new AATLookupTable(_lookup); - glyph = this.glyphs[index]; - var gid = _lookupTable.lookup(glyph.id); - if (gid) { - this.glyphs[index] = this.font.getGlyph(gid, glyph.codePoints); - } - } - if (entry.flags & SET_MARK) { - this.markedGlyph = index; - } - }; - _proto19.processLigature = function processLigature(glyph, entry, index) { - if (entry.flags & SET_COMPONENT) { - this.ligatureStack.push(index); - } - if (entry.flags & PERFORM_ACTION) { - var _this$ligatureStack; - var actions = this.subtable.table.ligatureActions; - var components = this.subtable.table.components; - var ligatureList = this.subtable.table.ligatureList; - var actionIndex = entry.action; - var last = false; - var ligatureIndex = 0; - var codePoints = []; - var ligatureGlyphs = []; - while (!last) { - var _codePoints; - var componentGlyph = this.ligatureStack.pop(); - (_codePoints = codePoints).unshift.apply(_codePoints, this.glyphs[componentGlyph].codePoints); - var action = actions.getItem(actionIndex++); - last = !!(action & LAST_MASK); - var store = !!(action & STORE_MASK); - var offset = (action & OFFSET_MASK) << 2 >> 2; // sign extend 30 to 32 bits - - offset += this.glyphs[componentGlyph].id; - var component = components.getItem(offset); - ligatureIndex += component; - if (last || store) { - var ligatureEntry = ligatureList.getItem(ligatureIndex); - this.glyphs[componentGlyph] = this.font.getGlyph(ligatureEntry, codePoints); - ligatureGlyphs.push(componentGlyph); - ligatureIndex = 0; - codePoints = []; - } else { - this.glyphs[componentGlyph] = this.font.getGlyph(0xffff); - } - } // Put ligature glyph indexes back on the stack - - (_this$ligatureStack = this.ligatureStack).push.apply(_this$ligatureStack, ligatureGlyphs); - } - }; - _proto19.processNoncontextualSubstitutions = function processNoncontextualSubstitutions(subtable, glyphs, index) { - var lookupTable = new AATLookupTable(subtable.table.lookupTable); - for (index = 0; index < glyphs.length; index++) { - var glyph = glyphs[index]; - if (glyph.id !== 0xffff) { - var gid = lookupTable.lookup(glyph.id); - if (gid) { - // 0 means do nothing - glyphs[index] = this.font.getGlyph(gid, glyph.codePoints); - } - } - } - }; - _proto19._insertGlyphs = function _insertGlyphs(glyphIndex, insertionActionIndex, count, isBefore) { - var _this$glyphs; - var insertions = []; - while (count--) { - var gid = this.subtable.table.insertionActions.getItem(insertionActionIndex++); - insertions.push(this.font.getGlyph(gid)); - } - if (!isBefore) { - glyphIndex++; - } - (_this$glyphs = this.glyphs).splice.apply(_this$glyphs, [glyphIndex, 0].concat(insertions)); - }; - _proto19.processGlyphInsertion = function processGlyphInsertion(glyph, entry, index) { - if (entry.flags & SET_MARK) { - this.markedIndex = index; - } - if (entry.markedInsertIndex !== 0xffff) { - var count = (entry.flags & MARKED_INSERT_COUNT) >>> 5; - var isBefore = !!(entry.flags & MARKED_INSERT_BEFORE); - this._insertGlyphs(this.markedIndex, entry.markedInsertIndex, count, isBefore); - } - if (entry.currentInsertIndex !== 0xffff) { - var _count = (entry.flags & CURRENT_INSERT_COUNT) >>> 5; - var _isBefore = !!(entry.flags & CURRENT_INSERT_BEFORE); - this._insertGlyphs(index, entry.currentInsertIndex, _count, _isBefore); - } - }; - _proto19.getSupportedFeatures = function getSupportedFeatures() { - var features = []; - for (var _iterator25 = _createForOfIteratorHelperLoose(this.morx.chains), _step25; !(_step25 = _iterator25()).done;) { - var chain = _step25.value; - for (var _iterator26 = _createForOfIteratorHelperLoose(chain.features), _step26; !(_step26 = _iterator26()).done;) { - var feature = _step26.value; - features.push([feature.featureType, feature.featureSetting]); - } - } - return features; - }; - _proto19.generateInputs = function generateInputs(gid) { - if (!this.inputCache) { - this.generateInputCache(); - } - return this.inputCache[gid] || []; - }; - _proto19.generateInputCache = function generateInputCache() { - this.inputCache = {}; - for (var _iterator27 = _createForOfIteratorHelperLoose(this.morx.chains), _step27; !(_step27 = _iterator27()).done;) { - var chain = _step27.value; - var flags = chain.defaultFlags; - for (var _iterator28 = _createForOfIteratorHelperLoose(chain.subtables), _step28; !(_step28 = _iterator28()).done;) { - var subtable = _step28.value; - if (subtable.subFeatureFlags & flags) { - this.generateInputsForSubtable(subtable); - } - } - } - }; - _proto19.generateInputsForSubtable = function generateInputsForSubtable(subtable) { - var _this3 = this; - // Currently, only supporting ligature subtables. - if (subtable.type !== 2) { - return; - } - var reverse = !!(subtable.coverage & REVERSE_DIRECTION); - if (reverse) { - throw new Error('Reverse subtable, not supported.'); - } - this.subtable = subtable; - this.ligatureStack = []; - var stateMachine = this.getStateMachine(subtable); - var process = this.getProcessor(); - var input = []; - var stack = []; - this.glyphs = []; - stateMachine.traverse({ - enter: function enter(glyph, entry) { - var glyphs = _this3.glyphs; - stack.push({ - glyphs: glyphs.slice(), - ligatureStack: _this3.ligatureStack.slice() - }); // Add glyph to input and glyphs to process. - - var g = _this3.font.getGlyph(glyph); - input.push(g); - glyphs.push(input[input.length - 1]); // Process ligature substitution - - process(glyphs[glyphs.length - 1], entry, glyphs.length - 1); // Add input to result if only one matching (non-deleted) glyph remains. - - var count = 0; - var found = 0; - for (var i = 0; i < glyphs.length && count <= 1; i++) { - if (glyphs[i].id !== 0xffff) { - count++; - found = glyphs[i].id; - } - } - if (count === 1) { - var result = input.map(function (g) { - return g.id; - }); - var _cache = _this3.inputCache[found]; - if (_cache) { - _cache.push(result); - } else { - _this3.inputCache[found] = [result]; - } - } - }, - exit: function exit() { - var _stack$pop = stack.pop(); - _this3.glyphs = _stack$pop.glyphs; - _this3.ligatureStack = _stack$pop.ligatureStack; - input.pop(); - } - }); - }; - return AATMorxProcessor; -}(), _applyDecoratedDescriptor(_class$2.prototype, "getStateMachine", [cache], Object.getOwnPropertyDescriptor(_class$2.prototype, "getStateMachine"), _class$2.prototype), _class$2); -// reverse the glyphs inside those ranges if specified -// ranges are in [offset, length] format - -function swap(glyphs, rangeA, rangeB, reverseA, reverseB) { - if (reverseA === void 0) { - reverseA = false; - } - if (reverseB === void 0) { - reverseB = false; - } - var end = glyphs.splice(rangeB[0] - (rangeB[1] - 1), rangeB[1]); - if (reverseB) { - end.reverse(); - } - var start = glyphs.splice.apply(glyphs, [rangeA[0], rangeA[1]].concat(end)); - if (reverseA) { - start.reverse(); - } - glyphs.splice.apply(glyphs, [rangeB[0] - (rangeA[1] - 1), 0].concat(start)); - return glyphs; -} -function reorderGlyphs(glyphs, verb, firstGlyph, lastGlyph) { - switch (verb) { - case 0: - // no change - return glyphs; - case 1: - // Ax => xA - return swap(glyphs, [firstGlyph, 1], [lastGlyph, 0]); - case 2: - // xD => Dx - return swap(glyphs, [firstGlyph, 0], [lastGlyph, 1]); - case 3: - // AxD => DxA - return swap(glyphs, [firstGlyph, 1], [lastGlyph, 1]); - case 4: - // ABx => xAB - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 0]); - case 5: - // ABx => xBA - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 0], true, false); - case 6: - // xCD => CDx - return swap(glyphs, [firstGlyph, 0], [lastGlyph, 2]); - case 7: - // xCD => DCx - return swap(glyphs, [firstGlyph, 0], [lastGlyph, 2], false, true); - case 8: - // AxCD => CDxA - return swap(glyphs, [firstGlyph, 1], [lastGlyph, 2]); - case 9: - // AxCD => DCxA - return swap(glyphs, [firstGlyph, 1], [lastGlyph, 2], false, true); - case 10: - // ABxD => DxAB - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 1]); - case 11: - // ABxD => DxBA - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 1], true, false); - case 12: - // ABxCD => CDxAB - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 2]); - case 13: - // ABxCD => CDxBA - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 2], true, false); - case 14: - // ABxCD => DCxAB - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 2], false, true); - case 15: - // ABxCD => DCxBA - return swap(glyphs, [firstGlyph, 2], [lastGlyph, 2], true, true); - default: - throw new Error("Unknown verb: ".concat(verb)); - } -} -var AATLayoutEngine = /*#__PURE__*/function () { - function AATLayoutEngine(font) { - this.font = font; - this.morxProcessor = new AATMorxProcessor(font); - this.fallbackPosition = false; - } - var _proto20 = AATLayoutEngine.prototype; - _proto20.substitute = function substitute(glyphRun) { - // AAT expects the glyphs to be in visual order prior to morx processing, - // so reverse the glyphs if the script is right-to-left. - if (glyphRun.direction === 'rtl') { - glyphRun.glyphs.reverse(); - } - this.morxProcessor.process(glyphRun.glyphs, mapOTToAAT(glyphRun.features)); - }; - _proto20.getAvailableFeatures = function getAvailableFeatures(script, language) { - return mapAATToOT(this.morxProcessor.getSupportedFeatures()); - }; - _proto20.stringsForGlyph = function stringsForGlyph(gid) { - var glyphStrings = this.morxProcessor.generateInputs(gid); - var result = new Set(); - for (var _iterator29 = _createForOfIteratorHelperLoose(glyphStrings), _step29; !(_step29 = _iterator29()).done;) { - var glyphs = _step29.value; - this._addStrings(glyphs, 0, result, ''); - } - return result; - }; - _proto20._addStrings = function _addStrings(glyphs, index, strings, string) { - var codePoints = this.font._cmapProcessor.codePointsForGlyph(glyphs[index]); - for (var _iterator30 = _createForOfIteratorHelperLoose(codePoints), _step30; !(_step30 = _iterator30()).done;) { - var codePoint = _step30.value; - var s = string + String.fromCodePoint(codePoint); - if (index < glyphs.length - 1) { - this._addStrings(glyphs, index + 1, strings, s); - } else { - strings.add(s); - } - } - }; - return AATLayoutEngine; -}(); -/** - * ShapingPlans are used by the OpenType shapers to store which - * features should by applied, and in what order to apply them. - * The features are applied in groups called stages. A feature - * can be applied globally to all glyphs, or locally to only - * specific glyphs. - * - * @private - */ -var ShapingPlan = /*#__PURE__*/function () { - function ShapingPlan(font, script, direction) { - this.font = font; - this.script = script; - this.direction = direction; - this.stages = []; - this.globalFeatures = {}; - this.allFeatures = {}; - } - /** - * Adds the given features to the last stage. - * Ignores features that have already been applied. - */ - var _proto21 = ShapingPlan.prototype; - _proto21._addFeatures = function _addFeatures(features, global) { - var stageIndex = this.stages.length - 1; - var stage = this.stages[stageIndex]; - for (var _iterator31 = _createForOfIteratorHelperLoose(features), _step31; !(_step31 = _iterator31()).done;) { - var feature = _step31.value; - if (this.allFeatures[feature] == null) { - stage.push(feature); - this.allFeatures[feature] = stageIndex; - if (global) { - this.globalFeatures[feature] = true; - } - } - } - } - /** - * Add features to the last stage - */; - _proto21.add = function add(arg, global) { - if (global === void 0) { - global = true; - } - if (this.stages.length === 0) { - this.stages.push([]); - } - if (typeof arg === 'string') { - arg = [arg]; - } - if (Array.isArray(arg)) { - this._addFeatures(arg, global); - } else if (typeof arg === 'object') { - this._addFeatures(arg.global || [], true); - this._addFeatures(arg.local || [], false); - } else { - throw new Error("Unsupported argument to ShapingPlan#add"); - } - } - /** - * Add a new stage - */; - _proto21.addStage = function addStage(arg, global) { - if (typeof arg === 'function') { - this.stages.push(arg, []); - } else { - this.stages.push([]); - this.add(arg, global); - } - }; - _proto21.setFeatureOverrides = function setFeatureOverrides(features) { - if (Array.isArray(features)) { - this.add(features); - } else if (typeof features === 'object') { - for (var tag in features) { - if (features[tag]) { - this.add(tag); - } else if (this.allFeatures[tag] != null) { - var stage = this.stages[this.allFeatures[tag]]; - stage.splice(stage.indexOf(tag), 1); - delete this.allFeatures[tag]; - delete this.globalFeatures[tag]; - } - } - } - } - /** - * Assigns the global features to the given glyphs - */; - _proto21.assignGlobalFeatures = function assignGlobalFeatures(glyphs) { - for (var _iterator32 = _createForOfIteratorHelperLoose(glyphs), _step32; !(_step32 = _iterator32()).done;) { - var glyph = _step32.value; - for (var feature in this.globalFeatures) { - glyph.features[feature] = true; - } - } - } - /** - * Executes the planned stages using the given OTProcessor - */; - _proto21.process = function process(processor, glyphs, positions) { - for (var _iterator33 = _createForOfIteratorHelperLoose(this.stages), _step33; !(_step33 = _iterator33()).done;) { - var stage = _step33.value; - if (typeof stage === 'function') { - if (!positions) { - stage(this.font, glyphs, this); - } - } else if (stage.length > 0) { - processor.applyFeatures(stage, glyphs, positions); - } - } - }; - return ShapingPlan; -}(); -var VARIATION_FEATURES = ['rvrn']; -var COMMON_FEATURES = ['ccmp', 'locl', 'rlig', 'mark', 'mkmk']; -var FRACTIONAL_FEATURES = ['frac', 'numr', 'dnom']; -var HORIZONTAL_FEATURES = ['calt', 'clig', 'liga', 'rclt', 'curs', 'kern']; -var DIRECTIONAL_FEATURES = { - ltr: ['ltra', 'ltrm'], - rtl: ['rtla', 'rtlm'] -}; -var DefaultShaper = /*#__PURE__*/function () { - function DefaultShaper() {} - DefaultShaper.plan = function plan(_plan, glyphs, features) { - // Plan the features we want to apply - this.planPreprocessing(_plan); - this.planFeatures(_plan); - this.planPostprocessing(_plan, features); // Assign the global features to all the glyphs - - _plan.assignGlobalFeatures(glyphs); // Assign local features to glyphs - - this.assignFeatures(_plan, glyphs); - }; - DefaultShaper.planPreprocessing = function planPreprocessing(plan) { - plan.add({ - global: [].concat(VARIATION_FEATURES, DIRECTIONAL_FEATURES[plan.direction]), - local: FRACTIONAL_FEATURES - }); - }; - DefaultShaper.planFeatures = function planFeatures(plan) {// Do nothing by default. Let subclasses override this. - }; - DefaultShaper.planPostprocessing = function planPostprocessing(plan, userFeatures) { - plan.add([].concat(COMMON_FEATURES, HORIZONTAL_FEATURES)); - plan.setFeatureOverrides(userFeatures); - }; - DefaultShaper.assignFeatures = function assignFeatures(plan, glyphs) { - // Enable contextual fractions - for (var i = 0; i < glyphs.length; i++) { - var glyph = glyphs[i]; - if (glyph.codePoints[0] === 0x2044) { - // fraction slash - var start = i; - var end = i + 1; // Apply numerator - - while (start > 0 && unicode.isDigit(glyphs[start - 1].codePoints[0])) { - glyphs[start - 1].features.numr = true; - glyphs[start - 1].features.frac = true; - start--; - } // Apply denominator - - while (end < glyphs.length && unicode.isDigit(glyphs[end].codePoints[0])) { - glyphs[end].features.dnom = true; - glyphs[end].features.frac = true; - end++; - } // Apply fraction slash - - glyph.features.frac = true; - i = end - 1; - } - } - }; - return DefaultShaper; -}(); -_defineProperty(DefaultShaper, "zeroMarkWidths", 'AFTER_GPOS'); -var trie = new UnicodeTrie(Buffer("APABAAAAAAAAOAAAAf0BAv7tmi1MxDAUx7vtvjhAgcDgkEgEAnmXEBIMCYaEcygEiqBQ4FAkCE4ikUgMiiBJSAgSiUQSDMn9L9eSl6bddddug9t7yS/trevre+3r27pcNxZiG+yCfdCVv/9LeQxOwRm4AJegD27ALbgD9+ABPJF+z+BN/h7yDj5k/VOWX6SdmU5+wLWknggxDxaS8u0qiiX4uiz9XamQ3wzDMAzDMAzDMAzDVI/h959V/v7BMAzDMAzDMLlyNTNiMSdewVxbiA44B4/guz1qW58VYlMI0WsJ0W+N6kXw0spvPtdwhtkwnGM6uLaV4Xyzg3v3PM9DPfQ/sOg4xPWjipy31P8LTqbU304c/cLCUmWJLNB2Uz2U1KTeRKNmKHVMfbJC+/0loTZRH/W5cvEvBJPMbREkWt3FD1NcqXZBSpuE2Ad0PBehPtNrPtIEdYP+hiRt/V1jIiE69X4NT/uVZI3PUHE9bm5M7ePGdZWy951v7Nn6j8v1WWKP3mt6ttnsigx6VN7Vc0VomSSGqW2mGNP1muZPl7LfjNUaKNFtDGVf2fvE9O7VlBS5j333c5p/eeoOqcs1R/hIqDWLJ7TTlksirVT1SI7l8k4Yp+g3jafGcrU1RM6l9th80XOpnlN97bDNY4i4s61B0Si/ipa0uHMl6zqEjlFfCZm/TM8KmzQDjmuTAQ==","base64")); -var FEATURES = ['isol', 'fina', 'fin2', 'fin3', 'medi', 'med2', 'init']; -var ShapingClasses = { - Non_Joining: 0, - Left_Joining: 1, - Right_Joining: 2, - Dual_Joining: 3, - Join_Causing: 3, - ALAPH: 4, - 'DALATH RISH': 5, - Transparent: 6 -}; -var ISOL = 'isol'; -var FINA = 'fina'; -var FIN2 = 'fin2'; -var FIN3 = 'fin3'; -var MEDI = 'medi'; -var MED2 = 'med2'; -var INIT = 'init'; -var NONE = null; // Each entry is [prevAction, curAction, nextState] - -var STATE_TABLE = [ -// Non_Joining, Left_Joining, Right_Joining, Dual_Joining, ALAPH, DALATH RISH -// State 0: prev was U, not willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [NONE, ISOL, 1], [NONE, ISOL, 2], [NONE, ISOL, 1], [NONE, ISOL, 6]], -// State 1: prev was R or ISOL/ALAPH, not willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [NONE, ISOL, 1], [NONE, ISOL, 2], [NONE, FIN2, 5], [NONE, ISOL, 6]], -// State 2: prev was D/L in ISOL form, willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [INIT, FINA, 1], [INIT, FINA, 3], [INIT, FINA, 4], [INIT, FINA, 6]], -// State 3: prev was D in FINA form, willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [MEDI, FINA, 1], [MEDI, FINA, 3], [MEDI, FINA, 4], [MEDI, FINA, 6]], -// State 4: prev was FINA ALAPH, not willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [MED2, ISOL, 1], [MED2, ISOL, 2], [MED2, FIN2, 5], [MED2, ISOL, 6]], -// State 5: prev was FIN2/FIN3 ALAPH, not willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [ISOL, ISOL, 1], [ISOL, ISOL, 2], [ISOL, FIN2, 5], [ISOL, ISOL, 6]], -// State 6: prev was DALATH/RISH, not willing to join. -[[NONE, NONE, 0], [NONE, ISOL, 2], [NONE, ISOL, 1], [NONE, ISOL, 2], [NONE, FIN3, 5], [NONE, ISOL, 6]]]; -/** - * This is a shaper for Arabic, and other cursive scripts. - * It uses data from ArabicShaping.txt in the Unicode database, - * compiled to a UnicodeTrie by generate-data.coffee. - * - * The shaping state machine was ported from Harfbuzz. - * https://github.com/behdad/harfbuzz/blob/master/src/hb-ot-shape-complex-arabic.cc - */ -var ArabicShaper = /*#__PURE__*/function (_DefaultShaper) { - function ArabicShaper() { - return _DefaultShaper.apply(this, arguments) || this; - } - _inheritsLoose(ArabicShaper, _DefaultShaper); - ArabicShaper.planFeatures = function planFeatures(plan) { - plan.add(['ccmp', 'locl']); - for (var i = 0; i < FEATURES.length; i++) { - var feature = FEATURES[i]; - plan.addStage(feature, false); - } - plan.addStage('mset'); - }; - ArabicShaper.assignFeatures = function assignFeatures(plan, glyphs) { - _DefaultShaper.assignFeatures.call(this, plan, glyphs); - var prev = -1; - var state = 0; - var actions = []; // Apply the state machine to map glyphs to features - - for (var i = 0; i < glyphs.length; i++) { - var curAction = void 0, - prevAction = void 0; - var glyph = glyphs[i]; - var type = getShapingClass(glyph.codePoints[0]); - if (type === ShapingClasses.Transparent) { - actions[i] = NONE; - continue; - } - var _STATE_TABLE$state$ty = STATE_TABLE[state][type]; - prevAction = _STATE_TABLE$state$ty[0]; - curAction = _STATE_TABLE$state$ty[1]; - state = _STATE_TABLE$state$ty[2]; - if (prevAction !== NONE && prev !== -1) { - actions[prev] = prevAction; - } - actions[i] = curAction; - prev = i; - } // Apply the chosen features to their respective glyphs - - for (var index = 0; index < glyphs.length; index++) { - var feature = void 0; - var glyph = glyphs[index]; - if (feature = actions[index]) { - glyph.features[feature] = true; - } - } - }; - return ArabicShaper; -}(DefaultShaper); -function getShapingClass(codePoint) { - var res = trie.get(codePoint); - if (res) { - return res - 1; - } - var category = unicode.getCategory(codePoint); - if (category === 'Mn' || category === 'Me' || category === 'Cf') { - return ShapingClasses.Transparent; - } - return ShapingClasses.Non_Joining; -} -var GlyphIterator = /*#__PURE__*/function () { - function GlyphIterator(glyphs, options) { - this.glyphs = glyphs; - this.reset(options); - } - var _proto22 = GlyphIterator.prototype; - _proto22.reset = function reset(options, index) { - if (options === void 0) { - options = {}; - } - if (index === void 0) { - index = 0; - } - this.options = options; - this.flags = options.flags || {}; - this.markAttachmentType = options.markAttachmentType || 0; - this.index = index; - }; - _proto22.shouldIgnore = function shouldIgnore(glyph) { - return this.flags.ignoreMarks && glyph.isMark || this.flags.ignoreBaseGlyphs && glyph.isBase || this.flags.ignoreLigatures && glyph.isLigature || this.markAttachmentType && glyph.isMark && glyph.markAttachmentType !== this.markAttachmentType; - }; - _proto22.move = function move(dir) { - this.index += dir; - while (0 <= this.index && this.index < this.glyphs.length && this.shouldIgnore(this.glyphs[this.index])) { - this.index += dir; - } - if (0 > this.index || this.index >= this.glyphs.length) { - return null; - } - return this.glyphs[this.index]; - }; - _proto22.next = function next() { - return this.move(+1); - }; - _proto22.prev = function prev() { - return this.move(-1); - }; - _proto22.peek = function peek(count) { - if (count === void 0) { - count = 1; - } - var idx = this.index; - var res = this.increment(count); - this.index = idx; - return res; - }; - _proto22.peekIndex = function peekIndex(count) { - if (count === void 0) { - count = 1; - } - var idx = this.index; - this.increment(count); - var res = this.index; - this.index = idx; - return res; - }; - _proto22.increment = function increment(count) { - if (count === void 0) { - count = 1; - } - var dir = count < 0 ? -1 : 1; - count = Math.abs(count); - while (count--) { - this.move(dir); - } - return this.glyphs[this.index]; - }; - return _createClass(GlyphIterator, [{ - key: "cur", - get: function get() { - return this.glyphs[this.index] || null; - } - }]); -}(); -var DEFAULT_SCRIPTS = ['DFLT', 'dflt', 'latn']; -var OTProcessor = /*#__PURE__*/function () { - function OTProcessor(font, table) { - this.font = font; - this.table = table; - this.script = null; - this.scriptTag = null; - this.language = null; - this.languageTag = null; - this.features = {}; - this.lookups = {}; // Setup variation substitutions - - this.variationsIndex = font._variationProcessor ? this.findVariationsIndex(font._variationProcessor.normalizedCoords) : -1; // initialize to default script + language - - this.selectScript(); // current context (set by applyFeatures) - - this.glyphs = []; - this.positions = []; // only used by GPOS - - this.ligatureID = 1; - this.currentFeature = null; - } - var _proto23 = OTProcessor.prototype; - _proto23.findScript = function findScript(script) { - if (this.table.scriptList == null) { - return null; - } - if (!Array.isArray(script)) { - script = [script]; - } - for (var _iterator34 = _createForOfIteratorHelperLoose(script), _step34; !(_step34 = _iterator34()).done;) { - var s = _step34.value; - for (var _iterator35 = _createForOfIteratorHelperLoose(this.table.scriptList), _step35; !(_step35 = _iterator35()).done;) { - var entry = _step35.value; - if (entry.tag === s) { - return entry; - } - } - } - return null; - }; - _proto23.selectScript = function selectScript(script, language, direction$1) { - var changed = false; - var entry; - if (!this.script || script !== this.scriptTag) { - entry = this.findScript(script); - if (!entry) { - entry = this.findScript(DEFAULT_SCRIPTS); - } - if (!entry) { - return this.scriptTag; - } - this.scriptTag = entry.tag; - this.script = entry.script; - this.language = null; - this.languageTag = null; - changed = true; - } - if (!direction$1 || direction$1 !== this.direction) { - this.direction = direction$1 || direction(script); - } - if (language && language.length < 4) { - language += ' '.repeat(4 - language.length); - } - if (!language || language !== this.languageTag) { - this.language = null; - for (var _iterator36 = _createForOfIteratorHelperLoose(this.script.langSysRecords), _step36; !(_step36 = _iterator36()).done;) { - var lang = _step36.value; - if (lang.tag === language) { - this.language = lang.langSys; - this.languageTag = lang.tag; - break; - } - } - if (!this.language) { - this.language = this.script.defaultLangSys; - this.languageTag = null; - } - changed = true; - } // Build a feature lookup table - - if (changed) { - this.features = {}; - if (this.language) { - for (var _iterator37 = _createForOfIteratorHelperLoose(this.language.featureIndexes), _step37; !(_step37 = _iterator37()).done;) { - var featureIndex = _step37.value; - var record = this.table.featureList[featureIndex]; - var substituteFeature = this.substituteFeatureForVariations(featureIndex); - this.features[record.tag] = substituteFeature || record.feature; - } - } - } - return this.scriptTag; - }; - _proto23.lookupsForFeatures = function lookupsForFeatures(userFeatures, exclude) { - if (userFeatures === void 0) { - userFeatures = []; - } - var lookups = []; - for (var _iterator38 = _createForOfIteratorHelperLoose(userFeatures), _step38; !(_step38 = _iterator38()).done;) { - var tag = _step38.value; - var feature = this.features[tag]; - if (!feature) { - continue; - } - for (var _iterator39 = _createForOfIteratorHelperLoose(feature.lookupListIndexes), _step39; !(_step39 = _iterator39()).done;) { - var lookupIndex = _step39.value; - if (exclude && exclude.indexOf(lookupIndex) !== -1) { - continue; - } - lookups.push({ - feature: tag, - index: lookupIndex, - lookup: this.table.lookupList.get(lookupIndex) - }); - } - } - lookups.sort(function (a, b) { - return a.index - b.index; - }); - return lookups; - }; - _proto23.substituteFeatureForVariations = function substituteFeatureForVariations(featureIndex) { - if (this.variationsIndex === -1) { - return null; - } - var record = this.table.featureVariations.featureVariationRecords[this.variationsIndex]; - var substitutions = record.featureTableSubstitution.substitutions; - for (var _iterator40 = _createForOfIteratorHelperLoose(substitutions), _step40; !(_step40 = _iterator40()).done;) { - var substitution = _step40.value; - if (substitution.featureIndex === featureIndex) { - return substitution.alternateFeatureTable; - } - } - return null; - }; - _proto23.findVariationsIndex = function findVariationsIndex(coords) { - var variations = this.table.featureVariations; - if (!variations) { - return -1; - } - var records = variations.featureVariationRecords; - for (var i = 0; i < records.length; i++) { - var conditions = records[i].conditionSet.conditionTable; - if (this.variationConditionsMatch(conditions, coords)) { - return i; - } - } - return -1; - }; - _proto23.variationConditionsMatch = function variationConditionsMatch(conditions, coords) { - return conditions.every(function (condition) { - var coord = condition.axisIndex < coords.length ? coords[condition.axisIndex] : 0; - return condition.filterRangeMinValue <= coord && coord <= condition.filterRangeMaxValue; - }); - }; - _proto23.applyFeatures = function applyFeatures(userFeatures, glyphs, advances) { - var lookups = this.lookupsForFeatures(userFeatures); - this.applyLookups(lookups, glyphs, advances); - }; - _proto23.applyLookups = function applyLookups(lookups, glyphs, positions) { - this.glyphs = glyphs; - this.positions = positions; - this.glyphIterator = new GlyphIterator(glyphs); - for (var _iterator41 = _createForOfIteratorHelperLoose(lookups), _step41; !(_step41 = _iterator41()).done;) { - var _step41$value = _step41.value, - feature = _step41$value.feature, - lookup = _step41$value.lookup; - this.currentFeature = feature; - this.glyphIterator.reset(lookup.flags); - while (this.glyphIterator.index < glyphs.length) { - if (!(feature in this.glyphIterator.cur.features)) { - this.glyphIterator.next(); - continue; - } - for (var _iterator42 = _createForOfIteratorHelperLoose(lookup.subTables), _step42; !(_step42 = _iterator42()).done;) { - var table = _step42.value; - var res = this.applyLookup(lookup.lookupType, table); - if (res) { - break; - } - } - this.glyphIterator.next(); - } - } - }; - _proto23.applyLookup = function applyLookup(lookup, table) { - throw new Error("applyLookup must be implemented by subclasses"); - }; - _proto23.applyLookupList = function applyLookupList(lookupRecords) { - var options = this.glyphIterator.options; - var glyphIndex = this.glyphIterator.index; - for (var _iterator43 = _createForOfIteratorHelperLoose(lookupRecords), _step43; !(_step43 = _iterator43()).done;) { - var lookupRecord = _step43.value; - // Reset flags and find glyph index for this lookup record - this.glyphIterator.reset(options, glyphIndex); - this.glyphIterator.increment(lookupRecord.sequenceIndex); // Get the lookup and setup flags for subtables - - var lookup = this.table.lookupList.get(lookupRecord.lookupListIndex); - this.glyphIterator.reset(lookup.flags, this.glyphIterator.index); // Apply lookup subtables until one matches - - for (var _iterator44 = _createForOfIteratorHelperLoose(lookup.subTables), _step44; !(_step44 = _iterator44()).done;) { - var table = _step44.value; - if (this.applyLookup(lookup.lookupType, table)) { - break; - } - } - } - this.glyphIterator.reset(options, glyphIndex); - return true; - }; - _proto23.coverageIndex = function coverageIndex(coverage, glyph) { - if (glyph == null) { - glyph = this.glyphIterator.cur.id; - } - switch (coverage.version) { - case 1: - return coverage.glyphs.indexOf(glyph); - case 2: - for (var _iterator45 = _createForOfIteratorHelperLoose(coverage.rangeRecords), _step45; !(_step45 = _iterator45()).done;) { - var range = _step45.value; - if (range.start <= glyph && glyph <= range.end) { - return range.startCoverageIndex + glyph - range.start; - } - } - break; - } - return -1; - }; - _proto23.match = function match(sequenceIndex, sequence, fn, matched) { - var pos = this.glyphIterator.index; - var glyph = this.glyphIterator.increment(sequenceIndex); - var idx = 0; - while (idx < sequence.length && glyph && fn(sequence[idx], glyph)) { - if (matched) { - matched.push(this.glyphIterator.index); - } - idx++; - glyph = this.glyphIterator.next(); - } - this.glyphIterator.index = pos; - if (idx < sequence.length) { - return false; - } - return matched || true; - }; - _proto23.sequenceMatches = function sequenceMatches(sequenceIndex, sequence) { - return this.match(sequenceIndex, sequence, function (component, glyph) { - return component === glyph.id; - }); - }; - _proto23.sequenceMatchIndices = function sequenceMatchIndices(sequenceIndex, sequence) { - var _this4 = this; - return this.match(sequenceIndex, sequence, function (component, glyph) { - // If the current feature doesn't apply to this glyph, - if (!(_this4.currentFeature in glyph.features)) { - return false; - } - return component === glyph.id; - }, []); - }; - _proto23.coverageSequenceMatches = function coverageSequenceMatches(sequenceIndex, sequence) { - var _this5 = this; - return this.match(sequenceIndex, sequence, function (coverage, glyph) { - return _this5.coverageIndex(coverage, glyph.id) >= 0; - }); - }; - _proto23.getClassID = function getClassID(glyph, classDef) { - switch (classDef.version) { - case 1: - // Class array - var i = glyph - classDef.startGlyph; - if (i >= 0 && i < classDef.classValueArray.length) { - return classDef.classValueArray[i]; - } - break; - case 2: - for (var _iterator46 = _createForOfIteratorHelperLoose(classDef.classRangeRecord), _step46; !(_step46 = _iterator46()).done;) { - var range = _step46.value; - if (range.start <= glyph && glyph <= range.end) { - return range.class; - } - } - break; - } - return 0; - }; - _proto23.classSequenceMatches = function classSequenceMatches(sequenceIndex, sequence, classDef) { - var _this6 = this; - return this.match(sequenceIndex, sequence, function (classID, glyph) { - return classID === _this6.getClassID(glyph.id, classDef); - }); - }; - _proto23.applyContext = function applyContext(table) { - switch (table.version) { - case 1: - var index = this.coverageIndex(table.coverage); - if (index === -1) { - return false; - } - var set = table.ruleSets[index]; - for (var _iterator47 = _createForOfIteratorHelperLoose(set), _step47; !(_step47 = _iterator47()).done;) { - var rule = _step47.value; - if (this.sequenceMatches(1, rule.input)) { - return this.applyLookupList(rule.lookupRecords); - } - } - break; - case 2: - if (this.coverageIndex(table.coverage) === -1) { - return false; - } - index = this.getClassID(this.glyphIterator.cur.id, table.classDef); - if (index === -1) { - return false; - } - set = table.classSet[index]; - for (var _iterator48 = _createForOfIteratorHelperLoose(set), _step48; !(_step48 = _iterator48()).done;) { - var _rule = _step48.value; - if (this.classSequenceMatches(1, _rule.classes, table.classDef)) { - return this.applyLookupList(_rule.lookupRecords); - } - } - break; - case 3: - if (this.coverageSequenceMatches(0, table.coverages)) { - return this.applyLookupList(table.lookupRecords); - } - break; - } - return false; - }; - _proto23.applyChainingContext = function applyChainingContext(table) { - switch (table.version) { - case 1: - var index = this.coverageIndex(table.coverage); - if (index === -1) { - return false; - } - var set = table.chainRuleSets[index]; - for (var _iterator49 = _createForOfIteratorHelperLoose(set), _step49; !(_step49 = _iterator49()).done;) { - var rule = _step49.value; - if (this.sequenceMatches(-rule.backtrack.length, rule.backtrack) && this.sequenceMatches(1, rule.input) && this.sequenceMatches(1 + rule.input.length, rule.lookahead)) { - return this.applyLookupList(rule.lookupRecords); - } - } - break; - case 2: - if (this.coverageIndex(table.coverage) === -1) { - return false; - } - index = this.getClassID(this.glyphIterator.cur.id, table.inputClassDef); - var rules = table.chainClassSet[index]; - if (!rules) { - return false; - } - for (var _iterator50 = _createForOfIteratorHelperLoose(rules), _step50; !(_step50 = _iterator50()).done;) { - var _rule2 = _step50.value; - if (this.classSequenceMatches(-_rule2.backtrack.length, _rule2.backtrack, table.backtrackClassDef) && this.classSequenceMatches(1, _rule2.input, table.inputClassDef) && this.classSequenceMatches(1 + _rule2.input.length, _rule2.lookahead, table.lookaheadClassDef)) { - return this.applyLookupList(_rule2.lookupRecords); - } - } - break; - case 3: - if (this.coverageSequenceMatches(-table.backtrackGlyphCount, table.backtrackCoverage) && this.coverageSequenceMatches(0, table.inputCoverage) && this.coverageSequenceMatches(table.inputGlyphCount, table.lookaheadCoverage)) { - return this.applyLookupList(table.lookupRecords); - } - break; - } - return false; - }; - return OTProcessor; -}(); -var GlyphInfo = /*#__PURE__*/function () { - function GlyphInfo(font, id, codePoints, features) { - if (codePoints === void 0) { - codePoints = []; - } - this._font = font; - this.codePoints = codePoints; - this.id = id; - this.features = {}; - if (Array.isArray(features)) { - for (var i = 0; i < features.length; i++) { - var feature = features[i]; - this.features[feature] = true; - } - } else if (typeof features === 'object') { - Object.assign(this.features, features); - } - this.ligatureID = null; - this.ligatureComponent = null; - this.isLigated = false; - this.cursiveAttachment = null; - this.markAttachment = null; - this.shaperInfo = null; - this.substituted = false; - this.isMultiplied = false; - } - var _proto24 = GlyphInfo.prototype; - _proto24.copy = function copy() { - return new GlyphInfo(this._font, this.id, this.codePoints, this.features); - }; - return _createClass(GlyphInfo, [{ - key: "id", - get: function get() { - return this._id; - }, - set: function set(id) { - this._id = id; - this.substituted = true; - var GDEF = this._font.GDEF; - if (GDEF && GDEF.glyphClassDef) { - // TODO: clean this up - var classID = OTProcessor.prototype.getClassID(id, GDEF.glyphClassDef); - this.isBase = classID === 1; - this.isLigature = classID === 2; - this.isMark = classID === 3; - this.markAttachmentType = GDEF.markAttachClassDef ? OTProcessor.prototype.getClassID(id, GDEF.markAttachClassDef) : 0; - } else { - this.isMark = this.codePoints.length > 0 && this.codePoints.every(unicode.isMark); - this.isBase = !this.isMark; - this.isLigature = this.codePoints.length > 1; - this.markAttachmentType = 0; - } - } - }]); -}(); -/** - * This is a shaper for the Hangul script, used by the Korean language. - * It does the following: - * - decompose if unsupported by the font: - * -> - * -> - * -> - * - * - compose if supported by the font: - * -> - * -> - * -> - * - * - reorder tone marks (S is any valid syllable): - * -> - * - * - apply ljmo, vjmo, and tjmo OpenType features to decomposed Jamo sequences. - * - * This logic is based on the following documents: - * - http://www.microsoft.com/typography/OpenTypeDev/hangul/intro.htm - * - http://ktug.org/~nomos/harfbuzz-hangul/hangulshaper.pdf - */ -var HangulShaper = /*#__PURE__*/function (_DefaultShaper2) { - function HangulShaper() { - return _DefaultShaper2.apply(this, arguments) || this; - } - _inheritsLoose(HangulShaper, _DefaultShaper2); - HangulShaper.planFeatures = function planFeatures(plan) { - plan.add(['ljmo', 'vjmo', 'tjmo'], false); - }; - HangulShaper.assignFeatures = function assignFeatures(plan, glyphs) { - var state = 0; - var i = 0; - while (i < glyphs.length) { - var action = void 0; - var glyph = glyphs[i]; - var code = glyph.codePoints[0]; - var type = getType(code); - var _STATE_TABLE$1$state$ = STATE_TABLE$1[state][type]; - action = _STATE_TABLE$1$state$[0]; - state = _STATE_TABLE$1$state$[1]; - switch (action) { - case DECOMPOSE: - // Decompose the composed syllable if it is not supported by the font. - if (!plan.font.hasGlyphForCodePoint(code)) { - i = decompose(glyphs, i, plan.font); - } - break; - case COMPOSE: - // Found a decomposed syllable. Try to compose if supported by the font. - i = compose(glyphs, i, plan.font); - break; - case TONE_MARK: - // Got a valid syllable, followed by a tone mark. Move the tone mark to the beginning of the syllable. - reorderToneMark(glyphs, i, plan.font); - break; - case INVALID: - // Tone mark has no valid syllable to attach to, so insert a dotted circle - i = insertDottedCircle(glyphs, i, plan.font); - break; - } - i++; - } - }; - return HangulShaper; -}(DefaultShaper); -_defineProperty(HangulShaper, "zeroMarkWidths", 'NONE'); -var HANGUL_BASE = 0xac00; -var HANGUL_END = 0xd7a4; -var HANGUL_COUNT = HANGUL_END - HANGUL_BASE + 1; -var L_BASE = 0x1100; // lead - -var V_BASE = 0x1161; // vowel - -var T_BASE = 0x11a7; // trail - -var L_COUNT = 19; -var V_COUNT = 21; -var T_COUNT = 28; -var L_END = L_BASE + L_COUNT - 1; -var V_END = V_BASE + V_COUNT - 1; -var T_END = T_BASE + T_COUNT - 1; -var DOTTED_CIRCLE = 0x25cc; -var isL = function isL(code) { - return 0x1100 <= code && code <= 0x115f || 0xa960 <= code && code <= 0xa97c; -}; -var isV = function isV(code) { - return 0x1160 <= code && code <= 0x11a7 || 0xd7b0 <= code && code <= 0xd7c6; -}; -var isT = function isT(code) { - return 0x11a8 <= code && code <= 0x11ff || 0xd7cb <= code && code <= 0xd7fb; -}; -var isTone = function isTone(code) { - return 0x302e <= code && code <= 0x302f; -}; -var isLVT = function isLVT(code) { - return HANGUL_BASE <= code && code <= HANGUL_END; -}; -var isLV = function isLV(code) { - return code - HANGUL_BASE < HANGUL_COUNT && (code - HANGUL_BASE) % T_COUNT === 0; -}; -var isCombiningL = function isCombiningL(code) { - return L_BASE <= code && code <= L_END; -}; -var isCombiningV = function isCombiningV(code) { - return V_BASE <= code && code <= V_END; -}; -var isCombiningT = function isCombiningT(code) { - return 1 <= code && code <= T_END; -}; // Character categories - -var X = 0; // Other character - -var L = 1; // Leading consonant - -var V = 2; // Medial vowel - -var T = 3; // Trailing consonant - -var LV = 4; // Composed syllable - -var LVT = 5; // Composed syllable - -var M = 6; // Tone mark -// This function classifies a character using the above categories. - -function getType(code) { - if (isL(code)) { - return L; - } - if (isV(code)) { - return V; - } - if (isT(code)) { - return T; - } - if (isLV(code)) { - return LV; - } - if (isLVT(code)) { - return LVT; - } - if (isTone(code)) { - return M; - } - return X; -} // State machine actions - -var NO_ACTION = 0; -var DECOMPOSE = 1; -var COMPOSE = 2; -var TONE_MARK = 4; -var INVALID = 5; // Build a state machine that accepts valid syllables, and applies actions along the way. -// The logic this is implementing is documented at the top of the file. - -var STATE_TABLE$1 = [ -// X L V T LV LVT M -// State 0: start state -[[NO_ACTION, 0], [NO_ACTION, 1], [NO_ACTION, 0], [NO_ACTION, 0], [DECOMPOSE, 2], [DECOMPOSE, 3], [INVALID, 0]], -// State 1: -[[NO_ACTION, 0], [NO_ACTION, 1], [COMPOSE, 2], [NO_ACTION, 0], [DECOMPOSE, 2], [DECOMPOSE, 3], [INVALID, 0]], -// State 2: or -[[NO_ACTION, 0], [NO_ACTION, 1], [NO_ACTION, 0], [COMPOSE, 3], [DECOMPOSE, 2], [DECOMPOSE, 3], [TONE_MARK, 0]], -// State 3: or -[[NO_ACTION, 0], [NO_ACTION, 1], [NO_ACTION, 0], [NO_ACTION, 0], [DECOMPOSE, 2], [DECOMPOSE, 3], [TONE_MARK, 0]]]; -function getGlyph(font, code, features) { - return new GlyphInfo(font, font.glyphForCodePoint(code).id, [code], features); -} -function decompose(glyphs, i, font) { - var glyph = glyphs[i]; - var code = glyph.codePoints[0]; - var s = code - HANGUL_BASE; - var t = T_BASE + s % T_COUNT; - s = s / T_COUNT | 0; - var l = L_BASE + s / V_COUNT | 0; - var v = V_BASE + s % V_COUNT; // Don't decompose if all of the components are not available - - if (!font.hasGlyphForCodePoint(l) || !font.hasGlyphForCodePoint(v) || t !== T_BASE && !font.hasGlyphForCodePoint(t)) { - return i; - } // Replace the current glyph with decomposed L, V, and T glyphs, - // and apply the proper OpenType features to each component. - - var ljmo = getGlyph(font, l, glyph.features); - ljmo.features.ljmo = true; - var vjmo = getGlyph(font, v, glyph.features); - vjmo.features.vjmo = true; - var insert = [ljmo, vjmo]; - if (t > T_BASE) { - var tjmo = getGlyph(font, t, glyph.features); - tjmo.features.tjmo = true; - insert.push(tjmo); - } - glyphs.splice.apply(glyphs, [i, 1].concat(insert)); - return i + insert.length - 1; -} -function compose(glyphs, i, font) { - var glyph = glyphs[i]; - var code = glyphs[i].codePoints[0]; - var type = getType(code); - var prev = glyphs[i - 1].codePoints[0]; - var prevType = getType(prev); // Figure out what type of syllable we're dealing with - - var lv, ljmo, vjmo, tjmo; - if (prevType === LV && type === T) { - // - lv = prev; - tjmo = glyph; - } else { - if (type === V) { - // - ljmo = glyphs[i - 1]; - vjmo = glyph; - } else { - // - ljmo = glyphs[i - 2]; - vjmo = glyphs[i - 1]; - tjmo = glyph; - } - var l = ljmo.codePoints[0]; - var v = vjmo.codePoints[0]; // Make sure L and V are combining characters - - if (isCombiningL(l) && isCombiningV(v)) { - lv = HANGUL_BASE + ((l - L_BASE) * V_COUNT + (v - V_BASE)) * T_COUNT; - } - } - var t = tjmo && tjmo.codePoints[0] || T_BASE; - if (lv != null && (t === T_BASE || isCombiningT(t))) { - var s = lv + (t - T_BASE); // Replace with a composed glyph if supported by the font, - // otherwise apply the proper OpenType features to each component. - - if (font.hasGlyphForCodePoint(s)) { - var del = prevType === V ? 3 : 2; - glyphs.splice(i - del + 1, del, getGlyph(font, s, glyph.features)); - return i - del + 1; - } - } // Didn't compose (either a non-combining component or unsupported by font). - - if (ljmo) { - ljmo.features.ljmo = true; - } - if (vjmo) { - vjmo.features.vjmo = true; - } - if (tjmo) { - tjmo.features.tjmo = true; - } - if (prevType === LV) { - // Sequence was originally , which got combined earlier. - // Either the T was non-combining, or the LVT glyph wasn't supported. - // Decompose the glyph again and apply OT features. - decompose(glyphs, i - 1, font); - return i + 1; - } - return i; -} -function getLength(code) { - switch (getType(code)) { - case LV: - case LVT: - return 1; - case V: - return 2; - case T: - return 3; - } -} -function reorderToneMark(glyphs, i, font) { - var glyph = glyphs[i]; - var code = glyphs[i].codePoints[0]; // Move tone mark to the beginning of the previous syllable, unless it is zero width - - if (font.glyphForCodePoint(code).advanceWidth === 0) { - return; - } - var prev = glyphs[i - 1].codePoints[0]; - var len = getLength(prev); - glyphs.splice(i, 1); - return glyphs.splice(i - len, 0, glyph); -} -function insertDottedCircle(glyphs, i, font) { - var glyph = glyphs[i]; - var code = glyphs[i].codePoints[0]; - if (font.hasGlyphForCodePoint(DOTTED_CIRCLE)) { - var dottedCircle = getGlyph(font, DOTTED_CIRCLE, glyph.features); // If the tone mark is zero width, insert the dotted circle before, otherwise after - - var idx = font.glyphForCodePoint(code).advanceWidth === 0 ? i : i + 1; - glyphs.splice(idx, 0, dottedCircle); - i++; - } - return i; -} -var stateTable = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 2, 3, 4, 5, 6, 7, 8, 9, 0, 10, 11, 11, 12, 13, 14, 15, 16, 17], [0, 0, 0, 18, 19, 20, 21, 22, 23, 0, 24, 0, 0, 25, 26, 0, 0, 27, 0], [0, 0, 0, 28, 29, 30, 31, 32, 33, 0, 34, 0, 0, 35, 36, 0, 0, 37, 0], [0, 0, 0, 38, 5, 7, 7, 8, 9, 0, 10, 0, 0, 0, 13, 0, 0, 16, 0], [0, 39, 0, 0, 0, 40, 41, 0, 9, 0, 10, 0, 0, 0, 42, 0, 39, 0, 0], [0, 0, 0, 0, 43, 44, 44, 8, 9, 0, 0, 0, 0, 12, 43, 0, 0, 0, 0], [0, 0, 0, 0, 43, 44, 44, 8, 9, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0], [0, 0, 0, 45, 46, 47, 48, 49, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 50, 0, 0, 51, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 53, 54, 55, 56, 57, 58, 0, 59, 0, 0, 60, 61, 0, 0, 62, 0], [0, 0, 0, 4, 5, 7, 7, 8, 9, 0, 10, 0, 0, 0, 13, 0, 0, 16, 0], [0, 63, 64, 0, 0, 40, 41, 0, 9, 0, 10, 0, 0, 0, 42, 0, 63, 0, 0], [0, 2, 3, 4, 5, 6, 7, 8, 9, 0, 10, 11, 11, 12, 13, 0, 2, 16, 0], [0, 0, 0, 18, 65, 20, 21, 22, 23, 0, 24, 0, 0, 25, 26, 0, 0, 27, 0], [0, 0, 0, 0, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 0, 0], [0, 0, 0, 69, 0, 70, 70, 0, 71, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 73, 19, 74, 74, 22, 23, 0, 24, 0, 0, 0, 26, 0, 0, 27, 0], [0, 75, 0, 0, 0, 76, 77, 0, 23, 0, 24, 0, 0, 0, 78, 0, 75, 0, 0], [0, 0, 0, 0, 79, 80, 80, 22, 23, 0, 0, 0, 0, 25, 79, 0, 0, 0, 0], [0, 0, 0, 18, 19, 20, 74, 22, 23, 0, 24, 0, 0, 25, 26, 0, 0, 27, 0], [0, 0, 0, 81, 82, 83, 84, 85, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 86, 0, 0, 87, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 18, 19, 74, 74, 22, 23, 0, 24, 0, 0, 0, 26, 0, 0, 27, 0], [0, 89, 90, 0, 0, 76, 77, 0, 23, 0, 24, 0, 0, 0, 78, 0, 89, 0, 0], [0, 0, 0, 0, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 0, 0], [0, 0, 0, 94, 29, 95, 31, 32, 33, 0, 34, 0, 0, 0, 36, 0, 0, 37, 0], [0, 96, 0, 0, 0, 97, 98, 0, 33, 0, 34, 0, 0, 0, 99, 0, 96, 0, 0], [0, 0, 0, 0, 100, 101, 101, 32, 33, 0, 0, 0, 0, 35, 100, 0, 0, 0, 0], [0, 0, 0, 0, 100, 101, 101, 32, 33, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0], [0, 0, 0, 102, 103, 104, 105, 106, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 107, 0, 0, 108, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 28, 29, 95, 31, 32, 33, 0, 34, 0, 0, 0, 36, 0, 0, 37, 0], [0, 110, 111, 0, 0, 97, 98, 0, 33, 0, 34, 0, 0, 0, 99, 0, 110, 0, 0], [0, 0, 0, 0, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 0, 0], [0, 0, 0, 0, 5, 7, 7, 8, 9, 0, 10, 0, 0, 0, 13, 0, 0, 16, 0], [0, 0, 0, 115, 116, 117, 118, 8, 9, 0, 10, 0, 0, 119, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 39, 0, 122, 0, 123, 123, 8, 9, 0, 10, 0, 0, 0, 42, 0, 39, 0, 0], [0, 124, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 0, 0], [0, 39, 0, 0, 0, 121, 125, 0, 9, 0, 10, 0, 0, 0, 42, 0, 39, 0, 0], [0, 0, 0, 0, 0, 126, 126, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 46, 47, 48, 49, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 47, 47, 49, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 127, 127, 49, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 128, 127, 127, 49, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 129, 130, 131, 132, 133, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 135, 54, 56, 56, 57, 58, 0, 59, 0, 0, 0, 61, 0, 0, 62, 0], [0, 136, 0, 0, 0, 137, 138, 0, 58, 0, 59, 0, 0, 0, 139, 0, 136, 0, 0], [0, 0, 0, 0, 140, 141, 141, 57, 58, 0, 0, 0, 0, 60, 140, 0, 0, 0, 0], [0, 0, 0, 0, 140, 141, 141, 57, 58, 0, 0, 0, 0, 0, 140, 0, 0, 0, 0], [0, 0, 0, 142, 143, 144, 145, 146, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 147, 0, 0, 148, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 53, 54, 56, 56, 57, 58, 0, 59, 0, 0, 0, 61, 0, 0, 62, 0], [0, 150, 151, 0, 0, 137, 138, 0, 58, 0, 59, 0, 0, 0, 139, 0, 150, 0, 0], [0, 0, 0, 0, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 0, 0], [0, 0, 0, 155, 116, 156, 157, 8, 9, 0, 10, 0, 0, 158, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 75, 3, 4, 5, 159, 160, 8, 161, 0, 162, 0, 11, 12, 163, 0, 75, 16, 0], [0, 0, 0, 0, 0, 40, 164, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 165, 44, 44, 8, 9, 0, 0, 0, 0, 0, 165, 0, 0, 0, 0], [0, 124, 64, 0, 0, 40, 164, 0, 9, 0, 10, 0, 0, 0, 42, 0, 124, 0, 0], [0, 0, 0, 0, 0, 70, 70, 0, 71, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 166, 0, 0, 167, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 19, 74, 74, 22, 23, 0, 24, 0, 0, 0, 26, 0, 0, 27, 0], [0, 0, 0, 0, 79, 80, 80, 22, 23, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0], [0, 0, 0, 169, 170, 171, 172, 22, 23, 0, 24, 0, 0, 173, 174, 0, 0, 27, 0], [0, 0, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 75, 0, 176, 0, 177, 177, 22, 23, 0, 24, 0, 0, 0, 78, 0, 75, 0, 0], [0, 178, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 0, 0], [0, 75, 0, 0, 0, 175, 179, 0, 23, 0, 24, 0, 0, 0, 78, 0, 75, 0, 0], [0, 0, 0, 0, 0, 180, 180, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 82, 83, 84, 85, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 83, 83, 85, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 181, 181, 85, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 182, 181, 181, 85, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 183, 184, 185, 186, 187, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 189, 170, 190, 191, 22, 23, 0, 24, 0, 0, 192, 174, 0, 0, 27, 0], [0, 0, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 76, 193, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 194, 80, 80, 22, 23, 0, 0, 0, 0, 0, 194, 0, 0, 0, 0], [0, 178, 90, 0, 0, 76, 193, 0, 23, 0, 24, 0, 0, 0, 78, 0, 178, 0, 0], [0, 0, 0, 0, 29, 95, 31, 32, 33, 0, 34, 0, 0, 0, 36, 0, 0, 37, 0], [0, 0, 0, 0, 100, 101, 101, 32, 33, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0], [0, 0, 0, 195, 196, 197, 198, 32, 33, 0, 34, 0, 0, 199, 200, 0, 0, 37, 0], [0, 0, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 96, 0, 202, 0, 203, 203, 32, 33, 0, 34, 0, 0, 0, 99, 0, 96, 0, 0], [0, 204, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 0, 0], [0, 96, 0, 0, 0, 201, 205, 0, 33, 0, 34, 0, 0, 0, 99, 0, 96, 0, 0], [0, 0, 0, 0, 0, 206, 206, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 103, 104, 105, 106, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 104, 104, 106, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 207, 207, 106, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 208, 207, 207, 106, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 209, 210, 211, 212, 213, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 107, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 215, 196, 216, 217, 32, 33, 0, 34, 0, 0, 218, 200, 0, 0, 37, 0], [0, 0, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 97, 219, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 220, 101, 101, 32, 33, 0, 0, 0, 0, 0, 220, 0, 0, 0, 0], [0, 204, 111, 0, 0, 97, 219, 0, 33, 0, 34, 0, 0, 0, 99, 0, 204, 0, 0], [0, 0, 0, 221, 116, 222, 222, 8, 9, 0, 10, 0, 0, 0, 120, 0, 0, 16, 0], [0, 223, 0, 0, 0, 40, 224, 0, 9, 0, 10, 0, 0, 0, 42, 0, 223, 0, 0], [0, 0, 0, 0, 225, 44, 44, 8, 9, 0, 0, 0, 0, 119, 225, 0, 0, 0, 0], [0, 0, 0, 115, 116, 117, 222, 8, 9, 0, 10, 0, 0, 119, 120, 0, 0, 16, 0], [0, 0, 0, 115, 116, 222, 222, 8, 9, 0, 10, 0, 0, 0, 120, 0, 0, 16, 0], [0, 226, 64, 0, 0, 40, 224, 0, 9, 0, 10, 0, 0, 0, 42, 0, 226, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 39, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 39, 0, 0], [0, 0, 0, 0, 0, 44, 44, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 227, 0, 228, 229, 0, 9, 0, 10, 0, 0, 230, 0, 0, 0, 0, 0], [0, 39, 0, 122, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 39, 0, 0], [0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 231, 231, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 130, 131, 132, 133, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 131, 131, 133, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 233, 233, 133, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 234, 233, 233, 133, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 235, 236, 237, 238, 239, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 54, 56, 56, 57, 58, 0, 59, 0, 0, 0, 61, 0, 0, 62, 0], [0, 0, 0, 240, 241, 242, 243, 57, 58, 0, 59, 0, 0, 244, 245, 0, 0, 62, 0], [0, 0, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 136, 0, 247, 0, 248, 248, 57, 58, 0, 59, 0, 0, 0, 139, 0, 136, 0, 0], [0, 249, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 0, 0], [0, 136, 0, 0, 0, 246, 250, 0, 58, 0, 59, 0, 0, 0, 139, 0, 136, 0, 0], [0, 0, 0, 0, 0, 251, 251, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 143, 144, 145, 146, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 144, 144, 146, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 252, 252, 146, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 253, 252, 252, 146, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 254, 255, 256, 257, 258, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 147, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 260, 241, 261, 262, 57, 58, 0, 59, 0, 0, 263, 245, 0, 0, 62, 0], [0, 0, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 137, 264, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 265, 141, 141, 57, 58, 0, 0, 0, 0, 0, 265, 0, 0, 0, 0], [0, 249, 151, 0, 0, 137, 264, 0, 58, 0, 59, 0, 0, 0, 139, 0, 249, 0, 0], [0, 0, 0, 221, 116, 222, 222, 8, 9, 0, 10, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 225, 44, 44, 8, 9, 0, 0, 0, 0, 158, 225, 0, 0, 0, 0], [0, 0, 0, 155, 116, 156, 222, 8, 9, 0, 10, 0, 0, 158, 120, 0, 0, 16, 0], [0, 0, 0, 155, 116, 222, 222, 8, 9, 0, 10, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 43, 266, 266, 8, 161, 0, 24, 0, 0, 12, 267, 0, 0, 0, 0], [0, 75, 0, 176, 43, 268, 268, 269, 161, 0, 24, 0, 0, 0, 267, 0, 75, 0, 0], [0, 0, 0, 0, 0, 270, 0, 0, 271, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0], [0, 273, 274, 0, 0, 40, 41, 0, 9, 0, 10, 0, 0, 0, 42, 0, 273, 0, 0], [0, 0, 0, 40, 0, 123, 123, 8, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 121, 275, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 277, 170, 278, 278, 22, 23, 0, 24, 0, 0, 0, 174, 0, 0, 27, 0], [0, 279, 0, 0, 0, 76, 280, 0, 23, 0, 24, 0, 0, 0, 78, 0, 279, 0, 0], [0, 0, 0, 0, 281, 80, 80, 22, 23, 0, 0, 0, 0, 173, 281, 0, 0, 0, 0], [0, 0, 0, 169, 170, 171, 278, 22, 23, 0, 24, 0, 0, 173, 174, 0, 0, 27, 0], [0, 0, 0, 169, 170, 278, 278, 22, 23, 0, 24, 0, 0, 0, 174, 0, 0, 27, 0], [0, 282, 90, 0, 0, 76, 280, 0, 23, 0, 24, 0, 0, 0, 78, 0, 282, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 75, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 75, 0, 0], [0, 0, 0, 0, 0, 80, 80, 22, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 283, 0, 284, 285, 0, 23, 0, 24, 0, 0, 286, 0, 0, 0, 0, 0], [0, 75, 0, 176, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 75, 0, 0], [0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 287, 287, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 184, 185, 186, 187, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 185, 185, 187, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 289, 289, 187, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 290, 289, 289, 187, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 291, 292, 293, 294, 295, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 277, 170, 278, 278, 22, 23, 0, 24, 0, 0, 0, 174, 0, 0, 27, 0], [0, 0, 0, 0, 281, 80, 80, 22, 23, 0, 0, 0, 0, 192, 281, 0, 0, 0, 0], [0, 0, 0, 189, 170, 190, 278, 22, 23, 0, 24, 0, 0, 192, 174, 0, 0, 27, 0], [0, 0, 0, 189, 170, 278, 278, 22, 23, 0, 24, 0, 0, 0, 174, 0, 0, 27, 0], [0, 0, 0, 76, 0, 177, 177, 22, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 175, 296, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 297, 196, 298, 298, 32, 33, 0, 34, 0, 0, 0, 200, 0, 0, 37, 0], [0, 299, 0, 0, 0, 97, 300, 0, 33, 0, 34, 0, 0, 0, 99, 0, 299, 0, 0], [0, 0, 0, 0, 301, 101, 101, 32, 33, 0, 0, 0, 0, 199, 301, 0, 0, 0, 0], [0, 0, 0, 195, 196, 197, 298, 32, 33, 0, 34, 0, 0, 199, 200, 0, 0, 37, 0], [0, 0, 0, 195, 196, 298, 298, 32, 33, 0, 34, 0, 0, 0, 200, 0, 0, 37, 0], [0, 302, 111, 0, 0, 97, 300, 0, 33, 0, 34, 0, 0, 0, 99, 0, 302, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 96, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 96, 0, 0], [0, 0, 0, 0, 0, 101, 101, 32, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 303, 0, 304, 305, 0, 33, 0, 34, 0, 0, 306, 0, 0, 0, 0, 0], [0, 96, 0, 202, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 96, 0, 0], [0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 307, 307, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 210, 211, 212, 213, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 211, 211, 213, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 309, 309, 213, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 310, 309, 309, 213, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 311, 312, 313, 314, 315, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 297, 196, 298, 298, 32, 33, 0, 34, 0, 0, 0, 200, 0, 0, 37, 0], [0, 0, 0, 0, 301, 101, 101, 32, 33, 0, 0, 0, 0, 218, 301, 0, 0, 0, 0], [0, 0, 0, 215, 196, 216, 298, 32, 33, 0, 34, 0, 0, 218, 200, 0, 0, 37, 0], [0, 0, 0, 215, 196, 298, 298, 32, 33, 0, 34, 0, 0, 0, 200, 0, 0, 37, 0], [0, 0, 0, 97, 0, 203, 203, 32, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 201, 316, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 116, 222, 222, 8, 9, 0, 10, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 225, 44, 44, 8, 9, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0], [0, 0, 0, 317, 318, 319, 320, 8, 9, 0, 10, 0, 0, 321, 322, 0, 0, 16, 0], [0, 223, 0, 323, 0, 123, 123, 8, 9, 0, 10, 0, 0, 0, 42, 0, 223, 0, 0], [0, 223, 0, 0, 0, 121, 324, 0, 9, 0, 10, 0, 0, 0, 42, 0, 223, 0, 0], [0, 0, 0, 325, 318, 326, 327, 8, 9, 0, 10, 0, 0, 328, 322, 0, 0, 16, 0], [0, 0, 0, 64, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 230, 0, 0, 0, 0, 0], [0, 0, 0, 227, 0, 228, 121, 0, 9, 0, 10, 0, 0, 230, 0, 0, 0, 0, 0], [0, 0, 0, 227, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 0], [0, 0, 0, 0, 0, 329, 329, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 236, 237, 238, 239, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 237, 237, 239, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 331, 331, 239, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 332, 331, 331, 239, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 333, 40, 121, 334, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 335, 241, 336, 336, 57, 58, 0, 59, 0, 0, 0, 245, 0, 0, 62, 0], [0, 337, 0, 0, 0, 137, 338, 0, 58, 0, 59, 0, 0, 0, 139, 0, 337, 0, 0], [0, 0, 0, 0, 339, 141, 141, 57, 58, 0, 0, 0, 0, 244, 339, 0, 0, 0, 0], [0, 0, 0, 240, 241, 242, 336, 57, 58, 0, 59, 0, 0, 244, 245, 0, 0, 62, 0], [0, 0, 0, 240, 241, 336, 336, 57, 58, 0, 59, 0, 0, 0, 245, 0, 0, 62, 0], [0, 340, 151, 0, 0, 137, 338, 0, 58, 0, 59, 0, 0, 0, 139, 0, 340, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 136, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 136, 0, 0], [0, 0, 0, 0, 0, 141, 141, 57, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 341, 0, 342, 343, 0, 58, 0, 59, 0, 0, 344, 0, 0, 0, 0, 0], [0, 136, 0, 247, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 136, 0, 0], [0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 345, 345, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 255, 256, 257, 258, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 256, 256, 258, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 347, 347, 258, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 348, 347, 347, 258, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 349, 350, 351, 352, 353, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 335, 241, 336, 336, 57, 58, 0, 59, 0, 0, 0, 245, 0, 0, 62, 0], [0, 0, 0, 0, 339, 141, 141, 57, 58, 0, 0, 0, 0, 263, 339, 0, 0, 0, 0], [0, 0, 0, 260, 241, 261, 336, 57, 58, 0, 59, 0, 0, 263, 245, 0, 0, 62, 0], [0, 0, 0, 260, 241, 336, 336, 57, 58, 0, 59, 0, 0, 0, 245, 0, 0, 62, 0], [0, 0, 0, 137, 0, 248, 248, 57, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 246, 354, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 126, 126, 8, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 355, 90, 0, 0, 121, 125, 0, 9, 0, 10, 0, 0, 0, 42, 0, 355, 0, 0], [0, 0, 0, 0, 0, 356, 356, 269, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 357, 358, 359, 360, 361, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 270, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 364, 116, 365, 366, 8, 161, 0, 162, 0, 0, 367, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 368, 368, 0, 161, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 40, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 170, 278, 278, 22, 23, 0, 24, 0, 0, 0, 174, 0, 0, 27, 0], [0, 0, 0, 0, 281, 80, 80, 22, 23, 0, 0, 0, 0, 0, 281, 0, 0, 0, 0], [0, 0, 0, 369, 370, 371, 372, 22, 23, 0, 24, 0, 0, 373, 374, 0, 0, 27, 0], [0, 279, 0, 375, 0, 177, 177, 22, 23, 0, 24, 0, 0, 0, 78, 0, 279, 0, 0], [0, 279, 0, 0, 0, 175, 376, 0, 23, 0, 24, 0, 0, 0, 78, 0, 279, 0, 0], [0, 0, 0, 377, 370, 378, 379, 22, 23, 0, 24, 0, 0, 380, 374, 0, 0, 27, 0], [0, 0, 0, 90, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 286, 0, 0, 0, 0, 0], [0, 0, 0, 283, 0, 284, 175, 0, 23, 0, 24, 0, 0, 286, 0, 0, 0, 0, 0], [0, 0, 0, 283, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 0, 0], [0, 0, 0, 0, 0, 381, 381, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 292, 293, 294, 295, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 293, 293, 295, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 0, 383, 383, 295, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 384, 383, 383, 295, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 385, 76, 175, 386, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 76, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 196, 298, 298, 32, 33, 0, 34, 0, 0, 0, 200, 0, 0, 37, 0], [0, 0, 0, 0, 301, 101, 101, 32, 33, 0, 0, 0, 0, 0, 301, 0, 0, 0, 0], [0, 0, 0, 387, 388, 389, 390, 32, 33, 0, 34, 0, 0, 391, 392, 0, 0, 37, 0], [0, 299, 0, 393, 0, 203, 203, 32, 33, 0, 34, 0, 0, 0, 99, 0, 299, 0, 0], [0, 299, 0, 0, 0, 201, 394, 0, 33, 0, 34, 0, 0, 0, 99, 0, 299, 0, 0], [0, 0, 0, 395, 388, 396, 397, 32, 33, 0, 34, 0, 0, 398, 392, 0, 0, 37, 0], [0, 0, 0, 111, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 306, 0, 0, 0, 0, 0], [0, 0, 0, 303, 0, 304, 201, 0, 33, 0, 34, 0, 0, 306, 0, 0, 0, 0, 0], [0, 0, 0, 303, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0], [0, 0, 0, 0, 0, 399, 399, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 312, 313, 314, 315, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 313, 313, 315, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 0, 401, 401, 315, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 402, 401, 401, 315, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 403, 97, 201, 404, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 97, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 405, 318, 406, 406, 8, 9, 0, 10, 0, 0, 0, 322, 0, 0, 16, 0], [0, 407, 0, 0, 0, 40, 408, 0, 9, 0, 10, 0, 0, 0, 42, 0, 407, 0, 0], [0, 0, 0, 0, 409, 44, 44, 8, 9, 0, 0, 0, 0, 321, 409, 0, 0, 0, 0], [0, 0, 0, 317, 318, 319, 406, 8, 9, 0, 10, 0, 0, 321, 322, 0, 0, 16, 0], [0, 0, 0, 317, 318, 406, 406, 8, 9, 0, 10, 0, 0, 0, 322, 0, 0, 16, 0], [0, 410, 64, 0, 0, 40, 408, 0, 9, 0, 10, 0, 0, 0, 42, 0, 410, 0, 0], [0, 223, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 223, 0, 0], [0, 223, 0, 323, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 223, 0, 0], [0, 0, 0, 405, 318, 406, 406, 8, 9, 0, 10, 0, 0, 0, 322, 0, 0, 16, 0], [0, 0, 0, 0, 409, 44, 44, 8, 9, 0, 0, 0, 0, 328, 409, 0, 0, 0, 0], [0, 0, 0, 325, 318, 326, 406, 8, 9, 0, 10, 0, 0, 328, 322, 0, 0, 16, 0], [0, 0, 0, 325, 318, 406, 406, 8, 9, 0, 10, 0, 0, 0, 322, 0, 0, 16, 0], [0, 0, 0, 0, 0, 0, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 0, 0], [0, 0, 0, 0, 0, 411, 411, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 40, 121, 334, 0, 9, 0, 10, 0, 0, 0, 42, 0, 0, 0, 0], [0, 0, 0, 0, 413, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 241, 336, 336, 57, 58, 0, 59, 0, 0, 0, 245, 0, 0, 62, 0], [0, 0, 0, 0, 339, 141, 141, 57, 58, 0, 0, 0, 0, 0, 339, 0, 0, 0, 0], [0, 0, 0, 414, 415, 416, 417, 57, 58, 0, 59, 0, 0, 418, 419, 0, 0, 62, 0], [0, 337, 0, 420, 0, 248, 248, 57, 58, 0, 59, 0, 0, 0, 139, 0, 337, 0, 0], [0, 337, 0, 0, 0, 246, 421, 0, 58, 0, 59, 0, 0, 0, 139, 0, 337, 0, 0], [0, 0, 0, 422, 415, 423, 424, 57, 58, 0, 59, 0, 0, 425, 419, 0, 0, 62, 0], [0, 0, 0, 151, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 344, 0, 0, 0, 0, 0], [0, 0, 0, 341, 0, 342, 246, 0, 58, 0, 59, 0, 0, 344, 0, 0, 0, 0, 0], [0, 0, 0, 341, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 0, 0], [0, 0, 0, 0, 0, 426, 426, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 350, 351, 352, 353, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 351, 351, 353, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 0, 428, 428, 353, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 429, 428, 428, 353, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 430, 137, 246, 431, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 137, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 432, 116, 433, 434, 8, 161, 0, 162, 0, 0, 435, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 180, 180, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 358, 359, 360, 361, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 359, 359, 361, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 436, 436, 361, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 437, 436, 436, 361, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 438, 439, 440, 441, 442, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 443, 274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 444, 116, 445, 445, 8, 161, 0, 162, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 225, 44, 44, 8, 161, 0, 0, 0, 0, 367, 225, 0, 0, 0, 0], [0, 0, 0, 364, 116, 365, 445, 8, 161, 0, 162, 0, 0, 367, 120, 0, 0, 16, 0], [0, 0, 0, 364, 116, 445, 445, 8, 161, 0, 162, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 0, 0, 0, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 446, 370, 447, 447, 22, 23, 0, 24, 0, 0, 0, 374, 0, 0, 27, 0], [0, 448, 0, 0, 0, 76, 449, 0, 23, 0, 24, 0, 0, 0, 78, 0, 448, 0, 0], [0, 0, 0, 0, 450, 80, 80, 22, 23, 0, 0, 0, 0, 373, 450, 0, 0, 0, 0], [0, 0, 0, 369, 370, 371, 447, 22, 23, 0, 24, 0, 0, 373, 374, 0, 0, 27, 0], [0, 0, 0, 369, 370, 447, 447, 22, 23, 0, 24, 0, 0, 0, 374, 0, 0, 27, 0], [0, 451, 90, 0, 0, 76, 449, 0, 23, 0, 24, 0, 0, 0, 78, 0, 451, 0, 0], [0, 279, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 279, 0, 0], [0, 279, 0, 375, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 279, 0, 0], [0, 0, 0, 446, 370, 447, 447, 22, 23, 0, 24, 0, 0, 0, 374, 0, 0, 27, 0], [0, 0, 0, 0, 450, 80, 80, 22, 23, 0, 0, 0, 0, 380, 450, 0, 0, 0, 0], [0, 0, 0, 377, 370, 378, 447, 22, 23, 0, 24, 0, 0, 380, 374, 0, 0, 27, 0], [0, 0, 0, 377, 370, 447, 447, 22, 23, 0, 24, 0, 0, 0, 374, 0, 0, 27, 0], [0, 0, 0, 0, 0, 0, 0, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 0, 0], [0, 0, 0, 0, 0, 452, 452, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 76, 175, 386, 0, 23, 0, 24, 0, 0, 0, 78, 0, 0, 0, 0], [0, 0, 0, 0, 454, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 455, 388, 456, 456, 32, 33, 0, 34, 0, 0, 0, 392, 0, 0, 37, 0], [0, 457, 0, 0, 0, 97, 458, 0, 33, 0, 34, 0, 0, 0, 99, 0, 457, 0, 0], [0, 0, 0, 0, 459, 101, 101, 32, 33, 0, 0, 0, 0, 391, 459, 0, 0, 0, 0], [0, 0, 0, 387, 388, 389, 456, 32, 33, 0, 34, 0, 0, 391, 392, 0, 0, 37, 0], [0, 0, 0, 387, 388, 456, 456, 32, 33, 0, 34, 0, 0, 0, 392, 0, 0, 37, 0], [0, 460, 111, 0, 0, 97, 458, 0, 33, 0, 34, 0, 0, 0, 99, 0, 460, 0, 0], [0, 299, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 299, 0, 0], [0, 299, 0, 393, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 299, 0, 0], [0, 0, 0, 455, 388, 456, 456, 32, 33, 0, 34, 0, 0, 0, 392, 0, 0, 37, 0], [0, 0, 0, 0, 459, 101, 101, 32, 33, 0, 0, 0, 0, 398, 459, 0, 0, 0, 0], [0, 0, 0, 395, 388, 396, 456, 32, 33, 0, 34, 0, 0, 398, 392, 0, 0, 37, 0], [0, 0, 0, 395, 388, 456, 456, 32, 33, 0, 34, 0, 0, 0, 392, 0, 0, 37, 0], [0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0], [0, 0, 0, 0, 0, 461, 461, 315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 97, 201, 404, 0, 33, 0, 34, 0, 0, 0, 99, 0, 0, 0, 0], [0, 0, 0, 0, 463, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 318, 406, 406, 8, 9, 0, 10, 0, 0, 0, 322, 0, 0, 16, 0], [0, 0, 0, 0, 409, 44, 44, 8, 9, 0, 0, 0, 0, 0, 409, 0, 0, 0, 0], [0, 0, 0, 464, 465, 466, 467, 8, 9, 0, 10, 0, 0, 468, 469, 0, 0, 16, 0], [0, 407, 0, 470, 0, 123, 123, 8, 9, 0, 10, 0, 0, 0, 42, 0, 407, 0, 0], [0, 407, 0, 0, 0, 121, 471, 0, 9, 0, 10, 0, 0, 0, 42, 0, 407, 0, 0], [0, 0, 0, 472, 465, 473, 474, 8, 9, 0, 10, 0, 0, 475, 469, 0, 0, 16, 0], [0, 0, 0, 0, 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 0, 0], [0, 0, 0, 0, 0, 0, 476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 477, 415, 478, 478, 57, 58, 0, 59, 0, 0, 0, 419, 0, 0, 62, 0], [0, 479, 0, 0, 0, 137, 480, 0, 58, 0, 59, 0, 0, 0, 139, 0, 479, 0, 0], [0, 0, 0, 0, 481, 141, 141, 57, 58, 0, 0, 0, 0, 418, 481, 0, 0, 0, 0], [0, 0, 0, 414, 415, 416, 478, 57, 58, 0, 59, 0, 0, 418, 419, 0, 0, 62, 0], [0, 0, 0, 414, 415, 478, 478, 57, 58, 0, 59, 0, 0, 0, 419, 0, 0, 62, 0], [0, 482, 151, 0, 0, 137, 480, 0, 58, 0, 59, 0, 0, 0, 139, 0, 482, 0, 0], [0, 337, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 337, 0, 0], [0, 337, 0, 420, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 337, 0, 0], [0, 0, 0, 477, 415, 478, 478, 57, 58, 0, 59, 0, 0, 0, 419, 0, 0, 62, 0], [0, 0, 0, 0, 481, 141, 141, 57, 58, 0, 0, 0, 0, 425, 481, 0, 0, 0, 0], [0, 0, 0, 422, 415, 423, 478, 57, 58, 0, 59, 0, 0, 425, 419, 0, 0, 62, 0], [0, 0, 0, 422, 415, 478, 478, 57, 58, 0, 59, 0, 0, 0, 419, 0, 0, 62, 0], [0, 0, 0, 0, 0, 0, 0, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 0, 0], [0, 0, 0, 0, 0, 483, 483, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 137, 246, 431, 0, 58, 0, 59, 0, 0, 0, 139, 0, 0, 0, 0], [0, 0, 0, 0, 485, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 444, 116, 445, 445, 8, 161, 0, 162, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 225, 44, 44, 8, 161, 0, 0, 0, 0, 435, 225, 0, 0, 0, 0], [0, 0, 0, 432, 116, 433, 445, 8, 161, 0, 162, 0, 0, 435, 120, 0, 0, 16, 0], [0, 0, 0, 432, 116, 445, 445, 8, 161, 0, 162, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 0, 486, 486, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 439, 440, 441, 442, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 440, 440, 442, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 488, 488, 442, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 489, 488, 488, 442, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 490, 491, 492, 493, 494, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 495, 0, 496, 497, 0, 161, 0, 162, 0, 0, 498, 0, 0, 0, 0, 0], [0, 0, 0, 0, 116, 445, 445, 8, 161, 0, 162, 0, 0, 0, 120, 0, 0, 16, 0], [0, 0, 0, 0, 225, 44, 44, 8, 161, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0], [0, 0, 0, 0, 370, 447, 447, 22, 23, 0, 24, 0, 0, 0, 374, 0, 0, 27, 0], [0, 0, 0, 0, 450, 80, 80, 22, 23, 0, 0, 0, 0, 0, 450, 0, 0, 0, 0], [0, 0, 0, 499, 500, 501, 502, 22, 23, 0, 24, 0, 0, 503, 504, 0, 0, 27, 0], [0, 448, 0, 505, 0, 177, 177, 22, 23, 0, 24, 0, 0, 0, 78, 0, 448, 0, 0], [0, 448, 0, 0, 0, 175, 506, 0, 23, 0, 24, 0, 0, 0, 78, 0, 448, 0, 0], [0, 0, 0, 507, 500, 508, 509, 22, 23, 0, 24, 0, 0, 510, 504, 0, 0, 27, 0], [0, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 0], [0, 0, 0, 0, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 388, 456, 456, 32, 33, 0, 34, 0, 0, 0, 392, 0, 0, 37, 0], [0, 0, 0, 0, 459, 101, 101, 32, 33, 0, 0, 0, 0, 0, 459, 0, 0, 0, 0], [0, 0, 0, 512, 513, 514, 515, 32, 33, 0, 34, 0, 0, 516, 517, 0, 0, 37, 0], [0, 457, 0, 518, 0, 203, 203, 32, 33, 0, 34, 0, 0, 0, 99, 0, 457, 0, 0], [0, 457, 0, 0, 0, 201, 519, 0, 33, 0, 34, 0, 0, 0, 99, 0, 457, 0, 0], [0, 0, 0, 520, 513, 521, 522, 32, 33, 0, 34, 0, 0, 523, 517, 0, 0, 37, 0], [0, 0, 0, 0, 0, 0, 0, 315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312, 0, 0], [0, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 525, 465, 526, 526, 8, 9, 0, 10, 0, 0, 0, 469, 0, 0, 16, 0], [0, 527, 0, 0, 0, 40, 528, 0, 9, 0, 10, 0, 0, 0, 42, 0, 527, 0, 0], [0, 0, 0, 0, 529, 44, 44, 8, 9, 0, 0, 0, 0, 468, 529, 0, 0, 0, 0], [0, 0, 0, 464, 465, 466, 526, 8, 9, 0, 10, 0, 0, 468, 469, 0, 0, 16, 0], [0, 0, 0, 464, 465, 526, 526, 8, 9, 0, 10, 0, 0, 0, 469, 0, 0, 16, 0], [0, 530, 64, 0, 0, 40, 528, 0, 9, 0, 10, 0, 0, 0, 42, 0, 530, 0, 0], [0, 407, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 407, 0, 0], [0, 407, 0, 470, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 407, 0, 0], [0, 0, 0, 525, 465, 526, 526, 8, 9, 0, 10, 0, 0, 0, 469, 0, 0, 16, 0], [0, 0, 0, 0, 529, 44, 44, 8, 9, 0, 0, 0, 0, 475, 529, 0, 0, 0, 0], [0, 0, 0, 472, 465, 473, 526, 8, 9, 0, 10, 0, 0, 475, 469, 0, 0, 16, 0], [0, 0, 0, 472, 465, 526, 526, 8, 9, 0, 10, 0, 0, 0, 469, 0, 0, 16, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0], [0, 0, 0, 0, 415, 478, 478, 57, 58, 0, 59, 0, 0, 0, 419, 0, 0, 62, 0], [0, 0, 0, 0, 481, 141, 141, 57, 58, 0, 0, 0, 0, 0, 481, 0, 0, 0, 0], [0, 0, 0, 531, 532, 533, 534, 57, 58, 0, 59, 0, 0, 535, 536, 0, 0, 62, 0], [0, 479, 0, 537, 0, 248, 248, 57, 58, 0, 59, 0, 0, 0, 139, 0, 479, 0, 0], [0, 479, 0, 0, 0, 246, 538, 0, 58, 0, 59, 0, 0, 0, 139, 0, 479, 0, 0], [0, 0, 0, 539, 532, 540, 541, 57, 58, 0, 59, 0, 0, 542, 536, 0, 0, 62, 0], [0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, 0], [0, 0, 0, 0, 0, 0, 543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 0, 0], [0, 0, 0, 0, 0, 544, 544, 442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 491, 492, 493, 494, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 492, 492, 494, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 546, 546, 494, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 547, 546, 546, 494, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 548, 549, 368, 550, 0, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 274, 0, 368, 368, 0, 161, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 161, 0, 0, 0, 0, 498, 0, 0, 0, 0, 0], [0, 0, 0, 495, 0, 496, 368, 0, 161, 0, 162, 0, 0, 498, 0, 0, 0, 0, 0], [0, 0, 0, 495, 0, 368, 368, 0, 161, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 551, 500, 552, 552, 22, 23, 0, 24, 0, 0, 0, 504, 0, 0, 27, 0], [0, 553, 0, 0, 0, 76, 554, 0, 23, 0, 24, 0, 0, 0, 78, 0, 553, 0, 0], [0, 0, 0, 0, 555, 80, 80, 22, 23, 0, 0, 0, 0, 503, 555, 0, 0, 0, 0], [0, 0, 0, 499, 500, 501, 552, 22, 23, 0, 24, 0, 0, 503, 504, 0, 0, 27, 0], [0, 0, 0, 499, 500, 552, 552, 22, 23, 0, 24, 0, 0, 0, 504, 0, 0, 27, 0], [0, 556, 90, 0, 0, 76, 554, 0, 23, 0, 24, 0, 0, 0, 78, 0, 556, 0, 0], [0, 448, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 448, 0, 0], [0, 448, 0, 505, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 448, 0, 0], [0, 0, 0, 551, 500, 552, 552, 22, 23, 0, 24, 0, 0, 0, 504, 0, 0, 27, 0], [0, 0, 0, 0, 555, 80, 80, 22, 23, 0, 0, 0, 0, 510, 555, 0, 0, 0, 0], [0, 0, 0, 507, 500, 508, 552, 22, 23, 0, 24, 0, 0, 510, 504, 0, 0, 27, 0], [0, 0, 0, 507, 500, 552, 552, 22, 23, 0, 24, 0, 0, 0, 504, 0, 0, 27, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0], [0, 0, 0, 557, 513, 558, 558, 32, 33, 0, 34, 0, 0, 0, 517, 0, 0, 37, 0], [0, 559, 0, 0, 0, 97, 560, 0, 33, 0, 34, 0, 0, 0, 99, 0, 559, 0, 0], [0, 0, 0, 0, 561, 101, 101, 32, 33, 0, 0, 0, 0, 516, 561, 0, 0, 0, 0], [0, 0, 0, 512, 513, 514, 558, 32, 33, 0, 34, 0, 0, 516, 517, 0, 0, 37, 0], [0, 0, 0, 512, 513, 558, 558, 32, 33, 0, 34, 0, 0, 0, 517, 0, 0, 37, 0], [0, 562, 111, 0, 0, 97, 560, 0, 33, 0, 34, 0, 0, 0, 99, 0, 562, 0, 0], [0, 457, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 457, 0, 0], [0, 457, 0, 518, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 457, 0, 0], [0, 0, 0, 557, 513, 558, 558, 32, 33, 0, 34, 0, 0, 0, 517, 0, 0, 37, 0], [0, 0, 0, 0, 561, 101, 101, 32, 33, 0, 0, 0, 0, 523, 561, 0, 0, 0, 0], [0, 0, 0, 520, 513, 521, 558, 32, 33, 0, 34, 0, 0, 523, 517, 0, 0, 37, 0], [0, 0, 0, 520, 513, 558, 558, 32, 33, 0, 34, 0, 0, 0, 517, 0, 0, 37, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 0, 0], [0, 0, 0, 0, 465, 526, 526, 8, 9, 0, 10, 0, 0, 0, 469, 0, 0, 16, 0], [0, 0, 0, 0, 529, 44, 44, 8, 9, 0, 0, 0, 0, 0, 529, 0, 0, 0, 0], [0, 0, 0, 563, 66, 564, 565, 8, 9, 0, 10, 0, 0, 566, 68, 0, 0, 16, 0], [0, 527, 0, 567, 0, 123, 123, 8, 9, 0, 10, 0, 0, 0, 42, 0, 527, 0, 0], [0, 527, 0, 0, 0, 121, 568, 0, 9, 0, 10, 0, 0, 0, 42, 0, 527, 0, 0], [0, 0, 0, 569, 66, 570, 571, 8, 9, 0, 10, 0, 0, 572, 68, 0, 0, 16, 0], [0, 0, 0, 573, 532, 574, 574, 57, 58, 0, 59, 0, 0, 0, 536, 0, 0, 62, 0], [0, 575, 0, 0, 0, 137, 576, 0, 58, 0, 59, 0, 0, 0, 139, 0, 575, 0, 0], [0, 0, 0, 0, 577, 141, 141, 57, 58, 0, 0, 0, 0, 535, 577, 0, 0, 0, 0], [0, 0, 0, 531, 532, 533, 574, 57, 58, 0, 59, 0, 0, 535, 536, 0, 0, 62, 0], [0, 0, 0, 531, 532, 574, 574, 57, 58, 0, 59, 0, 0, 0, 536, 0, 0, 62, 0], [0, 578, 151, 0, 0, 137, 576, 0, 58, 0, 59, 0, 0, 0, 139, 0, 578, 0, 0], [0, 479, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 479, 0, 0], [0, 479, 0, 537, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 479, 0, 0], [0, 0, 0, 573, 532, 574, 574, 57, 58, 0, 59, 0, 0, 0, 536, 0, 0, 62, 0], [0, 0, 0, 0, 577, 141, 141, 57, 58, 0, 0, 0, 0, 542, 577, 0, 0, 0, 0], [0, 0, 0, 539, 532, 540, 574, 57, 58, 0, 59, 0, 0, 542, 536, 0, 0, 62, 0], [0, 0, 0, 539, 532, 574, 574, 57, 58, 0, 59, 0, 0, 0, 536, 0, 0, 62, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 0, 0], [0, 0, 0, 0, 0, 0, 0, 442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 439, 0, 0], [0, 0, 0, 0, 0, 579, 579, 494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 549, 368, 550, 0, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 0, 368, 368, 0, 161, 0, 162, 0, 0, 0, 362, 0, 0, 0, 0], [0, 0, 0, 0, 581, 0, 0, 0, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 500, 552, 552, 22, 23, 0, 24, 0, 0, 0, 504, 0, 0, 27, 0], [0, 0, 0, 0, 555, 80, 80, 22, 23, 0, 0, 0, 0, 0, 555, 0, 0, 0, 0], [0, 0, 0, 582, 91, 583, 584, 22, 23, 0, 24, 0, 0, 585, 93, 0, 0, 27, 0], [0, 553, 0, 586, 0, 177, 177, 22, 23, 0, 24, 0, 0, 0, 78, 0, 553, 0, 0], [0, 553, 0, 0, 0, 175, 587, 0, 23, 0, 24, 0, 0, 0, 78, 0, 553, 0, 0], [0, 0, 0, 588, 91, 589, 590, 22, 23, 0, 24, 0, 0, 591, 93, 0, 0, 27, 0], [0, 0, 0, 0, 513, 558, 558, 32, 33, 0, 34, 0, 0, 0, 517, 0, 0, 37, 0], [0, 0, 0, 0, 561, 101, 101, 32, 33, 0, 0, 0, 0, 0, 561, 0, 0, 0, 0], [0, 0, 0, 592, 112, 593, 594, 32, 33, 0, 34, 0, 0, 595, 114, 0, 0, 37, 0], [0, 559, 0, 596, 0, 203, 203, 32, 33, 0, 34, 0, 0, 0, 99, 0, 559, 0, 0], [0, 559, 0, 0, 0, 201, 597, 0, 33, 0, 34, 0, 0, 0, 99, 0, 559, 0, 0], [0, 0, 0, 598, 112, 599, 600, 32, 33, 0, 34, 0, 0, 601, 114, 0, 0, 37, 0], [0, 0, 0, 602, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 16, 0], [0, 0, 0, 0, 165, 44, 44, 8, 9, 0, 0, 0, 0, 566, 165, 0, 0, 0, 0], [0, 0, 0, 563, 66, 564, 67, 8, 9, 0, 10, 0, 0, 566, 68, 0, 0, 16, 0], [0, 0, 0, 563, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 16, 0], [0, 527, 0, 0, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 527, 0, 0], [0, 527, 0, 567, 0, 121, 121, 0, 9, 0, 10, 0, 0, 0, 42, 0, 527, 0, 0], [0, 0, 0, 602, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 16, 0], [0, 0, 0, 0, 165, 44, 44, 8, 9, 0, 0, 0, 0, 572, 165, 0, 0, 0, 0], [0, 0, 0, 569, 66, 570, 67, 8, 9, 0, 10, 0, 0, 572, 68, 0, 0, 16, 0], [0, 0, 0, 569, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 16, 0], [0, 0, 0, 0, 532, 574, 574, 57, 58, 0, 59, 0, 0, 0, 536, 0, 0, 62, 0], [0, 0, 0, 0, 577, 141, 141, 57, 58, 0, 0, 0, 0, 0, 577, 0, 0, 0, 0], [0, 0, 0, 603, 152, 604, 605, 57, 58, 0, 59, 0, 0, 606, 154, 0, 0, 62, 0], [0, 575, 0, 607, 0, 248, 248, 57, 58, 0, 59, 0, 0, 0, 139, 0, 575, 0, 0], [0, 575, 0, 0, 0, 246, 608, 0, 58, 0, 59, 0, 0, 0, 139, 0, 575, 0, 0], [0, 0, 0, 609, 152, 610, 611, 57, 58, 0, 59, 0, 0, 612, 154, 0, 0, 62, 0], [0, 0, 0, 0, 0, 0, 0, 494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491, 0, 0], [0, 0, 0, 0, 0, 0, 613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 614, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 27, 0], [0, 0, 0, 0, 194, 80, 80, 22, 23, 0, 0, 0, 0, 585, 194, 0, 0, 0, 0], [0, 0, 0, 582, 91, 583, 92, 22, 23, 0, 24, 0, 0, 585, 93, 0, 0, 27, 0], [0, 0, 0, 582, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 27, 0], [0, 553, 0, 0, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 553, 0, 0], [0, 553, 0, 586, 0, 175, 175, 0, 23, 0, 24, 0, 0, 0, 78, 0, 553, 0, 0], [0, 0, 0, 614, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 27, 0], [0, 0, 0, 0, 194, 80, 80, 22, 23, 0, 0, 0, 0, 591, 194, 0, 0, 0, 0], [0, 0, 0, 588, 91, 589, 92, 22, 23, 0, 24, 0, 0, 591, 93, 0, 0, 27, 0], [0, 0, 0, 588, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 27, 0], [0, 0, 0, 615, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 37, 0], [0, 0, 0, 0, 220, 101, 101, 32, 33, 0, 0, 0, 0, 595, 220, 0, 0, 0, 0], [0, 0, 0, 592, 112, 593, 113, 32, 33, 0, 34, 0, 0, 595, 114, 0, 0, 37, 0], [0, 0, 0, 592, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 37, 0], [0, 559, 0, 0, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 559, 0, 0], [0, 559, 0, 596, 0, 201, 201, 0, 33, 0, 34, 0, 0, 0, 99, 0, 559, 0, 0], [0, 0, 0, 615, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 37, 0], [0, 0, 0, 0, 220, 101, 101, 32, 33, 0, 0, 0, 0, 601, 220, 0, 0, 0, 0], [0, 0, 0, 598, 112, 599, 113, 32, 33, 0, 34, 0, 0, 601, 114, 0, 0, 37, 0], [0, 0, 0, 598, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 37, 0], [0, 0, 0, 0, 66, 67, 67, 8, 9, 0, 10, 0, 0, 0, 68, 0, 0, 16, 0], [0, 0, 0, 616, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 62, 0], [0, 0, 0, 0, 265, 141, 141, 57, 58, 0, 0, 0, 0, 606, 265, 0, 0, 0, 0], [0, 0, 0, 603, 152, 604, 153, 57, 58, 0, 59, 0, 0, 606, 154, 0, 0, 62, 0], [0, 0, 0, 603, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 62, 0], [0, 575, 0, 0, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 575, 0, 0], [0, 575, 0, 607, 0, 246, 246, 0, 58, 0, 59, 0, 0, 0, 139, 0, 575, 0, 0], [0, 0, 0, 616, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 62, 0], [0, 0, 0, 0, 265, 141, 141, 57, 58, 0, 0, 0, 0, 612, 265, 0, 0, 0, 0], [0, 0, 0, 609, 152, 610, 153, 57, 58, 0, 59, 0, 0, 612, 154, 0, 0, 62, 0], [0, 0, 0, 609, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 62, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 549, 0, 0], [0, 0, 0, 0, 91, 92, 92, 22, 23, 0, 24, 0, 0, 0, 93, 0, 0, 27, 0], [0, 0, 0, 0, 112, 113, 113, 32, 33, 0, 34, 0, 0, 0, 114, 0, 0, 37, 0], [0, 0, 0, 0, 152, 153, 153, 57, 58, 0, 59, 0, 0, 0, 154, 0, 0, 62, 0]]; -var accepting = [false, true, true, true, true, true, false, false, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, false, true, false, true, true, false, false, true, true, true, true, true, true, false, false, true, true, true, true, true, true, true, true, true, true, false, true, true, false, true, true, true, false, true, true, true, false, true, false, true, true, false, false, true, true, true, true, true, true, true, false, true, true, false, true, true, true, false, true, false, true, true, false, false, true, true, true, true, true, true, true, false, true, true, true, false, true, true, true, false, true, false, true, true, false, false, false, true, true, false, false, true, true, true, true, true, true, false, true, false, true, true, false, false, true, true, true, true, true, true, true, false, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, false, true, false, true, true, false, false, false, true, true, false, false, true, true, true, false, true, true, true, true, true, true, false, true, true, true, false, true, false, true, true, false, false, false, true, true, false, false, true, true, true, false, true, true, true, true, true, false, true, true, true, true, true, false, true, true, false, false, false, false, true, true, false, false, true, true, true, false, true, true, true, false, true, false, true, true, false, false, false, true, true, false, false, true, true, true, false, true, true, true, true, false, true, false, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, false, true, true, false, false, false, false, true, true, false, false, true, true, true, false, true, true, true, true, true, false, true, true, false, false, false, false, true, true, false, false, true, true, true, true, false, true, true, true, true, true, true, false, true, true, false, false, false, false, true, false, true, false, true, true, true, true, true, false, true, true, false, false, false, false, true, true, false, false, true, true, true, false, true, true, false, false, true, false, true, true, false, true, true, false, true, true, false, true, true, true, true, true, true, false, true, true, false, false, false, false, true, false, true, true, false, true, true, true, true, true, true, false, true, true, false, false, false, false, true, false, true, false, true, true, true, true, false, false, false, true, true, false, true, true, true, true, true, true, false, true, true, false, false, false, false, true, false, true, false, true, true, false, false, true, true, false, false, true, true, true, false, true, false, true, true, true, true, false, false, false, true, false, true, true, true, true, false, false, false, true, true, false, true, true, true, true, true, true, false, true, true, false, true, false, true, true, true, true, false, false, false, false, false, false, false, true, true, false, false, true, true, false, true, true, true, true, false, true, true, true, true, true, true, false, true, true, false, true, true, false, true, true, true, true, true, true, false, true, true, false, true, false, true, true, true, true, true, true, false, true, true, true, true, true, true, false, true, true, false, false, false, false, false, true, true, false, true, false, true, true, true, true, true, false, true, true, true, true, true, false, true, true, true, true, true, false, true, true, true, false, true, true, true, true, false, false, false, true, false, true, true, true, true, true, false, true, true, true, false, true, true, true, true, true, false, true, true, true, true, false, true, true, true, true, true, false, true, true, false, true, true, true]; -var tags = [[], ["broken_cluster"], ["consonant_syllable"], ["vowel_syllable"], ["broken_cluster"], ["broken_cluster"], [], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["standalone_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["consonant_syllable"], ["broken_cluster"], ["symbol_cluster"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], [], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["broken_cluster"], ["broken_cluster"], ["consonant_syllable", "broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["symbol_cluster"], [], ["symbol_cluster"], ["symbol_cluster"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], [], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], [], [], [], ["broken_cluster"], ["broken_cluster"], [], [], ["broken_cluster"], ["broken_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["symbol_cluster"], ["symbol_cluster"], ["symbol_cluster"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], [], [], [], ["consonant_syllable"], ["consonant_syllable"], [], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], [], [], ["vowel_syllable"], ["vowel_syllable"], [], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], [], [], [], [], ["broken_cluster"], ["broken_cluster"], [], [], ["broken_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], [], [], ["standalone_cluster"], ["standalone_cluster"], [], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["broken_cluster"], ["symbol_cluster"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], [], [], [], [], ["consonant_syllable"], ["consonant_syllable"], [], [], ["consonant_syllable"], ["consonant_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], [], [], [], ["vowel_syllable"], ["vowel_syllable"], [], [], ["vowel_syllable"], ["vowel_syllable"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], [], [], [], [], ["broken_cluster"], [], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], [], [], [], ["standalone_cluster"], ["standalone_cluster"], [], [], ["standalone_cluster"], ["standalone_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], [], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], [], [], [], [], ["consonant_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], [], [], [], ["vowel_syllable"], [], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], [], [], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], [], [], [], ["standalone_cluster"], [], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], [], [], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], [], [], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], [], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], [], [], [], [], [], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], [], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], [], [], [], [], ["consonant_syllable", "broken_cluster"], ["consonant_syllable", "broken_cluster"], [], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], [], [], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], ["consonant_syllable"], [], ["consonant_syllable"], ["consonant_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], ["vowel_syllable"], [], ["vowel_syllable"], ["vowel_syllable"], ["broken_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], ["standalone_cluster"], [], ["standalone_cluster"], ["standalone_cluster"], [], ["consonant_syllable"], ["vowel_syllable"], ["standalone_cluster"]]; -var indicMachine = { - stateTable: stateTable, - accepting: accepting, - tags: tags -}; -var categories = ["O", "IND", "S", "GB", "B", "FM", "CGJ", "VMAbv", "VMPst", "VAbv", "VPst", "CMBlw", "VPre", "VBlw", "H", "VMBlw", "CMAbv", "MBlw", "CS", "R", "SUB", "MPst", "MPre", "FAbv", "FPst", "FBlw", "null", "SMAbv", "SMBlw", "VMPre", "ZWNJ", "ZWJ", "WJ", "M", "VS", "N", "HN", "MAbv"]; -var decompositions = { - "2507": [2503, 2494], - "2508": [2503, 2519], - "2888": [2887, 2902], - "2891": [2887, 2878], - "2892": [2887, 2903], - "3018": [3014, 3006], - "3019": [3015, 3006], - "3020": [3014, 3031], - "3144": [3142, 3158], - "3264": [3263, 3285], - "3271": [3270, 3285], - "3272": [3270, 3286], - "3274": [3270, 3266], - "3275": [3270, 3266, 3285], - "3402": [3398, 3390], - "3403": [3399, 3390], - "3404": [3398, 3415], - "3546": [3545, 3530], - "3548": [3545, 3535], - "3549": [3545, 3535, 3530], - "3550": [3545, 3551], - "3635": [3661, 3634], - "3763": [3789, 3762], - "3955": [3953, 3954], - "3957": [3953, 3956], - "3958": [4018, 3968], - "3959": [4018, 3953, 3968], - "3960": [4019, 3968], - "3961": [4019, 3953, 3968], - "3969": [3953, 3968], - "6971": [6970, 6965], - "6973": [6972, 6965], - "6976": [6974, 6965], - "6977": [6975, 6965], - "6979": [6978, 6965], - "69934": [69937, 69927], - "69935": [69938, 69927], - "70475": [70471, 70462], - "70476": [70471, 70487], - "70843": [70841, 70842], - "70844": [70841, 70832], - "70846": [70841, 70845], - "71098": [71096, 71087], - "71099": [71097, 71087] -}; -var stateTable$1 = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 3, 4, 4, 5, 0, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 17, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 2, 0, 0, 24, 0, 25], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 27, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 39, 0, 0, 47], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 0, 0, 12, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 0, 9, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 0, 11, 12, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 0, 9, 0, 0, 12, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 7, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 0, 11, 12, 0, 14, 0, 0, 0, 0, 0, 11, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 4, 4, 5, 0, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 48, 11, 12, 13, 14, 48, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 49, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 0, 11, 12, 0, 14, 0, 16, 0, 0, 0, 11, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 51, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 0, 11, 12, 0, 14, 0, 16, 0, 0, 0, 11, 0, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 0, 0, 36, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 0, 33, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 34, 35, 36, 37, 38, 0, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 47], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 0, 35, 36, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 0, 33, 0, 0, 36, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 0, 31, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 47], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 0, 35, 36, 0, 38, 0, 0, 0, 0, 0, 35, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 52, 35, 36, 37, 38, 52, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 53, 0, 0, 47], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 0, 35, 36, 0, 38, 0, 40, 0, 0, 0, 35, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 47], [0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 0, 35, 36, 0, 38, 0, 40, 0, 0, 0, 35, 0, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 48, 11, 12, 13, 14, 0, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 5, 0, 6, 7, 8, 9, 48, 11, 12, 13, 14, 48, 16, 0, 0, 18, 11, 19, 20, 21, 22, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 25], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 52, 35, 36, 37, 38, 0, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 47], [0, 0, 0, 0, 0, 29, 0, 30, 31, 32, 33, 52, 35, 36, 37, 38, 52, 40, 0, 0, 41, 35, 42, 43, 44, 45, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 47], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 51, 0]]; -var accepting$1 = [false, true, true, true, true, true, true, true, true, true, true, true, true, false, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true]; -var tags$1 = [[], ["broken_cluster"], ["independent_cluster"], ["symbol_cluster"], ["standard_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], [], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["broken_cluster"], ["numeral_cluster"], ["broken_cluster"], ["independent_cluster"], ["symbol_cluster"], ["symbol_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["virama_terminated_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["standard_cluster"], ["broken_cluster"], ["broken_cluster"], ["numeral_cluster"], ["number_joiner_terminated_cluster"], ["standard_cluster"], ["standard_cluster"], ["numeral_cluster"]]; -var useData = { - categories: categories, - decompositions: decompositions, - stateTable: stateTable$1, - accepting: accepting$1, - tags: tags$1 -}; - -// Cateories used in the OpenType spec: -// https://www.microsoft.com/typography/otfntdev/devanot/shaping.aspx -var CATEGORIES = { - X: 1 << 0, - C: 1 << 1, - V: 1 << 2, - N: 1 << 3, - H: 1 << 4, - ZWNJ: 1 << 5, - ZWJ: 1 << 6, - M: 1 << 7, - SM: 1 << 8, - VD: 1 << 9, - A: 1 << 10, - Placeholder: 1 << 11, - Dotted_Circle: 1 << 12, - RS: 1 << 13, - // Register Shifter, used in Khmer OT spec. - Coeng: 1 << 14, - // Khmer-style Virama. - Repha: 1 << 15, - // Atomically-encoded logical or visual repha. - Ra: 1 << 16, - CM: 1 << 17, - // Consonant-Medial. - Symbol: 1 << 18 // Avagraha, etc that take marks (SM,A,VD). -}; // Visual positions in a syllable from left to right. - -var POSITIONS = { - Start: 1 << 0, - Ra_To_Become_Reph: 1 << 1, - Pre_M: 1 << 2, - Pre_C: 1 << 3, - Base_C: 1 << 4, - After_Main: 1 << 5, - Above_C: 1 << 6, - Before_Sub: 1 << 7, - Below_C: 1 << 8, - After_Sub: 1 << 9, - Before_Post: 1 << 10, - Post_C: 1 << 11, - After_Post: 1 << 12, - Final_C: 1 << 13, - SMVD: 1 << 14, - End: 1 << 15 -}; -var CONSONANT_FLAGS = CATEGORIES.C | CATEGORIES.Ra | CATEGORIES.CM | CATEGORIES.V | CATEGORIES.Placeholder | CATEGORIES.Dotted_Circle; -var JOINER_FLAGS = CATEGORIES.ZWJ | CATEGORIES.ZWNJ; -var HALANT_OR_COENG_FLAGS = CATEGORIES.H | CATEGORIES.Coeng; -var INDIC_CONFIGS = { - Default: { - hasOldSpec: false, - virama: 0, - basePos: 'Last', - rephPos: POSITIONS.Before_Post, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Devanagari: { - hasOldSpec: true, - virama: 0x094D, - basePos: 'Last', - rephPos: POSITIONS.Before_Post, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Bengali: { - hasOldSpec: true, - virama: 0x09CD, - basePos: 'Last', - rephPos: POSITIONS.After_Sub, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Gurmukhi: { - hasOldSpec: true, - virama: 0x0A4D, - basePos: 'Last', - rephPos: POSITIONS.Before_Sub, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Gujarati: { - hasOldSpec: true, - virama: 0x0ACD, - basePos: 'Last', - rephPos: POSITIONS.Before_Post, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Oriya: { - hasOldSpec: true, - virama: 0x0B4D, - basePos: 'Last', - rephPos: POSITIONS.After_Main, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Tamil: { - hasOldSpec: true, - virama: 0x0BCD, - basePos: 'Last', - rephPos: POSITIONS.After_Post, - rephMode: 'Implicit', - blwfMode: 'Pre_And_Post' - }, - Telugu: { - hasOldSpec: true, - virama: 0x0C4D, - basePos: 'Last', - rephPos: POSITIONS.After_Post, - rephMode: 'Explicit', - blwfMode: 'Post_Only' - }, - Kannada: { - hasOldSpec: true, - virama: 0x0CCD, - basePos: 'Last', - rephPos: POSITIONS.After_Post, - rephMode: 'Implicit', - blwfMode: 'Post_Only' - }, - Malayalam: { - hasOldSpec: true, - virama: 0x0D4D, - basePos: 'Last', - rephPos: POSITIONS.After_Main, - rephMode: 'Log_Repha', - blwfMode: 'Pre_And_Post' - }, - // Handled by UniversalShaper - // Sinhala: { - // hasOldSpec: false, - // virama: 0x0DCA, - // basePos: 'Last_Sinhala', - // rephPos: POSITIONS.After_Main, - // rephMode: 'Explicit', - // blwfMode: 'Pre_And_Post' - // }, - Khmer: { - hasOldSpec: false, - virama: 0x17D2, - basePos: 'First', - rephPos: POSITIONS.Ra_To_Become_Reph, - rephMode: 'Vis_Repha', - blwfMode: 'Pre_And_Post' - } -}; // Additional decompositions that aren't in Unicode - -var INDIC_DECOMPOSITIONS = { - // Khmer - 0x17BE: [0x17C1, 0x17BE], - 0x17BF: [0x17C1, 0x17BF], - 0x17C0: [0x17C1, 0x17C0], - 0x17C4: [0x17C1, 0x17C4], - 0x17C5: [0x17C1, 0x17C5] -}; -var decompositions$1 = useData.decompositions; -var trie$1 = new UnicodeTrie(Buffer("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","base64")); -var stateMachine = new StateMachine(indicMachine); -/** - * The IndicShaper supports indic scripts e.g. Devanagari, Kannada, etc. - * Based on code from Harfbuzz: https://github.com/behdad/harfbuzz/blob/master/src/hb-ot-shape-complex-indic.cc - */ -var IndicShaper = /*#__PURE__*/function (_DefaultShaper3) { - function IndicShaper() { - return _DefaultShaper3.apply(this, arguments) || this; - } - _inheritsLoose(IndicShaper, _DefaultShaper3); - IndicShaper.planFeatures = function planFeatures(plan) { - plan.addStage(setupSyllables); - plan.addStage(['locl', 'ccmp']); - plan.addStage(initialReordering); - plan.addStage('nukt'); - plan.addStage('akhn'); - plan.addStage('rphf', false); - plan.addStage('rkrf'); - plan.addStage('pref', false); - plan.addStage('blwf', false); - plan.addStage('abvf', false); - plan.addStage('half', false); - plan.addStage('pstf', false); - plan.addStage('vatu'); - plan.addStage('cjct'); - plan.addStage('cfar', false); - plan.addStage(finalReordering); - plan.addStage({ - local: ['init'], - global: ['pres', 'abvs', 'blws', 'psts', 'haln', 'dist', 'abvm', 'blwm', 'calt', 'clig'] - }); // Setup the indic config for the selected script - - plan.unicodeScript = fromOpenType(plan.script); - plan.indicConfig = INDIC_CONFIGS[plan.unicodeScript] || INDIC_CONFIGS.Default; - plan.isOldSpec = plan.indicConfig.hasOldSpec && plan.script[plan.script.length - 1] !== '2'; // TODO: turn off kern (Khmer) and liga features. - }; - IndicShaper.assignFeatures = function assignFeatures(plan, glyphs) { - var _loop = function _loop(i) { - var codepoint = glyphs[i].codePoints[0]; - var d = INDIC_DECOMPOSITIONS[codepoint] || decompositions$1[codepoint]; - if (d) { - var decomposed = d.map(function (c) { - var g = plan.font.glyphForCodePoint(c); - return new GlyphInfo(plan.font, g.id, [c], glyphs[i].features); - }); - glyphs.splice.apply(glyphs, [i, 1].concat(decomposed)); - } - }; - - // Decompose split matras - // TODO: do this in a more general unicode normalizer - for (var i = glyphs.length - 1; i >= 0; i--) { - _loop(i); - } - }; - return IndicShaper; -}(DefaultShaper); -_defineProperty(IndicShaper, "zeroMarkWidths", 'NONE'); -function indicCategory(glyph) { - return trie$1.get(glyph.codePoints[0]) >> 8; -} -function indicPosition(glyph) { - return 1 << (trie$1.get(glyph.codePoints[0]) & 0xff); -} -var IndicInfo = function IndicInfo(category, position, syllableType, syllable) { - this.category = category; - this.position = position; - this.syllableType = syllableType; - this.syllable = syllable; -}; -function setupSyllables(font, glyphs) { - var syllable = 0; - var last = 0; - for (var _iterator51 = _createForOfIteratorHelperLoose(stateMachine.match(glyphs.map(indicCategory))), _step51; !(_step51 = _iterator51()).done;) { - var _step51$value = _step51.value, - start = _step51$value[0], - end = _step51$value[1], - tags = _step51$value[2]; - if (start > last) { - ++syllable; - for (var i = last; i < start; i++) { - glyphs[i].shaperInfo = new IndicInfo(CATEGORIES.X, POSITIONS.End, 'non_indic_cluster', syllable); - } - } - ++syllable; // Create shaper info - - for (var _i = start; _i <= end; _i++) { - glyphs[_i].shaperInfo = new IndicInfo(1 << indicCategory(glyphs[_i]), indicPosition(glyphs[_i]), tags[0], syllable); - } - last = end + 1; - } - if (last < glyphs.length) { - ++syllable; - for (var _i2 = last; _i2 < glyphs.length; _i2++) { - glyphs[_i2].shaperInfo = new IndicInfo(CATEGORIES.X, POSITIONS.End, 'non_indic_cluster', syllable); - } - } -} -function isConsonant(glyph) { - return glyph.shaperInfo.category & CONSONANT_FLAGS; -} -function isJoiner(glyph) { - return glyph.shaperInfo.category & JOINER_FLAGS; -} -function isHalantOrCoeng(glyph) { - return glyph.shaperInfo.category & HALANT_OR_COENG_FLAGS; -} -function wouldSubstitute(glyphs, feature) { - for (var _iterator52 = _createForOfIteratorHelperLoose(glyphs), _step52; !(_step52 = _iterator52()).done;) { - var _glyph$features; - var glyph = _step52.value; - glyph.features = (_glyph$features = {}, _glyph$features[feature] = true, _glyph$features); - } - var GSUB = glyphs[0]._font._layoutEngine.engine.GSUBProcessor; - GSUB.applyFeatures([feature], glyphs); - return glyphs.length === 1; -} -function consonantPosition(font, consonant, virama) { - var glyphs = [virama, consonant, virama]; - if (wouldSubstitute(glyphs.slice(0, 2), 'blwf') || wouldSubstitute(glyphs.slice(1, 3), 'blwf')) { - return POSITIONS.Below_C; - } else if (wouldSubstitute(glyphs.slice(0, 2), 'pstf') || wouldSubstitute(glyphs.slice(1, 3), 'pstf')) { - return POSITIONS.Post_C; - } else if (wouldSubstitute(glyphs.slice(0, 2), 'pref') || wouldSubstitute(glyphs.slice(1, 3), 'pref')) { - return POSITIONS.Post_C; - } - return POSITIONS.Base_C; -} -function initialReordering(font, glyphs, plan) { - var indicConfig = plan.indicConfig; - var features = font._layoutEngine.engine.GSUBProcessor.features; - var dottedCircle = font.glyphForCodePoint(0x25cc).id; - var virama = font.glyphForCodePoint(indicConfig.virama).id; - if (virama) { - var info = new GlyphInfo(font, virama, [indicConfig.virama]); - for (var i = 0; i < glyphs.length; i++) { - if (glyphs[i].shaperInfo.position === POSITIONS.Base_C) { - glyphs[i].shaperInfo.position = consonantPosition(font, glyphs[i].copy(), info); - } - } - } - for (var start = 0, end = nextSyllable(glyphs, 0); start < glyphs.length; start = end, end = nextSyllable(glyphs, start)) { - var _glyphs$start$shaperI = glyphs[start].shaperInfo, - category = _glyphs$start$shaperI.category, - syllableType = _glyphs$start$shaperI.syllableType; - if (syllableType === 'symbol_cluster' || syllableType === 'non_indic_cluster') { - continue; - } - if (syllableType === 'broken_cluster' && dottedCircle) { - var g = new GlyphInfo(font, dottedCircle, [0x25cc]); - g.shaperInfo = new IndicInfo(1 << indicCategory(g), indicPosition(g), glyphs[start].shaperInfo.syllableType, glyphs[start].shaperInfo.syllable); // Insert after possible Repha. - - var _i3 = start; - while (_i3 < end && glyphs[_i3].shaperInfo.category === CATEGORIES.Repha) { - _i3++; - } - glyphs.splice(_i3++, 0, g); - end++; - } // 1. Find base consonant: - // - // The shaping engine finds the base consonant of the syllable, using the - // following algorithm: starting from the end of the syllable, move backwards - // until a consonant is found that does not have a below-base or post-base - // form (post-base forms have to follow below-base forms), or that is not a - // pre-base reordering Ra, or arrive at the first consonant. The consonant - // stopped at will be the base. - - var base = end; - var limit = start; - var hasReph = false; // If the syllable starts with Ra + Halant (in a script that has Reph) - // and has more than one consonant, Ra is excluded from candidates for - // base consonants. - - if (indicConfig.rephPos !== POSITIONS.Ra_To_Become_Reph && features.rphf && start + 3 <= end && (indicConfig.rephMode === 'Implicit' && !isJoiner(glyphs[start + 2]) || indicConfig.rephMode === 'Explicit' && glyphs[start + 2].shaperInfo.category === CATEGORIES.ZWJ)) { - // See if it matches the 'rphf' feature. - var _g = [glyphs[start].copy(), glyphs[start + 1].copy(), glyphs[start + 2].copy()]; - if (wouldSubstitute(_g.slice(0, 2), 'rphf') || indicConfig.rephMode === 'Explicit' && wouldSubstitute(_g, 'rphf')) { - limit += 2; - while (limit < end && isJoiner(glyphs[limit])) { - limit++; - } - base = start; - hasReph = true; - } - } else if (indicConfig.rephMode === 'Log_Repha' && glyphs[start].shaperInfo.category === CATEGORIES.Repha) { - limit++; - while (limit < end && isJoiner(glyphs[limit])) { - limit++; - } - base = start; - hasReph = true; - } - switch (indicConfig.basePos) { - case 'Last': - { - // starting from the end of the syllable, move backwards - var _i4 = end; - var seenBelow = false; - do { - var _info = glyphs[--_i4].shaperInfo; // until a consonant is found - - if (isConsonant(glyphs[_i4])) { - // that does not have a below-base or post-base form - // (post-base forms have to follow below-base forms), - if (_info.position !== POSITIONS.Below_C && (_info.position !== POSITIONS.Post_C || seenBelow)) { - base = _i4; - break; - } // or that is not a pre-base reordering Ra, - // - // IMPLEMENTATION NOTES: - // - // Our pre-base reordering Ra's are marked POS_POST_C, so will be skipped - // by the logic above already. - // - // or arrive at the first consonant. The consonant stopped at will - // be the base. - - if (_info.position === POSITIONS.Below_C) { - seenBelow = true; - } - base = _i4; - } else if (start < _i4 && _info.category === CATEGORIES.ZWJ && glyphs[_i4 - 1].shaperInfo.category === CATEGORIES.H) { - // A ZWJ after a Halant stops the base search, and requests an explicit - // half form. - // A ZWJ before a Halant, requests a subjoined form instead, and hence - // search continues. This is particularly important for Bengali - // sequence Ra,H,Ya that should form Ya-Phalaa by subjoining Ya. - break; - } - } while (_i4 > limit); - break; - } - case 'First': - { - // The first consonant is always the base. - base = start; // Mark all subsequent consonants as below. - - for (var _i5 = base + 1; _i5 < end; _i5++) { - if (isConsonant(glyphs[_i5])) { - glyphs[_i5].shaperInfo.position = POSITIONS.Below_C; - } - } - } - } // If the syllable starts with Ra + Halant (in a script that has Reph) - // and has more than one consonant, Ra is excluded from candidates for - // base consonants. - // - // Only do this for unforced Reph. (ie. not for Ra,H,ZWJ) - - if (hasReph && base === start && limit - base <= 2) { - hasReph = false; - } // 2. Decompose and reorder Matras: - // - // Each matra and any syllable modifier sign in the cluster are moved to the - // appropriate position relative to the consonant(s) in the cluster. The - // shaping engine decomposes two- or three-part matras into their constituent - // parts before any repositioning. Matra characters are classified by which - // consonant in a conjunct they have affinity for and are reordered to the - // following positions: - // - // o Before first half form in the syllable - // o After subjoined consonants - // o After post-form consonant - // o After main consonant (for above marks) - // - // IMPLEMENTATION NOTES: - // - // The normalize() routine has already decomposed matras for us, so we don't - // need to worry about that. - // 3. Reorder marks to canonical order: - // - // Adjacent nukta and halant or nukta and vedic sign are always repositioned - // if necessary, so that the nukta is first. - // - // IMPLEMENTATION NOTES: - // - // We don't need to do this: the normalize() routine already did this for us. - // Reorder characters - - for (var _i6 = start; _i6 < base; _i6++) { - var _info2 = glyphs[_i6].shaperInfo; - _info2.position = Math.min(POSITIONS.Pre_C, _info2.position); - } - if (base < end) { - glyphs[base].shaperInfo.position = POSITIONS.Base_C; - } // Mark final consonants. A final consonant is one appearing after a matra, - // like in Khmer. - - for (var _i7 = base + 1; _i7 < end; _i7++) { - if (glyphs[_i7].shaperInfo.category === CATEGORIES.M) { - for (var j = _i7 + 1; j < end; j++) { - if (isConsonant(glyphs[j])) { - glyphs[j].shaperInfo.position = POSITIONS.Final_C; - break; - } - } - break; - } - } // Handle beginning Ra - - if (hasReph) { - glyphs[start].shaperInfo.position = POSITIONS.Ra_To_Become_Reph; - } // For old-style Indic script tags, move the first post-base Halant after - // last consonant. - // - // Reports suggest that in some scripts Uniscribe does this only if there - // is *not* a Halant after last consonant already (eg. Kannada), while it - // does it unconditionally in other scripts (eg. Malayalam). We don't - // currently know about other scripts, so we single out Malayalam for now. - // - // Kannada test case: - // U+0C9A,U+0CCD,U+0C9A,U+0CCD - // With some versions of Lohit Kannada. - // https://bugs.freedesktop.org/show_bug.cgi?id=59118 - // - // Malayalam test case: - // U+0D38,U+0D4D,U+0D31,U+0D4D,U+0D31,U+0D4D - // With lohit-ttf-20121122/Lohit-Malayalam.ttf - - if (plan.isOldSpec) { - var disallowDoubleHalants = plan.unicodeScript !== 'Malayalam'; - for (var _i8 = base + 1; _i8 < end; _i8++) { - if (glyphs[_i8].shaperInfo.category === CATEGORIES.H) { - var _j = void 0; - for (_j = end - 1; _j > _i8; _j--) { - if (isConsonant(glyphs[_j]) || disallowDoubleHalants && glyphs[_j].shaperInfo.category === CATEGORIES.H) { - break; - } - } - if (glyphs[_j].shaperInfo.category !== CATEGORIES.H && _j > _i8) { - // Move Halant to after last consonant. - var t = glyphs[_i8]; - glyphs.splice.apply(glyphs, [_i8, 0].concat(glyphs.splice(_i8 + 1, _j - _i8))); - glyphs[_j] = t; - } - break; - } - } - } // Attach misc marks to previous char to move with them. - - var lastPos = POSITIONS.Start; - for (var _i9 = start; _i9 < end; _i9++) { - var _info3 = glyphs[_i9].shaperInfo; - if (_info3.category & (JOINER_FLAGS | CATEGORIES.N | CATEGORIES.RS | CATEGORIES.CM | HALANT_OR_COENG_FLAGS & _info3.category)) { - _info3.position = lastPos; - if (_info3.category === CATEGORIES.H && _info3.position === POSITIONS.Pre_M) { - // Uniscribe doesn't move the Halant with Left Matra. - // TEST: U+092B,U+093F,U+094DE - // We follow. This is important for the Sinhala - // U+0DDA split matra since it decomposes to U+0DD9,U+0DCA - // where U+0DD9 is a left matra and U+0DCA is the virama. - // We don't want to move the virama with the left matra. - // TEST: U+0D9A,U+0DDA - for (var _j2 = _i9; _j2 > start; _j2--) { - if (glyphs[_j2 - 1].shaperInfo.position !== POSITIONS.Pre_M) { - _info3.position = glyphs[_j2 - 1].shaperInfo.position; - break; - } - } - } - } else if (_info3.position !== POSITIONS.SMVD) { - lastPos = _info3.position; - } - } // For post-base consonants let them own anything before them - // since the last consonant or matra. - - var last = base; - for (var _i10 = base + 1; _i10 < end; _i10++) { - if (isConsonant(glyphs[_i10])) { - for (var _j3 = last + 1; _j3 < _i10; _j3++) { - if (glyphs[_j3].shaperInfo.position < POSITIONS.SMVD) { - glyphs[_j3].shaperInfo.position = glyphs[_i10].shaperInfo.position; - } - } - last = _i10; - } else if (glyphs[_i10].shaperInfo.category === CATEGORIES.M) { - last = _i10; - } - } - var arr = glyphs.slice(start, end); - arr.sort(function (a, b) { - return a.shaperInfo.position - b.shaperInfo.position; - }); - glyphs.splice.apply(glyphs, [start, arr.length].concat(arr)); // Find base again - - for (var _i11 = start; _i11 < end; _i11++) { - if (glyphs[_i11].shaperInfo.position === POSITIONS.Base_C) { - base = _i11; - break; - } - } // Setup features now - // Reph - - for (var _i12 = start; _i12 < end && glyphs[_i12].shaperInfo.position === POSITIONS.Ra_To_Become_Reph; _i12++) { - glyphs[_i12].features.rphf = true; - } // Pre-base - - var blwf = !plan.isOldSpec && indicConfig.blwfMode === 'Pre_And_Post'; - for (var _i13 = start; _i13 < base; _i13++) { - glyphs[_i13].features.half = true; - if (blwf) { - glyphs[_i13].features.blwf = true; - } - } // Post-base - - for (var _i14 = base + 1; _i14 < end; _i14++) { - glyphs[_i14].features.abvf = true; - glyphs[_i14].features.pstf = true; - glyphs[_i14].features.blwf = true; - } - if (plan.isOldSpec && plan.unicodeScript === 'Devanagari') { - // Old-spec eye-lash Ra needs special handling. From the - // spec: - // - // "The feature 'below-base form' is applied to consonants - // having below-base forms and following the base consonant. - // The exception is vattu, which may appear below half forms - // as well as below the base glyph. The feature 'below-base - // form' will be applied to all such occurrences of Ra as well." - // - // Test case: U+0924,U+094D,U+0930,U+094d,U+0915 - // with Sanskrit 2003 font. - // - // However, note that Ra,Halant,ZWJ is the correct way to - // request eyelash form of Ra, so we wouldbn't inhibit it - // in that sequence. - // - // Test case: U+0924,U+094D,U+0930,U+094d,U+200D,U+0915 - for (var _i15 = start; _i15 + 1 < base; _i15++) { - if (glyphs[_i15].shaperInfo.category === CATEGORIES.Ra && glyphs[_i15 + 1].shaperInfo.category === CATEGORIES.H && (_i15 + 1 === base || glyphs[_i15 + 2].shaperInfo.category === CATEGORIES.ZWJ)) { - glyphs[_i15].features.blwf = true; - glyphs[_i15 + 1].features.blwf = true; - } - } - } - var prefLen = 2; - if (features.pref && base + prefLen < end) { - // Find a Halant,Ra sequence and mark it for pre-base reordering processing. - for (var _i16 = base + 1; _i16 + prefLen - 1 < end; _i16++) { - var _g2 = [glyphs[_i16].copy(), glyphs[_i16 + 1].copy()]; - if (wouldSubstitute(_g2, 'pref')) { - for (var _j4 = 0; _j4 < prefLen; _j4++) { - glyphs[_i16++].features.pref = true; - } // Mark the subsequent stuff with 'cfar'. Used in Khmer. - // Read the feature spec. - // This allows distinguishing the following cases with MS Khmer fonts: - // U+1784,U+17D2,U+179A,U+17D2,U+1782 - // U+1784,U+17D2,U+1782,U+17D2,U+179A - - if (features.cfar) { - for (; _i16 < end; _i16++) { - glyphs[_i16].features.cfar = true; - } - } - break; - } - } - } // Apply ZWJ/ZWNJ effects - - for (var _i17 = start + 1; _i17 < end; _i17++) { - if (isJoiner(glyphs[_i17])) { - var nonJoiner = glyphs[_i17].shaperInfo.category === CATEGORIES.ZWNJ; - var _j5 = _i17; - do { - _j5--; // ZWJ/ZWNJ should disable CJCT. They do that by simply - // being there, since we don't skip them for the CJCT - // feature (ie. F_MANUAL_ZWJ) - // A ZWNJ disables HALF. - - if (nonJoiner) { - delete glyphs[_j5].features.half; - } - } while (_j5 > start && !isConsonant(glyphs[_j5])); - } - } - } -} -function finalReordering(font, glyphs, plan) { - var indicConfig = plan.indicConfig; - var features = font._layoutEngine.engine.GSUBProcessor.features; - for (var start = 0, end = nextSyllable(glyphs, 0); start < glyphs.length; start = end, end = nextSyllable(glyphs, start)) { - // 4. Final reordering: - // - // After the localized forms and basic shaping forms GSUB features have been - // applied (see below), the shaping engine performs some final glyph - // reordering before applying all the remaining font features to the entire - // cluster. - var tryPref = !!features.pref; // Find base again - - var base = start; - for (; base < end; base++) { - if (glyphs[base].shaperInfo.position >= POSITIONS.Base_C) { - if (tryPref && base + 1 < end) { - for (var i = base + 1; i < end; i++) { - if (glyphs[i].features.pref) { - if (!(glyphs[i].substituted && glyphs[i].isLigated && !glyphs[i].isMultiplied)) { - // Ok, this was a 'pref' candidate but didn't form any. - // Base is around here... - base = i; - while (base < end && isHalantOrCoeng(glyphs[base])) { - base++; - } - glyphs[base].shaperInfo.position = POSITIONS.BASE_C; - tryPref = false; - } - break; - } - } - } // For Malayalam, skip over unformed below- (but NOT post-) forms. - - if (plan.unicodeScript === 'Malayalam') { - for (var _i18 = base + 1; _i18 < end; _i18++) { - while (_i18 < end && isJoiner(glyphs[_i18])) { - _i18++; - } - if (_i18 === end || !isHalantOrCoeng(glyphs[_i18])) { - break; - } - _i18++; // Skip halant. - - while (_i18 < end && isJoiner(glyphs[_i18])) { - _i18++; - } - if (_i18 < end && isConsonant(glyphs[_i18]) && glyphs[_i18].shaperInfo.position === POSITIONS.Below_C) { - base = _i18; - glyphs[base].shaperInfo.position = POSITIONS.Base_C; - } - } - } - if (start < base && glyphs[base].shaperInfo.position > POSITIONS.Base_C) { - base--; - } - break; - } - } - if (base === end && start < base && glyphs[base - 1].shaperInfo.category === CATEGORIES.ZWJ) { - base--; - } - if (base < end) { - while (start < base && glyphs[base].shaperInfo.category & (CATEGORIES.N | HALANT_OR_COENG_FLAGS)) { - base--; - } - } // o Reorder matras: - // - // If a pre-base matra character had been reordered before applying basic - // features, the glyph can be moved closer to the main consonant based on - // whether half-forms had been formed. Actual position for the matra is - // defined as “after last standalone halant glyph, after initial matra - // position and before the main consonant”. If ZWJ or ZWNJ follow this - // halant, position is moved after it. - // - - if (start + 1 < end && start < base) { - // Otherwise there can't be any pre-base matra characters. - // If we lost track of base, alas, position before last thingy. - var newPos = base === end ? base - 2 : base - 1; // Malayalam / Tamil do not have "half" forms or explicit virama forms. - // The glyphs formed by 'half' are Chillus or ligated explicit viramas. - // We want to position matra after them. - - if (plan.unicodeScript !== 'Malayalam' && plan.unicodeScript !== 'Tamil') { - while (newPos > start && !(glyphs[newPos].shaperInfo.category & (CATEGORIES.M | HALANT_OR_COENG_FLAGS))) { - newPos--; - } // If we found no Halant we are done. - // Otherwise only proceed if the Halant does - // not belong to the Matra itself! - - if (isHalantOrCoeng(glyphs[newPos]) && glyphs[newPos].shaperInfo.position !== POSITIONS.Pre_M) { - // If ZWJ or ZWNJ follow this halant, position is moved after it. - if (newPos + 1 < end && isJoiner(glyphs[newPos + 1])) { - newPos++; - } - } else { - newPos = start; // No move. - } - } - if (start < newPos && glyphs[newPos].shaperInfo.position !== POSITIONS.Pre_M) { - // Now go see if there's actually any matras... - for (var _i19 = newPos; _i19 > start; _i19--) { - if (glyphs[_i19 - 1].shaperInfo.position === POSITIONS.Pre_M) { - var oldPos = _i19 - 1; - if (oldPos < base && base <= newPos) { - // Shouldn't actually happen. - base--; - } - var tmp = glyphs[oldPos]; - glyphs.splice.apply(glyphs, [oldPos, 0].concat(glyphs.splice(oldPos + 1, newPos - oldPos))); - glyphs[newPos] = tmp; - newPos--; - } - } - } - } // o Reorder reph: - // - // Reph’s original position is always at the beginning of the syllable, - // (i.e. it is not reordered at the character reordering stage). However, - // it will be reordered according to the basic-forms shaping results. - // Possible positions for reph, depending on the script, are; after main, - // before post-base consonant forms, and after post-base consonant forms. - // Two cases: - // - // - If repha is encoded as a sequence of characters (Ra,H or Ra,H,ZWJ), then - // we should only move it if the sequence ligated to the repha form. - // - // - If repha is encoded separately and in the logical position, we should only - // move it if it did NOT ligate. If it ligated, it's probably the font trying - // to make it work without the reordering. - - if (start + 1 < end && glyphs[start].shaperInfo.position === POSITIONS.Ra_To_Become_Reph && glyphs[start].shaperInfo.category === CATEGORIES.Repha !== (glyphs[start].isLigated && !glyphs[start].isMultiplied)) { - var newRephPos = void 0; - var rephPos = indicConfig.rephPos; - var found = false; // 1. If reph should be positioned after post-base consonant forms, - // proceed to step 5. - - if (rephPos !== POSITIONS.After_Post) { - // 2. If the reph repositioning class is not after post-base: target - // position is after the first explicit halant glyph between the - // first post-reph consonant and last main consonant. If ZWJ or ZWNJ - // are following this halant, position is moved after it. If such - // position is found, this is the target position. Otherwise, - // proceed to the next step. - // - // Note: in old-implementation fonts, where classifications were - // fixed in shaping engine, there was no case where reph position - // will be found on this step. - newRephPos = start + 1; - while (newRephPos < base && !isHalantOrCoeng(glyphs[newRephPos])) { - newRephPos++; - } - if (newRephPos < base && isHalantOrCoeng(glyphs[newRephPos])) { - // ->If ZWJ or ZWNJ are following this halant, position is moved after it. - if (newRephPos + 1 < base && isJoiner(glyphs[newRephPos + 1])) { - newRephPos++; - } - found = true; - } // 3. If reph should be repositioned after the main consonant: find the - // first consonant not ligated with main, or find the first - // consonant that is not a potential pre-base reordering Ra. - - if (!found && rephPos === POSITIONS.After_Main) { - newRephPos = base; - while (newRephPos + 1 < end && glyphs[newRephPos + 1].shaperInfo.position <= POSITIONS.After_Main) { - newRephPos++; - } - found = newRephPos < end; - } // 4. If reph should be positioned before post-base consonant, find - // first post-base classified consonant not ligated with main. If no - // consonant is found, the target position should be before the - // first matra, syllable modifier sign or vedic sign. - // - // This is our take on what step 4 is trying to say (and failing, BADLY). - - if (!found && rephPos === POSITIONS.After_Sub) { - newRephPos = base; - while (newRephPos + 1 < end && !(glyphs[newRephPos + 1].shaperInfo.position & (POSITIONS.Post_C | POSITIONS.After_Post | POSITIONS.SMVD))) { - newRephPos++; - } - found = newRephPos < end; - } - } // 5. If no consonant is found in steps 3 or 4, move reph to a position - // immediately before the first post-base matra, syllable modifier - // sign or vedic sign that has a reordering class after the intended - // reph position. For example, if the reordering position for reph - // is post-main, it will skip above-base matras that also have a - // post-main position. - - if (!found) { - // Copied from step 2. - newRephPos = start + 1; - while (newRephPos < base && !isHalantOrCoeng(glyphs[newRephPos])) { - newRephPos++; - } - if (newRephPos < base && isHalantOrCoeng(glyphs[newRephPos])) { - // ->If ZWJ or ZWNJ are following this halant, position is moved after it. - if (newRephPos + 1 < base && isJoiner(glyphs[newRephPos + 1])) { - newRephPos++; - } - found = true; - } - } // 6. Otherwise, reorder reph to the end of the syllable. - - if (!found) { - newRephPos = end - 1; - while (newRephPos > start && glyphs[newRephPos].shaperInfo.position === POSITIONS.SMVD) { - newRephPos--; - } // If the Reph is to be ending up after a Matra,Halant sequence, - // position it before that Halant so it can interact with the Matra. - // However, if it's a plain Consonant,Halant we shouldn't do that. - // Uniscribe doesn't do this. - // TEST: U+0930,U+094D,U+0915,U+094B,U+094D - - if (isHalantOrCoeng(glyphs[newRephPos])) { - for (var _i20 = base + 1; _i20 < newRephPos; _i20++) { - if (glyphs[_i20].shaperInfo.category === CATEGORIES.M) { - newRephPos--; - } - } - } - } - var reph = glyphs[start]; - glyphs.splice.apply(glyphs, [start, 0].concat(glyphs.splice(start + 1, newRephPos - start))); - glyphs[newRephPos] = reph; - if (start < base && base <= newRephPos) { - base--; - } - } // o Reorder pre-base reordering consonants: - // - // If a pre-base reordering consonant is found, reorder it according to - // the following rules: - - if (tryPref && base + 1 < end) { - for (var _i21 = base + 1; _i21 < end; _i21++) { - if (glyphs[_i21].features.pref) { - // 1. Only reorder a glyph produced by substitution during application - // of the feature. (Note that a font may shape a Ra consonant with - // the feature generally but block it in certain contexts.) - // Note: We just check that something got substituted. We don't check that - // the feature actually did it... - // - // Reorder pref only if it ligated. - if (glyphs[_i21].isLigated && !glyphs[_i21].isMultiplied) { - // 2. Try to find a target position the same way as for pre-base matra. - // If it is found, reorder pre-base consonant glyph. - // - // 3. If position is not found, reorder immediately before main - // consonant. - var _newPos = base; // Malayalam / Tamil do not have "half" forms or explicit virama forms. - // The glyphs formed by 'half' are Chillus or ligated explicit viramas. - // We want to position matra after them. - - if (plan.unicodeScript !== 'Malayalam' && plan.unicodeScript !== 'Tamil') { - while (_newPos > start && !(glyphs[_newPos - 1].shaperInfo.category & (CATEGORIES.M | HALANT_OR_COENG_FLAGS))) { - _newPos--; - } // In Khmer coeng model, a H,Ra can go *after* matras. If it goes after a - // split matra, it should be reordered to *before* the left part of such matra. - - if (_newPos > start && glyphs[_newPos - 1].shaperInfo.category === CATEGORIES.M) { - var _oldPos2 = _i21; - for (var j = base + 1; j < _oldPos2; j++) { - if (glyphs[j].shaperInfo.category === CATEGORIES.M) { - _newPos--; - break; - } - } - } - } - if (_newPos > start && isHalantOrCoeng(glyphs[_newPos - 1])) { - // -> If ZWJ or ZWNJ follow this halant, position is moved after it. - if (_newPos < end && isJoiner(glyphs[_newPos])) { - _newPos++; - } - } - var _oldPos = _i21; - var _tmp = glyphs[_oldPos]; - glyphs.splice.apply(glyphs, [_newPos + 1, 0].concat(glyphs.splice(_newPos, _oldPos - _newPos))); - glyphs[_newPos] = _tmp; - if (_newPos <= base && base < _oldPos) { - base++; - } - } - break; - } - } - } // Apply 'init' to the Left Matra if it's a word start. - - if (glyphs[start].shaperInfo.position === POSITIONS.Pre_M && (!start || !/Cf|Mn/.test(unicode.getCategory(glyphs[start - 1].codePoints[0])))) { - glyphs[start].features.init = true; - } - } -} -function nextSyllable(glyphs, start) { - if (start >= glyphs.length) return start; - var syllable = glyphs[start].shaperInfo.syllable; - while (++start < glyphs.length && glyphs[start].shaperInfo.syllable === syllable) {} - return start; -} -var categories$1 = useData.categories, - decompositions$2 = useData.decompositions; -var trie$2 = new UnicodeTrie(Buffer("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","base64")); -var stateMachine$1 = new StateMachine(useData); -/** - * This shaper is an implementation of the Universal Shaping Engine, which - * uses Unicode data to shape a number of scripts without a dedicated shaping engine. - * See https://www.microsoft.com/typography/OpenTypeDev/USE/intro.htm. - */ -var UniversalShaper = /*#__PURE__*/function (_DefaultShaper4) { - function UniversalShaper() { - return _DefaultShaper4.apply(this, arguments) || this; - } - _inheritsLoose(UniversalShaper, _DefaultShaper4); - UniversalShaper.planFeatures = function planFeatures(plan) { - plan.addStage(setupSyllables$1); // Default glyph pre-processing group - - plan.addStage(['locl', 'ccmp', 'nukt', 'akhn']); // Reordering group - - plan.addStage(clearSubstitutionFlags); - plan.addStage(['rphf'], false); - plan.addStage(recordRphf); - plan.addStage(clearSubstitutionFlags); - plan.addStage(['pref']); - plan.addStage(recordPref); // Orthographic unit shaping group - - plan.addStage(['rkrf', 'abvf', 'blwf', 'half', 'pstf', 'vatu', 'cjct']); - plan.addStage(reorder); // Topographical features - // Scripts that need this are handled by the Arabic shaper, not implemented here for now. - // plan.addStage(['isol', 'init', 'medi', 'fina', 'med2', 'fin2', 'fin3'], false); - // Standard topographic presentation and positional feature application - - plan.addStage(['abvs', 'blws', 'pres', 'psts', 'dist', 'abvm', 'blwm']); - }; - UniversalShaper.assignFeatures = function assignFeatures(plan, glyphs) { - var _loop = function _loop(i) { - var codepoint = glyphs[i].codePoints[0]; - if (decompositions$2[codepoint]) { - var decomposed = decompositions$2[codepoint].map(function (c) { - var g = plan.font.glyphForCodePoint(c); - return new GlyphInfo(plan.font, g.id, [c], glyphs[i].features); - }); - glyphs.splice.apply(glyphs, [i, 1].concat(decomposed)); - } - }; - - // Decompose split vowels - // TODO: do this in a more general unicode normalizer - for (var i = glyphs.length - 1; i >= 0; i--) { - _loop(i); - } - }; - return UniversalShaper; -}(DefaultShaper); -_defineProperty(UniversalShaper, "zeroMarkWidths", 'BEFORE_GPOS'); -function useCategory(glyph) { - return trie$2.get(glyph.codePoints[0]); -} -var USEInfo = function USEInfo(category, syllableType, syllable) { - this.category = category; - this.syllableType = syllableType; - this.syllable = syllable; -}; -function setupSyllables$1(font, glyphs) { - var syllable = 0; - for (var _iterator53 = _createForOfIteratorHelperLoose(stateMachine$1.match(glyphs.map(useCategory))), _step53; !(_step53 = _iterator53()).done;) { - var _step53$value = _step53.value, - start = _step53$value[0], - end = _step53$value[1], - tags = _step53$value[2]; - ++syllable; // Create shaper info - - for (var i = start; i <= end; i++) { - glyphs[i].shaperInfo = new USEInfo(categories$1[useCategory(glyphs[i])], tags[0], syllable); - } // Assign rphf feature - - var limit = glyphs[start].shaperInfo.category === 'R' ? 1 : Math.min(3, end - start); - for (var _i = start; _i < start + limit; _i++) { - glyphs[_i].features.rphf = true; - } - } -} -function clearSubstitutionFlags(font, glyphs) { - for (var _iterator54 = _createForOfIteratorHelperLoose(glyphs), _step54; !(_step54 = _iterator54()).done;) { - var glyph = _step54.value; - glyph.substituted = false; - } -} -function recordRphf(font, glyphs) { - for (var _iterator55 = _createForOfIteratorHelperLoose(glyphs), _step55; !(_step55 = _iterator55()).done;) { - var glyph = _step55.value; - if (glyph.substituted && glyph.features.rphf) { - // Mark a substituted repha. - glyph.shaperInfo.category = 'R'; - } - } -} -function recordPref(font, glyphs) { - for (var _iterator56 = _createForOfIteratorHelperLoose(glyphs), _step56; !(_step56 = _iterator56()).done;) { - var glyph = _step56.value; - if (glyph.substituted) { - // Mark a substituted pref as VPre, as they behave the same way. - glyph.shaperInfo.category = 'VPre'; - } - } -} -function reorder(font, glyphs) { - var dottedCircle = font.glyphForCodePoint(0x25cc).id; - for (var start = 0, end = nextSyllable$1(glyphs, 0); start < glyphs.length; start = end, end = nextSyllable$1(glyphs, start)) { - var i = void 0, - j = void 0; - var info = glyphs[start].shaperInfo; - var type = info.syllableType; // Only a few syllable types need reordering. - - if (type !== 'virama_terminated_cluster' && type !== 'standard_cluster' && type !== 'broken_cluster') { - continue; - } // Insert a dotted circle glyph in broken clusters. - - if (type === 'broken_cluster' && dottedCircle) { - var g = new GlyphInfo(font, dottedCircle, [0x25cc]); - g.shaperInfo = info; // Insert after possible Repha. - - for (i = start; i < end && glyphs[i].shaperInfo.category === 'R'; i++) {} - glyphs.splice(++i, 0, g); - end++; - } // Move things forward. - - if (info.category === 'R' && end - start > 1) { - // Got a repha. Reorder it to after first base, before first halant. - for (i = start + 1; i < end; i++) { - info = glyphs[i].shaperInfo; - if (isBase(info) || isHalant(glyphs[i])) { - // If we hit a halant, move before it; otherwise it's a base: move to it's - // place, and shift things in between backward. - if (isHalant(glyphs[i])) { - i--; - } - glyphs.splice.apply(glyphs, [start, 0].concat(glyphs.splice(start + 1, i - start), [glyphs[i]])); - break; - } - } - } // Move things back. - - for (i = start, j = end; i < end; i++) { - info = glyphs[i].shaperInfo; - if (isBase(info) || isHalant(glyphs[i])) { - // If we hit a halant, move after it; otherwise it's a base: move to it's - // place, and shift things in between backward. - j = isHalant(glyphs[i]) ? i + 1 : i; - } else if ((info.category === 'VPre' || info.category === 'VMPre') && j < i) { - glyphs.splice.apply(glyphs, [j, 1, glyphs[i]].concat(glyphs.splice(j, i - j))); - } - } - } -} -function nextSyllable$1(glyphs, start) { - if (start >= glyphs.length) return start; - var syllable = glyphs[start].shaperInfo.syllable; - while (++start < glyphs.length && glyphs[start].shaperInfo.syllable === syllable) {} - return start; -} -function isHalant(glyph) { - return glyph.shaperInfo.category === 'H' && !glyph.isLigated; -} -function isBase(info) { - return info.category === 'B' || info.category === 'GB'; -} -var SHAPERS = { - arab: ArabicShaper, - // Arabic - mong: ArabicShaper, - // Mongolian - syrc: ArabicShaper, - // Syriac - 'nko ': ArabicShaper, - // N'Ko - phag: ArabicShaper, - // Phags Pa - mand: ArabicShaper, - // Mandaic - mani: ArabicShaper, - // Manichaean - phlp: ArabicShaper, - // Psalter Pahlavi - hang: HangulShaper, - // Hangul - bng2: IndicShaper, - // Bengali - beng: IndicShaper, - // Bengali - dev2: IndicShaper, - // Devanagari - deva: IndicShaper, - // Devanagari - gjr2: IndicShaper, - // Gujarati - gujr: IndicShaper, - // Gujarati - guru: IndicShaper, - // Gurmukhi - gur2: IndicShaper, - // Gurmukhi - knda: IndicShaper, - // Kannada - knd2: IndicShaper, - // Kannada - mlm2: IndicShaper, - // Malayalam - mlym: IndicShaper, - // Malayalam - ory2: IndicShaper, - // Oriya - orya: IndicShaper, - // Oriya - taml: IndicShaper, - // Tamil - tml2: IndicShaper, - // Tamil - telu: IndicShaper, - // Telugu - tel2: IndicShaper, - // Telugu - khmr: IndicShaper, - // Khmer - bali: UniversalShaper, - // Balinese - batk: UniversalShaper, - // Batak - brah: UniversalShaper, - // Brahmi - bugi: UniversalShaper, - // Buginese - buhd: UniversalShaper, - // Buhid - cakm: UniversalShaper, - // Chakma - cham: UniversalShaper, - // Cham - dupl: UniversalShaper, - // Duployan - egyp: UniversalShaper, - // Egyptian Hieroglyphs - gran: UniversalShaper, - // Grantha - hano: UniversalShaper, - // Hanunoo - java: UniversalShaper, - // Javanese - kthi: UniversalShaper, - // Kaithi - kali: UniversalShaper, - // Kayah Li - khar: UniversalShaper, - // Kharoshthi - khoj: UniversalShaper, - // Khojki - sind: UniversalShaper, - // Khudawadi - lepc: UniversalShaper, - // Lepcha - limb: UniversalShaper, - // Limbu - mahj: UniversalShaper, - // Mahajani - // mand: UniversalShaper, // Mandaic - // mani: UniversalShaper, // Manichaean - mtei: UniversalShaper, - // Meitei Mayek - modi: UniversalShaper, - // Modi - // mong: UniversalShaper, // Mongolian - // 'nko ': UniversalShaper, // N’Ko - hmng: UniversalShaper, - // Pahawh Hmong - // phag: UniversalShaper, // Phags-pa - // phlp: UniversalShaper, // Psalter Pahlavi - rjng: UniversalShaper, - // Rejang - saur: UniversalShaper, - // Saurashtra - shrd: UniversalShaper, - // Sharada - sidd: UniversalShaper, - // Siddham - sinh: UniversalShaper, - // Sinhala - sund: UniversalShaper, - // Sundanese - sylo: UniversalShaper, - // Syloti Nagri - tglg: UniversalShaper, - // Tagalog - tagb: UniversalShaper, - // Tagbanwa - tale: UniversalShaper, - // Tai Le - lana: UniversalShaper, - // Tai Tham - tavt: UniversalShaper, - // Tai Viet - takr: UniversalShaper, - // Takri - tibt: UniversalShaper, - // Tibetan - tfng: UniversalShaper, - // Tifinagh - tirh: UniversalShaper, - // Tirhuta - latn: DefaultShaper, - // Latin - DFLT: DefaultShaper // Default -}; -function choose(script) { - if (!Array.isArray(script)) { - script = [script]; - } - for (var _iterator57 = _createForOfIteratorHelperLoose(script), _step57; !(_step57 = _iterator57()).done;) { - var s = _step57.value; - var shaper = SHAPERS[s]; - if (shaper) { - return shaper; - } - } - return DefaultShaper; -} -var GSUBProcessor = /*#__PURE__*/function (_OTProcessor) { - function GSUBProcessor() { - return _OTProcessor.apply(this, arguments) || this; - } - _inheritsLoose(GSUBProcessor, _OTProcessor); - var _proto25 = GSUBProcessor.prototype; - _proto25.applyLookup = function applyLookup(lookupType, table) { - var _this7 = this; - switch (lookupType) { - case 1: - { - // Single Substitution - var index = this.coverageIndex(table.coverage); - if (index === -1) { - return false; - } - var glyph = this.glyphIterator.cur; - switch (table.version) { - case 1: - glyph.id = glyph.id + table.deltaGlyphID & 0xffff; - break; - case 2: - glyph.id = table.substitute.get(index); - break; - } - return true; - } - case 2: - { - // Multiple Substitution - var _index = this.coverageIndex(table.coverage); - if (_index !== -1) { - var _this$glyphs2; - var sequence = table.sequences.get(_index); - if (sequence.length === 0) { - // If the sequence length is zero, delete the glyph. - // The OpenType spec disallows this, but seems like Harfbuzz and Uniscribe allow it. - this.glyphs.splice(this.glyphIterator.index, 1); - return true; - } - this.glyphIterator.cur.id = sequence[0]; - this.glyphIterator.cur.ligatureComponent = 0; - var features = this.glyphIterator.cur.features; - var curGlyph = this.glyphIterator.cur; - var replacement = sequence.slice(1).map(function (gid, i) { - var glyph = new GlyphInfo(_this7.font, gid, undefined, features); - glyph.shaperInfo = curGlyph.shaperInfo; - glyph.isLigated = curGlyph.isLigated; - glyph.ligatureComponent = i + 1; - glyph.substituted = true; - glyph.isMultiplied = true; - return glyph; - }); - (_this$glyphs2 = this.glyphs).splice.apply(_this$glyphs2, [this.glyphIterator.index + 1, 0].concat(replacement)); - return true; - } - return false; - } - case 3: - { - // Alternate Substitution - var _index2 = this.coverageIndex(table.coverage); - if (_index2 !== -1) { - var USER_INDEX = 0; // TODO - - this.glyphIterator.cur.id = table.alternateSet.get(_index2)[USER_INDEX]; - return true; - } - return false; - } - case 4: - { - // Ligature Substitution - var _index3 = this.coverageIndex(table.coverage); - if (_index3 === -1) { - return false; - } - for (var _iterator58 = _createForOfIteratorHelperLoose(table.ligatureSets.get(_index3)), _step58; !(_step58 = _iterator58()).done;) { - var ligature = _step58.value; - var matched = this.sequenceMatchIndices(1, ligature.components); - if (!matched) { - continue; - } - var _curGlyph = this.glyphIterator.cur; // Concatenate all of the characters the new ligature will represent - - var characters = _curGlyph.codePoints.slice(); - for (var _iterator59 = _createForOfIteratorHelperLoose(matched), _step59; !(_step59 = _iterator59()).done;) { - var _characters; - var _index4 = _step59.value; - (_characters = characters).push.apply(_characters, this.glyphs[_index4].codePoints); - } // Create the replacement ligature glyph - - var ligatureGlyph = new GlyphInfo(this.font, ligature.glyph, characters, _curGlyph.features); - ligatureGlyph.shaperInfo = _curGlyph.shaperInfo; - ligatureGlyph.isLigated = true; - ligatureGlyph.substituted = true; // From Harfbuzz: - // - If it *is* a mark ligature, we don't allocate a new ligature id, and leave - // the ligature to keep its old ligature id. This will allow it to attach to - // a base ligature in GPOS. Eg. if the sequence is: LAM,LAM,SHADDA,FATHA,HEH, - // and LAM,LAM,HEH for a ligature, they will leave SHADDA and FATHA with a - // ligature id and component value of 2. Then if SHADDA,FATHA form a ligature - // later, we don't want them to lose their ligature id/component, otherwise - // GPOS will fail to correctly position the mark ligature on top of the - // LAM,LAM,HEH ligature. See https://bugzilla.gnome.org/show_bug.cgi?id=676343 - // - // - If a ligature is formed of components that some of which are also ligatures - // themselves, and those ligature components had marks attached to *their* - // components, we have to attach the marks to the new ligature component - // positions! Now *that*'s tricky! And these marks may be following the - // last component of the whole sequence, so we should loop forward looking - // for them and update them. - // - // Eg. the sequence is LAM,LAM,SHADDA,FATHA,HEH, and the font first forms a - // 'calt' ligature of LAM,HEH, leaving the SHADDA and FATHA with a ligature - // id and component == 1. Now, during 'liga', the LAM and the LAM-HEH ligature - // form a LAM-LAM-HEH ligature. We need to reassign the SHADDA and FATHA to - // the new ligature with a component value of 2. - // - // This in fact happened to a font... See https://bugzilla.gnome.org/show_bug.cgi?id=437633 - - var isMarkLigature = _curGlyph.isMark; - for (var i = 0; i < matched.length && isMarkLigature; i++) { - isMarkLigature = this.glyphs[matched[i]].isMark; - } - ligatureGlyph.ligatureID = isMarkLigature ? null : this.ligatureID++; - var lastLigID = _curGlyph.ligatureID; - var lastNumComps = _curGlyph.codePoints.length; - var curComps = lastNumComps; - var idx = this.glyphIterator.index + 1; // Set ligatureID and ligatureComponent on glyphs that were skipped in the matched sequence. - // This allows GPOS to attach marks to the correct ligature components. - - for (var _iterator60 = _createForOfIteratorHelperLoose(matched), _step60; !(_step60 = _iterator60()).done;) { - var matchIndex = _step60.value; - // Don't assign new ligature components for mark ligatures (see above) - if (isMarkLigature) { - idx = matchIndex; - } else { - while (idx < matchIndex) { - var ligatureComponent = curComps - lastNumComps + Math.min(this.glyphs[idx].ligatureComponent || 1, lastNumComps); - this.glyphs[idx].ligatureID = ligatureGlyph.ligatureID; - this.glyphs[idx].ligatureComponent = ligatureComponent; - idx++; - } - } - lastLigID = this.glyphs[idx].ligatureID; - lastNumComps = this.glyphs[idx].codePoints.length; - curComps += lastNumComps; - idx++; // skip base glyph - } // Adjust ligature components for any marks following - - if (lastLigID && !isMarkLigature) { - for (var _i = idx; _i < this.glyphs.length; _i++) { - if (this.glyphs[_i].ligatureID === lastLigID) { - var ligatureComponent = curComps - lastNumComps + Math.min(this.glyphs[_i].ligatureComponent || 1, lastNumComps); - this.glyphs[_i].ligatureComponent = ligatureComponent; - } else { - break; - } - } - } // Delete the matched glyphs, and replace the current glyph with the ligature glyph - - for (var _i2 = matched.length - 1; _i2 >= 0; _i2--) { - this.glyphs.splice(matched[_i2], 1); - } - this.glyphs[this.glyphIterator.index] = ligatureGlyph; - return true; - } - return false; - } - case 5: - // Contextual Substitution - return this.applyContext(table); - case 6: - // Chaining Contextual Substitution - return this.applyChainingContext(table); - case 7: - // Extension Substitution - return this.applyLookup(table.lookupType, table.extension); - default: - throw new Error("GSUB lookupType ".concat(lookupType, " is not supported")); - } - }; - return GSUBProcessor; -}(OTProcessor); -var GPOSProcessor = /*#__PURE__*/function (_OTProcessor2) { - function GPOSProcessor() { - return _OTProcessor2.apply(this, arguments) || this; - } - _inheritsLoose(GPOSProcessor, _OTProcessor2); - var _proto26 = GPOSProcessor.prototype; - _proto26.applyPositionValue = function applyPositionValue(sequenceIndex, value) { - var position = this.positions[this.glyphIterator.peekIndex(sequenceIndex)]; - if (value.xAdvance != null) { - position.xAdvance += value.xAdvance; - } - if (value.yAdvance != null) { - position.yAdvance += value.yAdvance; - } - if (value.xPlacement != null) { - position.xOffset += value.xPlacement; - } - if (value.yPlacement != null) { - position.yOffset += value.yPlacement; - } // Adjustments for font variations - - var variationProcessor = this.font._variationProcessor; - var variationStore = this.font.GDEF && this.font.GDEF.itemVariationStore; - if (variationProcessor && variationStore) { - if (value.xPlaDevice) { - position.xOffset += variationProcessor.getDelta(variationStore, value.xPlaDevice.a, value.xPlaDevice.b); - } - if (value.yPlaDevice) { - position.yOffset += variationProcessor.getDelta(variationStore, value.yPlaDevice.a, value.yPlaDevice.b); - } - if (value.xAdvDevice) { - position.xAdvance += variationProcessor.getDelta(variationStore, value.xAdvDevice.a, value.xAdvDevice.b); - } - if (value.yAdvDevice) { - position.yAdvance += variationProcessor.getDelta(variationStore, value.yAdvDevice.a, value.yAdvDevice.b); - } - } // TODO: device tables - }; - _proto26.applyLookup = function applyLookup(lookupType, table) { - switch (lookupType) { - case 1: - { - // Single positioning value - var index = this.coverageIndex(table.coverage); - if (index === -1) { - return false; - } - switch (table.version) { - case 1: - this.applyPositionValue(0, table.value); - break; - case 2: - this.applyPositionValue(0, table.values.get(index)); - break; - } - return true; - } - case 2: - { - // Pair Adjustment Positioning - var nextGlyph = this.glyphIterator.peek(); - if (!nextGlyph) { - return false; - } - var _index = this.coverageIndex(table.coverage); - if (_index === -1) { - return false; - } - switch (table.version) { - case 1: - // Adjustments for glyph pairs - var set = table.pairSets.get(_index); - for (var _iterator61 = _createForOfIteratorHelperLoose(set), _step61; !(_step61 = _iterator61()).done;) { - var _pair = _step61.value; - if (_pair.secondGlyph === nextGlyph.id) { - this.applyPositionValue(0, _pair.value1); - this.applyPositionValue(1, _pair.value2); - return true; - } - } - return false; - case 2: - // Class pair adjustment - var class1 = this.getClassID(this.glyphIterator.cur.id, table.classDef1); - var class2 = this.getClassID(nextGlyph.id, table.classDef2); - if (class1 === -1 || class2 === -1) { - return false; - } - var pair = table.classRecords.get(class1).get(class2); - this.applyPositionValue(0, pair.value1); - this.applyPositionValue(1, pair.value2); - return true; - } - } - case 3: - { - // Cursive Attachment Positioning - var nextIndex = this.glyphIterator.peekIndex(); - var _nextGlyph = this.glyphs[nextIndex]; - if (!_nextGlyph) { - return false; - } - var curRecord = table.entryExitRecords[this.coverageIndex(table.coverage)]; - if (!curRecord || !curRecord.exitAnchor) { - return false; - } - var nextRecord = table.entryExitRecords[this.coverageIndex(table.coverage, _nextGlyph.id)]; - if (!nextRecord || !nextRecord.entryAnchor) { - return false; - } - var entry = this.getAnchor(nextRecord.entryAnchor); - var exit = this.getAnchor(curRecord.exitAnchor); - var cur = this.positions[this.glyphIterator.index]; - var next = this.positions[nextIndex]; - switch (this.direction) { - case 'ltr': - cur.xAdvance = exit.x + cur.xOffset; - var d = entry.x + next.xOffset; - next.xAdvance -= d; - next.xOffset -= d; - break; - case 'rtl': - d = exit.x + cur.xOffset; - cur.xAdvance -= d; - cur.xOffset -= d; - next.xAdvance = entry.x + next.xOffset; - break; - } - if (this.glyphIterator.flags.rightToLeft) { - this.glyphIterator.cur.cursiveAttachment = nextIndex; - cur.yOffset = entry.y - exit.y; - } else { - _nextGlyph.cursiveAttachment = this.glyphIterator.index; - cur.yOffset = exit.y - entry.y; - } - return true; - } - case 4: - { - // Mark to base positioning - var markIndex = this.coverageIndex(table.markCoverage); - if (markIndex === -1) { - return false; - } // search backward for a base glyph - - var baseGlyphIndex = this.glyphIterator.index; - while (--baseGlyphIndex >= 0 && (this.glyphs[baseGlyphIndex].isMark || this.glyphs[baseGlyphIndex].ligatureComponent > 0)) {} - if (baseGlyphIndex < 0) { - return false; - } - var baseIndex = this.coverageIndex(table.baseCoverage, this.glyphs[baseGlyphIndex].id); - if (baseIndex === -1) { - return false; - } - var markRecord = table.markArray[markIndex]; - var baseAnchor = table.baseArray[baseIndex][markRecord.class]; - this.applyAnchor(markRecord, baseAnchor, baseGlyphIndex); - return true; - } - case 5: - { - // Mark to ligature positioning - var _markIndex = this.coverageIndex(table.markCoverage); - if (_markIndex === -1) { - return false; - } // search backward for a base glyph - - var _baseGlyphIndex = this.glyphIterator.index; - while (--_baseGlyphIndex >= 0 && this.glyphs[_baseGlyphIndex].isMark) {} - if (_baseGlyphIndex < 0) { - return false; - } - var ligIndex = this.coverageIndex(table.ligatureCoverage, this.glyphs[_baseGlyphIndex].id); - if (ligIndex === -1) { - return false; - } - var ligAttach = table.ligatureArray[ligIndex]; - var markGlyph = this.glyphIterator.cur; - var ligGlyph = this.glyphs[_baseGlyphIndex]; - var compIndex = ligGlyph.ligatureID && ligGlyph.ligatureID === markGlyph.ligatureID && markGlyph.ligatureComponent > 0 ? Math.min(markGlyph.ligatureComponent, ligGlyph.codePoints.length) - 1 : ligGlyph.codePoints.length - 1; - var _markRecord = table.markArray[_markIndex]; - var _baseAnchor = ligAttach[compIndex][_markRecord.class]; - this.applyAnchor(_markRecord, _baseAnchor, _baseGlyphIndex); - return true; - } - case 6: - { - // Mark to mark positioning - var mark1Index = this.coverageIndex(table.mark1Coverage); - if (mark1Index === -1) { - return false; - } // get the previous mark to attach to - - var prevIndex = this.glyphIterator.peekIndex(-1); - var prev = this.glyphs[prevIndex]; - if (!prev || !prev.isMark) { - return false; - } - var _cur = this.glyphIterator.cur; // The following logic was borrowed from Harfbuzz - - var good = false; - if (_cur.ligatureID === prev.ligatureID) { - if (!_cur.ligatureID) { - // Marks belonging to the same base - good = true; - } else if (_cur.ligatureComponent === prev.ligatureComponent) { - // Marks belonging to the same ligature component - good = true; - } - } else { - // If ligature ids don't match, it may be the case that one of the marks - // itself is a ligature, in which case match. - if (_cur.ligatureID && !_cur.ligatureComponent || prev.ligatureID && !prev.ligatureComponent) { - good = true; - } - } - if (!good) { - return false; - } - var mark2Index = this.coverageIndex(table.mark2Coverage, prev.id); - if (mark2Index === -1) { - return false; - } - var _markRecord2 = table.mark1Array[mark1Index]; - var _baseAnchor2 = table.mark2Array[mark2Index][_markRecord2.class]; - this.applyAnchor(_markRecord2, _baseAnchor2, prevIndex); - return true; - } - case 7: - // Contextual positioning - return this.applyContext(table); - case 8: - // Chaining contextual positioning - return this.applyChainingContext(table); - case 9: - // Extension positioning - return this.applyLookup(table.lookupType, table.extension); - default: - throw new Error("Unsupported GPOS table: ".concat(lookupType)); - } - }; - _proto26.applyAnchor = function applyAnchor(markRecord, baseAnchor, baseGlyphIndex) { - var baseCoords = this.getAnchor(baseAnchor); - var markCoords = this.getAnchor(markRecord.markAnchor); - var basePos = this.positions[baseGlyphIndex]; - var markPos = this.positions[this.glyphIterator.index]; - markPos.xOffset = baseCoords.x - markCoords.x; - markPos.yOffset = baseCoords.y - markCoords.y; - this.glyphIterator.cur.markAttachment = baseGlyphIndex; - }; - _proto26.getAnchor = function getAnchor(anchor) { - // TODO: contour point, device tables - var x = anchor.xCoordinate; - var y = anchor.yCoordinate; // Adjustments for font variations - - var variationProcessor = this.font._variationProcessor; - var variationStore = this.font.GDEF && this.font.GDEF.itemVariationStore; - if (variationProcessor && variationStore) { - if (anchor.xDeviceTable) { - x += variationProcessor.getDelta(variationStore, anchor.xDeviceTable.a, anchor.xDeviceTable.b); - } - if (anchor.yDeviceTable) { - y += variationProcessor.getDelta(variationStore, anchor.yDeviceTable.a, anchor.yDeviceTable.b); - } - } - return { - x: x, - y: y - }; - }; - _proto26.applyFeatures = function applyFeatures(userFeatures, glyphs, advances) { - _OTProcessor2.prototype.applyFeatures.call(this, userFeatures, glyphs, advances); - for (var i = 0; i < this.glyphs.length; i++) { - this.fixCursiveAttachment(i); - } - this.fixMarkAttachment(); - }; - _proto26.fixCursiveAttachment = function fixCursiveAttachment(i) { - var glyph = this.glyphs[i]; - if (glyph.cursiveAttachment != null) { - var j = glyph.cursiveAttachment; - glyph.cursiveAttachment = null; - this.fixCursiveAttachment(j); - this.positions[i].yOffset += this.positions[j].yOffset; - } - }; - _proto26.fixMarkAttachment = function fixMarkAttachment() { - for (var i = 0; i < this.glyphs.length; i++) { - var glyph = this.glyphs[i]; - if (glyph.markAttachment != null) { - var j = glyph.markAttachment; - this.positions[i].xOffset += this.positions[j].xOffset; - this.positions[i].yOffset += this.positions[j].yOffset; - if (this.direction === 'ltr') { - for (var k = j; k < i; k++) { - this.positions[i].xOffset -= this.positions[k].xAdvance; - this.positions[i].yOffset -= this.positions[k].yAdvance; - } - } else { - for (var _k = j + 1; _k < i + 1; _k++) { - this.positions[i].xOffset += this.positions[_k].xAdvance; - this.positions[i].yOffset += this.positions[_k].yAdvance; - } - } - } - } - }; - return GPOSProcessor; -}(OTProcessor); -var OTLayoutEngine = /*#__PURE__*/function () { - function OTLayoutEngine(font) { - this.font = font; - this.glyphInfos = null; - this.plan = null; - this.GSUBProcessor = null; - this.GPOSProcessor = null; - this.fallbackPosition = true; - if (font.GSUB) { - this.GSUBProcessor = new GSUBProcessor(font, font.GSUB); - } - if (font.GPOS) { - this.GPOSProcessor = new GPOSProcessor(font, font.GPOS); - } - } - var _proto27 = OTLayoutEngine.prototype; - _proto27.setup = function setup(glyphRun) { - var _this8 = this; - // Map glyphs to GlyphInfo objects so data can be passed between - // GSUB and GPOS without mutating the real (shared) Glyph objects. - this.glyphInfos = glyphRun.glyphs.map(function (glyph) { - return new GlyphInfo(_this8.font, glyph.id, [].concat(glyph.codePoints)); - }); // Select a script based on what is available in GSUB/GPOS. - - var script = null; - if (this.GPOSProcessor) { - script = this.GPOSProcessor.selectScript(glyphRun.script, glyphRun.language, glyphRun.direction); - } - if (this.GSUBProcessor) { - script = this.GSUBProcessor.selectScript(glyphRun.script, glyphRun.language, glyphRun.direction); - } // Choose a shaper based on the script, and setup a shaping plan. - // This determines which features to apply to which glyphs. - - this.shaper = choose(script); - this.plan = new ShapingPlan(this.font, script, glyphRun.direction); - this.shaper.plan(this.plan, this.glyphInfos, glyphRun.features); // Assign chosen features to output glyph run - - for (var key in this.plan.allFeatures) { - glyphRun.features[key] = true; - } - }; - _proto27.substitute = function substitute(glyphRun) { - var _this9 = this; - if (this.GSUBProcessor) { - this.plan.process(this.GSUBProcessor, this.glyphInfos); // Map glyph infos back to normal Glyph objects - - glyphRun.glyphs = this.glyphInfos.map(function (glyphInfo) { - return _this9.font.getGlyph(glyphInfo.id, glyphInfo.codePoints); - }); - } - }; - _proto27.position = function position(glyphRun) { - if (this.shaper.zeroMarkWidths === 'BEFORE_GPOS') { - this.zeroMarkAdvances(glyphRun.positions); - } - if (this.GPOSProcessor) { - this.plan.process(this.GPOSProcessor, this.glyphInfos, glyphRun.positions); - } - if (this.shaper.zeroMarkWidths === 'AFTER_GPOS') { - this.zeroMarkAdvances(glyphRun.positions); - } // Reverse the glyphs and positions if the script is right-to-left - - if (glyphRun.direction === 'rtl') { - glyphRun.glyphs.reverse(); - glyphRun.positions.reverse(); - } - return this.GPOSProcessor && this.GPOSProcessor.features; - }; - _proto27.zeroMarkAdvances = function zeroMarkAdvances(positions) { - for (var i = 0; i < this.glyphInfos.length; i++) { - if (this.glyphInfos[i].isMark) { - positions[i].xAdvance = 0; - positions[i].yAdvance = 0; - } - } - }; - _proto27.cleanup = function cleanup() { - this.glyphInfos = null; - this.plan = null; - this.shaper = null; - }; - _proto27.getAvailableFeatures = function getAvailableFeatures(script, language) { - var features = []; - if (this.GSUBProcessor) { - this.GSUBProcessor.selectScript(script, language); - features.push.apply(features, Object.keys(this.GSUBProcessor.features)); - } - if (this.GPOSProcessor) { - this.GPOSProcessor.selectScript(script, language); - features.push.apply(features, Object.keys(this.GPOSProcessor.features)); - } - return features; - }; - return OTLayoutEngine; -}(); -var LayoutEngine = /*#__PURE__*/function () { - function LayoutEngine(font) { - this.font = font; - this.unicodeLayoutEngine = null; - this.kernProcessor = null; // Choose an advanced layout engine. We try the AAT morx table first since more - // scripts are currently supported because the shaping logic is built into the font. - - if (this.font.morx) { - this.engine = new AATLayoutEngine(this.font); - } else if (this.font.GSUB || this.font.GPOS) { - this.engine = new OTLayoutEngine(this.font); - } - } - var _proto28 = LayoutEngine.prototype; - _proto28.layout = function layout(string, features, script, language, direction) { - // Make the features parameter optional - if (typeof features === 'string') { - direction = language; - language = script; - script = features; - features = []; - } // Map string to glyphs if needed - - if (typeof string === 'string') { - // Attempt to detect the script from the string if not provided. - if (script == null) { - script = forString(string); - } - var glyphs = this.font.glyphsForString(string); - } else { - // Attempt to detect the script from the glyph code points if not provided. - if (script == null) { - var codePoints = []; - for (var _iterator62 = _createForOfIteratorHelperLoose(string), _step62; !(_step62 = _iterator62()).done;) { - var glyph = _step62.value; - codePoints.push.apply(codePoints, glyph.codePoints); - } - script = forCodePoints(codePoints); - } - var glyphs = string; - } - var glyphRun = new GlyphRun(glyphs, features, script, language, direction); // Return early if there are no glyphs - - if (glyphs.length === 0) { - glyphRun.positions = []; - return glyphRun; - } // Setup the advanced layout engine - - if (this.engine && this.engine.setup) { - this.engine.setup(glyphRun); - } // Substitute and position the glyphs - - this.substitute(glyphRun); - this.position(glyphRun); - this.hideDefaultIgnorables(glyphRun.glyphs, glyphRun.positions); // Let the layout engine clean up any state it might have - - if (this.engine && this.engine.cleanup) { - this.engine.cleanup(); - } - return glyphRun; - }; - _proto28.substitute = function substitute(glyphRun) { - // Call the advanced layout engine to make substitutions - if (this.engine && this.engine.substitute) { - this.engine.substitute(glyphRun); - } - }; - _proto28.position = function position(glyphRun) { - // Get initial glyph positions - glyphRun.positions = glyphRun.glyphs.map(function (glyph) { - return new GlyphPosition(glyph.advanceWidth); - }); - var positioned = null; // Call the advanced layout engine. Returns the features applied. - - if (this.engine && this.engine.position) { - positioned = this.engine.position(glyphRun); - } // if there is no GPOS table, use unicode properties to position marks. - - if (!positioned && (!this.engine || this.engine.fallbackPosition)) { - if (!this.unicodeLayoutEngine) { - this.unicodeLayoutEngine = new UnicodeLayoutEngine(this.font); - } - this.unicodeLayoutEngine.positionGlyphs(glyphRun.glyphs, glyphRun.positions); - } // if kerning is not supported by GPOS, do kerning with the TrueType/AAT kern table - - if ((!positioned || !positioned.kern) && glyphRun.features.kern !== false && this.font.kern) { - if (!this.kernProcessor) { - this.kernProcessor = new KernProcessor(this.font); - } - this.kernProcessor.process(glyphRun.glyphs, glyphRun.positions); - glyphRun.features.kern = true; - } - }; - _proto28.hideDefaultIgnorables = function hideDefaultIgnorables(glyphs, positions) { - var space = this.font.glyphForCodePoint(0x20); - for (var i = 0; i < glyphs.length; i++) { - if (this.isDefaultIgnorable(glyphs[i].codePoints[0])) { - glyphs[i] = space; - positions[i].xAdvance = 0; - positions[i].yAdvance = 0; - } - } - }; - _proto28.isDefaultIgnorable = function isDefaultIgnorable(ch) { - // From DerivedCoreProperties.txt in the Unicode database, - // minus U+115F, U+1160, U+3164 and U+FFA0, which is what - // Harfbuzz and Uniscribe do. - var plane = ch >> 16; - if (plane === 0) { - // BMP - switch (ch >> 8) { - case 0x00: - return ch === 0x00AD; - case 0x03: - return ch === 0x034F; - case 0x06: - return ch === 0x061C; - case 0x17: - return 0x17B4 <= ch && ch <= 0x17B5; - case 0x18: - return 0x180B <= ch && ch <= 0x180E; - case 0x20: - return 0x200B <= ch && ch <= 0x200F || 0x202A <= ch && ch <= 0x202E || 0x2060 <= ch && ch <= 0x206F; - case 0xFE: - return 0xFE00 <= ch && ch <= 0xFE0F || ch === 0xFEFF; - case 0xFF: - return 0xFFF0 <= ch && ch <= 0xFFF8; - default: - return false; - } - } else { - // Other planes - switch (plane) { - case 0x01: - return 0x1BCA0 <= ch && ch <= 0x1BCA3 || 0x1D173 <= ch && ch <= 0x1D17A; - case 0x0E: - return 0xE0000 <= ch && ch <= 0xE0FFF; - default: - return false; - } - } - }; - _proto28.getAvailableFeatures = function getAvailableFeatures(script, language) { - var features = []; - if (this.engine) { - features.push.apply(features, this.engine.getAvailableFeatures(script, language)); - } - if (this.font.kern && features.indexOf('kern') === -1) { - features.push('kern'); - } - return features; - }; - _proto28.stringsForGlyph = function stringsForGlyph(gid) { - var result = new Set(); - var codePoints = this.font._cmapProcessor.codePointsForGlyph(gid); - for (var _iterator63 = _createForOfIteratorHelperLoose(codePoints), _step63; !(_step63 = _iterator63()).done;) { - var codePoint = _step63.value; - result.add(String.fromCodePoint(codePoint)); - } - if (this.engine && this.engine.stringsForGlyph) { - for (var _iterator64 = _createForOfIteratorHelperLoose(this.engine.stringsForGlyph(gid)), _step64; !(_step64 = _iterator64()).done;) { - var string = _step64.value; - result.add(string); - } - } - return Array.from(result); - }; - return LayoutEngine; -}(); -var SVG_COMMANDS = { - moveTo: 'M', - lineTo: 'L', - quadraticCurveTo: 'Q', - bezierCurveTo: 'C', - closePath: 'Z' -}; -/** - * Path objects are returned by glyphs and represent the actual - * vector outlines for each glyph in the font. Paths can be converted - * to SVG path data strings, or to functions that can be applied to - * render the path to a graphics context. - */ -var Path = /*#__PURE__*/function () { - function Path() { - this.commands = []; - this._bbox = null; - this._cbox = null; - } - /** - * Compiles the path to a JavaScript function that can be applied with - * a graphics context in order to render the path. - * @return {string} - */ - var _proto29 = Path.prototype; - _proto29.toFunction = function toFunction() { - var _this0 = this; - return function (ctx) { - _this0.commands.forEach(function (c) { - return ctx[c.command].apply(ctx, c.args); - }); - }; - } - /** - * Converts the path to an SVG path data string - * @return {string} - */; - _proto29.toSVG = function toSVG() { - var cmds = this.commands.map(function (c) { - var args = c.args.map(function (arg) { - return Math.round(arg * 100) / 100; - }); - return "".concat(SVG_COMMANDS[c.command]).concat(args.join(' ')); - }); - return cmds.join(''); - } - /** - * Gets the "control box" of a path. - * This is like the bounding box, but it includes all points including - * control points of bezier segments and is much faster to compute than - * the real bounding box. - * @type {BBox} - */; - /** - * Applies a mapping function to each point in the path. - * @param {function} fn - * @return {Path} - */ - _proto29.mapPoints = function mapPoints(fn) { - var path = new Path(); - for (var _iterator65 = _createForOfIteratorHelperLoose(this.commands), _step65; !(_step65 = _iterator65()).done;) { - var c = _step65.value; - var args = []; - for (var i = 0; i < c.args.length; i += 2) { - var _fn = fn(c.args[i], c.args[i + 1]), - x = _fn[0], - y = _fn[1]; - args.push(x, y); - } - path[c.command].apply(path, args); - } - return path; - } - /** - * Transforms the path by the given matrix. - */; - _proto29.transform = function transform(m0, m1, m2, m3, m4, m5) { - return this.mapPoints(function (x, y) { - x = m0 * x + m2 * y + m4; - y = m1 * x + m3 * y + m5; - return [x, y]; - }); - } - /** - * Translates the path by the given offset. - */; - _proto29.translate = function translate(x, y) { - return this.transform(1, 0, 0, 1, x, y); - } - /** - * Rotates the path by the given angle (in radians). - */; - _proto29.rotate = function rotate(angle) { - var cos = Math.cos(angle); - var sin = Math.sin(angle); - return this.transform(cos, sin, -sin, cos, 0, 0); - } - /** - * Scales the path. - */; - _proto29.scale = function scale(scaleX, scaleY) { - if (scaleY === void 0) { - scaleY = scaleX; - } - return this.transform(scaleX, 0, 0, scaleY, 0, 0); - }; - return _createClass(Path, [{ - key: "cbox", - get: function get() { - if (!this._cbox) { - var cbox = new BBox(); - for (var _iterator66 = _createForOfIteratorHelperLoose(this.commands), _step66; !(_step66 = _iterator66()).done;) { - var command = _step66.value; - for (var i = 0; i < command.args.length; i += 2) { - cbox.addPoint(command.args[i], command.args[i + 1]); - } - } - this._cbox = Object.freeze(cbox); - } - return this._cbox; - } - /** - * Gets the exact bounding box of the path by evaluating curve segments. - * Slower to compute than the control box, but more accurate. - * @type {BBox} - */ - }, { - key: "bbox", - get: function get() { - if (this._bbox) { - return this._bbox; - } - var bbox = new BBox(); - var cx = 0, - cy = 0; - var f = function f(t) { - return Math.pow(1 - t, 3) * p0[i] + 3 * Math.pow(1 - t, 2) * t * p1[i] + 3 * (1 - t) * Math.pow(t, 2) * p2[i] + Math.pow(t, 3) * p3[i]; - }; - for (var _iterator67 = _createForOfIteratorHelperLoose(this.commands), _step67; !(_step67 = _iterator67()).done;) { - var c = _step67.value; - switch (c.command) { - case 'moveTo': - case 'lineTo': - var _c$args = c.args, - x = _c$args[0], - y = _c$args[1]; - bbox.addPoint(x, y); - cx = x; - cy = y; - break; - case 'quadraticCurveTo': - case 'bezierCurveTo': - if (c.command === 'quadraticCurveTo') { - // http://fontforge.org/bezier.html - var _c$args2 = c.args, - qp1x = _c$args2[0], - qp1y = _c$args2[1], - p3x = _c$args2[2], - p3y = _c$args2[3]; - var cp1x = cx + 2 / 3 * (qp1x - cx); // CP1 = QP0 + 2/3 * (QP1-QP0) - - var cp1y = cy + 2 / 3 * (qp1y - cy); - var cp2x = p3x + 2 / 3 * (qp1x - p3x); // CP2 = QP2 + 2/3 * (QP1-QP2) - - var cp2y = p3y + 2 / 3 * (qp1y - p3y); - } else { - var _c$args3 = c.args, - cp1x = _c$args3[0], - cp1y = _c$args3[1], - cp2x = _c$args3[2], - cp2y = _c$args3[3], - p3x = _c$args3[4], - p3y = _c$args3[5]; - } // http://blog.hackers-cafe.net/2009/06/how-to-calculate-bezier-curves-bounding.html - - bbox.addPoint(p3x, p3y); - var p0 = [cx, cy]; - var p1 = [cp1x, cp1y]; - var p2 = [cp2x, cp2y]; - var p3 = [p3x, p3y]; - for (var i = 0; i <= 1; i++) { - var b = 6 * p0[i] - 12 * p1[i] + 6 * p2[i]; - var a = -3 * p0[i] + 9 * p1[i] - 9 * p2[i] + 3 * p3[i]; - c = 3 * p1[i] - 3 * p0[i]; - if (a === 0) { - if (b === 0) { - continue; - } - var t = -c / b; - if (0 < t && t < 1) { - if (i === 0) { - bbox.addPoint(f(t), bbox.maxY); - } else if (i === 1) { - bbox.addPoint(bbox.maxX, f(t)); - } - } - continue; - } - var b2ac = Math.pow(b, 2) - 4 * c * a; - if (b2ac < 0) { - continue; - } - var t1 = (-b + Math.sqrt(b2ac)) / (2 * a); - if (0 < t1 && t1 < 1) { - if (i === 0) { - bbox.addPoint(f(t1), bbox.maxY); - } else if (i === 1) { - bbox.addPoint(bbox.maxX, f(t1)); - } - } - var t2 = (-b - Math.sqrt(b2ac)) / (2 * a); - if (0 < t2 && t2 < 1) { - if (i === 0) { - bbox.addPoint(f(t2), bbox.maxY); - } else if (i === 1) { - bbox.addPoint(bbox.maxX, f(t2)); - } - } - } - cx = p3x; - cy = p3y; - break; - } - } - return this._bbox = Object.freeze(bbox); - } - }]); -}(); -var _loop = function _loop(command) { - Path.prototype[command] = function () { - this._bbox = this._cbox = null; - for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { - args[_key2] = arguments[_key2]; - } - this.commands.push({ - command: command, - args: args - }); - return this; - }; -}; -for (var _i1 = 0, _arr = ['moveTo', 'lineTo', 'quadraticCurveTo', 'bezierCurveTo', 'closePath']; _i1 < _arr.length; _i1++) { - var command = _arr[_i1]; - _loop(command); -} -var StandardNames = ['.notdef', '.null', 'nonmarkingreturn', 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent', 'ampersand', 'quotesingle', 'parenleft', 'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less', 'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright', 'asciicircum', 'underscore', 'grave', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'braceleft', 'bar', 'braceright', 'asciitilde', 'Adieresis', 'Aring', 'Ccedilla', 'Eacute', 'Ntilde', 'Odieresis', 'Udieresis', 'aacute', 'agrave', 'acircumflex', 'adieresis', 'atilde', 'aring', 'ccedilla', 'eacute', 'egrave', 'ecircumflex', 'edieresis', 'iacute', 'igrave', 'icircumflex', 'idieresis', 'ntilde', 'oacute', 'ograve', 'ocircumflex', 'odieresis', 'otilde', 'uacute', 'ugrave', 'ucircumflex', 'udieresis', 'dagger', 'degree', 'cent', 'sterling', 'section', 'bullet', 'paragraph', 'germandbls', 'registered', 'copyright', 'trademark', 'acute', 'dieresis', 'notequal', 'AE', 'Oslash', 'infinity', 'plusminus', 'lessequal', 'greaterequal', 'yen', 'mu', 'partialdiff', 'summation', 'product', 'pi', 'integral', 'ordfeminine', 'ordmasculine', 'Omega', 'ae', 'oslash', 'questiondown', 'exclamdown', 'logicalnot', 'radical', 'florin', 'approxequal', 'Delta', 'guillemotleft', 'guillemotright', 'ellipsis', 'nonbreakingspace', 'Agrave', 'Atilde', 'Otilde', 'OE', 'oe', 'endash', 'emdash', 'quotedblleft', 'quotedblright', 'quoteleft', 'quoteright', 'divide', 'lozenge', 'ydieresis', 'Ydieresis', 'fraction', 'currency', 'guilsinglleft', 'guilsinglright', 'fi', 'fl', 'daggerdbl', 'periodcentered', 'quotesinglbase', 'quotedblbase', 'perthousand', 'Acircumflex', 'Ecircumflex', 'Aacute', 'Edieresis', 'Egrave', 'Iacute', 'Icircumflex', 'Idieresis', 'Igrave', 'Oacute', 'Ocircumflex', 'apple', 'Ograve', 'Uacute', 'Ucircumflex', 'Ugrave', 'dotlessi', 'circumflex', 'tilde', 'macron', 'breve', 'dotaccent', 'ring', 'cedilla', 'hungarumlaut', 'ogonek', 'caron', 'Lslash', 'lslash', 'Scaron', 'scaron', 'Zcaron', 'zcaron', 'brokenbar', 'Eth', 'eth', 'Yacute', 'yacute', 'Thorn', 'thorn', 'minus', 'multiply', 'onesuperior', 'twosuperior', 'threesuperior', 'onehalf', 'onequarter', 'threequarters', 'franc', 'Gbreve', 'gbreve', 'Idotaccent', 'Scedilla', 'scedilla', 'Cacute', 'cacute', 'Ccaron', 'ccaron', 'dcroat']; -var _class$3; -/** - * Glyph objects represent a glyph in the font. They have various properties for accessing metrics and - * the actual vector path the glyph represents, and methods for rendering the glyph to a graphics context. - * - * You do not create glyph objects directly. They are created by various methods on the font object. - * There are several subclasses of the base Glyph class internally that may be returned depending - * on the font format, but they all inherit from this class. - */ - -var Glyph = (_class$3 = /*#__PURE__*/function () { - function Glyph(id, codePoints, font) { - /** - * The glyph id in the font - * @type {number} - */ - this.id = id; - /** - * An array of unicode code points that are represented by this glyph. - * There can be multiple code points in the case of ligatures and other glyphs - * that represent multiple visual characters. - * @type {number[]} - */ - - this.codePoints = codePoints; - this._font = font; // TODO: get this info from GDEF if available - - this.isMark = this.codePoints.length > 0 && this.codePoints.every(unicode.isMark); - this.isLigature = this.codePoints.length > 1; - } - var _proto30 = Glyph.prototype; - _proto30._getPath = function _getPath() { - return new Path(); - }; - _proto30._getCBox = function _getCBox() { - return this.path.cbox; - }; - _proto30._getBBox = function _getBBox() { - return this.path.bbox; - }; - _proto30._getTableMetrics = function _getTableMetrics(table) { - if (this.id < table.metrics.length) { - return table.metrics.get(this.id); - } - var metric = table.metrics.get(table.metrics.length - 1); - var res = { - advance: metric ? metric.advance : 0, - bearing: table.bearings.get(this.id - table.metrics.length) || 0 - }; - return res; - }; - _proto30._getMetrics = function _getMetrics(cbox) { - if (this._metrics) { - return this._metrics; - } - var _this$_getTableMetric = this._getTableMetrics(this._font.hmtx), - advanceWidth = _this$_getTableMetric.advance, - leftBearing = _this$_getTableMetric.bearing; // For vertical metrics, use vmtx if available, or fall back to global data from OS/2 or hhea - - if (this._font.vmtx) { - var _this$_getTableMetric2 = this._getTableMetrics(this._font.vmtx), - advanceHeight = _this$_getTableMetric2.advance, - topBearing = _this$_getTableMetric2.bearing; - } else { - var os2; - if (typeof cbox === 'undefined' || cbox === null) { - cbox = this.cbox; - } - if ((os2 = this._font['OS/2']) && os2.version > 0) { - var advanceHeight = Math.abs(os2.typoAscender - os2.typoDescender); - var topBearing = os2.typoAscender - cbox.maxY; - } else { - var hhea = this._font.hhea; - var advanceHeight = Math.abs(hhea.ascent - hhea.descent); - var topBearing = hhea.ascent - cbox.maxY; - } - } - if (this._font._variationProcessor && this._font.HVAR) { - advanceWidth += this._font._variationProcessor.getAdvanceAdjustment(this.id, this._font.HVAR); - } - return this._metrics = { - advanceWidth: advanceWidth, - advanceHeight: advanceHeight, - leftBearing: leftBearing, - topBearing: topBearing - }; - } - /** - * The glyph’s control box. - * This is often the same as the bounding box, but is faster to compute. - * Because of the way bezier curves are defined, some of the control points - * can be outside of the bounding box. Where `bbox` takes this into account, - * `cbox` does not. Thus, cbox is less accurate, but faster to compute. - * See [here](http://www.freetype.org/freetype2/docs/glyphs/glyphs-6.html#section-2) - * for a more detailed description. - * - * @type {BBox} - */; - /** - * Returns a path scaled to the given font size. - * @param {number} size - * @return {Path} - */ - _proto30.getScaledPath = function getScaledPath(size) { - var scale = 1 / this._font.unitsPerEm * size; - return this.path.scale(scale); - } - /** - * The glyph's advance width. - * @type {number} - */; - _proto30._getName = function _getName() { - var post = this._font.post; - if (!post) { - return null; - } - switch (post.version) { - case 1: - return StandardNames[this.id]; - case 2: - var id = post.glyphNameIndex[this.id]; - if (id < StandardNames.length) { - return StandardNames[id]; - } - return post.names[id - StandardNames.length]; - case 2.5: - return StandardNames[this.id + post.offsets[this.id]]; - case 4: - return String.fromCharCode(post.map[this.id]); - } - } - /** - * The glyph's name - * @type {string} - */; - /** - * Renders the glyph to the given graphics context, at the specified font size. - * @param {CanvasRenderingContext2d} ctx - * @param {number} size - */ - _proto30.render = function render(ctx, size) { - ctx.save(); - var scale = 1 / this._font.head.unitsPerEm * size; - ctx.scale(scale, scale); - var fn = this.path.toFunction(); - fn(ctx); - ctx.fill(); - ctx.restore(); - }; - return _createClass(Glyph, [{ - key: "cbox", - get: function get() { - return this._getCBox(); - } - /** - * The glyph’s bounding box, i.e. the rectangle that encloses the - * glyph outline as tightly as possible. - * @type {BBox} - */ - }, { - key: "bbox", - get: function get() { - return this._getBBox(); - } - /** - * A vector Path object representing the glyph outline. - * @type {Path} - */ - }, { - key: "path", - get: function get() { - // Cache the path so we only decode it once - // Decoding is actually performed by subclasses - return this._getPath(); - } - }, { - key: "advanceWidth", - get: function get() { - return this._getMetrics().advanceWidth; - } - /** - * The glyph's advance height. - * @type {number} - */ - }, { - key: "advanceHeight", - get: function get() { - return this._getMetrics().advanceHeight; - } - }, { - key: "ligatureCaretPositions", - get: function get() {} - }, { - key: "name", - get: function get() { - return this._getName(); - } - }]); -}(), _applyDecoratedDescriptor(_class$3.prototype, "cbox", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "cbox"), _class$3.prototype), _applyDecoratedDescriptor(_class$3.prototype, "bbox", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "bbox"), _class$3.prototype), _applyDecoratedDescriptor(_class$3.prototype, "path", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "path"), _class$3.prototype), _applyDecoratedDescriptor(_class$3.prototype, "advanceWidth", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "advanceWidth"), _class$3.prototype), _applyDecoratedDescriptor(_class$3.prototype, "advanceHeight", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "advanceHeight"), _class$3.prototype), _applyDecoratedDescriptor(_class$3.prototype, "name", [cache], Object.getOwnPropertyDescriptor(_class$3.prototype, "name"), _class$3.prototype), _class$3); -var GlyfHeader = new r.Struct({ - numberOfContours: r.int16, - // if negative, this is a composite glyph - xMin: r.int16, - yMin: r.int16, - xMax: r.int16, - yMax: r.int16 -}); // Flags for simple glyphs - -var ON_CURVE = 1 << 0; -var X_SHORT_VECTOR = 1 << 1; -var Y_SHORT_VECTOR = 1 << 2; -var REPEAT = 1 << 3; -var SAME_X = 1 << 4; -var SAME_Y = 1 << 5; // Flags for composite glyphs - -var ARG_1_AND_2_ARE_WORDS = 1 << 0; -var WE_HAVE_A_SCALE = 1 << 3; -var MORE_COMPONENTS = 1 << 5; -var WE_HAVE_AN_X_AND_Y_SCALE = 1 << 6; -var WE_HAVE_A_TWO_BY_TWO = 1 << 7; -var WE_HAVE_INSTRUCTIONS = 1 << 8; -var Point = /*#__PURE__*/function () { - function Point(onCurve, endContour, x, y) { - if (x === void 0) { - x = 0; - } - if (y === void 0) { - y = 0; - } - this.onCurve = onCurve; - this.endContour = endContour; - this.x = x; - this.y = y; - } - var _proto31 = Point.prototype; - _proto31.copy = function copy() { - return new Point(this.onCurve, this.endContour, this.x, this.y); - }; - return Point; -}(); // Represents a component in a composite glyph -var Component = function Component(glyphID, dx, dy) { - this.glyphID = glyphID; - this.dx = dx; - this.dy = dy; - this.pos = 0; - this.scaleX = this.scaleY = 1; - this.scale01 = this.scale10 = 0; -}; -/** - * Represents a TrueType glyph. - */ -var TTFGlyph = /*#__PURE__*/function (_Glyph) { - function TTFGlyph() { - return _Glyph.apply(this, arguments) || this; - } - _inheritsLoose(TTFGlyph, _Glyph); - var _proto32 = TTFGlyph.prototype; - // Parses just the glyph header and returns the bounding box - _proto32._getCBox = function _getCBox(internal) { - // We need to decode the glyph if variation processing is requested, - // so it's easier just to recompute the path's cbox after decoding. - if (this._font._variationProcessor && !internal) { - return this.path.cbox; - } - var stream = this._font._getTableStream('glyf'); - stream.pos += this._font.loca.offsets[this.id]; - var glyph = GlyfHeader.decode(stream); - var cbox = new BBox(glyph.xMin, glyph.yMin, glyph.xMax, glyph.yMax); - return Object.freeze(cbox); - } // Parses a single glyph coordinate - ; - _proto32._parseGlyphCoord = function _parseGlyphCoord(stream, prev, short, same) { - if (short) { - var val = stream.readUInt8(); - if (!same) { - val = -val; - } - val += prev; - } else { - if (same) { - var val = prev; - } else { - var val = prev + stream.readInt16BE(); - } - } - return val; - } // Decodes the glyph data into points for simple glyphs, - // or components for composite glyphs - ; - _proto32._decode = function _decode() { - var glyfPos = this._font.loca.offsets[this.id]; - var nextPos = this._font.loca.offsets[this.id + 1]; // Nothing to do if there is no data for this glyph - - if (glyfPos === nextPos) { - return null; - } - var stream = this._font._getTableStream('glyf'); - stream.pos += glyfPos; - var startPos = stream.pos; - var glyph = GlyfHeader.decode(stream); - if (glyph.numberOfContours > 0) { - this._decodeSimple(glyph, stream); - } else if (glyph.numberOfContours < 0) { - this._decodeComposite(glyph, stream, startPos); - } - return glyph; - }; - _proto32._decodeSimple = function _decodeSimple(glyph, stream) { - // this is a simple glyph - glyph.points = []; - var endPtsOfContours = new r.Array(r.uint16, glyph.numberOfContours).decode(stream); - glyph.instructions = new r.Array(r.uint8, r.uint16).decode(stream); - var flags = []; - var numCoords = endPtsOfContours[endPtsOfContours.length - 1] + 1; - while (flags.length < numCoords) { - var flag = stream.readUInt8(); - flags.push(flag); // check for repeat flag - - if (flag & REPEAT) { - var count = stream.readUInt8(); - for (var j = 0; j < count; j++) { - flags.push(flag); - } - } - } - for (var i = 0; i < flags.length; i++) { - var flag = flags[i]; - var point = new Point(!!(flag & ON_CURVE), endPtsOfContours.indexOf(i) >= 0, 0, 0); - glyph.points.push(point); - } - var px = 0; - for (var i = 0; i < flags.length; i++) { - var flag = flags[i]; - glyph.points[i].x = px = this._parseGlyphCoord(stream, px, flag & X_SHORT_VECTOR, flag & SAME_X); - } - var py = 0; - for (var i = 0; i < flags.length; i++) { - var flag = flags[i]; - glyph.points[i].y = py = this._parseGlyphCoord(stream, py, flag & Y_SHORT_VECTOR, flag & SAME_Y); - } - if (this._font._variationProcessor) { - var points = glyph.points.slice(); - points.push.apply(points, this._getPhantomPoints(glyph)); - this._font._variationProcessor.transformPoints(this.id, points); - glyph.phantomPoints = points.slice(-4); - } - return; - }; - _proto32._decodeComposite = function _decodeComposite(glyph, stream, offset) { - if (offset === void 0) { - offset = 0; - } - // this is a composite glyph - glyph.components = []; - var haveInstructions = false; - var flags = MORE_COMPONENTS; - while (flags & MORE_COMPONENTS) { - flags = stream.readUInt16BE(); - var gPos = stream.pos - offset; - var glyphID = stream.readUInt16BE(); - if (!haveInstructions) { - haveInstructions = (flags & WE_HAVE_INSTRUCTIONS) !== 0; - } - if (flags & ARG_1_AND_2_ARE_WORDS) { - var dx = stream.readInt16BE(); - var dy = stream.readInt16BE(); - } else { - var dx = stream.readInt8(); - var dy = stream.readInt8(); - } - var component = new Component(glyphID, dx, dy); - component.pos = gPos; - if (flags & WE_HAVE_A_SCALE) { - // fixed number with 14 bits of fraction - component.scaleX = component.scaleY = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - } else if (flags & WE_HAVE_AN_X_AND_Y_SCALE) { - component.scaleX = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - component.scaleY = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - } else if (flags & WE_HAVE_A_TWO_BY_TWO) { - component.scaleX = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - component.scale01 = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - component.scale10 = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - component.scaleY = (stream.readUInt8() << 24 | stream.readUInt8() << 16) / 1073741824; - } - glyph.components.push(component); - } - if (this._font._variationProcessor) { - var points = []; - for (var j = 0; j < glyph.components.length; j++) { - var component = glyph.components[j]; - points.push(new Point(true, true, component.dx, component.dy)); - } - points.push.apply(points, this._getPhantomPoints(glyph)); - this._font._variationProcessor.transformPoints(this.id, points); - glyph.phantomPoints = points.splice(-4, 4); - for (var i = 0; i < points.length; i++) { - var point = points[i]; - glyph.components[i].dx = point.x; - glyph.components[i].dy = point.y; - } - } - return haveInstructions; - }; - _proto32._getPhantomPoints = function _getPhantomPoints(glyph) { - var cbox = this._getCBox(true); - if (this._metrics == null) { - this._metrics = Glyph.prototype._getMetrics.call(this, cbox); - } - var _this$_metrics = this._metrics, - advanceWidth = _this$_metrics.advanceWidth, - advanceHeight = _this$_metrics.advanceHeight, - leftBearing = _this$_metrics.leftBearing, - topBearing = _this$_metrics.topBearing; - return [new Point(false, true, glyph.xMin - leftBearing, 0), new Point(false, true, glyph.xMin - leftBearing + advanceWidth, 0), new Point(false, true, 0, glyph.yMax + topBearing), new Point(false, true, 0, glyph.yMax + topBearing + advanceHeight)]; - } // Decodes font data, resolves composite glyphs, and returns an array of contours - ; - _proto32._getContours = function _getContours() { - var glyph = this._decode(); - if (!glyph) { - return []; - } - var points = []; - if (glyph.numberOfContours < 0) { - // resolve composite glyphs - for (var _iterator68 = _createForOfIteratorHelperLoose(glyph.components), _step68; !(_step68 = _iterator68()).done;) { - var component = _step68.value; - var _contours = this._font.getGlyph(component.glyphID)._getContours(); - for (var i = 0; i < _contours.length; i++) { - var contour = _contours[i]; - for (var j = 0; j < contour.length; j++) { - var _point = contour[j]; - var x = _point.x * component.scaleX + _point.y * component.scale01 + component.dx; - var y = _point.y * component.scaleY + _point.x * component.scale10 + component.dy; - points.push(new Point(_point.onCurve, _point.endContour, x, y)); - } - } - } - } else { - points = glyph.points || []; - } // Recompute and cache metrics if we performed variation processing, and don't have an HVAR table - - if (glyph.phantomPoints && !this._font.directory.tables.HVAR) { - this._metrics.advanceWidth = glyph.phantomPoints[1].x - glyph.phantomPoints[0].x; - this._metrics.advanceHeight = glyph.phantomPoints[3].y - glyph.phantomPoints[2].y; - this._metrics.leftBearing = glyph.xMin - glyph.phantomPoints[0].x; - this._metrics.topBearing = glyph.phantomPoints[2].y - glyph.yMax; - } - var contours = []; - var cur = []; - for (var k = 0; k < points.length; k++) { - var point = points[k]; - cur.push(point); - if (point.endContour) { - contours.push(cur); - cur = []; - } - } - return contours; - }; - _proto32._getMetrics = function _getMetrics() { - if (this._metrics) { - return this._metrics; - } - var cbox = this._getCBox(true); - _Glyph.prototype._getMetrics.call(this, cbox); - if (this._font._variationProcessor && !this._font.HVAR) { - // No HVAR table, decode the glyph. This triggers recomputation of metrics. - this.path; - } - return this._metrics; - } // Converts contours to a Path object that can be rendered - ; - _proto32._getPath = function _getPath() { - var contours = this._getContours(); - var path = new Path(); - for (var i = 0; i < contours.length; i++) { - var contour = contours[i]; - var firstPt = contour[0]; - var lastPt = contour[contour.length - 1]; - var start = 0; - if (firstPt.onCurve) { - // The first point will be consumed by the moveTo command, so skip in the loop - var curvePt = null; - start = 1; - } else { - if (lastPt.onCurve) { - // Start at the last point if the first point is off curve and the last point is on curve - firstPt = lastPt; - } else { - // Start at the middle if both the first and last points are off curve - firstPt = new Point(false, false, (firstPt.x + lastPt.x) / 2, (firstPt.y + lastPt.y) / 2); - } - var curvePt = firstPt; - } - path.moveTo(firstPt.x, firstPt.y); - for (var j = start; j < contour.length; j++) { - var pt = contour[j]; - var prevPt = j === 0 ? firstPt : contour[j - 1]; - if (prevPt.onCurve && pt.onCurve) { - path.lineTo(pt.x, pt.y); - } else if (prevPt.onCurve && !pt.onCurve) { - var curvePt = pt; - } else if (!prevPt.onCurve && !pt.onCurve) { - var midX = (prevPt.x + pt.x) / 2; - var midY = (prevPt.y + pt.y) / 2; - path.quadraticCurveTo(prevPt.x, prevPt.y, midX, midY); - var curvePt = pt; - } else if (!prevPt.onCurve && pt.onCurve) { - path.quadraticCurveTo(curvePt.x, curvePt.y, pt.x, pt.y); - var curvePt = null; - } else { - throw new Error("Unknown TTF path state"); - } - } // Connect the first and last points - - if (curvePt) { - path.quadraticCurveTo(curvePt.x, curvePt.y, firstPt.x, firstPt.y); - } - path.closePath(); - } - return path; - }; - return TTFGlyph; -}(Glyph); -/** - * Represents an OpenType PostScript glyph, in the Compact Font Format. - */ -var CFFGlyph = /*#__PURE__*/function (_Glyph2) { - function CFFGlyph() { - return _Glyph2.apply(this, arguments) || this; - } - _inheritsLoose(CFFGlyph, _Glyph2); - var _proto33 = CFFGlyph.prototype; - _proto33._getName = function _getName() { - if (this._font.CFF2) { - return _Glyph2.prototype._getName.call(this); - } - return this._font['CFF '].getGlyphName(this.id); - }; - _proto33.bias = function bias(s) { - if (s.length < 1240) { - return 107; - } else if (s.length < 33900) { - return 1131; - } else { - return 32768; - } - }; - _proto33._getPath = function _getPath() { - var cff = this._font.CFF2 || this._font['CFF ']; - var stream = cff.stream; - var str = cff.topDict.CharStrings[this.id]; - var end = str.offset + str.length; - stream.pos = str.offset; - var path = new Path(); - var stack = []; - var trans = []; - var width = null; - var nStems = 0; - var x = 0, - y = 0; - var usedGsubrs; - var usedSubrs; - var open = false; - this._usedGsubrs = usedGsubrs = {}; - this._usedSubrs = usedSubrs = {}; - var gsubrs = cff.globalSubrIndex || []; - var gsubrsBias = this.bias(gsubrs); - var privateDict = cff.privateDictForGlyph(this.id) || {}; - var subrs = privateDict.Subrs || []; - var subrsBias = this.bias(subrs); - var vstore = cff.topDict.vstore && cff.topDict.vstore.itemVariationStore; - var vsindex = privateDict.vsindex; - var variationProcessor = this._font._variationProcessor; - function checkWidth() { - if (width == null) { - width = stack.shift() + privateDict.nominalWidthX; - } - } - function parseStems() { - if (stack.length % 2 !== 0) { - checkWidth(); - } - nStems += stack.length >> 1; - return stack.length = 0; - } - function moveTo(x, y) { - if (open) { - path.closePath(); - } - path.moveTo(x, y); - open = true; - } - var _parse = function parse() { - while (stream.pos < end) { - var op = stream.readUInt8(); - if (op < 32) { - switch (op) { - case 1: // hstem - - case 3: // vstem - - case 18: // hstemhm - - case 23: - // vstemhm - parseStems(); - break; - case 4: - // vmoveto - if (stack.length > 1) { - checkWidth(); - } - y += stack.shift(); - moveTo(x, y); - break; - case 5: - // rlineto - while (stack.length >= 2) { - x += stack.shift(); - y += stack.shift(); - path.lineTo(x, y); - } - break; - case 6: // hlineto - - case 7: - // vlineto - var phase = op === 6; - while (stack.length >= 1) { - if (phase) { - x += stack.shift(); - } else { - y += stack.shift(); - } - path.lineTo(x, y); - phase = !phase; - } - break; - case 8: - // rrcurveto - while (stack.length > 0) { - var c1x = x + stack.shift(); - var c1y = y + stack.shift(); - var c2x = c1x + stack.shift(); - var c2y = c1y + stack.shift(); - x = c2x + stack.shift(); - y = c2y + stack.shift(); - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - } - break; - case 10: - // callsubr - var index = stack.pop() + subrsBias; - var subr = subrs[index]; - if (subr) { - usedSubrs[index] = true; - var p = stream.pos; - var e = end; - stream.pos = subr.offset; - end = subr.offset + subr.length; - _parse(); - stream.pos = p; - end = e; - } - break; - case 11: - // return - if (cff.version >= 2) { - break; - } - return; - case 14: - // endchar - if (cff.version >= 2) { - break; - } - if (stack.length > 0) { - checkWidth(); - } - if (open) { - path.closePath(); - open = false; - } - break; - case 15: - { - // vsindex - if (cff.version < 2) { - throw new Error('vsindex operator not supported in CFF v1'); - } - vsindex = stack.pop(); - break; - } - case 16: - { - // blend - if (cff.version < 2) { - throw new Error('blend operator not supported in CFF v1'); - } - if (!variationProcessor) { - throw new Error('blend operator in non-variation font'); - } - var blendVector = variationProcessor.getBlendVector(vstore, vsindex); - var numBlends = stack.pop(); - var numOperands = numBlends * blendVector.length; - var delta = stack.length - numOperands; - var base = delta - numBlends; - for (var i = 0; i < numBlends; i++) { - var sum = stack[base + i]; - for (var j = 0; j < blendVector.length; j++) { - sum += blendVector[j] * stack[delta++]; - } - stack[base + i] = sum; - } - while (numOperands--) { - stack.pop(); - } - break; - } - case 19: // hintmask - - case 20: - // cntrmask - parseStems(); - stream.pos += nStems + 7 >> 3; - break; - case 21: - // rmoveto - if (stack.length > 2) { - checkWidth(); - } - x += stack.shift(); - y += stack.shift(); - moveTo(x, y); - break; - case 22: - // hmoveto - if (stack.length > 1) { - checkWidth(); - } - x += stack.shift(); - moveTo(x, y); - break; - case 24: - // rcurveline - while (stack.length >= 8) { - var c1x = x + stack.shift(); - var c1y = y + stack.shift(); - var c2x = c1x + stack.shift(); - var c2y = c1y + stack.shift(); - x = c2x + stack.shift(); - y = c2y + stack.shift(); - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - } - x += stack.shift(); - y += stack.shift(); - path.lineTo(x, y); - break; - case 25: - // rlinecurve - while (stack.length >= 8) { - x += stack.shift(); - y += stack.shift(); - path.lineTo(x, y); - } - var c1x = x + stack.shift(); - var c1y = y + stack.shift(); - var c2x = c1x + stack.shift(); - var c2y = c1y + stack.shift(); - x = c2x + stack.shift(); - y = c2y + stack.shift(); - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - break; - case 26: - // vvcurveto - if (stack.length % 2) { - x += stack.shift(); - } - while (stack.length >= 4) { - c1x = x; - c1y = y + stack.shift(); - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - x = c2x; - y = c2y + stack.shift(); - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - } - break; - case 27: - // hhcurveto - if (stack.length % 2) { - y += stack.shift(); - } - while (stack.length >= 4) { - c1x = x + stack.shift(); - c1y = y; - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - x = c2x + stack.shift(); - y = c2y; - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - } - break; - case 28: - // shortint - stack.push(stream.readInt16BE()); - break; - case 29: - // callgsubr - index = stack.pop() + gsubrsBias; - subr = gsubrs[index]; - if (subr) { - usedGsubrs[index] = true; - var p = stream.pos; - var e = end; - stream.pos = subr.offset; - end = subr.offset + subr.length; - _parse(); - stream.pos = p; - end = e; - } - break; - case 30: // vhcurveto - - case 31: - // hvcurveto - phase = op === 31; - while (stack.length >= 4) { - if (phase) { - c1x = x + stack.shift(); - c1y = y; - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - y = c2y + stack.shift(); - x = c2x + (stack.length === 1 ? stack.shift() : 0); - } else { - c1x = x; - c1y = y + stack.shift(); - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - x = c2x + stack.shift(); - y = c2y + (stack.length === 1 ? stack.shift() : 0); - } - path.bezierCurveTo(c1x, c1y, c2x, c2y, x, y); - phase = !phase; - } - break; - case 12: - op = stream.readUInt8(); - switch (op) { - case 3: - // and - var a = stack.pop(); - var b = stack.pop(); - stack.push(a && b ? 1 : 0); - break; - case 4: - // or - a = stack.pop(); - b = stack.pop(); - stack.push(a || b ? 1 : 0); - break; - case 5: - // not - a = stack.pop(); - stack.push(a ? 0 : 1); - break; - case 9: - // abs - a = stack.pop(); - stack.push(Math.abs(a)); - break; - case 10: - // add - a = stack.pop(); - b = stack.pop(); - stack.push(a + b); - break; - case 11: - // sub - a = stack.pop(); - b = stack.pop(); - stack.push(a - b); - break; - case 12: - // div - a = stack.pop(); - b = stack.pop(); - stack.push(a / b); - break; - case 14: - // neg - a = stack.pop(); - stack.push(-a); - break; - case 15: - // eq - a = stack.pop(); - b = stack.pop(); - stack.push(a === b ? 1 : 0); - break; - case 18: - // drop - stack.pop(); - break; - case 20: - // put - var val = stack.pop(); - var idx = stack.pop(); - trans[idx] = val; - break; - case 21: - // get - idx = stack.pop(); - stack.push(trans[idx] || 0); - break; - case 22: - // ifelse - var s1 = stack.pop(); - var s2 = stack.pop(); - var v1 = stack.pop(); - var v2 = stack.pop(); - stack.push(v1 <= v2 ? s1 : s2); - break; - case 23: - // random - stack.push(Math.random()); - break; - case 24: - // mul - a = stack.pop(); - b = stack.pop(); - stack.push(a * b); - break; - case 26: - // sqrt - a = stack.pop(); - stack.push(Math.sqrt(a)); - break; - case 27: - // dup - a = stack.pop(); - stack.push(a, a); - break; - case 28: - // exch - a = stack.pop(); - b = stack.pop(); - stack.push(b, a); - break; - case 29: - // index - idx = stack.pop(); - if (idx < 0) { - idx = 0; - } else if (idx > stack.length - 1) { - idx = stack.length - 1; - } - stack.push(stack[idx]); - break; - case 30: - // roll - var n = stack.pop(); - var _j = stack.pop(); - if (_j >= 0) { - while (_j > 0) { - var t = stack[n - 1]; - for (var _i = n - 2; _i >= 0; _i--) { - stack[_i + 1] = stack[_i]; - } - stack[0] = t; - _j--; - } - } else { - while (_j < 0) { - var t = stack[0]; - for (var _i2 = 0; _i2 <= n; _i2++) { - stack[_i2] = stack[_i2 + 1]; - } - stack[n - 1] = t; - _j++; - } - } - break; - case 34: - // hflex - c1x = x + stack.shift(); - c1y = y; - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - var c3x = c2x + stack.shift(); - var c3y = c2y; - var c4x = c3x + stack.shift(); - var c4y = c3y; - var c5x = c4x + stack.shift(); - var c5y = c4y; - var c6x = c5x + stack.shift(); - var c6y = c5y; - x = c6x; - y = c6y; - path.bezierCurveTo(c1x, c1y, c2x, c2y, c3x, c3y); - path.bezierCurveTo(c4x, c4y, c5x, c5y, c6x, c6y); - break; - case 35: - // flex - var pts = []; - for (var _i3 = 0; _i3 <= 5; _i3++) { - x += stack.shift(); - y += stack.shift(); - pts.push(x, y); - } - path.bezierCurveTo.apply(path, pts.slice(0, 6)); - path.bezierCurveTo.apply(path, pts.slice(6)); - stack.shift(); // fd - - break; - case 36: - // hflex1 - c1x = x + stack.shift(); - c1y = y + stack.shift(); - c2x = c1x + stack.shift(); - c2y = c1y + stack.shift(); - c3x = c2x + stack.shift(); - c3y = c2y; - c4x = c3x + stack.shift(); - c4y = c3y; - c5x = c4x + stack.shift(); - c5y = c4y + stack.shift(); - c6x = c5x + stack.shift(); - c6y = c5y; - x = c6x; - y = c6y; - path.bezierCurveTo(c1x, c1y, c2x, c2y, c3x, c3y); - path.bezierCurveTo(c4x, c4y, c5x, c5y, c6x, c6y); - break; - case 37: - // flex1 - var startx = x; - var starty = y; - pts = []; - for (var _i4 = 0; _i4 <= 4; _i4++) { - x += stack.shift(); - y += stack.shift(); - pts.push(x, y); - } - if (Math.abs(x - startx) > Math.abs(y - starty)) { - // horizontal - x += stack.shift(); - y = starty; - } else { - x = startx; - y += stack.shift(); - } - pts.push(x, y); - path.bezierCurveTo.apply(path, pts.slice(0, 6)); - path.bezierCurveTo.apply(path, pts.slice(6)); - break; - default: - throw new Error("Unknown op: 12 ".concat(op)); - } - break; - default: - throw new Error("Unknown op: ".concat(op)); - } - } else if (op < 247) { - stack.push(op - 139); - } else if (op < 251) { - var b1 = stream.readUInt8(); - stack.push((op - 247) * 256 + b1 + 108); - } else if (op < 255) { - var b1 = stream.readUInt8(); - stack.push(-(op - 251) * 256 - b1 - 108); - } else { - stack.push(stream.readInt32BE() / 65536); - } - } - }; - _parse(); - if (open) { - path.closePath(); - } - return path; - }; - return CFFGlyph; -}(Glyph); -var SBIXImage = new r.Struct({ - originX: r.uint16, - originY: r.uint16, - type: new r.String(4), - data: new r.Buffer(function (t) { - return t.parent.buflen - t._currentOffset; - }) -}); -/** - * Represents a color (e.g. emoji) glyph in Apple's SBIX format. - */ -var SBIXGlyph = /*#__PURE__*/function (_TTFGlyph) { - function SBIXGlyph() { - return _TTFGlyph.apply(this, arguments) || this; - } - _inheritsLoose(SBIXGlyph, _TTFGlyph); - var _proto34 = SBIXGlyph.prototype; - /** - * Returns an object representing a glyph image at the given point size. - * The object has a data property with a Buffer containing the actual image data, - * along with the image type, and origin. - * - * @param {number} size - * @return {object} - */ - _proto34.getImageForSize = function getImageForSize(size) { - for (var i = 0; i < this._font.sbix.imageTables.length; i++) { - var table = this._font.sbix.imageTables[i]; - if (table.ppem >= size) { - break; - } - } - var offsets = table.imageOffsets; - var start = offsets[this.id]; - var end = offsets[this.id + 1]; - if (start === end) { - return null; - } - this._font.stream.pos = start; - return SBIXImage.decode(this._font.stream, { - buflen: end - start - }); - }; - _proto34.render = function render(ctx, size) { - var img = this.getImageForSize(size); - if (img != null) { - var scale = size / this._font.unitsPerEm; - ctx.image(img.data, { - height: size, - x: img.originX, - y: (this.bbox.minY - img.originY) * scale - }); - } - if (this._font.sbix.flags.renderOutlines) { - _TTFGlyph.prototype.render.call(this, ctx, size); - } - }; - return SBIXGlyph; -}(TTFGlyph); -var COLRLayer = function COLRLayer(glyph, color) { - this.glyph = glyph; - this.color = color; -}; -/** - * Represents a color (e.g. emoji) glyph in Microsoft's COLR format. - * Each glyph in this format contain a list of colored layers, each - * of which is another vector glyph. - */ -var COLRGlyph = /*#__PURE__*/function (_Glyph3) { - function COLRGlyph() { - return _Glyph3.apply(this, arguments) || this; - } - _inheritsLoose(COLRGlyph, _Glyph3); - var _proto35 = COLRGlyph.prototype; - _proto35._getBBox = function _getBBox() { - var bbox = new BBox(); - for (var i = 0; i < this.layers.length; i++) { - var layer = this.layers[i]; - var b = layer.glyph.bbox; - bbox.addPoint(b.minX, b.minY); - bbox.addPoint(b.maxX, b.maxY); - } - return bbox; - } - /** - * Returns an array of objects containing the glyph and color for - * each layer in the composite color glyph. - * @type {object[]} - */; - _proto35.render = function render(ctx, size) { - for (var _iterator69 = _createForOfIteratorHelperLoose(this.layers), _step69; !(_step69 = _iterator69()).done;) { - var _step69$value = _step69.value, - glyph = _step69$value.glyph, - color = _step69$value.color; - ctx.fillColor([color.red, color.green, color.blue], color.alpha / 255 * 100); - glyph.render(ctx, size); - } - return; - }; - return _createClass(COLRGlyph, [{ - key: "layers", - get: function get() { - var cpal = this._font.CPAL; - var colr = this._font.COLR; - var low = 0; - var high = colr.baseGlyphRecord.length - 1; - while (low <= high) { - var mid = low + high >> 1; - var rec = colr.baseGlyphRecord[mid]; - if (this.id < rec.gid) { - high = mid - 1; - } else if (this.id > rec.gid) { - low = mid + 1; - } else { - var baseLayer = rec; - break; - } - } // if base glyph not found in COLR table, - // default to normal glyph from glyf or CFF - - if (baseLayer == null) { - var g = this._font._getBaseGlyph(this.id); - var color = { - red: 0, - green: 0, - blue: 0, - alpha: 255 - }; - return [new COLRLayer(g, color)]; - } // otherwise, return an array of all the layers - - var layers = []; - for (var i = baseLayer.firstLayerIndex; i < baseLayer.firstLayerIndex + baseLayer.numLayers; i++) { - var rec = colr.layerRecords[i]; - var color = cpal.colorRecords[rec.paletteIndex]; - var g = this._font._getBaseGlyph(rec.gid); - layers.push(new COLRLayer(g, color)); - } - return layers; - } - }]); -}(Glyph); -var TUPLES_SHARE_POINT_NUMBERS = 0x8000; -var TUPLE_COUNT_MASK = 0x0fff; -var EMBEDDED_TUPLE_COORD = 0x8000; -var INTERMEDIATE_TUPLE = 0x4000; -var PRIVATE_POINT_NUMBERS = 0x2000; -var TUPLE_INDEX_MASK = 0x0fff; -var POINTS_ARE_WORDS = 0x80; -var POINT_RUN_COUNT_MASK = 0x7f; -var DELTAS_ARE_ZERO = 0x80; -var DELTAS_ARE_WORDS = 0x40; -var DELTA_RUN_COUNT_MASK = 0x3f; -/** - * This class is transforms TrueType glyphs according to the data from - * the Apple Advanced Typography variation tables (fvar, gvar, and avar). - * These tables allow infinite adjustments to glyph weight, width, slant, - * and optical size without the designer needing to specify every exact style. - * - * Apple's documentation for these tables is not great, so thanks to the - * Freetype project for figuring much of this out. - * - * @private - */ -var GlyphVariationProcessor = /*#__PURE__*/function () { - function GlyphVariationProcessor(font, coords) { - this.font = font; - this.normalizedCoords = this.normalizeCoords(coords); - this.blendVectors = new Map(); - } - var _proto36 = GlyphVariationProcessor.prototype; - _proto36.normalizeCoords = function normalizeCoords(coords) { - // the default mapping is linear along each axis, in two segments: - // from the minValue to defaultValue, and from defaultValue to maxValue. - var normalized = []; - for (var i = 0; i < this.font.fvar.axis.length; i++) { - var axis = this.font.fvar.axis[i]; - if (coords[i] < axis.defaultValue) { - normalized.push((coords[i] - axis.defaultValue + Number.EPSILON) / (axis.defaultValue - axis.minValue + Number.EPSILON)); - } else { - normalized.push((coords[i] - axis.defaultValue + Number.EPSILON) / (axis.maxValue - axis.defaultValue + Number.EPSILON)); - } - } // if there is an avar table, the normalized value is calculated - // by interpolating between the two nearest mapped values. - - if (this.font.avar) { - for (var i = 0; i < this.font.avar.segment.length; i++) { - var segment = this.font.avar.segment[i]; - for (var j = 0; j < segment.correspondence.length; j++) { - var pair = segment.correspondence[j]; - if (j >= 1 && normalized[i] < pair.fromCoord) { - var prev = segment.correspondence[j - 1]; - normalized[i] = ((normalized[i] - prev.fromCoord) * (pair.toCoord - prev.toCoord) + Number.EPSILON) / (pair.fromCoord - prev.fromCoord + Number.EPSILON) + prev.toCoord; - break; - } - } - } - } - return normalized; - }; - _proto36.transformPoints = function transformPoints(gid, glyphPoints) { - if (!this.font.fvar || !this.font.gvar) { - return; - } - var gvar = this.font.gvar; - if (gid >= gvar.glyphCount) { - return; - } - var offset = gvar.offsets[gid]; - if (offset === gvar.offsets[gid + 1]) { - return; - } // Read the gvar data for this glyph - - var stream = this.font.stream; - stream.pos = offset; - if (stream.pos >= stream.length) { - return; - } - var tupleCount = stream.readUInt16BE(); - var offsetToData = offset + stream.readUInt16BE(); - if (tupleCount & TUPLES_SHARE_POINT_NUMBERS) { - var here = stream.pos; - stream.pos = offsetToData; - var sharedPoints = this.decodePoints(); - offsetToData = stream.pos; - stream.pos = here; - } - var origPoints = glyphPoints.map(function (pt) { - return pt.copy(); - }); - tupleCount &= TUPLE_COUNT_MASK; - for (var i = 0; i < tupleCount; i++) { - var tupleDataSize = stream.readUInt16BE(); - var tupleIndex = stream.readUInt16BE(); - if (tupleIndex & EMBEDDED_TUPLE_COORD) { - var tupleCoords = []; - for (var a = 0; a < gvar.axisCount; a++) { - tupleCoords.push(stream.readInt16BE() / 16384); - } - } else { - if ((tupleIndex & TUPLE_INDEX_MASK) >= gvar.globalCoordCount) { - throw new Error('Invalid gvar table'); - } - var tupleCoords = gvar.globalCoords[tupleIndex & TUPLE_INDEX_MASK]; - } - if (tupleIndex & INTERMEDIATE_TUPLE) { - var startCoords = []; - for (var _a = 0; _a < gvar.axisCount; _a++) { - startCoords.push(stream.readInt16BE() / 16384); - } - var endCoords = []; - for (var _a2 = 0; _a2 < gvar.axisCount; _a2++) { - endCoords.push(stream.readInt16BE() / 16384); - } - } // Get the factor at which to apply this tuple - - var factor = this.tupleFactor(tupleIndex, tupleCoords, startCoords, endCoords); - if (factor === 0) { - offsetToData += tupleDataSize; - continue; - } - var here = stream.pos; - stream.pos = offsetToData; - if (tupleIndex & PRIVATE_POINT_NUMBERS) { - var points = this.decodePoints(); - } else { - var points = sharedPoints; - } // points.length = 0 means there are deltas for all points - - var nPoints = points.length === 0 ? glyphPoints.length : points.length; - var xDeltas = this.decodeDeltas(nPoints); - var yDeltas = this.decodeDeltas(nPoints); - if (points.length === 0) { - // all points - for (var _i = 0; _i < glyphPoints.length; _i++) { - var point = glyphPoints[_i]; - point.x += Math.round(xDeltas[_i] * factor); - point.y += Math.round(yDeltas[_i] * factor); - } - } else { - var outPoints = origPoints.map(function (pt) { - return pt.copy(); - }); - var hasDelta = glyphPoints.map(function () { - return false; - }); - for (var _i2 = 0; _i2 < points.length; _i2++) { - var idx = points[_i2]; - if (idx < glyphPoints.length) { - var _point = outPoints[idx]; - hasDelta[idx] = true; - _point.x += Math.round(xDeltas[_i2] * factor); - _point.y += Math.round(yDeltas[_i2] * factor); - } - } - this.interpolateMissingDeltas(outPoints, origPoints, hasDelta); - for (var _i3 = 0; _i3 < glyphPoints.length; _i3++) { - var deltaX = outPoints[_i3].x - origPoints[_i3].x; - var deltaY = outPoints[_i3].y - origPoints[_i3].y; - glyphPoints[_i3].x += deltaX; - glyphPoints[_i3].y += deltaY; - } - } - offsetToData += tupleDataSize; - stream.pos = here; - } - }; - _proto36.decodePoints = function decodePoints() { - var stream = this.font.stream; - var count = stream.readUInt8(); - if (count & POINTS_ARE_WORDS) { - count = (count & POINT_RUN_COUNT_MASK) << 8 | stream.readUInt8(); - } - var points = new Uint16Array(count); - var i = 0; - var point = 0; - while (i < count) { - var run = stream.readUInt8(); - var runCount = (run & POINT_RUN_COUNT_MASK) + 1; - var fn = run & POINTS_ARE_WORDS ? stream.readUInt16 : stream.readUInt8; - for (var j = 0; j < runCount && i < count; j++) { - point += fn.call(stream); - points[i++] = point; - } - } - return points; - }; - _proto36.decodeDeltas = function decodeDeltas(count) { - var stream = this.font.stream; - var i = 0; - var deltas = new Int16Array(count); - while (i < count) { - var run = stream.readUInt8(); - var runCount = (run & DELTA_RUN_COUNT_MASK) + 1; - if (run & DELTAS_ARE_ZERO) { - i += runCount; - } else { - var fn = run & DELTAS_ARE_WORDS ? stream.readInt16BE : stream.readInt8; - for (var j = 0; j < runCount && i < count; j++) { - deltas[i++] = fn.call(stream); - } - } - } - return deltas; - }; - _proto36.tupleFactor = function tupleFactor(tupleIndex, tupleCoords, startCoords, endCoords) { - var normalized = this.normalizedCoords; - var gvar = this.font.gvar; - var factor = 1; - for (var i = 0; i < gvar.axisCount; i++) { - if (tupleCoords[i] === 0) { - continue; - } - if (normalized[i] === 0) { - return 0; - } - if ((tupleIndex & INTERMEDIATE_TUPLE) === 0) { - if (normalized[i] < Math.min(0, tupleCoords[i]) || normalized[i] > Math.max(0, tupleCoords[i])) { - return 0; - } - factor = (factor * normalized[i] + Number.EPSILON) / (tupleCoords[i] + Number.EPSILON); - } else { - if (normalized[i] < startCoords[i] || normalized[i] > endCoords[i]) { - return 0; - } else if (normalized[i] < tupleCoords[i]) { - factor = factor * (normalized[i] - startCoords[i] + Number.EPSILON) / (tupleCoords[i] - startCoords[i] + Number.EPSILON); - } else { - factor = factor * (endCoords[i] - normalized[i] + Number.EPSILON) / (endCoords[i] - tupleCoords[i] + Number.EPSILON); - } - } - } - return factor; - } // Interpolates points without delta values. - // Needed for the Ø and Q glyphs in Skia. - // Algorithm from Freetype. - ; - _proto36.interpolateMissingDeltas = function interpolateMissingDeltas(points, inPoints, hasDelta) { - if (points.length === 0) { - return; - } - var point = 0; - while (point < points.length) { - var firstPoint = point; // find the end point of the contour - - var endPoint = point; - var pt = points[endPoint]; - while (!pt.endContour) { - pt = points[++endPoint]; - } // find the first point that has a delta - - while (point <= endPoint && !hasDelta[point]) { - point++; - } - if (point > endPoint) { - continue; - } - var firstDelta = point; - var curDelta = point; - point++; - while (point <= endPoint) { - // find the next point with a delta, and interpolate intermediate points - if (hasDelta[point]) { - this.deltaInterpolate(curDelta + 1, point - 1, curDelta, point, inPoints, points); - curDelta = point; - } - point++; - } // shift contour if we only have a single delta - - if (curDelta === firstDelta) { - this.deltaShift(firstPoint, endPoint, curDelta, inPoints, points); - } else { - // otherwise, handle the remaining points at the end and beginning of the contour - this.deltaInterpolate(curDelta + 1, endPoint, curDelta, firstDelta, inPoints, points); - if (firstDelta > 0) { - this.deltaInterpolate(firstPoint, firstDelta - 1, curDelta, firstDelta, inPoints, points); - } - } - point = endPoint + 1; - } - }; - _proto36.deltaInterpolate = function deltaInterpolate(p1, p2, ref1, ref2, inPoints, outPoints) { - if (p1 > p2) { - return; - } - var iterable = ['x', 'y']; - for (var i = 0; i < iterable.length; i++) { - var k = iterable[i]; - if (inPoints[ref1][k] > inPoints[ref2][k]) { - var p = ref1; - ref1 = ref2; - ref2 = p; - } - var in1 = inPoints[ref1][k]; - var in2 = inPoints[ref2][k]; - var out1 = outPoints[ref1][k]; - var out2 = outPoints[ref2][k]; // If the reference points have the same coordinate but different - // delta, inferred delta is zero. Otherwise interpolate. - - if (in1 !== in2 || out1 === out2) { - var scale = in1 === in2 ? 0 : (out2 - out1) / (in2 - in1); - for (var _p = p1; _p <= p2; _p++) { - var out = inPoints[_p][k]; - if (out <= in1) { - out += out1 - in1; - } else if (out >= in2) { - out += out2 - in2; - } else { - out = out1 + (out - in1) * scale; - } - outPoints[_p][k] = out; - } - } - } - }; - _proto36.deltaShift = function deltaShift(p1, p2, ref, inPoints, outPoints) { - var deltaX = outPoints[ref].x - inPoints[ref].x; - var deltaY = outPoints[ref].y - inPoints[ref].y; - if (deltaX === 0 && deltaY === 0) { - return; - } - for (var p = p1; p <= p2; p++) { - if (p !== ref) { - outPoints[p].x += deltaX; - outPoints[p].y += deltaY; - } - } - }; - _proto36.getAdvanceAdjustment = function getAdvanceAdjustment(gid, table) { - var outerIndex, innerIndex; - if (table.advanceWidthMapping) { - var idx = gid; - if (idx >= table.advanceWidthMapping.mapCount) { - idx = table.advanceWidthMapping.mapCount - 1; - } - var entryFormat = table.advanceWidthMapping.entryFormat; - var _table$advanceWidthMa = table.advanceWidthMapping.mapData[idx]; - outerIndex = _table$advanceWidthMa.outerIndex; - innerIndex = _table$advanceWidthMa.innerIndex; - } else { - outerIndex = 0; - innerIndex = gid; - } - return this.getDelta(table.itemVariationStore, outerIndex, innerIndex); - } // See pseudo code from `Font Variations Overview' - // in the OpenType specification. - ; - _proto36.getDelta = function getDelta(itemStore, outerIndex, innerIndex) { - if (outerIndex >= itemStore.itemVariationData.length) { - return 0; - } - var varData = itemStore.itemVariationData[outerIndex]; - if (innerIndex >= varData.deltaSets.length) { - return 0; - } - var deltaSet = varData.deltaSets[innerIndex]; - var blendVector = this.getBlendVector(itemStore, outerIndex); - var netAdjustment = 0; - for (var master = 0; master < varData.regionIndexCount; master++) { - netAdjustment += deltaSet.deltas[master] * blendVector[master]; - } - return netAdjustment; - }; - _proto36.getBlendVector = function getBlendVector(itemStore, outerIndex) { - var varData = itemStore.itemVariationData[outerIndex]; - if (this.blendVectors.has(varData)) { - return this.blendVectors.get(varData); - } - var normalizedCoords = this.normalizedCoords; - var blendVector = []; // outer loop steps through master designs to be blended - - for (var master = 0; master < varData.regionIndexCount; master++) { - var scalar = 1; - var regionIndex = varData.regionIndexes[master]; - var axes = itemStore.variationRegionList.variationRegions[regionIndex]; // inner loop steps through axes in this region - - for (var j = 0; j < axes.length; j++) { - var axis = axes[j]; - var axisScalar = void 0; // compute the scalar contribution of this axis - // ignore invalid ranges - - if (axis.startCoord > axis.peakCoord || axis.peakCoord > axis.endCoord) { - axisScalar = 1; - } else if (axis.startCoord < 0 && axis.endCoord > 0 && axis.peakCoord !== 0) { - axisScalar = 1; // peak of 0 means ignore this axis - } else if (axis.peakCoord === 0) { - axisScalar = 1; // ignore this region if coords are out of range - } else if (normalizedCoords[j] < axis.startCoord || normalizedCoords[j] > axis.endCoord) { - axisScalar = 0; // calculate a proportional factor - } else { - if (normalizedCoords[j] === axis.peakCoord) { - axisScalar = 1; - } else if (normalizedCoords[j] < axis.peakCoord) { - axisScalar = (normalizedCoords[j] - axis.startCoord + Number.EPSILON) / (axis.peakCoord - axis.startCoord + Number.EPSILON); - } else { - axisScalar = (axis.endCoord - normalizedCoords[j] + Number.EPSILON) / (axis.endCoord - axis.peakCoord + Number.EPSILON); - } - } // take product of all the axis scalars - - scalar *= axisScalar; - } - blendVector[master] = scalar; - } - this.blendVectors.set(varData, blendVector); - return blendVector; - }; - return GlyphVariationProcessor; -}(); -var resolved = Promise.resolve(); -var Subset = /*#__PURE__*/function () { - function Subset(font) { - this.font = font; - this.glyphs = []; - this.mapping = {}; // always include the missing glyph - - this.includeGlyph(0); - } - var _proto37 = Subset.prototype; - _proto37.includeGlyph = function includeGlyph(glyph) { - if (typeof glyph === 'object') { - glyph = glyph.id; - } - if (this.mapping[glyph] == null) { - this.glyphs.push(glyph); - this.mapping[glyph] = this.glyphs.length - 1; - } - return this.mapping[glyph]; - }; - _proto37.encodeStream = function encodeStream() { - var _this1 = this; - var s = new r.EncodeStream(); - resolved.then(function () { - _this1.encode(s); - return s.end(); - }); - return s; - }; - return Subset; -}(); -var ON_CURVE$1 = 1 << 0; -var X_SHORT_VECTOR$1 = 1 << 1; -var Y_SHORT_VECTOR$1 = 1 << 2; -var REPEAT$1 = 1 << 3; -var SAME_X$1 = 1 << 4; -var SAME_Y$1 = 1 << 5; -var Point$1 = /*#__PURE__*/function () { - function Point$1() {} - Point$1.size = function size(val) { - return val >= 0 && val <= 255 ? 1 : 2; - }; - Point$1.encode = function encode(stream, value) { - if (value >= 0 && value <= 255) { - stream.writeUInt8(value); - } else { - stream.writeInt16BE(value); - } - }; - return Point$1; -}(); -var Glyf = new r.Struct({ - numberOfContours: r.int16, - // if negative, this is a composite glyph - xMin: r.int16, - yMin: r.int16, - xMax: r.int16, - yMax: r.int16, - endPtsOfContours: new r.Array(r.uint16, 'numberOfContours'), - instructions: new r.Array(r.uint8, r.uint16), - flags: new r.Array(r.uint8, 0), - xPoints: new r.Array(Point$1, 0), - yPoints: new r.Array(Point$1, 0) -}); -/** - * Encodes TrueType glyph outlines - */ -var TTFGlyphEncoder = /*#__PURE__*/function () { - function TTFGlyphEncoder() {} - var _proto38 = TTFGlyphEncoder.prototype; - _proto38.encodeSimple = function encodeSimple(path, instructions) { - if (instructions === void 0) { - instructions = []; - } - var endPtsOfContours = []; - var xPoints = []; - var yPoints = []; - var flags = []; - var same = 0; - var lastX = 0, - lastY = 0, - lastFlag = 0; - var pointCount = 0; - for (var i = 0; i < path.commands.length; i++) { - var c = path.commands[i]; - for (var j = 0; j < c.args.length; j += 2) { - var x = c.args[j]; - var y = c.args[j + 1]; - var flag = 0; // If the ending point of a quadratic curve is the midpoint - // between the control point and the control point of the next - // quadratic curve, we can omit the ending point. - - if (c.command === 'quadraticCurveTo' && j === 2) { - var next = path.commands[i + 1]; - if (next && next.command === 'quadraticCurveTo') { - var midX = (lastX + next.args[0]) / 2; - var midY = (lastY + next.args[1]) / 2; - if (x === midX && y === midY) { - continue; - } - } - } // All points except control points are on curve. - - if (!(c.command === 'quadraticCurveTo' && j === 0)) { - flag |= ON_CURVE$1; - } - flag = this._encodePoint(x, lastX, xPoints, flag, X_SHORT_VECTOR$1, SAME_X$1); - flag = this._encodePoint(y, lastY, yPoints, flag, Y_SHORT_VECTOR$1, SAME_Y$1); - if (flag === lastFlag && same < 255) { - flags[flags.length - 1] |= REPEAT$1; - same++; - } else { - if (same > 0) { - flags.push(same); - same = 0; - } - flags.push(flag); - lastFlag = flag; - } - lastX = x; - lastY = y; - pointCount++; - } - if (c.command === 'closePath') { - endPtsOfContours.push(pointCount - 1); - } - } // Close the path if the last command didn't already - - if (path.commands.length > 1 && path.commands[path.commands.length - 1].command !== 'closePath') { - endPtsOfContours.push(pointCount - 1); - } - var bbox = path.bbox; - var glyf = { - numberOfContours: endPtsOfContours.length, - xMin: bbox.minX, - yMin: bbox.minY, - xMax: bbox.maxX, - yMax: bbox.maxY, - endPtsOfContours: endPtsOfContours, - instructions: instructions, - flags: flags, - xPoints: xPoints, - yPoints: yPoints - }; - var size = Glyf.size(glyf); - var tail = 4 - size % 4; - var stream = new r.EncodeStream(size + tail); - Glyf.encode(stream, glyf); // Align to 4-byte length - - if (tail !== 0) { - stream.fill(0, tail); - } - return stream.buffer; - }; - _proto38._encodePoint = function _encodePoint(value, last, points, flag, shortFlag, sameFlag) { - var diff = value - last; - if (value === last) { - flag |= sameFlag; - } else { - if (-255 <= diff && diff <= 255) { - flag |= shortFlag; - if (diff < 0) { - diff = -diff; - } else { - flag |= sameFlag; - } - } - points.push(diff); - } - return flag; - }; - return TTFGlyphEncoder; -}(); -var TTFSubset = /*#__PURE__*/function (_Subset) { - function TTFSubset(font) { - var _this10; - _this10 = _Subset.call(this, font) || this; - _this10.glyphEncoder = new TTFGlyphEncoder(); - return _this10; - } - _inheritsLoose(TTFSubset, _Subset); - var _proto39 = TTFSubset.prototype; - _proto39._addGlyph = function _addGlyph(gid) { - var glyph = this.font.getGlyph(gid); - var glyf = glyph._decode(); // get the offset to the glyph from the loca table - - var curOffset = this.font.loca.offsets[gid]; - var nextOffset = this.font.loca.offsets[gid + 1]; - var stream = this.font._getTableStream('glyf'); - stream.pos += curOffset; - var buffer = stream.readBuffer(nextOffset - curOffset); // if it is a compound glyph, include its components - - if (glyf && glyf.numberOfContours < 0) { - buffer = Buffer.from(buffer); - for (var _iterator70 = _createForOfIteratorHelperLoose(glyf.components), _step70; !(_step70 = _iterator70()).done;) { - var component = _step70.value; - gid = this.includeGlyph(component.glyphID); - buffer.writeUInt16BE(gid, component.pos); - } - } else if (glyf && this.font._variationProcessor) { - // If this is a TrueType variation glyph, re-encode the path - buffer = this.glyphEncoder.encodeSimple(glyph.path, glyf.instructions); - } - this.glyf.push(buffer); - this.loca.offsets.push(this.offset); - this.hmtx.metrics.push({ - advance: glyph.advanceWidth, - bearing: glyph._getMetrics().leftBearing - }); - this.offset += buffer.length; - return this.glyf.length - 1; - }; - _proto39.encode = function encode(stream) { - // tables required by PDF spec: - // head, hhea, loca, maxp, cvt , prep, glyf, hmtx, fpgm - // - // additional tables required for standalone fonts: - // name, cmap, OS/2, post - this.glyf = []; - this.offset = 0; - this.loca = { - offsets: [], - version: this.font.loca.version - }; - this.hmtx = { - metrics: [], - bearings: [] - }; // include all the glyphs - // not using a for loop because we need to support adding more - // glyphs to the array as we go, and CoffeeScript caches the length. - - var i = 0; - while (i < this.glyphs.length) { - this._addGlyph(this.glyphs[i++]); - } - var maxp = cloneDeep(this.font.maxp); - maxp.numGlyphs = this.glyf.length; - this.loca.offsets.push(this.offset); - var head = cloneDeep(this.font.head); - head.indexToLocFormat = this.loca.version; - var hhea = cloneDeep(this.font.hhea); - hhea.numberOfMetrics = this.hmtx.metrics.length; // map = [] - // for index in [0...256] - // if index < @numGlyphs - // map[index] = index - // else - // map[index] = 0 - // - // cmapTable = - // version: 0 - // length: 262 - // language: 0 - // codeMap: map - // - // cmap = - // version: 0 - // numSubtables: 1 - // tables: [ - // platformID: 1 - // encodingID: 0 - // table: cmapTable - // ] - // TODO: subset prep, cvt, fpgm? - - Directory.encode(stream, { - tables: { - head: head, - hhea: hhea, - loca: this.loca, - maxp: maxp, - 'cvt ': this.font['cvt '], - prep: this.font.prep, - glyf: this.glyf, - hmtx: this.hmtx, - fpgm: this.font.fpgm // name: clone @font.name - // 'OS/2': clone @font['OS/2'] - // post: clone @font.post - // cmap: cmap - } - }); - }; - return TTFSubset; -}(Subset); -var CFFSubset = /*#__PURE__*/function (_Subset2) { - function CFFSubset(font) { - var _this11; - _this11 = _Subset2.call(this, font) || this; - _this11.cff = _this11.font['CFF ']; - if (!_this11.cff) { - throw new Error('Not a CFF Font'); - } - return _this11; - } - _inheritsLoose(CFFSubset, _Subset2); - var _proto40 = CFFSubset.prototype; - _proto40.subsetCharstrings = function subsetCharstrings() { - this.charstrings = []; - var gsubrs = {}; - for (var _iterator71 = _createForOfIteratorHelperLoose(this.glyphs), _step71; !(_step71 = _iterator71()).done;) { - var gid = _step71.value; - this.charstrings.push(this.cff.getCharString(gid)); - var glyph = this.font.getGlyph(gid); - var path = glyph.path; // this causes the glyph to be parsed - - for (var subr in glyph._usedGsubrs) { - gsubrs[subr] = true; - } - } - this.gsubrs = this.subsetSubrs(this.cff.globalSubrIndex, gsubrs); - }; - _proto40.subsetSubrs = function subsetSubrs(subrs, used) { - var res = []; - for (var i = 0; i < subrs.length; i++) { - var subr = subrs[i]; - if (used[i]) { - this.cff.stream.pos = subr.offset; - res.push(this.cff.stream.readBuffer(subr.length)); - } else { - res.push(Buffer.from([11])); // return - } - } - return res; - }; - _proto40.subsetFontdict = function subsetFontdict(topDict) { - topDict.FDArray = []; - topDict.FDSelect = { - version: 0, - fds: [] - }; - var used_fds = {}; - var used_subrs = []; - var fd_select = {}; - for (var _iterator72 = _createForOfIteratorHelperLoose(this.glyphs), _step72; !(_step72 = _iterator72()).done;) { - var gid = _step72.value; - var fd = this.cff.fdForGlyph(gid); - if (fd == null) { - continue; - } - if (!used_fds[fd]) { - topDict.FDArray.push(Object.assign({}, this.cff.topDict.FDArray[fd])); - used_subrs.push({}); - fd_select[fd] = topDict.FDArray.length - 1; - } - used_fds[fd] = true; - topDict.FDSelect.fds.push(fd_select[fd]); - var glyph = this.font.getGlyph(gid); - var path = glyph.path; // this causes the glyph to be parsed - - for (var subr in glyph._usedSubrs) { - used_subrs[fd_select[fd]][subr] = true; - } - } - for (var i = 0; i < topDict.FDArray.length; i++) { - var dict = topDict.FDArray[i]; - delete dict.FontName; - if (dict.Private && dict.Private.Subrs) { - dict.Private = Object.assign({}, dict.Private); - dict.Private.Subrs = this.subsetSubrs(dict.Private.Subrs, used_subrs[i]); - } - } - return; - }; - _proto40.createCIDFontdict = function createCIDFontdict(topDict) { - var used_subrs = {}; - for (var _iterator73 = _createForOfIteratorHelperLoose(this.glyphs), _step73; !(_step73 = _iterator73()).done;) { - var gid = _step73.value; - var glyph = this.font.getGlyph(gid); - var path = glyph.path; // this causes the glyph to be parsed - - for (var subr in glyph._usedSubrs) { - used_subrs[subr] = true; - } - } - var privateDict = Object.assign({}, this.cff.topDict.Private); - if (this.cff.topDict.Private && this.cff.topDict.Private.Subrs) { - privateDict.Subrs = this.subsetSubrs(this.cff.topDict.Private.Subrs, used_subrs); - } - topDict.FDArray = [{ - Private: privateDict - }]; - return topDict.FDSelect = { - version: 3, - nRanges: 1, - ranges: [{ - first: 0, - fd: 0 - }], - sentinel: this.charstrings.length - }; - }; - _proto40.addString = function addString(string) { - if (!string) { - return null; - } - if (!this.strings) { - this.strings = []; - } - this.strings.push(string); - return standardStrings.length + this.strings.length - 1; - }; - _proto40.encode = function encode(stream) { - this.subsetCharstrings(); - var charset = { - version: this.charstrings.length > 255 ? 2 : 1, - ranges: [{ - first: 1, - nLeft: this.charstrings.length - 2 - }] - }; - var topDict = Object.assign({}, this.cff.topDict); - topDict.Private = null; - topDict.charset = charset; - topDict.Encoding = null; - topDict.CharStrings = this.charstrings; - for (var _i22 = 0, _arr2 = ['version', 'Notice', 'Copyright', 'FullName', 'FamilyName', 'Weight', 'PostScript', 'BaseFontName', 'FontName']; _i22 < _arr2.length; _i22++) { - var key = _arr2[_i22]; - topDict[key] = this.addString(this.cff.string(topDict[key])); - } - topDict.ROS = [this.addString('Adobe'), this.addString('Identity'), 0]; - topDict.CIDCount = this.charstrings.length; - if (this.cff.isCIDFont) { - this.subsetFontdict(topDict); - } else { - this.createCIDFontdict(topDict); - } - var top = { - version: 1, - hdrSize: this.cff.hdrSize, - offSize: 4, - header: this.cff.header, - nameIndex: [this.cff.postscriptName], - topDictIndex: [topDict], - stringIndex: this.strings, - globalSubrIndex: this.gsubrs - }; - CFFTop.encode(stream, top); - }; - return CFFSubset; -}(Subset); -var _class$4; -/** - * This is the base class for all SFNT-based font formats in fontkit. - * It supports TrueType, and PostScript glyphs, and several color glyph formats. - */ - -var TTFFont = (_class$4 = /*#__PURE__*/function () { - function TTFFont(stream, variationCoords) { - if (variationCoords === void 0) { - variationCoords = null; - } - this.defaultLanguage = null; - this.stream = stream; - this.variationCoords = variationCoords; - this._directoryPos = this.stream.pos; - this._tables = {}; - this._glyphs = {}; - this._decodeDirectory(); // define properties for each table to lazily parse - - for (var tag in this.directory.tables) { - var table = this.directory.tables[tag]; - if (tables[tag] && table.length > 0) { - Object.defineProperty(this, tag, { - get: this._getTable.bind(this, table) - }); - } - } - } - TTFFont.probe = function probe(buffer) { - var format = buffer.toString('ascii', 0, 4); - return format === 'true' || format === 'OTTO' || format === String.fromCharCode(0, 1, 0, 0); - }; - var _proto41 = TTFFont.prototype; - _proto41.setDefaultLanguage = function setDefaultLanguage(lang) { - if (lang === void 0) { - lang = null; - } - this.defaultLanguage = lang; - }; - _proto41._getTable = function _getTable(table) { - if (!(table.tag in this._tables)) { - try { - this._tables[table.tag] = this._decodeTable(table); - } catch (e) { - if (fontkit.logErrors) { - console.error("Error decoding table ".concat(table.tag)); - console.error(e.stack); - } - } - } - return this._tables[table.tag]; - }; - _proto41._getTableStream = function _getTableStream(tag) { - var table = this.directory.tables[tag]; - if (table) { - this.stream.pos = table.offset; - return this.stream; - } - return null; - }; - _proto41._decodeDirectory = function _decodeDirectory() { - return this.directory = Directory.decode(this.stream, { - _startOffset: 0 - }); - }; - _proto41._decodeTable = function _decodeTable(table) { - var pos = this.stream.pos; - var stream = this._getTableStream(table.tag); - var result = tables[table.tag].decode(stream, this, table.length); - this.stream.pos = pos; - return result; - } - /** - * Gets a string from the font's `name` table - * `lang` is a BCP-47 language code. - * @return {string} - */; - _proto41.getName = function getName(key, lang) { - if (lang === void 0) { - lang = this.defaultLanguage || fontkit.defaultLanguage; - } - var record = this.name && this.name.records[key]; - if (record) { - // Attempt to retrieve the entry, depending on which translation is available: - return record[lang] || record[this.defaultLanguage] || record[fontkit.defaultLanguage] || record['en'] || record[Object.keys(record)[0]] // Seriously, ANY language would be fine - || null; - } - return null; - } - /** - * The unique PostScript name for this font, e.g. "Helvetica-Bold" - * @type {string} - */; - /** - * Returns whether there is glyph in the font for the given unicode code point. - * - * @param {number} codePoint - * @return {boolean} - */ - _proto41.hasGlyphForCodePoint = function hasGlyphForCodePoint(codePoint) { - return !!this._cmapProcessor.lookup(codePoint); - } - /** - * Maps a single unicode code point to a Glyph object. - * Does not perform any advanced substitutions (there is no context to do so). - * - * @param {number} codePoint - * @return {Glyph} - */; - _proto41.glyphForCodePoint = function glyphForCodePoint(codePoint) { - return this.getGlyph(this._cmapProcessor.lookup(codePoint), [codePoint]); - } - /** - * Returns an array of Glyph objects for the given string. - * This is only a one-to-one mapping from characters to glyphs. - * For most uses, you should use font.layout (described below), which - * provides a much more advanced mapping supporting AAT and OpenType shaping. - * - * @param {string} string - * @return {Glyph[]} - */; - _proto41.glyphsForString = function glyphsForString(string) { - var glyphs = []; - var len = string.length; - var idx = 0; - var last = -1; - var state = -1; - while (idx <= len) { - var code = 0; - var nextState = 0; - if (idx < len) { - // Decode the next codepoint from UTF 16 - code = string.charCodeAt(idx++); - if (0xd800 <= code && code <= 0xdbff && idx < len) { - var next = string.charCodeAt(idx); - if (0xdc00 <= next && next <= 0xdfff) { - idx++; - code = ((code & 0x3ff) << 10) + (next & 0x3ff) + 0x10000; - } - } // Compute the next state: 1 if the next codepoint is a variation selector, 0 otherwise. - - nextState = 0xfe00 <= code && code <= 0xfe0f || 0xe0100 <= code && code <= 0xe01ef ? 1 : 0; - } else { - idx++; - } - if (state === 0 && nextState === 1) { - // Variation selector following normal codepoint. - glyphs.push(this.getGlyph(this._cmapProcessor.lookup(last, code), [last, code])); - } else if (state === 0 && nextState === 0) { - // Normal codepoint following normal codepoint. - glyphs.push(this.glyphForCodePoint(last)); - } - last = code; - state = nextState; - } - return glyphs; - }; - /** - * Returns a GlyphRun object, which includes an array of Glyphs and GlyphPositions for the given string. - * - * @param {string} string - * @param {string[]} [userFeatures] - * @param {string} [script] - * @param {string} [language] - * @param {string} [direction] - * @return {GlyphRun} - */ - _proto41.layout = function layout(string, userFeatures, script, language, direction) { - return this._layoutEngine.layout(string, userFeatures, script, language, direction); - } - /** - * Returns an array of strings that map to the given glyph id. - * @param {number} gid - glyph id - */; - _proto41.stringsForGlyph = function stringsForGlyph(gid) { - return this._layoutEngine.stringsForGlyph(gid); - } - /** - * An array of all [OpenType feature tags](https://www.microsoft.com/typography/otspec/featuretags.htm) - * (or mapped AAT tags) supported by the font. - * The features parameter is an array of OpenType feature tags to be applied in addition to the default set. - * If this is an AAT font, the OpenType feature tags are mapped to AAT features. - * - * @type {string[]} - */; - _proto41.getAvailableFeatures = function getAvailableFeatures(script, language) { - return this._layoutEngine.getAvailableFeatures(script, language); - }; - _proto41._getBaseGlyph = function _getBaseGlyph(glyph, characters) { - if (characters === void 0) { - characters = []; - } - if (!this._glyphs[glyph]) { - if (this.directory.tables.glyf) { - this._glyphs[glyph] = new TTFGlyph(glyph, characters, this); - } else if (this.directory.tables['CFF '] || this.directory.tables.CFF2) { - this._glyphs[glyph] = new CFFGlyph(glyph, characters, this); - } - } - return this._glyphs[glyph] || null; - } - /** - * Returns a glyph object for the given glyph id. - * You can pass the array of code points this glyph represents for - * your use later, and it will be stored in the glyph object. - * - * @param {number} glyph - * @param {number[]} characters - * @return {Glyph} - */; - _proto41.getGlyph = function getGlyph(glyph, characters) { - if (characters === void 0) { - characters = []; - } - if (!this._glyphs[glyph]) { - if (this.directory.tables.sbix) { - this._glyphs[glyph] = new SBIXGlyph(glyph, characters, this); - } else if (this.directory.tables.COLR && this.directory.tables.CPAL) { - this._glyphs[glyph] = new COLRGlyph(glyph, characters, this); - } else { - this._getBaseGlyph(glyph, characters); - } - } - return this._glyphs[glyph] || null; - } - /** - * Returns a Subset for this font. - * @return {Subset} - */; - _proto41.createSubset = function createSubset() { - if (this.directory.tables['CFF ']) { - return new CFFSubset(this); - } - return new TTFSubset(this); - } - /** - * Returns an object describing the available variation axes - * that this font supports. Keys are setting tags, and values - * contain the axis name, range, and default value. - * - * @type {object} - */; - /** - * Returns a new font with the given variation settings applied. - * Settings can either be an instance name, or an object containing - * variation tags as specified by the `variationAxes` property. - * - * @param {object} settings - * @return {TTFFont} - */ - _proto41.getVariation = function getVariation(settings) { - if (!(this.directory.tables.fvar && (this.directory.tables.gvar && this.directory.tables.glyf || this.directory.tables.CFF2))) { - throw new Error('Variations require a font with the fvar, gvar and glyf, or CFF2 tables.'); - } - if (typeof settings === 'string') { - settings = this.namedVariations[settings]; - } - if (typeof settings !== 'object') { - throw new Error('Variation settings must be either a variation name or settings object.'); - } // normalize the coordinates - - var coords = this.fvar.axis.map(function (axis, i) { - var axisTag = axis.axisTag.trim(); - if (axisTag in settings) { - return Math.max(axis.minValue, Math.min(axis.maxValue, settings[axisTag])); - } else { - return axis.defaultValue; - } - }); - var stream = new r.DecodeStream(this.stream.buffer); - stream.pos = this._directoryPos; - var font = new TTFFont(stream, coords); - font._tables = this._tables; - return font; - }; - // Standardized format plugin API - _proto41.getFont = function getFont(name) { - return this.getVariation(name); - }; - return _createClass(TTFFont, [{ - key: "postscriptName", - get: function get() { - return this.getName('postscriptName'); - } - /** - * The font's full name, e.g. "Helvetica Bold" - * @type {string} - */ - }, { - key: "fullName", - get: function get() { - return this.getName('fullName'); - } - /** - * The font's family name, e.g. "Helvetica" - * @type {string} - */ - }, { - key: "familyName", - get: function get() { - return this.getName('fontFamily'); - } - /** - * The font's sub-family, e.g. "Bold". - * @type {string} - */ - }, { - key: "subfamilyName", - get: function get() { - return this.getName('fontSubfamily'); - } - /** - * The font's copyright information - * @type {string} - */ - }, { - key: "copyright", - get: function get() { - return this.getName('copyright'); - } - /** - * The font's version number - * @type {string} - */ - }, { - key: "version", - get: function get() { - return this.getName('version'); - } - /** - * The font’s [ascender](https://en.wikipedia.org/wiki/Ascender_(typography)) - * @type {number} - */ - }, { - key: "ascent", - get: function get() { - return this.hhea.ascent; - } - /** - * The font’s [descender](https://en.wikipedia.org/wiki/Descender) - * @type {number} - */ - }, { - key: "descent", - get: function get() { - return this.hhea.descent; - } - /** - * The amount of space that should be included between lines - * @type {number} - */ - }, { - key: "lineGap", - get: function get() { - return this.hhea.lineGap; - } - /** - * The offset from the normal underline position that should be used - * @type {number} - */ - }, { - key: "underlinePosition", - get: function get() { - return this.post.underlinePosition; - } - /** - * The weight of the underline that should be used - * @type {number} - */ - }, { - key: "underlineThickness", - get: function get() { - return this.post.underlineThickness; - } - /** - * If this is an italic font, the angle the cursor should be drawn at to match the font design - * @type {number} - */ - }, { - key: "italicAngle", - get: function get() { - return this.post.italicAngle; - } - /** - * The height of capital letters above the baseline. - * See [here](https://en.wikipedia.org/wiki/Cap_height) for more details. - * @type {number} - */ - }, { - key: "capHeight", - get: function get() { - var os2 = this['OS/2']; - return os2 ? os2.capHeight : this.ascent; - } - /** - * The height of lower case letters in the font. - * See [here](https://en.wikipedia.org/wiki/X-height) for more details. - * @type {number} - */ - }, { - key: "xHeight", - get: function get() { - var os2 = this['OS/2']; - return os2 ? os2.xHeight : 0; - } - /** - * The number of glyphs in the font. - * @type {number} - */ - }, { - key: "numGlyphs", - get: function get() { - return this.maxp.numGlyphs; - } - /** - * The size of the font’s internal coordinate grid - * @type {number} - */ - }, { - key: "unitsPerEm", - get: function get() { - return this.head.unitsPerEm; - } - /** - * The font’s bounding box, i.e. the box that encloses all glyphs in the font. - * @type {BBox} - */ - }, { - key: "bbox", - get: function get() { - return Object.freeze(new BBox(this.head.xMin, this.head.yMin, this.head.xMax, this.head.yMax)); - } - }, { - key: "_cmapProcessor", - get: function get() { - return new CmapProcessor(this.cmap); - } - /** - * An array of all of the unicode code points supported by the font. - * @type {number[]} - */ - }, { - key: "characterSet", - get: function get() { - return this._cmapProcessor.getCharacterSet(); - } - }, { - key: "_layoutEngine", - get: function get() { - return new LayoutEngine(this); - } - }, { - key: "availableFeatures", - get: function get() { - return this._layoutEngine.getAvailableFeatures(); - } - }, { - key: "variationAxes", - get: function get() { - var res = {}; - if (!this.fvar) { - return res; - } - for (var _iterator74 = _createForOfIteratorHelperLoose(this.fvar.axis), _step74; !(_step74 = _iterator74()).done;) { - var axis = _step74.value; - res[axis.axisTag.trim()] = { - name: axis.name.en, - min: axis.minValue, - default: axis.defaultValue, - max: axis.maxValue - }; - } - return res; - } - /** - * Returns an object describing the named variation instances - * that the font designer has specified. Keys are variation names - * and values are the variation settings for this instance. - * - * @type {object} - */ - }, { - key: "namedVariations", - get: function get() { - var res = {}; - if (!this.fvar) { - return res; - } - for (var _iterator75 = _createForOfIteratorHelperLoose(this.fvar.instance), _step75; !(_step75 = _iterator75()).done;) { - var instance = _step75.value; - var settings = {}; - for (var i = 0; i < this.fvar.axis.length; i++) { - var axis = this.fvar.axis[i]; - settings[axis.axisTag.trim()] = instance.coord[i]; - } - res[instance.name.en] = settings; - } - return res; - } - }, { - key: "_variationProcessor", - get: function get() { - if (!this.fvar) { - return null; - } - var variationCoords = this.variationCoords; // Ignore if no variation coords and not CFF2 - - if (!variationCoords && !this.CFF2) { - return null; - } - if (!variationCoords) { - variationCoords = this.fvar.axis.map(function (axis) { - return axis.defaultValue; - }); - } - return new GlyphVariationProcessor(this, variationCoords); - } - }]); -}(), _applyDecoratedDescriptor(_class$4.prototype, "bbox", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "bbox"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "_cmapProcessor", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "_cmapProcessor"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "characterSet", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "characterSet"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "_layoutEngine", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "_layoutEngine"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "variationAxes", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "variationAxes"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "namedVariations", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "namedVariations"), _class$4.prototype), _applyDecoratedDescriptor(_class$4.prototype, "_variationProcessor", [cache], Object.getOwnPropertyDescriptor(_class$4.prototype, "_variationProcessor"), _class$4.prototype), _class$4); -var WOFFDirectoryEntry = new r.Struct({ - tag: new r.String(4), - offset: new r.Pointer(r.uint32, 'void', { - type: 'global' - }), - compLength: r.uint32, - length: r.uint32, - origChecksum: r.uint32 -}); -var WOFFDirectory = new r.Struct({ - tag: new r.String(4), - // should be 'wOFF' - flavor: r.uint32, - length: r.uint32, - numTables: r.uint16, - reserved: new r.Reserved(r.uint16), - totalSfntSize: r.uint32, - majorVersion: r.uint16, - minorVersion: r.uint16, - metaOffset: r.uint32, - metaLength: r.uint32, - metaOrigLength: r.uint32, - privOffset: r.uint32, - privLength: r.uint32, - tables: new r.Array(WOFFDirectoryEntry, 'numTables') -}); -WOFFDirectory.process = function () { - var tables = {}; - for (var _iterator76 = _createForOfIteratorHelperLoose(this.tables), _step76; !(_step76 = _iterator76()).done;) { - var table = _step76.value; - tables[table.tag] = table; - } - this.tables = tables; -}; -var WOFFFont = /*#__PURE__*/function (_TTFFont) { - function WOFFFont() { - return _TTFFont.apply(this, arguments) || this; - } - _inheritsLoose(WOFFFont, _TTFFont); - WOFFFont.probe = function probe(buffer) { - return buffer.toString('ascii', 0, 4) === 'wOFF'; - }; - var _proto42 = WOFFFont.prototype; - _proto42._decodeDirectory = function _decodeDirectory() { - this.directory = WOFFDirectory.decode(this.stream, { - _startOffset: 0 - }); - }; - _proto42._getTableStream = function _getTableStream(tag) { - var table = this.directory.tables[tag]; - if (table) { - this.stream.pos = table.offset; - if (table.compLength < table.length) { - this.stream.pos += 2; // skip deflate header - - var outBuffer = Buffer.alloc(table.length); - var buf = inflate(this.stream.readBuffer(table.compLength - 2), outBuffer); - return new r.DecodeStream(buf); - } else { - return this.stream; - } - } - return null; - }; - return WOFFFont; -}(TTFFont); -/** - * Represents a TrueType glyph in the WOFF2 format, which compresses glyphs differently. - */ -var WOFF2Glyph = /*#__PURE__*/function (_TTFGlyph2) { - function WOFF2Glyph() { - return _TTFGlyph2.apply(this, arguments) || this; - } - _inheritsLoose(WOFF2Glyph, _TTFGlyph2); - var _proto43 = WOFF2Glyph.prototype; - _proto43._decode = function _decode() { - // We have to decode in advance (in WOFF2Font), so just return the pre-decoded data. - return this._font._transformedGlyphs[this.id]; - }; - _proto43._getCBox = function _getCBox() { - return this.path.bbox; - }; - return WOFF2Glyph; -}(TTFGlyph); -var Base128 = { - decode: function decode(stream) { - var result = 0; - var iterable = [0, 1, 2, 3, 4]; - for (var j = 0; j < iterable.length; j++) { - var code = stream.readUInt8(); // If any of the top seven bits are set then we're about to overflow. - - if (result & 0xe0000000) { - throw new Error('Overflow'); - } - result = result << 7 | code & 0x7f; - if ((code & 0x80) === 0) { - return result; - } - } - throw new Error('Bad base 128 number'); - } -}; -var knownTags = ['cmap', 'head', 'hhea', 'hmtx', 'maxp', 'name', 'OS/2', 'post', 'cvt ', 'fpgm', 'glyf', 'loca', 'prep', 'CFF ', 'VORG', 'EBDT', 'EBLC', 'gasp', 'hdmx', 'kern', 'LTSH', 'PCLT', 'VDMX', 'vhea', 'vmtx', 'BASE', 'GDEF', 'GPOS', 'GSUB', 'EBSC', 'JSTF', 'MATH', 'CBDT', 'CBLC', 'COLR', 'CPAL', 'SVG ', 'sbix', 'acnt', 'avar', 'bdat', 'bloc', 'bsln', 'cvar', 'fdsc', 'feat', 'fmtx', 'fvar', 'gvar', 'hsty', 'just', 'lcar', 'mort', 'morx', 'opbd', 'prop', 'trak', 'Zapf', 'Silf', 'Glat', 'Gloc', 'Feat', 'Sill']; -var WOFF2DirectoryEntry = new r.Struct({ - flags: r.uint8, - customTag: new r.Optional(new r.String(4), function (t) { - return (t.flags & 0x3f) === 0x3f; - }), - tag: function tag(t) { - return t.customTag || knownTags[t.flags & 0x3f]; - }, - // || (() => { throw new Error(`Bad tag: ${flags & 0x3f}`); })(); }, - length: Base128, - transformVersion: function transformVersion(t) { - return t.flags >>> 6 & 0x03; - }, - transformed: function transformed(t) { - return t.tag === 'glyf' || t.tag === 'loca' ? t.transformVersion === 0 : t.transformVersion !== 0; - }, - transformLength: new r.Optional(Base128, function (t) { - return t.transformed; - }) -}); -var WOFF2Directory = new r.Struct({ - tag: new r.String(4), - // should be 'wOF2' - flavor: r.uint32, - length: r.uint32, - numTables: r.uint16, - reserved: new r.Reserved(r.uint16), - totalSfntSize: r.uint32, - totalCompressedSize: r.uint32, - majorVersion: r.uint16, - minorVersion: r.uint16, - metaOffset: r.uint32, - metaLength: r.uint32, - metaOrigLength: r.uint32, - privOffset: r.uint32, - privLength: r.uint32, - tables: new r.Array(WOFF2DirectoryEntry, 'numTables') -}); -WOFF2Directory.process = function () { - var tables = {}; - for (var i = 0; i < this.tables.length; i++) { - var table = this.tables[i]; - tables[table.tag] = table; - } - return this.tables = tables; -}; - -/** - * Subclass of TTFFont that represents a TTF/OTF font compressed by WOFF2 - * See spec here: http://www.w3.org/TR/WOFF2/ - */ -var WOFF2Font = /*#__PURE__*/function (_TTFFont2) { - function WOFF2Font() { - return _TTFFont2.apply(this, arguments) || this; - } - _inheritsLoose(WOFF2Font, _TTFFont2); - WOFF2Font.probe = function probe(buffer) { - return buffer.toString('ascii', 0, 4) === 'wOF2'; - }; - var _proto44 = WOFF2Font.prototype; - _proto44._decodeDirectory = function _decodeDirectory() { - this.directory = WOFF2Directory.decode(this.stream); - this._dataPos = this.stream.pos; - }; - _proto44._decompress = function _decompress() { - // decompress data and setup table offsets if we haven't already - if (!this._decompressed) { - this.stream.pos = this._dataPos; - var buffer = this.stream.readBuffer(this.directory.totalCompressedSize); - var decompressedSize = 0; - for (var tag in this.directory.tables) { - var entry = this.directory.tables[tag]; - entry.offset = decompressedSize; - decompressedSize += entry.transformLength != null ? entry.transformLength : entry.length; - } - var decompressed = brotli(buffer, decompressedSize); - if (!decompressed) { - throw new Error('Error decoding compressed data in WOFF2'); - } - this.stream = new r.DecodeStream(Buffer.from(decompressed)); - this._decompressed = true; - } - }; - _proto44._decodeTable = function _decodeTable(table) { - this._decompress(); - return _TTFFont2.prototype._decodeTable.call(this, table); - } // Override this method to get a glyph and return our - // custom subclass if there is a glyf table. - ; - _proto44._getBaseGlyph = function _getBaseGlyph(glyph, characters) { - if (characters === void 0) { - characters = []; - } - if (!this._glyphs[glyph]) { - if (this.directory.tables.glyf && this.directory.tables.glyf.transformed) { - if (!this._transformedGlyphs) { - this._transformGlyfTable(); - } - return this._glyphs[glyph] = new WOFF2Glyph(glyph, characters, this); - } else { - return _TTFFont2.prototype._getBaseGlyph.call(this, glyph, characters); - } - } - }; - _proto44._transformGlyfTable = function _transformGlyfTable() { - this._decompress(); - this.stream.pos = this.directory.tables.glyf.offset; - var table = GlyfTable.decode(this.stream); - var glyphs = []; - for (var index = 0; index < table.numGlyphs; index++) { - var glyph = {}; - var nContours = table.nContours.readInt16BE(); - glyph.numberOfContours = nContours; - if (nContours > 0) { - // simple glyph - var nPoints = []; - var totalPoints = 0; - for (var i = 0; i < nContours; i++) { - var _r = read255UInt16(table.nPoints); - totalPoints += _r; - nPoints.push(totalPoints); - } - glyph.points = decodeTriplet(table.flags, table.glyphs, totalPoints); - for (var _i = 0; _i < nContours; _i++) { - glyph.points[nPoints[_i] - 1].endContour = true; - } - var instructionSize = read255UInt16(table.glyphs); - } else if (nContours < 0) { - // composite glyph - var haveInstructions = TTFGlyph.prototype._decodeComposite.call({ - _font: this - }, glyph, table.composites); - if (haveInstructions) { - var instructionSize = read255UInt16(table.glyphs); - } - } - glyphs.push(glyph); - } - this._transformedGlyphs = glyphs; - }; - return WOFF2Font; -}(TTFFont); // Special class that accepts a length and returns a sub-stream for that data -var Substream = /*#__PURE__*/function () { - function Substream(length) { - this.length = length; - this._buf = new r.Buffer(length); - } - var _proto45 = Substream.prototype; - _proto45.decode = function decode(stream, parent) { - return new r.DecodeStream(this._buf.decode(stream, parent)); - }; - return Substream; -}(); // This struct represents the entire glyf table -var GlyfTable = new r.Struct({ - version: r.uint32, - numGlyphs: r.uint16, - indexFormat: r.uint16, - nContourStreamSize: r.uint32, - nPointsStreamSize: r.uint32, - flagStreamSize: r.uint32, - glyphStreamSize: r.uint32, - compositeStreamSize: r.uint32, - bboxStreamSize: r.uint32, - instructionStreamSize: r.uint32, - nContours: new Substream('nContourStreamSize'), - nPoints: new Substream('nPointsStreamSize'), - flags: new Substream('flagStreamSize'), - glyphs: new Substream('glyphStreamSize'), - composites: new Substream('compositeStreamSize'), - bboxes: new Substream('bboxStreamSize'), - instructions: new Substream('instructionStreamSize') -}); -var WORD_CODE = 253; -var ONE_MORE_BYTE_CODE2 = 254; -var ONE_MORE_BYTE_CODE1 = 255; -var LOWEST_U_CODE = 253; -function read255UInt16(stream) { - var code = stream.readUInt8(); - if (code === WORD_CODE) { - return stream.readUInt16BE(); - } - if (code === ONE_MORE_BYTE_CODE1) { - return stream.readUInt8() + LOWEST_U_CODE; - } - if (code === ONE_MORE_BYTE_CODE2) { - return stream.readUInt8() + LOWEST_U_CODE * 2; - } - return code; -} -function withSign(flag, baseval) { - return flag & 1 ? baseval : -baseval; -} -function decodeTriplet(flags, glyphs, nPoints) { - var y; - var x = y = 0; - var res = []; - for (var i = 0; i < nPoints; i++) { - var dx = 0, - dy = 0; - var flag = flags.readUInt8(); - var onCurve = !(flag >> 7); - flag &= 0x7f; - if (flag < 10) { - dx = 0; - dy = withSign(flag, ((flag & 14) << 7) + glyphs.readUInt8()); - } else if (flag < 20) { - dx = withSign(flag, ((flag - 10 & 14) << 7) + glyphs.readUInt8()); - dy = 0; - } else if (flag < 84) { - var b0 = flag - 20; - var b1 = glyphs.readUInt8(); - dx = withSign(flag, 1 + (b0 & 0x30) + (b1 >> 4)); - dy = withSign(flag >> 1, 1 + ((b0 & 0x0c) << 2) + (b1 & 0x0f)); - } else if (flag < 120) { - var b0 = flag - 84; - dx = withSign(flag, 1 + (b0 / 12 << 8) + glyphs.readUInt8()); - dy = withSign(flag >> 1, 1 + (b0 % 12 >> 2 << 8) + glyphs.readUInt8()); - } else if (flag < 124) { - var b1 = glyphs.readUInt8(); - var b2 = glyphs.readUInt8(); - dx = withSign(flag, (b1 << 4) + (b2 >> 4)); - dy = withSign(flag >> 1, ((b2 & 0x0f) << 8) + glyphs.readUInt8()); - } else { - dx = withSign(flag, glyphs.readUInt16BE()); - dy = withSign(flag >> 1, glyphs.readUInt16BE()); - } - x += dx; - y += dy; - res.push(new Point(onCurve, false, x, y)); - } - return res; -} -var TTCHeader = new r.VersionedStruct(r.uint32, { - 0x00010000: { - numFonts: r.uint32, - offsets: new r.Array(r.uint32, 'numFonts') - }, - 0x00020000: { - numFonts: r.uint32, - offsets: new r.Array(r.uint32, 'numFonts'), - dsigTag: r.uint32, - dsigLength: r.uint32, - dsigOffset: r.uint32 - } -}); -var TrueTypeCollection = /*#__PURE__*/function () { - function TrueTypeCollection(stream) { - this.stream = stream; - if (stream.readString(4) !== 'ttcf') { - throw new Error('Not a TrueType collection'); - } - this.header = TTCHeader.decode(stream); - } - TrueTypeCollection.probe = function probe(buffer) { - return buffer.toString('ascii', 0, 4) === 'ttcf'; - }; - var _proto46 = TrueTypeCollection.prototype; - _proto46.getFont = function getFont(name) { - for (var _iterator77 = _createForOfIteratorHelperLoose(this.header.offsets), _step77; !(_step77 = _iterator77()).done;) { - var offset = _step77.value; - var stream = new r.DecodeStream(this.stream.buffer); - stream.pos = offset; - var font = new TTFFont(stream); - if (font.postscriptName === name) { - return font; - } - } - return null; - }; - return _createClass(TrueTypeCollection, [{ - key: "fonts", - get: function get() { - var fonts = []; - for (var _iterator78 = _createForOfIteratorHelperLoose(this.header.offsets), _step78; !(_step78 = _iterator78()).done;) { - var offset = _step78.value; - var stream = new r.DecodeStream(this.stream.buffer); - stream.pos = offset; - fonts.push(new TTFFont(stream)); - } - return fonts; - } - }]); -}(); -var DFontName = new r.String(r.uint8); -var DFontData = new r.Struct({ - len: r.uint32, - buf: new r.Buffer('len') -}); -var Ref = new r.Struct({ - id: r.uint16, - nameOffset: r.int16, - attr: r.uint8, - dataOffset: r.uint24, - handle: r.uint32 -}); -var Type = new r.Struct({ - name: new r.String(4), - maxTypeIndex: r.uint16, - refList: new r.Pointer(r.uint16, new r.Array(Ref, function (t) { - return t.maxTypeIndex + 1; - }), { - type: 'parent' - }) -}); -var TypeList = new r.Struct({ - length: r.uint16, - types: new r.Array(Type, function (t) { - return t.length + 1; - }) -}); -var DFontMap = new r.Struct({ - reserved: new r.Reserved(r.uint8, 24), - typeList: new r.Pointer(r.uint16, TypeList), - nameListOffset: new r.Pointer(r.uint16, 'void') -}); -var DFontHeader = new r.Struct({ - dataOffset: r.uint32, - map: new r.Pointer(r.uint32, DFontMap), - dataLength: r.uint32, - mapLength: r.uint32 -}); -var DFont = /*#__PURE__*/function () { - function DFont(stream) { - this.stream = stream; - this.header = DFontHeader.decode(this.stream); - for (var _iterator79 = _createForOfIteratorHelperLoose(this.header.map.typeList.types), _step79; !(_step79 = _iterator79()).done;) { - var type = _step79.value; - for (var _iterator80 = _createForOfIteratorHelperLoose(type.refList), _step80; !(_step80 = _iterator80()).done;) { - var ref = _step80.value; - if (ref.nameOffset >= 0) { - this.stream.pos = ref.nameOffset + this.header.map.nameListOffset; - ref.name = DFontName.decode(this.stream); - } else { - ref.name = null; - } - } - if (type.name === 'sfnt') { - this.sfnt = type; - } - } - } - DFont.probe = function probe(buffer) { - var stream = new r.DecodeStream(buffer); - try { - var header = DFontHeader.decode(stream); - } catch (e) { - return false; - } - for (var _iterator81 = _createForOfIteratorHelperLoose(header.map.typeList.types), _step81; !(_step81 = _iterator81()).done;) { - var type = _step81.value; - if (type.name === 'sfnt') { - return true; - } - } - return false; - }; - var _proto47 = DFont.prototype; - _proto47.getFont = function getFont(name) { - if (!this.sfnt) { - return null; - } - for (var _iterator82 = _createForOfIteratorHelperLoose(this.sfnt.refList), _step82; !(_step82 = _iterator82()).done;) { - var ref = _step82.value; - var pos = this.header.dataOffset + ref.dataOffset + 4; - var stream = new r.DecodeStream(this.stream.buffer.slice(pos)); - var font = new TTFFont(stream); - if (font.postscriptName === name) { - return font; - } - } - return null; - }; - return _createClass(DFont, [{ - key: "fonts", - get: function get() { - var fonts = []; - for (var _iterator83 = _createForOfIteratorHelperLoose(this.sfnt.refList), _step83; !(_step83 = _iterator83()).done;) { - var ref = _step83.value; - var pos = this.header.dataOffset + ref.dataOffset + 4; - var stream = new r.DecodeStream(this.stream.buffer.slice(pos)); - fonts.push(new TTFFont(stream)); - } - return fonts; - } - }]); -}(); -fontkit.registerFormat(TTFFont); -fontkit.registerFormat(WOFFFont); -fontkit.registerFormat(WOFF2Font); -fontkit.registerFormat(TrueTypeCollection); -fontkit.registerFormat(DFont); -module.exports = fontkit; - -/***/ }), - -/***/ 10819: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -/* global ActiveXObject -- old IE, WSH */ -var anObject = __webpack_require__(34984); -var defineProperties = __webpack_require__(10196); -var enumBugKeys = __webpack_require__(2416); -var hiddenKeys = __webpack_require__(90682); -var html = __webpack_require__(520); -var documentCreateElement = __webpack_require__(12072); -var sharedKey = __webpack_require__(82194); - -var GT = '>'; -var LT = '<'; -var PROTOTYPE = 'prototype'; -var SCRIPT = 'script'; -var IE_PROTO = sharedKey('IE_PROTO'); - -var EmptyConstructor = function () { /* empty */ }; - -var scriptTag = function (content) { - return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; -}; - -// Create object with fake `null` prototype: use ActiveX Object with cleared prototype -var NullProtoObjectViaActiveX = function (activeXDocument) { - activeXDocument.write(scriptTag('')); - activeXDocument.close(); - var temp = activeXDocument.parentWindow.Object; - activeXDocument = null; // avoid memory leak - return temp; -}; - -// Create object with fake `null` prototype: use iframe Object with cleared prototype -var NullProtoObjectViaIFrame = function () { - // Thrash, waste and sodomy: IE GC bug - var iframe = documentCreateElement('iframe'); - var JS = 'java' + SCRIPT + ':'; - var iframeDocument; - iframe.style.display = 'none'; - html.appendChild(iframe); - // https://github.com/zloirock/core-js/issues/475 - iframe.src = String(JS); - iframeDocument = iframe.contentWindow.document; - iframeDocument.open(); - iframeDocument.write(scriptTag('document.F=Object')); - iframeDocument.close(); - return iframeDocument.F; -}; - -// Check for document.domain and active x support -// No need to use active x approach when document.domain is not set -// see https://github.com/es-shims/es5-shim/issues/150 -// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 -// avoid IE GC bug -var activeXDocument; -var NullProtoObject = function () { - try { - activeXDocument = new ActiveXObject('htmlfile'); - } catch (error) { /* ignore */ } - NullProtoObject = typeof document != 'undefined' - ? document.domain && activeXDocument - ? NullProtoObjectViaActiveX(activeXDocument) // old IE - : NullProtoObjectViaIFrame() - : NullProtoObjectViaActiveX(activeXDocument); // WSH - var length = enumBugKeys.length; - while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; - return NullProtoObject(); -}; - -hiddenKeys[IE_PROTO] = true; - -// `Object.create` method -// https://tc39.es/ecma262/#sec-object.create -module.exports = Object.create || function create(O, Properties) { - var result; - if (O !== null) { - EmptyConstructor[PROTOTYPE] = anObject(O); - result = new EmptyConstructor(); - EmptyConstructor[PROTOTYPE] = null; - // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; - } else result = NullProtoObject(); - return Properties === undefined ? result : defineProperties(result, Properties); -}; - - -/***/ }), - -/***/ 10821: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var possibleNames = __webpack_require__(10884); - -var g = typeof globalThis === 'undefined' ? __webpack_require__.g : globalThis; - -/** @type {import('.')} */ -module.exports = function availableTypedArrays() { - var /** @type {ReturnType} */ out = []; - for (var i = 0; i < possibleNames.length; i++) { - if (typeof g[possibleNames[i]] === 'function') { - // @ts-expect-error - out[out.length] = possibleNames[i]; - } - } - return out; -}; - - -/***/ }), - -/***/ 10849: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var uncurryThis = __webpack_require__(38347); -var toIntegerOrInfinity = __webpack_require__(26882); -var thisNumberValue = __webpack_require__(16679); -var $repeat = __webpack_require__(34858); -var fails = __webpack_require__(47044); - -var RangeError = global.RangeError; -var String = global.String; -var floor = Math.floor; -var repeat = uncurryThis($repeat); -var stringSlice = uncurryThis(''.slice); -var un$ToFixed = uncurryThis(1.0.toFixed); - -var pow = function (x, n, acc) { - return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc); -}; - -var log = function (x) { - var n = 0; - var x2 = x; - while (x2 >= 4096) { - n += 12; - x2 /= 4096; - } - while (x2 >= 2) { - n += 1; - x2 /= 2; - } return n; -}; - -var multiply = function (data, n, c) { - var index = -1; - var c2 = c; - while (++index < 6) { - c2 += n * data[index]; - data[index] = c2 % 1e7; - c2 = floor(c2 / 1e7); - } -}; - -var divide = function (data, n) { - var index = 6; - var c = 0; - while (--index >= 0) { - c += data[index]; - data[index] = floor(c / n); - c = (c % n) * 1e7; - } -}; - -var dataToString = function (data) { - var index = 6; - var s = ''; - while (--index >= 0) { - if (s !== '' || index === 0 || data[index] !== 0) { - var t = String(data[index]); - s = s === '' ? t : s + repeat('0', 7 - t.length) + t; - } - } return s; -}; - -var FORCED = fails(function () { - return un$ToFixed(0.00008, 3) !== '0.000' || - un$ToFixed(0.9, 0) !== '1' || - un$ToFixed(1.255, 2) !== '1.25' || - un$ToFixed(1000000000000000128.0, 0) !== '1000000000000000128'; -}) || !fails(function () { - // V8 ~ Android 4.3- - un$ToFixed({}); -}); - -// `Number.prototype.toFixed` method -// https://tc39.es/ecma262/#sec-number.prototype.tofixed -$({ target: 'Number', proto: true, forced: FORCED }, { - toFixed: function toFixed(fractionDigits) { - var number = thisNumberValue(this); - var fractDigits = toIntegerOrInfinity(fractionDigits); - var data = [0, 0, 0, 0, 0, 0]; - var sign = ''; - var result = '0'; - var e, z, j, k; - - if (fractDigits < 0 || fractDigits > 20) throw RangeError('Incorrect fraction digits'); - // eslint-disable-next-line no-self-compare -- NaN check - if (number != number) return 'NaN'; - if (number <= -1e21 || number >= 1e21) return String(number); - if (number < 0) { - sign = '-'; - number = -number; - } - if (number > 1e-21) { - e = log(number * pow(2, 69, 1)) - 69; - z = e < 0 ? number * pow(2, -e, 1) : number / pow(2, e, 1); - z *= 0x10000000000000; - e = 52 - e; - if (e > 0) { - multiply(data, 0, z); - j = fractDigits; - while (j >= 7) { - multiply(data, 1e7, 0); - j -= 7; - } - multiply(data, pow(10, j, 1), 0); - j = e - 1; - while (j >= 23) { - divide(data, 1 << 23); - j -= 23; - } - divide(data, 1 << j); - multiply(data, 1, 1); - divide(data, 2); - result = dataToString(data); - } else { - multiply(data, 0, z); - multiply(data, 1 << -e, 0); - result = dataToString(data) + repeat('0', fractDigits); - } - } - if (fractDigits > 0) { - k = result.length; - result = sign + (k <= fractDigits - ? '0.' + repeat('0', fractDigits - k) + result - : stringSlice(result, 0, k - fractDigits) + '.' + stringSlice(result, k - fractDigits)); - } else { - result = sign + result; - } return result; - } -}); - - -/***/ }), - -/***/ 10884: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('.')} */ -module.exports = [ - 'Float16Array', - 'Float32Array', - 'Float64Array', - 'Int8Array', - 'Int16Array', - 'Int32Array', - 'Uint8Array', - 'Uint8ClampedArray', - 'Uint16Array', - 'Uint32Array', - 'BigInt64Array', - 'BigUint64Array' -]; - - -/***/ }), - -/***/ 11206: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); - -module.exports = global; - - -/***/ }), - -/***/ 11220: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var isUndefined = (__webpack_require__(91867).isUndefined); -var ElementWriter = __webpack_require__(54861); - -/** - * Creates an instance of PageElementWriter - an extended ElementWriter - * which can handle: - * - page-breaks (it adds new pages when there's not enough space left), - * - repeatable fragments (like table-headers, which are repeated everytime - * a page-break occurs) - * - transactions (used for unbreakable-blocks when we want to make sure - * whole block will be rendered on the same page) - */ -function PageElementWriter(context, tracker) { - this.transactionLevel = 0; - this.repeatables = []; - this.tracker = tracker; - this.writer = new ElementWriter(context, tracker); -} - -function fitOnPage(self, addFct) { - var position = addFct(self); - if (!position) { - self.moveToNextPage(); - position = addFct(self); - } - return position; -} - -PageElementWriter.prototype.addLine = function (line, dontUpdateContextPosition, index) { - return fitOnPage(this, function (self) { - return self.writer.addLine(line, dontUpdateContextPosition, index); - }); -}; - -PageElementWriter.prototype.addImage = function (image, index) { - return fitOnPage(this, function (self) { - return self.writer.addImage(image, index); - }); -}; - -PageElementWriter.prototype.addSVG = function (image, index) { - return fitOnPage(this, function (self) { - return self.writer.addSVG(image, index); - }); -}; - -PageElementWriter.prototype.addQr = function (qr, index) { - return fitOnPage(this, function (self) { - return self.writer.addQr(qr, index); - }); -}; - -PageElementWriter.prototype.addVector = function (vector, ignoreContextX, ignoreContextY, index, forcePage) { - return this.writer.addVector(vector, ignoreContextX, ignoreContextY, index, forcePage); -}; - -PageElementWriter.prototype.beginClip = function (width, height) { - return this.writer.beginClip(width, height); -}; - -PageElementWriter.prototype.endClip = function () { - return this.writer.endClip(); -}; - -PageElementWriter.prototype.alignCanvas = function (node) { - this.writer.alignCanvas(node); -}; - -PageElementWriter.prototype.addFragment = function (fragment, useBlockXOffset, useBlockYOffset, dontUpdateContextPosition) { - if (!this.writer.addFragment(fragment, useBlockXOffset, useBlockYOffset, dontUpdateContextPosition)) { - this.moveToNextPage(); - this.writer.addFragment(fragment, useBlockXOffset, useBlockYOffset, dontUpdateContextPosition); - } -}; - -PageElementWriter.prototype.moveToNextPage = function (pageOrientation) { - - var nextPage = this.writer.context.moveToNextPage(pageOrientation); - - // moveToNextPage is called multiple times for table, because is called for each column - // and repeatables are inserted only in the first time. If columns are used, is needed - // call for table in first column and then for table in the second column (is other repeatables). - this.repeatables.forEach(function (rep) { - if (isUndefined(rep.insertedOnPages[this.writer.context.page])) { - rep.insertedOnPages[this.writer.context.page] = true; - this.writer.addFragment(rep, true); - } else { - this.writer.context.moveDown(rep.height); - } - }, this); - - this.writer.tracker.emit('pageChanged', { - prevPage: nextPage.prevPage, - prevY: nextPage.prevY, - y: this.writer.context.y - }); -}; - -PageElementWriter.prototype.beginUnbreakableBlock = function (width, height) { - if (this.transactionLevel++ === 0) { - this.originalX = this.writer.context.x; - this.writer.pushContext(width, height); - } -}; - -PageElementWriter.prototype.commitUnbreakableBlock = function (forcedX, forcedY) { - if (--this.transactionLevel === 0) { - var unbreakableContext = this.writer.context; - this.writer.popContext(); - - var nbPages = unbreakableContext.pages.length; - if (nbPages > 0) { - // no support for multi-page unbreakableBlocks - var fragment = unbreakableContext.pages[0]; - fragment.xOffset = forcedX; - fragment.yOffset = forcedY; - - //TODO: vectors can influence height in some situations - if (nbPages > 1) { - // on out-of-context blocs (headers, footers, background) height should be the whole DocumentContext height - if (forcedX !== undefined || forcedY !== undefined) { - fragment.height = unbreakableContext.getCurrentPage().pageSize.height - unbreakableContext.pageMargins.top - unbreakableContext.pageMargins.bottom; - } else { - fragment.height = this.writer.context.getCurrentPage().pageSize.height - this.writer.context.pageMargins.top - this.writer.context.pageMargins.bottom; - for (var i = 0, l = this.repeatables.length; i < l; i++) { - fragment.height -= this.repeatables[i].height; - } - } - } else { - fragment.height = unbreakableContext.y; - } - - if (forcedX !== undefined || forcedY !== undefined) { - this.writer.addFragment(fragment, true, true, true); - } else { - this.addFragment(fragment); - } - } - } -}; - -PageElementWriter.prototype.currentBlockToRepeatable = function () { - var unbreakableContext = this.writer.context; - var rep = { items: [] }; - - unbreakableContext.pages[0].items.forEach(function (item) { - rep.items.push(item); - }); - - rep.xOffset = this.originalX; - - //TODO: vectors can influence height in some situations - rep.height = unbreakableContext.y; - - rep.insertedOnPages = []; - - return rep; -}; - -PageElementWriter.prototype.pushToRepeatables = function (rep) { - this.repeatables.push(rep); -}; - -PageElementWriter.prototype.popFromRepeatables = function () { - this.repeatables.pop(); -}; - -PageElementWriter.prototype.context = function () { - return this.writer.context; -}; - -module.exports = PageElementWriter; - - -/***/ }), - -/***/ 11326: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; - -var Buffer = (__webpack_require__(93143).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 -}; - -Utf7Codec.prototype.encoder = Utf7Encoder -Utf7Codec.prototype.decoder = Utf7Decoder -Utf7Codec.prototype.bomAware = true - -// -- Encoding - -// Why scape ()?./? -// eslint-disable-next-line no-useless-escape -var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g - -function Utf7Encoder (options, codec) { - this.iconv = codec.iconv -} - -Utf7Encoder.prototype.write = function (str) { - // Naive implementation. - // Non-direct chars are encoded as "+-"; 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))) -} - -Utf7Encoder.prototype.end = function () { -} - -// -- Decoding - -function Utf7Decoder (options, codec) { - this.iconv = codec.iconv - this.inBase64 = false - this.base64Accum = "" -} - -// Why scape /? -// eslint-disable-next-line no-useless-escape -var base64Regex = /[A-Za-z0-9\/+]/ -var base64Chars = [] -for (var i = 0; i < 256; i++) { base64Chars[i] = base64Regex.test(String.fromCharCode(i)) } - -var plusChar = "+".charCodeAt(0) -var minusChar = "-".charCodeAt(0) -var andChar = "&".charCodeAt(0) - -Utf7Decoder.prototype.write = function (buf) { - var res = ""; var lastI = 0 - var inBase64 = this.inBase64 - var base64Accum = this.base64Accum - - // The decoder is more involved as we must handle chunks in stream. - - 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") - } - - if (buf[i] != minusChar) // Minus is absorbed after base64. - { i-- } - - lastI = i + 1 - inBase64 = false - base64Accum = "" - } - } - } - - if (!inBase64) { - res += this.iconv.decode(buf.slice(lastI), "ascii") // Write direct chars. - } else { - var b64str = base64Accum + this.iconv.decode(buf.slice(lastI), "ascii") - - 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) - - res += this.iconv.decode(Buffer.from(b64str, "base64"), "utf16-be") - } - - this.inBase64 = inBase64 - this.base64Accum = base64Accum - - return res -} - -Utf7Decoder.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 -} - -// 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. - -exports.utf7imap = Utf7IMAPCodec -function Utf7IMAPCodec (codecOptions, iconv) { - this.iconv = iconv -}; - -Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder -Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder -Utf7IMAPCodec.prototype.bomAware = true - -// -- Encoding - -function Utf7IMAPEncoder (options, codec) { - this.iconv = codec.iconv - this.inBase64 = false - this.base64Accum = Buffer.alloc(6) - this.base64AccumIdx = 0 -} - -Utf7IMAPEncoder.prototype.write = function (str) { - var inBase64 = this.inBase64 - var base64Accum = this.base64Accum - var base64AccumIdx = this.base64AccumIdx - var buf = Buffer.alloc(str.length * 5 + 10); var bufIdx = 0 - - for (var i = 0; i < str.length; i++) { - var uChar = str.charCodeAt(i) - if (uChar >= 0x20 && 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 - } - - buf[bufIdx++] = minusChar // Write '-', then go to direct mode. - inBase64 = false - } - - if (!inBase64) { - buf[bufIdx++] = uChar // Write direct character - - if (uChar === andChar) // Ampersand -> '&-' - { buf[bufIdx++] = minusChar } - } - } 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 - - if (base64AccumIdx == base64Accum.length) { - bufIdx += buf.write(base64Accum.toString("base64").replace(/\//g, ","), bufIdx) - base64AccumIdx = 0 - } - } - } - } - - this.inBase64 = inBase64 - this.base64AccumIdx = base64AccumIdx - - return buf.slice(0, bufIdx) -} - -Utf7IMAPEncoder.prototype.end = function () { - var buf = Buffer.alloc(10); var 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 = ""; var lastI = 0 - var inBase64 = this.inBase64 - var 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") - } - - if (buf[i] != minusChar) // Minus may be absorbed after base64. - { i-- } - - lastI = i + 1 - inBase64 = false - base64Accum = "" - } - } - } - - 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, "/") - - 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) - - res += this.iconv.decode(Buffer.from(b64str, "base64"), "utf16-be") - } - - this.inBase64 = inBase64 - this.base64Accum = base64Accum - - return res -} - -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 -} - - -/***/ }), - -/***/ 11394: -/***/ (function(module, exports, __webpack_require__) { - -var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function(a,b){if(true)!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (b), - __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 // removed by dead control flow -{}})(this,function(){"use strict";function b(a,b){return"undefined"==typeof b?b={autoBom:!1}:"object"!=typeof b&&(console.warn("Deprecated: Expected third argument to be a object"),b={autoBom:!b}),b.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(a.type)?new Blob(["\uFEFF",a],{type:a.type}):a}function c(a,b,c){var d=new XMLHttpRequest;d.open("GET",a),d.responseType="blob",d.onload=function(){g(d.response,b,c)},d.onerror=function(){console.error("could not download file")},d.send()}function d(a){var b=new XMLHttpRequest;b.open("HEAD",a,!1);try{b.send()}catch(a){}return 200<=b.status&&299>=b.status}function e(a){try{a.dispatchEvent(new MouseEvent("click"))}catch(c){var b=document.createEvent("MouseEvents");b.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),a.dispatchEvent(b)}}var f="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof __webpack_require__.g&&__webpack_require__.g.global===__webpack_require__.g?__webpack_require__.g:void 0,a=f.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),g=f.saveAs||("object"!=typeof window||window!==f?function(){}:(typeof HTMLAnchorElement !== "undefined" && "download" in HTMLAnchorElement.prototype)&&!a?function(b,g,h){var i=f.URL||f.webkitURL,j=document.createElement("a");g=g||b.name||"download",j.download=g,j.rel="noopener","string"==typeof b?(j.href=b,j.origin===location.origin?e(j):d(j.href)?c(b,g,h):e(j,j.target="_blank")):(j.href=i.createObjectURL(b),setTimeout(function(){i.revokeObjectURL(j.href)},4E4),setTimeout(function(){e(j)},0))}:"msSaveOrOpenBlob"in navigator?function(f,g,h){if(g=g||f.name||"download","string"!=typeof f)navigator.msSaveOrOpenBlob(b(f,h),g);else if(d(f))c(f,g,h);else{var i=document.createElement("a");i.href=f,i.target="_blank",setTimeout(function(){e(i)})}}:function(b,d,e,g){if(g=g||open("","_blank"),g&&(g.document.title=g.document.body.innerText="downloading..."),"string"==typeof b)return c(b,d,e);var h="application/octet-stream"===b.type,i=/constructor/i.test(f.HTMLElement)||f.safari,j=/CriOS\/[\d]+/.test(navigator.userAgent);if((j||h&&i||a)&&"undefined"!=typeof FileReader){var k=new FileReader;k.onloadend=function(){var a=k.result;a=j?a:a.replace(/^data:[^;]*;/,"data:attachment/file;"),g?g.location.href=a:location=a,g=null},k.readAsDataURL(b)}else{var l=f.URL||f.webkitURL,m=l.createObjectURL(b);g?g.location=m:location.href=m,g=null,setTimeout(function(){l.revokeObjectURL(m)},4E4)}});f.saveAs=g.saveAs=g, true&&(module.exports=g)}); - - - -/***/ }), - -/***/ 11432: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(41584); -/* eslint-disable node/no-deprecated-api */ -var buffer = __webpack_require__(14598); -var Buffer = buffer.Buffer; - -// alternative to using Object.keys for old browsers -function copyProps(src, dst) { - for (var key in src) { - dst[key] = src[key]; - } -} -if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { - module.exports = buffer; -} else { - // Copy properties from require('buffer') - copyProps(buffer, exports); - exports.Buffer = SafeBuffer; -} -function SafeBuffer(arg, encodingOrOffset, length) { - return Buffer(arg, encodingOrOffset, length); -} - -// Copy static methods from Buffer -copyProps(Buffer, SafeBuffer); -SafeBuffer.from = function (arg, encodingOrOffset, length) { - if (typeof arg === 'number') { - throw new TypeError('Argument must not be a number'); - } - return Buffer(arg, encodingOrOffset, length); -}; -SafeBuffer.alloc = function (size, fill, encoding) { - if (typeof size !== 'number') { - throw new TypeError('Argument must be a number'); - } - var buf = Buffer(size); - if (fill !== undefined) { - if (typeof encoding === 'string') { - buf.fill(fill, encoding); - } else { - buf.fill(fill); - } - } else { - buf.fill(0); - } - return buf; -}; -SafeBuffer.allocUnsafe = function (size) { - if (typeof size !== 'number') { - throw new TypeError('Argument must be a number'); - } - return Buffer(size); -}; -SafeBuffer.allocUnsafeSlow = function (size) { - if (typeof size !== 'number') { - throw new TypeError('Argument must be a number'); - } - return buffer.SlowBuffer(size); -}; - -/***/ }), - -/***/ 11548: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var isString = (__webpack_require__(91867).isString); -var isNumber = (__webpack_require__(91867).isNumber); -var isObject = (__webpack_require__(91867).isObject); -var isArray = (__webpack_require__(91867).isArray); -var isUndefined = (__webpack_require__(91867).isUndefined); -var LineBreaker = __webpack_require__(5417); - -var LEADING = /^(\s)+/g; -var TRAILING = /(\s)+$/g; - -/** - * Creates an instance of TextTools - text measurement utility - * - * @constructor - * @param {FontProvider} fontProvider - */ -function TextTools(fontProvider) { - this.fontProvider = fontProvider; -} - -/** - * Converts an array of strings (or inline-definition-objects) into a collection - * of inlines and calculated minWidth/maxWidth. - * and their min/max widths - * @param {Object} textArray - an array of inline-definition-objects (or strings) - * @param {Object} styleContextStack current style stack - * @return {Object} collection of inlines, minWidth, maxWidth - */ -TextTools.prototype.buildInlines = function (textArray, styleContextStack) { - var measured = measure(this.fontProvider, textArray, styleContextStack); - - var minWidth = 0, - maxWidth = 0, - currentLineWidth; - - measured.forEach(function (inline) { - minWidth = Math.max(minWidth, inline.width - inline.leadingCut - inline.trailingCut); - - if (!currentLineWidth) { - currentLineWidth = { width: 0, leadingCut: inline.leadingCut, trailingCut: 0 }; - } - - currentLineWidth.width += inline.width; - currentLineWidth.trailingCut = inline.trailingCut; - - maxWidth = Math.max(maxWidth, getTrimmedWidth(currentLineWidth)); - - if (inline.lineEnd) { - currentLineWidth = null; - } - }); - - if (getStyleProperty({}, styleContextStack, 'noWrap', false)) { - minWidth = maxWidth; - } - - return { - items: measured, - minWidth: minWidth, - maxWidth: maxWidth - }; - - function getTrimmedWidth(item) { - return Math.max(0, item.width - item.leadingCut - item.trailingCut); - } -}; - -/** - * Returns size of the specified string (without breaking it) using the current style - * @param {String} text text to be measured - * @param {Object} styleContextStack current style stack - * @return {Object} size of the specified string - */ -TextTools.prototype.sizeOfString = function (text, styleContextStack) { - text = text ? text.toString().replace(/\t/g, ' ') : ''; - - //TODO: refactor - extract from measure - var fontName = getStyleProperty({}, styleContextStack, 'font', 'Roboto'); - var fontSize = getStyleProperty({}, styleContextStack, 'fontSize', 12); - var fontFeatures = getStyleProperty({}, styleContextStack, 'fontFeatures', null); - var bold = getStyleProperty({}, styleContextStack, 'bold', false); - var italics = getStyleProperty({}, styleContextStack, 'italics', false); - var lineHeight = getStyleProperty({}, styleContextStack, 'lineHeight', 1); - var characterSpacing = getStyleProperty({}, styleContextStack, 'characterSpacing', 0); - - var font = this.fontProvider.provideFont(fontName, bold, italics); - - return { - width: widthOfString(text, font, fontSize, characterSpacing, fontFeatures), - height: font.lineHeight(fontSize) * lineHeight, - fontSize: fontSize, - lineHeight: lineHeight, - ascender: font.ascender / 1000 * fontSize, - descender: font.descender / 1000 * fontSize - }; -}; - -/** - * Returns size of the specified rotated string (without breaking it) using the current style - * - * @param {string} text text to be measured - * @param {number} angle - * @param {object} styleContextStack current style stack - * @returns {object} size of the specified string - */ -TextTools.prototype.sizeOfRotatedText = function (text, angle, styleContextStack) { - var angleRad = angle * Math.PI / -180; - var size = this.sizeOfString(text, styleContextStack); - return { - width: Math.abs(size.height * Math.sin(angleRad)) + Math.abs(size.width * Math.cos(angleRad)), - height: Math.abs(size.width * Math.sin(angleRad)) + Math.abs(size.height * Math.cos(angleRad)) - }; -}; - -TextTools.prototype.widthOfString = function (text, font, fontSize, characterSpacing, fontFeatures) { - return widthOfString(text, font, fontSize, characterSpacing, fontFeatures); -}; - -function splitWords(text, noWrap, breakAll) { - if (breakAll === undefined) { - breakAll = false; - } - - var results = []; - - if (text === undefined || text === null) { - text = ''; - } else { - text = String(text); - } - - text = text.replace(/\t/g, ' '); - - if (noWrap) { - results.push({ text: text }); - return results; - } - - if (text.length === 0) { - results.push({ text: '' }); - return results; - } - if (breakAll) { - return text.split('').map(c => { - if(c.match(/^\n$|^\r$/)) { // new line - return { text: '', lineEnd: true }; - } - return { text: c }; - }); - } - - var breaker = new LineBreaker(text); - var last = 0; - var bk; - - while (bk = breaker.nextBreak()) { - var word = text.slice(last, bk.position); - - if (bk.required || word.match(/\r?\n$|\r$/)) { // new line - word = word.replace(/\r?\n$|\r$/, ''); - results.push({ text: word, lineEnd: true }); - } else { - results.push({ text: word }); - } - - last = bk.position; - } - - return results; -} - -function copyStyle(source, destination) { - destination = destination || {}; - source = source || {}; //TODO: default style - - for (var key in source) { - if (key != 'text' && source.hasOwnProperty(key)) { - destination[key] = source[key]; - } - } - - return destination; -} - -function normalizeTextArray(array, styleContextStack) { - function flatten(array) { - return array.reduce(function (prev, cur) { - var current = isArray(cur.text) ? flatten(cur.text) : cur; - var more = [].concat(current).some(Array.isArray); - return prev.concat(more ? flatten(current) : current); - }, []); - } - - function getOneWord(index, words, noWrap) { - if (isUndefined(words[index])) { - return null; - } - - if (words[index].lineEnd) { - return null; - } - - var word = words[index].text; - - if (noWrap) { - var tmpWords = splitWords(normalizeString(word), false); - if (isUndefined(tmpWords[tmpWords.length - 1])) { - return null; - } - word = tmpWords[tmpWords.length - 1].text; - } - - return word; - } - - var results = []; - - if (!isArray(array)) { - array = [array]; - } - - array = flatten(array); - - var lastWord = null; - for (var i = 0, l = array.length; i < l; i++) { - var item = array[i]; - var style = null; - var words; - - var breakAll = getStyleProperty(item || {}, styleContextStack, 'wordBreak', 'normal') === 'break-all'; - var noWrap = getStyleProperty(item || {}, styleContextStack, 'noWrap', false); - if (isObject(item)) { - if (item._textRef && item._textRef._textNodeRef.text) { - item.text = item._textRef._textNodeRef.text; - } - words = splitWords(normalizeString(item.text), noWrap, breakAll); - style = copyStyle(item); - } else { - words = splitWords(normalizeString(item), noWrap, breakAll); - } - - if (lastWord && words.length) { - var firstWord = getOneWord(0, words, noWrap); - - var wrapWords = splitWords(normalizeString(lastWord + firstWord), false); - if (wrapWords.length === 1) { - results[results.length - 1].noNewLine = true; - } - } - - for (var i2 = 0, l2 = words.length; i2 < l2; i2++) { - var result = { - text: words[i2].text - }; - - if (words[i2].lineEnd) { - result.lineEnd = true; - } - - copyStyle(style, result); - - results.push(result); - } - - lastWord = null; - if (i + 1 < l) { - lastWord = getOneWord(words.length - 1, words, noWrap); - } - } - - return results; -} - -function normalizeString(value) { - if (value === undefined || value === null) { - return ''; - } else if (isNumber(value)) { - return value.toString(); - } else if (isString(value)) { - return value; - } else { - return value.toString(); - } -} - -function getStyleProperty(item, styleContextStack, property, defaultValue) { - var value; - - if (item[property] !== undefined && item[property] !== null) { - // item defines this property - return item[property]; - } - - if (!styleContextStack) { - return defaultValue; - } - - styleContextStack.auto(item, function () { - value = styleContextStack.getProperty(property); - }); - - if (value !== null && value !== undefined) { - return value; - } else { - return defaultValue; - } -} - -function measure(fontProvider, textArray, styleContextStack) { - var normalized = normalizeTextArray(textArray, styleContextStack); - - if (normalized.length) { - var leadingIndent = getStyleProperty(normalized[0], styleContextStack, 'leadingIndent', 0); - - if (leadingIndent) { - normalized[0].leadingCut = -leadingIndent; - normalized[0].leadingIndent = leadingIndent; - } - } - - normalized.forEach(function (item) { - var fontName = getStyleProperty(item, styleContextStack, 'font', 'Roboto'); - var fontSize = getStyleProperty(item, styleContextStack, 'fontSize', 12); - var fontFeatures = getStyleProperty(item, styleContextStack, 'fontFeatures', null); - var bold = getStyleProperty(item, styleContextStack, 'bold', false); - var italics = getStyleProperty(item, styleContextStack, 'italics', false); - var color = getStyleProperty(item, styleContextStack, 'color', 'black'); - var decoration = getStyleProperty(item, styleContextStack, 'decoration', null); - var decorationColor = getStyleProperty(item, styleContextStack, 'decorationColor', null); - var decorationStyle = getStyleProperty(item, styleContextStack, 'decorationStyle', null); - var background = getStyleProperty(item, styleContextStack, 'background', null); - var lineHeight = getStyleProperty(item, styleContextStack, 'lineHeight', 1); - var characterSpacing = getStyleProperty(item, styleContextStack, 'characterSpacing', 0); - var link = getStyleProperty(item, styleContextStack, 'link', null); - var linkToPage = getStyleProperty(item, styleContextStack, 'linkToPage', null); - var linkToDestination = getStyleProperty(item, styleContextStack, 'linkToDestination', null); - var noWrap = getStyleProperty(item, styleContextStack, 'noWrap', null); - var preserveLeadingSpaces = getStyleProperty(item, styleContextStack, 'preserveLeadingSpaces', false); - var preserveTrailingSpaces = getStyleProperty(item, styleContextStack, 'preserveTrailingSpaces', false); - var opacity = getStyleProperty(item, styleContextStack, 'opacity', 1); - var sup = getStyleProperty(item, styleContextStack, 'sup', false); - var sub = getStyleProperty(item, styleContextStack, 'sub', false); - - if ((sup || sub) && item.fontSize === undefined) { - // font size reduction taken from here: https://en.wikipedia.org/wiki/Subscript_and_superscript#Desktop_publishing - fontSize *= 0.58; - } - - var font = fontProvider.provideFont(fontName, bold, italics); - - item.width = widthOfString(item.text, font, fontSize, characterSpacing, fontFeatures); - item.height = font.lineHeight(fontSize) * lineHeight; - - if (!item.leadingCut) { - item.leadingCut = 0; - } - - var leadingSpaces; - if (!preserveLeadingSpaces && (leadingSpaces = item.text.match(LEADING))) { - item.leadingCut += widthOfString(leadingSpaces[0], font, fontSize, characterSpacing, fontFeatures); - } - - var trailingSpaces; - if (!preserveTrailingSpaces && (trailingSpaces = item.text.match(TRAILING))) { - item.trailingCut = widthOfString(trailingSpaces[0], font, fontSize, characterSpacing, fontFeatures); - } else { - item.trailingCut = 0; - } - - item.alignment = getStyleProperty(item, styleContextStack, 'alignment', 'left'); - item.font = font; - item.fontSize = fontSize; - item.fontFeatures = fontFeatures; - item.characterSpacing = characterSpacing; - item.color = color; - item.decoration = decoration; - item.decorationColor = decorationColor; - item.decorationStyle = decorationStyle; - item.background = background; - item.link = link; - item.linkToPage = linkToPage; - item.linkToDestination = linkToDestination; - item.noWrap = noWrap; - item.opacity = opacity; - item.sup = sup; - item.sub = sub; - }); - - return normalized; -} - -function widthOfString(text, font, fontSize, characterSpacing, fontFeatures) { - return font.widthOfString(text, fontSize, fontFeatures) + ((characterSpacing || 0) * (text.length - 1)); -} - -TextTools.getStyleProperty = getStyleProperty; - -module.exports = TextTools; - - -/***/ }), - -/***/ 11610: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(14032); -__webpack_require__(68067); -function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } -function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } -var ArrayT = __webpack_require__(68332); -var _require = __webpack_require__(56128), - NumberT = _require.Number; -var utils = __webpack_require__(18128); -var _require2 = __webpack_require__(7187), - _inspect = _require2.inspect; -var LazyArrayT = /*#__PURE__*/function (_ArrayT) { - function LazyArrayT() { - return _ArrayT.apply(this, arguments) || this; - } - _inheritsLoose(LazyArrayT, _ArrayT); - var _proto = LazyArrayT.prototype; - _proto.decode = function decode(stream, parent) { - var pos = stream.pos; - var length = utils.resolveLength(this.length, stream, parent); - if (this.length instanceof NumberT) { - parent = { - parent: parent, - _startOffset: pos, - _currentOffset: 0, - _length: length - }; - } - var res = new LazyArray(this.type, length, stream, parent); - stream.pos += length * this.type.size(null, parent); - return res; - }; - _proto.size = function size(val, ctx) { - if (val instanceof LazyArray) { - val = val.toArray(); - } - return _ArrayT.prototype.size.call(this, val, ctx); - }; - _proto.encode = function encode(stream, val, ctx) { - if (val instanceof LazyArray) { - val = val.toArray(); - } - return _ArrayT.prototype.encode.call(this, stream, val, ctx); - }; - return LazyArrayT; -}(ArrayT); -var LazyArray = /*#__PURE__*/function () { - function LazyArray(type, length, stream, ctx) { - this.type = type; - this.length = length; - this.stream = stream; - this.ctx = ctx; - this.base = this.stream.pos; - this.items = []; - } - var _proto2 = LazyArray.prototype; - _proto2.get = function get(index) { - if (index < 0 || index >= this.length) { - return undefined; - } - if (this.items[index] == null) { - var pos = this.stream.pos; - this.stream.pos = this.base + this.type.size(null, this.ctx) * index; - this.items[index] = this.type.decode(this.stream, this.ctx); - this.stream.pos = pos; - } - return this.items[index]; - }; - _proto2.toArray = function toArray() { - var result = []; - for (var i = 0, end = this.length; i < end; i++) { - result.push(this.get(i)); - } - return result; - }; - _proto2.inspect = function inspect() { - return _inspect(this.toArray()); - }; - return LazyArray; -}(); -module.exports = LazyArrayT; - -/***/ }), - -/***/ 11765: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var $ = __webpack_require__(56475); -var from = __webpack_require__(95717); -var checkCorrectnessOfIteration = __webpack_require__(46769); - -var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { - // eslint-disable-next-line es/no-array-from -- required for testing - Array.from(iterable); -}); - -// `Array.from` method -// https://tc39.es/ecma262/#sec-array.from -$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { - from: from -}); - - -/***/ }), - -/***/ 11813: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -// TODO: Remove from `core-js@4` since it's moved to entry points -__webpack_require__(61726); -var uncurryThis = __webpack_require__(38347); -var redefine = __webpack_require__(13711); -var regexpExec = __webpack_require__(49820); -var fails = __webpack_require__(47044); -var wellKnownSymbol = __webpack_require__(38688); -var createNonEnumerableProperty = __webpack_require__(48914); - -var SPECIES = wellKnownSymbol('species'); -var RegExpPrototype = RegExp.prototype; - -module.exports = function (KEY, exec, FORCED, SHAM) { - var SYMBOL = wellKnownSymbol(KEY); - - var DELEGATES_TO_SYMBOL = !fails(function () { - // String methods call symbol-named RegEp methods - var O = {}; - O[SYMBOL] = function () { return 7; }; - return ''[KEY](O) != 7; - }); - - var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () { - // Symbol-named RegExp methods call .exec - var execCalled = false; - var re = /a/; - - if (KEY === 'split') { - // We can't use real regex here since it causes deoptimization - // and serious performance degradation in V8 - // https://github.com/zloirock/core-js/issues/306 - re = {}; - // RegExp[@@split] doesn't call the regex's exec method, but first creates - // a new one. We need to return the patched regex when creating the new one. - re.constructor = {}; - re.constructor[SPECIES] = function () { return re; }; - re.flags = ''; - re[SYMBOL] = /./[SYMBOL]; - } - - re.exec = function () { execCalled = true; return null; }; - - re[SYMBOL](''); - return !execCalled; - }); - - if ( - !DELEGATES_TO_SYMBOL || - !DELEGATES_TO_EXEC || - FORCED - ) { - var uncurriedNativeRegExpMethod = uncurryThis(/./[SYMBOL]); - var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) { - var uncurriedNativeMethod = uncurryThis(nativeMethod); - var $exec = regexp.exec; - if ($exec === regexpExec || $exec === RegExpPrototype.exec) { - if (DELEGATES_TO_SYMBOL && !forceStringMethod) { - // The native String method already delegates to @@method (this - // polyfilled function), leasing to infinite recursion. - // We avoid it by directly calling the native @@method method. - return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) }; - } - return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) }; - } - return { done: false }; - }); - - redefine(String.prototype, KEY, methods[0]); - redefine(RegExpPrototype, SYMBOL, methods[1]); - } - - if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true); -}; - - -/***/ }), - -/***/ 11905: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66664)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - - /** - * SHA-224 hash algorithm. - */ - var SHA224 = C_algo.SHA224 = SHA256.extend({ - _doReset: function _doReset() { - this._hash = new WordArray.init([0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4]); - }, - _doFinalize: function _doFinalize() { - var hash = SHA256._doFinalize.call(this); - hash.sigBytes -= 4; - return hash; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA224('message'); - * var hash = CryptoJS.SHA224(wordArray); - */ - C.SHA224 = SHA256._createHelper(SHA224); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA224(message, key); - */ - C.HmacSHA224 = SHA256._createHmacHelper(SHA224); - })(); - return CryptoJS.SHA224; -}); - -/***/ }), - -/***/ 12072: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var isObject = __webpack_require__(24517); - -var document = global.document; -// typeof document.createElement is 'object' in old IE -var EXISTS = isObject(document) && isObject(document.createElement); - -module.exports = function (it) { - return EXISTS ? document.createElement(it) : {}; -}; - - -/***/ }), - -/***/ 12167: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; -// Ported from https://github.com/mafintosh/end-of-stream with -// permission from the author, Mathias Buus (@mafintosh). - - - -var ERR_STREAM_PREMATURE_CLOSE = (__webpack_require__(83797)/* .codes */ .F).ERR_STREAM_PREMATURE_CLOSE; -function once(callback) { - var called = false; - return function () { - if (called) return; - called = true; - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - callback.apply(this, args); - }; -} -function noop() {} -function isRequest(stream) { - return stream.setHeader && typeof stream.abort === 'function'; -} -function eos(stream, opts, callback) { - if (typeof opts === 'function') return eos(stream, null, opts); - if (!opts) opts = {}; - callback = once(callback || noop); - var readable = opts.readable || opts.readable !== false && stream.readable; - var writable = opts.writable || opts.writable !== false && stream.writable; - var onlegacyfinish = function onlegacyfinish() { - if (!stream.writable) onfinish(); - }; - var writableEnded = stream._writableState && stream._writableState.finished; - var onfinish = function onfinish() { - writable = false; - writableEnded = true; - if (!readable) callback.call(stream); - }; - var readableEnded = stream._readableState && stream._readableState.endEmitted; - var onend = function onend() { - readable = false; - readableEnded = true; - if (!writable) callback.call(stream); - }; - var onerror = function onerror(err) { - callback.call(stream, err); - }; - var onclose = function onclose() { - var err; - if (readable && !readableEnded) { - if (!stream._readableState || !stream._readableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE(); - return callback.call(stream, err); - } - if (writable && !writableEnded) { - if (!stream._writableState || !stream._writableState.ended) err = new ERR_STREAM_PREMATURE_CLOSE(); - return callback.call(stream, err); - } - }; - var onrequest = function onrequest() { - stream.req.on('finish', onfinish); - }; - if (isRequest(stream)) { - stream.on('complete', onfinish); - stream.on('abort', onclose); - if (stream.req) onrequest();else stream.on('request', onrequest); - } else if (writable && !stream._writableState) { - // legacy streams - stream.on('end', onlegacyfinish); - stream.on('close', onlegacyfinish); - } - stream.on('end', onend); - stream.on('finish', onfinish); - if (opts.error !== false) stream.on('error', onerror); - stream.on('close', onclose); - return function () { - stream.removeListener('complete', onfinish); - stream.removeListener('abort', onclose); - stream.removeListener('request', onrequest); - if (stream.req) stream.req.removeListener('finish', onfinish); - stream.removeListener('end', onlegacyfinish); - stream.removeListener('close', onlegacyfinish); - stream.removeListener('finish', onfinish); - stream.removeListener('end', onend); - stream.removeListener('error', onerror); - stream.removeListener('close', onclose); - }; -} -module.exports = eos; - -/***/ }), - -/***/ 12636: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var toIndexedObject = __webpack_require__(98086); -var toAbsoluteIndex = __webpack_require__(74841); -var lengthOfArrayLike = __webpack_require__(45495); - -// `Array.prototype.{ indexOf, includes }` methods implementation -var createMethod = function (IS_INCLUDES) { - return function ($this, el, fromIndex) { - var O = toIndexedObject($this); - var length = lengthOfArrayLike(O); - var index = toAbsoluteIndex(fromIndex, length); - var value; - // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare -- NaN check - if (IS_INCLUDES && el != el) while (length > index) { - value = O[index++]; - // eslint-disable-next-line no-self-compare -- NaN check - if (value != value) return true; - // Array#indexOf ignores holes, Array#includes - not - } else for (;length > index; index++) { - if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; - } return !IS_INCLUDES && -1; - }; -}; - -module.exports = { - // `Array.prototype.includes` method - // https://tc39.es/ecma262/#sec-array.prototype.includes - includes: createMethod(true), - // `Array.prototype.indexOf` method - // https://tc39.es/ecma262/#sec-array.prototype.indexof - indexOf: createMethod(false) -}; - - -/***/ }), - -/***/ 12719: -/***/ (function(module) { - -"use strict"; - - -/* eslint no-invalid-this: 1 */ - -var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; -var toStr = Object.prototype.toString; -var max = Math.max; -var funcType = '[object Function]'; - -var concatty = function concatty(a, b) { - var arr = []; - - for (var i = 0; i < a.length; i += 1) { - arr[i] = a[i]; - } - for (var j = 0; j < b.length; j += 1) { - arr[j + a.length] = b[j]; - } - - return arr; -}; - -var slicy = function slicy(arrLike, offset) { - var arr = []; - for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) { - arr[j] = arrLike[i]; - } - return arr; -}; - -var joiny = function (arr, joiner) { - var str = ''; - for (var i = 0; i < arr.length; i += 1) { - str += arr[i]; - if (i + 1 < arr.length) { - str += joiner; - } - } - return str; -}; - -module.exports = function bind(that) { - var target = this; - if (typeof target !== 'function' || toStr.apply(target) !== funcType) { - throw new TypeError(ERROR_MESSAGE + target); - } - var args = slicy(arguments, 1); - - var bound; - var binder = function () { - if (this instanceof bound) { - var result = target.apply( - this, - concatty(args, arguments) - ); - if (Object(result) === result) { - return result; - } - return this; - } - return target.apply( - that, - concatty(args, arguments) - ); - - }; - - var boundLength = max(0, target.length - args.length); - var boundArgs = []; - for (var i = 0; i < boundLength; i++) { - boundArgs[i] = '$' + i; - } - - bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder); - - if (target.prototype) { - var Empty = function Empty() {}; - Empty.prototype = target.prototype; - bound.prototype = new Empty(); - Empty.prototype = null; - } - - return bound; -}; - - -/***/ }), - -/***/ 12843: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('./shams')} */ -/* eslint complexity: [2, 18], max-statements: [2, 33] */ -module.exports = function hasSymbols() { - if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } - if (typeof Symbol.iterator === 'symbol') { return true; } - - /** @type {{ [k in symbol]?: unknown }} */ - var obj = {}; - var sym = Symbol('test'); - var symObj = Object(sym); - if (typeof sym === 'string') { return false; } - - if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } - if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } - - // temp disabled per https://github.com/ljharb/object.assign/issues/17 - // if (sym instanceof Symbol) { return false; } - // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 - // if (!(symObj instanceof Symbol)) { return false; } - - // if (typeof Symbol.prototype.toString !== 'function') { return false; } - // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } - - var symVal = 42; - obj[sym] = symVal; - for (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop - if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } - - if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } - - var syms = Object.getOwnPropertySymbols(obj); - if (syms.length !== 1 || syms[0] !== sym) { return false; } - - if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } - - if (typeof Object.getOwnPropertyDescriptor === 'function') { - // eslint-disable-next-line no-extra-parens - var descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym)); - if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } - } - - return true; -}; - - -/***/ }), - -/***/ 13250: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var typedArraySpeciesConstructor = __webpack_require__(34815); -var fails = __webpack_require__(47044); -var arraySlice = __webpack_require__(73163); - -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - -var FORCED = fails(function () { - // eslint-disable-next-line es/no-typed-arrays -- required for testing - new Int8Array(1).slice(); -}); - -// `%TypedArray%.prototype.slice` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice -exportTypedArrayMethod('slice', function slice(start, end) { - var list = arraySlice(aTypedArray(this), start, end); - var C = typedArraySpeciesConstructor(this); - var index = 0; - var length = list.length; - var result = new C(length); - while (length > index) result[index] = list[index++]; - return result; -}, FORCED); - - -/***/ }), - -/***/ 13501: -/***/ (function(module) { - -module.exports="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"; - - -/***/ }), - -/***/ 13549: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(41584); -var utils = __webpack_require__(18128); -var Reserved = /*#__PURE__*/function () { - function Reserved(type, count) { - if (count === void 0) { - count = 1; - } - this.type = type; - this.count = count; - } - var _proto = Reserved.prototype; - _proto.decode = function decode(stream, parent) { - stream.pos += this.size(null, parent); - return undefined; - }; - _proto.size = function size(data, parent) { - var count = utils.resolveLength(this.count, null, parent); - return this.type.size() * count; - }; - _proto.encode = function encode(stream, val, parent) { - return stream.fill(0, this.size(val, parent)); - }; - return Reserved; -}(); -module.exports = Reserved; - -/***/ }), - -/***/ 13624: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var $indexOf = (__webpack_require__(12636).indexOf); - -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - -// `%TypedArray%.prototype.indexOf` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.indexof -exportTypedArrayMethod('indexOf', function indexOf(searchElement /* , fromIndex */) { - return $indexOf(aTypedArray(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); -}); - - -/***/ }), - -/***/ 13711: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); -var hasOwn = __webpack_require__(20340); -var createNonEnumerableProperty = __webpack_require__(48914); -var setGlobal = __webpack_require__(7421); -var inspectSource = __webpack_require__(10447); -var InternalStateModule = __webpack_require__(70172); -var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(7081).CONFIGURABLE); - -var getInternalState = InternalStateModule.get; -var enforceInternalState = InternalStateModule.enforce; -var TEMPLATE = String(String).split('String'); - -(module.exports = function (O, key, value, options) { - var unsafe = options ? !!options.unsafe : false; - var simple = options ? !!options.enumerable : false; - var noTargetGet = options ? !!options.noTargetGet : false; - var name = options && options.name !== undefined ? options.name : key; - var state; - if (isCallable(value)) { - if (String(name).slice(0, 7) === 'Symbol(') { - name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'; - } - if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) { - createNonEnumerableProperty(value, 'name', name); - } - state = enforceInternalState(value); - if (!state.source) { - state.source = TEMPLATE.join(typeof name == 'string' ? name : ''); - } - } - if (O === global) { - if (simple) O[key] = value; - else setGlobal(key, value); - return; - } else if (!unsafe) { - delete O[key]; - } else if (!noTargetGet && O[key]) { - simple = true; - } - if (simple) O[key] = value; - else createNonEnumerableProperty(O, key, value); -// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative -})(Function.prototype, 'toString', function toString() { - return isCallable(this) && getInternalState(this).source || inspectSource(this); -}); - - -/***/ }), - -/***/ 13872: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var classof = __webpack_require__(52564); -var getMethod = __webpack_require__(51839); -var Iterators = __webpack_require__(15366); -var wellKnownSymbol = __webpack_require__(38688); - -var ITERATOR = wellKnownSymbol('iterator'); - -module.exports = function (it) { - if (it != undefined) return getMethod(it, ITERATOR) - || getMethod(it, '@@iterator') - || Iterators[classof(it)]; -}; - - -/***/ }), - -/***/ 13945: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var IteratorPrototype = (__webpack_require__(5844).IteratorPrototype); -var create = __webpack_require__(10819); -var createPropertyDescriptor = __webpack_require__(97841); -var setToStringTag = __webpack_require__(15216); -var Iterators = __webpack_require__(15366); - -var returnThis = function () { return this; }; - -module.exports = function (IteratorConstructor, NAME, next) { - var TO_STRING_TAG = NAME + ' Iterator'; - IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) }); - setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); - Iterators[TO_STRING_TAG] = returnThis; - return IteratorConstructor; -}; - - -/***/ }), - -/***/ 14032: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); -var redefine = __webpack_require__(13711); -var toString = __webpack_require__(52598); - -// `Object.prototype.toString` method -// https://tc39.es/ecma262/#sec-object.prototype.tostring -if (!TO_STRING_TAG_SUPPORT) { - redefine(Object.prototype, 'toString', toString, { unsafe: true }); -} - - -/***/ }), - -/***/ 14287: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(81755); -__webpack_require__(8953); -__webpack_require__(14032); -__webpack_require__(3131); -__webpack_require__(90868); -__webpack_require__(65553); -__webpack_require__(75626); -__webpack_require__(95756); -__webpack_require__(56912); -__webpack_require__(58099); -__webpack_require__(47969); -__webpack_require__(59735); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Check if typed arrays are supported - if (typeof ArrayBuffer != 'function') { - return; - } - - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - - // Reference original init - var superInit = WordArray.init; - - // Augment WordArray.init to handle typed arrays - var subInit = WordArray.init = function (typedArray) { - // Convert buffers to uint8 - if (typedArray instanceof ArrayBuffer) { - typedArray = new Uint8Array(typedArray); - } - - // Convert other array views to uint8 - if (typedArray instanceof Int8Array || typeof Uint8ClampedArray !== "undefined" && typedArray instanceof Uint8ClampedArray || typedArray instanceof Int16Array || typedArray instanceof Uint16Array || typedArray instanceof Int32Array || typedArray instanceof Uint32Array || typedArray instanceof Float32Array || typedArray instanceof Float64Array) { - typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength); - } - - // Handle Uint8Array - if (typedArray instanceof Uint8Array) { - // Shortcut - var typedArrayByteLength = typedArray.byteLength; - - // Extract bytes - var words = []; - for (var i = 0; i < typedArrayByteLength; i++) { - words[i >>> 2] |= typedArray[i] << 24 - i % 4 * 8; - } - - // Initialize this word array - superInit.call(this, words, typedArrayByteLength); - } else { - // Else call normal init - superInit.apply(this, arguments); - } - }; - subInit.prototype = WordArray; - })(); - return CryptoJS.lib.WordArray; -}); - -/***/ }), - -/***/ 14598: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; -/*! - * The buffer module from node.js, for the browser. - * - * @author Feross Aboukhadijeh - * @license MIT - */ -/* eslint-disable no-proto */ - - - -__webpack_require__(65292); -__webpack_require__(73844); -__webpack_require__(5597); -__webpack_require__(39081); -__webpack_require__(68626); -__webpack_require__(41584); -__webpack_require__(58028); -__webpack_require__(81755); -__webpack_require__(20731); -__webpack_require__(8953); -__webpack_require__(7585); -__webpack_require__(24863); -__webpack_require__(7283); -__webpack_require__(2876); -__webpack_require__(14032); -__webpack_require__(61726); -__webpack_require__(57114); -__webpack_require__(47458); -__webpack_require__(46467); -__webpack_require__(72095); -__webpack_require__(56912); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } -function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } -function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } -function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } -function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } -function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } -var base64 = __webpack_require__(32504); -var ieee754 = __webpack_require__(89029); -var customInspectSymbol = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' // eslint-disable-line dot-notation -? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation -: null; -exports.Buffer = Buffer; -exports.SlowBuffer = SlowBuffer; -exports.INSPECT_MAX_BYTES = 50; -var K_MAX_LENGTH = 0x7fffffff; -exports.kMaxLength = K_MAX_LENGTH; - -/** - * If `Buffer.TYPED_ARRAY_SUPPORT`: - * === true Use Uint8Array implementation (fastest) - * === false Print warning and recommend using `buffer` v4.x which has an Object - * implementation (most compatible, even IE6) - * - * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, - * Opera 11.6+, iOS 4.2+. - * - * We report that the browser does not support typed arrays if the are not subclassable - * using __proto__. Firefox 4-29 lacks support for adding new properties to `Uint8Array` - * (See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438). IE 10 lacks support - * for __proto__ and has a buggy typed array implementation. - */ -Buffer.TYPED_ARRAY_SUPPORT = typedArraySupport(); -if (!Buffer.TYPED_ARRAY_SUPPORT && typeof console !== 'undefined' && typeof console.error === 'function') { - console.error('This browser lacks typed array (Uint8Array) support which is required by ' + '`buffer` v5.x. Use `buffer` v4.x if you require old browser support.'); -} -function typedArraySupport() { - // Can typed array instances can be augmented? - try { - var arr = new Uint8Array(1); - var proto = { - foo: function foo() { - return 42; - } - }; - Object.setPrototypeOf(proto, Uint8Array.prototype); - Object.setPrototypeOf(arr, proto); - return arr.foo() === 42; - } catch (e) { - return false; - } -} -Object.defineProperty(Buffer.prototype, 'parent', { - enumerable: true, - get: function get() { - if (!Buffer.isBuffer(this)) return undefined; - return this.buffer; - } -}); -Object.defineProperty(Buffer.prototype, 'offset', { - enumerable: true, - get: function get() { - if (!Buffer.isBuffer(this)) return undefined; - return this.byteOffset; - } -}); -function createBuffer(length) { - if (length > K_MAX_LENGTH) { - throw new RangeError('The value "' + length + '" is invalid for option "size"'); - } - // Return an augmented `Uint8Array` instance - var buf = new Uint8Array(length); - Object.setPrototypeOf(buf, Buffer.prototype); - return buf; -} - -/** - * The Buffer constructor returns instances of `Uint8Array` that have their - * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of - * `Uint8Array`, so the returned instances will have all the node `Buffer` methods - * and the `Uint8Array` methods. Square bracket notation works as expected -- it - * returns a single octet. - * - * The `Uint8Array` prototype remains unmodified. - */ - -function Buffer(arg, encodingOrOffset, length) { - // Common case. - if (typeof arg === 'number') { - if (typeof encodingOrOffset === 'string') { - throw new TypeError('The "string" argument must be of type string. Received type number'); - } - return allocUnsafe(arg); - } - return from(arg, encodingOrOffset, length); -} -Buffer.poolSize = 8192; // not used by this implementation - -function from(value, encodingOrOffset, length) { - if (typeof value === 'string') { - return fromString(value, encodingOrOffset); - } - if (ArrayBuffer.isView(value)) { - return fromArrayView(value); - } - if (value == null) { - throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value); - } - if (isInstance(value, ArrayBuffer) || value && isInstance(value.buffer, ArrayBuffer)) { - return fromArrayBuffer(value, encodingOrOffset, length); - } - if (typeof SharedArrayBuffer !== 'undefined' && (isInstance(value, SharedArrayBuffer) || value && isInstance(value.buffer, SharedArrayBuffer))) { - return fromArrayBuffer(value, encodingOrOffset, length); - } - if (typeof value === 'number') { - throw new TypeError('The "value" argument must not be of type number. Received type number'); - } - var valueOf = value.valueOf && value.valueOf(); - if (valueOf != null && valueOf !== value) { - return Buffer.from(valueOf, encodingOrOffset, length); - } - var b = fromObject(value); - if (b) return b; - if (typeof Symbol !== 'undefined' && Symbol.toPrimitive != null && typeof value[Symbol.toPrimitive] === 'function') { - return Buffer.from(value[Symbol.toPrimitive]('string'), encodingOrOffset, length); - } - throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, ' + 'or Array-like Object. Received type ' + typeof value); -} - -/** - * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError - * if value is a number. - * Buffer.from(str[, encoding]) - * Buffer.from(array) - * Buffer.from(buffer) - * Buffer.from(arrayBuffer[, byteOffset[, length]]) - **/ -Buffer.from = function (value, encodingOrOffset, length) { - return from(value, encodingOrOffset, length); -}; - -// Note: Change prototype *after* Buffer.from is defined to workaround Chrome bug: -// https://github.com/feross/buffer/pull/148 -Object.setPrototypeOf(Buffer.prototype, Uint8Array.prototype); -Object.setPrototypeOf(Buffer, Uint8Array); -function assertSize(size) { - if (typeof size !== 'number') { - throw new TypeError('"size" argument must be of type number'); - } else if (size < 0) { - throw new RangeError('The value "' + size + '" is invalid for option "size"'); - } -} -function alloc(size, fill, encoding) { - assertSize(size); - if (size <= 0) { - return createBuffer(size); - } - if (fill !== undefined) { - // Only pay attention to encoding if it's a string. This - // prevents accidentally sending in a number that would - // be interpreted as a start offset. - return typeof encoding === 'string' ? createBuffer(size).fill(fill, encoding) : createBuffer(size).fill(fill); - } - return createBuffer(size); -} - -/** - * Creates a new filled Buffer instance. - * alloc(size[, fill[, encoding]]) - **/ -Buffer.alloc = function (size, fill, encoding) { - return alloc(size, fill, encoding); -}; -function allocUnsafe(size) { - assertSize(size); - return createBuffer(size < 0 ? 0 : checked(size) | 0); -} - -/** - * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance. - * */ -Buffer.allocUnsafe = function (size) { - return allocUnsafe(size); -}; -/** - * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance. - */ -Buffer.allocUnsafeSlow = function (size) { - return allocUnsafe(size); -}; -function fromString(string, encoding) { - if (typeof encoding !== 'string' || encoding === '') { - encoding = 'utf8'; - } - if (!Buffer.isEncoding(encoding)) { - throw new TypeError('Unknown encoding: ' + encoding); - } - var length = byteLength(string, encoding) | 0; - var buf = createBuffer(length); - var actual = buf.write(string, encoding); - if (actual !== length) { - // Writing a hex string, for example, that contains invalid characters will - // cause everything after the first invalid character to be ignored. (e.g. - // 'abxxcd' will be treated as 'ab') - buf = buf.slice(0, actual); - } - return buf; -} -function fromArrayLike(array) { - var length = array.length < 0 ? 0 : checked(array.length) | 0; - var buf = createBuffer(length); - for (var i = 0; i < length; i += 1) { - buf[i] = array[i] & 255; - } - return buf; -} -function fromArrayView(arrayView) { - if (isInstance(arrayView, Uint8Array)) { - var copy = new Uint8Array(arrayView); - return fromArrayBuffer(copy.buffer, copy.byteOffset, copy.byteLength); - } - return fromArrayLike(arrayView); -} -function fromArrayBuffer(array, byteOffset, length) { - if (byteOffset < 0 || array.byteLength < byteOffset) { - throw new RangeError('"offset" is outside of buffer bounds'); - } - if (array.byteLength < byteOffset + (length || 0)) { - throw new RangeError('"length" is outside of buffer bounds'); - } - var buf; - if (byteOffset === undefined && length === undefined) { - buf = new Uint8Array(array); - } else if (length === undefined) { - buf = new Uint8Array(array, byteOffset); - } else { - buf = new Uint8Array(array, byteOffset, length); - } - - // Return an augmented `Uint8Array` instance - Object.setPrototypeOf(buf, Buffer.prototype); - return buf; -} -function fromObject(obj) { - if (Buffer.isBuffer(obj)) { - var len = checked(obj.length) | 0; - var buf = createBuffer(len); - if (buf.length === 0) { - return buf; - } - obj.copy(buf, 0, 0, len); - return buf; - } - if (obj.length !== undefined) { - if (typeof obj.length !== 'number' || numberIsNaN(obj.length)) { - return createBuffer(0); - } - return fromArrayLike(obj); - } - if (obj.type === 'Buffer' && Array.isArray(obj.data)) { - return fromArrayLike(obj.data); - } -} -function checked(length) { - // Note: cannot use `length < K_MAX_LENGTH` here because that fails when - // length is NaN (which is otherwise coerced to zero.) - if (length >= K_MAX_LENGTH) { - throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + K_MAX_LENGTH.toString(16) + ' bytes'); - } - return length | 0; -} -function SlowBuffer(length) { - if (+length != length) { - // eslint-disable-line eqeqeq - length = 0; - } - return Buffer.alloc(+length); -} -Buffer.isBuffer = function isBuffer(b) { - return b != null && b._isBuffer === true && b !== Buffer.prototype; // so Buffer.isBuffer(Buffer.prototype) will be false -}; -Buffer.compare = function compare(a, b) { - if (isInstance(a, Uint8Array)) a = Buffer.from(a, a.offset, a.byteLength); - if (isInstance(b, Uint8Array)) b = Buffer.from(b, b.offset, b.byteLength); - if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) { - throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array'); - } - if (a === b) return 0; - var x = a.length; - var y = b.length; - for (var i = 0, len = Math.min(x, y); i < len; ++i) { - if (a[i] !== b[i]) { - x = a[i]; - y = b[i]; - break; - } - } - if (x < y) return -1; - if (y < x) return 1; - return 0; -}; -Buffer.isEncoding = function isEncoding(encoding) { - switch (String(encoding).toLowerCase()) { - case 'hex': - case 'utf8': - case 'utf-8': - case 'ascii': - case 'latin1': - case 'binary': - case 'base64': - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return true; - default: - return false; - } -}; -Buffer.concat = function concat(list, length) { - if (!Array.isArray(list)) { - throw new TypeError('"list" argument must be an Array of Buffers'); - } - if (list.length === 0) { - return Buffer.alloc(0); - } - var i; - if (length === undefined) { - length = 0; - for (i = 0; i < list.length; ++i) { - length += list[i].length; - } - } - var buffer = Buffer.allocUnsafe(length); - var pos = 0; - for (i = 0; i < list.length; ++i) { - var buf = list[i]; - if (isInstance(buf, Uint8Array)) { - if (pos + buf.length > buffer.length) { - if (!Buffer.isBuffer(buf)) buf = Buffer.from(buf); - buf.copy(buffer, pos); - } else { - Uint8Array.prototype.set.call(buffer, buf, pos); - } - } else if (!Buffer.isBuffer(buf)) { - throw new TypeError('"list" argument must be an Array of Buffers'); - } else { - buf.copy(buffer, pos); - } - pos += buf.length; - } - return buffer; -}; -function byteLength(string, encoding) { - if (Buffer.isBuffer(string)) { - return string.length; - } - if (ArrayBuffer.isView(string) || isInstance(string, ArrayBuffer)) { - return string.byteLength; - } - if (typeof string !== 'string') { - throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. ' + 'Received type ' + typeof string); - } - var len = string.length; - var mustMatch = arguments.length > 2 && arguments[2] === true; - if (!mustMatch && len === 0) return 0; - - // Use a for loop to avoid recursion - var loweredCase = false; - for (;;) { - switch (encoding) { - case 'ascii': - case 'latin1': - case 'binary': - return len; - case 'utf8': - case 'utf-8': - return utf8ToBytes(string).length; - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return len * 2; - case 'hex': - return len >>> 1; - case 'base64': - return base64ToBytes(string).length; - default: - if (loweredCase) { - return mustMatch ? -1 : utf8ToBytes(string).length; // assume utf8 - } - encoding = ('' + encoding).toLowerCase(); - loweredCase = true; - } - } -} -Buffer.byteLength = byteLength; -function slowToString(encoding, start, end) { - var loweredCase = false; - - // No need to verify that "this.length <= MAX_UINT32" since it's a read-only - // property of a typed array. - - // This behaves neither like String nor Uint8Array in that we set start/end - // to their upper/lower bounds if the value passed is out of range. - // undefined is handled specially as per ECMA-262 6th Edition, - // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization. - if (start === undefined || start < 0) { - start = 0; - } - // Return early if start > this.length. Done here to prevent potential uint32 - // coercion fail below. - if (start > this.length) { - return ''; - } - if (end === undefined || end > this.length) { - end = this.length; - } - if (end <= 0) { - return ''; - } - - // Force coercion to uint32. This will also coerce falsey/NaN values to 0. - end >>>= 0; - start >>>= 0; - if (end <= start) { - return ''; - } - if (!encoding) encoding = 'utf8'; - while (true) { - switch (encoding) { - case 'hex': - return hexSlice(this, start, end); - case 'utf8': - case 'utf-8': - return utf8Slice(this, start, end); - case 'ascii': - return asciiSlice(this, start, end); - case 'latin1': - case 'binary': - return latin1Slice(this, start, end); - case 'base64': - return base64Slice(this, start, end); - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return utf16leSlice(this, start, end); - default: - if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); - encoding = (encoding + '').toLowerCase(); - loweredCase = true; - } - } -} - -// This property is used by `Buffer.isBuffer` (and the `is-buffer` npm package) -// to detect a Buffer instance. It's not possible to use `instanceof Buffer` -// reliably in a browserify context because there could be multiple different -// copies of the 'buffer' package in use. This method works even for Buffer -// instances that were created from another copy of the `buffer` package. -// See: https://github.com/feross/buffer/issues/154 -Buffer.prototype._isBuffer = true; -function swap(b, n, m) { - var i = b[n]; - b[n] = b[m]; - b[m] = i; -} -Buffer.prototype.swap16 = function swap16() { - var len = this.length; - if (len % 2 !== 0) { - throw new RangeError('Buffer size must be a multiple of 16-bits'); - } - for (var i = 0; i < len; i += 2) { - swap(this, i, i + 1); - } - return this; -}; -Buffer.prototype.swap32 = function swap32() { - var len = this.length; - if (len % 4 !== 0) { - throw new RangeError('Buffer size must be a multiple of 32-bits'); - } - for (var i = 0; i < len; i += 4) { - swap(this, i, i + 3); - swap(this, i + 1, i + 2); - } - return this; -}; -Buffer.prototype.swap64 = function swap64() { - var len = this.length; - if (len % 8 !== 0) { - throw new RangeError('Buffer size must be a multiple of 64-bits'); - } - for (var i = 0; i < len; i += 8) { - swap(this, i, i + 7); - swap(this, i + 1, i + 6); - swap(this, i + 2, i + 5); - swap(this, i + 3, i + 4); - } - return this; -}; -Buffer.prototype.toString = function toString() { - var length = this.length; - if (length === 0) return ''; - if (arguments.length === 0) return utf8Slice(this, 0, length); - return slowToString.apply(this, arguments); -}; -Buffer.prototype.toLocaleString = Buffer.prototype.toString; -Buffer.prototype.equals = function equals(b) { - if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer'); - if (this === b) return true; - return Buffer.compare(this, b) === 0; -}; -Buffer.prototype.inspect = function inspect() { - var str = ''; - var max = exports.INSPECT_MAX_BYTES; - str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim(); - if (this.length > max) str += ' ... '; - return ''; -}; -if (customInspectSymbol) { - Buffer.prototype[customInspectSymbol] = Buffer.prototype.inspect; -} -Buffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) { - if (isInstance(target, Uint8Array)) { - target = Buffer.from(target, target.offset, target.byteLength); - } - if (!Buffer.isBuffer(target)) { - throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. ' + 'Received type ' + typeof target); - } - if (start === undefined) { - start = 0; - } - if (end === undefined) { - end = target ? target.length : 0; - } - if (thisStart === undefined) { - thisStart = 0; - } - if (thisEnd === undefined) { - thisEnd = this.length; - } - if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) { - throw new RangeError('out of range index'); - } - if (thisStart >= thisEnd && start >= end) { - return 0; - } - if (thisStart >= thisEnd) { - return -1; - } - if (start >= end) { - return 1; - } - start >>>= 0; - end >>>= 0; - thisStart >>>= 0; - thisEnd >>>= 0; - if (this === target) return 0; - var x = thisEnd - thisStart; - var y = end - start; - var len = Math.min(x, y); - var thisCopy = this.slice(thisStart, thisEnd); - var targetCopy = target.slice(start, end); - for (var i = 0; i < len; ++i) { - if (thisCopy[i] !== targetCopy[i]) { - x = thisCopy[i]; - y = targetCopy[i]; - break; - } - } - if (x < y) return -1; - if (y < x) return 1; - return 0; -}; - -// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`, -// OR the last index of `val` in `buffer` at offset <= `byteOffset`. -// -// Arguments: -// - buffer - a Buffer to search -// - val - a string, Buffer, or number -// - byteOffset - an index into `buffer`; will be clamped to an int32 -// - encoding - an optional encoding, relevant is val is a string -// - dir - true for indexOf, false for lastIndexOf -function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) { - // Empty buffer means no match - if (buffer.length === 0) return -1; - - // Normalize byteOffset - if (typeof byteOffset === 'string') { - encoding = byteOffset; - byteOffset = 0; - } else if (byteOffset > 0x7fffffff) { - byteOffset = 0x7fffffff; - } else if (byteOffset < -0x80000000) { - byteOffset = -0x80000000; - } - byteOffset = +byteOffset; // Coerce to Number. - if (numberIsNaN(byteOffset)) { - // byteOffset: it it's undefined, null, NaN, "foo", etc, search whole buffer - byteOffset = dir ? 0 : buffer.length - 1; - } - - // Normalize byteOffset: negative offsets start from the end of the buffer - if (byteOffset < 0) byteOffset = buffer.length + byteOffset; - if (byteOffset >= buffer.length) { - if (dir) return -1;else byteOffset = buffer.length - 1; - } else if (byteOffset < 0) { - if (dir) byteOffset = 0;else return -1; - } - - // Normalize val - if (typeof val === 'string') { - val = Buffer.from(val, encoding); - } - - // Finally, search either indexOf (if dir is true) or lastIndexOf - if (Buffer.isBuffer(val)) { - // Special case: looking for empty string/buffer always fails - if (val.length === 0) { - return -1; - } - return arrayIndexOf(buffer, val, byteOffset, encoding, dir); - } else if (typeof val === 'number') { - val = val & 0xFF; // Search for a byte value [0-255] - if (typeof Uint8Array.prototype.indexOf === 'function') { - if (dir) { - return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset); - } else { - return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset); - } - } - return arrayIndexOf(buffer, [val], byteOffset, encoding, dir); - } - throw new TypeError('val must be string, number or Buffer'); -} -function arrayIndexOf(arr, val, byteOffset, encoding, dir) { - var indexSize = 1; - var arrLength = arr.length; - var valLength = val.length; - if (encoding !== undefined) { - encoding = String(encoding).toLowerCase(); - if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') { - if (arr.length < 2 || val.length < 2) { - return -1; - } - indexSize = 2; - arrLength /= 2; - valLength /= 2; - byteOffset /= 2; - } - } - function read(buf, i) { - if (indexSize === 1) { - return buf[i]; - } else { - return buf.readUInt16BE(i * indexSize); - } - } - var i; - if (dir) { - var foundIndex = -1; - for (i = byteOffset; i < arrLength; i++) { - if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) { - if (foundIndex === -1) foundIndex = i; - if (i - foundIndex + 1 === valLength) return foundIndex * indexSize; - } else { - if (foundIndex !== -1) i -= i - foundIndex; - foundIndex = -1; - } - } - } else { - if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength; - for (i = byteOffset; i >= 0; i--) { - var found = true; - for (var j = 0; j < valLength; j++) { - if (read(arr, i + j) !== read(val, j)) { - found = false; - break; - } - } - if (found) return i; - } - } - return -1; -} -Buffer.prototype.includes = function includes(val, byteOffset, encoding) { - return this.indexOf(val, byteOffset, encoding) !== -1; -}; -Buffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) { - return bidirectionalIndexOf(this, val, byteOffset, encoding, true); -}; -Buffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) { - return bidirectionalIndexOf(this, val, byteOffset, encoding, false); -}; -function hexWrite(buf, string, offset, length) { - offset = Number(offset) || 0; - var remaining = buf.length - offset; - if (!length) { - length = remaining; - } else { - length = Number(length); - if (length > remaining) { - length = remaining; - } - } - var strLen = string.length; - if (length > strLen / 2) { - length = strLen / 2; - } - var i; - for (i = 0; i < length; ++i) { - var parsed = parseInt(string.substr(i * 2, 2), 16); - if (numberIsNaN(parsed)) return i; - buf[offset + i] = parsed; - } - return i; -} -function utf8Write(buf, string, offset, length) { - return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length); -} -function asciiWrite(buf, string, offset, length) { - return blitBuffer(asciiToBytes(string), buf, offset, length); -} -function base64Write(buf, string, offset, length) { - return blitBuffer(base64ToBytes(string), buf, offset, length); -} -function ucs2Write(buf, string, offset, length) { - return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length); -} -Buffer.prototype.write = function write(string, offset, length, encoding) { - // Buffer#write(string) - if (offset === undefined) { - encoding = 'utf8'; - length = this.length; - offset = 0; - // Buffer#write(string, encoding) - } else if (length === undefined && typeof offset === 'string') { - encoding = offset; - length = this.length; - offset = 0; - // Buffer#write(string, offset[, length][, encoding]) - } else if (isFinite(offset)) { - offset = offset >>> 0; - if (isFinite(length)) { - length = length >>> 0; - if (encoding === undefined) encoding = 'utf8'; - } else { - encoding = length; - length = undefined; - } - } else { - throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported'); - } - var remaining = this.length - offset; - if (length === undefined || length > remaining) length = remaining; - if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) { - throw new RangeError('Attempt to write outside buffer bounds'); - } - if (!encoding) encoding = 'utf8'; - var loweredCase = false; - for (;;) { - switch (encoding) { - case 'hex': - return hexWrite(this, string, offset, length); - case 'utf8': - case 'utf-8': - return utf8Write(this, string, offset, length); - case 'ascii': - case 'latin1': - case 'binary': - return asciiWrite(this, string, offset, length); - case 'base64': - // Warning: maxLength not taken into account in base64Write - return base64Write(this, string, offset, length); - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return ucs2Write(this, string, offset, length); - default: - if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding); - encoding = ('' + encoding).toLowerCase(); - loweredCase = true; - } - } -}; -Buffer.prototype.toJSON = function toJSON() { - return { - type: 'Buffer', - data: Array.prototype.slice.call(this._arr || this, 0) - }; -}; -function base64Slice(buf, start, end) { - if (start === 0 && end === buf.length) { - return base64.fromByteArray(buf); - } else { - return base64.fromByteArray(buf.slice(start, end)); - } -} -function utf8Slice(buf, start, end) { - end = Math.min(buf.length, end); - var res = []; - var i = start; - while (i < end) { - var firstByte = buf[i]; - var codePoint = null; - var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1; - if (i + bytesPerSequence <= end) { - var secondByte = void 0, - thirdByte = void 0, - fourthByte = void 0, - tempCodePoint = void 0; - switch (bytesPerSequence) { - case 1: - if (firstByte < 0x80) { - codePoint = firstByte; - } - break; - case 2: - secondByte = buf[i + 1]; - if ((secondByte & 0xC0) === 0x80) { - tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F; - if (tempCodePoint > 0x7F) { - codePoint = tempCodePoint; - } - } - break; - case 3: - secondByte = buf[i + 1]; - thirdByte = buf[i + 2]; - if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) { - tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F; - if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) { - codePoint = tempCodePoint; - } - } - break; - case 4: - secondByte = buf[i + 1]; - thirdByte = buf[i + 2]; - fourthByte = buf[i + 3]; - if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) { - tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F; - if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) { - codePoint = tempCodePoint; - } - } - } - } - if (codePoint === null) { - // we did not generate a valid codePoint so insert a - // replacement char (U+FFFD) and advance only 1 byte - codePoint = 0xFFFD; - bytesPerSequence = 1; - } else if (codePoint > 0xFFFF) { - // encode to utf16 (surrogate pair dance) - codePoint -= 0x10000; - res.push(codePoint >>> 10 & 0x3FF | 0xD800); - codePoint = 0xDC00 | codePoint & 0x3FF; - } - res.push(codePoint); - i += bytesPerSequence; - } - return decodeCodePointsArray(res); -} - -// Based on http://stackoverflow.com/a/22747272/680742, the browser with -// the lowest limit is Chrome, with 0x10000 args. -// We go 1 magnitude less, for safety -var MAX_ARGUMENTS_LENGTH = 0x1000; -function decodeCodePointsArray(codePoints) { - var len = codePoints.length; - if (len <= MAX_ARGUMENTS_LENGTH) { - return String.fromCharCode.apply(String, codePoints); // avoid extra slice() - } - - // Decode in chunks to avoid "call stack size exceeded". - var res = ''; - var i = 0; - while (i < len) { - res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH)); - } - return res; -} -function asciiSlice(buf, start, end) { - var ret = ''; - end = Math.min(buf.length, end); - for (var i = start; i < end; ++i) { - ret += String.fromCharCode(buf[i] & 0x7F); - } - return ret; -} -function latin1Slice(buf, start, end) { - var ret = ''; - end = Math.min(buf.length, end); - for (var i = start; i < end; ++i) { - ret += String.fromCharCode(buf[i]); - } - return ret; -} -function hexSlice(buf, start, end) { - var len = buf.length; - if (!start || start < 0) start = 0; - if (!end || end < 0 || end > len) end = len; - var out = ''; - for (var i = start; i < end; ++i) { - out += hexSliceLookupTable[buf[i]]; - } - return out; -} -function utf16leSlice(buf, start, end) { - var bytes = buf.slice(start, end); - var res = ''; - // If bytes.length is odd, the last 8 bits must be ignored (same as node.js) - for (var i = 0; i < bytes.length - 1; i += 2) { - res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256); - } - return res; -} -Buffer.prototype.slice = function slice(start, end) { - var len = this.length; - start = ~~start; - end = end === undefined ? len : ~~end; - if (start < 0) { - start += len; - if (start < 0) start = 0; - } else if (start > len) { - start = len; - } - if (end < 0) { - end += len; - if (end < 0) end = 0; - } else if (end > len) { - end = len; - } - if (end < start) end = start; - var newBuf = this.subarray(start, end); - // Return an augmented `Uint8Array` instance - Object.setPrototypeOf(newBuf, Buffer.prototype); - return newBuf; -}; - -/* - * Need to make sure that buffer isn't trying to write out of bounds. - */ -function checkOffset(offset, ext, length) { - if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint'); - if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length'); -} -Buffer.prototype.readUintLE = Buffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) { - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) checkOffset(offset, byteLength, this.length); - var val = this[offset]; - var mul = 1; - var i = 0; - while (++i < byteLength && (mul *= 0x100)) { - val += this[offset + i] * mul; - } - return val; -}; -Buffer.prototype.readUintBE = Buffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) { - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) { - checkOffset(offset, byteLength, this.length); - } - var val = this[offset + --byteLength]; - var mul = 1; - while (byteLength > 0 && (mul *= 0x100)) { - val += this[offset + --byteLength] * mul; - } - return val; -}; -Buffer.prototype.readUint8 = Buffer.prototype.readUInt8 = function readUInt8(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 1, this.length); - return this[offset]; -}; -Buffer.prototype.readUint16LE = Buffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 2, this.length); - return this[offset] | this[offset + 1] << 8; -}; -Buffer.prototype.readUint16BE = Buffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 2, this.length); - return this[offset] << 8 | this[offset + 1]; -}; -Buffer.prototype.readUint32LE = Buffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000; -}; -Buffer.prototype.readUint32BE = Buffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]); -}; -Buffer.prototype.readBigUInt64LE = defineBigIntMethod(function readBigUInt64LE(offset) { - offset = offset >>> 0; - validateNumber(offset, 'offset'); - var first = this[offset]; - var last = this[offset + 7]; - if (first === undefined || last === undefined) { - boundsError(offset, this.length - 8); - } - var lo = first + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 24); - var hi = this[++offset] + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + last * Math.pow(2, 24); - return BigInt(lo) + (BigInt(hi) << BigInt(32)); -}); -Buffer.prototype.readBigUInt64BE = defineBigIntMethod(function readBigUInt64BE(offset) { - offset = offset >>> 0; - validateNumber(offset, 'offset'); - var first = this[offset]; - var last = this[offset + 7]; - if (first === undefined || last === undefined) { - boundsError(offset, this.length - 8); - } - var hi = first * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + this[++offset]; - var lo = this[++offset] * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + last; - return (BigInt(hi) << BigInt(32)) + BigInt(lo); -}); -Buffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) { - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) checkOffset(offset, byteLength, this.length); - var val = this[offset]; - var mul = 1; - var i = 0; - while (++i < byteLength && (mul *= 0x100)) { - val += this[offset + i] * mul; - } - mul *= 0x80; - if (val >= mul) val -= Math.pow(2, 8 * byteLength); - return val; -}; -Buffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) { - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) checkOffset(offset, byteLength, this.length); - var i = byteLength; - var mul = 1; - var val = this[offset + --i]; - while (i > 0 && (mul *= 0x100)) { - val += this[offset + --i] * mul; - } - mul *= 0x80; - if (val >= mul) val -= Math.pow(2, 8 * byteLength); - return val; -}; -Buffer.prototype.readInt8 = function readInt8(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 1, this.length); - if (!(this[offset] & 0x80)) return this[offset]; - return (0xff - this[offset] + 1) * -1; -}; -Buffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 2, this.length); - var val = this[offset] | this[offset + 1] << 8; - return val & 0x8000 ? val | 0xFFFF0000 : val; -}; -Buffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 2, this.length); - var val = this[offset + 1] | this[offset] << 8; - return val & 0x8000 ? val | 0xFFFF0000 : val; -}; -Buffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24; -}; -Buffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]; -}; -Buffer.prototype.readBigInt64LE = defineBigIntMethod(function readBigInt64LE(offset) { - offset = offset >>> 0; - validateNumber(offset, 'offset'); - var first = this[offset]; - var last = this[offset + 7]; - if (first === undefined || last === undefined) { - boundsError(offset, this.length - 8); - } - var val = this[offset + 4] + this[offset + 5] * Math.pow(2, 8) + this[offset + 6] * Math.pow(2, 16) + (last << 24); // Overflow - - return (BigInt(val) << BigInt(32)) + BigInt(first + this[++offset] * Math.pow(2, 8) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 24)); -}); -Buffer.prototype.readBigInt64BE = defineBigIntMethod(function readBigInt64BE(offset) { - offset = offset >>> 0; - validateNumber(offset, 'offset'); - var first = this[offset]; - var last = this[offset + 7]; - if (first === undefined || last === undefined) { - boundsError(offset, this.length - 8); - } - var val = (first << 24) + - // Overflow - this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + this[++offset]; - return (BigInt(val) << BigInt(32)) + BigInt(this[++offset] * Math.pow(2, 24) + this[++offset] * Math.pow(2, 16) + this[++offset] * Math.pow(2, 8) + last); -}); -Buffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return ieee754.read(this, offset, true, 23, 4); -}; -Buffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 4, this.length); - return ieee754.read(this, offset, false, 23, 4); -}; -Buffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 8, this.length); - return ieee754.read(this, offset, true, 52, 8); -}; -Buffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) { - offset = offset >>> 0; - if (!noAssert) checkOffset(offset, 8, this.length); - return ieee754.read(this, offset, false, 52, 8); -}; -function checkInt(buf, value, offset, ext, max, min) { - if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); - if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); - if (offset + ext > buf.length) throw new RangeError('Index out of range'); -} -Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) { - value = +value; - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) { - var maxBytes = Math.pow(2, 8 * byteLength) - 1; - checkInt(this, value, offset, byteLength, maxBytes, 0); - } - var mul = 1; - var i = 0; - this[offset] = value & 0xFF; - while (++i < byteLength && (mul *= 0x100)) { - this[offset + i] = value / mul & 0xFF; - } - return offset + byteLength; -}; -Buffer.prototype.writeUintBE = Buffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) { - value = +value; - offset = offset >>> 0; - byteLength = byteLength >>> 0; - if (!noAssert) { - var maxBytes = Math.pow(2, 8 * byteLength) - 1; - checkInt(this, value, offset, byteLength, maxBytes, 0); - } - var i = byteLength - 1; - var mul = 1; - this[offset + i] = value & 0xFF; - while (--i >= 0 && (mul *= 0x100)) { - this[offset + i] = value / mul & 0xFF; - } - return offset + byteLength; -}; -Buffer.prototype.writeUint8 = Buffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0); - this[offset] = value & 0xff; - return offset + 1; -}; -Buffer.prototype.writeUint16LE = Buffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); - this[offset] = value & 0xff; - this[offset + 1] = value >>> 8; - return offset + 2; -}; -Buffer.prototype.writeUint16BE = Buffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0); - this[offset] = value >>> 8; - this[offset + 1] = value & 0xff; - return offset + 2; -}; -Buffer.prototype.writeUint32LE = Buffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); - this[offset + 3] = value >>> 24; - this[offset + 2] = value >>> 16; - this[offset + 1] = value >>> 8; - this[offset] = value & 0xff; - return offset + 4; -}; -Buffer.prototype.writeUint32BE = Buffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0); - this[offset] = value >>> 24; - this[offset + 1] = value >>> 16; - this[offset + 2] = value >>> 8; - this[offset + 3] = value & 0xff; - return offset + 4; -}; -function wrtBigUInt64LE(buf, value, offset, min, max) { - checkIntBI(value, min, max, buf, offset, 7); - var lo = Number(value & BigInt(0xffffffff)); - buf[offset++] = lo; - lo = lo >> 8; - buf[offset++] = lo; - lo = lo >> 8; - buf[offset++] = lo; - lo = lo >> 8; - buf[offset++] = lo; - var hi = Number(value >> BigInt(32) & BigInt(0xffffffff)); - buf[offset++] = hi; - hi = hi >> 8; - buf[offset++] = hi; - hi = hi >> 8; - buf[offset++] = hi; - hi = hi >> 8; - buf[offset++] = hi; - return offset; -} -function wrtBigUInt64BE(buf, value, offset, min, max) { - checkIntBI(value, min, max, buf, offset, 7); - var lo = Number(value & BigInt(0xffffffff)); - buf[offset + 7] = lo; - lo = lo >> 8; - buf[offset + 6] = lo; - lo = lo >> 8; - buf[offset + 5] = lo; - lo = lo >> 8; - buf[offset + 4] = lo; - var hi = Number(value >> BigInt(32) & BigInt(0xffffffff)); - buf[offset + 3] = hi; - hi = hi >> 8; - buf[offset + 2] = hi; - hi = hi >> 8; - buf[offset + 1] = hi; - hi = hi >> 8; - buf[offset] = hi; - return offset + 8; -} -Buffer.prototype.writeBigUInt64LE = defineBigIntMethod(function writeBigUInt64LE(value, offset) { - if (offset === void 0) { - offset = 0; - } - return wrtBigUInt64LE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff')); -}); -Buffer.prototype.writeBigUInt64BE = defineBigIntMethod(function writeBigUInt64BE(value, offset) { - if (offset === void 0) { - offset = 0; - } - return wrtBigUInt64BE(this, value, offset, BigInt(0), BigInt('0xffffffffffffffff')); -}); -Buffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) { - var limit = Math.pow(2, 8 * byteLength - 1); - checkInt(this, value, offset, byteLength, limit - 1, -limit); - } - var i = 0; - var mul = 1; - var sub = 0; - this[offset] = value & 0xFF; - while (++i < byteLength && (mul *= 0x100)) { - if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) { - sub = 1; - } - this[offset + i] = (value / mul >> 0) - sub & 0xFF; - } - return offset + byteLength; -}; -Buffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) { - var limit = Math.pow(2, 8 * byteLength - 1); - checkInt(this, value, offset, byteLength, limit - 1, -limit); - } - var i = byteLength - 1; - var mul = 1; - var sub = 0; - this[offset + i] = value & 0xFF; - while (--i >= 0 && (mul *= 0x100)) { - if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) { - sub = 1; - } - this[offset + i] = (value / mul >> 0) - sub & 0xFF; - } - return offset + byteLength; -}; -Buffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80); - if (value < 0) value = 0xff + value + 1; - this[offset] = value & 0xff; - return offset + 1; -}; -Buffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); - this[offset] = value & 0xff; - this[offset + 1] = value >>> 8; - return offset + 2; -}; -Buffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000); - this[offset] = value >>> 8; - this[offset + 1] = value & 0xff; - return offset + 2; -}; -Buffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); - this[offset] = value & 0xff; - this[offset + 1] = value >>> 8; - this[offset + 2] = value >>> 16; - this[offset + 3] = value >>> 24; - return offset + 4; -}; -Buffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000); - if (value < 0) value = 0xffffffff + value + 1; - this[offset] = value >>> 24; - this[offset + 1] = value >>> 16; - this[offset + 2] = value >>> 8; - this[offset + 3] = value & 0xff; - return offset + 4; -}; -Buffer.prototype.writeBigInt64LE = defineBigIntMethod(function writeBigInt64LE(value, offset) { - if (offset === void 0) { - offset = 0; - } - return wrtBigUInt64LE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff')); -}); -Buffer.prototype.writeBigInt64BE = defineBigIntMethod(function writeBigInt64BE(value, offset) { - if (offset === void 0) { - offset = 0; - } - return wrtBigUInt64BE(this, value, offset, -BigInt('0x8000000000000000'), BigInt('0x7fffffffffffffff')); -}); -function checkIEEE754(buf, value, offset, ext, max, min) { - if (offset + ext > buf.length) throw new RangeError('Index out of range'); - if (offset < 0) throw new RangeError('Index out of range'); -} -function writeFloat(buf, value, offset, littleEndian, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) { - checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38); - } - ieee754.write(buf, value, offset, littleEndian, 23, 4); - return offset + 4; -} -Buffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) { - return writeFloat(this, value, offset, true, noAssert); -}; -Buffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) { - return writeFloat(this, value, offset, false, noAssert); -}; -function writeDouble(buf, value, offset, littleEndian, noAssert) { - value = +value; - offset = offset >>> 0; - if (!noAssert) { - checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308); - } - ieee754.write(buf, value, offset, littleEndian, 52, 8); - return offset + 8; -} -Buffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) { - return writeDouble(this, value, offset, true, noAssert); -}; -Buffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) { - return writeDouble(this, value, offset, false, noAssert); -}; - -// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) -Buffer.prototype.copy = function copy(target, targetStart, start, end) { - if (!Buffer.isBuffer(target)) throw new TypeError('argument should be a Buffer'); - if (!start) start = 0; - if (!end && end !== 0) end = this.length; - if (targetStart >= target.length) targetStart = target.length; - if (!targetStart) targetStart = 0; - if (end > 0 && end < start) end = start; - - // Copy 0 bytes; we're done - if (end === start) return 0; - if (target.length === 0 || this.length === 0) return 0; - - // Fatal error conditions - if (targetStart < 0) { - throw new RangeError('targetStart out of bounds'); - } - if (start < 0 || start >= this.length) throw new RangeError('Index out of range'); - if (end < 0) throw new RangeError('sourceEnd out of bounds'); - - // Are we oob? - if (end > this.length) end = this.length; - if (target.length - targetStart < end - start) { - end = target.length - targetStart + start; - } - var len = end - start; - if (this === target && typeof Uint8Array.prototype.copyWithin === 'function') { - // Use built-in when available, missing from IE11 - this.copyWithin(targetStart, start, end); - } else { - Uint8Array.prototype.set.call(target, this.subarray(start, end), targetStart); - } - return len; -}; - -// Usage: -// buffer.fill(number[, offset[, end]]) -// buffer.fill(buffer[, offset[, end]]) -// buffer.fill(string[, offset[, end]][, encoding]) -Buffer.prototype.fill = function fill(val, start, end, encoding) { - // Handle string cases: - if (typeof val === 'string') { - if (typeof start === 'string') { - encoding = start; - start = 0; - end = this.length; - } else if (typeof end === 'string') { - encoding = end; - end = this.length; - } - if (encoding !== undefined && typeof encoding !== 'string') { - throw new TypeError('encoding must be a string'); - } - if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) { - throw new TypeError('Unknown encoding: ' + encoding); - } - if (val.length === 1) { - var code = val.charCodeAt(0); - if (encoding === 'utf8' && code < 128 || encoding === 'latin1') { - // Fast path: If `val` fits into a single byte, use that numeric value. - val = code; - } - } - } else if (typeof val === 'number') { - val = val & 255; - } else if (typeof val === 'boolean') { - val = Number(val); - } - - // Invalid ranges are not set to a default, so can range check early. - if (start < 0 || this.length < start || this.length < end) { - throw new RangeError('Out of range index'); - } - if (end <= start) { - return this; - } - start = start >>> 0; - end = end === undefined ? this.length : end >>> 0; - if (!val) val = 0; - var i; - if (typeof val === 'number') { - for (i = start; i < end; ++i) { - this[i] = val; - } - } else { - var bytes = Buffer.isBuffer(val) ? val : Buffer.from(val, encoding); - var len = bytes.length; - if (len === 0) { - throw new TypeError('The value "' + val + '" is invalid for argument "value"'); - } - for (i = 0; i < end - start; ++i) { - this[i + start] = bytes[i % len]; - } - } - return this; -}; - -// CUSTOM ERRORS -// ============= - -// Simplified versions from Node, changed for Buffer-only usage -var errors = {}; -function E(sym, getMessage, Base) { - errors[sym] = /*#__PURE__*/function (_Base) { - function NodeError() { - var _this; - _this = _Base.call(this) || this; - Object.defineProperty(_this, 'message', { - value: getMessage.apply(_this, arguments), - writable: true, - configurable: true - }); - - // Add the error code to the name to include it in the stack trace. - _this.name = _this.name + " [" + sym + "]"; - // Access the stack to generate the error message including the error code - // from the name. - _this.stack; // eslint-disable-line no-unused-expressions - // Reset the name to the actual name. - delete _this.name; - return _this; - } - _inheritsLoose(NodeError, _Base); - var _proto = NodeError.prototype; - _proto.toString = function toString() { - return this.name + " [" + sym + "]: " + this.message; - }; - return _createClass(NodeError, [{ - key: "code", - get: function get() { - return sym; - }, - set: function set(value) { - Object.defineProperty(this, 'code', { - configurable: true, - enumerable: true, - value: value, - writable: true - }); - } - }]); - }(Base); -} -E('ERR_BUFFER_OUT_OF_BOUNDS', function (name) { - if (name) { - return name + " is outside of buffer bounds"; - } - return 'Attempt to access memory outside buffer bounds'; -}, RangeError); -E('ERR_INVALID_ARG_TYPE', function (name, actual) { - return "The \"" + name + "\" argument must be of type number. Received type " + typeof actual; -}, TypeError); -E('ERR_OUT_OF_RANGE', function (str, range, input) { - var msg = "The value of \"" + str + "\" is out of range."; - var received = input; - if (Number.isInteger(input) && Math.abs(input) > Math.pow(2, 32)) { - received = addNumericalSeparator(String(input)); - } else if (typeof input === 'bigint') { - received = String(input); - if (input > Math.pow(BigInt(2), BigInt(32)) || input < -Math.pow(BigInt(2), BigInt(32))) { - received = addNumericalSeparator(received); - } - received += 'n'; - } - msg += " It must be " + range + ". Received " + received; - return msg; -}, RangeError); -function addNumericalSeparator(val) { - var res = ''; - var i = val.length; - var start = val[0] === '-' ? 1 : 0; - for (; i >= start + 4; i -= 3) { - res = "_" + val.slice(i - 3, i) + res; - } - return "" + val.slice(0, i) + res; -} - -// CHECK FUNCTIONS -// =============== - -function checkBounds(buf, offset, byteLength) { - validateNumber(offset, 'offset'); - if (buf[offset] === undefined || buf[offset + byteLength] === undefined) { - boundsError(offset, buf.length - (byteLength + 1)); - } -} -function checkIntBI(value, min, max, buf, offset, byteLength) { - if (value > max || value < min) { - var n = typeof min === 'bigint' ? 'n' : ''; - var range; - if (byteLength > 3) { - if (min === 0 || min === BigInt(0)) { - range = ">= 0" + n + " and < 2" + n + " ** " + (byteLength + 1) * 8 + n; - } else { - range = ">= -(2" + n + " ** " + ((byteLength + 1) * 8 - 1) + n + ") and < 2 ** " + ("" + ((byteLength + 1) * 8 - 1) + n); - } - } else { - range = ">= " + min + n + " and <= " + max + n; - } - throw new errors.ERR_OUT_OF_RANGE('value', range, value); - } - checkBounds(buf, offset, byteLength); -} -function validateNumber(value, name) { - if (typeof value !== 'number') { - throw new errors.ERR_INVALID_ARG_TYPE(name, 'number', value); - } -} -function boundsError(value, length, type) { - if (Math.floor(value) !== value) { - validateNumber(value, type); - throw new errors.ERR_OUT_OF_RANGE(type || 'offset', 'an integer', value); - } - if (length < 0) { - throw new errors.ERR_BUFFER_OUT_OF_BOUNDS(); - } - throw new errors.ERR_OUT_OF_RANGE(type || 'offset', ">= " + (type ? 1 : 0) + " and <= " + length, value); -} - -// HELPER FUNCTIONS -// ================ - -var INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g; -function base64clean(str) { - // Node takes equal signs as end of the Base64 encoding - str = str.split('=')[0]; - // Node strips out invalid characters like \n and \t from the string, base64-js does not - str = str.trim().replace(INVALID_BASE64_RE, ''); - // Node converts strings with length < 2 to '' - if (str.length < 2) return ''; - // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not - while (str.length % 4 !== 0) { - str = str + '='; - } - return str; -} -function utf8ToBytes(string, units) { - units = units || Infinity; - var codePoint; - var length = string.length; - var leadSurrogate = null; - var bytes = []; - for (var i = 0; i < length; ++i) { - codePoint = string.charCodeAt(i); - - // is surrogate component - if (codePoint > 0xD7FF && codePoint < 0xE000) { - // last char was a lead - if (!leadSurrogate) { - // no lead yet - if (codePoint > 0xDBFF) { - // unexpected trail - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); - continue; - } else if (i + 1 === length) { - // unpaired lead - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); - continue; - } - - // valid lead - leadSurrogate = codePoint; - continue; - } - - // 2 leads in a row - if (codePoint < 0xDC00) { - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); - leadSurrogate = codePoint; - continue; - } - - // valid surrogate pair - codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000; - } else if (leadSurrogate) { - // valid bmp char, but last char was a lead - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD); - } - leadSurrogate = null; - - // encode utf8 - if (codePoint < 0x80) { - if ((units -= 1) < 0) break; - bytes.push(codePoint); - } else if (codePoint < 0x800) { - if ((units -= 2) < 0) break; - bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80); - } else if (codePoint < 0x10000) { - if ((units -= 3) < 0) break; - bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); - } else if (codePoint < 0x110000) { - if ((units -= 4) < 0) break; - bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80); - } else { - throw new Error('Invalid code point'); - } - } - return bytes; -} -function asciiToBytes(str) { - var byteArray = []; - for (var i = 0; i < str.length; ++i) { - // Node's code seems to be doing this and not & 0x7F.. - byteArray.push(str.charCodeAt(i) & 0xFF); - } - return byteArray; -} -function utf16leToBytes(str, units) { - var c, hi, lo; - var byteArray = []; - for (var i = 0; i < str.length; ++i) { - if ((units -= 2) < 0) break; - c = str.charCodeAt(i); - hi = c >> 8; - lo = c % 256; - byteArray.push(lo); - byteArray.push(hi); - } - return byteArray; -} -function base64ToBytes(str) { - return base64.toByteArray(base64clean(str)); -} -function blitBuffer(src, dst, offset, length) { - var i; - for (i = 0; i < length; ++i) { - if (i + offset >= dst.length || i >= src.length) break; - dst[i + offset] = src[i]; - } - return i; -} - -// ArrayBuffer or Uint8Array objects from other contexts (i.e. iframes) do not pass -// the `instanceof` check but they should be treated as of that type. -// See: https://github.com/feross/buffer/issues/166 -function isInstance(obj, type) { - return obj instanceof type || obj != null && obj.constructor != null && obj.constructor.name != null && obj.constructor.name === type.name; -} -function numberIsNaN(obj) { - // For IE11 support - return obj !== obj; // eslint-disable-line no-self-compare -} - -// Create lookup table for `toString('hex')` -// See: https://github.com/feross/buffer/issues/219 -var hexSliceLookupTable = function () { - var alphabet = '0123456789abcdef'; - var table = new Array(256); - for (var i = 0; i < 16; ++i) { - var i16 = i * 16; - for (var j = 0; j < 16; ++j) { - table[i16 + j] = alphabet[i] + alphabet[j]; - } - } - return table; -}(); - -// Return not function with Error if BigInt not supported -function defineBigIntMethod(fn) { - return typeof BigInt === 'undefined' ? BufferBigIntNotDefined : fn; -} -function BufferBigIntNotDefined() { - throw new Error('BigInt not supported'); -} - -/***/ }), - -/***/ 14623: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(39081); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** - * ISO/IEC 9797-1 Padding Method 2. - */ - CryptoJS.pad.Iso97971 = { - pad: function pad(data, blockSize) { - // Add 0x80 byte - data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1)); - - // Zero pad the rest - CryptoJS.pad.ZeroPadding.pad(data, blockSize); - }, - unpad: function unpad(data) { - // Remove zero padding - CryptoJS.pad.ZeroPadding.unpad(data); - - // Remove one more byte -- the 0x80 byte - data.sigBytes--; - } - }; - return CryptoJS.pad.Iso97971; -}); - -/***/ }), - -/***/ 14903: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; -/* provided dependency */ var process = __webpack_require__(9964); -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -// a duplex stream is just a stream that is both readable and writable. -// Since JS doesn't have multiple prototypal inheritance, this class -// prototypally inherits from Readable, and then parasitically from -// Writable. - - - -/**/ -var objectKeys = Object.keys || function (obj) { - var keys = []; - for (var key in obj) keys.push(key); - return keys; -}; -/**/ - -module.exports = Duplex; -var Readable = __webpack_require__(88261); -var Writable = __webpack_require__(29781); -__webpack_require__(89784)(Duplex, Readable); -{ - // Allow the keys array to be GC'ed. - var keys = objectKeys(Writable.prototype); - for (var v = 0; v < keys.length; v++) { - var method = keys[v]; - if (!Duplex.prototype[method]) Duplex.prototype[method] = Writable.prototype[method]; - } -} -function Duplex(options) { - if (!(this instanceof Duplex)) return new Duplex(options); - Readable.call(this, options); - Writable.call(this, options); - this.allowHalfOpen = true; - if (options) { - if (options.readable === false) this.readable = false; - if (options.writable === false) this.writable = false; - if (options.allowHalfOpen === false) { - this.allowHalfOpen = false; - this.once('end', onend); - } - } -} -Object.defineProperty(Duplex.prototype, 'writableHighWaterMark', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState.highWaterMark; - } -}); -Object.defineProperty(Duplex.prototype, 'writableBuffer', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState && this._writableState.getBuffer(); - } -}); -Object.defineProperty(Duplex.prototype, 'writableLength', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState.length; - } -}); - -// the no-half-open enforcer -function onend() { - // If the writable side ended, then we're ok. - if (this._writableState.ended) return; - - // no more data can be written. - // But allow more writes to happen in this tick. - process.nextTick(onEndNT, this); -} -function onEndNT(self) { - self.end(); -} -Object.defineProperty(Duplex.prototype, 'destroyed', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - if (this._readableState === undefined || this._writableState === undefined) { - return false; - } - return this._readableState.destroyed && this._writableState.destroyed; - }, - set: function set(value) { - // we ignore the value if the stream - // has not been initialized yet - if (this._readableState === undefined || this._writableState === undefined) { - return; - } - - // backward compatibility, the user is explicitly - // managing destroyed - this._readableState.destroyed = value; - this._writableState.destroyed = value; - } -}); - -/***/ }), - -/***/ 15216: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var defineProperty = (__webpack_require__(95892).f); -var hasOwn = __webpack_require__(20340); -var wellKnownSymbol = __webpack_require__(38688); - -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); - -module.exports = function (it, TAG, STATIC) { - if (it && !hasOwn(it = STATIC ? it : it.prototype, TO_STRING_TAG)) { - defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG }); - } -}; - - -/***/ }), - -/***/ 15293: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('.')} */ -module.exports = Error; - - -/***/ }), - -/***/ 15341: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var redefine = __webpack_require__(13711); - -module.exports = function (target, src, options) { - for (var key in src) redefine(target, key, src[key], options); - return target; -}; - - -/***/ }), - -/***/ 15366: -/***/ (function(module) { - -module.exports = {}; - - -/***/ }), - -/***/ 15567: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var fails = __webpack_require__(47044); - -// Detect IE8's incomplete defineProperty implementation -module.exports = !fails(function () { - // eslint-disable-next-line es/no-object-defineproperty -- required for testing - return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; -}); - - -/***/ }), - -/***/ 15892: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var call = __webpack_require__(2834); -var aCallable = __webpack_require__(32631); -var anObject = __webpack_require__(34984); -var tryToString = __webpack_require__(68664); -var getIteratorMethod = __webpack_require__(13872); - -var TypeError = global.TypeError; - -module.exports = function (argument, usingIterator) { - var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator; - if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument)); - throw TypeError(tryToString(argument) + ' is not iterable'); -}; - - -/***/ }), - -/***/ 16190: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(94845); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var C_enc = C.enc; - - /** - * Base64url encoding strategy. - */ - var Base64url = C_enc.Base64url = { - /** - * Converts a word array to a Base64url string. - * - * @param {WordArray} wordArray The word array. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {string} The Base64url string. - * - * @static - * - * @example - * - * var base64String = CryptoJS.enc.Base64url.stringify(wordArray); - */ - stringify: function stringify(wordArray, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true; - } - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; - var map = urlSafe ? this._safe_map : this._map; - - // Clamp excess bits - wordArray.clamp(); - - // Convert - var base64Chars = []; - for (var i = 0; i < sigBytes; i += 3) { - var byte1 = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; - var byte2 = words[i + 1 >>> 2] >>> 24 - (i + 1) % 4 * 8 & 0xff; - var byte3 = words[i + 2 >>> 2] >>> 24 - (i + 2) % 4 * 8 & 0xff; - var triplet = byte1 << 16 | byte2 << 8 | byte3; - for (var j = 0; j < 4 && i + j * 0.75 < sigBytes; j++) { - base64Chars.push(map.charAt(triplet >>> 6 * (3 - j) & 0x3f)); - } - } - - // Add padding - var paddingChar = map.charAt(64); - if (paddingChar) { - while (base64Chars.length % 4) { - base64Chars.push(paddingChar); - } - } - return base64Chars.join(''); - }, - /** - * Converts a Base64url string to a word array. - * - * @param {string} base64Str The Base64url string. - * - * @param {boolean} urlSafe Whether to use url safe - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Base64url.parse(base64String); - */ - parse: function parse(base64Str, urlSafe) { - if (urlSafe === undefined) { - urlSafe = true; - } - - // Shortcuts - var base64StrLength = base64Str.length; - var map = urlSafe ? this._safe_map : this._map; - var reverseMap = this._reverseMap; - if (!reverseMap) { - reverseMap = this._reverseMap = []; - for (var j = 0; j < map.length; j++) { - reverseMap[map.charCodeAt(j)] = j; - } - } - - // Ignore padding - var paddingChar = map.charAt(64); - if (paddingChar) { - var paddingIndex = base64Str.indexOf(paddingChar); - if (paddingIndex !== -1) { - base64StrLength = paddingIndex; - } - } - - // Convert - return parseLoop(base64Str, base64StrLength, reverseMap); - }, - _map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=', - _safe_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_' - }; - function parseLoop(base64Str, base64StrLength, reverseMap) { - var words = []; - var nBytes = 0; - for (var i = 0; i < base64StrLength; i++) { - if (i % 4) { - var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << i % 4 * 2; - var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> 6 - i % 4 * 2; - var bitsCombined = bits1 | bits2; - words[nBytes >>> 2] |= bitsCombined << 24 - nBytes % 4 * 8; - nBytes++; - } - } - return WordArray.create(words, nBytes); - } - })(); - return CryptoJS.enc.Base64url; -}); - -/***/ }), - -/***/ 16403: -/***/ (function() { - -/* (ignored) */ - -/***/ }), - -/***/ 16465: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - - -/** - * Module exports. - */ - -module.exports = deprecate; - -/** - * Mark that a method should not be used. - * Returns a modified function which warns once by default. - * - * If `localStorage.noDeprecation = true` is set, then it is a no-op. - * - * If `localStorage.throwDeprecation = true` is set, then deprecated functions - * will throw an Error when invoked. - * - * If `localStorage.traceDeprecation = true` is set, then deprecated functions - * will invoke `console.trace()` instead of `console.error()`. - * - * @param {Function} fn - the function to deprecate - * @param {String} msg - the string to print to the console when `fn` is invoked - * @returns {Function} a new "deprecated" version of `fn` - * @api public - */ - -function deprecate (fn, msg) { - if (config('noDeprecation')) { - return fn; - } - - var warned = false; - function deprecated() { - if (!warned) { - if (config('throwDeprecation')) { - throw new Error(msg); - } else if (config('traceDeprecation')) { - console.trace(msg); - } else { - console.warn(msg); - } - warned = true; - } - return fn.apply(this, arguments); - } - - return deprecated; -} - -/** - * Checks `localStorage` for boolean values for the given `name`. - * - * @param {String} name - * @returns {Boolean} - * @api private - */ - -function config (name) { - // accessing global.localStorage can trigger a DOMException in sandboxed iframes - try { - if (!__webpack_require__.g.localStorage) return false; - } catch (_) { - return false; - } - var val = __webpack_require__.g.localStorage[name]; - if (null == val) return false; - return String(val).toLowerCase() === 'true'; -} - - -/***/ }), - -/***/ 16679: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var uncurryThis = __webpack_require__(38347); - -// `thisNumberValue` abstract operation -// https://tc39.es/ecma262/#sec-thisnumbervalue -module.exports = uncurryThis(1.0.valueOf); - - -/***/ }), - -/***/ 16720: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(20731); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function (Math) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var C_algo = C.algo; - - // Constants tables - var RHO_OFFSETS = []; - var PI_INDEXES = []; - var ROUND_CONSTANTS = []; - - // Compute Constants - (function () { - // Compute rho offset constants - var x = 1, - y = 0; - for (var t = 0; t < 24; t++) { - RHO_OFFSETS[x + 5 * y] = (t + 1) * (t + 2) / 2 % 64; - var newX = y % 5; - var newY = (2 * x + 3 * y) % 5; - x = newX; - y = newY; - } - - // Compute pi index constants - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - PI_INDEXES[x + 5 * y] = y + (2 * x + 3 * y) % 5 * 5; - } - } - - // Compute round constants - var LFSR = 0x01; - for (var i = 0; i < 24; i++) { - var roundConstantMsw = 0; - var roundConstantLsw = 0; - for (var j = 0; j < 7; j++) { - if (LFSR & 0x01) { - var bitPosition = (1 << j) - 1; - if (bitPosition < 32) { - roundConstantLsw ^= 1 << bitPosition; - } else /* if (bitPosition >= 32) */{ - roundConstantMsw ^= 1 << bitPosition - 32; - } - } - - // Compute next LFSR - if (LFSR & 0x80) { - // Primitive polynomial over GF(2): x^8 + x^6 + x^5 + x^4 + 1 - LFSR = LFSR << 1 ^ 0x71; - } else { - LFSR <<= 1; - } - } - ROUND_CONSTANTS[i] = X64Word.create(roundConstantMsw, roundConstantLsw); - } - })(); - - // Reusable objects for temporary values - var T = []; - (function () { - for (var i = 0; i < 25; i++) { - T[i] = X64Word.create(); - } - })(); - - /** - * SHA-3 hash algorithm. - */ - var SHA3 = C_algo.SHA3 = Hasher.extend({ - /** - * Configuration options. - * - * @property {number} outputLength - * The desired number of bits in the output hash. - * Only values permitted are: 224, 256, 384, 512. - * Default: 512 - */ - cfg: Hasher.cfg.extend({ - outputLength: 512 - }), - _doReset: function _doReset() { - var state = this._state = []; - for (var i = 0; i < 25; i++) { - state[i] = new X64Word.init(); - } - this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32; - }, - _doProcessBlock: function _doProcessBlock(M, offset) { - // Shortcuts - var state = this._state; - var nBlockSizeLanes = this.blockSize / 2; - - // Absorb - for (var i = 0; i < nBlockSizeLanes; i++) { - // Shortcuts - var M2i = M[offset + 2 * i]; - var M2i1 = M[offset + 2 * i + 1]; - - // Swap endian - M2i = (M2i << 8 | M2i >>> 24) & 0x00ff00ff | (M2i << 24 | M2i >>> 8) & 0xff00ff00; - M2i1 = (M2i1 << 8 | M2i1 >>> 24) & 0x00ff00ff | (M2i1 << 24 | M2i1 >>> 8) & 0xff00ff00; - - // Absorb message into state - var lane = state[i]; - lane.high ^= M2i1; - lane.low ^= M2i; - } - - // Rounds - for (var round = 0; round < 24; round++) { - // Theta - for (var x = 0; x < 5; x++) { - // Mix column lanes - var tMsw = 0, - tLsw = 0; - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - tMsw ^= lane.high; - tLsw ^= lane.low; - } - - // Temporary values - var Tx = T[x]; - Tx.high = tMsw; - Tx.low = tLsw; - } - for (var x = 0; x < 5; x++) { - // Shortcuts - var Tx4 = T[(x + 4) % 5]; - var Tx1 = T[(x + 1) % 5]; - var Tx1Msw = Tx1.high; - var Tx1Lsw = Tx1.low; - - // Mix surrounding columns - var tMsw = Tx4.high ^ (Tx1Msw << 1 | Tx1Lsw >>> 31); - var tLsw = Tx4.low ^ (Tx1Lsw << 1 | Tx1Msw >>> 31); - for (var y = 0; y < 5; y++) { - var lane = state[x + 5 * y]; - lane.high ^= tMsw; - lane.low ^= tLsw; - } - } - - // Rho Pi - for (var laneIndex = 1; laneIndex < 25; laneIndex++) { - var tMsw; - var tLsw; - - // Shortcuts - var lane = state[laneIndex]; - var laneMsw = lane.high; - var laneLsw = lane.low; - var rhoOffset = RHO_OFFSETS[laneIndex]; - - // Rotate lanes - if (rhoOffset < 32) { - tMsw = laneMsw << rhoOffset | laneLsw >>> 32 - rhoOffset; - tLsw = laneLsw << rhoOffset | laneMsw >>> 32 - rhoOffset; - } else /* if (rhoOffset >= 32) */{ - tMsw = laneLsw << rhoOffset - 32 | laneMsw >>> 64 - rhoOffset; - tLsw = laneMsw << rhoOffset - 32 | laneLsw >>> 64 - rhoOffset; - } - - // Transpose lanes - var TPiLane = T[PI_INDEXES[laneIndex]]; - TPiLane.high = tMsw; - TPiLane.low = tLsw; - } - - // Rho pi at x = y = 0 - var T0 = T[0]; - var state0 = state[0]; - T0.high = state0.high; - T0.low = state0.low; - - // Chi - for (var x = 0; x < 5; x++) { - for (var y = 0; y < 5; y++) { - // Shortcuts - var laneIndex = x + 5 * y; - var lane = state[laneIndex]; - var TLane = T[laneIndex]; - var Tx1Lane = T[(x + 1) % 5 + 5 * y]; - var Tx2Lane = T[(x + 2) % 5 + 5 * y]; - - // Mix rows - lane.high = TLane.high ^ ~Tx1Lane.high & Tx2Lane.high; - lane.low = TLane.low ^ ~Tx1Lane.low & Tx2Lane.low; - } - } - - // Iota - var lane = state[0]; - var roundConstant = ROUND_CONSTANTS[round]; - lane.high ^= roundConstant.high; - lane.low ^= roundConstant.low; - } - }, - _doFinalize: function _doFinalize() { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; - var blockSizeBits = this.blockSize * 32; - - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x1 << 24 - nBitsLeft % 32; - dataWords[(Math.ceil((nBitsLeft + 1) / blockSizeBits) * blockSizeBits >>> 5) - 1] |= 0x80; - data.sigBytes = dataWords.length * 4; - - // Hash final blocks - this._process(); - - // Shortcuts - var state = this._state; - var outputLengthBytes = this.cfg.outputLength / 8; - var outputLengthLanes = outputLengthBytes / 8; - - // Squeeze - var hashWords = []; - for (var i = 0; i < outputLengthLanes; i++) { - // Shortcuts - var lane = state[i]; - var laneMsw = lane.high; - var laneLsw = lane.low; - - // Swap endian - laneMsw = (laneMsw << 8 | laneMsw >>> 24) & 0x00ff00ff | (laneMsw << 24 | laneMsw >>> 8) & 0xff00ff00; - laneLsw = (laneLsw << 8 | laneLsw >>> 24) & 0x00ff00ff | (laneLsw << 24 | laneLsw >>> 8) & 0xff00ff00; - - // Squeeze state to retrieve hash - hashWords.push(laneLsw); - hashWords.push(laneMsw); - } - - // Return final computed hash - return new WordArray.init(hashWords, outputLengthBytes); - }, - clone: function clone() { - var clone = Hasher.clone.call(this); - var state = clone._state = this._state.slice(0); - for (var i = 0; i < 25; i++) { - state[i] = state[i].clone(); - } - return clone; - } - }); - - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA3('message'); - * var hash = CryptoJS.SHA3(wordArray); - */ - C.SHA3 = Hasher._createHelper(SHA3); - - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA3(message, key); - */ - C.HmacSHA3 = Hasher._createHmacHelper(SHA3); - })(Math); - return CryptoJS.SHA3; -}); - -/***/ }), - -/***/ 16793: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var Buffer = (__webpack_require__(93143).Buffer) - -// Export Node.js internal encodings. - -module.exports = { - // Encodings - utf8: { type: "_internal", bomAware: true }, - cesu8: { type: "_internal", bomAware: true }, - unicode11utf8: "utf8", - - ucs2: { type: "_internal", bomAware: true }, - utf16le: "ucs2", - - binary: { type: "_internal" }, - base64: { type: "_internal" }, - hex: { type: "_internal" }, - - // Codec. - _internal: InternalCodec -} - -// ------------------------------------------------------------------------------ - -function InternalCodec (codecOptions, iconv) { - this.enc = codecOptions.encodingName - this.bomAware = codecOptions.bomAware - - if (this.enc === "base64") { this.encoder = InternalEncoderBase64 } else if (this.enc === "utf8") { this.encoder = InternalEncoderUtf8 } 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 - } - } -} - -InternalCodec.prototype.encoder = InternalEncoder -InternalCodec.prototype.decoder = InternalDecoder - -// ------------------------------------------------------------------------------ - -// We use node.js internal decoder. Its signature is the same as ours. -var StringDecoder = (__webpack_require__(43143)/* .StringDecoder */ .I) - -function InternalDecoder (options, codec) { - this.decoder = new StringDecoder(codec.enc) -} - -InternalDecoder.prototype.write = function (buf) { - if (!Buffer.isBuffer(buf)) { - buf = Buffer.from(buf) - } - - return this.decoder.write(buf) -} - -InternalDecoder.prototype.end = function () { - return this.decoder.end() -} - -// ------------------------------------------------------------------------------ -// Encoder is mostly trivial - -function InternalEncoder (options, codec) { - this.enc = codec.enc -} - -InternalEncoder.prototype.write = function (str) { - return Buffer.from(str, this.enc) -} - -InternalEncoder.prototype.end = function () { -} - -// ------------------------------------------------------------------------------ -// Except base64 encoder, which must keep its state. - -function InternalEncoderBase64 (options, codec) { - this.prevStr = "" -} - -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) - - return Buffer.from(str, "base64") -} - -InternalEncoderBase64.prototype.end = function () { - return Buffer.from(this.prevStr, "base64") -} - -// ------------------------------------------------------------------------------ -// CESU-8 encoder is also special. - -function InternalEncoderCesu8 (options, codec) { -} - -InternalEncoderCesu8.prototype.write = function (str) { - var buf = Buffer.alloc(str.length * 3); var 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 buf.slice(0, bufIdx) -} - -InternalEncoderCesu8.prototype.end = function () { -} - -// ------------------------------------------------------------------------------ -// 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 -} - -InternalDecoderCesu8.prototype.write = function (buf) { - var acc = this.acc; var contBytes = this.contBytes; var accBytes = this.accBytes - var 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 - } - - 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 -} - -InternalDecoderCesu8.prototype.end = function () { - var res = 0 - if (this.contBytes > 0) { res += this.defaultCharUnicode } - return res -} - -// ------------------------------------------------------------------------------ -// check the chunk boundaries for surrogate pair - -function InternalEncoderUtf8 (options, codec) { - this.highSurrogate = "" -} - -InternalEncoderUtf8.prototype.write = function (str) { - if (this.highSurrogate) { - str = this.highSurrogate + str - this.highSurrogate = "" - } - - if (str.length > 0) { - var charCode = str.charCodeAt(str.length - 1) - if (charCode >= 0xd800 && charCode < 0xdc00) { - this.highSurrogate = str[str.length - 1] - str = str.slice(0, str.length - 1) - } - } - - return Buffer.from(str, this.enc) -} - -InternalEncoderUtf8.prototype.end = function () { - if (this.highSurrogate) { - var str = this.highSurrogate - this.highSurrogate = "" - return Buffer.from(str, this.enc) - } -} - - -/***/ }), - -/***/ 17100: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; - -var Buffer = (__webpack_require__(93143).Buffer) - -// Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js - -// == UTF16-BE codec. ========================================================== - -exports.utf16be = Utf16BECodec -function Utf16BECodec () { -} - -Utf16BECodec.prototype.encoder = Utf16BEEncoder -Utf16BECodec.prototype.decoder = Utf16BEDecoder -Utf16BECodec.prototype.bomAware = true - -// -- Encoding - -function Utf16BEEncoder () { -} - -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 -} - -Utf16BEEncoder.prototype.end = function () { -} - -// -- Decoding - -function Utf16BEDecoder () { - this.overflowByte = -1 -} - -Utf16BEDecoder.prototype.write = function (buf) { - if (buf.length == 0) { return "" } - - var buf2 = Buffer.alloc(buf.length + 1) - var i = 0; var j = 0 - - if (this.overflowByte !== -1) { - buf2[0] = buf[0] - buf2[1] = this.overflowByte - i = 1; j = 2 - } - - 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 - - return buf2.slice(0, j).toString("ucs2") -} - -Utf16BEDecoder.prototype.end = function () { - this.overflowByte = -1 -} - -// == 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'}); - -// Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false). - -exports.utf16 = Utf16Codec -function Utf16Codec (codecOptions, iconv) { - this.iconv = iconv -} - -Utf16Codec.prototype.encoder = Utf16Encoder -Utf16Codec.prototype.decoder = Utf16Decoder - -// -- Encoding (pass-through) - -function Utf16Encoder (options, codec) { - options = options || {} - if (options.addBOM === undefined) { options.addBOM = true } - this.encoder = codec.iconv.getEncoder("utf-16le", options) -} - -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 - } - - return this.decoder.write(buf) -} - -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 trail = this.decoder.end() - if (trail) { resStr += trail } - - this.initialBufs.length = this.initialBufsLen = 0 - return resStr - } - return this.decoder.end() -} - -function detectEncoding (bufs, defaultEncoding) { - var b = [] - var charsProcessed = 0 - // Number of ASCII chars when decoded as LE or BE. - var asciiCharsLE = 0 - var asciiCharsBE = 0 - - outerLoop: - 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++ - - b.length = 0 - charsProcessed++ - - if (charsProcessed >= 100) { - break outerLoop - } - } - } - } - - // 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" - - // Couldn't decide (likely all zeros or not enough data). - return defaultEncoding || "utf-16le" -} - - -/***/ }), - -/***/ 17506: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var isObject = __webpack_require__(24517); - -var floor = Math.floor; - -// `IsIntegralNumber` abstract operation -// https://tc39.es/ecma262/#sec-isintegralnumber -// eslint-disable-next-line es/no-number-isinteger -- safe -module.exports = Number.isInteger || function isInteger(it) { - return !isObject(it) && isFinite(it) && floor(it) === it; -}; - - -/***/ }), - -/***/ 17678: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; -var __webpack_dirname__ = "/"; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; - - -__webpack_require__(69330); -__webpack_require__(5597); -__webpack_require__(11765); -__webpack_require__(7585); -__webpack_require__(7283); -__webpack_require__(58281); -Object.defineProperty(exports, "__esModule", ({ - value: true -})); -exports["default"] = void 0; -__webpack_require__(65292); -__webpack_require__(73844); -__webpack_require__(39081); -__webpack_require__(41584); -__webpack_require__(49063); -__webpack_require__(58028); -__webpack_require__(81755); -__webpack_require__(94845); -__webpack_require__(80055); -__webpack_require__(20731); -__webpack_require__(45337); -__webpack_require__(8953); -__webpack_require__(24863); -__webpack_require__(70095); -__webpack_require__(10849); -__webpack_require__(18756); -__webpack_require__(37309); -__webpack_require__(14032); -__webpack_require__(59883); -__webpack_require__(68067); -__webpack_require__(61726); -__webpack_require__(57114); -__webpack_require__(26663); -__webpack_require__(65578); -__webpack_require__(6422); -__webpack_require__(46467); -__webpack_require__(7851); -__webpack_require__(72095); -__webpack_require__(62046); -__webpack_require__(47259); -__webpack_require__(18425); -__webpack_require__(56912); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -__webpack_require__(64654); -__webpack_require__(42437); -__webpack_require__(94712); -var _stream = _interopRequireDefault(__webpack_require__(9760)); -var _zlib = _interopRequireDefault(__webpack_require__(6729)); -var _cryptoJs = _interopRequireDefault(__webpack_require__(94119)); -var _fontkit = _interopRequireDefault(__webpack_require__(10740)); -var _events = __webpack_require__(64785); -var _linebreak = _interopRequireDefault(__webpack_require__(5417)); -var _jpegExif = _interopRequireDefault(__webpack_require__(38834)); -var _pngJs = _interopRequireDefault(__webpack_require__(84695)); -function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } -function _readOnlyError(r) { throw new TypeError('"' + r + '" is read-only'); } -function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } -function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } -function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } -function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } -function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } -function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } -function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } -function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } -function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } -var fs = __webpack_require__(48181); -/* -PDFAbstractReference - abstract class for PDF reference -*/ -var PDFAbstractReference = /*#__PURE__*/function () { - function PDFAbstractReference() {} - var _proto = PDFAbstractReference.prototype; - _proto.toString = function toString() { - throw new Error('Must be implemented by subclasses'); - }; - return PDFAbstractReference; -}(); -/* -PDFTree - abstract base class for name and number tree objects -*/ -var PDFTree = /*#__PURE__*/function () { - function PDFTree() { - var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - this._items = {}; - // disable /Limits output for this tree - this.limits = typeof options.limits === 'boolean' ? options.limits : true; - } - var _proto2 = PDFTree.prototype; - _proto2.add = function add(key, val) { - return this._items[key] = val; - }; - _proto2.get = function get(key) { - return this._items[key]; - }; - _proto2.toString = function toString() { - var _this = this; - // Needs to be sorted by key - var sortedKeys = Object.keys(this._items).sort(function (a, b) { - return _this._compareKeys(a, b); - }); - var out = ['<<']; - if (this.limits && sortedKeys.length > 1) { - var _first = sortedKeys[0], - _last = sortedKeys[sortedKeys.length - 1]; - out.push(" /Limits " + PDFObject.convert([this._dataForKey(_first), this._dataForKey(_last)])); - } - out.push(" /" + this._keysName() + " ["); - for (var _iterator = _createForOfIteratorHelperLoose(sortedKeys), _step; !(_step = _iterator()).done;) { - var key = _step.value; - out.push(" " + PDFObject.convert(this._dataForKey(key)) + " " + PDFObject.convert(this._items[key])); - } - out.push(']'); - out.push('>>'); - return out.join('\n'); - }; - _proto2._compareKeys = function _compareKeys(/*a, b*/ - ) { - throw new Error('Must be implemented by subclasses'); - }; - _proto2._keysName = function _keysName() { - throw new Error('Must be implemented by subclasses'); - }; - _proto2._dataForKey = function _dataForKey(/*k*/ - ) { - throw new Error('Must be implemented by subclasses'); - }; - return PDFTree; -}(); -var SpotColor = /*#__PURE__*/function () { - function SpotColor(doc, name, C, M, Y, K) { - this.id = 'CS' + Object.keys(doc.spotColors).length; - this.name = name; - this.values = [C, M, Y, K]; - this.ref = doc.ref(['Separation', this.name, 'DeviceCMYK', { - Range: [0, 1, 0, 1, 0, 1, 0, 1], - C0: [0, 0, 0, 0], - C1: this.values.map(function (value) { - return value / 100; - }), - FunctionType: 2, - Domain: [0, 1], - N: 1 - }]); - this.ref.end(); - } - var _proto3 = SpotColor.prototype; - _proto3.toString = function toString() { - return this.ref.id + " 0 R"; - }; - return SpotColor; -}(); -/* -PDFObject - converts JavaScript types into their corresponding PDF types. -By Devon Govett -*/ -var pad = function pad(str, length) { - return (Array(length + 1).join('0') + str).slice(-length); -}; -var escapableRe = /[\n\r\t\b\f()\\]/g; -var escapable = { - '\n': '\\n', - '\r': '\\r', - '\t': '\\t', - '\b': '\\b', - '\f': '\\f', - '\\': '\\\\', - '(': '\\(', - ')': '\\)' -}; - -// Convert little endian UTF-16 to big endian -var swapBytes = function swapBytes(buff) { - var l = buff.length; - if (l & 0x01) { - throw new Error('Buffer length must be even'); - } else { - for (var i = 0, end = l - 1; i < end; i += 2) { - var a = buff[i]; - buff[i] = buff[i + 1]; - buff[i + 1] = a; - } - } - return buff; -}; -var PDFObject = /*#__PURE__*/function () { - function PDFObject() {} - PDFObject.convert = function convert(object) { - var encryptFn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; - // String literals are converted to the PDF name type - if (typeof object === 'string') { - return "/" + object; - - // String objects are converted to PDF strings (UTF-16) - } else if (object instanceof String) { - var string = object; - // Detect if this is a unicode string - var isUnicode = false; - for (var i = 0, end = string.length; i < end; i++) { - if (string.charCodeAt(i) > 0x7f) { - isUnicode = true; - break; - } - } - - // If so, encode it as big endian UTF-16 - var stringBuffer; - if (isUnicode) { - stringBuffer = swapBytes(Buffer.from("\uFEFF" + string, 'utf16le')); - } else { - stringBuffer = Buffer.from(string.valueOf(), 'ascii'); - } - - // Encrypt the string when necessary - if (encryptFn) { - string = encryptFn(stringBuffer).toString('binary'); - } else { - string = stringBuffer.toString('binary'); - } - - // Escape characters as required by the spec - string = string.replace(escapableRe, function (c) { - return escapable[c]; - }); - return "(" + string + ")"; - - // Buffers are converted to PDF hex strings - } else if (Buffer.isBuffer(object)) { - return "<" + object.toString('hex') + ">"; - } else if (object instanceof PDFAbstractReference || object instanceof PDFTree || object instanceof SpotColor) { - return object.toString(); - } else if (object instanceof Date) { - var _string = "D:" + pad(object.getUTCFullYear(), 4) + pad(object.getUTCMonth() + 1, 2) + pad(object.getUTCDate(), 2) + pad(object.getUTCHours(), 2) + pad(object.getUTCMinutes(), 2) + pad(object.getUTCSeconds(), 2) + 'Z'; - - // Encrypt the string when necessary - if (encryptFn) { - _string = encryptFn(Buffer.from(_string, 'ascii')).toString('binary'); - - // Escape characters as required by the spec - _string = _string.replace(escapableRe, function (c) { - return escapable[c]; - }); - } - return "(" + _string + ")"; - } else if (Array.isArray(object)) { - var items = object.map(function (e) { - return PDFObject.convert(e, encryptFn); - }).join(' '); - return "[" + items + "]"; - } else if ({}.toString.call(object) === '[object Object]') { - var out = ['<<']; - for (var key in object) { - var val = object[key]; - out.push("/" + key + " " + PDFObject.convert(val, encryptFn)); - } - out.push('>>'); - return out.join('\n'); - } else if (typeof object === 'number') { - return PDFObject.number(object); - } else { - return "" + object; - } - }; - PDFObject.number = function number(n) { - if (n > -1e21 && n < 1e21) { - return Math.round(n * 1e6) / 1e6; - } - throw new Error("unsupported number: " + n); - }; - return PDFObject; -}(); -/* -PDFReference - represents a reference to another object in the PDF object heirarchy -By Devon Govett -*/ -var PDFReference = /*#__PURE__*/function (_PDFAbstractReference) { - function PDFReference(document, id) { - var _this2; - var data = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - _this2 = _PDFAbstractReference.call(this) || this; - _this2.document = document; - _this2.id = id; - _this2.data = data; - _this2.gen = 0; - _this2.compress = _this2.document.compress && !_this2.data.Filter; - _this2.uncompressedLength = 0; - _this2.buffer = []; - return _this2; - } - _inheritsLoose(PDFReference, _PDFAbstractReference); - var _proto4 = PDFReference.prototype; - _proto4.write = function write(chunk) { - if (!Buffer.isBuffer(chunk)) { - chunk = Buffer.from(chunk + '\n', 'binary'); - } - this.uncompressedLength += chunk.length; - if (this.data.Length == null) { - this.data.Length = 0; - } - this.buffer.push(chunk); - this.data.Length += chunk.length; - if (this.compress) { - return this.data.Filter = 'FlateDecode'; - } - }; - _proto4.end = function end(chunk) { - if (chunk) { - this.write(chunk); - } - return this.finalize(); - }; - _proto4.finalize = function finalize() { - this.offset = this.document._offset; - var encryptFn = this.document._security ? this.document._security.getEncryptFn(this.id, this.gen) : null; - if (this.buffer.length) { - this.buffer = Buffer.concat(this.buffer); - if (this.compress) { - this.buffer = _zlib.default.deflateSync(this.buffer); - } - if (encryptFn) { - this.buffer = encryptFn(this.buffer); - } - this.data.Length = this.buffer.length; - } - this.document._write(this.id + " " + this.gen + " obj"); - this.document._write(PDFObject.convert(this.data, encryptFn)); - if (this.buffer.length) { - this.document._write('stream'); - this.document._write(this.buffer); - this.buffer = []; // free up memory - this.document._write('\nendstream'); - } - this.document._write('endobj'); - this.document._refEnd(this); - }; - _proto4.toString = function toString() { - return this.id + " " + this.gen + " R"; - }; - return PDFReference; -}(PDFAbstractReference); -/* -PDFPage - represents a single page in the PDF document -By Devon Govett -*/ -var DEFAULT_MARGINS = { - top: 72, - left: 72, - bottom: 72, - right: 72 -}; -var SIZES = { - '4A0': [4767.87, 6740.79], - '2A0': [3370.39, 4767.87], - A0: [2383.94, 3370.39], - A1: [1683.78, 2383.94], - A2: [1190.55, 1683.78], - A3: [841.89, 1190.55], - A4: [595.28, 841.89], - A5: [419.53, 595.28], - A6: [297.64, 419.53], - A7: [209.76, 297.64], - A8: [147.4, 209.76], - A9: [104.88, 147.4], - A10: [73.7, 104.88], - B0: [2834.65, 4008.19], - B1: [2004.09, 2834.65], - B2: [1417.32, 2004.09], - B3: [1000.63, 1417.32], - B4: [708.66, 1000.63], - B5: [498.9, 708.66], - B6: [354.33, 498.9], - B7: [249.45, 354.33], - B8: [175.75, 249.45], - B9: [124.72, 175.75], - B10: [87.87, 124.72], - C0: [2599.37, 3676.54], - C1: [1836.85, 2599.37], - C2: [1298.27, 1836.85], - C3: [918.43, 1298.27], - C4: [649.13, 918.43], - C5: [459.21, 649.13], - C6: [323.15, 459.21], - C7: [229.61, 323.15], - C8: [161.57, 229.61], - C9: [113.39, 161.57], - C10: [79.37, 113.39], - RA0: [2437.8, 3458.27], - RA1: [1729.13, 2437.8], - RA2: [1218.9, 1729.13], - RA3: [864.57, 1218.9], - RA4: [609.45, 864.57], - SRA0: [2551.18, 3628.35], - SRA1: [1814.17, 2551.18], - SRA2: [1275.59, 1814.17], - SRA3: [907.09, 1275.59], - SRA4: [637.8, 907.09], - EXECUTIVE: [521.86, 756.0], - FOLIO: [612.0, 936.0], - LEGAL: [612.0, 1008.0], - LETTER: [612.0, 792.0], - TABLOID: [792.0, 1224.0] -}; -var PDFPage = /*#__PURE__*/function () { - function PDFPage(document) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - this.document = document; - this.size = options.size || 'letter'; - this.layout = options.layout || 'portrait'; - - // process margins - if (typeof options.margin === 'number') { - this.margins = { - top: options.margin, - left: options.margin, - bottom: options.margin, - right: options.margin - }; - - // default to 1 inch margins - } else { - this.margins = options.margins || DEFAULT_MARGINS; - } - - // calculate page dimensions - var dimensions = Array.isArray(this.size) ? this.size : SIZES[this.size.toUpperCase()]; - this.width = dimensions[this.layout === 'portrait' ? 0 : 1]; - this.height = dimensions[this.layout === 'portrait' ? 1 : 0]; - this.content = this.document.ref(); - - // Initialize the Font, XObject, and ExtGState dictionaries - this.resources = this.document.ref({ - ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'] - }); - - // The page dictionary - this.dictionary = this.document.ref({ - Type: 'Page', - Parent: this.document._root.data.Pages, - MediaBox: [0, 0, this.width, this.height], - Contents: this.content, - Resources: this.resources - }); - this.markings = []; - } - - // Lazily create these objects - var _proto5 = PDFPage.prototype; - _proto5.maxY = function maxY() { - return this.height - this.margins.bottom; - }; - _proto5.write = function write(chunk) { - return this.content.write(chunk); - } - - // Set tab order if document is tagged for accessibility. - ; - _proto5._setTabOrder = function _setTabOrder() { - if (!this.dictionary.Tabs && this.document.hasMarkInfoDictionary()) { - this.dictionary.data.Tabs = 'S'; - } - }; - _proto5.end = function end() { - this._setTabOrder(); - this.dictionary.end(); - this.resources.data.ColorSpace = this.resources.data.ColorSpace || {}; - for (var _i = 0, _Object$values = Object.values(this.document.spotColors); _i < _Object$values.length; _i++) { - var color = _Object$values[_i]; - this.resources.data.ColorSpace[color.id] = color; - } - this.resources.end(); - return this.content.end(); - }; - return _createClass(PDFPage, [{ - key: "fonts", - get: function get() { - var data = this.resources.data; - return data.Font != null ? data.Font : data.Font = {}; - } - }, { - key: "xobjects", - get: function get() { - var data = this.resources.data; - return data.XObject != null ? data.XObject : data.XObject = {}; - } - }, { - key: "ext_gstates", - get: function get() { - var data = this.resources.data; - return data.ExtGState != null ? data.ExtGState : data.ExtGState = {}; - } - }, { - key: "patterns", - get: function get() { - var data = this.resources.data; - return data.Pattern != null ? data.Pattern : data.Pattern = {}; - } - }, { - key: "colorSpaces", - get: function get() { - var data = this.resources.data; - return data.ColorSpace || (data.ColorSpace = {}); - } - }, { - key: "annotations", - get: function get() { - var data = this.dictionary.data; - return data.Annots != null ? data.Annots : data.Annots = []; - } - }, { - key: "structParentTreeKey", - get: function get() { - var data = this.dictionary.data; - return data.StructParents != null ? data.StructParents : data.StructParents = this.document.createStructParentTreeNextKey(); - } - }]); -}(); -/* -PDFNameTree - represents a name tree object -*/ -var PDFNameTree = /*#__PURE__*/function (_PDFTree) { - function PDFNameTree() { - return _PDFTree.apply(this, arguments) || this; - } - _inheritsLoose(PDFNameTree, _PDFTree); - var _proto6 = PDFNameTree.prototype; - _proto6._compareKeys = function _compareKeys(a, b) { - return a.localeCompare(b); - }; - _proto6._keysName = function _keysName() { - return "Names"; - }; - _proto6._dataForKey = function _dataForKey(k) { - return new String(k); - }; - return PDFNameTree; -}(PDFTree); -/** - * Check if value is in a range group. - * @param {number} value - * @param {number[]} rangeGroup - * @returns {boolean} - */ -function inRange(value, rangeGroup) { - if (value < rangeGroup[0]) return false; - var startRange = 0; - var endRange = rangeGroup.length / 2; - while (startRange <= endRange) { - var middleRange = Math.floor((startRange + endRange) / 2); - - // actual array index - var arrayIndex = middleRange * 2; - - // Check if value is in range pointed by actual index - if (value >= rangeGroup[arrayIndex] && value <= rangeGroup[arrayIndex + 1]) { - return true; - } - if (value > rangeGroup[arrayIndex + 1]) { - // Search Right Side Of Array - startRange = middleRange + 1; - } else { - // Search Left Side Of Array - endRange = middleRange - 1; - } - } - return false; -} - -// prettier-ignore-start -/** - * A.1 Unassigned code points in Unicode 3.2 - * @link https://tools.ietf.org/html/rfc3454#appendix-A.1 - */ -var unassigned_code_points = [0x0221, 0x0221, 0x0234, 0x024f, 0x02ae, 0x02af, 0x02ef, 0x02ff, 0x0350, 0x035f, 0x0370, 0x0373, 0x0376, 0x0379, 0x037b, 0x037d, 0x037f, 0x0383, 0x038b, 0x038b, 0x038d, 0x038d, 0x03a2, 0x03a2, 0x03cf, 0x03cf, 0x03f7, 0x03ff, 0x0487, 0x0487, 0x04cf, 0x04cf, 0x04f6, 0x04f7, 0x04fa, 0x04ff, 0x0510, 0x0530, 0x0557, 0x0558, 0x0560, 0x0560, 0x0588, 0x0588, 0x058b, 0x0590, 0x05a2, 0x05a2, 0x05ba, 0x05ba, 0x05c5, 0x05cf, 0x05eb, 0x05ef, 0x05f5, 0x060b, 0x060d, 0x061a, 0x061c, 0x061e, 0x0620, 0x0620, 0x063b, 0x063f, 0x0656, 0x065f, 0x06ee, 0x06ef, 0x06ff, 0x06ff, 0x070e, 0x070e, 0x072d, 0x072f, 0x074b, 0x077f, 0x07b2, 0x0900, 0x0904, 0x0904, 0x093a, 0x093b, 0x094e, 0x094f, 0x0955, 0x0957, 0x0971, 0x0980, 0x0984, 0x0984, 0x098d, 0x098e, 0x0991, 0x0992, 0x09a9, 0x09a9, 0x09b1, 0x09b1, 0x09b3, 0x09b5, 0x09ba, 0x09bb, 0x09bd, 0x09bd, 0x09c5, 0x09c6, 0x09c9, 0x09ca, 0x09ce, 0x09d6, 0x09d8, 0x09db, 0x09de, 0x09de, 0x09e4, 0x09e5, 0x09fb, 0x0a01, 0x0a03, 0x0a04, 0x0a0b, 0x0a0e, 0x0a11, 0x0a12, 0x0a29, 0x0a29, 0x0a31, 0x0a31, 0x0a34, 0x0a34, 0x0a37, 0x0a37, 0x0a3a, 0x0a3b, 0x0a3d, 0x0a3d, 0x0a43, 0x0a46, 0x0a49, 0x0a4a, 0x0a4e, 0x0a58, 0x0a5d, 0x0a5d, 0x0a5f, 0x0a65, 0x0a75, 0x0a80, 0x0a84, 0x0a84, 0x0a8c, 0x0a8c, 0x0a8e, 0x0a8e, 0x0a92, 0x0a92, 0x0aa9, 0x0aa9, 0x0ab1, 0x0ab1, 0x0ab4, 0x0ab4, 0x0aba, 0x0abb, 0x0ac6, 0x0ac6, 0x0aca, 0x0aca, 0x0ace, 0x0acf, 0x0ad1, 0x0adf, 0x0ae1, 0x0ae5, 0x0af0, 0x0b00, 0x0b04, 0x0b04, 0x0b0d, 0x0b0e, 0x0b11, 0x0b12, 0x0b29, 0x0b29, 0x0b31, 0x0b31, 0x0b34, 0x0b35, 0x0b3a, 0x0b3b, 0x0b44, 0x0b46, 0x0b49, 0x0b4a, 0x0b4e, 0x0b55, 0x0b58, 0x0b5b, 0x0b5e, 0x0b5e, 0x0b62, 0x0b65, 0x0b71, 0x0b81, 0x0b84, 0x0b84, 0x0b8b, 0x0b8d, 0x0b91, 0x0b91, 0x0b96, 0x0b98, 0x0b9b, 0x0b9b, 0x0b9d, 0x0b9d, 0x0ba0, 0x0ba2, 0x0ba5, 0x0ba7, 0x0bab, 0x0bad, 0x0bb6, 0x0bb6, 0x0bba, 0x0bbd, 0x0bc3, 0x0bc5, 0x0bc9, 0x0bc9, 0x0bce, 0x0bd6, 0x0bd8, 0x0be6, 0x0bf3, 0x0c00, 0x0c04, 0x0c04, 0x0c0d, 0x0c0d, 0x0c11, 0x0c11, 0x0c29, 0x0c29, 0x0c34, 0x0c34, 0x0c3a, 0x0c3d, 0x0c45, 0x0c45, 0x0c49, 0x0c49, 0x0c4e, 0x0c54, 0x0c57, 0x0c5f, 0x0c62, 0x0c65, 0x0c70, 0x0c81, 0x0c84, 0x0c84, 0x0c8d, 0x0c8d, 0x0c91, 0x0c91, 0x0ca9, 0x0ca9, 0x0cb4, 0x0cb4, 0x0cba, 0x0cbd, 0x0cc5, 0x0cc5, 0x0cc9, 0x0cc9, 0x0cce, 0x0cd4, 0x0cd7, 0x0cdd, 0x0cdf, 0x0cdf, 0x0ce2, 0x0ce5, 0x0cf0, 0x0d01, 0x0d04, 0x0d04, 0x0d0d, 0x0d0d, 0x0d11, 0x0d11, 0x0d29, 0x0d29, 0x0d3a, 0x0d3d, 0x0d44, 0x0d45, 0x0d49, 0x0d49, 0x0d4e, 0x0d56, 0x0d58, 0x0d5f, 0x0d62, 0x0d65, 0x0d70, 0x0d81, 0x0d84, 0x0d84, 0x0d97, 0x0d99, 0x0db2, 0x0db2, 0x0dbc, 0x0dbc, 0x0dbe, 0x0dbf, 0x0dc7, 0x0dc9, 0x0dcb, 0x0dce, 0x0dd5, 0x0dd5, 0x0dd7, 0x0dd7, 0x0de0, 0x0df1, 0x0df5, 0x0e00, 0x0e3b, 0x0e3e, 0x0e5c, 0x0e80, 0x0e83, 0x0e83, 0x0e85, 0x0e86, 0x0e89, 0x0e89, 0x0e8b, 0x0e8c, 0x0e8e, 0x0e93, 0x0e98, 0x0e98, 0x0ea0, 0x0ea0, 0x0ea4, 0x0ea4, 0x0ea6, 0x0ea6, 0x0ea8, 0x0ea9, 0x0eac, 0x0eac, 0x0eba, 0x0eba, 0x0ebe, 0x0ebf, 0x0ec5, 0x0ec5, 0x0ec7, 0x0ec7, 0x0ece, 0x0ecf, 0x0eda, 0x0edb, 0x0ede, 0x0eff, 0x0f48, 0x0f48, 0x0f6b, 0x0f70, 0x0f8c, 0x0f8f, 0x0f98, 0x0f98, 0x0fbd, 0x0fbd, 0x0fcd, 0x0fce, 0x0fd0, 0x0fff, 0x1022, 0x1022, 0x1028, 0x1028, 0x102b, 0x102b, 0x1033, 0x1035, 0x103a, 0x103f, 0x105a, 0x109f, 0x10c6, 0x10cf, 0x10f9, 0x10fa, 0x10fc, 0x10ff, 0x115a, 0x115e, 0x11a3, 0x11a7, 0x11fa, 0x11ff, 0x1207, 0x1207, 0x1247, 0x1247, 0x1249, 0x1249, 0x124e, 0x124f, 0x1257, 0x1257, 0x1259, 0x1259, 0x125e, 0x125f, 0x1287, 0x1287, 0x1289, 0x1289, 0x128e, 0x128f, 0x12af, 0x12af, 0x12b1, 0x12b1, 0x12b6, 0x12b7, 0x12bf, 0x12bf, 0x12c1, 0x12c1, 0x12c6, 0x12c7, 0x12cf, 0x12cf, 0x12d7, 0x12d7, 0x12ef, 0x12ef, 0x130f, 0x130f, 0x1311, 0x1311, 0x1316, 0x1317, 0x131f, 0x131f, 0x1347, 0x1347, 0x135b, 0x1360, 0x137d, 0x139f, 0x13f5, 0x1400, 0x1677, 0x167f, 0x169d, 0x169f, 0x16f1, 0x16ff, 0x170d, 0x170d, 0x1715, 0x171f, 0x1737, 0x173f, 0x1754, 0x175f, 0x176d, 0x176d, 0x1771, 0x1771, 0x1774, 0x177f, 0x17dd, 0x17df, 0x17ea, 0x17ff, 0x180f, 0x180f, 0x181a, 0x181f, 0x1878, 0x187f, 0x18aa, 0x1dff, 0x1e9c, 0x1e9f, 0x1efa, 0x1eff, 0x1f16, 0x1f17, 0x1f1e, 0x1f1f, 0x1f46, 0x1f47, 0x1f4e, 0x1f4f, 0x1f58, 0x1f58, 0x1f5a, 0x1f5a, 0x1f5c, 0x1f5c, 0x1f5e, 0x1f5e, 0x1f7e, 0x1f7f, 0x1fb5, 0x1fb5, 0x1fc5, 0x1fc5, 0x1fd4, 0x1fd5, 0x1fdc, 0x1fdc, 0x1ff0, 0x1ff1, 0x1ff5, 0x1ff5, 0x1fff, 0x1fff, 0x2053, 0x2056, 0x2058, 0x205e, 0x2064, 0x2069, 0x2072, 0x2073, 0x208f, 0x209f, 0x20b2, 0x20cf, 0x20eb, 0x20ff, 0x213b, 0x213c, 0x214c, 0x2152, 0x2184, 0x218f, 0x23cf, 0x23ff, 0x2427, 0x243f, 0x244b, 0x245f, 0x24ff, 0x24ff, 0x2614, 0x2615, 0x2618, 0x2618, 0x267e, 0x267f, 0x268a, 0x2700, 0x2705, 0x2705, 0x270a, 0x270b, 0x2728, 0x2728, 0x274c, 0x274c, 0x274e, 0x274e, 0x2753, 0x2755, 0x2757, 0x2757, 0x275f, 0x2760, 0x2795, 0x2797, 0x27b0, 0x27b0, 0x27bf, 0x27cf, 0x27ec, 0x27ef, 0x2b00, 0x2e7f, 0x2e9a, 0x2e9a, 0x2ef4, 0x2eff, 0x2fd6, 0x2fef, 0x2ffc, 0x2fff, 0x3040, 0x3040, 0x3097, 0x3098, 0x3100, 0x3104, 0x312d, 0x3130, 0x318f, 0x318f, 0x31b8, 0x31ef, 0x321d, 0x321f, 0x3244, 0x3250, 0x327c, 0x327e, 0x32cc, 0x32cf, 0x32ff, 0x32ff, 0x3377, 0x337a, 0x33de, 0x33df, 0x33ff, 0x33ff, 0x4db6, 0x4dff, 0x9fa6, 0x9fff, 0xa48d, 0xa48f, 0xa4c7, 0xabff, 0xd7a4, 0xd7ff, 0xfa2e, 0xfa2f, 0xfa6b, 0xfaff, 0xfb07, 0xfb12, 0xfb18, 0xfb1c, 0xfb37, 0xfb37, 0xfb3d, 0xfb3d, 0xfb3f, 0xfb3f, 0xfb42, 0xfb42, 0xfb45, 0xfb45, 0xfbb2, 0xfbd2, 0xfd40, 0xfd4f, 0xfd90, 0xfd91, 0xfdc8, 0xfdcf, 0xfdfd, 0xfdff, 0xfe10, 0xfe1f, 0xfe24, 0xfe2f, 0xfe47, 0xfe48, 0xfe53, 0xfe53, 0xfe67, 0xfe67, 0xfe6c, 0xfe6f, 0xfe75, 0xfe75, 0xfefd, 0xfefe, 0xff00, 0xff00, 0xffbf, 0xffc1, 0xffc8, 0xffc9, 0xffd0, 0xffd1, 0xffd8, 0xffd9, 0xffdd, 0xffdf, 0xffe7, 0xffe7, 0xffef, 0xfff8, 0x10000, 0x102ff, 0x1031f, 0x1031f, 0x10324, 0x1032f, 0x1034b, 0x103ff, 0x10426, 0x10427, 0x1044e, 0x1cfff, 0x1d0f6, 0x1d0ff, 0x1d127, 0x1d129, 0x1d1de, 0x1d3ff, 0x1d455, 0x1d455, 0x1d49d, 0x1d49d, 0x1d4a0, 0x1d4a1, 0x1d4a3, 0x1d4a4, 0x1d4a7, 0x1d4a8, 0x1d4ad, 0x1d4ad, 0x1d4ba, 0x1d4ba, 0x1d4bc, 0x1d4bc, 0x1d4c1, 0x1d4c1, 0x1d4c4, 0x1d4c4, 0x1d506, 0x1d506, 0x1d50b, 0x1d50c, 0x1d515, 0x1d515, 0x1d51d, 0x1d51d, 0x1d53a, 0x1d53a, 0x1d53f, 0x1d53f, 0x1d545, 0x1d545, 0x1d547, 0x1d549, 0x1d551, 0x1d551, 0x1d6a4, 0x1d6a7, 0x1d7ca, 0x1d7cd, 0x1d800, 0x1fffd, 0x2a6d7, 0x2f7ff, 0x2fa1e, 0x2fffd, 0x30000, 0x3fffd, 0x40000, 0x4fffd, 0x50000, 0x5fffd, 0x60000, 0x6fffd, 0x70000, 0x7fffd, 0x80000, 0x8fffd, 0x90000, 0x9fffd, 0xa0000, 0xafffd, 0xb0000, 0xbfffd, 0xc0000, 0xcfffd, 0xd0000, 0xdfffd, 0xe0000, 0xe0000, 0xe0002, 0xe001f, 0xe0080, 0xefffd]; -// prettier-ignore-end - -var isUnassignedCodePoint = function isUnassignedCodePoint(character) { - return inRange(character, unassigned_code_points); -}; - -// prettier-ignore-start -/** - * B.1 Commonly mapped to nothing - * @link https://tools.ietf.org/html/rfc3454#appendix-B.1 - */ -var commonly_mapped_to_nothing = [0x00ad, 0x00ad, 0x034f, 0x034f, 0x1806, 0x1806, 0x180b, 0x180b, 0x180c, 0x180c, 0x180d, 0x180d, 0x200b, 0x200b, 0x200c, 0x200c, 0x200d, 0x200d, 0x2060, 0x2060, 0xfe00, 0xfe00, 0xfe01, 0xfe01, 0xfe02, 0xfe02, 0xfe03, 0xfe03, 0xfe04, 0xfe04, 0xfe05, 0xfe05, 0xfe06, 0xfe06, 0xfe07, 0xfe07, 0xfe08, 0xfe08, 0xfe09, 0xfe09, 0xfe0a, 0xfe0a, 0xfe0b, 0xfe0b, 0xfe0c, 0xfe0c, 0xfe0d, 0xfe0d, 0xfe0e, 0xfe0e, 0xfe0f, 0xfe0f, 0xfeff, 0xfeff]; -// prettier-ignore-end - -var isCommonlyMappedToNothing = function isCommonlyMappedToNothing(character) { - return inRange(character, commonly_mapped_to_nothing); -}; - -// prettier-ignore-start -/** - * C.1.2 Non-ASCII space characters - * @link https://tools.ietf.org/html/rfc3454#appendix-C.1.2 - */ -var non_ASCII_space_characters = [0x00a0, 0x00a0 /* NO-BREAK SPACE */, 0x1680, 0x1680 /* OGHAM SPACE MARK */, 0x2000, 0x2000 /* EN QUAD */, 0x2001, 0x2001 /* EM QUAD */, 0x2002, 0x2002 /* EN SPACE */, 0x2003, 0x2003 /* EM SPACE */, 0x2004, 0x2004 /* THREE-PER-EM SPACE */, 0x2005, 0x2005 /* FOUR-PER-EM SPACE */, 0x2006, 0x2006 /* SIX-PER-EM SPACE */, 0x2007, 0x2007 /* FIGURE SPACE */, 0x2008, 0x2008 /* PUNCTUATION SPACE */, 0x2009, 0x2009 /* THIN SPACE */, 0x200a, 0x200a /* HAIR SPACE */, 0x200b, 0x200b /* ZERO WIDTH SPACE */, 0x202f, 0x202f /* NARROW NO-BREAK SPACE */, 0x205f, 0x205f /* MEDIUM MATHEMATICAL SPACE */, 0x3000, 0x3000 /* IDEOGRAPHIC SPACE */]; -// prettier-ignore-end - -var isNonASCIISpaceCharacter = function isNonASCIISpaceCharacter(character) { - return inRange(character, non_ASCII_space_characters); -}; - -// prettier-ignore-start -var non_ASCII_controls_characters = [ -/** - * C.2.2 Non-ASCII control characters - * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.2 - */ -0x0080, 0x009f /* [CONTROL CHARACTERS] */, 0x06dd, 0x06dd /* ARABIC END OF AYAH */, 0x070f, 0x070f /* SYRIAC ABBREVIATION MARK */, 0x180e, 0x180e /* MONGOLIAN VOWEL SEPARATOR */, 0x200c, 0x200c /* ZERO WIDTH NON-JOINER */, 0x200d, 0x200d /* ZERO WIDTH JOINER */, 0x2028, 0x2028 /* LINE SEPARATOR */, 0x2029, 0x2029 /* PARAGRAPH SEPARATOR */, 0x2060, 0x2060 /* WORD JOINER */, 0x2061, 0x2061 /* FUNCTION APPLICATION */, 0x2062, 0x2062 /* INVISIBLE TIMES */, 0x2063, 0x2063 /* INVISIBLE SEPARATOR */, 0x206a, 0x206f /* [CONTROL CHARACTERS] */, 0xfeff, 0xfeff /* ZERO WIDTH NO-BREAK SPACE */, 0xfff9, 0xfffc /* [CONTROL CHARACTERS] */, 0x1d173, 0x1d17a /* [MUSICAL CONTROL CHARACTERS] */]; -var non_character_codepoints = [ -/** - * C.4 Non-character code points - * @link https://tools.ietf.org/html/rfc3454#appendix-C.4 - */ -0xfdd0, 0xfdef /* [NONCHARACTER CODE POINTS] */, 0xfffe, 0xffff /* [NONCHARACTER CODE POINTS] */, 0x1fffe, 0x1ffff /* [NONCHARACTER CODE POINTS] */, 0x2fffe, 0x2ffff /* [NONCHARACTER CODE POINTS] */, 0x3fffe, 0x3ffff /* [NONCHARACTER CODE POINTS] */, 0x4fffe, 0x4ffff /* [NONCHARACTER CODE POINTS] */, 0x5fffe, 0x5ffff /* [NONCHARACTER CODE POINTS] */, 0x6fffe, 0x6ffff /* [NONCHARACTER CODE POINTS] */, 0x7fffe, 0x7ffff /* [NONCHARACTER CODE POINTS] */, 0x8fffe, 0x8ffff /* [NONCHARACTER CODE POINTS] */, 0x9fffe, 0x9ffff /* [NONCHARACTER CODE POINTS] */, 0xafffe, 0xaffff /* [NONCHARACTER CODE POINTS] */, 0xbfffe, 0xbffff /* [NONCHARACTER CODE POINTS] */, 0xcfffe, 0xcffff /* [NONCHARACTER CODE POINTS] */, 0xdfffe, 0xdffff /* [NONCHARACTER CODE POINTS] */, 0xefffe, 0xeffff /* [NONCHARACTER CODE POINTS] */, 0x10fffe, 0x10ffff /* [NONCHARACTER CODE POINTS] */]; - -/** - * 2.3. Prohibited Output - */ -var prohibited_characters = [ -/** - * C.2.1 ASCII control characters - * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.1 - */ -0, 0x001f /* [CONTROL CHARACTERS] */, 0x007f, 0x007f /* DELETE */, -/** - * C.8 Change display properties or are deprecated - * @link https://tools.ietf.org/html/rfc3454#appendix-C.8 - */ -0x0340, 0x0340 /* COMBINING GRAVE TONE MARK */, 0x0341, 0x0341 /* COMBINING ACUTE TONE MARK */, 0x200e, 0x200e /* LEFT-TO-RIGHT MARK */, 0x200f, 0x200f /* RIGHT-TO-LEFT MARK */, 0x202a, 0x202a /* LEFT-TO-RIGHT EMBEDDING */, 0x202b, 0x202b /* RIGHT-TO-LEFT EMBEDDING */, 0x202c, 0x202c /* POP DIRECTIONAL FORMATTING */, 0x202d, 0x202d /* LEFT-TO-RIGHT OVERRIDE */, 0x202e, 0x202e /* RIGHT-TO-LEFT OVERRIDE */, 0x206a, 0x206a /* INHIBIT SYMMETRIC SWAPPING */, 0x206b, 0x206b /* ACTIVATE SYMMETRIC SWAPPING */, 0x206c, 0x206c /* INHIBIT ARABIC FORM SHAPING */, 0x206d, 0x206d /* ACTIVATE ARABIC FORM SHAPING */, 0x206e, 0x206e /* NATIONAL DIGIT SHAPES */, 0x206f, 0x206f /* NOMINAL DIGIT SHAPES */, -/** - * C.7 Inappropriate for canonical representation - * @link https://tools.ietf.org/html/rfc3454#appendix-C.7 - */ -0x2ff0, 0x2ffb /* [IDEOGRAPHIC DESCRIPTION CHARACTERS] */, -/** - * C.5 Surrogate codes - * @link https://tools.ietf.org/html/rfc3454#appendix-C.5 - */ -0xd800, 0xdfff, -/** - * C.3 Private use - * @link https://tools.ietf.org/html/rfc3454#appendix-C.3 - */ -0xe000, 0xf8ff /* [PRIVATE USE, PLANE 0] */, -/** - * C.6 Inappropriate for plain text - * @link https://tools.ietf.org/html/rfc3454#appendix-C.6 - */ -0xfff9, 0xfff9 /* INTERLINEAR ANNOTATION ANCHOR */, 0xfffa, 0xfffa /* INTERLINEAR ANNOTATION SEPARATOR */, 0xfffb, 0xfffb /* INTERLINEAR ANNOTATION TERMINATOR */, 0xfffc, 0xfffc /* OBJECT REPLACEMENT CHARACTER */, 0xfffd, 0xfffd /* REPLACEMENT CHARACTER */, -/** - * C.9 Tagging characters - * @link https://tools.ietf.org/html/rfc3454#appendix-C.9 - */ -0xe0001, 0xe0001 /* LANGUAGE TAG */, 0xe0020, 0xe007f /* [TAGGING CHARACTERS] */, -/** - * C.3 Private use - * @link https://tools.ietf.org/html/rfc3454#appendix-C.3 - */ - -0xf0000, 0xffffd /* [PRIVATE USE, PLANE 15] */, 0x100000, 0x10fffd /* [PRIVATE USE, PLANE 16] */]; -// prettier-ignore-end - -var isProhibitedCharacter = function isProhibitedCharacter(character) { - return inRange(character, non_ASCII_space_characters) || inRange(character, prohibited_characters) || inRange(character, non_ASCII_controls_characters) || inRange(character, non_character_codepoints); -}; - -// prettier-ignore-start -/** - * D.1 Characters with bidirectional property "R" or "AL" - * @link https://tools.ietf.org/html/rfc3454#appendix-D.1 - */ -var bidirectional_r_al = [0x05be, 0x05be, 0x05c0, 0x05c0, 0x05c3, 0x05c3, 0x05d0, 0x05ea, 0x05f0, 0x05f4, 0x061b, 0x061b, 0x061f, 0x061f, 0x0621, 0x063a, 0x0640, 0x064a, 0x066d, 0x066f, 0x0671, 0x06d5, 0x06dd, 0x06dd, 0x06e5, 0x06e6, 0x06fa, 0x06fe, 0x0700, 0x070d, 0x0710, 0x0710, 0x0712, 0x072c, 0x0780, 0x07a5, 0x07b1, 0x07b1, 0x200f, 0x200f, 0xfb1d, 0xfb1d, 0xfb1f, 0xfb28, 0xfb2a, 0xfb36, 0xfb38, 0xfb3c, 0xfb3e, 0xfb3e, 0xfb40, 0xfb41, 0xfb43, 0xfb44, 0xfb46, 0xfbb1, 0xfbd3, 0xfd3d, 0xfd50, 0xfd8f, 0xfd92, 0xfdc7, 0xfdf0, 0xfdfc, 0xfe70, 0xfe74, 0xfe76, 0xfefc]; -// prettier-ignore-end - -var isBidirectionalRAL = function isBidirectionalRAL(character) { - return inRange(character, bidirectional_r_al); -}; - -// prettier-ignore-start -/** - * D.2 Characters with bidirectional property "L" - * @link https://tools.ietf.org/html/rfc3454#appendix-D.2 - */ -var bidirectional_l = [0x0041, 0x005a, 0x0061, 0x007a, 0x00aa, 0x00aa, 0x00b5, 0x00b5, 0x00ba, 0x00ba, 0x00c0, 0x00d6, 0x00d8, 0x00f6, 0x00f8, 0x0220, 0x0222, 0x0233, 0x0250, 0x02ad, 0x02b0, 0x02b8, 0x02bb, 0x02c1, 0x02d0, 0x02d1, 0x02e0, 0x02e4, 0x02ee, 0x02ee, 0x037a, 0x037a, 0x0386, 0x0386, 0x0388, 0x038a, 0x038c, 0x038c, 0x038e, 0x03a1, 0x03a3, 0x03ce, 0x03d0, 0x03f5, 0x0400, 0x0482, 0x048a, 0x04ce, 0x04d0, 0x04f5, 0x04f8, 0x04f9, 0x0500, 0x050f, 0x0531, 0x0556, 0x0559, 0x055f, 0x0561, 0x0587, 0x0589, 0x0589, 0x0903, 0x0903, 0x0905, 0x0939, 0x093d, 0x0940, 0x0949, 0x094c, 0x0950, 0x0950, 0x0958, 0x0961, 0x0964, 0x0970, 0x0982, 0x0983, 0x0985, 0x098c, 0x098f, 0x0990, 0x0993, 0x09a8, 0x09aa, 0x09b0, 0x09b2, 0x09b2, 0x09b6, 0x09b9, 0x09be, 0x09c0, 0x09c7, 0x09c8, 0x09cb, 0x09cc, 0x09d7, 0x09d7, 0x09dc, 0x09dd, 0x09df, 0x09e1, 0x09e6, 0x09f1, 0x09f4, 0x09fa, 0x0a05, 0x0a0a, 0x0a0f, 0x0a10, 0x0a13, 0x0a28, 0x0a2a, 0x0a30, 0x0a32, 0x0a33, 0x0a35, 0x0a36, 0x0a38, 0x0a39, 0x0a3e, 0x0a40, 0x0a59, 0x0a5c, 0x0a5e, 0x0a5e, 0x0a66, 0x0a6f, 0x0a72, 0x0a74, 0x0a83, 0x0a83, 0x0a85, 0x0a8b, 0x0a8d, 0x0a8d, 0x0a8f, 0x0a91, 0x0a93, 0x0aa8, 0x0aaa, 0x0ab0, 0x0ab2, 0x0ab3, 0x0ab5, 0x0ab9, 0x0abd, 0x0ac0, 0x0ac9, 0x0ac9, 0x0acb, 0x0acc, 0x0ad0, 0x0ad0, 0x0ae0, 0x0ae0, 0x0ae6, 0x0aef, 0x0b02, 0x0b03, 0x0b05, 0x0b0c, 0x0b0f, 0x0b10, 0x0b13, 0x0b28, 0x0b2a, 0x0b30, 0x0b32, 0x0b33, 0x0b36, 0x0b39, 0x0b3d, 0x0b3e, 0x0b40, 0x0b40, 0x0b47, 0x0b48, 0x0b4b, 0x0b4c, 0x0b57, 0x0b57, 0x0b5c, 0x0b5d, 0x0b5f, 0x0b61, 0x0b66, 0x0b70, 0x0b83, 0x0b83, 0x0b85, 0x0b8a, 0x0b8e, 0x0b90, 0x0b92, 0x0b95, 0x0b99, 0x0b9a, 0x0b9c, 0x0b9c, 0x0b9e, 0x0b9f, 0x0ba3, 0x0ba4, 0x0ba8, 0x0baa, 0x0bae, 0x0bb5, 0x0bb7, 0x0bb9, 0x0bbe, 0x0bbf, 0x0bc1, 0x0bc2, 0x0bc6, 0x0bc8, 0x0bca, 0x0bcc, 0x0bd7, 0x0bd7, 0x0be7, 0x0bf2, 0x0c01, 0x0c03, 0x0c05, 0x0c0c, 0x0c0e, 0x0c10, 0x0c12, 0x0c28, 0x0c2a, 0x0c33, 0x0c35, 0x0c39, 0x0c41, 0x0c44, 0x0c60, 0x0c61, 0x0c66, 0x0c6f, 0x0c82, 0x0c83, 0x0c85, 0x0c8c, 0x0c8e, 0x0c90, 0x0c92, 0x0ca8, 0x0caa, 0x0cb3, 0x0cb5, 0x0cb9, 0x0cbe, 0x0cbe, 0x0cc0, 0x0cc4, 0x0cc7, 0x0cc8, 0x0cca, 0x0ccb, 0x0cd5, 0x0cd6, 0x0cde, 0x0cde, 0x0ce0, 0x0ce1, 0x0ce6, 0x0cef, 0x0d02, 0x0d03, 0x0d05, 0x0d0c, 0x0d0e, 0x0d10, 0x0d12, 0x0d28, 0x0d2a, 0x0d39, 0x0d3e, 0x0d40, 0x0d46, 0x0d48, 0x0d4a, 0x0d4c, 0x0d57, 0x0d57, 0x0d60, 0x0d61, 0x0d66, 0x0d6f, 0x0d82, 0x0d83, 0x0d85, 0x0d96, 0x0d9a, 0x0db1, 0x0db3, 0x0dbb, 0x0dbd, 0x0dbd, 0x0dc0, 0x0dc6, 0x0dcf, 0x0dd1, 0x0dd8, 0x0ddf, 0x0df2, 0x0df4, 0x0e01, 0x0e30, 0x0e32, 0x0e33, 0x0e40, 0x0e46, 0x0e4f, 0x0e5b, 0x0e81, 0x0e82, 0x0e84, 0x0e84, 0x0e87, 0x0e88, 0x0e8a, 0x0e8a, 0x0e8d, 0x0e8d, 0x0e94, 0x0e97, 0x0e99, 0x0e9f, 0x0ea1, 0x0ea3, 0x0ea5, 0x0ea5, 0x0ea7, 0x0ea7, 0x0eaa, 0x0eab, 0x0ead, 0x0eb0, 0x0eb2, 0x0eb3, 0x0ebd, 0x0ebd, 0x0ec0, 0x0ec4, 0x0ec6, 0x0ec6, 0x0ed0, 0x0ed9, 0x0edc, 0x0edd, 0x0f00, 0x0f17, 0x0f1a, 0x0f34, 0x0f36, 0x0f36, 0x0f38, 0x0f38, 0x0f3e, 0x0f47, 0x0f49, 0x0f6a, 0x0f7f, 0x0f7f, 0x0f85, 0x0f85, 0x0f88, 0x0f8b, 0x0fbe, 0x0fc5, 0x0fc7, 0x0fcc, 0x0fcf, 0x0fcf, 0x1000, 0x1021, 0x1023, 0x1027, 0x1029, 0x102a, 0x102c, 0x102c, 0x1031, 0x1031, 0x1038, 0x1038, 0x1040, 0x1057, 0x10a0, 0x10c5, 0x10d0, 0x10f8, 0x10fb, 0x10fb, 0x1100, 0x1159, 0x115f, 0x11a2, 0x11a8, 0x11f9, 0x1200, 0x1206, 0x1208, 0x1246, 0x1248, 0x1248, 0x124a, 0x124d, 0x1250, 0x1256, 0x1258, 0x1258, 0x125a, 0x125d, 0x1260, 0x1286, 0x1288, 0x1288, 0x128a, 0x128d, 0x1290, 0x12ae, 0x12b0, 0x12b0, 0x12b2, 0x12b5, 0x12b8, 0x12be, 0x12c0, 0x12c0, 0x12c2, 0x12c5, 0x12c8, 0x12ce, 0x12d0, 0x12d6, 0x12d8, 0x12ee, 0x12f0, 0x130e, 0x1310, 0x1310, 0x1312, 0x1315, 0x1318, 0x131e, 0x1320, 0x1346, 0x1348, 0x135a, 0x1361, 0x137c, 0x13a0, 0x13f4, 0x1401, 0x1676, 0x1681, 0x169a, 0x16a0, 0x16f0, 0x1700, 0x170c, 0x170e, 0x1711, 0x1720, 0x1731, 0x1735, 0x1736, 0x1740, 0x1751, 0x1760, 0x176c, 0x176e, 0x1770, 0x1780, 0x17b6, 0x17be, 0x17c5, 0x17c7, 0x17c8, 0x17d4, 0x17da, 0x17dc, 0x17dc, 0x17e0, 0x17e9, 0x1810, 0x1819, 0x1820, 0x1877, 0x1880, 0x18a8, 0x1e00, 0x1e9b, 0x1ea0, 0x1ef9, 0x1f00, 0x1f15, 0x1f18, 0x1f1d, 0x1f20, 0x1f45, 0x1f48, 0x1f4d, 0x1f50, 0x1f57, 0x1f59, 0x1f59, 0x1f5b, 0x1f5b, 0x1f5d, 0x1f5d, 0x1f5f, 0x1f7d, 0x1f80, 0x1fb4, 0x1fb6, 0x1fbc, 0x1fbe, 0x1fbe, 0x1fc2, 0x1fc4, 0x1fc6, 0x1fcc, 0x1fd0, 0x1fd3, 0x1fd6, 0x1fdb, 0x1fe0, 0x1fec, 0x1ff2, 0x1ff4, 0x1ff6, 0x1ffc, 0x200e, 0x200e, 0x2071, 0x2071, 0x207f, 0x207f, 0x2102, 0x2102, 0x2107, 0x2107, 0x210a, 0x2113, 0x2115, 0x2115, 0x2119, 0x211d, 0x2124, 0x2124, 0x2126, 0x2126, 0x2128, 0x2128, 0x212a, 0x212d, 0x212f, 0x2131, 0x2133, 0x2139, 0x213d, 0x213f, 0x2145, 0x2149, 0x2160, 0x2183, 0x2336, 0x237a, 0x2395, 0x2395, 0x249c, 0x24e9, 0x3005, 0x3007, 0x3021, 0x3029, 0x3031, 0x3035, 0x3038, 0x303c, 0x3041, 0x3096, 0x309d, 0x309f, 0x30a1, 0x30fa, 0x30fc, 0x30ff, 0x3105, 0x312c, 0x3131, 0x318e, 0x3190, 0x31b7, 0x31f0, 0x321c, 0x3220, 0x3243, 0x3260, 0x327b, 0x327f, 0x32b0, 0x32c0, 0x32cb, 0x32d0, 0x32fe, 0x3300, 0x3376, 0x337b, 0x33dd, 0x33e0, 0x33fe, 0x3400, 0x4db5, 0x4e00, 0x9fa5, 0xa000, 0xa48c, 0xac00, 0xd7a3, 0xd800, 0xfa2d, 0xfa30, 0xfa6a, 0xfb00, 0xfb06, 0xfb13, 0xfb17, 0xff21, 0xff3a, 0xff41, 0xff5a, 0xff66, 0xffbe, 0xffc2, 0xffc7, 0xffca, 0xffcf, 0xffd2, 0xffd7, 0xffda, 0xffdc, 0x10300, 0x1031e, 0x10320, 0x10323, 0x10330, 0x1034a, 0x10400, 0x10425, 0x10428, 0x1044d, 0x1d000, 0x1d0f5, 0x1d100, 0x1d126, 0x1d12a, 0x1d166, 0x1d16a, 0x1d172, 0x1d183, 0x1d184, 0x1d18c, 0x1d1a9, 0x1d1ae, 0x1d1dd, 0x1d400, 0x1d454, 0x1d456, 0x1d49c, 0x1d49e, 0x1d49f, 0x1d4a2, 0x1d4a2, 0x1d4a5, 0x1d4a6, 0x1d4a9, 0x1d4ac, 0x1d4ae, 0x1d4b9, 0x1d4bb, 0x1d4bb, 0x1d4bd, 0x1d4c0, 0x1d4c2, 0x1d4c3, 0x1d4c5, 0x1d505, 0x1d507, 0x1d50a, 0x1d50d, 0x1d514, 0x1d516, 0x1d51c, 0x1d51e, 0x1d539, 0x1d53b, 0x1d53e, 0x1d540, 0x1d544, 0x1d546, 0x1d546, 0x1d54a, 0x1d550, 0x1d552, 0x1d6a3, 0x1d6a8, 0x1d7c9, 0x20000, 0x2a6d6, 0x2f800, 0x2fa1d, 0xf0000, 0xffffd, 0x100000, 0x10fffd]; -// prettier-ignore-end - -var isBidirectionalL = function isBidirectionalL(character) { - return inRange(character, bidirectional_l); -}; - -// 2.1. Mapping - -/** - * non-ASCII space characters [StringPrep, C.1.2] that can be - * mapped to SPACE (U+0020) - */ -var mapping2space = isNonASCIISpaceCharacter; - -/** - * the "commonly mapped to nothing" characters [StringPrep, B.1] - * that can be mapped to nothing. - */ -var mapping2nothing = isCommonlyMappedToNothing; - -// utils -var getCodePoint = function getCodePoint(character) { - return character.codePointAt(0); -}; -var first = function first(x) { - return x[0]; -}; -var last = function last(x) { - return x[x.length - 1]; -}; - -/** - * Convert provided string into an array of Unicode Code Points. - * Based on https://stackoverflow.com/a/21409165/1556249 - * and https://www.npmjs.com/package/code-point-at. - * @param {string} input - * @returns {number[]} - */ -function toCodePoints(input) { - var codepoints = []; - var size = input.length; - for (var i = 0; i < size; i += 1) { - var before = input.charCodeAt(i); - if (before >= 0xd800 && before <= 0xdbff && size > i + 1) { - var next = input.charCodeAt(i + 1); - if (next >= 0xdc00 && next <= 0xdfff) { - codepoints.push((before - 0xd800) * 0x400 + next - 0xdc00 + 0x10000); - i += 1; - continue; - } - } - codepoints.push(before); - } - return codepoints; -} - -/** - * SASLprep. - * @param {string} input - * @param {Object} opts - * @param {boolean} opts.allowUnassigned - * @returns {string} - */ -function saslprep(input) { - var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - if (typeof input !== 'string') { - throw new TypeError('Expected string.'); - } - if (input.length === 0) { - return ''; - } - - // 1. Map - var mapped_input = toCodePoints(input) - // 1.1 mapping to space - .map(function (character) { - return mapping2space(character) ? 0x20 : character; - }) - // 1.2 mapping to nothing - .filter(function (character) { - return !mapping2nothing(character); - }); - - // 2. Normalize - var normalized_input = String.fromCodePoint.apply(null, mapped_input).normalize('NFKC'); - var normalized_map = toCodePoints(normalized_input); - - // 3. Prohibit - var hasProhibited = normalized_map.some(isProhibitedCharacter); - if (hasProhibited) { - throw new Error('Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3'); - } - - // Unassigned Code Points - if (opts.allowUnassigned !== true) { - var hasUnassigned = normalized_map.some(isUnassignedCodePoint); - if (hasUnassigned) { - throw new Error('Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5'); - } - } - - // 4. check bidi - - var hasBidiRAL = normalized_map.some(isBidirectionalRAL); - var hasBidiL = normalized_map.some(isBidirectionalL); - - // 4.1 If a string contains any RandALCat character, the string MUST NOT - // contain any LCat character. - if (hasBidiRAL && hasBidiL) { - throw new Error('String must not contain RandALCat and LCat at the same time,' + ' see https://tools.ietf.org/html/rfc3454#section-6'); - } - - /** - * 4.2 If a string contains any RandALCat character, a RandALCat - * character MUST be the first character of the string, and a - * RandALCat character MUST be the last character of the string. - */ - - var isFirstBidiRAL = isBidirectionalRAL(getCodePoint(first(normalized_input))); - var isLastBidiRAL = isBidirectionalRAL(getCodePoint(last(normalized_input))); - if (hasBidiRAL && !(isFirstBidiRAL && isLastBidiRAL)) { - throw new Error('Bidirectional RandALCat character must be the first and the last' + ' character of the string, see https://tools.ietf.org/html/rfc3454#section-6'); - } - return normalized_input; -} - -/* - PDFSecurity - represents PDF security settings - By Yang Liu - */ -var PDFSecurity = /*#__PURE__*/function () { - function PDFSecurity(document) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - if (!options.ownerPassword && !options.userPassword) { - throw new Error('None of owner password and user password is defined.'); - } - this.document = document; - this._setupEncryption(options); - } - PDFSecurity.generateFileID = function generateFileID() { - var info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var infoStr = info.CreationDate.getTime() + "\n"; - for (var key in info) { - // eslint-disable-next-line no-prototype-builtins - if (!info.hasOwnProperty(key)) { - continue; - } - infoStr += key + ": " + info[key].valueOf() + "\n"; - } - return wordArrayToBuffer(_cryptoJs.default.MD5(infoStr)); - }; - PDFSecurity.generateRandomWordArray = function generateRandomWordArray(bytes) { - return _cryptoJs.default.lib.WordArray.random(bytes); - }; - PDFSecurity.create = function create(document) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - if (!options.ownerPassword && !options.userPassword) { - return null; - } - return new PDFSecurity(document, options); - }; - var _proto7 = PDFSecurity.prototype; - _proto7._setupEncryption = function _setupEncryption(options) { - switch (options.pdfVersion) { - case '1.4': - case '1.5': - this.version = 2; - break; - case '1.6': - case '1.7': - this.version = 4; - break; - case '1.7ext3': - this.version = 5; - break; - default: - this.version = 1; - break; - } - var encDict = { - Filter: 'Standard' - }; - switch (this.version) { - case 1: - case 2: - case 4: - this._setupEncryptionV1V2V4(this.version, encDict, options); - break; - case 5: - this._setupEncryptionV5(encDict, options); - break; - } - this.dictionary = this.document.ref(encDict); - }; - _proto7._setupEncryptionV1V2V4 = function _setupEncryptionV1V2V4(v, encDict, options) { - var r, permissions; - switch (v) { - case 1: - r = 2; - this.keyBits = 40; - permissions = getPermissionsR2(options.permissions); - break; - case 2: - r = 3; - this.keyBits = 128; - permissions = getPermissionsR3(options.permissions); - break; - case 4: - r = 4; - this.keyBits = 128; - permissions = getPermissionsR3(options.permissions); - break; - } - var paddedUserPassword = processPasswordR2R3R4(options.userPassword); - var paddedOwnerPassword = options.ownerPassword ? processPasswordR2R3R4(options.ownerPassword) : paddedUserPassword; - var ownerPasswordEntry = getOwnerPasswordR2R3R4(r, this.keyBits, paddedUserPassword, paddedOwnerPassword); - this.encryptionKey = getEncryptionKeyR2R3R4(r, this.keyBits, this.document._id, paddedUserPassword, ownerPasswordEntry, permissions); - var userPasswordEntry; - if (r === 2) { - userPasswordEntry = getUserPasswordR2(this.encryptionKey); - } else { - userPasswordEntry = getUserPasswordR3R4(this.document._id, this.encryptionKey); - } - encDict.V = v; - if (v >= 2) { - encDict.Length = this.keyBits; - } - if (v === 4) { - encDict.CF = { - StdCF: { - AuthEvent: 'DocOpen', - CFM: 'AESV2', - Length: this.keyBits / 8 - } - }; - encDict.StmF = 'StdCF'; - encDict.StrF = 'StdCF'; - } - encDict.R = r; - encDict.O = wordArrayToBuffer(ownerPasswordEntry); - encDict.U = wordArrayToBuffer(userPasswordEntry); - encDict.P = permissions; - }; - _proto7._setupEncryptionV5 = function _setupEncryptionV5(encDict, options) { - this.keyBits = 256; - var permissions = getPermissionsR3(options.permissions); - var processedUserPassword = processPasswordR5(options.userPassword); - var processedOwnerPassword = options.ownerPassword ? processPasswordR5(options.ownerPassword) : processedUserPassword; - this.encryptionKey = getEncryptionKeyR5(PDFSecurity.generateRandomWordArray); - var userPasswordEntry = getUserPasswordR5(processedUserPassword, PDFSecurity.generateRandomWordArray); - var userKeySalt = _cryptoJs.default.lib.WordArray.create(userPasswordEntry.words.slice(10, 12), 8); - var userEncryptionKeyEntry = getUserEncryptionKeyR5(processedUserPassword, userKeySalt, this.encryptionKey); - var ownerPasswordEntry = getOwnerPasswordR5(processedOwnerPassword, userPasswordEntry, PDFSecurity.generateRandomWordArray); - var ownerKeySalt = _cryptoJs.default.lib.WordArray.create(ownerPasswordEntry.words.slice(10, 12), 8); - var ownerEncryptionKeyEntry = getOwnerEncryptionKeyR5(processedOwnerPassword, ownerKeySalt, userPasswordEntry, this.encryptionKey); - var permsEntry = getEncryptedPermissionsR5(permissions, this.encryptionKey, PDFSecurity.generateRandomWordArray); - encDict.V = 5; - encDict.Length = this.keyBits; - encDict.CF = { - StdCF: { - AuthEvent: 'DocOpen', - CFM: 'AESV3', - Length: this.keyBits / 8 - } - }; - encDict.StmF = 'StdCF'; - encDict.StrF = 'StdCF'; - encDict.R = 5; - encDict.O = wordArrayToBuffer(ownerPasswordEntry); - encDict.OE = wordArrayToBuffer(ownerEncryptionKeyEntry); - encDict.U = wordArrayToBuffer(userPasswordEntry); - encDict.UE = wordArrayToBuffer(userEncryptionKeyEntry); - encDict.P = permissions; - encDict.Perms = wordArrayToBuffer(permsEntry); - }; - _proto7.getEncryptFn = function getEncryptFn(obj, gen) { - var digest; - if (this.version < 5) { - digest = this.encryptionKey.clone().concat(_cryptoJs.default.lib.WordArray.create([(obj & 0xff) << 24 | (obj & 0xff00) << 8 | obj >> 8 & 0xff00 | gen & 0xff, (gen & 0xff00) << 16], 5)); - } - if (this.version === 1 || this.version === 2) { - var _key2 = _cryptoJs.default.MD5(digest); - _key2.sigBytes = Math.min(16, this.keyBits / 8 + 5); - return function (buffer) { - return wordArrayToBuffer(_cryptoJs.default.RC4.encrypt(_cryptoJs.default.lib.WordArray.create(buffer), _key2).ciphertext); - }; - } - var key; - if (this.version === 4) { - key = _cryptoJs.default.MD5(digest.concat(_cryptoJs.default.lib.WordArray.create([0x73416c54], 4))); - } else { - key = this.encryptionKey; - } - var iv = PDFSecurity.generateRandomWordArray(16); - var options = { - mode: _cryptoJs.default.mode.CBC, - padding: _cryptoJs.default.pad.Pkcs7, - iv: iv - }; - return function (buffer) { - return wordArrayToBuffer(iv.clone().concat(_cryptoJs.default.AES.encrypt(_cryptoJs.default.lib.WordArray.create(buffer), key, options).ciphertext)); - }; - }; - _proto7.end = function end() { - this.dictionary.end(); - }; - return PDFSecurity; -}(); -function getPermissionsR2() { - var permissionObject = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var permissions = 0xffffffc0 >> 0; - if (permissionObject.printing) { - permissions |= 4; - } - if (permissionObject.modifying) { - permissions |= 8; - } - if (permissionObject.copying) { - permissions |= 16; - } - if (permissionObject.annotating) { - permissions |= 32; - } - return permissions; -} -function getPermissionsR3() { - var permissionObject = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var permissions = 0xfffff0c0 >> 0; - if (permissionObject.printing === 'lowResolution') { - permissions |= 4; - } - if (permissionObject.printing === 'highResolution') { - permissions |= 2052; - } - if (permissionObject.modifying) { - permissions |= 8; - } - if (permissionObject.copying) { - permissions |= 16; - } - if (permissionObject.annotating) { - permissions |= 32; - } - if (permissionObject.fillingForms) { - permissions |= 256; - } - if (permissionObject.contentAccessibility) { - permissions |= 512; - } - if (permissionObject.documentAssembly) { - permissions |= 1024; - } - return permissions; -} -function getUserPasswordR2(encryptionKey) { - return _cryptoJs.default.RC4.encrypt(processPasswordR2R3R4(), encryptionKey).ciphertext; -} -function getUserPasswordR3R4(documentId, encryptionKey) { - var key = encryptionKey.clone(); - var cipher = _cryptoJs.default.MD5(processPasswordR2R3R4().concat(_cryptoJs.default.lib.WordArray.create(documentId))); - for (var i = 0; i < 20; i++) { - var xorRound = Math.ceil(key.sigBytes / 4); - for (var j = 0; j < xorRound; j++) { - key.words[j] = encryptionKey.words[j] ^ (i | i << 8 | i << 16 | i << 24); - } - cipher = _cryptoJs.default.RC4.encrypt(cipher, key).ciphertext; - } - return cipher.concat(_cryptoJs.default.lib.WordArray.create(null, 16)); -} -function getOwnerPasswordR2R3R4(r, keyBits, paddedUserPassword, paddedOwnerPassword) { - var digest = paddedOwnerPassword; - var round = r >= 3 ? 51 : 1; - for (var i = 0; i < round; i++) { - digest = _cryptoJs.default.MD5(digest); - } - var key = digest.clone(); - key.sigBytes = keyBits / 8; - var cipher = paddedUserPassword; - round = r >= 3 ? 20 : 1; - for (var _i2 = 0; _i2 < round; _i2++) { - var xorRound = Math.ceil(key.sigBytes / 4); - for (var j = 0; j < xorRound; j++) { - key.words[j] = digest.words[j] ^ (_i2 | _i2 << 8 | _i2 << 16 | _i2 << 24); - } - cipher = _cryptoJs.default.RC4.encrypt(cipher, key).ciphertext; - } - return cipher; -} -function getEncryptionKeyR2R3R4(r, keyBits, documentId, paddedUserPassword, ownerPasswordEntry, permissions) { - var key = paddedUserPassword.clone().concat(ownerPasswordEntry).concat(_cryptoJs.default.lib.WordArray.create([lsbFirstWord(permissions)], 4)).concat(_cryptoJs.default.lib.WordArray.create(documentId)); - var round = r >= 3 ? 51 : 1; - for (var i = 0; i < round; i++) { - key = _cryptoJs.default.MD5(key); - key.sigBytes = keyBits / 8; - } - return key; -} -function getUserPasswordR5(processedUserPassword, generateRandomWordArray) { - var validationSalt = generateRandomWordArray(8); - var keySalt = generateRandomWordArray(8); - return _cryptoJs.default.SHA256(processedUserPassword.clone().concat(validationSalt)).concat(validationSalt).concat(keySalt); -} -function getUserEncryptionKeyR5(processedUserPassword, userKeySalt, encryptionKey) { - var key = _cryptoJs.default.SHA256(processedUserPassword.clone().concat(userKeySalt)); - var options = { - mode: _cryptoJs.default.mode.CBC, - padding: _cryptoJs.default.pad.NoPadding, - iv: _cryptoJs.default.lib.WordArray.create(null, 16) - }; - return _cryptoJs.default.AES.encrypt(encryptionKey, key, options).ciphertext; -} -function getOwnerPasswordR5(processedOwnerPassword, userPasswordEntry, generateRandomWordArray) { - var validationSalt = generateRandomWordArray(8); - var keySalt = generateRandomWordArray(8); - return _cryptoJs.default.SHA256(processedOwnerPassword.clone().concat(validationSalt).concat(userPasswordEntry)).concat(validationSalt).concat(keySalt); -} -function getOwnerEncryptionKeyR5(processedOwnerPassword, ownerKeySalt, userPasswordEntry, encryptionKey) { - var key = _cryptoJs.default.SHA256(processedOwnerPassword.clone().concat(ownerKeySalt).concat(userPasswordEntry)); - var options = { - mode: _cryptoJs.default.mode.CBC, - padding: _cryptoJs.default.pad.NoPadding, - iv: _cryptoJs.default.lib.WordArray.create(null, 16) - }; - return _cryptoJs.default.AES.encrypt(encryptionKey, key, options).ciphertext; -} -function getEncryptionKeyR5(generateRandomWordArray) { - return generateRandomWordArray(32); -} -function getEncryptedPermissionsR5(permissions, encryptionKey, generateRandomWordArray) { - var cipher = _cryptoJs.default.lib.WordArray.create([lsbFirstWord(permissions), 0xffffffff, 0x54616462], 12).concat(generateRandomWordArray(4)); - var options = { - mode: _cryptoJs.default.mode.ECB, - padding: _cryptoJs.default.pad.NoPadding - }; - return _cryptoJs.default.AES.encrypt(cipher, encryptionKey, options).ciphertext; -} -function processPasswordR2R3R4() { - var password = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; - var out = Buffer.alloc(32); - var length = password.length; - var index = 0; - while (index < length && index < 32) { - var code = password.charCodeAt(index); - if (code > 0xff) { - throw new Error('Password contains one or more invalid characters.'); - } - out[index] = code; - index++; - } - while (index < 32) { - out[index] = PASSWORD_PADDING[index - length]; - index++; - } - return _cryptoJs.default.lib.WordArray.create(out); -} -function processPasswordR5() { - var password = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; - password = unescape(encodeURIComponent(saslprep(password))); - var length = Math.min(127, password.length); - var out = Buffer.alloc(length); - for (var i = 0; i < length; i++) { - out[i] = password.charCodeAt(i); - } - return _cryptoJs.default.lib.WordArray.create(out); -} -function lsbFirstWord(data) { - return (data & 0xff) << 24 | (data & 0xff00) << 8 | data >> 8 & 0xff00 | data >> 24 & 0xff; -} -function wordArrayToBuffer(wordArray) { - var byteArray = []; - for (var i = 0; i < wordArray.sigBytes; i++) { - byteArray.push(wordArray.words[Math.floor(i / 4)] >> 8 * (3 - i % 4) & 0xff); - } - return Buffer.from(byteArray); -} -var PASSWORD_PADDING = [0x28, 0xbf, 0x4e, 0x5e, 0x4e, 0x75, 0x8a, 0x41, 0x64, 0x00, 0x4e, 0x56, 0xff, 0xfa, 0x01, 0x08, 0x2e, 0x2e, 0x00, 0xb6, 0xd0, 0x68, 0x3e, 0x80, 0x2f, 0x0c, 0xa9, 0xfe, 0x64, 0x53, 0x69, 0x7a]; -var number = PDFObject.number; -var PDFGradient = /*#__PURE__*/function () { - function PDFGradient(doc) { - this.doc = doc; - this.stops = []; - this.embedded = false; - this.transform = [1, 0, 0, 1, 0, 0]; - } - var _proto8 = PDFGradient.prototype; - _proto8.stop = function stop(pos, color, opacity) { - if (opacity == null) { - opacity = 1; - } - color = this.doc._normalizeColor(color); - if (this.stops.length === 0) { - if (color.length === 3) { - this._colorSpace = 'DeviceRGB'; - } else if (color.length === 4) { - this._colorSpace = 'DeviceCMYK'; - } else if (color.length === 1) { - this._colorSpace = 'DeviceGray'; - } else { - throw new Error('Unknown color space'); - } - } else if (this._colorSpace === 'DeviceRGB' && color.length !== 3 || this._colorSpace === 'DeviceCMYK' && color.length !== 4 || this._colorSpace === 'DeviceGray' && color.length !== 1) { - throw new Error('All gradient stops must use the same color space'); - } - opacity = Math.max(0, Math.min(1, opacity)); - this.stops.push([pos, color, opacity]); - return this; - }; - _proto8.setTransform = function setTransform(m11, m12, m21, m22, dx, dy) { - this.transform = [m11, m12, m21, m22, dx, dy]; - return this; - }; - _proto8.embed = function embed(m) { - var fn; - var stopsLength = this.stops.length; - if (stopsLength === 0) { - return; - } - this.embedded = true; - this.matrix = m; - - // if the last stop comes before 100%, add a copy at 100% - var last = this.stops[stopsLength - 1]; - if (last[0] < 1) { - this.stops.push([1, last[1], last[2]]); - } - var bounds = []; - var encode = []; - var stops = []; - for (var i = 0; i < stopsLength - 1; i++) { - encode.push(0, 1); - if (i + 2 !== stopsLength) { - bounds.push(this.stops[i + 1][0]); - } - fn = this.doc.ref({ - FunctionType: 2, - Domain: [0, 1], - C0: this.stops[i + 0][1], - C1: this.stops[i + 1][1], - N: 1 - }); - stops.push(fn); - fn.end(); - } - - // if there are only two stops, we don't need a stitching function - if (stopsLength === 1) { - fn = stops[0]; - } else { - fn = this.doc.ref({ - FunctionType: 3, - // stitching function - Domain: [0, 1], - Functions: stops, - Bounds: bounds, - Encode: encode - }); - fn.end(); - } - this.id = "Sh" + ++this.doc._gradCount; - var shader = this.shader(fn); - shader.end(); - var pattern = this.doc.ref({ - Type: 'Pattern', - PatternType: 2, - Shading: shader, - Matrix: this.matrix.map(number) - }); - pattern.end(); - if (this.stops.some(function (stop) { - return stop[2] < 1; - })) { - var grad = this.opacityGradient(); - grad._colorSpace = 'DeviceGray'; - for (var _iterator2 = _createForOfIteratorHelperLoose(this.stops), _step2; !(_step2 = _iterator2()).done;) { - var stop = _step2.value; - grad.stop(stop[0], [stop[2]]); - } - grad = grad.embed(this.matrix); - var pageBBox = [0, 0, this.doc.page.width, this.doc.page.height]; - var form = this.doc.ref({ - Type: 'XObject', - Subtype: 'Form', - FormType: 1, - BBox: pageBBox, - Group: { - Type: 'Group', - S: 'Transparency', - CS: 'DeviceGray' - }, - Resources: { - ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'], - Pattern: { - Sh1: grad - } - } - }); - form.write('/Pattern cs /Sh1 scn'); - form.end(pageBBox.join(' ') + " re f"); - var gstate = this.doc.ref({ - Type: 'ExtGState', - SMask: { - Type: 'Mask', - S: 'Luminosity', - G: form - } - }); - gstate.end(); - var opacityPattern = this.doc.ref({ - Type: 'Pattern', - PatternType: 1, - PaintType: 1, - TilingType: 2, - BBox: pageBBox, - XStep: pageBBox[2], - YStep: pageBBox[3], - Resources: { - ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'], - Pattern: { - Sh1: pattern - }, - ExtGState: { - Gs1: gstate - } - } - }); - opacityPattern.write('/Gs1 gs /Pattern cs /Sh1 scn'); - opacityPattern.end(pageBBox.join(' ') + " re f"); - this.doc.page.patterns[this.id] = opacityPattern; - } else { - this.doc.page.patterns[this.id] = pattern; - } - return pattern; - }; - _proto8.apply = function apply(stroke) { - // apply gradient transform to existing document ctm - var _this$doc$_ctm = this.doc._ctm, - m0 = _this$doc$_ctm[0], - m1 = _this$doc$_ctm[1], - m2 = _this$doc$_ctm[2], - m3 = _this$doc$_ctm[3], - m4 = _this$doc$_ctm[4], - m5 = _this$doc$_ctm[5]; - var _this$transform = this.transform, - m11 = _this$transform[0], - m12 = _this$transform[1], - m21 = _this$transform[2], - m22 = _this$transform[3], - dx = _this$transform[4], - dy = _this$transform[5]; - var m = [m0 * m11 + m2 * m12, m1 * m11 + m3 * m12, m0 * m21 + m2 * m22, m1 * m21 + m3 * m22, m0 * dx + m2 * dy + m4, m1 * dx + m3 * dy + m5]; - if (!this.embedded || m.join(' ') !== this.matrix.join(' ')) { - this.embed(m); - } - this.doc._setColorSpace('Pattern', stroke); - var op = stroke ? 'SCN' : 'scn'; - return this.doc.addContent("/" + this.id + " " + op); - }; - return PDFGradient; -}(); -var PDFLinearGradient = /*#__PURE__*/function (_PDFGradient) { - function PDFLinearGradient(doc, x1, y1, x2, y2) { - var _this3; - _this3 = _PDFGradient.call(this, doc) || this; - _this3.x1 = x1; - _this3.y1 = y1; - _this3.x2 = x2; - _this3.y2 = y2; - return _this3; - } - _inheritsLoose(PDFLinearGradient, _PDFGradient); - var _proto9 = PDFLinearGradient.prototype; - _proto9.shader = function shader(fn) { - return this.doc.ref({ - ShadingType: 2, - ColorSpace: this._colorSpace, - Coords: [this.x1, this.y1, this.x2, this.y2], - Function: fn, - Extend: [true, true] - }); - }; - _proto9.opacityGradient = function opacityGradient() { - return new PDFLinearGradient(this.doc, this.x1, this.y1, this.x2, this.y2); - }; - return PDFLinearGradient; -}(PDFGradient); -var PDFRadialGradient = /*#__PURE__*/function (_PDFGradient2) { - function PDFRadialGradient(doc, x1, y1, r1, x2, y2, r2) { - var _this4; - _this4 = _PDFGradient2.call(this, doc) || this; - _this4.doc = doc; - _this4.x1 = x1; - _this4.y1 = y1; - _this4.r1 = r1; - _this4.x2 = x2; - _this4.y2 = y2; - _this4.r2 = r2; - return _this4; - } - _inheritsLoose(PDFRadialGradient, _PDFGradient2); - var _proto0 = PDFRadialGradient.prototype; - _proto0.shader = function shader(fn) { - return this.doc.ref({ - ShadingType: 3, - ColorSpace: this._colorSpace, - Coords: [this.x1, this.y1, this.r1, this.x2, this.y2, this.r2], - Function: fn, - Extend: [true, true] - }); - }; - _proto0.opacityGradient = function opacityGradient() { - return new PDFRadialGradient(this.doc, this.x1, this.y1, this.r1, this.x2, this.y2, this.r2); - }; - return PDFRadialGradient; -}(PDFGradient); -var Gradient = { - PDFGradient: PDFGradient, - PDFLinearGradient: PDFLinearGradient, - PDFRadialGradient: PDFRadialGradient -}; - -/* -PDF tiling pattern support. Uncolored only. - */ - -var underlyingColorSpaces = ['DeviceCMYK', 'DeviceRGB']; -var PDFTilingPattern = /*#__PURE__*/function () { - function PDFTilingPattern(doc, bBox, xStep, yStep, stream) { - this.doc = doc; - this.bBox = bBox; - this.xStep = xStep; - this.yStep = yStep; - this.stream = stream; - } - var _proto1 = PDFTilingPattern.prototype; - _proto1.createPattern = function createPattern() { - // no resources needed for our current usage - // required entry - var resources = this.doc.ref(); - resources.end(); - // apply default transform matrix (flipped in the default doc._ctm) - // see document.js & gradient.js - var _this$doc$_ctm2 = this.doc._ctm, - m0 = _this$doc$_ctm2[0], - m1 = _this$doc$_ctm2[1], - m2 = _this$doc$_ctm2[2], - m3 = _this$doc$_ctm2[3], - m4 = _this$doc$_ctm2[4], - m5 = _this$doc$_ctm2[5]; - var m11 = 1, - m12 = 0, - m21 = 0, - m22 = 1, - dx = 0, - dy = 0; - var m = [m0 * m11 + m2 * m12, m1 * m11 + m3 * m12, m0 * m21 + m2 * m22, m1 * m21 + m3 * m22, m0 * dx + m2 * dy + m4, m1 * dx + m3 * dy + m5]; - var pattern = this.doc.ref({ - Type: 'Pattern', - PatternType: 1, - // tiling - PaintType: 2, - // 1-colored, 2-uncolored - TilingType: 2, - // 2-no distortion - BBox: this.bBox, - XStep: this.xStep, - YStep: this.yStep, - Matrix: m.map(function (v) { - return +v.toFixed(5); - }), - Resources: resources - }); - pattern.end(this.stream); - return pattern; - }; - _proto1.embedPatternColorSpaces = function embedPatternColorSpaces() { - var _this5 = this; - // map each pattern to an underlying color space - // and embed on each page - underlyingColorSpaces.forEach(function (csName) { - var csId = _this5.getPatternColorSpaceId(csName); - if (_this5.doc.page.colorSpaces[csId]) return; - var cs = _this5.doc.ref(['Pattern', csName]); - cs.end(); - _this5.doc.page.colorSpaces[csId] = cs; - }); - }; - _proto1.getPatternColorSpaceId = function getPatternColorSpaceId(underlyingColorspace) { - return "CsP" + underlyingColorspace; - }; - _proto1.embed = function embed() { - if (!this.id) { - this.doc._patternCount = this.doc._patternCount + 1; - this.id = 'P' + this.doc._patternCount; - this.pattern = this.createPattern(); - } - - // patterns are embedded in each page - if (!this.doc.page.patterns[this.id]) { - this.doc.page.patterns[this.id] = this.pattern; - } - }; - _proto1.apply = function apply(stroke, patternColor) { - // do any embedding/creating that might be needed - this.embedPatternColorSpaces(); - this.embed(); - var normalizedColor = this.doc._normalizeColor(patternColor); - if (!normalizedColor) throw Error("invalid pattern color. (value: " + patternColor + ")"); - - // select one of the pattern color spaces - var csId = this.getPatternColorSpaceId(this.doc._getColorSpace(normalizedColor)); - this.doc._setColorSpace(csId, stroke); - - // stroke/fill using the pattern and color (in the above underlying color space) - var op = stroke ? 'SCN' : 'scn'; - return this.doc.addContent(normalizedColor.join(' ') + " /" + this.id + " " + op); - }; - return PDFTilingPattern; -}(); -var pattern = { - PDFTilingPattern: PDFTilingPattern -}; -var PDFGradient$1 = Gradient.PDFGradient, - PDFLinearGradient$1 = Gradient.PDFLinearGradient, - PDFRadialGradient$1 = Gradient.PDFRadialGradient; -var PDFTilingPattern$1 = pattern.PDFTilingPattern; -var ColorMixin = { - initColor: function initColor() { - this.spotColors = {}; - // The opacity dictionaries - this._opacityRegistry = {}; - this._opacityCount = 0; - this._patternCount = 0; - return this._gradCount = 0; - }, - _normalizeColor: function _normalizeColor(color) { - if (typeof color === 'string') { - if (color.charAt(0) === '#') { - if (color.length === 4) { - color = color.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i, '#$1$1$2$2$3$3'); - } - var hex = parseInt(color.slice(1), 16); - color = [hex >> 16, hex >> 8 & 0xff, hex & 0xff]; - } else if (namedColors[color]) { - color = namedColors[color]; - } else if (this.spotColors[color]) { - return this.spotColors[color]; - } - } - if (Array.isArray(color)) { - // RGB - if (color.length === 3) { - color = color.map(function (part) { - return part / 255; - }); - // CMYK - } else if (color.length === 4) { - color = color.map(function (part) { - return part / 100; - }); - } - return color; - } - return null; - }, - _setColor: function _setColor(color, stroke) { - if (color instanceof PDFGradient$1) { - color.apply(stroke); - return true; - // see if tiling pattern, decode & apply it it - } else if (Array.isArray(color) && color[0] instanceof PDFTilingPattern$1) { - color[0].apply(stroke, color[1]); - return true; - } - // any other case should be a normal color and not a pattern - return this._setColorCore(color, stroke); - }, - _setColorCore: function _setColorCore(color, stroke) { - color = this._normalizeColor(color); - if (!color) { - return false; - } - var op = stroke ? 'SCN' : 'scn'; - var space = this._getColorSpace(color); - this._setColorSpace(space, stroke); - if (color instanceof SpotColor) { - this.page.colorSpaces[color.id] = color.ref; - this.addContent("1 " + op); - } else { - this.addContent(color.join(' ') + " " + op); - } - return true; - }, - _setColorSpace: function _setColorSpace(space, stroke) { - var op = stroke ? 'CS' : 'cs'; - return this.addContent("/" + space + " " + op); - }, - _getColorSpace: function _getColorSpace(color) { - if (color instanceof SpotColor) { - return color.id; - } - return color.length === 4 ? 'DeviceCMYK' : 'DeviceRGB'; - }, - fillColor: function fillColor(color, opacity) { - var set = this._setColor(color, false); - if (set) { - this.fillOpacity(opacity); - } - - // save this for text wrapper, which needs to reset - // the fill color on new pages - this._fillColor = [color, opacity]; - return this; - }, - strokeColor: function strokeColor(color, opacity) { - var set = this._setColor(color, true); - if (set) { - this.strokeOpacity(opacity); - } - return this; - }, - opacity: function opacity(_opacity) { - this._doOpacity(_opacity, _opacity); - return this; - }, - fillOpacity: function fillOpacity(opacity) { - this._doOpacity(opacity, null); - return this; - }, - strokeOpacity: function strokeOpacity(opacity) { - this._doOpacity(null, opacity); - return this; - }, - _doOpacity: function _doOpacity(fillOpacity, strokeOpacity) { - var dictionary, name; - if (fillOpacity == null && strokeOpacity == null) { - return; - } - if (fillOpacity != null) { - fillOpacity = Math.max(0, Math.min(1, fillOpacity)); - } - if (strokeOpacity != null) { - strokeOpacity = Math.max(0, Math.min(1, strokeOpacity)); - } - var key = fillOpacity + "_" + strokeOpacity; - if (this._opacityRegistry[key]) { - var _this$_opacityRegistr = this._opacityRegistry[key]; - dictionary = _this$_opacityRegistr[0]; - name = _this$_opacityRegistr[1]; - } else { - dictionary = { - Type: 'ExtGState' - }; - if (fillOpacity != null) { - dictionary.ca = fillOpacity; - } - if (strokeOpacity != null) { - dictionary.CA = strokeOpacity; - } - dictionary = this.ref(dictionary); - dictionary.end(); - var id = ++this._opacityCount; - name = "Gs" + id; - this._opacityRegistry[key] = [dictionary, name]; - } - this.page.ext_gstates[name] = dictionary; - return this.addContent("/" + name + " gs"); - }, - linearGradient: function linearGradient(x1, y1, x2, y2) { - return new PDFLinearGradient$1(this, x1, y1, x2, y2); - }, - radialGradient: function radialGradient(x1, y1, r1, x2, y2, r2) { - return new PDFRadialGradient$1(this, x1, y1, r1, x2, y2, r2); - }, - pattern: function pattern(bbox, xStep, yStep, stream) { - return new PDFTilingPattern$1(this, bbox, xStep, yStep, stream); - }, - addSpotColor: function addSpotColor(name, C, M, Y, K) { - var color = new SpotColor(this, name, C, M, Y, K); - this.spotColors[name] = color; - return this; - } -}; -var namedColors = { - aliceblue: [240, 248, 255], - antiquewhite: [250, 235, 215], - aqua: [0, 255, 255], - aquamarine: [127, 255, 212], - azure: [240, 255, 255], - beige: [245, 245, 220], - bisque: [255, 228, 196], - black: [0, 0, 0], - blanchedalmond: [255, 235, 205], - blue: [0, 0, 255], - blueviolet: [138, 43, 226], - brown: [165, 42, 42], - burlywood: [222, 184, 135], - cadetblue: [95, 158, 160], - chartreuse: [127, 255, 0], - chocolate: [210, 105, 30], - coral: [255, 127, 80], - cornflowerblue: [100, 149, 237], - cornsilk: [255, 248, 220], - crimson: [220, 20, 60], - cyan: [0, 255, 255], - darkblue: [0, 0, 139], - darkcyan: [0, 139, 139], - darkgoldenrod: [184, 134, 11], - darkgray: [169, 169, 169], - darkgreen: [0, 100, 0], - darkgrey: [169, 169, 169], - darkkhaki: [189, 183, 107], - darkmagenta: [139, 0, 139], - darkolivegreen: [85, 107, 47], - darkorange: [255, 140, 0], - darkorchid: [153, 50, 204], - darkred: [139, 0, 0], - darksalmon: [233, 150, 122], - darkseagreen: [143, 188, 143], - darkslateblue: [72, 61, 139], - darkslategray: [47, 79, 79], - darkslategrey: [47, 79, 79], - darkturquoise: [0, 206, 209], - darkviolet: [148, 0, 211], - deeppink: [255, 20, 147], - deepskyblue: [0, 191, 255], - dimgray: [105, 105, 105], - dimgrey: [105, 105, 105], - dodgerblue: [30, 144, 255], - firebrick: [178, 34, 34], - floralwhite: [255, 250, 240], - forestgreen: [34, 139, 34], - fuchsia: [255, 0, 255], - gainsboro: [220, 220, 220], - ghostwhite: [248, 248, 255], - gold: [255, 215, 0], - goldenrod: [218, 165, 32], - gray: [128, 128, 128], - grey: [128, 128, 128], - green: [0, 128, 0], - greenyellow: [173, 255, 47], - honeydew: [240, 255, 240], - hotpink: [255, 105, 180], - indianred: [205, 92, 92], - indigo: [75, 0, 130], - ivory: [255, 255, 240], - khaki: [240, 230, 140], - lavender: [230, 230, 250], - lavenderblush: [255, 240, 245], - lawngreen: [124, 252, 0], - lemonchiffon: [255, 250, 205], - lightblue: [173, 216, 230], - lightcoral: [240, 128, 128], - lightcyan: [224, 255, 255], - lightgoldenrodyellow: [250, 250, 210], - lightgray: [211, 211, 211], - lightgreen: [144, 238, 144], - lightgrey: [211, 211, 211], - lightpink: [255, 182, 193], - lightsalmon: [255, 160, 122], - lightseagreen: [32, 178, 170], - lightskyblue: [135, 206, 250], - lightslategray: [119, 136, 153], - lightslategrey: [119, 136, 153], - lightsteelblue: [176, 196, 222], - lightyellow: [255, 255, 224], - lime: [0, 255, 0], - limegreen: [50, 205, 50], - linen: [250, 240, 230], - magenta: [255, 0, 255], - maroon: [128, 0, 0], - mediumaquamarine: [102, 205, 170], - mediumblue: [0, 0, 205], - mediumorchid: [186, 85, 211], - mediumpurple: [147, 112, 219], - mediumseagreen: [60, 179, 113], - mediumslateblue: [123, 104, 238], - mediumspringgreen: [0, 250, 154], - mediumturquoise: [72, 209, 204], - mediumvioletred: [199, 21, 133], - midnightblue: [25, 25, 112], - mintcream: [245, 255, 250], - mistyrose: [255, 228, 225], - moccasin: [255, 228, 181], - navajowhite: [255, 222, 173], - navy: [0, 0, 128], - oldlace: [253, 245, 230], - olive: [128, 128, 0], - olivedrab: [107, 142, 35], - orange: [255, 165, 0], - orangered: [255, 69, 0], - orchid: [218, 112, 214], - palegoldenrod: [238, 232, 170], - palegreen: [152, 251, 152], - paleturquoise: [175, 238, 238], - palevioletred: [219, 112, 147], - papayawhip: [255, 239, 213], - peachpuff: [255, 218, 185], - peru: [205, 133, 63], - pink: [255, 192, 203], - plum: [221, 160, 221], - powderblue: [176, 224, 230], - purple: [128, 0, 128], - red: [255, 0, 0], - rosybrown: [188, 143, 143], - royalblue: [65, 105, 225], - saddlebrown: [139, 69, 19], - salmon: [250, 128, 114], - sandybrown: [244, 164, 96], - seagreen: [46, 139, 87], - seashell: [255, 245, 238], - sienna: [160, 82, 45], - silver: [192, 192, 192], - skyblue: [135, 206, 235], - slateblue: [106, 90, 205], - slategray: [112, 128, 144], - slategrey: [112, 128, 144], - snow: [255, 250, 250], - springgreen: [0, 255, 127], - steelblue: [70, 130, 180], - tan: [210, 180, 140], - teal: [0, 128, 128], - thistle: [216, 191, 216], - tomato: [255, 99, 71], - turquoise: [64, 224, 208], - violet: [238, 130, 238], - wheat: [245, 222, 179], - white: [255, 255, 255], - whitesmoke: [245, 245, 245], - yellow: [255, 255, 0], - yellowgreen: [154, 205, 50] -}; -var cx, cy, px, py, sx, sy; -cx = cy = px = py = sx = sy = 0; -var parameters = { - A: 7, - a: 7, - C: 6, - c: 6, - H: 1, - h: 1, - L: 2, - l: 2, - M: 2, - m: 2, - Q: 4, - q: 4, - S: 4, - s: 4, - T: 2, - t: 2, - V: 1, - v: 1, - Z: 0, - z: 0 -}; -var parse = function parse(path) { - var cmd; - var ret = []; - var args = []; - var curArg = ''; - var foundDecimal = false; - var params = 0; - for (var _iterator3 = _createForOfIteratorHelperLoose(path), _step3; !(_step3 = _iterator3()).done;) { - var c = _step3.value; - if (parameters[c] != null) { - params = parameters[c]; - if (cmd) { - // save existing command - if (curArg.length > 0) { - args[args.length] = +curArg; - } - ret[ret.length] = { - cmd: cmd, - args: args - }; - args = []; - curArg = ''; - foundDecimal = false; - } - cmd = c; - } else if ([' ', ','].includes(c) || c === '-' && curArg.length > 0 && curArg[curArg.length - 1] !== 'e' || c === '.' && foundDecimal) { - if (curArg.length === 0) { - continue; - } - if (args.length === params) { - // handle reused commands - ret[ret.length] = { - cmd: cmd, - args: args - }; - args = [+curArg]; - - // handle assumed commands - if (cmd === 'M') { - cmd = 'L'; - } - if (cmd === 'm') { - cmd = 'l'; - } - } else { - args[args.length] = +curArg; - } - foundDecimal = c === '.'; - - // fix for negative numbers or repeated decimals with no delimeter between commands - curArg = ['-', '.'].includes(c) ? c : ''; - } else { - curArg += c; - if (c === '.') { - foundDecimal = true; - } - } - } - - // add the last command - if (curArg.length > 0) { - if (args.length === params) { - // handle reused commands - ret[ret.length] = { - cmd: cmd, - args: args - }; - args = [+curArg]; - - // handle assumed commands - if (cmd === 'M') { - cmd = 'L'; - } - if (cmd === 'm') { - cmd = 'l'; - } - } else { - args[args.length] = +curArg; - } - } - ret[ret.length] = { - cmd: cmd, - args: args - }; - return ret; -}; -var _apply = function apply(commands, doc) { - // current point, control point, and subpath starting point - cx = cy = px = py = sx = sy = 0; - - // run the commands - for (var i = 0; i < commands.length; i++) { - var c = commands[i]; - if (typeof runners[c.cmd] === 'function') { - runners[c.cmd](doc, c.args); - } - } -}; -var runners = { - M: function M(doc, a) { - cx = a[0]; - cy = a[1]; - px = py = null; - sx = cx; - sy = cy; - return doc.moveTo(cx, cy); - }, - m: function m(doc, a) { - cx += a[0]; - cy += a[1]; - px = py = null; - sx = cx; - sy = cy; - return doc.moveTo(cx, cy); - }, - C: function C(doc, a) { - cx = a[4]; - cy = a[5]; - px = a[2]; - py = a[3]; - return doc.bezierCurveTo.apply(doc, a); - }, - c: function c(doc, a) { - doc.bezierCurveTo(a[0] + cx, a[1] + cy, a[2] + cx, a[3] + cy, a[4] + cx, a[5] + cy); - px = cx + a[2]; - py = cy + a[3]; - cx += a[4]; - return cy += a[5]; - }, - S: function S(doc, a) { - if (px === null) { - px = cx; - py = cy; - } - doc.bezierCurveTo(cx - (px - cx), cy - (py - cy), a[0], a[1], a[2], a[3]); - px = a[0]; - py = a[1]; - cx = a[2]; - return cy = a[3]; - }, - s: function s(doc, a) { - if (px === null) { - px = cx; - py = cy; - } - doc.bezierCurveTo(cx - (px - cx), cy - (py - cy), cx + a[0], cy + a[1], cx + a[2], cy + a[3]); - px = cx + a[0]; - py = cy + a[1]; - cx += a[2]; - return cy += a[3]; - }, - Q: function Q(doc, a) { - px = a[0]; - py = a[1]; - cx = a[2]; - cy = a[3]; - return doc.quadraticCurveTo(a[0], a[1], cx, cy); - }, - q: function q(doc, a) { - doc.quadraticCurveTo(a[0] + cx, a[1] + cy, a[2] + cx, a[3] + cy); - px = cx + a[0]; - py = cy + a[1]; - cx += a[2]; - return cy += a[3]; - }, - T: function T(doc, a) { - if (px === null) { - px = cx; - py = cy; - } else { - px = cx - (px - cx); - py = cy - (py - cy); - } - doc.quadraticCurveTo(px, py, a[0], a[1]); - px = cx - (px - cx); - py = cy - (py - cy); - cx = a[0]; - return cy = a[1]; - }, - t: function t(doc, a) { - if (px === null) { - px = cx; - py = cy; - } else { - px = cx - (px - cx); - py = cy - (py - cy); - } - doc.quadraticCurveTo(px, py, cx + a[0], cy + a[1]); - cx += a[0]; - return cy += a[1]; - }, - A: function A(doc, a) { - solveArc(doc, cx, cy, a); - cx = a[5]; - return cy = a[6]; - }, - a: function a(doc, _a) { - _a[5] += cx; - _a[6] += cy; - solveArc(doc, cx, cy, _a); - cx = _a[5]; - return cy = _a[6]; - }, - L: function L(doc, a) { - cx = a[0]; - cy = a[1]; - px = py = null; - return doc.lineTo(cx, cy); - }, - l: function l(doc, a) { - cx += a[0]; - cy += a[1]; - px = py = null; - return doc.lineTo(cx, cy); - }, - H: function H(doc, a) { - cx = a[0]; - px = py = null; - return doc.lineTo(cx, cy); - }, - h: function h(doc, a) { - cx += a[0]; - px = py = null; - return doc.lineTo(cx, cy); - }, - V: function V(doc, a) { - cy = a[0]; - px = py = null; - return doc.lineTo(cx, cy); - }, - v: function v(doc, a) { - cy += a[0]; - px = py = null; - return doc.lineTo(cx, cy); - }, - Z: function Z(doc) { - doc.closePath(); - cx = sx; - return cy = sy; - }, - z: function z(doc) { - doc.closePath(); - cx = sx; - return cy = sy; - } -}; -var solveArc = function solveArc(doc, x, y, coords) { - var rx = coords[0], - ry = coords[1], - rot = coords[2], - large = coords[3], - sweep = coords[4], - ex = coords[5], - ey = coords[6]; - var segs = arcToSegments(ex, ey, rx, ry, large, sweep, rot, x, y); - for (var _iterator4 = _createForOfIteratorHelperLoose(segs), _step4; !(_step4 = _iterator4()).done;) { - var seg = _step4.value; - var bez = segmentToBezier.apply(void 0, seg); - doc.bezierCurveTo.apply(doc, bez); - } -}; - -// from Inkscape svgtopdf, thanks! -var arcToSegments = function arcToSegments(x, y, rx, ry, large, sweep, rotateX, ox, oy) { - var th = rotateX * (Math.PI / 180); - var sin_th = Math.sin(th); - var cos_th = Math.cos(th); - rx = Math.abs(rx); - ry = Math.abs(ry); - px = cos_th * (ox - x) * 0.5 + sin_th * (oy - y) * 0.5; - py = cos_th * (oy - y) * 0.5 - sin_th * (ox - x) * 0.5; - var pl = px * px / (rx * rx) + py * py / (ry * ry); - if (pl > 1) { - pl = Math.sqrt(pl); - rx *= pl; - ry *= pl; - } - var a00 = cos_th / rx; - var a01 = sin_th / rx; - var a10 = -sin_th / ry; - var a11 = cos_th / ry; - var x0 = a00 * ox + a01 * oy; - var y0 = a10 * ox + a11 * oy; - var x1 = a00 * x + a01 * y; - var y1 = a10 * x + a11 * y; - var d = (x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0); - var sfactor_sq = 1 / d - 0.25; - if (sfactor_sq < 0) { - sfactor_sq = 0; - } - var sfactor = Math.sqrt(sfactor_sq); - if (sweep === large) { - sfactor = -sfactor; - } - var xc = 0.5 * (x0 + x1) - sfactor * (y1 - y0); - var yc = 0.5 * (y0 + y1) + sfactor * (x1 - x0); - var th0 = Math.atan2(y0 - yc, x0 - xc); - var th1 = Math.atan2(y1 - yc, x1 - xc); - var th_arc = th1 - th0; - if (th_arc < 0 && sweep === 1) { - th_arc += 2 * Math.PI; - } else if (th_arc > 0 && sweep === 0) { - th_arc -= 2 * Math.PI; - } - var segments = Math.ceil(Math.abs(th_arc / (Math.PI * 0.5 + 0.001))); - var result = []; - for (var i = 0; i < segments; i++) { - var th2 = th0 + i * th_arc / segments; - var th3 = th0 + (i + 1) * th_arc / segments; - result[i] = [xc, yc, th2, th3, rx, ry, sin_th, cos_th]; - } - return result; -}; -var segmentToBezier = function segmentToBezier(cx, cy, th0, th1, rx, ry, sin_th, cos_th) { - var a00 = cos_th * rx; - var a01 = -sin_th * ry; - var a10 = sin_th * rx; - var a11 = cos_th * ry; - var th_half = 0.5 * (th1 - th0); - var t = 8 / 3 * Math.sin(th_half * 0.5) * Math.sin(th_half * 0.5) / Math.sin(th_half); - var x1 = cx + Math.cos(th0) - t * Math.sin(th0); - var y1 = cy + Math.sin(th0) + t * Math.cos(th0); - var x3 = cx + Math.cos(th1); - var y3 = cy + Math.sin(th1); - var x2 = x3 + t * Math.sin(th1); - var y2 = y3 - t * Math.cos(th1); - return [a00 * x1 + a01 * y1, a10 * x1 + a11 * y1, a00 * x2 + a01 * y2, a10 * x2 + a11 * y2, a00 * x3 + a01 * y3, a10 * x3 + a11 * y3]; -}; -var SVGPath = /*#__PURE__*/function () { - function SVGPath() {} - SVGPath.apply = function apply(doc, path) { - var commands = parse(path); - _apply(commands, doc); - }; - return SVGPath; -}(); -var number$1 = PDFObject.number; - -// This constant is used to approximate a symmetrical arc using a cubic -// Bezier curve. -var KAPPA = 4.0 * ((Math.sqrt(2) - 1.0) / 3.0); -var VectorMixin = { - initVector: function initVector() { - this._ctm = [1, 0, 0, 1, 0, 0]; // current transformation matrix - return this._ctmStack = []; - }, - save: function save() { - this._ctmStack.push(this._ctm.slice()); - // TODO: save/restore colorspace and styles so not setting it unnessesarily all the time? - return this.addContent('q'); - }, - restore: function restore() { - this._ctm = this._ctmStack.pop() || [1, 0, 0, 1, 0, 0]; - return this.addContent('Q'); - }, - closePath: function closePath() { - return this.addContent('h'); - }, - lineWidth: function lineWidth(w) { - return this.addContent(number$1(w) + " w"); - }, - _CAP_STYLES: { - BUTT: 0, - ROUND: 1, - SQUARE: 2 - }, - lineCap: function lineCap(c) { - if (typeof c === 'string') { - c = this._CAP_STYLES[c.toUpperCase()]; - } - return this.addContent(c + " J"); - }, - _JOIN_STYLES: { - MITER: 0, - ROUND: 1, - BEVEL: 2 - }, - lineJoin: function lineJoin(j) { - if (typeof j === 'string') { - j = this._JOIN_STYLES[j.toUpperCase()]; - } - return this.addContent(j + " j"); - }, - miterLimit: function miterLimit(m) { - return this.addContent(number$1(m) + " M"); - }, - dash: function dash(length) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var originalLength = length; - if (!Array.isArray(length)) { - length = [length, options.space || length]; - } - var valid = length.every(function (x) { - return Number.isFinite(x) && x > 0; - }); - if (!valid) { - throw new Error("dash(" + JSON.stringify(originalLength) + ", " + JSON.stringify(options) + ") invalid, lengths must be numeric and greater than zero"); - } - length = length.map(number$1).join(' '); - return this.addContent("[" + length + "] " + number$1(options.phase || 0) + " d"); - }, - undash: function undash() { - return this.addContent('[] 0 d'); - }, - moveTo: function moveTo(x, y) { - return this.addContent(number$1(x) + " " + number$1(y) + " m"); - }, - lineTo: function lineTo(x, y) { - return this.addContent(number$1(x) + " " + number$1(y) + " l"); - }, - bezierCurveTo: function bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y) { - return this.addContent(number$1(cp1x) + " " + number$1(cp1y) + " " + number$1(cp2x) + " " + number$1(cp2y) + " " + number$1(x) + " " + number$1(y) + " c"); - }, - quadraticCurveTo: function quadraticCurveTo(cpx, cpy, x, y) { - return this.addContent(number$1(cpx) + " " + number$1(cpy) + " " + number$1(x) + " " + number$1(y) + " v"); - }, - rect: function rect(x, y, w, h) { - return this.addContent(number$1(x) + " " + number$1(y) + " " + number$1(w) + " " + number$1(h) + " re"); - }, - roundedRect: function roundedRect(x, y, w, h, r) { - if (r == null) { - r = 0; - } - r = Math.min(r, 0.5 * w, 0.5 * h); - - // amount to inset control points from corners (see `ellipse`) - var c = r * (1.0 - KAPPA); - this.moveTo(x + r, y); - this.lineTo(x + w - r, y); - this.bezierCurveTo(x + w - c, y, x + w, y + c, x + w, y + r); - this.lineTo(x + w, y + h - r); - this.bezierCurveTo(x + w, y + h - c, x + w - c, y + h, x + w - r, y + h); - this.lineTo(x + r, y + h); - this.bezierCurveTo(x + c, y + h, x, y + h - c, x, y + h - r); - this.lineTo(x, y + r); - this.bezierCurveTo(x, y + c, x + c, y, x + r, y); - return this.closePath(); - }, - ellipse: function ellipse(x, y, r1, r2) { - // based on http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas/2173084#2173084 - if (r2 == null) { - r2 = r1; - } - x -= r1; - y -= r2; - var ox = r1 * KAPPA; - var oy = r2 * KAPPA; - var xe = x + r1 * 2; - var ye = y + r2 * 2; - var xm = x + r1; - var ym = y + r2; - this.moveTo(x, ym); - this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); - this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); - this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); - this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); - return this.closePath(); - }, - circle: function circle(x, y, radius) { - return this.ellipse(x, y, radius); - }, - arc: function arc(x, y, radius, startAngle, endAngle, anticlockwise) { - if (anticlockwise == null) { - anticlockwise = false; - } - var TWO_PI = 2.0 * Math.PI; - var HALF_PI = 0.5 * Math.PI; - var deltaAng = endAngle - startAngle; - if (Math.abs(deltaAng) > TWO_PI) { - // draw only full circle if more than that is specified - deltaAng = TWO_PI; - } else if (deltaAng !== 0 && anticlockwise !== deltaAng < 0) { - // necessary to flip direction of rendering - var dir = anticlockwise ? -1 : 1; - deltaAng = dir * TWO_PI + deltaAng; - } - var numSegs = Math.ceil(Math.abs(deltaAng) / HALF_PI); - var segAng = deltaAng / numSegs; - var handleLen = segAng / HALF_PI * KAPPA * radius; - var curAng = startAngle; - - // component distances between anchor point and control point - var deltaCx = -Math.sin(curAng) * handleLen; - var deltaCy = Math.cos(curAng) * handleLen; - - // anchor point - var ax = x + Math.cos(curAng) * radius; - var ay = y + Math.sin(curAng) * radius; - - // calculate and render segments - this.moveTo(ax, ay); - for (var segIdx = 0; segIdx < numSegs; segIdx++) { - // starting control point - var cp1x = ax + deltaCx; - var cp1y = ay + deltaCy; - - // step angle - curAng += segAng; - - // next anchor point - ax = x + Math.cos(curAng) * radius; - ay = y + Math.sin(curAng) * radius; - - // next control point delta - deltaCx = -Math.sin(curAng) * handleLen; - deltaCy = Math.cos(curAng) * handleLen; - - // ending control point - var cp2x = ax - deltaCx; - var cp2y = ay - deltaCy; - - // render segment - this.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, ax, ay); - } - return this; - }, - polygon: function polygon() { - for (var _len = arguments.length, points = new Array(_len), _key = 0; _key < _len; _key++) { - points[_key] = arguments[_key]; - } - this.moveTo.apply(this, points.shift() || []); - for (var _i3 = 0, _points = points; _i3 < _points.length; _i3++) { - var point = _points[_i3]; - this.lineTo.apply(this, point || []); - } - return this.closePath(); - }, - path: function path(_path) { - SVGPath.apply(this, _path); - return this; - }, - _windingRule: function _windingRule(rule) { - if (/even-?odd/.test(rule)) { - return '*'; - } - return ''; - }, - fill: function fill(color, rule) { - if (/(even-?odd)|(non-?zero)/.test(color)) { - rule = color; - color = null; - } - if (color) { - this.fillColor(color); - } - return this.addContent("f" + this._windingRule(rule)); - }, - stroke: function stroke(color) { - if (color) { - this.strokeColor(color); - } - return this.addContent('S'); - }, - fillAndStroke: function fillAndStroke(fillColor, strokeColor, rule) { - if (strokeColor == null) { - strokeColor = fillColor; - } - var isFillRule = /(even-?odd)|(non-?zero)/; - if (isFillRule.test(fillColor)) { - rule = fillColor; - fillColor = null; - } - if (isFillRule.test(strokeColor)) { - rule = strokeColor; - strokeColor = fillColor; - } - if (fillColor) { - this.fillColor(fillColor); - this.strokeColor(strokeColor); - } - return this.addContent("B" + this._windingRule(rule)); - }, - clip: function clip(rule) { - return this.addContent("W" + this._windingRule(rule) + " n"); - }, - transform: function transform(m11, m12, m21, m22, dx, dy) { - // keep track of the current transformation matrix - if (m11 === 1 && m12 === 0 && m21 === 0 && m22 === 1 && dx === 0 && dy === 0) { - // Ignore identity transforms - return this; - } - var m = this._ctm; - var m0 = m[0], - m1 = m[1], - m2 = m[2], - m3 = m[3], - m4 = m[4], - m5 = m[5]; - m[0] = m0 * m11 + m2 * m12; - m[1] = m1 * m11 + m3 * m12; - m[2] = m0 * m21 + m2 * m22; - m[3] = m1 * m21 + m3 * m22; - m[4] = m0 * dx + m2 * dy + m4; - m[5] = m1 * dx + m3 * dy + m5; - var values = [m11, m12, m21, m22, dx, dy].map(function (v) { - return number$1(v); - }).join(' '); - return this.addContent(values + " cm"); - }, - translate: function translate(x, y) { - return this.transform(1, 0, 0, 1, x, y); - }, - rotate: function rotate(angle) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var y; - var rad = angle * Math.PI / 180; - var cos = Math.cos(rad); - var sin = Math.sin(rad); - var x = y = 0; - if (options.origin != null) { - var _options$origin = options.origin; - x = _options$origin[0]; - y = _options$origin[1]; - var x1 = x * cos - y * sin; - var y1 = x * sin + y * cos; - x -= x1; - y -= y1; - } - return this.transform(cos, sin, -sin, cos, x, y); - }, - scale: function scale(xFactor, yFactor) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var y; - if (yFactor == null) { - yFactor = xFactor; - } - if (typeof yFactor === 'object') { - options = yFactor; - yFactor = xFactor; - } - var x = y = 0; - if (options.origin != null) { - var _options$origin2 = options.origin; - x = _options$origin2[0]; - y = _options$origin2[1]; - x -= xFactor * x; - y -= yFactor * y; - } - return this.transform(xFactor, 0, 0, yFactor, x, y); - } -}; -var WIN_ANSI_MAP = { - 402: 131, - 8211: 150, - 8212: 151, - 8216: 145, - 8217: 146, - 8218: 130, - 8220: 147, - 8221: 148, - 8222: 132, - 8224: 134, - 8225: 135, - 8226: 149, - 8230: 133, - 8364: 128, - 8240: 137, - 8249: 139, - 8250: 155, - 710: 136, - 8482: 153, - 338: 140, - 339: 156, - 732: 152, - 352: 138, - 353: 154, - 376: 159, - 381: 142, - 382: 158 -}; -var characters = ".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/); -var AFMFont = /*#__PURE__*/function () { - function AFMFont(contents) { - this.contents = contents; - this.attributes = {}; - this.glyphWidths = {}; - this.boundingBoxes = {}; - this.kernPairs = {}; - this.parse(); - // todo: remove charWidths since appears to not be used - this.charWidths = new Array(256); - for (var char = 0; char <= 255; char++) { - this.charWidths[char] = this.glyphWidths[characters[char]]; - } - this.bbox = this.attributes['FontBBox'].split(/\s+/).map(function (e) { - return +e; - }); - this.ascender = +(this.attributes['Ascender'] || 0); - this.descender = +(this.attributes['Descender'] || 0); - this.xHeight = +(this.attributes['XHeight'] || 0); - this.capHeight = +(this.attributes['CapHeight'] || 0); - this.lineGap = this.bbox[3] - this.bbox[1] - (this.ascender - this.descender); - } - AFMFont.open = function open(filename) { - return new AFMFont(fs.readFileSync(filename, 'utf8')); - }; - var _proto10 = AFMFont.prototype; - _proto10.parse = function parse() { - var section = ''; - for (var _iterator5 = _createForOfIteratorHelperLoose(this.contents.split('\n')), _step5; !(_step5 = _iterator5()).done;) { - var line = _step5.value; - var match; - var a; - if (match = line.match(/^Start(\w+)/)) { - section = match[1]; - continue; - } else if (match = line.match(/^End(\w+)/)) { - section = ''; - continue; - } - switch (section) { - case 'FontMetrics': - match = line.match(/(^\w+)\s+(.*)/); - var key = match[1]; - var value = match[2]; - if (a = this.attributes[key]) { - if (!Array.isArray(a)) { - a = this.attributes[key] = [a]; - } - a.push(value); - } else { - this.attributes[key] = value; - } - break; - case 'CharMetrics': - if (!/^CH?\s/.test(line)) { - continue; - } - var name = line.match(/\bN\s+(\.?\w+)\s*;/)[1]; - this.glyphWidths[name] = +line.match(/\bWX\s+(\d+)\s*;/)[1]; - break; - case 'KernPairs': - match = line.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/); - if (match) { - this.kernPairs[match[1] + '\0' + match[2]] = parseInt(match[3]); - } - break; - } - } - }; - _proto10.encodeText = function encodeText(text) { - var res = []; - for (var i = 0, len = text.length; i < len; i++) { - var char = text.charCodeAt(i); - char = WIN_ANSI_MAP[char] || char; - res.push(char.toString(16)); - } - return res; - }; - _proto10.glyphsForString = function glyphsForString(string) { - var glyphs = []; - for (var i = 0, len = string.length; i < len; i++) { - var charCode = string.charCodeAt(i); - glyphs.push(this.characterToGlyph(charCode)); - } - return glyphs; - }; - _proto10.characterToGlyph = function characterToGlyph(character) { - return characters[WIN_ANSI_MAP[character] || character] || '.notdef'; - }; - _proto10.widthOfGlyph = function widthOfGlyph(glyph) { - return this.glyphWidths[glyph] || 0; - }; - _proto10.getKernPair = function getKernPair(left, right) { - return this.kernPairs[left + '\0' + right] || 0; - }; - _proto10.advancesForGlyphs = function advancesForGlyphs(glyphs) { - var advances = []; - for (var index = 0; index < glyphs.length; index++) { - var left = glyphs[index]; - var right = glyphs[index + 1]; - advances.push(this.widthOfGlyph(left) + this.getKernPair(left, right)); - } - return advances; - }; - return AFMFont; -}(); -var PDFFont = /*#__PURE__*/function () { - function PDFFont() {} - var _proto11 = PDFFont.prototype; - _proto11.encode = function encode() { - throw new Error('Must be implemented by subclasses'); - }; - _proto11.widthOfString = function widthOfString() { - throw new Error('Must be implemented by subclasses'); - }; - _proto11.ref = function ref() { - return this.dictionary != null ? this.dictionary : this.dictionary = this.document.ref(); - }; - _proto11.finalize = function finalize() { - if (this.embedded || this.dictionary == null) { - return; - } - this.embed(); - return this.embedded = true; - }; - _proto11.embed = function embed() { - throw new Error('Must be implemented by subclasses'); - }; - _proto11.lineHeight = function lineHeight(size, includeGap) { - if (includeGap == null) { - includeGap = false; - } - var gap = includeGap ? this.lineGap : 0; - return (this.ascender + gap - this.descender) / 1000 * size; - }; - return PDFFont; -}(); // This insanity is so bundlers can inline the font files -var STANDARD_FONTS = { - Courier: function Courier() { - return fs.readFileSync(__webpack_dirname__ + '/data/Courier.afm', 'utf8'); - }, - 'Courier-Bold': function CourierBold() { - return fs.readFileSync(__webpack_dirname__ + '/data/Courier-Bold.afm', 'utf8'); - }, - 'Courier-Oblique': function CourierOblique() { - return fs.readFileSync(__webpack_dirname__ + '/data/Courier-Oblique.afm', 'utf8'); - }, - 'Courier-BoldOblique': function CourierBoldOblique() { - return fs.readFileSync(__webpack_dirname__ + '/data/Courier-BoldOblique.afm', 'utf8'); - }, - Helvetica: function Helvetica() { - return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica.afm', 'utf8'); - }, - 'Helvetica-Bold': function HelveticaBold() { - return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-Bold.afm', 'utf8'); - }, - 'Helvetica-Oblique': function HelveticaOblique() { - return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-Oblique.afm', 'utf8'); - }, - 'Helvetica-BoldOblique': function HelveticaBoldOblique() { - return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-BoldOblique.afm', 'utf8'); - }, - 'Times-Roman': function TimesRoman() { - return fs.readFileSync(__webpack_dirname__ + '/data/Times-Roman.afm', 'utf8'); - }, - 'Times-Bold': function TimesBold() { - return fs.readFileSync(__webpack_dirname__ + '/data/Times-Bold.afm', 'utf8'); - }, - 'Times-Italic': function TimesItalic() { - return fs.readFileSync(__webpack_dirname__ + '/data/Times-Italic.afm', 'utf8'); - }, - 'Times-BoldItalic': function TimesBoldItalic() { - return fs.readFileSync(__webpack_dirname__ + '/data/Times-BoldItalic.afm', 'utf8'); - }, - Symbol: function Symbol() { - return fs.readFileSync(__webpack_dirname__ + '/data/Symbol.afm', 'utf8'); - }, - ZapfDingbats: function ZapfDingbats() { - return fs.readFileSync(__webpack_dirname__ + '/data/ZapfDingbats.afm', 'utf8'); - } -}; -var StandardFont = /*#__PURE__*/function (_PDFFont) { - function StandardFont(document, name, id) { - var _this6; - _this6 = _PDFFont.call(this) || this; - _this6.document = document; - _this6.name = name; - _this6.id = id; - _this6.font = new AFMFont(STANDARD_FONTS[_this6.name]()); - var _this6$font = _this6.font; - _this6.ascender = _this6$font.ascender; - _this6.descender = _this6$font.descender; - _this6.bbox = _this6$font.bbox; - _this6.lineGap = _this6$font.lineGap; - _this6.xHeight = _this6$font.xHeight; - _this6.capHeight = _this6$font.capHeight; - return _this6; - } - _inheritsLoose(StandardFont, _PDFFont); - var _proto12 = StandardFont.prototype; - _proto12.embed = function embed() { - this.dictionary.data = { - Type: 'Font', - BaseFont: this.name, - Subtype: 'Type1', - Encoding: 'WinAnsiEncoding' - }; - return this.dictionary.end(); - }; - _proto12.encode = function encode(text) { - var encoded = this.font.encodeText(text); - var glyphs = this.font.glyphsForString("" + text); - var advances = this.font.advancesForGlyphs(glyphs); - var positions = []; - for (var i = 0; i < glyphs.length; i++) { - var glyph = glyphs[i]; - positions.push({ - xAdvance: advances[i], - yAdvance: 0, - xOffset: 0, - yOffset: 0, - advanceWidth: this.font.widthOfGlyph(glyph) - }); - } - return [encoded, positions]; - }; - _proto12.widthOfString = function widthOfString(string, size) { - var glyphs = this.font.glyphsForString("" + string); - var advances = this.font.advancesForGlyphs(glyphs); - var width = 0; - for (var _iterator6 = _createForOfIteratorHelperLoose(advances), _step6; !(_step6 = _iterator6()).done;) { - var advance = _step6.value; - width += advance; - } - var scale = size / 1000; - return width * scale; - }; - StandardFont.isStandardFont = function isStandardFont(name) { - return name in STANDARD_FONTS; - }; - return StandardFont; -}(PDFFont); -var toHex = function toHex(num) { - return ("0000" + num.toString(16)).slice(-4); -}; -var EmbeddedFont = /*#__PURE__*/function (_PDFFont2) { - function EmbeddedFont(document, font, id) { - var _this7; - _this7 = _PDFFont2.call(this) || this; - _this7.document = document; - _this7.font = font; - _this7.id = id; - _this7.subset = _this7.font.createSubset(); - _this7.unicode = [[0]]; - _this7.widths = [_this7.font.getGlyph(0).advanceWidth]; - _this7.name = _this7.font.postscriptName; - _this7.scale = 1000 / _this7.font.unitsPerEm; - _this7.ascender = _this7.font.ascent * _this7.scale; - _this7.descender = _this7.font.descent * _this7.scale; - _this7.xHeight = _this7.font.xHeight * _this7.scale; - _this7.capHeight = _this7.font.capHeight * _this7.scale; - _this7.lineGap = _this7.font.lineGap * _this7.scale; - _this7.bbox = _this7.font.bbox; - if (document.options.fontLayoutCache !== false) { - _this7.layoutCache = Object.create(null); - } - return _this7; - } - _inheritsLoose(EmbeddedFont, _PDFFont2); - var _proto13 = EmbeddedFont.prototype; - _proto13.layoutRun = function layoutRun(text, features) { - var run = this.font.layout(text, features); - - // Normalize position values - for (var i = 0; i < run.positions.length; i++) { - var position = run.positions[i]; - for (var key in position) { - position[key] *= this.scale; - } - position.advanceWidth = run.glyphs[i].advanceWidth * this.scale; - } - return run; - }; - _proto13.layoutCached = function layoutCached(text) { - if (!this.layoutCache) { - return this.layoutRun(text); - } - var cached; - if (cached = this.layoutCache[text]) { - return cached; - } - var run = this.layoutRun(text); - this.layoutCache[text] = run; - return run; - }; - _proto13.layout = function layout(text, features, onlyWidth) { - // Skip the cache if any user defined features are applied - if (features) { - return this.layoutRun(text, features); - } - var glyphs = onlyWidth ? null : []; - var positions = onlyWidth ? null : []; - var advanceWidth = 0; - - // Split the string by words to increase cache efficiency. - // For this purpose, spaces and tabs are a good enough delimeter. - var last = 0; - var index = 0; - while (index <= text.length) { - var needle; - if (index === text.length && last < index || (needle = text.charAt(index), [' ', '\t'].includes(needle))) { - var run = this.layoutCached(text.slice(last, ++index)); - if (!onlyWidth) { - glyphs = glyphs.concat(run.glyphs); - positions = positions.concat(run.positions); - } - advanceWidth += run.advanceWidth; - last = index; - } else { - index++; - } - } - return { - glyphs: glyphs, - positions: positions, - advanceWidth: advanceWidth - }; - }; - _proto13.encode = function encode(text, features) { - var _this$layout = this.layout(text, features), - glyphs = _this$layout.glyphs, - positions = _this$layout.positions; - var res = []; - for (var i = 0; i < glyphs.length; i++) { - var glyph = glyphs[i]; - var gid = this.subset.includeGlyph(glyph.id); - res.push(("0000" + gid.toString(16)).slice(-4)); - if (this.widths[gid] == null) { - this.widths[gid] = glyph.advanceWidth * this.scale; - } - if (this.unicode[gid] == null) { - this.unicode[gid] = glyph.codePoints; - } - } - return [res, positions]; - }; - _proto13.widthOfString = function widthOfString(string, size, features) { - var width = this.layout(string, features, true).advanceWidth; - var scale = size / 1000; - return width * scale; - }; - _proto13.embed = function embed() { - var _this8 = this; - var isCFF = this.subset.cff != null; - var fontFile = this.document.ref(); - if (isCFF) { - fontFile.data.Subtype = 'CIDFontType0C'; - } - this.subset.encodeStream().on('data', function (data) { - return fontFile.write(data); - }).on('end', function () { - return fontFile.end(); - }); - var familyClass = ((this.font['OS/2'] != null ? this.font['OS/2'].sFamilyClass : undefined) || 0) >> 8; - var flags = 0; - if (this.font.post.isFixedPitch) { - flags |= 1 << 0; - } - if (1 <= familyClass && familyClass <= 7) { - flags |= 1 << 1; - } - flags |= 1 << 2; // assume the font uses non-latin characters - if (familyClass === 10) { - flags |= 1 << 3; - } - if (this.font.head.macStyle.italic) { - flags |= 1 << 6; - } - - // generate a tag (6 uppercase letters. 17 is the char code offset from '0' to 'A'. 73 will map to 'Z') - var tag = [1, 2, 3, 4, 5, 6].map(function (i) { - return String.fromCharCode((_this8.id.charCodeAt(i) || 73) + 17); - }).join(''); - var name = tag + '+' + this.font.postscriptName.replaceAll(' ', '_'); - var bbox = this.font.bbox; - var descriptor = this.document.ref({ - Type: 'FontDescriptor', - FontName: name, - Flags: flags, - FontBBox: [bbox.minX * this.scale, bbox.minY * this.scale, bbox.maxX * this.scale, bbox.maxY * this.scale], - ItalicAngle: this.font.italicAngle, - Ascent: this.ascender, - Descent: this.descender, - CapHeight: (this.font.capHeight || this.font.ascent) * this.scale, - XHeight: (this.font.xHeight || 0) * this.scale, - StemV: 0 - }); // not sure how to calculate this - - if (isCFF) { - descriptor.data.FontFile3 = fontFile; - } else { - descriptor.data.FontFile2 = fontFile; - } - if (this.document.subset && this.document.subset === 1) { - var CIDSet = Buffer.from('FFFFFFFFC0', 'hex'); - var CIDSetRef = this.document.ref(); - CIDSetRef.write(CIDSet); - CIDSetRef.end(); - descriptor.data.CIDSet = CIDSetRef; - } - descriptor.end(); - var descendantFontData = { - Type: 'Font', - Subtype: 'CIDFontType0', - BaseFont: name, - CIDSystemInfo: { - Registry: new String('Adobe'), - Ordering: new String('Identity'), - Supplement: 0 - }, - FontDescriptor: descriptor, - W: [0, this.widths] - }; - if (!isCFF) { - descendantFontData.Subtype = 'CIDFontType2'; - descendantFontData.CIDToGIDMap = 'Identity'; - } - var descendantFont = this.document.ref(descendantFontData); - descendantFont.end(); - this.dictionary.data = { - Type: 'Font', - Subtype: 'Type0', - BaseFont: name, - Encoding: 'Identity-H', - DescendantFonts: [descendantFont], - ToUnicode: this.toUnicodeCmap() - }; - return this.dictionary.end(); - } - - // Maps the glyph ids encoded in the PDF back to unicode strings - // Because of ligature substitutions and the like, there may be one or more - // unicode characters represented by each glyph. - ; - _proto13.toUnicodeCmap = function toUnicodeCmap() { - var cmap = this.document.ref(); - var entries = []; - for (var _iterator7 = _createForOfIteratorHelperLoose(this.unicode), _step7; !(_step7 = _iterator7()).done;) { - var codePoints = _step7.value; - var encoded = []; - - // encode codePoints to utf16 - for (var _iterator8 = _createForOfIteratorHelperLoose(codePoints), _step8; !(_step8 = _iterator8()).done;) { - var value = _step8.value; - if (value > 0xffff) { - value -= 0x10000; - encoded.push(toHex(value >>> 10 & 0x3ff | 0xd800)); - value = 0xdc00 | value & 0x3ff; - } - encoded.push(toHex(value)); - } - entries.push("<" + encoded.join(' ') + ">"); - } - var chunkSize = 256; - var chunks = Math.ceil(entries.length / chunkSize); - var ranges = []; - for (var i = 0; i < chunks; i++) { - var start = i * chunkSize; - var end = Math.min((i + 1) * chunkSize, entries.length); - ranges.push("<" + toHex(start) + "> <" + toHex(end - 1) + "> [" + entries.slice(start, end).join(' ') + "]"); - } - cmap.end("/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n" + ranges.join('\n') + "\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend"); - return cmap; - }; - return EmbeddedFont; -}(PDFFont); -var PDFFontFactory = /*#__PURE__*/function () { - function PDFFontFactory() {} - PDFFontFactory.open = function open(document, src, family, id) { - var font; - if (typeof src === 'string') { - if (StandardFont.isStandardFont(src)) { - return new StandardFont(document, src, id); - } - src = fs.readFileSync(src); - } - if (Buffer.isBuffer(src)) { - font = _fontkit.default.create(src, family); - } else if (src instanceof Uint8Array) { - font = _fontkit.default.create(Buffer.from(src), family); - } else if (src instanceof ArrayBuffer) { - font = _fontkit.default.create(Buffer.from(new Uint8Array(src)), family); - } - if (font == null) { - throw new Error('Not a supported font format or standard PDF font.'); - } - return new EmbeddedFont(document, font, id); - }; - return PDFFontFactory; -}(); -var isEqualFont = function isEqualFont(font1, font2) { - var _font1$font$_tables, _font2$font$_tables, _font1$font$_tables2, _font2$font$_tables2; - // compare font checksum - if (((_font1$font$_tables = font1.font._tables) == null || (_font1$font$_tables = _font1$font$_tables.head) == null ? void 0 : _font1$font$_tables.checkSumAdjustment) !== ((_font2$font$_tables = font2.font._tables) == null || (_font2$font$_tables = _font2$font$_tables.head) == null ? void 0 : _font2$font$_tables.checkSumAdjustment)) { - return false; - } - - // compare font name table - if (JSON.stringify((_font1$font$_tables2 = font1.font._tables) == null || (_font1$font$_tables2 = _font1$font$_tables2.name) == null ? void 0 : _font1$font$_tables2.records) !== JSON.stringify((_font2$font$_tables2 = font2.font._tables) == null || (_font2$font$_tables2 = _font2$font$_tables2.name) == null ? void 0 : _font2$font$_tables2.records)) { - return false; - } - return true; -}; -var FontsMixin = { - initFonts: function initFonts() { - var defaultFont = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'Helvetica'; - // Lookup table for embedded fonts - this._fontFamilies = {}; - this._fontCount = 0; - - // Font state - this._fontSize = 12; - this._font = null; - this._registeredFonts = {}; - - // Set the default font - if (defaultFont) { - this.font(defaultFont); - } - }, - font: function font(src, family, size) { - var cacheKey, font; - if (typeof family === 'number') { - size = family; - family = null; - } - - // check registered fonts if src is a string - if (typeof src === 'string' && this._registeredFonts[src]) { - cacheKey = src; - var _this$_registeredFont = this._registeredFonts[src]; - src = _this$_registeredFont.src; - family = _this$_registeredFont.family; - } else { - cacheKey = family || src; - if (typeof cacheKey !== 'string') { - cacheKey = null; - } - } - if (size != null) { - this.fontSize(size); - } - - // fast path: check if the font is already in the PDF - if (font = this._fontFamilies[cacheKey]) { - this._font = font; - return this; - } - - // load the font - var id = "F" + ++this._fontCount; - this._font = PDFFontFactory.open(this, src, family, id); - - // check for existing font familes with the same name already in the PDF - // useful if the font was passed as a buffer - if ((font = this._fontFamilies[this._font.name]) && isEqualFont(this._font, font)) { - this._font = font; - return this; - } - - // save the font for reuse later - if (cacheKey) { - this._fontFamilies[cacheKey] = this._font; - } - if (this._font.name) { - this._fontFamilies[this._font.name] = this._font; - } - return this; - }, - fontSize: function fontSize(_fontSize) { - this._fontSize = _fontSize; - return this; - }, - currentLineHeight: function currentLineHeight(includeGap) { - if (includeGap == null) { - includeGap = false; - } - return this._font.lineHeight(this._fontSize, includeGap); - }, - registerFont: function registerFont(name, src, family) { - this._registeredFonts[name] = { - src: src, - family: family - }; - return this; - } -}; -var SOFT_HYPHEN = "\xAD"; -var HYPHEN = '-'; -var LineWrapper = /*#__PURE__*/function (_EventEmitter) { - function LineWrapper(document, options) { - var _this9; - _this9 = _EventEmitter.call(this) || this; - _this9.document = document; - _this9.horizontalScaling = options.horizontalScaling || 100; - _this9.indent = (options.indent || 0) * _this9.horizontalScaling / 100; - _this9.characterSpacing = (options.characterSpacing || 0) * _this9.horizontalScaling / 100; - _this9.wordSpacing = (options.wordSpacing === 0) * _this9.horizontalScaling / 100; - _this9.columns = options.columns || 1; - _this9.columnGap = (options.columnGap != null ? options.columnGap : 18) * _this9.horizontalScaling / 100; // 1/4 inch - _this9.lineWidth = (options.width * _this9.horizontalScaling / 100 - _this9.columnGap * (_this9.columns - 1)) / _this9.columns; - _this9.spaceLeft = _this9.lineWidth; - _this9.startX = _this9.document.x; - _this9.startY = _this9.document.y; - _this9.column = 1; - _this9.ellipsis = options.ellipsis; - _this9.continuedX = 0; - _this9.features = options.features; - - // calculate the maximum Y position the text can appear at - if (options.height != null) { - _this9.height = options.height; - _this9.maxY = _this9.startY + options.height; - } else { - _this9.maxY = _this9.document.page.maxY(); - } - - // handle paragraph indents - _this9.on('firstLine', function (options) { - // if this is the first line of the text segment, and - // we're continuing where we left off, indent that much - // otherwise use the user specified indent option - var indent = _this9.continuedX || _this9.indent; - _this9.document.x += indent; - _this9.lineWidth -= indent; - - // if indentAllLines is set to true - // we're not resetting the indentation for this paragraph after the first line - if (options.indentAllLines) { - return; - } - - // otherwise we start the next line without indent - return _this9.once('line', function () { - _this9.document.x -= indent; - _this9.lineWidth += indent; - if (options.continued && !_this9.continuedX) { - _this9.continuedX = _this9.indent; - } - if (!options.continued) { - return _this9.continuedX = 0; - } - }); - }); - - // handle left aligning last lines of paragraphs - _this9.on('lastLine', function (options) { - var align = options.align; - if (align === 'justify') { - options.align = 'left'; - } - _this9.lastLine = true; - return _this9.once('line', function () { - _this9.document.y += options.paragraphGap || 0; - options.align = align; - return _this9.lastLine = false; - }); - }); - return _this9; - } - _inheritsLoose(LineWrapper, _EventEmitter); - var _proto14 = LineWrapper.prototype; - _proto14.wordWidth = function wordWidth(word) { - return this.document.widthOfString(word, this) + this.characterSpacing + this.wordSpacing; - }; - _proto14.canFit = function canFit(word, w) { - if (word[word.length - 1] != SOFT_HYPHEN) { - return w <= this.spaceLeft; - } - return w + this.wordWidth(HYPHEN) <= this.spaceLeft; - }; - _proto14.eachWord = function eachWord(text, fn) { - // setup a unicode line breaker - var bk; - var breaker = new _linebreak.default(text); - var last = null; - var wordWidths = Object.create(null); - while (bk = breaker.nextBreak()) { - var shouldContinue; - var word = text.slice((last != null ? last.position : undefined) || 0, bk.position); - var w = wordWidths[word] != null ? wordWidths[word] : wordWidths[word] = this.wordWidth(word); - - // if the word is longer than the whole line, chop it up - // TODO: break by grapheme clusters, not JS string characters - if (w > this.lineWidth + this.continuedX) { - // make some fake break objects - var lbk = last; - var fbk = {}; - while (word.length) { - // fit as much of the word as possible into the space we have - var l, mightGrow; - if (w > this.spaceLeft) { - // start our check at the end of our available space - this method is faster than a loop of each character and it resolves - // an issue with long loops when processing massive words, such as a huge number of spaces - l = Math.ceil(this.spaceLeft / (w / word.length)); - w = this.wordWidth(word.slice(0, l)); - mightGrow = w <= this.spaceLeft && l < word.length; - } else { - l = word.length; - } - var mustShrink = w > this.spaceLeft && l > 0; - // shrink or grow word as necessary after our near-guess above - while (mustShrink || mightGrow) { - if (mustShrink) { - w = this.wordWidth(word.slice(0, --l)); - mustShrink = w > this.spaceLeft && l > 0; - } else { - w = this.wordWidth(word.slice(0, ++l)); - mustShrink = w > this.spaceLeft && l > 0; - mightGrow = w <= this.spaceLeft && l < word.length; - } - } - - // check for the edge case where a single character cannot fit into a line. - if (l === 0 && this.spaceLeft === this.lineWidth) { - l = 1; - } - - // send a required break unless this is the last piece and a linebreak is not specified - fbk.required = bk.required || l < word.length; - shouldContinue = fn(word.slice(0, l), w, fbk, lbk); - lbk = { - required: false - }; - - // get the remaining piece of the word - word = word.slice(l); - w = this.wordWidth(word); - if (shouldContinue === false) { - break; - } - } - } else { - // otherwise just emit the break as it was given to us - shouldContinue = fn(word, w, bk, last); - } - if (shouldContinue === false) { - break; - } - last = bk; - } - }; - _proto14.wrap = function wrap(text, options) { - var _this0 = this; - // override options from previous continued fragments - this.horizontalScaling = options.horizontalScaling || 100; - if (options.indent != null) { - this.indent = options.indent * this.horizontalScaling / 100; - } - if (options.characterSpacing != null) { - this.characterSpacing = options.characterSpacing * this.horizontalScaling / 100; - } - if (options.wordSpacing != null) { - this.wordSpacing = options.wordSpacing * this.horizontalScaling / 100; - } - if (options.ellipsis != null) { - this.ellipsis = options.ellipsis; - } - - // make sure we're actually on the page - // and that the first line of is never by - // itself at the bottom of a page (orphans) - var nextY = this.document.y + this.document.currentLineHeight(true); - if (this.document.y > this.maxY || nextY > this.maxY) { - this.nextSection(); - } - var buffer = ''; - var textWidth = 0; - var wc = 0; - var lc = 0; - var y = this.document.y; // used to reset Y pos if options.continued (below) - var emitLine = function emitLine() { - options.textWidth = textWidth + _this0.wordSpacing * (wc - 1); - options.wordCount = wc; - options.lineWidth = _this0.lineWidth; - y = _this0.document.y; - _this0.emit('line', buffer, options, _this0); - return lc++; - }; - this.emit('sectionStart', options, this); - this.eachWord(text, function (word, w, bk, last) { - if (last == null || last.required) { - _this0.emit('firstLine', options, _this0); - _this0.spaceLeft = _this0.lineWidth; - } - if (_this0.canFit(word, w)) { - buffer += word; - textWidth += w; - wc++; - } - if (bk.required || !_this0.canFit(word, w)) { - // if the user specified a max height and an ellipsis, and is about to pass the - // max height and max columns after the next line, append the ellipsis - var lh = _this0.document.currentLineHeight(true); - if (_this0.height != null && _this0.ellipsis && _this0.document.y + lh * 2 > _this0.maxY && _this0.column >= _this0.columns) { - if (_this0.ellipsis === true) { - _this0.ellipsis = '…'; - } // map default ellipsis character - buffer = buffer.replace(/\s+$/, ''); - textWidth = _this0.wordWidth(buffer + _this0.ellipsis); - - // remove characters from the buffer until the ellipsis fits - // to avoid infinite loop need to stop while-loop if buffer is empty string - while (buffer && textWidth > _this0.lineWidth) { - buffer = buffer.slice(0, -1).replace(/\s+$/, ''); - textWidth = _this0.wordWidth(buffer + _this0.ellipsis); - } - // need to add ellipsis only if there is enough space for it - if (textWidth <= _this0.lineWidth) { - buffer = buffer + _this0.ellipsis; - } - textWidth = _this0.wordWidth(buffer); - } - if (bk.required) { - if (w > _this0.spaceLeft) { - emitLine(); - buffer = word; - textWidth = w; - wc = 1; - } - _this0.emit('lastLine', options, _this0); - } - - // Previous entry is a soft hyphen - add visible hyphen. - if (buffer[buffer.length - 1] == SOFT_HYPHEN) { - buffer = buffer.slice(0, -1) + HYPHEN; - _this0.spaceLeft -= _this0.wordWidth(HYPHEN); - } - emitLine(); - - // if we've reached the edge of the page, - // continue on a new page or column - if (_this0.document.y + lh > _this0.maxY) { - var shouldContinue = _this0.nextSection(); - - // stop if we reached the maximum height - if (!shouldContinue) { - wc = 0; - buffer = ''; - return false; - } - } - - // reset the space left and buffer - if (bk.required) { - _this0.spaceLeft = _this0.lineWidth; - buffer = ''; - textWidth = 0; - return wc = 0; - } else { - // reset the space left and buffer - _this0.spaceLeft = _this0.lineWidth - w; - buffer = word; - textWidth = w; - return wc = 1; - } - } else { - return _this0.spaceLeft -= w; - } - }); - if (wc > 0) { - this.emit('lastLine', options, this); - emitLine(); - } - this.emit('sectionEnd', options, this); - - // if the wrap is set to be continued, save the X position - // to start the first line of the next segment at, and reset - // the y position - if (options.continued === true) { - if (lc > 1) { - this.continuedX = 0; - } - this.continuedX += options.textWidth || 0; - return this.document.y = y; - } else { - return this.document.x = this.startX; - } - }; - _proto14.nextSection = function nextSection(options) { - this.emit('sectionEnd', options, this); - if (++this.column > this.columns) { - // if a max height was specified by the user, we're done. - // otherwise, the default is to make a new page at the bottom. - if (this.height != null) { - return false; - } - this.document.continueOnNewPage(); - this.column = 1; - this.startY = this.document.page.margins.top; - this.maxY = this.document.page.maxY(); - this.document.x = this.startX; - if (this.document._fillColor) { - var _this$document; - (_this$document = this.document).fillColor.apply(_this$document, this.document._fillColor); - } - this.emit('pageBreak', options, this); - } else { - this.document.x += this.lineWidth + this.columnGap; - this.document.y = this.startY; - this.emit('columnBreak', options, this); - } - this.emit('sectionStart', options, this); - return true; - }; - return LineWrapper; -}(_events.EventEmitter); -var number$2 = PDFObject.number; -var TextMixin = { - initText: function initText() { - this._line = this._line.bind(this); - // Current coordinates - this.x = 0; - this.y = 0; - return this._lineGap = 0; - }, - lineGap: function lineGap(_lineGap) { - this._lineGap = _lineGap; - return this; - }, - moveDown: function moveDown(lines) { - if (lines == null) { - lines = 1; - } - this.y += this.currentLineHeight(true) * lines + this._lineGap; - return this; - }, - moveUp: function moveUp(lines) { - if (lines == null) { - lines = 1; - } - this.y -= this.currentLineHeight(true) * lines + this._lineGap; - return this; - }, - _text: function _text(text, x, y, options, lineCallback) { - var _this1 = this; - options = this._initOptions(x, y, options); - - // Convert text to a string - text = text == null ? '' : "" + text; - - // if the wordSpacing option is specified, remove multiple consecutive spaces - if (options.wordSpacing) { - text = text.replace(/\s{2,}/g, ' '); - } - var addStructure = function addStructure() { - if (options.structParent) { - options.structParent.add(_this1.struct(options.structType || 'P', [_this1.markStructureContent(options.structType || 'P')])); - } - }; - - // word wrapping - if (options.width) { - var wrapper = this._wrapper; - if (!wrapper) { - wrapper = new LineWrapper(this, options); - wrapper.on('line', lineCallback); - wrapper.on('firstLine', addStructure); - } - this._wrapper = options.continued ? wrapper : null; - this._textOptions = options.continued ? options : null; - wrapper.wrap(text, options); - - // render paragraphs as single lines - } else { - for (var _iterator9 = _createForOfIteratorHelperLoose(text.split('\n')), _step9; !(_step9 = _iterator9()).done;) { - var line = _step9.value; - addStructure(); - lineCallback(line, options); - } - } - return this; - }, - text: function text(_text2, x, y, options) { - return this._text(_text2, x, y, options, this._line); - }, - widthOfString: function widthOfString(string) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var horizontalScaling = options.horizontalScaling || 100; - return (this._font.widthOfString(string, this._fontSize, options.features) + (options.characterSpacing || 0) * (string.length - 1)) * horizontalScaling / 100; - }, - heightOfString: function heightOfString(text, options) { - var _this10 = this; - var x = this.x, - y = this.y; - options = this._initOptions(options); - options.height = Infinity; // don't break pages - - var lineGap = options.lineGap || this._lineGap || 0; - this._text(text, this.x, this.y, options, function () { - return _this10.y += _this10.currentLineHeight(true) + lineGap; - }); - var height = this.y - y; - this.x = x; - this.y = y; - return height; - }, - list: function list(_list, x, y, options, wrapper) { - options = this._initOptions(x, y, options); - var listType = options.listType || 'bullet'; - var unit = Math.round(this._font.ascender / 1000 * this._fontSize); - var midLine = unit / 2; - var r = options.bulletRadius || unit / 3; - var indent = options.textIndent || (listType === 'bullet' ? r * 5 : unit * 2); - var itemIndent = options.bulletIndent || (listType === 'bullet' ? r * 8 : unit * 2); - var level = 1; - var items = []; - var levels = []; - var numbers = []; - var _flatten = function flatten(list) { - var n = 1; - for (var i = 0; i < list.length; i++) { - var item = list[i]; - if (Array.isArray(item)) { - level++; - _flatten(item); - level--; - } else { - items.push(item); - levels.push(level); - if (listType !== 'bullet') { - numbers.push(n++); - } - } - } - }; - _flatten(_list); - var label = function label(n) { - switch (listType) { - case 'numbered': - return n + "."; - case 'lettered': - var letter = String.fromCharCode((n - 1) % 26 + 65); - var times = Math.floor((n - 1) / 26 + 1); - var text = Array(times + 1).join(letter); - return text + "."; - } - }; - var drawListItem = function drawListItem(listItem, i) { - var _this11 = this; - wrapper = new LineWrapper(this, options); - wrapper.on('line', this._line); - level = 1; - wrapper.once('firstLine', function () { - var item, itemType, labelType, bodyType; - if (options.structParent) { - if (options.structTypes) { - var _options$structTypes = options.structTypes; - itemType = _options$structTypes[0]; - labelType = _options$structTypes[1]; - bodyType = _options$structTypes[2]; - } else { - itemType = 'LI'; - labelType = 'Lbl'; - bodyType = 'LBody'; - } - } - if (itemType) { - item = _this11.struct(itemType); - options.structParent.add(item); - } else if (options.structParent) { - item = options.structParent; - } - var l; - if ((l = levels[i++]) !== level) { - var diff = itemIndent * (l - level); - _this11.x += diff; - wrapper.lineWidth -= diff; - level = l; - } - if (item && (labelType || bodyType)) { - item.add(_this11.struct(labelType || bodyType, [_this11.markStructureContent(labelType || bodyType)])); - } - switch (listType) { - case 'bullet': - _this11.circle(_this11.x - indent + r, _this11.y + midLine, r); - _this11.fill(); - break; - case 'numbered': - case 'lettered': - var text = label(numbers[i - 1]); - _this11._fragment(text, _this11.x - indent, _this11.y, options); - break; - } - if (item && labelType && bodyType) { - item.add(_this11.struct(bodyType, [_this11.markStructureContent(bodyType)])); - } - if (item && item !== options.structParent) { - item.end(); - } - }); - wrapper.on('sectionStart', function () { - var pos = indent + itemIndent * (level - 1); - _this11.x += pos; - return wrapper.lineWidth -= pos; - }); - wrapper.on('sectionEnd', function () { - var pos = indent + itemIndent * (level - 1); - _this11.x -= pos; - return wrapper.lineWidth += pos; - }); - wrapper.wrap(listItem, options); - }; - for (var i = 0; i < items.length; i++) { - drawListItem.call(this, items[i], i); - } - return this; - }, - _initOptions: function _initOptions() { - var x = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var y = arguments.length > 1 ? arguments[1] : undefined; - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - if (typeof x === 'object') { - options = x; - x = null; - } - - // clone options object - var result = Object.assign({}, options); - - // extend options with previous values for continued text - if (this._textOptions) { - for (var key in this._textOptions) { - var val = this._textOptions[key]; - if (key !== 'continued') { - if (result[key] === undefined) { - result[key] = val; - } - } - } - } - - // Update the current position - if (x != null) { - this.x = x; - } - if (y != null) { - this.y = y; - } - - // wrap to margins if no x or y position passed - if (result.lineBreak !== false) { - if (result.width == null) { - result.width = this.page.width - this.x - this.page.margins.right; - } - result.width = Math.max(result.width, 0); - } - if (!result.columns) { - result.columns = 0; - } - if (result.columnGap == null) { - result.columnGap = 18; - } // 1/4 inch - - return result; - }, - _line: function _line(text) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var wrapper = arguments.length > 2 ? arguments[2] : undefined; - this._fragment(text, this.x, this.y, options); - var lineGap = options.lineGap || this._lineGap || 0; - if (!wrapper) { - return this.x += this.widthOfString(text, options); - } else { - return this.y += this.currentLineHeight(true) + lineGap; - } - }, - _fragment: function _fragment(text, x, y, options) { - var _this12 = this; - var dy, encoded, i, positions, textWidth, words; - text = ("" + text).replace(/\n/g, ''); - if (text.length === 0) { - return; - } - - // handle options - var align = options.align || 'left'; - var wordSpacing = options.wordSpacing || 0; - var characterSpacing = options.characterSpacing || 0; - var horizontalScaling = options.horizontalScaling || 100; - - // text alignments - if (options.width) { - switch (align) { - case 'right': - textWidth = this.widthOfString(text.replace(/\s+$/, ''), options); - x += options.lineWidth - textWidth; - break; - case 'center': - x += options.lineWidth / 2 - options.textWidth / 2; - break; - case 'justify': - // calculate the word spacing value - words = text.trim().split(/\s+/); - textWidth = this.widthOfString(text.replace(/\s+/g, ''), options); - var spaceWidth = this.widthOfString(' ') + characterSpacing; - wordSpacing = Math.max(0, (options.lineWidth - textWidth) / Math.max(1, words.length - 1) - spaceWidth); - break; - } - } - - // text baseline alignments based on http://wiki.apache.org/xmlgraphics-fop/LineLayout/AlignmentHandling - if (typeof options.baseline === 'number') { - dy = -options.baseline; - } else { - switch (options.baseline) { - case 'svg-middle': - dy = 0.5 * this._font.xHeight; - break; - case 'middle': - case 'svg-central': - dy = 0.5 * (this._font.descender + this._font.ascender); - break; - case 'bottom': - case 'ideographic': - dy = this._font.descender; - break; - case 'alphabetic': - dy = 0; - break; - case 'mathematical': - dy = 0.5 * this._font.ascender; - break; - case 'hanging': - dy = 0.8 * this._font.ascender; - break; - case 'top': - dy = this._font.ascender; - break; - default: - dy = this._font.ascender; - } - dy = dy / 1000 * this._fontSize; - } - - // calculate the actual rendered width of the string after word and character spacing - var renderedWidth = options.textWidth + wordSpacing * (options.wordCount - 1) + characterSpacing * (text.length - 1); - - // create link annotations if the link option is given - if (options.link != null) { - this.link(x, y, renderedWidth, this.currentLineHeight(), options.link); - } - if (options.goTo != null) { - this.goTo(x, y, renderedWidth, this.currentLineHeight(), options.goTo); - } - if (options.destination != null) { - this.addNamedDestination(options.destination, 'XYZ', x, y, null); - } - - // create underline - if (options.underline) { - this.save(); - if (!options.stroke) { - this.strokeColor.apply(this, this._fillColor || []); - } - var lineWidth = this._fontSize < 10 ? 0.5 : Math.floor(this._fontSize / 10); - this.lineWidth(lineWidth); - var lineY = y + this.currentLineHeight() - lineWidth; - this.moveTo(x, lineY); - this.lineTo(x + renderedWidth, lineY); - this.stroke(); - this.restore(); - } - - // create strikethrough line - if (options.strike) { - this.save(); - if (!options.stroke) { - this.strokeColor.apply(this, this._fillColor || []); - } - var _lineWidth = this._fontSize < 10 ? 0.5 : Math.floor(this._fontSize / 10); - this.lineWidth(_lineWidth); - var _lineY = y + this.currentLineHeight() / 2; - this.moveTo(x, _lineY); - this.lineTo(x + renderedWidth, _lineY); - this.stroke(); - this.restore(); - } - this.save(); - - // oblique (angle in degrees or boolean) - if (options.oblique) { - var skew; - if (typeof options.oblique === 'number') { - skew = -Math.tan(options.oblique * Math.PI / 180); - } else { - skew = -0.25; - } - this.transform(1, 0, 0, 1, x, y); - this.transform(1, 0, skew, 1, -skew * dy, 0); - this.transform(1, 0, 0, 1, -x, -y); - } - - // flip coordinate system - this.transform(1, 0, 0, -1, 0, this.page.height); - y = this.page.height - y - dy; - - // add current font to page if necessary - if (this.page.fonts[this._font.id] == null) { - this.page.fonts[this._font.id] = this._font.ref(); - } - - // begin the text object - this.addContent('BT'); - - // text position - this.addContent("1 0 0 1 " + number$2(x) + " " + number$2(y) + " Tm"); - - // font and font size - this.addContent("/" + this._font.id + " " + number$2(this._fontSize) + " Tf"); - - // rendering mode - var mode = options.fill && options.stroke ? 2 : options.stroke ? 1 : 0; - if (mode) { - this.addContent(mode + " Tr"); - } - - // Character spacing - if (characterSpacing) { - this.addContent(number$2(characterSpacing) + " Tc"); - } - - // Horizontal scaling - if (horizontalScaling !== 100) { - this.addContent(horizontalScaling + " Tz"); - } - - // Add the actual text - // If we have a word spacing value, we need to encode each word separately - // since the normal Tw operator only works on character code 32, which isn't - // used for embedded fonts. - if (wordSpacing) { - words = text.trim().split(/\s+/); - wordSpacing += this.widthOfString(' ') + characterSpacing; - wordSpacing *= 1000 / this._fontSize; - encoded = []; - positions = []; - for (var _iterator0 = _createForOfIteratorHelperLoose(words), _step0; !(_step0 = _iterator0()).done;) { - var word = _step0.value; - var _this$_font$encode = this._font.encode(word, options.features), - encodedWord = _this$_font$encode[0], - positionsWord = _this$_font$encode[1]; - encoded = encoded.concat(encodedWord); - positions = positions.concat(positionsWord); - - // add the word spacing to the end of the word - // clone object because of cache - var space = {}; - var object = positions[positions.length - 1]; - for (var key in object) { - var val = object[key]; - space[key] = val; - } - space.xAdvance += wordSpacing; - positions[positions.length - 1] = space; - } - } else { - var _this$_font$encode2 = this._font.encode(text, options.features); - encoded = _this$_font$encode2[0]; - positions = _this$_font$encode2[1]; - } - var scale = this._fontSize / 1000; - var commands = []; - var last = 0; - var hadOffset = false; - - // Adds a segment of text to the TJ command buffer - var addSegment = function addSegment(cur) { - if (last < cur) { - var hex = encoded.slice(last, cur).join(''); - var advance = positions[cur - 1].xAdvance - positions[cur - 1].advanceWidth; - commands.push("<" + hex + "> " + number$2(-advance)); - } - return last = cur; - }; - - // Flushes the current TJ commands to the output stream - var flush = function flush(i) { - addSegment(i); - if (commands.length > 0) { - _this12.addContent("[" + commands.join(' ') + "] TJ"); - return commands.length = 0; - } - }; - for (i = 0; i < positions.length; i++) { - // If we have an x or y offset, we have to break out of the current TJ command - // so we can move the text position. - var pos = positions[i]; - if (pos.xOffset || pos.yOffset) { - // Flush the current buffer - flush(i); - - // Move the text position and flush just the current character - this.addContent("1 0 0 1 " + number$2(x + pos.xOffset * scale) + " " + number$2(y + pos.yOffset * scale) + " Tm"); - flush(i + 1); - hadOffset = true; - } else { - // If the last character had an offset, reset the text position - if (hadOffset) { - this.addContent("1 0 0 1 " + number$2(x) + " " + number$2(y) + " Tm"); - hadOffset = false; - } - - // Group segments that don't have any advance adjustments - if (pos.xAdvance - pos.advanceWidth !== 0) { - addSegment(i + 1); - } - } - x += pos.xAdvance * scale; - } - - // Flush any remaining commands - flush(i); - - // end the text object - this.addContent('ET'); - - // restore flipped coordinate system - return this.restore(); - } -}; -var MARKERS = [0xffc0, 0xffc1, 0xffc2, 0xffc3, 0xffc5, 0xffc6, 0xffc7, 0xffc8, 0xffc9, 0xffca, 0xffcb, 0xffcc, 0xffcd, 0xffce, 0xffcf]; -var COLOR_SPACE_MAP = { - 1: 'DeviceGray', - 3: 'DeviceRGB', - 4: 'DeviceCMYK' -}; -var JPEG = /*#__PURE__*/function () { - function JPEG(data, label) { - var marker; - this.data = data; - this.label = label; - if (this.data.readUInt16BE(0) !== 0xffd8) { - throw 'SOI not found in JPEG'; - } - - // Parse the EXIF orientation - this.orientation = _jpegExif.default.fromBuffer(this.data).Orientation || 1; - var pos = 2; - while (pos < this.data.length) { - marker = this.data.readUInt16BE(pos); - pos += 2; - if (MARKERS.includes(marker)) { - break; - } - pos += this.data.readUInt16BE(pos); - } - if (!MARKERS.includes(marker)) { - throw 'Invalid JPEG.'; - } - pos += 2; - this.bits = this.data[pos++]; - this.height = this.data.readUInt16BE(pos); - pos += 2; - this.width = this.data.readUInt16BE(pos); - pos += 2; - var channels = this.data[pos++]; - this.colorSpace = COLOR_SPACE_MAP[channels]; - this.obj = null; - } - var _proto15 = JPEG.prototype; - _proto15.embed = function embed(document) { - if (this.obj) { - return; - } - this.obj = document.ref({ - Type: 'XObject', - Subtype: 'Image', - BitsPerComponent: this.bits, - Width: this.width, - Height: this.height, - ColorSpace: this.colorSpace, - Filter: 'DCTDecode' - }); - - // add extra decode params for CMYK images. By swapping the - // min and max values from the default, we invert the colors. See - // section 4.8.4 of the spec. - if (this.colorSpace === 'DeviceCMYK') { - this.obj.data['Decode'] = [1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0]; - } - this.obj.end(this.data); - - // free memory - return this.data = null; - }; - return JPEG; -}(); -var PNGImage = /*#__PURE__*/function () { - function PNGImage(data, label) { - this.label = label; - this.image = new _pngJs.default(data); - this.width = this.image.width; - this.height = this.image.height; - this.imgData = this.image.imgData; - this.obj = null; - } - var _proto16 = PNGImage.prototype; - _proto16.embed = function embed(document) { - var dataDecoded = false; - this.document = document; - if (this.obj) { - return; - } - var hasAlphaChannel = this.image.hasAlphaChannel; - var isInterlaced = this.image.interlaceMethod === 1; - this.obj = this.document.ref({ - Type: 'XObject', - Subtype: 'Image', - BitsPerComponent: hasAlphaChannel ? 8 : this.image.bits, - Width: this.width, - Height: this.height, - Filter: 'FlateDecode' - }); - if (!hasAlphaChannel) { - var params = this.document.ref({ - Predictor: isInterlaced ? 1 : 15, - Colors: this.image.colors, - BitsPerComponent: this.image.bits, - Columns: this.width - }); - this.obj.data['DecodeParms'] = params; - params.end(); - } - if (this.image.palette.length === 0) { - this.obj.data['ColorSpace'] = this.image.colorSpace; - } else { - // embed the color palette in the PDF as an object stream - var palette = this.document.ref(); - palette.end(Buffer.from(this.image.palette)); - - // build the color space array for the image - this.obj.data['ColorSpace'] = ['Indexed', 'DeviceRGB', this.image.palette.length / 3 - 1, palette]; - } - - // For PNG color types 0, 2 and 3, the transparency data is stored in - // a dedicated PNG chunk. - if (this.image.transparency.grayscale != null) { - // Use Color Key Masking (spec section 4.8.5) - // An array with N elements, where N is two times the number of color components. - var val = this.image.transparency.grayscale; - this.obj.data['Mask'] = [val, val]; - } else if (this.image.transparency.rgb) { - // Use Color Key Masking (spec section 4.8.5) - // An array with N elements, where N is two times the number of color components. - var rgb = this.image.transparency.rgb; - var mask = []; - for (var _iterator1 = _createForOfIteratorHelperLoose(rgb), _step1; !(_step1 = _iterator1()).done;) { - var x = _step1.value; - mask.push(x, x); - } - this.obj.data['Mask'] = mask; - } else if (this.image.transparency.indexed) { - // Create a transparency SMask for the image based on the data - // in the PLTE and tRNS sections. See below for details on SMasks. - dataDecoded = true; - return this.loadIndexedAlphaChannel(); - } else if (hasAlphaChannel) { - // For PNG color types 4 and 6, the transparency data is stored as a alpha - // channel mixed in with the main image data. Separate this data out into an - // SMask object and store it separately in the PDF. - dataDecoded = true; - return this.splitAlphaChannel(); - } - if (isInterlaced && !dataDecoded) { - return this.decodeData(); - } - this.finalize(); - }; - _proto16.finalize = function finalize() { - if (this.alphaChannel) { - var sMask = this.document.ref({ - Type: 'XObject', - Subtype: 'Image', - Height: this.height, - Width: this.width, - BitsPerComponent: 8, - Filter: 'FlateDecode', - ColorSpace: 'DeviceGray', - Decode: [0, 1] - }); - sMask.end(this.alphaChannel); - this.obj.data['SMask'] = sMask; - } - - // add the actual image data - this.obj.end(this.imgData); - - // free memory - this.image = null; - return this.imgData = null; - }; - _proto16.splitAlphaChannel = function splitAlphaChannel() { - var _this13 = this; - return this.image.decodePixels(function (pixels) { - var a, p; - var colorCount = _this13.image.colors; - var pixelCount = _this13.width * _this13.height; - var imgData = Buffer.alloc(pixelCount * colorCount); - var alphaChannel = Buffer.alloc(pixelCount); - var i = p = a = 0; - var len = pixels.length; - // For 16bit images copy only most significant byte (MSB) - PNG data is always stored in network byte order (MSB first) - var skipByteCount = _this13.image.bits === 16 ? 1 : 0; - while (i < len) { - for (var colorIndex = 0; colorIndex < colorCount; colorIndex++) { - imgData[p++] = pixels[i++]; - i += skipByteCount; - } - alphaChannel[a++] = pixels[i++]; - i += skipByteCount; - } - _this13.imgData = _zlib.default.deflateSync(imgData); - _this13.alphaChannel = _zlib.default.deflateSync(alphaChannel); - return _this13.finalize(); - }); - }; - _proto16.loadIndexedAlphaChannel = function loadIndexedAlphaChannel() { - var _this14 = this; - var transparency = this.image.transparency.indexed; - return this.image.decodePixels(function (pixels) { - var alphaChannel = Buffer.alloc(_this14.width * _this14.height); - var i = 0; - for (var j = 0, end = pixels.length; j < end; j++) { - alphaChannel[i++] = transparency[pixels[j]]; - } - _this14.alphaChannel = _zlib.default.deflateSync(alphaChannel); - return _this14.finalize(); - }); - }; - _proto16.decodeData = function decodeData() { - var _this15 = this; - this.image.decodePixels(function (pixels) { - _this15.imgData = _zlib.default.deflateSync(pixels); - _this15.finalize(); - }); - }; - return PNGImage; -}(); -/* -PDFImage - embeds images in PDF documents -By Devon Govett -*/ -var PDFImage = /*#__PURE__*/function () { - function PDFImage() {} - PDFImage.open = function open(src, label) { - var data; - if (Buffer.isBuffer(src)) { - data = src; - } else if (src instanceof ArrayBuffer) { - data = Buffer.from(new Uint8Array(src)); - } else { - var match; - if (match = /^data:.+?;base64,(.*)$/.exec(src)) { - data = Buffer.from(match[1], 'base64'); - } else { - data = fs.readFileSync(src); - if (!data) { - return; - } - } - } - if (data[0] === 0xff && data[1] === 0xd8) { - return new JPEG(data, label); - } else if (data[0] === 0x89 && data.toString('ascii', 1, 4) === 'PNG') { - return new PNGImage(data, label); - } else { - throw new Error('Unknown image format.'); - } - }; - return PDFImage; -}(); -var ImagesMixin = { - initImages: function initImages() { - this._imageRegistry = {}; - return this._imageCount = 0; - }, - image: function image(src, x, y) { - var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - var bh, bp, bw, image, ip, left, left1, rotateAngle, originX, originY; - if (typeof x === 'object') { - options = x; - x = null; - } - - // Ignore orientation based on document options or image options - var ignoreOrientation = options.ignoreOrientation || options.ignoreOrientation !== false && this.options.ignoreOrientation; - x = (left = x != null ? x : options.x) != null ? left : this.x; - y = (left1 = y != null ? y : options.y) != null ? left1 : this.y; - if (typeof src === 'string') { - image = this._imageRegistry[src]; - } - if (!image) { - if (src.width && src.height) { - image = src; - } else { - image = this.openImage(src); - } - } - if (!image.obj) { - image.embed(this); - } - if (this.page.xobjects[image.label] == null) { - this.page.xobjects[image.label] = image.obj; - } - var _image = image, - width = _image.width, - height = _image.height; - - // If EXIF orientation calls for it, swap width and height - if (!ignoreOrientation && image.orientation > 4) { - var _ref3 = [height, width]; - width = _ref3[0]; - height = _ref3[1]; - } - var w = options.width || width; - var h = options.height || height; - if (options.width && !options.height) { - var wp = w / width; - w = width * wp; - h = height * wp; - } else if (options.height && !options.width) { - var hp = h / height; - w = width * hp; - h = height * hp; - } else if (options.scale) { - w = width * options.scale; - h = height * options.scale; - } else if (options.fit) { - var _options$fit = options.fit; - bw = _options$fit[0]; - bh = _options$fit[1]; - bp = bw / bh; - ip = width / height; - if (ip > bp) { - w = bw; - h = bw / ip; - } else { - h = bh; - w = bh * ip; - } - } else if (options.cover) { - var _options$cover = options.cover; - bw = _options$cover[0]; - bh = _options$cover[1]; - bp = bw / bh; - ip = width / height; - if (ip > bp) { - h = bh; - w = bh * ip; - } else { - w = bw; - h = bw / ip; - } - } - if (options.fit || options.cover) { - if (options.align === 'center') { - x = x + bw / 2 - w / 2; - } else if (options.align === 'right') { - x = x + bw - w; - } - if (options.valign === 'center') { - y = y + bh / 2 - h / 2; - } else if (options.valign === 'bottom') { - y = y + bh - h; - } - } - if (!ignoreOrientation) { - switch (image.orientation) { - // No orientation (need to flip image, though, because of the default transform matrix on the document) - default: - case 1: - h = -h; - y -= h; - rotateAngle = 0; - break; - // Flip Horizontal - case 2: - w = -w; - h = -h; - x -= w; - y -= h; - rotateAngle = 0; - break; - // Rotate 180 degrees - case 3: - originX = x; - originY = y; - h = -h; - x -= w; - rotateAngle = 180; - break; - // Flip vertical - case 4: - // Do nothing, image will be flipped - - break; - // Flip horizontally and rotate 270 degrees CW - case 5: - originX = x; - originY = y; - var _ref4 = [h, w]; - w = _ref4[0]; - h = _ref4[1]; - y -= h; - rotateAngle = 90; - break; - // Rotate 90 degrees CW - case 6: - originX = x; - originY = y; - var _ref5 = [h, w]; - w = _ref5[0]; - h = _ref5[1]; - h = -h; - rotateAngle = 90; - break; - // Flip horizontally and rotate 90 degrees CW - case 7: - originX = x; - originY = y; - var _ref6 = [h, w]; - w = _ref6[0]; - h = _ref6[1]; - h = -h; - w = -w; - x -= w; - rotateAngle = 90; - break; - // Rotate 270 degrees CW - case 8: - originX = x; - originY = y; - var _ref7 = [h, w]; - w = _ref7[0]; - h = _ref7[1]; - h = -h; - x -= w; - y -= h; - rotateAngle = -90; - break; - } - } else { - h = -h; - y -= h; - rotateAngle = 0; - } - - // create link annotations if the link option is given - if (options.link != null) { - this.link(x, y, w, h, options.link); - } - if (options.goTo != null) { - this.goTo(x, y, w, h, options.goTo); - } - if (options.destination != null) { - this.addNamedDestination(options.destination, 'XYZ', x, y, null); - } - - // Set the current y position to below the image if it is in the document flow - if (this.y === y) { - this.y += h; - } - this.save(); - if (rotateAngle) { - this.rotate(rotateAngle, { - origin: [originX, originY] - }); - } - this.transform(w, 0, 0, h, x, y); - this.addContent("/" + image.label + " Do"); - this.restore(); - return this; - }, - openImage: function openImage(src) { - var image; - if (typeof src === 'string') { - image = this._imageRegistry[src]; - } - if (!image) { - image = PDFImage.open(src, "I" + ++this._imageCount); - if (typeof src === 'string') { - this._imageRegistry[src] = image; - } - } - return image; - } -}; -var AnnotationsMixin = { - annotate: function annotate(x, y, w, h, options) { - options.Type = 'Annot'; - options.Rect = this._convertRect(x, y, w, h); - options.Border = [0, 0, 0]; - if (options.Subtype === 'Link' && typeof options.F === 'undefined') { - options.F = 1 << 2; // Print Annotation Flag - } - if (options.Subtype !== 'Link') { - if (options.C == null) { - options.C = this._normalizeColor(options.color || [0, 0, 0]); - } - } // convert colors - delete options.color; - if (typeof options.Dest === 'string') { - options.Dest = new String(options.Dest); - } - - // Capitalize keys - for (var key in options) { - var val = options[key]; - options[key[0].toUpperCase() + key.slice(1)] = val; - } - var ref = this.ref(options); - this.page.annotations.push(ref); - ref.end(); - return this; - }, - note: function note(x, y, w, h, contents) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - options.Subtype = 'Text'; - options.Contents = new String(contents); - if (options.Name == null) { - options.Name = 'Comment'; - } - if (options.color == null) { - options.color = [243, 223, 92]; - } - return this.annotate(x, y, w, h, options); - }, - goTo: function goTo(x, y, w, h, name) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - options.Subtype = 'Link'; - options.A = this.ref({ - S: 'GoTo', - D: new String(name) - }); - options.A.end(); - return this.annotate(x, y, w, h, options); - }, - link: function link(x, y, w, h, url) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - options.Subtype = 'Link'; - if (typeof url === 'number') { - // Link to a page in the document (the page must already exist) - var pages = this._root.data.Pages.data; - if (url >= 0 && url < pages.Kids.length) { - options.A = this.ref({ - S: 'GoTo', - D: [pages.Kids[url], 'XYZ', null, null, null] - }); - options.A.end(); - } else { - throw new Error("The document has no page " + url); - } - } else { - // Link to an external url - options.A = this.ref({ - S: 'URI', - URI: new String(url) - }); - options.A.end(); - } - return this.annotate(x, y, w, h, options); - }, - _markup: function _markup(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - var _this$_convertRect = this._convertRect(x, y, w, h), - x1 = _this$_convertRect[0], - y1 = _this$_convertRect[1], - x2 = _this$_convertRect[2], - y2 = _this$_convertRect[3]; - options.QuadPoints = [x1, y2, x2, y2, x1, y1, x2, y1]; - options.Contents = new String(); - return this.annotate(x, y, w, h, options); - }, - highlight: function highlight(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'Highlight'; - if (options.color == null) { - options.color = [241, 238, 148]; - } - return this._markup(x, y, w, h, options); - }, - underline: function underline(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'Underline'; - return this._markup(x, y, w, h, options); - }, - strike: function strike(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'StrikeOut'; - return this._markup(x, y, w, h, options); - }, - lineAnnotation: function lineAnnotation(x1, y1, x2, y2) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'Line'; - options.Contents = new String(); - options.L = [x1, this.page.height - y1, x2, this.page.height - y2]; - return this.annotate(x1, y1, x2, y2, options); - }, - rectAnnotation: function rectAnnotation(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'Square'; - options.Contents = new String(); - return this.annotate(x, y, w, h, options); - }, - ellipseAnnotation: function ellipseAnnotation(x, y, w, h) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - options.Subtype = 'Circle'; - options.Contents = new String(); - return this.annotate(x, y, w, h, options); - }, - textAnnotation: function textAnnotation(x, y, w, h, text) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - options.Subtype = 'FreeText'; - options.Contents = new String(text); - options.DA = new String(); - return this.annotate(x, y, w, h, options); - }, - fileAnnotation: function fileAnnotation(x, y, w, h) { - var file = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - // create hidden file - var filespec = this.file(file.src, Object.assign({ - hidden: true - }, file)); - options.Subtype = 'FileAttachment'; - options.FS = filespec; - - // add description from filespec unless description (Contents) has already been set - if (options.Contents) { - options.Contents = new String(options.Contents); - } else if (filespec.data.Desc) { - options.Contents = filespec.data.Desc; - } - return this.annotate(x, y, w, h, options); - }, - _convertRect: function _convertRect(x1, y1, w, h) { - // flip y1 and y2 - var y2 = y1; - y1 += h; - - // make x2 - var x2 = x1 + w; - - // apply current transformation matrix to points - var _this$_ctm = this._ctm, - m0 = _this$_ctm[0], - m1 = _this$_ctm[1], - m2 = _this$_ctm[2], - m3 = _this$_ctm[3], - m4 = _this$_ctm[4], - m5 = _this$_ctm[5]; - x1 = m0 * x1 + m2 * y1 + m4; - y1 = m1 * x1 + m3 * y1 + m5; - x2 = m0 * x2 + m2 * y2 + m4; - y2 = m1 * x2 + m3 * y2 + m5; - return [x1, y1, x2, y2]; - } -}; -var PDFOutline = /*#__PURE__*/function () { - function PDFOutline(document, parent, title, dest) { - var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : { - expanded: false - }; - this.document = document; - this.options = options; - this.outlineData = {}; - if (dest !== null) { - this.outlineData['Dest'] = [dest.dictionary, 'Fit']; - } - if (parent !== null) { - this.outlineData['Parent'] = parent; - } - if (title !== null) { - this.outlineData['Title'] = new String(title); - } - this.dictionary = this.document.ref(this.outlineData); - this.children = []; - } - var _proto17 = PDFOutline.prototype; - _proto17.addItem = function addItem(title) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - expanded: false - }; - var result = new PDFOutline(this.document, this.dictionary, title, this.document.page, options); - this.children.push(result); - return result; - }; - _proto17.endOutline = function endOutline() { - if (this.children.length > 0) { - if (this.options.expanded) { - this.outlineData.Count = this.children.length; - } - var _first2 = this.children[0], - _last2 = this.children[this.children.length - 1]; - this.outlineData.First = _first2.dictionary; - this.outlineData.Last = _last2.dictionary; - for (var i = 0, len = this.children.length; i < len; i++) { - var child = this.children[i]; - if (i > 0) { - child.outlineData.Prev = this.children[i - 1].dictionary; - } - if (i < this.children.length - 1) { - child.outlineData.Next = this.children[i + 1].dictionary; - } - child.endOutline(); - } - } - return this.dictionary.end(); - }; - return PDFOutline; -}(); -var OutlineMixin = { - initOutline: function initOutline() { - return this.outline = new PDFOutline(this, null, null, null); - }, - endOutline: function endOutline() { - this.outline.endOutline(); - if (this.outline.children.length > 0) { - this._root.data.Outlines = this.outline.dictionary; - return this._root.data.PageMode = 'UseOutlines'; - } - } -}; - -/* -PDFStructureContent - a reference to a marked structure content -By Ben Schmidt -*/ -var PDFStructureContent = /*#__PURE__*/function () { - function PDFStructureContent(pageRef, mcid) { - this.refs = [{ - pageRef: pageRef, - mcid: mcid - }]; - } - var _proto18 = PDFStructureContent.prototype; - _proto18.push = function push(structContent) { - var _this16 = this; - structContent.refs.forEach(function (ref) { - return _this16.refs.push(ref); - }); - }; - return PDFStructureContent; -}(); -/* -PDFStructureElement - represents an element in the PDF logical structure tree -By Ben Schmidt -*/ -var PDFStructureElement = /*#__PURE__*/function () { - function PDFStructureElement(document, type) { - var _this17 = this; - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var children = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; - this.document = document; - this._attached = false; - this._ended = false; - this._flushed = false; - this.dictionary = document.ref({ - // Type: "StructElem", - S: type - }); - var data = this.dictionary.data; - if (Array.isArray(options) || this._isValidChild(options)) { - children = options; - options = {}; - } - if (typeof options.title !== 'undefined') { - data.T = new String(options.title); - } - if (typeof options.lang !== 'undefined') { - data.Lang = new String(options.lang); - } - if (typeof options.alt !== 'undefined') { - data.Alt = new String(options.alt); - } - if (typeof options.expanded !== 'undefined') { - data.E = new String(options.expanded); - } - if (typeof options.actual !== 'undefined') { - data.ActualText = new String(options.actual); - } - this._children = []; - if (children) { - if (!Array.isArray(children)) { - children = [children]; - } - children.forEach(function (child) { - return _this17.add(child); - }); - this.end(); - } - } - var _proto19 = PDFStructureElement.prototype; - _proto19.add = function add(child) { - if (this._ended) { - throw new Error("Cannot add child to already-ended structure element"); - } - if (!this._isValidChild(child)) { - throw new Error("Invalid structure element child"); - } - if (child instanceof PDFStructureElement) { - child.setParent(this.dictionary); - if (this._attached) { - child.setAttached(); - } - } - if (child instanceof PDFStructureContent) { - this._addContentToParentTree(child); - } - if (typeof child === 'function' && this._attached) { - // _contentForClosure() adds the content to the parent tree - child = this._contentForClosure(child); - } - this._children.push(child); - return this; - }; - _proto19._addContentToParentTree = function _addContentToParentTree(content) { - var _this18 = this; - content.refs.forEach(function (_ref) { - var pageRef = _ref.pageRef, - mcid = _ref.mcid; - var pageStructParents = _this18.document.getStructParentTree().get(pageRef.data.StructParents); - pageStructParents[mcid] = _this18.dictionary; - }); - }; - _proto19.setParent = function setParent(parentRef) { - if (this.dictionary.data.P) { - throw new Error("Structure element added to more than one parent"); - } - this.dictionary.data.P = parentRef; - this._flush(); - }; - _proto19.setAttached = function setAttached() { - var _this19 = this; - if (this._attached) { - return; - } - this._children.forEach(function (child, index) { - if (child instanceof PDFStructureElement) { - child.setAttached(); - } - if (typeof child === 'function') { - _this19._children[index] = _this19._contentForClosure(child); - } - }); - this._attached = true; - this._flush(); - }; - _proto19.end = function end() { - if (this._ended) { - return; - } - this._children.filter(function (child) { - return child instanceof PDFStructureElement; - }).forEach(function (child) { - return child.end(); - }); - this._ended = true; - this._flush(); - }; - _proto19._isValidChild = function _isValidChild(child) { - return child instanceof PDFStructureElement || child instanceof PDFStructureContent || typeof child === 'function'; - }; - _proto19._contentForClosure = function _contentForClosure(closure) { - var content = this.document.markStructureContent(this.dictionary.data.S); - closure(); - this.document.endMarkedContent(); - this._addContentToParentTree(content); - return content; - }; - _proto19._isFlushable = function _isFlushable() { - if (!this.dictionary.data.P || !this._ended) { - return false; - } - return this._children.every(function (child) { - if (typeof child === 'function') { - return false; - } - if (child instanceof PDFStructureElement) { - return child._isFlushable(); - } - return true; - }); - }; - _proto19._flush = function _flush() { - var _this20 = this; - if (this._flushed || !this._isFlushable()) { - return; - } - this.dictionary.data.K = []; - this._children.forEach(function (child) { - return _this20._flushChild(child); - }); - this.dictionary.end(); - - // free memory used by children; the dictionary itself may still be - // referenced by a parent structure element or root, but we can - // at least trim the tree here - this._children = []; - this.dictionary.data.K = null; - this._flushed = true; - }; - _proto19._flushChild = function _flushChild(child) { - var _this21 = this; - if (child instanceof PDFStructureElement) { - this.dictionary.data.K.push(child.dictionary); - } - if (child instanceof PDFStructureContent) { - child.refs.forEach(function (_ref2) { - var pageRef = _ref2.pageRef, - mcid = _ref2.mcid; - if (!_this21.dictionary.data.Pg) { - _this21.dictionary.data.Pg = pageRef; - } - if (_this21.dictionary.data.Pg === pageRef) { - _this21.dictionary.data.K.push(mcid); - } else { - _this21.dictionary.data.K.push({ - Type: "MCR", - Pg: pageRef, - MCID: mcid - }); - } - }); - } - }; - return PDFStructureElement; -}(); -/* -PDFNumberTree - represents a number tree object -*/ -var PDFNumberTree = /*#__PURE__*/function (_PDFTree2) { - function PDFNumberTree() { - return _PDFTree2.apply(this, arguments) || this; - } - _inheritsLoose(PDFNumberTree, _PDFTree2); - var _proto20 = PDFNumberTree.prototype; - _proto20._compareKeys = function _compareKeys(a, b) { - return parseInt(a) - parseInt(b); - }; - _proto20._keysName = function _keysName() { - return "Nums"; - }; - _proto20._dataForKey = function _dataForKey(k) { - return parseInt(k); - }; - return PDFNumberTree; -}(PDFTree); -/* -Markings mixin - support marked content sequences in content streams -By Ben Schmidt -*/ -var MarkingsMixin = { - initMarkings: function initMarkings(options) { - this.structChildren = []; - if (options.tagged) { - this.getMarkInfoDictionary().data.Marked = true; - this.getStructTreeRoot(); - } - }, - markContent: function markContent(tag) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; - if (tag === 'Artifact' || options && options.mcid) { - var toClose = 0; - this.page.markings.forEach(function (marking) { - if (toClose || marking.structContent || marking.tag === 'Artifact') { - toClose++; - } - }); - while (toClose--) { - this.endMarkedContent(); - } - } - if (!options) { - this.page.markings.push({ - tag: tag - }); - this.addContent("/" + tag + " BMC"); - return this; - } - this.page.markings.push({ - tag: tag, - options: options - }); - var dictionary = {}; - if (typeof options.mcid !== 'undefined') { - dictionary.MCID = options.mcid; - } - if (tag === 'Artifact') { - if (typeof options.type === 'string') { - dictionary.Type = options.type; - } - if (Array.isArray(options.bbox)) { - dictionary.BBox = [options.bbox[0], this.page.height - options.bbox[3], options.bbox[2], this.page.height - options.bbox[1]]; - } - if (Array.isArray(options.attached) && options.attached.every(function (val) { - return typeof val === 'string'; - })) { - dictionary.Attached = options.attached; - } - } - if (tag === 'Span') { - if (options.lang) { - dictionary.Lang = new String(options.lang); - } - if (options.alt) { - dictionary.Alt = new String(options.alt); - } - if (options.expanded) { - dictionary.E = new String(options.expanded); - } - if (options.actual) { - dictionary.ActualText = new String(options.actual); - } - } - this.addContent("/" + tag + " " + PDFObject.convert(dictionary) + " BDC"); - return this; - }, - markStructureContent: function markStructureContent(tag) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var pageStructParents = this.getStructParentTree().get(this.page.structParentTreeKey); - var mcid = pageStructParents.length; - pageStructParents.push(null); - this.markContent(tag, Object.assign({}, options, { - mcid: mcid - })); - var structContent = new PDFStructureContent(this.page.dictionary, mcid); - this.page.markings.slice(-1)[0].structContent = structContent; - return structContent; - }, - endMarkedContent: function endMarkedContent() { - this.page.markings.pop(); - this.addContent('EMC'); - return this; - }, - struct: function struct(type) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var children = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; - return new PDFStructureElement(this, type, options, children); - }, - addStructure: function addStructure(structElem) { - var structTreeRoot = this.getStructTreeRoot(); - structElem.setParent(structTreeRoot); - structElem.setAttached(); - this.structChildren.push(structElem); - if (!structTreeRoot.data.K) { - structTreeRoot.data.K = []; - } - structTreeRoot.data.K.push(structElem.dictionary); - return this; - }, - initPageMarkings: function initPageMarkings(pageMarkings) { - var _this22 = this; - pageMarkings.forEach(function (marking) { - if (marking.structContent) { - var structContent = marking.structContent; - var newStructContent = _this22.markStructureContent(marking.tag, marking.options); - structContent.push(newStructContent); - _this22.page.markings.slice(-1)[0].structContent = structContent; - } else { - _this22.markContent(marking.tag, marking.options); - } - }); - }, - endPageMarkings: function endPageMarkings(page) { - var pageMarkings = page.markings; - pageMarkings.forEach(function () { - return page.write('EMC'); - }); - page.markings = []; - return pageMarkings; - }, - getMarkInfoDictionary: function getMarkInfoDictionary() { - if (!this._root.data.MarkInfo) { - this._root.data.MarkInfo = this.ref({}); - } - return this._root.data.MarkInfo; - }, - hasMarkInfoDictionary: function hasMarkInfoDictionary() { - return !!this._root.data.MarkInfo; - }, - getStructTreeRoot: function getStructTreeRoot() { - if (!this._root.data.StructTreeRoot) { - this._root.data.StructTreeRoot = this.ref({ - Type: 'StructTreeRoot', - ParentTree: new PDFNumberTree(), - ParentTreeNextKey: 0 - }); - } - return this._root.data.StructTreeRoot; - }, - getStructParentTree: function getStructParentTree() { - return this.getStructTreeRoot().data.ParentTree; - }, - createStructParentTreeNextKey: function createStructParentTreeNextKey() { - // initialise the MarkInfo dictionary - this.getMarkInfoDictionary(); - var structTreeRoot = this.getStructTreeRoot(); - var key = structTreeRoot.data.ParentTreeNextKey++; - structTreeRoot.data.ParentTree.add(key, []); - return key; - }, - endMarkings: function endMarkings() { - var structTreeRoot = this._root.data.StructTreeRoot; - if (structTreeRoot) { - structTreeRoot.end(); - this.structChildren.forEach(function (structElem) { - return structElem.end(); - }); - } - if (this._root.data.MarkInfo) { - this._root.data.MarkInfo.end(); - } - } -}; -var FIELD_FLAGS = { - readOnly: 1, - required: 2, - noExport: 4, - multiline: 0x1000, - password: 0x2000, - toggleToOffButton: 0x4000, - radioButton: 0x8000, - pushButton: 0x10000, - combo: 0x20000, - edit: 0x40000, - sort: 0x80000, - multiSelect: 0x200000, - noSpell: 0x400000 -}; -var FIELD_JUSTIFY = { - left: 0, - center: 1, - right: 2 -}; -var VALUE_MAP = { - value: 'V', - defaultValue: 'DV' -}; -var FORMAT_SPECIAL = { - zip: '0', - zipPlus4: '1', - zip4: '1', - phone: '2', - ssn: '3' -}; -var FORMAT_DEFAULT = { - number: { - nDec: 0, - sepComma: false, - negStyle: 'MinusBlack', - currency: '', - currencyPrepend: true - }, - percent: { - nDec: 0, - sepComma: false - } -}; -var AcroFormMixin = { - /** - * Must call if adding AcroForms to a document. Must also call font() before - * this method to set the default font. - */ - initForm: function initForm() { - if (!this._font) { - throw new Error('Must set a font before calling initForm method'); - } - this._acroform = { - fonts: {}, - defaultFont: this._font.name - }; - this._acroform.fonts[this._font.id] = this._font.ref(); - var data = { - Fields: [], - NeedAppearances: true, - DA: new String("/" + this._font.id + " 0 Tf 0 g"), - DR: { - Font: {} - } - }; - data.DR.Font[this._font.id] = this._font.ref(); - var AcroForm = this.ref(data); - this._root.data.AcroForm = AcroForm; - return this; - }, - /** - * Called automatically by document.js - */ - endAcroForm: function endAcroForm() { - var _this23 = this; - if (this._root.data.AcroForm) { - if (!Object.keys(this._acroform.fonts).length && !this._acroform.defaultFont) { - throw new Error('No fonts specified for PDF form'); - } - var fontDict = this._root.data.AcroForm.data.DR.Font; - Object.keys(this._acroform.fonts).forEach(function (name) { - fontDict[name] = _this23._acroform.fonts[name]; - }); - this._root.data.AcroForm.data.Fields.forEach(function (fieldRef) { - _this23._endChild(fieldRef); - }); - this._root.data.AcroForm.end(); - } - return this; - }, - _endChild: function _endChild(ref) { - var _this24 = this; - if (Array.isArray(ref.data.Kids)) { - ref.data.Kids.forEach(function (childRef) { - _this24._endChild(childRef); - }); - ref.end(); - } - return this; - }, - /** - * Creates and adds a form field to the document. Form fields are intermediate - * nodes in a PDF form that are used to specify form name heirarchy and form - * value defaults. - * @param {string} name - field name (T attribute in field dictionary) - * @param {object} options - other attributes to include in field dictionary - */ - formField: function formField(name) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var fieldDict = this._fieldDict(name, null, options); - var fieldRef = this.ref(fieldDict); - this._addToParent(fieldRef); - return fieldRef; - }, - /** - * Creates and adds a Form Annotation to the document. Form annotations are - * called Widget annotations internally within a PDF file. - * @param {string} name - form field name (T attribute of widget annotation - * dictionary) - * @param {number} x - * @param {number} y - * @param {number} w - * @param {number} h - * @param {object} options - */ - formAnnotation: function formAnnotation(name, type, x, y, w, h) { - var options = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : {}; - var fieldDict = this._fieldDict(name, type, options); - fieldDict.Subtype = 'Widget'; - if (fieldDict.F === undefined) { - fieldDict.F = 4; // print the annotation - } - - // Add Field annot to page, and get it's ref - this.annotate(x, y, w, h, fieldDict); - var annotRef = this.page.annotations[this.page.annotations.length - 1]; - return this._addToParent(annotRef); - }, - formText: function formText(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'text', x, y, w, h, options); - }, - formPushButton: function formPushButton(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'pushButton', x, y, w, h, options); - }, - formCombo: function formCombo(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'combo', x, y, w, h, options); - }, - formList: function formList(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'list', x, y, w, h, options); - }, - formRadioButton: function formRadioButton(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'radioButton', x, y, w, h, options); - }, - formCheckbox: function formCheckbox(name, x, y, w, h) { - var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - return this.formAnnotation(name, 'checkbox', x, y, w, h, options); - }, - _addToParent: function _addToParent(fieldRef) { - var parent = fieldRef.data.Parent; - if (parent) { - if (!parent.data.Kids) { - parent.data.Kids = []; - } - parent.data.Kids.push(fieldRef); - } else { - this._root.data.AcroForm.data.Fields.push(fieldRef); - } - return this; - }, - _fieldDict: function _fieldDict(name, type) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - if (!this._acroform) { - throw new Error('Call document.initForm() method before adding form elements to document'); - } - var opts = Object.assign({}, options); - if (type !== null) { - opts = this._resolveType(type, options); - } - opts = this._resolveFlags(opts); - opts = this._resolveJustify(opts); - opts = this._resolveFont(opts); - opts = this._resolveStrings(opts); - opts = this._resolveColors(opts); - opts = this._resolveFormat(opts); - opts.T = new String(name); - if (opts.parent) { - opts.Parent = opts.parent; - delete opts.parent; - } - return opts; - }, - _resolveType: function _resolveType(type, opts) { - if (type === 'text') { - opts.FT = 'Tx'; - } else if (type === 'pushButton') { - opts.FT = 'Btn'; - opts.pushButton = true; - } else if (type === 'radioButton') { - opts.FT = 'Btn'; - opts.radioButton = true; - } else if (type === 'checkbox') { - opts.FT = 'Btn'; - } else if (type === 'combo') { - opts.FT = 'Ch'; - opts.combo = true; - } else if (type === 'list') { - opts.FT = 'Ch'; - } else { - throw new Error("Invalid form annotation type '" + type + "'"); - } - return opts; - }, - _resolveFormat: function _resolveFormat(opts) { - var f = opts.format; - if (f && f.type) { - var fnKeystroke; - var fnFormat; - var params = ''; - if (FORMAT_SPECIAL[f.type] !== undefined) { - fnKeystroke = "AFSpecial_Keystroke"; - fnFormat = "AFSpecial_Format"; - params = FORMAT_SPECIAL[f.type]; - } else { - var format = f.type.charAt(0).toUpperCase() + f.type.slice(1); - fnKeystroke = "AF" + format + "_Keystroke"; - fnFormat = "AF" + format + "_Format"; - if (f.type === 'date') { - fnKeystroke += 'Ex'; - params = String(f.param); - } else if (f.type === 'time') { - params = String(f.param); - } else if (f.type === 'number') { - var p = Object.assign({}, FORMAT_DEFAULT.number, f); - params = String([String(p.nDec), p.sepComma ? '0' : '1', '"' + p.negStyle + '"', 'null', '"' + p.currency + '"', String(p.currencyPrepend)].join(',')); - } else if (f.type === 'percent') { - var _p = Object.assign({}, FORMAT_DEFAULT.percent, f); - params = String([String(_p.nDec), _p.sepComma ? '0' : '1'].join(',')); - } - } - opts.AA = opts.AA ? opts.AA : {}; - opts.AA.K = { - S: 'JavaScript', - JS: new String(fnKeystroke + "(" + params + ");") - }; - opts.AA.F = { - S: 'JavaScript', - JS: new String(fnFormat + "(" + params + ");") - }; - } - delete opts.format; - return opts; - }, - _resolveColors: function _resolveColors(opts) { - var color = this._normalizeColor(opts.backgroundColor); - if (color) { - if (!opts.MK) { - opts.MK = {}; - } - opts.MK.BG = color; - } - color = this._normalizeColor(opts.borderColor); - if (color) { - if (!opts.MK) { - opts.MK = {}; - } - opts.MK.BC = color; - } - delete opts.backgroundColor; - delete opts.borderColor; - return opts; - }, - _resolveFlags: function _resolveFlags(options) { - var result = 0; - Object.keys(options).forEach(function (key) { - if (FIELD_FLAGS[key]) { - if (options[key]) { - result |= FIELD_FLAGS[key]; - } - delete options[key]; - } - }); - if (result !== 0) { - options.Ff = options.Ff ? options.Ff : 0; - options.Ff |= result; - } - return options; - }, - _resolveJustify: function _resolveJustify(options) { - var result = 0; - if (options.align !== undefined) { - if (typeof FIELD_JUSTIFY[options.align] === 'number') { - result = FIELD_JUSTIFY[options.align]; - } - delete options.align; - } - if (result !== 0) { - options.Q = result; // default - } - return options; - }, - _resolveFont: function _resolveFont(options) { - // add current font to document-level AcroForm dict if necessary - if (this._acroform.fonts[this._font.id] == null) { - this._acroform.fonts[this._font.id] = this._font.ref(); - } - - // add current font to field's resource dict (RD) if not the default acroform font - if (this._acroform.defaultFont !== this._font.name) { - options.DR = { - Font: {} - }; - - // Get the fontSize option. If not set use auto sizing - var fontSize = options.fontSize || 0; - options.DR.Font[this._font.id] = this._font.ref(); - options.DA = new String("/" + this._font.id + " " + fontSize + " Tf 0 g"); - } - return options; - }, - _resolveStrings: function _resolveStrings(options) { - var select = []; - function appendChoices(a) { - if (Array.isArray(a)) { - for (var idx = 0; idx < a.length; idx++) { - if (typeof a[idx] === 'string') { - select.push(new String(a[idx])); - } else { - select.push(a[idx]); - } - } - } - } - appendChoices(options.Opt); - if (options.select) { - appendChoices(options.select); - delete options.select; - } - if (select.length) { - options.Opt = select; - } - Object.keys(VALUE_MAP).forEach(function (key) { - if (options[key] !== undefined) { - options[VALUE_MAP[key]] = options[key]; - delete options[key]; - } - }); - ['V', 'DV'].forEach(function (key) { - if (typeof options[key] === 'string') { - options[key] = new String(options[key]); - } - }); - if (options.MK && options.MK.CA) { - options.MK.CA = new String(options.MK.CA); - } - if (options.label) { - options.MK = options.MK ? options.MK : {}; - options.MK.CA = new String(options.label); - delete options.label; - } - return options; - } -}; -var AttachmentsMixin = { - /** - * Embed contents of `src` in PDF - * @param {Buffer | ArrayBuffer | string} src input Buffer, ArrayBuffer, base64 encoded string or path to file - * @param {object} options - * * options.name: filename to be shown in PDF, will use `src` if none set - * * options.type: filetype to be shown in PDF - * * options.description: description to be shown in PDF - * * options.hidden: if true, do not add attachment to EmbeddedFiles dictionary. Useful for file attachment annotations - * * options.creationDate: override creation date - * * options.modifiedDate: override modified date - * * options.relationship: Relationship between the PDF document and its attached file. Can be 'Alternative', 'Data', 'Source', 'Supplement' or 'Unspecified'. - * @returns filespec reference - */ - file: function file(src) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - options.name = options.name || src; - options.relationship = options.relationship || 'Unspecified'; - var refBody = { - Type: 'EmbeddedFile', - Params: {} - }; - var data; - if (!src) { - throw new Error('No src specified'); - } - if (Buffer.isBuffer(src)) { - data = src; - } else if (src instanceof ArrayBuffer) { - data = Buffer.from(new Uint8Array(src)); - } else { - var match; - if (match = /^data:(.*?);base64,(.*)$/.exec(src)) { - if (match[1]) { - refBody.Subtype = match[1].replace('/', '#2F'); - } - data = Buffer.from(match[2], 'base64'); - } else { - data = fs.readFileSync(src); - if (!data) { - throw new Error("Could not read contents of file at filepath " + src); - } - - // update CreationDate and ModDate - var _fs$statSync = fs.statSync(src), - birthtime = _fs$statSync.birthtime, - ctime = _fs$statSync.ctime; - refBody.Params.CreationDate = birthtime; - refBody.Params.ModDate = ctime; - } - } - - // override creation date and modified date - if (options.creationDate instanceof Date) { - refBody.Params.CreationDate = options.creationDate; - } - if (options.modifiedDate instanceof Date) { - refBody.Params.ModDate = options.modifiedDate; - } - // add optional subtype - if (options.type) { - refBody.Subtype = options.type.replace('/', '#2F'); - } - - // add checksum and size information - var checksum = _cryptoJs.default.MD5(_cryptoJs.default.lib.WordArray.create(new Uint8Array(data))); - refBody.Params.CheckSum = new String(checksum); - refBody.Params.Size = data.byteLength; - - // save some space when embedding the same file again - // if a file with the same name and metadata exists, reuse its reference - var ref; - if (!this._fileRegistry) this._fileRegistry = {}; - var file = this._fileRegistry[options.name]; - if (file && isEqual(refBody, file)) { - ref = file.ref; - } else { - ref = this.ref(refBody); - ref.end(data); - this._fileRegistry[options.name] = Object.assign({}, refBody, { - ref: ref - }); - } - // add filespec for embedded file - var fileSpecBody = { - Type: 'Filespec', - AFRelationship: options.relationship, - F: new String(options.name), - EF: { - F: ref - }, - UF: new String(options.name) - }; - if (options.description) { - fileSpecBody.Desc = new String(options.description); - } - var filespec = this.ref(fileSpecBody); - filespec.end(); - if (!options.hidden) { - this.addNamedEmbeddedFile(options.name, filespec); - } - - // Add file to the catalogue to be PDF/A3 compliant - if (this._root.data.AF) { - this._root.data.AF.push(filespec); - } else { - this._root.data.AF = [filespec]; - } - return filespec; - } -}; - -/** check two embedded file metadata objects for equality */ -function isEqual(a, b) { - return a.Subtype === b.Subtype && a.Params.CheckSum.toString() === b.Params.CheckSum.toString() && a.Params.Size === b.Params.Size && a.Params.CreationDate.getTime() === b.Params.CreationDate.getTime() && (a.Params.ModDate === undefined && b.Params.ModDate === undefined || a.Params.ModDate.getTime() === b.Params.ModDate.getTime()); -} -var PDFA = { - initPDFA: function initPDFA(pSubset) { - if (pSubset.charAt(pSubset.length - 3) === '-') { - this.subset_conformance = pSubset.charAt(pSubset.length - 1).toUpperCase(); - this.subset = parseInt(pSubset.charAt(pSubset.length - 2)); - } else { - // Default to Basic conformance when user doesn't specify - this.subset_conformance = 'B'; - this.subset = parseInt(pSubset.charAt(pSubset.length - 1)); - } - }, - endSubset: function endSubset() { - this._addPdfaMetadata(); - this._addColorOutputIntent(); - }, - _addColorOutputIntent: function _addColorOutputIntent() { - var iccProfile = Buffer("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", "base64"); - ; - var colorProfileRef = this.ref({ - Length: iccProfile.length, - N: 3 - }); - colorProfileRef.write(iccProfile); - colorProfileRef.end(); - var intentRef = this.ref({ - Type: 'OutputIntent', - S: 'GTS_PDFA1', - Info: new String('sRGB IEC61966-2.1'), - OutputConditionIdentifier: new String('sRGB IEC61966-2.1'), - DestOutputProfile: colorProfileRef - }); - intentRef.end(); - this._root.data.OutputIntents = [intentRef]; - }, - _getPdfaid: function _getPdfaid() { - return "\n \n " + this.subset + "\n " + this.subset_conformance + "\n \n "; - }, - _addPdfaMetadata: function _addPdfaMetadata() { - this.appendXML(this._getPdfaid()); - } -}; -var PDFUA = { - initPDFUA: function initPDFUA() { - this.subset = 1; - }, - endSubset: function endSubset() { - this._addPdfuaMetadata(); - }, - _addPdfuaMetadata: function _addPdfuaMetadata() { - this.appendXML(this._getPdfuaid()); - }, - _getPdfuaid: function _getPdfuaid() { - return "\n \n " + this.subset + "\n \n "; - } -}; -var SubsetMixin = { - _importSubset: function _importSubset(subset) { - Object.assign(this, subset); - }, - initSubset: function initSubset(options) { - switch (options.subset) { - case 'PDF/A-1': - case 'PDF/A-1a': - case 'PDF/A-1b': - case 'PDF/A-2': - case 'PDF/A-2a': - case 'PDF/A-2b': - case 'PDF/A-3': - case 'PDF/A-3a': - case 'PDF/A-3b': - this._importSubset(PDFA); - this.initPDFA(options.subset); - break; - case 'PDF/UA': - this._importSubset(PDFUA); - this.initPDFUA(); - break; - } - } -}; -var PDFMetadata = /*#__PURE__*/function () { - function PDFMetadata() { - this._metadata = "\n \n \n \n "; - } - var _proto21 = PDFMetadata.prototype; - _proto21._closeTags = function _closeTags() { - this._metadata = this._metadata.concat("\n \n \n \n "); - }; - _proto21.append = function append(xml) { - var newline = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; - this._metadata = this._metadata.concat(xml); - if (newline) this._metadata = this._metadata.concat('\n'); - }; - _proto21.getXML = function getXML() { - return this._metadata; - }; - _proto21.getLength = function getLength() { - return this._metadata.length; - }; - _proto21.end = function end() { - this._closeTags(); - this._metadata = this._metadata.trim(); - }; - return PDFMetadata; -}(); -var MetadataMixin = { - initMetadata: function initMetadata() { - this.metadata = new PDFMetadata(); - }, - appendXML: function appendXML(xml) { - var newline = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; - this.metadata.append(xml, newline); - }, - _addInfo: function _addInfo() { - this.appendXML("\n \n " + (this.info.CreationDate.toISOString().split('.')[0] + "Z") + "\n " + this.info.Creator + "\n \n "); - if (this.info.Title || this.info.Author || this.info.Subject) { - this.appendXML("\n \n "); - if (this.info.Title) { - this.appendXML("\n \n \n " + this.info.Title + "\n \n \n "); - } - if (this.info.Author) { - this.appendXML("\n \n \n " + this.info.Author + "\n \n \n "); - } - if (this.info.Subject) { - this.appendXML("\n \n \n " + this.info.Subject + "\n \n \n "); - } - this.appendXML("\n \n "); - } - this.appendXML("\n \n " + this.info.Creator + "", false); - if (this.info.Keywords) { - this.appendXML("\n " + this.info.Keywords + "", false); - } - this.appendXML("\n \n "); - }, - endMetadata: function endMetadata() { - this._addInfo(); - this.metadata.end(); - - /* - Metadata was introduced in PDF 1.4, so adding it to 1.3 - will likely only take up more space. - */ - if (this.version != 1.3) { - this.metadataRef = this.ref({ - length: this.metadata.getLength(), - Type: 'Metadata', - Subtype: 'XML' - }); - this.metadataRef.compress = false; - this.metadataRef.write(Buffer.from(this.metadata.getXML(), 'utf-8')); - this.metadataRef.end(); - this._root.data.Metadata = this.metadataRef; - } - } -}; - -/* -PDFDocument - represents an entire PDF document -By Devon Govett -*/ -var PDFDocument = /*#__PURE__*/function (_stream$Readable) { - function PDFDocument() { - var _this25; - var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - _this25 = _stream$Readable.call(this, options) || this; - _this25.options = options; - - // PDF version - switch (options.pdfVersion) { - case '1.4': - _this25.version = 1.4; - break; - case '1.5': - _this25.version = 1.5; - break; - case '1.6': - _this25.version = 1.6; - break; - case '1.7': - case '1.7ext3': - _this25.version = 1.7; - break; - default: - _this25.version = 1.3; - break; - } - - // Whether streams should be compressed - _this25.compress = _this25.options.compress != null ? _this25.options.compress : true; - _this25._pageBuffer = []; - _this25._pageBufferStart = 0; - - // The PDF object store - _this25._offsets = []; - _this25._waiting = 0; - _this25._ended = false; - _this25._offset = 0; - var Pages = _this25.ref({ - Type: 'Pages', - Count: 0, - Kids: [] - }); - var Names = _this25.ref({ - Dests: new PDFNameTree() - }); - _this25._root = _this25.ref({ - Type: 'Catalog', - Pages: Pages, - Names: Names - }); - if (_this25.options.lang) { - _this25._root.data.Lang = new String(_this25.options.lang); - } - - // The current page - _this25.page = null; - - // Initialize mixins - _this25.initMetadata(); - _this25.initColor(); - _this25.initVector(); - _this25.initFonts(options.font); - _this25.initText(); - _this25.initImages(); - _this25.initOutline(); - _this25.initMarkings(options); - _this25.initSubset(options); - - // Initialize the metadata - _this25.info = { - Producer: 'PDFKit', - Creator: 'PDFKit', - CreationDate: new Date() - }; - if (_this25.options.info) { - for (var key in _this25.options.info) { - var val = _this25.options.info[key]; - _this25.info[key] = val; - } - } - if (_this25.options.displayTitle) { - _this25._root.data.ViewerPreferences = _this25.ref({ - DisplayDocTitle: true - }); - } - - // Generate file ID - _this25._id = PDFSecurity.generateFileID(_this25.info); - - // Initialize security settings - _this25._security = PDFSecurity.create(_this25, options); - - // Write the header - // PDF version - _this25._write("%PDF-" + _this25.version); - - // 4 binary chars, as recommended by the spec - _this25._write('%\xFF\xFF\xFF\xFF'); - - // Add the first page - if (_this25.options.autoFirstPage !== false) { - _this25.addPage(); - } - return _this25; - } - _inheritsLoose(PDFDocument, _stream$Readable); - var _proto22 = PDFDocument.prototype; - _proto22.addPage = function addPage(options) { - if (options == null) { - options = this.options; - } - - // end the current page if needed - if (!this.options.bufferPages) { - this.flushPages(); - } - - // create a page object - this.page = new PDFPage(this, options); - this._pageBuffer.push(this.page); - - // add the page to the object store - var pages = this._root.data.Pages.data; - pages.Kids.push(this.page.dictionary); - pages.Count++; - - // reset x and y coordinates - this.x = this.page.margins.left; - this.y = this.page.margins.top; - - // flip PDF coordinate system so that the origin is in - // the top left rather than the bottom left - this._ctm = [1, 0, 0, 1, 0, 0]; - this.transform(1, 0, 0, -1, 0, this.page.height); - this.emit('pageAdded'); - return this; - }; - _proto22.continueOnNewPage = function continueOnNewPage(options) { - var pageMarkings = this.endPageMarkings(this.page); - this.addPage(options); - this.initPageMarkings(pageMarkings); - return this; - }; - _proto22.bufferedPageRange = function bufferedPageRange() { - return { - start: this._pageBufferStart, - count: this._pageBuffer.length - }; - }; - _proto22.switchToPage = function switchToPage(n) { - var page; - if (!(page = this._pageBuffer[n - this._pageBufferStart])) { - throw new Error("switchToPage(" + n + ") out of bounds, current buffer covers pages " + this._pageBufferStart + " to " + (this._pageBufferStart + this._pageBuffer.length - 1)); - } - return this.page = page; - }; - _proto22.flushPages = function flushPages() { - // this local variable exists so we're future-proof against - // reentrant calls to flushPages. - var pages = this._pageBuffer; - this._pageBuffer = []; - this._pageBufferStart += pages.length; - for (var _iterator10 = _createForOfIteratorHelperLoose(pages), _step10; !(_step10 = _iterator10()).done;) { - var page = _step10.value; - this.endPageMarkings(page); - page.end(); - } - }; - _proto22.addNamedDestination = function addNamedDestination(name) { - for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - args[_key - 1] = arguments[_key]; - } - if (args.length === 0) { - args = ['XYZ', null, null, null]; - } - if (args[0] === 'XYZ' && args[2] !== null) { - args[2] = this.page.height - args[2]; - } - args.unshift(this.page.dictionary); - this._root.data.Names.data.Dests.add(name, args); - }; - _proto22.addNamedEmbeddedFile = function addNamedEmbeddedFile(name, ref) { - if (!this._root.data.Names.data.EmbeddedFiles) { - // disabling /Limits for this tree fixes attachments not showing in Adobe Reader - this._root.data.Names.data.EmbeddedFiles = new PDFNameTree({ - limits: false - }); - } - - // add filespec to EmbeddedFiles - this._root.data.Names.data.EmbeddedFiles.add(name, ref); - }; - _proto22.addNamedJavaScript = function addNamedJavaScript(name, js) { - if (!this._root.data.Names.data.JavaScript) { - this._root.data.Names.data.JavaScript = new PDFNameTree(); - } - var data = { - JS: new String(js), - S: 'JavaScript' - }; - this._root.data.Names.data.JavaScript.add(name, data); - }; - _proto22.ref = function ref(data) { - var ref = new PDFReference(this, this._offsets.length + 1, data); - this._offsets.push(null); // placeholder for this object's offset once it is finalized - this._waiting++; - return ref; - }; - _proto22._read = function _read() {} - // do nothing, but this method is required by node - ; - _proto22._write = function _write(data) { - if (!Buffer.isBuffer(data)) { - data = Buffer.from(data + '\n', 'binary'); - } - this.push(data); - return this._offset += data.length; - }; - _proto22.addContent = function addContent(data) { - this.page.write(data); - return this; - }; - _proto22._refEnd = function _refEnd(ref) { - this._offsets[ref.id - 1] = ref.offset; - if (--this._waiting === 0 && this._ended) { - this._finalize(); - return this._ended = false; - } - }; - _proto22.end = function end() { - this.flushPages(); - this._info = this.ref(); - for (var key in this.info) { - var val = this.info[key]; - if (typeof val === 'string') { - val = new String(val); - } - var entry = this.ref(val); - entry.end(); - this._info.data[key] = entry; - } - this._info.end(); - for (var name in this._fontFamilies) { - var font = this._fontFamilies[name]; - font.finalize(); - } - this.endOutline(); - this.endMarkings(); - if (this.subset) { - this.endSubset(); - } - this.endMetadata(); - this._root.end(); - this._root.data.Pages.end(); - this._root.data.Names.end(); - this.endAcroForm(); - if (this._root.data.ViewerPreferences) { - this._root.data.ViewerPreferences.end(); - } - if (this._security) { - this._security.end(); - } - if (this._waiting === 0) { - return this._finalize(); - } else { - return this._ended = true; - } - }; - _proto22._finalize = function _finalize() { - // generate xref - var xRefOffset = this._offset; - this._write('xref'); - this._write("0 " + (this._offsets.length + 1)); - this._write('0000000000 65535 f '); - for (var _iterator11 = _createForOfIteratorHelperLoose(this._offsets), _step11; !(_step11 = _iterator11()).done;) { - var offset = _step11.value; - offset = ("0000000000" + offset).slice(-10); - this._write(offset + ' 00000 n '); - } - - // trailer - var trailer = { - Size: this._offsets.length + 1, - Root: this._root, - Info: this._info, - ID: [this._id, this._id] - }; - if (this._security) { - trailer.Encrypt = this._security.dictionary; - } - this._write('trailer'); - this._write(PDFObject.convert(trailer)); - this._write('startxref'); - this._write("" + xRefOffset); - this._write('%%EOF'); - - // end the stream - return this.push(null); - }; - _proto22.toString = function toString() { - return '[object PDFDocument]'; - }; - return PDFDocument; -}(_stream.default.Readable); -var mixin = function mixin(methods) { - Object.assign(PDFDocument.prototype, methods); -}; -mixin(MetadataMixin); -mixin(ColorMixin); -mixin(VectorMixin); -mixin(FontsMixin); -mixin(TextMixin); -mixin(ImagesMixin); -mixin(AnnotationsMixin); -mixin(OutlineMixin); -mixin(MarkingsMixin); -mixin(AcroFormMixin); -mixin(AttachmentsMixin); -mixin(SubsetMixin); -PDFDocument.LineWrapper = LineWrapper; -var _default = exports["default"] = PDFDocument; - -/***/ }), - -/***/ 17716: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var userAgent = __webpack_require__(40715); - -module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent); - - -/***/ }), - -/***/ 17723: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -// a passthrough stream. -// basically just the most minimal sort of Transform stream. -// Every written chunk gets output as-is. - - - -module.exports = PassThrough; -var Transform = __webpack_require__(48569); -__webpack_require__(89784)(PassThrough, Transform); -function PassThrough(options) { - if (!(this instanceof PassThrough)) return new PassThrough(options); - Transform.call(this, options); -} -PassThrough.prototype._transform = function (chunk, encoding, cb) { - cb(null, chunk); -}; - -/***/ }), - -/***/ 17802: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var bind = __webpack_require__(5049); - -var $apply = __webpack_require__(73036); -var $call = __webpack_require__(10078); -var $reflectApply = __webpack_require__(61909); - -/** @type {import('./actualApply')} */ -module.exports = $reflectApply || bind.call($call, $apply); - - -/***/ }), - -/***/ 18128: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; - - -var _require = __webpack_require__(56128), - NumberT = _require.Number; -exports.resolveLength = function (length, stream, parent) { - var res; - if (typeof length === 'number') { - res = length; - } else if (typeof length === 'function') { - res = length.call(parent, parent); - } else if (parent && typeof length === 'string') { - res = parent[length]; - } else if (stream && length instanceof NumberT) { - res = length.decode(stream); - } - if (isNaN(res)) { - throw new Error('Not a fixed size'); - } - return res; -}; -var PropertyDescriptor = function PropertyDescriptor(opts) { - if (opts === void 0) { - opts = {}; - } - this.enumerable = true; - this.configurable = true; - for (var key in opts) { - var val = opts[key]; - this[key] = val; - } -}; -exports.PropertyDescriptor = PropertyDescriptor; - -/***/ }), - -/***/ 18425: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var $ = __webpack_require__(56475); -var createHTML = __webpack_require__(91159); -var forcedStringHTMLMethod = __webpack_require__(7452); - -// `String.prototype.strike` method -// https://tc39.es/ecma262/#sec-string.prototype.strike -$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('strike') }, { - strike: function strike() { - return createHTML(this, 'strike', '', ''); - } -}); - - -/***/ }), - -/***/ 18645: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(65292); -__webpack_require__(73844); -__webpack_require__(11765); -__webpack_require__(24863); -__webpack_require__(71950); -__webpack_require__(57114); -__webpack_require__(69330); -__webpack_require__(81755); -__webpack_require__(20731); -__webpack_require__(14032); -__webpack_require__(61726); -__webpack_require__(58281); -__webpack_require__(6422); -__webpack_require__(94712); -function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } -function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } -function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } -function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i.return) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); } -function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); } -var INITIAL_STATE = 1; -var FAIL_STATE = 0; -/** - * A StateMachine represents a deterministic finite automaton. - * It can perform matches over a sequence of values, similar to a regular expression. - */ -var StateMachine = /*#__PURE__*/function () { - function StateMachine(dfa) { - this.stateTable = dfa.stateTable; - this.accepting = dfa.accepting; - this.tags = dfa.tags; - } - /** - * Returns an iterable object that yields pattern matches over the input sequence. - * Matches are of the form [startIndex, endIndex, tags]. - */ - var _proto = StateMachine.prototype; - _proto.match = function match(str) { - var _ref; - var self = this; - return _ref = {}, _ref[Symbol.iterator] = /*#__PURE__*/_regenerator().m(function _callee() { - var state, startRun, lastAccepting, lastState, p, c; - return _regenerator().w(function (_context) { - while (1) switch (_context.n) { - case 0: - state = INITIAL_STATE; - startRun = null; - lastAccepting = null; - lastState = null; - p = 0; - case 1: - if (!(p < str.length)) { - _context.n = 5; - break; - } - c = str[p]; - lastState = state; - state = self.stateTable[state][c]; - if (!(state === FAIL_STATE)) { - _context.n = 3; - break; - } - if (!(startRun != null && lastAccepting != null && lastAccepting >= startRun)) { - _context.n = 2; - break; - } - _context.n = 2; - return [startRun, lastAccepting, self.tags[lastState]]; - case 2: - // reset the state as if we started over from the initial state - - state = self.stateTable[INITIAL_STATE][c]; - startRun = null; - case 3: - // start a run if not in the failure state - - if (state !== FAIL_STATE && startRun == null) { - startRun = p; - } // if accepting, mark the potential match end - - if (self.accepting[state]) { - lastAccepting = p; - } // reset the state to the initial state if we get into the failure state - - if (state === FAIL_STATE) { - state = INITIAL_STATE; - } - case 4: - p++; - _context.n = 1; - break; - case 5: - if (!(startRun != null && lastAccepting != null && lastAccepting >= startRun)) { - _context.n = 6; - break; - } - _context.n = 6; - return [startRun, lastAccepting, self.tags[state]]; - case 6: - return _context.a(2); - } - }, _callee); - }), _ref; - } - /** - * For each match over the input sequence, action functions matching - * the tag definitions in the input pattern are called with the startIndex, - * endIndex, and sub-match sequence. - */; - _proto.apply = function apply(str, actions) { - for (var _iterator = _createForOfIteratorHelperLoose(this.match(str)), _step; !(_step = _iterator()).done;) { - var _step$value = _step.value, - start = _step$value[0], - end = _step$value[1], - tags = _step$value[2]; - for (var _iterator2 = _createForOfIteratorHelperLoose(tags), _step2; !(_step2 = _iterator2()).done;) { - var tag = _step2.value; - if (typeof actions[tag] === 'function') { - actions[tag](start, end, str.slice(start, end + 1)); - } - } - } - }; - return StateMachine; -}(); -module.exports = StateMachine; - -/***/ }), - -/***/ 18756: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var $ = __webpack_require__(56475); -var assign = __webpack_require__(87146); - -// `Object.assign` method -// https://tc39.es/ecma262/#sec-object.assign -// eslint-disable-next-line es/no-object-assign -- required for testing -$({ target: 'Object', stat: true, forced: Object.assign !== assign }, { - assign: assign -}); - - -/***/ }), - -/***/ 18828: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var collection = __webpack_require__(36673); -var collectionStrong = __webpack_require__(9649); - -// `Map` constructor -// https://tc39.es/ecma262/#sec-map-objects -collection('Map', function (init) { - return function Map() { return init(this, arguments.length ? arguments[0] : undefined); }; -}, collectionStrong); - - -/***/ }), - -/***/ 18888: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('./range')} */ -module.exports = RangeError; - - -/***/ }), - -/***/ 18890: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var $defineProperty = __webpack_require__(56649); - -var hasPropertyDescriptors = function hasPropertyDescriptors() { - return !!$defineProperty; -}; - -hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() { - // node v0.6 has a bug where array lengths can be Set but not Defined - if (!$defineProperty) { - return null; - } - try { - return $defineProperty([], 'length', { value: 1 }).length !== 1; - } catch (e) { - // In Firefox 4-22, defining length on an array throws an exception. - return true; - } -}; - -module.exports = hasPropertyDescriptors; - - -/***/ }), - -/***/ 18904: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var DESCRIPTORS = __webpack_require__(15567); -var fails = __webpack_require__(47044); -var createElement = __webpack_require__(12072); - -// Thank's IE8 for his funny defineProperty -module.exports = !DESCRIPTORS && !fails(function () { - // eslint-disable-next-line es/no-object-defineproperty -- requied for testing - return Object.defineProperty(createElement('div'), 'a', { - get: function () { return 7; } - }).a != 7; -}); - - -/***/ }), - -/***/ 18909: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(20731); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var X32WordArray = C_lib.WordArray; - - /** - * x64 namespace. - */ - var C_x64 = C.x64 = {}; - - /** - * A 64-bit word. - */ - var X64Word = C_x64.Word = Base.extend({ - /** - * Initializes a newly created 64-bit word. - * - * @param {number} high The high 32 bits. - * @param {number} low The low 32 bits. - * - * @example - * - * var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607); - */ - init: function init(high, low) { - this.high = high; - this.low = low; - } - - /** - * Bitwise NOTs this word. - * - * @return {X64Word} A new x64-Word object after negating. - * - * @example - * - * var negated = x64Word.not(); - */ - // not: function () { - // var high = ~this.high; - // var low = ~this.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ANDs this word with the passed word. - * - * @param {X64Word} word The x64-Word to AND with this word. - * - * @return {X64Word} A new x64-Word object after ANDing. - * - * @example - * - * var anded = x64Word.and(anotherX64Word); - */ - // and: function (word) { - // var high = this.high & word.high; - // var low = this.low & word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise ORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to OR with this word. - * - * @return {X64Word} A new x64-Word object after ORing. - * - * @example - * - * var ored = x64Word.or(anotherX64Word); - */ - // or: function (word) { - // var high = this.high | word.high; - // var low = this.low | word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Bitwise XORs this word with the passed word. - * - * @param {X64Word} word The x64-Word to XOR with this word. - * - * @return {X64Word} A new x64-Word object after XORing. - * - * @example - * - * var xored = x64Word.xor(anotherX64Word); - */ - // xor: function (word) { - // var high = this.high ^ word.high; - // var low = this.low ^ word.low; - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the left. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftL(25); - */ - // shiftL: function (n) { - // if (n < 32) { - // var high = (this.high << n) | (this.low >>> (32 - n)); - // var low = this.low << n; - // } else { - // var high = this.low << (n - 32); - // var low = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Shifts this word n bits to the right. - * - * @param {number} n The number of bits to shift. - * - * @return {X64Word} A new x64-Word object after shifting. - * - * @example - * - * var shifted = x64Word.shiftR(7); - */ - // shiftR: function (n) { - // if (n < 32) { - // var low = (this.low >>> n) | (this.high << (32 - n)); - // var high = this.high >>> n; - // } else { - // var low = this.high >>> (n - 32); - // var high = 0; - // } - - // return X64Word.create(high, low); - // }, - - /** - * Rotates this word n bits to the left. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotL(25); - */ - // rotL: function (n) { - // return this.shiftL(n).or(this.shiftR(64 - n)); - // }, - - /** - * Rotates this word n bits to the right. - * - * @param {number} n The number of bits to rotate. - * - * @return {X64Word} A new x64-Word object after rotating. - * - * @example - * - * var rotated = x64Word.rotR(7); - */ - // rotR: function (n) { - // return this.shiftR(n).or(this.shiftL(64 - n)); - // }, - - /** - * Adds this word with the passed word. - * - * @param {X64Word} word The x64-Word to add with this word. - * - * @return {X64Word} A new x64-Word object after adding. - * - * @example - * - * var added = x64Word.add(anotherX64Word); - */ - // add: function (word) { - // var low = (this.low + word.low) | 0; - // var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0; - // var high = (this.high + word.high + carry) | 0; - - // return X64Word.create(high, low); - // } - }); - - /** - * An array of 64-bit words. - * - * @property {Array} words The array of CryptoJS.x64.Word objects. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var X64WordArray = C_x64.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of CryptoJS.x64.Word objects. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.x64.WordArray.create(); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ]); - * - * var wordArray = CryptoJS.x64.WordArray.create([ - * CryptoJS.x64.Word.create(0x00010203, 0x04050607), - * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) - * ], 10); - */ - init: function init(words, sigBytes) { - words = this.words = words || []; - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 8; - } - }, - /** - * Converts this 64-bit word array to a 32-bit word array. - * - * @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array. - * - * @example - * - * var x32WordArray = x64WordArray.toX32(); - */ - toX32: function toX32() { - // Shortcuts - var x64Words = this.words; - var x64WordsLength = x64Words.length; - - // Convert - var x32Words = []; - for (var i = 0; i < x64WordsLength; i++) { - var x64Word = x64Words[i]; - x32Words.push(x64Word.high); - x32Words.push(x64Word.low); - } - return X32WordArray.create(x32Words, this.sigBytes); - }, - /** - * Creates a copy of this word array. - * - * @return {X64WordArray} The clone. - * - * @example - * - * var clone = x64WordArray.clone(); - */ - clone: function clone() { - var clone = Base.clone.call(this); - - // Clone "words" array - var words = clone.words = this.words.slice(0); - - // Clone each X64Word object - var wordsLength = words.length; - for (var i = 0; i < wordsLength; i++) { - words[i] = words[i].clone(); - } - return clone; - } - }); - })(); - return CryptoJS; -}); - -/***/ }), - -/***/ 19292: -/***/ (function(module) { - -"use strict"; - - -/** @type {import('./round')} */ -module.exports = Math.round; - - -/***/ }), - -/***/ 20340: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var uncurryThis = __webpack_require__(38347); -var toObject = __webpack_require__(43162); - -var hasOwnProperty = uncurryThis({}.hasOwnProperty); - -// `HasOwnProperty` abstract operation -// https://tc39.es/ecma262/#sec-hasownproperty -module.exports = Object.hasOwn || function hasOwn(it, key) { - return hasOwnProperty(toObject(it), key); -}; - - -/***/ }), - -/***/ 20731: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var isArray = __webpack_require__(59113); -var isConstructor = __webpack_require__(20884); -var isObject = __webpack_require__(24517); -var toAbsoluteIndex = __webpack_require__(74841); -var lengthOfArrayLike = __webpack_require__(45495); -var toIndexedObject = __webpack_require__(98086); -var createProperty = __webpack_require__(38639); -var wellKnownSymbol = __webpack_require__(38688); -var arrayMethodHasSpeciesSupport = __webpack_require__(56280); -var un$Slice = __webpack_require__(73163); - -var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice'); - -var SPECIES = wellKnownSymbol('species'); -var Array = global.Array; -var max = Math.max; - -// `Array.prototype.slice` method -// https://tc39.es/ecma262/#sec-array.prototype.slice -// fallback for not array-like ES3 strings and DOM objects -$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { - slice: function slice(start, end) { - var O = toIndexedObject(this); - var length = lengthOfArrayLike(O); - var k = toAbsoluteIndex(start, length); - var fin = toAbsoluteIndex(end === undefined ? length : end, length); - // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible - var Constructor, result, n; - if (isArray(O)) { - Constructor = O.constructor; - // cross-realm fallback - if (isConstructor(Constructor) && (Constructor === Array || isArray(Constructor.prototype))) { - Constructor = undefined; - } else if (isObject(Constructor)) { - Constructor = Constructor[SPECIES]; - if (Constructor === null) Constructor = undefined; - } - if (Constructor === Array || Constructor === undefined) { - return un$Slice(O, k, fin); - } - } - result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0)); - for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); - result.length = n; - return result; - } -}); - - -/***/ }), - -/***/ 20884: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var uncurryThis = __webpack_require__(38347); -var fails = __webpack_require__(47044); -var isCallable = __webpack_require__(94578); -var classof = __webpack_require__(52564); -var getBuiltIn = __webpack_require__(38486); -var inspectSource = __webpack_require__(10447); - -var noop = function () { /* empty */ }; -var empty = []; -var construct = getBuiltIn('Reflect', 'construct'); -var constructorRegExp = /^\s*(?:class|function)\b/; -var exec = uncurryThis(constructorRegExp.exec); -var INCORRECT_TO_STRING = !constructorRegExp.exec(noop); - -var isConstructorModern = function (argument) { - if (!isCallable(argument)) return false; - try { - construct(noop, empty, argument); - return true; - } catch (error) { - return false; - } -}; - -var isConstructorLegacy = function (argument) { - if (!isCallable(argument)) return false; - switch (classof(argument)) { - case 'AsyncFunction': - case 'GeneratorFunction': - case 'AsyncGeneratorFunction': return false; - // we can't check .prototype since constructors produced by .bind haven't it - } return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument)); -}; - -// `IsConstructor` abstract operation -// https://tc39.es/ecma262/#sec-isconstructor -module.exports = !construct || fails(function () { - var called; - return isConstructorModern(isConstructorModern.call) - || !isConstructorModern(Object) - || !isConstructorModern(function () { called = true; }) - || called; -}) ? isConstructorLegacy : isConstructorModern; - - -/***/ }), - -/***/ 20980: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -var __webpack_unused_export__; -/* Copyright 2013 Google Inc. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - 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. -*/ - -var BrotliInput = (__webpack_require__(98197)/* .BrotliInput */ .z); -var BrotliOutput = (__webpack_require__(98197)/* .BrotliOutput */ .y); -var BrotliBitReader = __webpack_require__(34097); -var BrotliDictionary = __webpack_require__(80614); -var HuffmanCode = (__webpack_require__(81561)/* .HuffmanCode */ .z); -var BrotliBuildHuffmanTable = (__webpack_require__(81561)/* .BrotliBuildHuffmanTable */ .u); -var Context = __webpack_require__(7043); -var Prefix = __webpack_require__(42210); -var Transform = __webpack_require__(87984); - -var kDefaultCodeLength = 8; -var kCodeLengthRepeatCode = 16; -var kNumLiteralCodes = 256; -var kNumInsertAndCopyCodes = 704; -var kNumBlockLengthCodes = 26; -var kLiteralContextBits = 6; -var kDistanceContextBits = 2; - -var HUFFMAN_TABLE_BITS = 8; -var HUFFMAN_TABLE_MASK = 0xff; -/* Maximum possible Huffman table size for an alphabet size of 704, max code - * length 15 and root table bits 8. */ -var HUFFMAN_MAX_TABLE_SIZE = 1080; - -var CODE_LENGTH_CODES = 18; -var kCodeLengthCodeOrder = new Uint8Array([ - 1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15, -]); - -var NUM_DISTANCE_SHORT_CODES = 16; -var kDistanceShortCodeIndexOffset = new Uint8Array([ - 3, 2, 1, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2 -]); - -var kDistanceShortCodeValueOffset = new Int8Array([ - 0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2, 2, -3, 3 -]); - -var kMaxHuffmanTableSize = new Uint16Array([ - 256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 694, 726, 758, 790, 822, - 854, 886, 920, 952, 984, 1016, 1048, 1080 -]); - -function DecodeWindowBits(br) { - var n; - if (br.readBits(1) === 0) { - return 16; - } - - n = br.readBits(3); - if (n > 0) { - return 17 + n; - } - - n = br.readBits(3); - if (n > 0) { - return 8 + n; - } - - return 17; -} - -/* Decodes a number in the range [0..255], by reading 1 - 11 bits. */ -function DecodeVarLenUint8(br) { - if (br.readBits(1)) { - var nbits = br.readBits(3); - if (nbits === 0) { - return 1; - } else { - return br.readBits(nbits) + (1 << nbits); - } - } - return 0; -} - -function MetaBlockLength() { - this.meta_block_length = 0; - this.input_end = 0; - this.is_uncompressed = 0; - this.is_metadata = false; -} - -function DecodeMetaBlockLength(br) { - var out = new MetaBlockLength; - var size_nibbles; - var size_bytes; - var i; - - out.input_end = br.readBits(1); - if (out.input_end && br.readBits(1)) { - return out; - } - - size_nibbles = br.readBits(2) + 4; - if (size_nibbles === 7) { - out.is_metadata = true; - - if (br.readBits(1) !== 0) - throw new Error('Invalid reserved bit'); - - size_bytes = br.readBits(2); - if (size_bytes === 0) - return out; - - for (i = 0; i < size_bytes; i++) { - var next_byte = br.readBits(8); - if (i + 1 === size_bytes && size_bytes > 1 && next_byte === 0) - throw new Error('Invalid size byte'); - - out.meta_block_length |= next_byte << (i * 8); - } - } else { - for (i = 0; i < size_nibbles; ++i) { - var next_nibble = br.readBits(4); - if (i + 1 === size_nibbles && size_nibbles > 4 && next_nibble === 0) - throw new Error('Invalid size nibble'); - - out.meta_block_length |= next_nibble << (i * 4); - } - } - - ++out.meta_block_length; - - if (!out.input_end && !out.is_metadata) { - out.is_uncompressed = br.readBits(1); - } - - return out; -} - -/* Decodes the next Huffman code from bit-stream. */ -function ReadSymbol(table, index, br) { - var start_index = index; - - var nbits; - br.fillBitWindow(); - index += (br.val_ >>> br.bit_pos_) & HUFFMAN_TABLE_MASK; - nbits = table[index].bits - HUFFMAN_TABLE_BITS; - if (nbits > 0) { - br.bit_pos_ += HUFFMAN_TABLE_BITS; - index += table[index].value; - index += (br.val_ >>> br.bit_pos_) & ((1 << nbits) - 1); - } - br.bit_pos_ += table[index].bits; - return table[index].value; -} - -function ReadHuffmanCodeLengths(code_length_code_lengths, num_symbols, code_lengths, br) { - var symbol = 0; - var prev_code_len = kDefaultCodeLength; - var repeat = 0; - var repeat_code_len = 0; - var space = 32768; - - var table = []; - for (var i = 0; i < 32; i++) - table.push(new HuffmanCode(0, 0)); - - BrotliBuildHuffmanTable(table, 0, 5, code_length_code_lengths, CODE_LENGTH_CODES); - - while (symbol < num_symbols && space > 0) { - var p = 0; - var code_len; - - br.readMoreInput(); - br.fillBitWindow(); - p += (br.val_ >>> br.bit_pos_) & 31; - br.bit_pos_ += table[p].bits; - code_len = table[p].value & 0xff; - if (code_len < kCodeLengthRepeatCode) { - repeat = 0; - code_lengths[symbol++] = code_len; - if (code_len !== 0) { - prev_code_len = code_len; - space -= 32768 >> code_len; - } - } else { - var extra_bits = code_len - 14; - var old_repeat; - var repeat_delta; - var new_len = 0; - if (code_len === kCodeLengthRepeatCode) { - new_len = prev_code_len; - } - if (repeat_code_len !== new_len) { - repeat = 0; - repeat_code_len = new_len; - } - old_repeat = repeat; - if (repeat > 0) { - repeat -= 2; - repeat <<= extra_bits; - } - repeat += br.readBits(extra_bits) + 3; - repeat_delta = repeat - old_repeat; - if (symbol + repeat_delta > num_symbols) { - throw new Error('[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols'); - } - - for (var x = 0; x < repeat_delta; x++) - code_lengths[symbol + x] = repeat_code_len; - - symbol += repeat_delta; - - if (repeat_code_len !== 0) { - space -= repeat_delta << (15 - repeat_code_len); - } - } - } - if (space !== 0) { - throw new Error("[ReadHuffmanCodeLengths] space = " + space); - } - - for (; symbol < num_symbols; symbol++) - code_lengths[symbol] = 0; -} - -function ReadHuffmanCode(alphabet_size, tables, table, br) { - var table_size = 0; - var simple_code_or_skip; - var code_lengths = new Uint8Array(alphabet_size); - - br.readMoreInput(); - - /* simple_code_or_skip is used as follows: - 1 for simple code; - 0 for no skipping, 2 skips 2 code lengths, 3 skips 3 code lengths */ - simple_code_or_skip = br.readBits(2); - if (simple_code_or_skip === 1) { - /* Read symbols, codes & code lengths directly. */ - var i; - var max_bits_counter = alphabet_size - 1; - var max_bits = 0; - var symbols = new Int32Array(4); - var num_symbols = br.readBits(2) + 1; - while (max_bits_counter) { - max_bits_counter >>= 1; - ++max_bits; - } - - for (i = 0; i < num_symbols; ++i) { - symbols[i] = br.readBits(max_bits) % alphabet_size; - code_lengths[symbols[i]] = 2; - } - code_lengths[symbols[0]] = 1; - switch (num_symbols) { - case 1: - break; - case 3: - if ((symbols[0] === symbols[1]) || - (symbols[0] === symbols[2]) || - (symbols[1] === symbols[2])) { - throw new Error('[ReadHuffmanCode] invalid symbols'); - } - break; - case 2: - if (symbols[0] === symbols[1]) { - throw new Error('[ReadHuffmanCode] invalid symbols'); - } - - code_lengths[symbols[1]] = 1; - break; - case 4: - if ((symbols[0] === symbols[1]) || - (symbols[0] === symbols[2]) || - (symbols[0] === symbols[3]) || - (symbols[1] === symbols[2]) || - (symbols[1] === symbols[3]) || - (symbols[2] === symbols[3])) { - throw new Error('[ReadHuffmanCode] invalid symbols'); - } - - if (br.readBits(1)) { - code_lengths[symbols[2]] = 3; - code_lengths[symbols[3]] = 3; - } else { - code_lengths[symbols[0]] = 2; - } - break; - } - } else { /* Decode Huffman-coded code lengths. */ - var i; - var code_length_code_lengths = new Uint8Array(CODE_LENGTH_CODES); - var space = 32; - var num_codes = 0; - /* Static Huffman code for the code length code lengths */ - var huff = [ - new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), - new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 1), - new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), - new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 5) - ]; - for (i = simple_code_or_skip; i < CODE_LENGTH_CODES && space > 0; ++i) { - var code_len_idx = kCodeLengthCodeOrder[i]; - var p = 0; - var v; - br.fillBitWindow(); - p += (br.val_ >>> br.bit_pos_) & 15; - br.bit_pos_ += huff[p].bits; - v = huff[p].value; - code_length_code_lengths[code_len_idx] = v; - if (v !== 0) { - space -= (32 >> v); - ++num_codes; - } - } - - if (!(num_codes === 1 || space === 0)) - throw new Error('[ReadHuffmanCode] invalid num_codes or space'); - - ReadHuffmanCodeLengths(code_length_code_lengths, alphabet_size, code_lengths, br); - } - - table_size = BrotliBuildHuffmanTable(tables, table, HUFFMAN_TABLE_BITS, code_lengths, alphabet_size); - - if (table_size === 0) { - throw new Error("[ReadHuffmanCode] BuildHuffmanTable failed: "); - } - - return table_size; -} - -function ReadBlockLength(table, index, br) { - var code; - var nbits; - code = ReadSymbol(table, index, br); - nbits = Prefix.kBlockLengthPrefixCode[code].nbits; - return Prefix.kBlockLengthPrefixCode[code].offset + br.readBits(nbits); -} - -function TranslateShortCodes(code, ringbuffer, index) { - var val; - if (code < NUM_DISTANCE_SHORT_CODES) { - index += kDistanceShortCodeIndexOffset[code]; - index &= 3; - val = ringbuffer[index] + kDistanceShortCodeValueOffset[code]; - } else { - val = code - NUM_DISTANCE_SHORT_CODES + 1; - } - return val; -} - -function MoveToFront(v, index) { - var value = v[index]; - var i = index; - for (; i; --i) v[i] = v[i - 1]; - v[0] = value; -} - -function InverseMoveToFrontTransform(v, v_len) { - var mtf = new Uint8Array(256); - var i; - for (i = 0; i < 256; ++i) { - mtf[i] = i; - } - for (i = 0; i < v_len; ++i) { - var index = v[i]; - v[i] = mtf[index]; - if (index) MoveToFront(mtf, index); - } -} - -/* Contains a collection of huffman trees with the same alphabet size. */ -function HuffmanTreeGroup(alphabet_size, num_htrees) { - this.alphabet_size = alphabet_size; - this.num_htrees = num_htrees; - this.codes = new Array(num_htrees + num_htrees * kMaxHuffmanTableSize[(alphabet_size + 31) >>> 5]); - this.htrees = new Uint32Array(num_htrees); -} - -HuffmanTreeGroup.prototype.decode = function(br) { - var i; - var table_size; - var next = 0; - for (i = 0; i < this.num_htrees; ++i) { - this.htrees[i] = next; - table_size = ReadHuffmanCode(this.alphabet_size, this.codes, next, br); - next += table_size; - } -}; - -function DecodeContextMap(context_map_size, br) { - var out = { num_htrees: null, context_map: null }; - var use_rle_for_zeros; - var max_run_length_prefix = 0; - var table; - var i; - - br.readMoreInput(); - var num_htrees = out.num_htrees = DecodeVarLenUint8(br) + 1; - - var context_map = out.context_map = new Uint8Array(context_map_size); - if (num_htrees <= 1) { - return out; - } - - use_rle_for_zeros = br.readBits(1); - if (use_rle_for_zeros) { - max_run_length_prefix = br.readBits(4) + 1; - } - - table = []; - for (i = 0; i < HUFFMAN_MAX_TABLE_SIZE; i++) { - table[i] = new HuffmanCode(0, 0); - } - - ReadHuffmanCode(num_htrees + max_run_length_prefix, table, 0, br); - - for (i = 0; i < context_map_size;) { - var code; - - br.readMoreInput(); - code = ReadSymbol(table, 0, br); - if (code === 0) { - context_map[i] = 0; - ++i; - } else if (code <= max_run_length_prefix) { - var reps = 1 + (1 << code) + br.readBits(code); - while (--reps) { - if (i >= context_map_size) { - throw new Error("[DecodeContextMap] i >= context_map_size"); - } - context_map[i] = 0; - ++i; - } - } else { - context_map[i] = code - max_run_length_prefix; - ++i; - } - } - if (br.readBits(1)) { - InverseMoveToFrontTransform(context_map, context_map_size); - } - - return out; -} - -function DecodeBlockType(max_block_type, trees, tree_type, block_types, ringbuffers, indexes, br) { - var ringbuffer = tree_type * 2; - var index = tree_type; - var type_code = ReadSymbol(trees, tree_type * HUFFMAN_MAX_TABLE_SIZE, br); - var block_type; - if (type_code === 0) { - block_type = ringbuffers[ringbuffer + (indexes[index] & 1)]; - } else if (type_code === 1) { - block_type = ringbuffers[ringbuffer + ((indexes[index] - 1) & 1)] + 1; - } else { - block_type = type_code - 2; - } - if (block_type >= max_block_type) { - block_type -= max_block_type; - } - block_types[tree_type] = block_type; - ringbuffers[ringbuffer + (indexes[index] & 1)] = block_type; - ++indexes[index]; -} - -function CopyUncompressedBlockToOutput(output, len, pos, ringbuffer, ringbuffer_mask, br) { - var rb_size = ringbuffer_mask + 1; - var rb_pos = pos & ringbuffer_mask; - var br_pos = br.pos_ & BrotliBitReader.IBUF_MASK; - var nbytes; - - /* For short lengths copy byte-by-byte */ - if (len < 8 || br.bit_pos_ + (len << 3) < br.bit_end_pos_) { - while (len-- > 0) { - br.readMoreInput(); - ringbuffer[rb_pos++] = br.readBits(8); - if (rb_pos === rb_size) { - output.write(ringbuffer, rb_size); - rb_pos = 0; - } - } - return; - } - - if (br.bit_end_pos_ < 32) { - throw new Error('[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32'); - } - - /* Copy remaining 0-4 bytes from br.val_ to ringbuffer. */ - while (br.bit_pos_ < 32) { - ringbuffer[rb_pos] = (br.val_ >>> br.bit_pos_); - br.bit_pos_ += 8; - ++rb_pos; - --len; - } - - /* Copy remaining bytes from br.buf_ to ringbuffer. */ - nbytes = (br.bit_end_pos_ - br.bit_pos_) >> 3; - if (br_pos + nbytes > BrotliBitReader.IBUF_MASK) { - var tail = BrotliBitReader.IBUF_MASK + 1 - br_pos; - for (var x = 0; x < tail; x++) - ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; - - nbytes -= tail; - rb_pos += tail; - len -= tail; - br_pos = 0; - } - - for (var x = 0; x < nbytes; x++) - ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; - - rb_pos += nbytes; - len -= nbytes; - - /* If we wrote past the logical end of the ringbuffer, copy the tail of the - ringbuffer to its beginning and flush the ringbuffer to the output. */ - if (rb_pos >= rb_size) { - output.write(ringbuffer, rb_size); - rb_pos -= rb_size; - for (var x = 0; x < rb_pos; x++) - ringbuffer[x] = ringbuffer[rb_size + x]; - } - - /* If we have more to copy than the remaining size of the ringbuffer, then we - first fill the ringbuffer from the input and then flush the ringbuffer to - the output */ - while (rb_pos + len >= rb_size) { - nbytes = rb_size - rb_pos; - if (br.input_.read(ringbuffer, rb_pos, nbytes) < nbytes) { - throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); - } - output.write(ringbuffer, rb_size); - len -= nbytes; - rb_pos = 0; - } - - /* Copy straight from the input onto the ringbuffer. The ringbuffer will be - flushed to the output at a later time. */ - if (br.input_.read(ringbuffer, rb_pos, len) < len) { - throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); - } - - /* Restore the state of the bit reader. */ - br.reset(); -} - -/* Advances the bit reader position to the next byte boundary and verifies - that any skipped bits are set to zero. */ -function JumpToByteBoundary(br) { - var new_bit_pos = (br.bit_pos_ + 7) & ~7; - var pad_bits = br.readBits(new_bit_pos - br.bit_pos_); - return pad_bits == 0; -} - -function BrotliDecompressedSize(buffer) { - var input = new BrotliInput(buffer); - var br = new BrotliBitReader(input); - DecodeWindowBits(br); - var out = DecodeMetaBlockLength(br); - return out.meta_block_length; -} - -__webpack_unused_export__ = BrotliDecompressedSize; - -function BrotliDecompressBuffer(buffer, output_size) { - var input = new BrotliInput(buffer); - - if (output_size == null) { - output_size = BrotliDecompressedSize(buffer); - } - - var output_buffer = new Uint8Array(output_size); - var output = new BrotliOutput(output_buffer); - - BrotliDecompress(input, output); - - if (output.pos < output.buffer.length) { - output.buffer = output.buffer.subarray(0, output.pos); - } - - return output.buffer; -} - -exports.BrotliDecompressBuffer = BrotliDecompressBuffer; - -function BrotliDecompress(input, output) { - var i; - var pos = 0; - var input_end = 0; - var window_bits = 0; - var max_backward_distance; - var max_distance = 0; - var ringbuffer_size; - var ringbuffer_mask; - var ringbuffer; - var ringbuffer_end; - /* This ring buffer holds a few past copy distances that will be used by */ - /* some special distance codes. */ - var dist_rb = [ 16, 15, 11, 4 ]; - var dist_rb_idx = 0; - /* The previous 2 bytes used for context. */ - var prev_byte1 = 0; - var prev_byte2 = 0; - var hgroup = [new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0)]; - var block_type_trees; - var block_len_trees; - var br; - - /* We need the slack region for the following reasons: - - always doing two 8-byte copies for fast backward copying - - transforms - - flushing the input ringbuffer when decoding uncompressed blocks */ - var kRingBufferWriteAheadSlack = 128 + BrotliBitReader.READ_SIZE; - - br = new BrotliBitReader(input); - - /* Decode window size. */ - window_bits = DecodeWindowBits(br); - max_backward_distance = (1 << window_bits) - 16; - - ringbuffer_size = 1 << window_bits; - ringbuffer_mask = ringbuffer_size - 1; - ringbuffer = new Uint8Array(ringbuffer_size + kRingBufferWriteAheadSlack + BrotliDictionary.maxDictionaryWordLength); - ringbuffer_end = ringbuffer_size; - - block_type_trees = []; - block_len_trees = []; - for (var x = 0; x < 3 * HUFFMAN_MAX_TABLE_SIZE; x++) { - block_type_trees[x] = new HuffmanCode(0, 0); - block_len_trees[x] = new HuffmanCode(0, 0); - } - - while (!input_end) { - var meta_block_remaining_len = 0; - var is_uncompressed; - var block_length = [ 1 << 28, 1 << 28, 1 << 28 ]; - var block_type = [ 0 ]; - var num_block_types = [ 1, 1, 1 ]; - var block_type_rb = [ 0, 1, 0, 1, 0, 1 ]; - var block_type_rb_index = [ 0 ]; - var distance_postfix_bits; - var num_direct_distance_codes; - var distance_postfix_mask; - var num_distance_codes; - var context_map = null; - var context_modes = null; - var num_literal_htrees; - var dist_context_map = null; - var num_dist_htrees; - var context_offset = 0; - var context_map_slice = null; - var literal_htree_index = 0; - var dist_context_offset = 0; - var dist_context_map_slice = null; - var dist_htree_index = 0; - var context_lookup_offset1 = 0; - var context_lookup_offset2 = 0; - var context_mode; - var htree_command; - - for (i = 0; i < 3; ++i) { - hgroup[i].codes = null; - hgroup[i].htrees = null; - } - - br.readMoreInput(); - - var _out = DecodeMetaBlockLength(br); - meta_block_remaining_len = _out.meta_block_length; - if (pos + meta_block_remaining_len > output.buffer.length) { - /* We need to grow the output buffer to fit the additional data. */ - var tmp = new Uint8Array( pos + meta_block_remaining_len ); - tmp.set( output.buffer ); - output.buffer = tmp; - } - input_end = _out.input_end; - is_uncompressed = _out.is_uncompressed; - - if (_out.is_metadata) { - JumpToByteBoundary(br); - - for (; meta_block_remaining_len > 0; --meta_block_remaining_len) { - br.readMoreInput(); - /* Read one byte and ignore it. */ - br.readBits(8); - } - - continue; - } - - if (meta_block_remaining_len === 0) { - continue; - } - - if (is_uncompressed) { - br.bit_pos_ = (br.bit_pos_ + 7) & ~7; - CopyUncompressedBlockToOutput(output, meta_block_remaining_len, pos, - ringbuffer, ringbuffer_mask, br); - pos += meta_block_remaining_len; - continue; - } - - for (i = 0; i < 3; ++i) { - num_block_types[i] = DecodeVarLenUint8(br) + 1; - if (num_block_types[i] >= 2) { - ReadHuffmanCode(num_block_types[i] + 2, block_type_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); - ReadHuffmanCode(kNumBlockLengthCodes, block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); - block_length[i] = ReadBlockLength(block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); - block_type_rb_index[i] = 1; - } - } - - br.readMoreInput(); - - distance_postfix_bits = br.readBits(2); - num_direct_distance_codes = NUM_DISTANCE_SHORT_CODES + (br.readBits(4) << distance_postfix_bits); - distance_postfix_mask = (1 << distance_postfix_bits) - 1; - num_distance_codes = (num_direct_distance_codes + (48 << distance_postfix_bits)); - context_modes = new Uint8Array(num_block_types[0]); - - for (i = 0; i < num_block_types[0]; ++i) { - br.readMoreInput(); - context_modes[i] = (br.readBits(2) << 1); - } - - var _o1 = DecodeContextMap(num_block_types[0] << kLiteralContextBits, br); - num_literal_htrees = _o1.num_htrees; - context_map = _o1.context_map; - - var _o2 = DecodeContextMap(num_block_types[2] << kDistanceContextBits, br); - num_dist_htrees = _o2.num_htrees; - dist_context_map = _o2.context_map; - - hgroup[0] = new HuffmanTreeGroup(kNumLiteralCodes, num_literal_htrees); - hgroup[1] = new HuffmanTreeGroup(kNumInsertAndCopyCodes, num_block_types[1]); - hgroup[2] = new HuffmanTreeGroup(num_distance_codes, num_dist_htrees); - - for (i = 0; i < 3; ++i) { - hgroup[i].decode(br); - } - - context_map_slice = 0; - dist_context_map_slice = 0; - context_mode = context_modes[block_type[0]]; - context_lookup_offset1 = Context.lookupOffsets[context_mode]; - context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; - htree_command = hgroup[1].htrees[0]; - - while (meta_block_remaining_len > 0) { - var cmd_code; - var range_idx; - var insert_code; - var copy_code; - var insert_length; - var copy_length; - var distance_code; - var distance; - var context; - var j; - var copy_dst; - - br.readMoreInput(); - - if (block_length[1] === 0) { - DecodeBlockType(num_block_types[1], - block_type_trees, 1, block_type, block_type_rb, - block_type_rb_index, br); - block_length[1] = ReadBlockLength(block_len_trees, HUFFMAN_MAX_TABLE_SIZE, br); - htree_command = hgroup[1].htrees[block_type[1]]; - } - --block_length[1]; - cmd_code = ReadSymbol(hgroup[1].codes, htree_command, br); - range_idx = cmd_code >> 6; - if (range_idx >= 2) { - range_idx -= 2; - distance_code = -1; - } else { - distance_code = 0; - } - insert_code = Prefix.kInsertRangeLut[range_idx] + ((cmd_code >> 3) & 7); - copy_code = Prefix.kCopyRangeLut[range_idx] + (cmd_code & 7); - insert_length = Prefix.kInsertLengthPrefixCode[insert_code].offset + - br.readBits(Prefix.kInsertLengthPrefixCode[insert_code].nbits); - copy_length = Prefix.kCopyLengthPrefixCode[copy_code].offset + - br.readBits(Prefix.kCopyLengthPrefixCode[copy_code].nbits); - prev_byte1 = ringbuffer[pos-1 & ringbuffer_mask]; - prev_byte2 = ringbuffer[pos-2 & ringbuffer_mask]; - for (j = 0; j < insert_length; ++j) { - br.readMoreInput(); - - if (block_length[0] === 0) { - DecodeBlockType(num_block_types[0], - block_type_trees, 0, block_type, block_type_rb, - block_type_rb_index, br); - block_length[0] = ReadBlockLength(block_len_trees, 0, br); - context_offset = block_type[0] << kLiteralContextBits; - context_map_slice = context_offset; - context_mode = context_modes[block_type[0]]; - context_lookup_offset1 = Context.lookupOffsets[context_mode]; - context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; - } - context = (Context.lookup[context_lookup_offset1 + prev_byte1] | - Context.lookup[context_lookup_offset2 + prev_byte2]); - literal_htree_index = context_map[context_map_slice + context]; - --block_length[0]; - prev_byte2 = prev_byte1; - prev_byte1 = ReadSymbol(hgroup[0].codes, hgroup[0].htrees[literal_htree_index], br); - ringbuffer[pos & ringbuffer_mask] = prev_byte1; - if ((pos & ringbuffer_mask) === ringbuffer_mask) { - output.write(ringbuffer, ringbuffer_size); - } - ++pos; - } - meta_block_remaining_len -= insert_length; - if (meta_block_remaining_len <= 0) break; - - if (distance_code < 0) { - var context; - - br.readMoreInput(); - if (block_length[2] === 0) { - DecodeBlockType(num_block_types[2], - block_type_trees, 2, block_type, block_type_rb, - block_type_rb_index, br); - block_length[2] = ReadBlockLength(block_len_trees, 2 * HUFFMAN_MAX_TABLE_SIZE, br); - dist_context_offset = block_type[2] << kDistanceContextBits; - dist_context_map_slice = dist_context_offset; - } - --block_length[2]; - context = (copy_length > 4 ? 3 : copy_length - 2) & 0xff; - dist_htree_index = dist_context_map[dist_context_map_slice + context]; - distance_code = ReadSymbol(hgroup[2].codes, hgroup[2].htrees[dist_htree_index], br); - if (distance_code >= num_direct_distance_codes) { - var nbits; - var postfix; - var offset; - distance_code -= num_direct_distance_codes; - postfix = distance_code & distance_postfix_mask; - distance_code >>= distance_postfix_bits; - nbits = (distance_code >> 1) + 1; - offset = ((2 + (distance_code & 1)) << nbits) - 4; - distance_code = num_direct_distance_codes + - ((offset + br.readBits(nbits)) << - distance_postfix_bits) + postfix; - } - } - - /* Convert the distance code to the actual distance by possibly looking */ - /* up past distnaces from the ringbuffer. */ - distance = TranslateShortCodes(distance_code, dist_rb, dist_rb_idx); - if (distance < 0) { - throw new Error('[BrotliDecompress] invalid distance'); - } - - if (pos < max_backward_distance && - max_distance !== max_backward_distance) { - max_distance = pos; - } else { - max_distance = max_backward_distance; - } - - copy_dst = pos & ringbuffer_mask; - - if (distance > max_distance) { - if (copy_length >= BrotliDictionary.minDictionaryWordLength && - copy_length <= BrotliDictionary.maxDictionaryWordLength) { - var offset = BrotliDictionary.offsetsByLength[copy_length]; - var word_id = distance - max_distance - 1; - var shift = BrotliDictionary.sizeBitsByLength[copy_length]; - var mask = (1 << shift) - 1; - var word_idx = word_id & mask; - var transform_idx = word_id >> shift; - offset += word_idx * copy_length; - if (transform_idx < Transform.kNumTransforms) { - var len = Transform.transformDictionaryWord(ringbuffer, copy_dst, offset, copy_length, transform_idx); - copy_dst += len; - pos += len; - meta_block_remaining_len -= len; - if (copy_dst >= ringbuffer_end) { - output.write(ringbuffer, ringbuffer_size); - - for (var _x = 0; _x < (copy_dst - ringbuffer_end); _x++) - ringbuffer[_x] = ringbuffer[ringbuffer_end + _x]; - } - } else { - throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + - " len: " + copy_length + " bytes left: " + meta_block_remaining_len); - } - } else { - throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + - " len: " + copy_length + " bytes left: " + meta_block_remaining_len); - } - } else { - if (distance_code > 0) { - dist_rb[dist_rb_idx & 3] = distance; - ++dist_rb_idx; - } - - if (copy_length > meta_block_remaining_len) { - throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + - " len: " + copy_length + " bytes left: " + meta_block_remaining_len); - } - - for (j = 0; j < copy_length; ++j) { - ringbuffer[pos & ringbuffer_mask] = ringbuffer[(pos - distance) & ringbuffer_mask]; - if ((pos & ringbuffer_mask) === ringbuffer_mask) { - output.write(ringbuffer, ringbuffer_size); - } - ++pos; - --meta_block_remaining_len; - } - } - - /* When we get here, we must have inserted at least one literal and */ - /* made a copy of at least length two, therefore accessing the last 2 */ - /* bytes is valid. */ - prev_byte1 = ringbuffer[(pos - 1) & ringbuffer_mask]; - prev_byte2 = ringbuffer[(pos - 2) & ringbuffer_mask]; - } - - /* Protect pos from overflow, wrap it around at every GB of input data */ - pos &= 0x3fffffff; - } - - output.write(ringbuffer, pos & ringbuffer_mask); -} - -__webpack_unused_export__ = BrotliDecompress; - -BrotliDictionary.init(); - - -/***/ }), - -/***/ 21012: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var ArrayBufferViewCore = __webpack_require__(59754); -var $filter = (__webpack_require__(91102).filter); -var fromSpeciesAndList = __webpack_require__(59610); - -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - -// `%TypedArray%.prototype.filter` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.filter -exportTypedArrayMethod('filter', function filter(callbackfn /* , thisArg */) { - var list = $filter(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); - return fromSpeciesAndList(this, list); -}); - - -/***/ }), - -/***/ 21166: -/***/ (function(module) { - -"use strict"; -module.exports = /*#__PURE__*/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,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",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","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"]]'); - -/***/ }), - -/***/ 21182: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var anObject = __webpack_require__(34984); - -// `RegExp.prototype.flags` getter implementation -// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags -module.exports = function () { - var that = anObject(this); - var result = ''; - if (that.global) result += 'g'; - if (that.ignoreCase) result += 'i'; - if (that.multiline) result += 'm'; - if (that.dotAll) result += 's'; - if (that.unicode) result += 'u'; - if (that.sticky) result += 'y'; - return result; -}; - - -/***/ }), - -/***/ 21594: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var getBuiltIn = __webpack_require__(38486); -var uncurryThis = __webpack_require__(38347); -var getOwnPropertyNamesModule = __webpack_require__(6611); -var getOwnPropertySymbolsModule = __webpack_require__(61146); -var anObject = __webpack_require__(34984); - -var concat = uncurryThis([].concat); - -// all object keys, includes non-enumerable and symbols -module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) { - var keys = getOwnPropertyNamesModule.f(anObject(it)); - var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; - return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys; -}; - - -/***/ }), - -/***/ 21983: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var UA = __webpack_require__(40715); - -module.exports = /MSIE|Trident/.test(UA); - - -/***/ }), - -/***/ 22367: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; - - -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. - -/* eslint-disable space-unary-ops */ - -var utils = __webpack_require__(72519); - -/* Public constants ==========================================================*/ -/* ===========================================================================*/ - - -//var Z_FILTERED = 1; -//var Z_HUFFMAN_ONLY = 2; -//var Z_RLE = 3; -var Z_FIXED = 4; -//var Z_DEFAULT_STRATEGY = 0; - -/* Possible values of the data_type field (though see inflate()) */ -var Z_BINARY = 0; -var Z_TEXT = 1; -//var Z_ASCII = 1; // = Z_TEXT -var Z_UNKNOWN = 2; - -/*============================================================================*/ - - -function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } } - -// From zutil.h - -var STORED_BLOCK = 0; -var STATIC_TREES = 1; -var DYN_TREES = 2; -/* The three kinds of block type */ - -var MIN_MATCH = 3; -var MAX_MATCH = 258; -/* The minimum and maximum match lengths */ - -// From deflate.h -/* =========================================================================== - * Internal compression state. - */ - -var LENGTH_CODES = 29; -/* number of length codes, not counting the special END_BLOCK code */ - -var LITERALS = 256; -/* number of literal bytes 0..255 */ - -var L_CODES = LITERALS + 1 + LENGTH_CODES; -/* number of Literal or Length codes, including the END_BLOCK code */ - -var D_CODES = 30; -/* number of distance codes */ - -var BL_CODES = 19; -/* number of codes used to transfer the bit lengths */ - -var HEAP_SIZE = 2 * L_CODES + 1; -/* maximum heap size */ - -var MAX_BITS = 15; -/* All codes must not exceed MAX_BITS bits */ - -var Buf_size = 16; -/* size of bit buffer in bi_buf */ - - -/* =========================================================================== - * Constants - */ - -var MAX_BL_BITS = 7; -/* Bit length codes must not exceed MAX_BL_BITS bits */ - -var END_BLOCK = 256; -/* end of block literal code */ - -var REP_3_6 = 16; -/* repeat previous bit length 3-6 times (2 bits of repeat count) */ - -var REPZ_3_10 = 17; -/* repeat a zero length 3-10 times (3 bits of repeat count) */ - -var REPZ_11_138 = 18; -/* repeat a zero length 11-138 times (7 bits of repeat count) */ - -/* eslint-disable comma-spacing,array-bracket-spacing */ -var extra_lbits = /* extra bits for each length code */ - [0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]; - -var extra_dbits = /* extra bits for each distance code */ - [0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]; - -var extra_blbits = /* extra bits for each bit length code */ - [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]; - -var bl_order = - [16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]; -/* eslint-enable comma-spacing,array-bracket-spacing */ - -/* The lengths of the bit length codes are sent in order of decreasing - * probability, to avoid transmitting the lengths for unused bit length codes. - */ - -/* =========================================================================== - * Local data. These are initialized only once. - */ - -// We pre-fill arrays with 0 to avoid uninitialized gaps - -var DIST_CODE_LEN = 512; /* see definition of array dist_code below */ - -// !!!! Use flat array instead of structure, Freq = i*2, Len = i*2+1 -var static_ltree = new Array((L_CODES + 2) * 2); -zero(static_ltree); -/* The static literal tree. Since the bit lengths are imposed, there is no - * need for the L_CODES extra codes used during heap construction. However - * The codes 286 and 287 are needed to build a canonical tree (see _tr_init - * below). - */ - -var static_dtree = new Array(D_CODES * 2); -zero(static_dtree); -/* The static distance tree. (Actually a trivial tree since all codes use - * 5 bits.) - */ - -var _dist_code = new Array(DIST_CODE_LEN); -zero(_dist_code); -/* Distance codes. The first 256 values correspond to the distances - * 3 .. 258, the last 256 values correspond to the top 8 bits of - * the 15 bit distances. - */ - -var _length_code = new Array(MAX_MATCH - MIN_MATCH + 1); -zero(_length_code); -/* length code for each normalized match length (0 == MIN_MATCH) */ - -var base_length = new Array(LENGTH_CODES); -zero(base_length); -/* First normalized length for each code (0 = MIN_MATCH) */ - -var base_dist = new Array(D_CODES); -zero(base_dist); -/* First normalized distance for each code (0 = distance of 1) */ - - -function StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) { - - this.static_tree = static_tree; /* static tree or NULL */ - this.extra_bits = extra_bits; /* extra bits for each code or NULL */ - this.extra_base = extra_base; /* base index for extra_bits */ - this.elems = elems; /* max number of elements in the tree */ - this.max_length = max_length; /* max bit length for the codes */ - - // show if `static_tree` has data or dummy - needed for monomorphic objects - this.has_stree = static_tree && static_tree.length; -} - - -var static_l_desc; -var static_d_desc; -var static_bl_desc; - - -function TreeDesc(dyn_tree, stat_desc) { - this.dyn_tree = dyn_tree; /* the dynamic tree */ - this.max_code = 0; /* largest code with non zero frequency */ - this.stat_desc = stat_desc; /* the corresponding static tree */ -} - - - -function d_code(dist) { - return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)]; -} - - -/* =========================================================================== - * Output a short LSB first on the stream. - * IN assertion: there is enough room in pendingBuf. - */ -function put_short(s, w) { -// put_byte(s, (uch)((w) & 0xff)); -// put_byte(s, (uch)((ush)(w) >> 8)); - s.pending_buf[s.pending++] = (w) & 0xff; - s.pending_buf[s.pending++] = (w >>> 8) & 0xff; -} - - -/* =========================================================================== - * Send a value on a given number of bits. - * IN assertion: length <= 16 and value fits in length bits. - */ -function send_bits(s, value, length) { - if (s.bi_valid > (Buf_size - length)) { - s.bi_buf |= (value << s.bi_valid) & 0xffff; - put_short(s, s.bi_buf); - s.bi_buf = value >> (Buf_size - s.bi_valid); - s.bi_valid += length - Buf_size; - } else { - s.bi_buf |= (value << s.bi_valid) & 0xffff; - s.bi_valid += length; - } -} - - -function send_code(s, c, tree) { - send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/); -} - - -/* =========================================================================== - * Reverse the first len bits of a code, using straightforward code (a faster - * method would use a table) - * IN assertion: 1 <= len <= 15 - */ -function bi_reverse(code, len) { - var res = 0; - do { - res |= code & 1; - code >>>= 1; - res <<= 1; - } while (--len > 0); - return res >>> 1; -} - - -/* =========================================================================== - * Flush the bit buffer, keeping at most 7 bits in it. - */ -function bi_flush(s) { - if (s.bi_valid === 16) { - put_short(s, s.bi_buf); - s.bi_buf = 0; - s.bi_valid = 0; - - } else if (s.bi_valid >= 8) { - s.pending_buf[s.pending++] = s.bi_buf & 0xff; - s.bi_buf >>= 8; - s.bi_valid -= 8; - } -} - - -/* =========================================================================== - * Compute the optimal bit lengths for a tree and update the total bit length - * for the current block. - * IN assertion: the fields freq and dad are set, heap[heap_max] and - * above are the tree nodes sorted by increasing frequency. - * OUT assertions: the field len is set to the optimal bit length, the - * array bl_count contains the frequencies for each bit length. - * The length opt_len is updated; static_len is also updated if stree is - * not null. - */ -function gen_bitlen(s, desc) -// deflate_state *s; -// tree_desc *desc; /* the tree descriptor */ -{ - var tree = desc.dyn_tree; - var max_code = desc.max_code; - var stree = desc.stat_desc.static_tree; - var has_stree = desc.stat_desc.has_stree; - var extra = desc.stat_desc.extra_bits; - var base = desc.stat_desc.extra_base; - var max_length = desc.stat_desc.max_length; - var h; /* heap index */ - var n, m; /* iterate over the tree elements */ - var bits; /* bit length */ - var xbits; /* extra bits */ - var f; /* frequency */ - var overflow = 0; /* number of elements with bit length too large */ - - for (bits = 0; bits <= MAX_BITS; bits++) { - s.bl_count[bits] = 0; - } - - /* In a first pass, compute the optimal bit lengths (which may - * overflow in the case of the bit length tree). - */ - tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */ - - for (h = s.heap_max + 1; h < HEAP_SIZE; h++) { - n = s.heap[h]; - bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1; - if (bits > max_length) { - bits = max_length; - overflow++; - } - tree[n * 2 + 1]/*.Len*/ = bits; - /* We overwrite tree[n].Dad which is no longer needed */ - - if (n > max_code) { continue; } /* not a leaf node */ - - s.bl_count[bits]++; - xbits = 0; - if (n >= base) { - xbits = extra[n - base]; - } - f = tree[n * 2]/*.Freq*/; - s.opt_len += f * (bits + xbits); - if (has_stree) { - s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits); - } - } - if (overflow === 0) { return; } - - // Trace((stderr,"\nbit length overflow\n")); - /* This happens for example on obj2 and pic of the Calgary corpus */ - - /* Find the first bit length which could increase: */ - do { - bits = max_length - 1; - while (s.bl_count[bits] === 0) { bits--; } - s.bl_count[bits]--; /* move one leaf down the tree */ - s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */ - s.bl_count[max_length]--; - /* The brother of the overflow item also moves one step up, - * but this does not affect bl_count[max_length] - */ - overflow -= 2; - } while (overflow > 0); - - /* Now recompute all bit lengths, scanning in increasing frequency. - * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all - * lengths instead of fixing only the wrong ones. This idea is taken - * from 'ar' written by Haruhiko Okumura.) - */ - for (bits = max_length; bits !== 0; bits--) { - n = s.bl_count[bits]; - while (n !== 0) { - m = s.heap[--h]; - if (m > max_code) { continue; } - if (tree[m * 2 + 1]/*.Len*/ !== bits) { - // Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits)); - s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/; - tree[m * 2 + 1]/*.Len*/ = bits; - } - n--; - } - } -} - - -/* =========================================================================== - * Generate the codes for a given tree and bit counts (which need not be - * optimal). - * IN assertion: the array bl_count contains the bit length statistics for - * the given tree and the field len is set for all tree elements. - * OUT assertion: the field code is set for all tree elements of non - * zero code length. - */ -function gen_codes(tree, max_code, bl_count) -// ct_data *tree; /* the tree to decorate */ -// int max_code; /* largest code with non zero frequency */ -// ushf *bl_count; /* number of codes at each bit length */ -{ - var next_code = new Array(MAX_BITS + 1); /* next code value for each bit length */ - var code = 0; /* running code value */ - var bits; /* bit index */ - var n; /* code index */ - - /* The distribution counts are first used to generate the code values - * without bit reversal. - */ - for (bits = 1; bits <= MAX_BITS; bits++) { - next_code[bits] = code = (code + bl_count[bits - 1]) << 1; - } - /* Check that the bit counts in bl_count are consistent. The last code - * must be all ones. - */ - //Assert (code + bl_count[MAX_BITS]-1 == (1< length code (0..28) */ - length = 0; - for (code = 0; code < LENGTH_CODES - 1; code++) { - base_length[code] = length; - for (n = 0; n < (1 << extra_lbits[code]); n++) { - _length_code[length++] = code; - } - } - //Assert (length == 256, "tr_static_init: length != 256"); - /* Note that the length 255 (match length 258) can be represented - * in two different ways: code 284 + 5 bits or code 285, so we - * overwrite length_code[255] to use the best encoding: - */ - _length_code[length - 1] = code; - - /* Initialize the mapping dist (0..32K) -> dist code (0..29) */ - dist = 0; - for (code = 0; code < 16; code++) { - base_dist[code] = dist; - for (n = 0; n < (1 << extra_dbits[code]); n++) { - _dist_code[dist++] = code; - } - } - //Assert (dist == 256, "tr_static_init: dist != 256"); - dist >>= 7; /* from now on, all distances are divided by 128 */ - for (; code < D_CODES; code++) { - base_dist[code] = dist << 7; - for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) { - _dist_code[256 + dist++] = code; - } - } - //Assert (dist == 256, "tr_static_init: 256+dist != 512"); - - /* Construct the codes of the static literal tree */ - for (bits = 0; bits <= MAX_BITS; bits++) { - bl_count[bits] = 0; - } - - n = 0; - while (n <= 143) { - static_ltree[n * 2 + 1]/*.Len*/ = 8; - n++; - bl_count[8]++; - } - while (n <= 255) { - static_ltree[n * 2 + 1]/*.Len*/ = 9; - n++; - bl_count[9]++; - } - while (n <= 279) { - static_ltree[n * 2 + 1]/*.Len*/ = 7; - n++; - bl_count[7]++; - } - while (n <= 287) { - static_ltree[n * 2 + 1]/*.Len*/ = 8; - n++; - bl_count[8]++; - } - /* Codes 286 and 287 do not exist, but we must include them in the - * tree construction to get a canonical Huffman tree (longest code - * all ones) - */ - gen_codes(static_ltree, L_CODES + 1, bl_count); - - /* The static distance tree is trivial: */ - for (n = 0; n < D_CODES; n++) { - static_dtree[n * 2 + 1]/*.Len*/ = 5; - static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5); - } - - // Now data ready and we can init static trees - static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS + 1, L_CODES, MAX_BITS); - static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0, D_CODES, MAX_BITS); - static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0, BL_CODES, MAX_BL_BITS); - - //static_init_done = true; -} - - -/* =========================================================================== - * Initialize a new block. - */ -function init_block(s) { - var n; /* iterates over tree elements */ - - /* Initialize the trees. */ - for (n = 0; n < L_CODES; n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; } - for (n = 0; n < D_CODES; n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; } - for (n = 0; n < BL_CODES; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; } - - s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1; - s.opt_len = s.static_len = 0; - s.last_lit = s.matches = 0; -} - - -/* =========================================================================== - * Flush the bit buffer and align the output on a byte boundary - */ -function bi_windup(s) -{ - if (s.bi_valid > 8) { - put_short(s, s.bi_buf); - } else if (s.bi_valid > 0) { - //put_byte(s, (Byte)s->bi_buf); - s.pending_buf[s.pending++] = s.bi_buf; - } - s.bi_buf = 0; - s.bi_valid = 0; -} - -/* =========================================================================== - * Copy a stored block, storing first the length and its - * one's complement if requested. - */ -function copy_block(s, buf, len, header) -//DeflateState *s; -//charf *buf; /* the input data */ -//unsigned len; /* its length */ -//int header; /* true if block header must be written */ -{ - bi_windup(s); /* align on byte boundary */ - - if (header) { - put_short(s, len); - put_short(s, ~len); - } -// while (len--) { -// put_byte(s, *buf++); -// } - utils.arraySet(s.pending_buf, s.window, buf, len, s.pending); - s.pending += len; -} - -/* =========================================================================== - * Compares to subtrees, using the tree depth as tie breaker when - * the subtrees have equal frequency. This minimizes the worst case length. - */ -function smaller(tree, n, m, depth) { - var _n2 = n * 2; - var _m2 = m * 2; - return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ || - (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m])); -} - -/* =========================================================================== - * Restore the heap property by moving down the tree starting at node k, - * exchanging a node with the smallest of its two sons if necessary, stopping - * when the heap property is re-established (each father smaller than its - * two sons). - */ -function pqdownheap(s, tree, k) -// deflate_state *s; -// ct_data *tree; /* the tree to restore */ -// int k; /* node to move down */ -{ - var v = s.heap[k]; - var j = k << 1; /* left son of k */ - while (j <= s.heap_len) { - /* Set j to the smallest of the two sons: */ - if (j < s.heap_len && - smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) { - j++; - } - /* Exit if v is smaller than both sons */ - if (smaller(tree, v, s.heap[j], s.depth)) { break; } - - /* Exchange v with the smallest son */ - s.heap[k] = s.heap[j]; - k = j; - - /* And continue down the tree, setting j to the left son of k */ - j <<= 1; - } - s.heap[k] = v; -} - - -// inlined manually -// var SMALLEST = 1; - -/* =========================================================================== - * Send the block data compressed using the given Huffman trees - */ -function compress_block(s, ltree, dtree) -// deflate_state *s; -// const ct_data *ltree; /* literal tree */ -// const ct_data *dtree; /* distance tree */ -{ - var dist; /* distance of matched string */ - var lc; /* match length or unmatched char (if dist == 0) */ - var lx = 0; /* running index in l_buf */ - var code; /* the code to send */ - var extra; /* number of extra bits to send */ - - if (s.last_lit !== 0) { - do { - dist = (s.pending_buf[s.d_buf + lx * 2] << 8) | (s.pending_buf[s.d_buf + lx * 2 + 1]); - lc = s.pending_buf[s.l_buf + lx]; - lx++; - - if (dist === 0) { - send_code(s, lc, ltree); /* send a literal byte */ - //Tracecv(isgraph(lc), (stderr," '%c' ", lc)); - } else { - /* Here, lc is the match length - MIN_MATCH */ - code = _length_code[lc]; - send_code(s, code + LITERALS + 1, ltree); /* send the length code */ - extra = extra_lbits[code]; - if (extra !== 0) { - lc -= base_length[code]; - send_bits(s, lc, extra); /* send the extra length bits */ - } - dist--; /* dist is now the match distance - 1 */ - code = d_code(dist); - //Assert (code < D_CODES, "bad d_code"); - - send_code(s, code, dtree); /* send the distance code */ - extra = extra_dbits[code]; - if (extra !== 0) { - dist -= base_dist[code]; - send_bits(s, dist, extra); /* send the extra distance bits */ - } - } /* literal or match pair ? */ - - /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */ - //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx, - // "pendingBuf overflow"); - - } while (lx < s.last_lit); - } - - send_code(s, END_BLOCK, ltree); -} - - -/* =========================================================================== - * Construct one Huffman tree and assigns the code bit strings and lengths. - * Update the total bit length for the current block. - * IN assertion: the field freq is set for all tree elements. - * OUT assertions: the fields len and code are set to the optimal bit length - * and corresponding code. The length opt_len is updated; static_len is - * also updated if stree is not null. The field max_code is set. - */ -function build_tree(s, desc) -// deflate_state *s; -// tree_desc *desc; /* the tree descriptor */ -{ - var tree = desc.dyn_tree; - var stree = desc.stat_desc.static_tree; - var has_stree = desc.stat_desc.has_stree; - var elems = desc.stat_desc.elems; - var n, m; /* iterate over heap elements */ - var max_code = -1; /* largest code with non zero frequency */ - var node; /* new node being created */ - - /* Construct the initial heap, with least frequent element in - * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1]. - * heap[0] is not used. - */ - s.heap_len = 0; - s.heap_max = HEAP_SIZE; - - for (n = 0; n < elems; n++) { - if (tree[n * 2]/*.Freq*/ !== 0) { - s.heap[++s.heap_len] = max_code = n; - s.depth[n] = 0; - - } else { - tree[n * 2 + 1]/*.Len*/ = 0; - } - } - - /* The pkzip format requires that at least one distance code exists, - * and that at least one bit should be sent even if there is only one - * possible code. So to avoid special checks later on we force at least - * two codes of non zero frequency. - */ - while (s.heap_len < 2) { - node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0); - tree[node * 2]/*.Freq*/ = 1; - s.depth[node] = 0; - s.opt_len--; - - if (has_stree) { - s.static_len -= stree[node * 2 + 1]/*.Len*/; - } - /* node is 0 or 1 so it does not have extra bits */ - } - desc.max_code = max_code; - - /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree, - * establish sub-heaps of increasing lengths: - */ - for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); } - - /* Construct the Huffman tree by repeatedly combining the least two - * frequent nodes. - */ - node = elems; /* next internal node of the tree */ - do { - //pqremove(s, tree, n); /* n = node of least frequency */ - /*** pqremove ***/ - n = s.heap[1/*SMALLEST*/]; - s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--]; - pqdownheap(s, tree, 1/*SMALLEST*/); - /***/ - - m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */ - - s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */ - s.heap[--s.heap_max] = m; - - /* Create a new node father of n and m */ - tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/; - s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1; - tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node; - - /* and insert the new node in the heap */ - s.heap[1/*SMALLEST*/] = node++; - pqdownheap(s, tree, 1/*SMALLEST*/); - - } while (s.heap_len >= 2); - - s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/]; - - /* At this point, the fields freq and dad are set. We can now - * generate the bit lengths. - */ - gen_bitlen(s, desc); - - /* The field len is now set, we can generate the bit codes */ - gen_codes(tree, max_code, s.bl_count); -} - - -/* =========================================================================== - * Scan a literal or distance tree to determine the frequencies of the codes - * in the bit length tree. - */ -function scan_tree(s, tree, max_code) -// deflate_state *s; -// ct_data *tree; /* the tree to be scanned */ -// int max_code; /* and its largest code of non zero frequency */ -{ - var n; /* iterates over all tree elements */ - var prevlen = -1; /* last emitted length */ - var curlen; /* length of current code */ - - var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */ - - var count = 0; /* repeat count of the current code */ - var max_count = 7; /* max repeat count */ - var min_count = 4; /* min repeat count */ - - if (nextlen === 0) { - max_count = 138; - min_count = 3; - } - tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */ - - for (n = 0; n <= max_code; n++) { - curlen = nextlen; - nextlen = tree[(n + 1) * 2 + 1]/*.Len*/; - - if (++count < max_count && curlen === nextlen) { - continue; - - } else if (count < min_count) { - s.bl_tree[curlen * 2]/*.Freq*/ += count; - - } else if (curlen !== 0) { - - if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; } - s.bl_tree[REP_3_6 * 2]/*.Freq*/++; - - } else if (count <= 10) { - s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++; - - } else { - s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++; - } - - count = 0; - prevlen = curlen; - - if (nextlen === 0) { - max_count = 138; - min_count = 3; - - } else if (curlen === nextlen) { - max_count = 6; - min_count = 3; - - } else { - max_count = 7; - min_count = 4; - } - } -} - - -/* =========================================================================== - * Send a literal or distance tree in compressed form, using the codes in - * bl_tree. - */ -function send_tree(s, tree, max_code) -// deflate_state *s; -// ct_data *tree; /* the tree to be scanned */ -// int max_code; /* and its largest code of non zero frequency */ -{ - var n; /* iterates over all tree elements */ - var prevlen = -1; /* last emitted length */ - var curlen; /* length of current code */ - - var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */ - - var count = 0; /* repeat count of the current code */ - var max_count = 7; /* max repeat count */ - var min_count = 4; /* min repeat count */ - - /* tree[max_code+1].Len = -1; */ /* guard already set */ - if (nextlen === 0) { - max_count = 138; - min_count = 3; - } - - for (n = 0; n <= max_code; n++) { - curlen = nextlen; - nextlen = tree[(n + 1) * 2 + 1]/*.Len*/; - - if (++count < max_count && curlen === nextlen) { - continue; - - } else if (count < min_count) { - do { send_code(s, curlen, s.bl_tree); } while (--count !== 0); - - } else if (curlen !== 0) { - if (curlen !== prevlen) { - send_code(s, curlen, s.bl_tree); - count--; - } - //Assert(count >= 3 && count <= 6, " 3_6?"); - send_code(s, REP_3_6, s.bl_tree); - send_bits(s, count - 3, 2); - - } else if (count <= 10) { - send_code(s, REPZ_3_10, s.bl_tree); - send_bits(s, count - 3, 3); - - } else { - send_code(s, REPZ_11_138, s.bl_tree); - send_bits(s, count - 11, 7); - } - - count = 0; - prevlen = curlen; - if (nextlen === 0) { - max_count = 138; - min_count = 3; - - } else if (curlen === nextlen) { - max_count = 6; - min_count = 3; - - } else { - max_count = 7; - min_count = 4; - } - } -} - - -/* =========================================================================== - * Construct the Huffman tree for the bit lengths and return the index in - * bl_order of the last bit length code to send. - */ -function build_bl_tree(s) { - var max_blindex; /* index of last bit length code of non zero freq */ - - /* Determine the bit length frequencies for literal and distance trees */ - scan_tree(s, s.dyn_ltree, s.l_desc.max_code); - scan_tree(s, s.dyn_dtree, s.d_desc.max_code); - - /* Build the bit length tree: */ - build_tree(s, s.bl_desc); - /* opt_len now includes the length of the tree representations, except - * the lengths of the bit lengths codes and the 5+5+4 bits for the counts. - */ - - /* Determine the number of bit length codes to send. The pkzip format - * requires that at least 4 bit length codes be sent. (appnote.txt says - * 3 but the actual value used is 4.) - */ - for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) { - if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) { - break; - } - } - /* Update opt_len to include the bit length tree and counts */ - s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4; - //Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", - // s->opt_len, s->static_len)); - - return max_blindex; -} - - -/* =========================================================================== - * Send the header for a block using dynamic Huffman trees: the counts, the - * lengths of the bit length codes, the literal tree and the distance tree. - * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4. - */ -function send_all_trees(s, lcodes, dcodes, blcodes) -// deflate_state *s; -// int lcodes, dcodes, blcodes; /* number of codes for each tree */ -{ - var rank; /* index in bl_order */ - - //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes"); - //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES, - // "too many codes"); - //Tracev((stderr, "\nbl counts: ")); - send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */ - send_bits(s, dcodes - 1, 5); - send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */ - for (rank = 0; rank < blcodes; rank++) { - //Tracev((stderr, "\nbl code %2d ", bl_order[rank])); - send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3); - } - //Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent)); - - send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */ - //Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent)); - - send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */ - //Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent)); -} - - -/* =========================================================================== - * Check if the data type is TEXT or BINARY, using the following algorithm: - * - TEXT if the two conditions below are satisfied: - * a) There are no non-portable control characters belonging to the - * "black list" (0..6, 14..25, 28..31). - * b) There is at least one printable character belonging to the - * "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255). - * - BINARY otherwise. - * - The following partially-portable control characters form a - * "gray list" that is ignored in this detection algorithm: - * (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}). - * IN assertion: the fields Freq of dyn_ltree are set. - */ -function detect_data_type(s) { - /* black_mask is the bit mask of black-listed bytes - * set bits 0..6, 14..25, and 28..31 - * 0xf3ffc07f = binary 11110011111111111100000001111111 - */ - var black_mask = 0xf3ffc07f; - var n; - - /* Check for non-textual ("black-listed") bytes. */ - for (n = 0; n <= 31; n++, black_mask >>>= 1) { - if ((black_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) { - return Z_BINARY; - } - } - - /* Check for textual ("white-listed") bytes. */ - if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 || - s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) { - return Z_TEXT; - } - for (n = 32; n < LITERALS; n++) { - if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) { - return Z_TEXT; - } - } - - /* There are no "black-listed" or "white-listed" bytes: - * this stream either is empty or has tolerated ("gray-listed") bytes only. - */ - return Z_BINARY; -} - - -var static_init_done = false; - -/* =========================================================================== - * Initialize the tree data structures for a new zlib stream. - */ -function _tr_init(s) -{ - - if (!static_init_done) { - tr_static_init(); - static_init_done = true; - } - - s.l_desc = new TreeDesc(s.dyn_ltree, static_l_desc); - s.d_desc = new TreeDesc(s.dyn_dtree, static_d_desc); - s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc); - - s.bi_buf = 0; - s.bi_valid = 0; - - /* Initialize the first block of the first file: */ - init_block(s); -} - - -/* =========================================================================== - * Send a stored block - */ -function _tr_stored_block(s, buf, stored_len, last) -//DeflateState *s; -//charf *buf; /* input block */ -//ulg stored_len; /* length of input block */ -//int last; /* one if this is the last block for a file */ -{ - send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3); /* send block type */ - copy_block(s, buf, stored_len, true); /* with header */ -} - - -/* =========================================================================== - * Send one empty static block to give enough lookahead for inflate. - * This takes 10 bits, of which 7 may remain in the bit buffer. - */ -function _tr_align(s) { - send_bits(s, STATIC_TREES << 1, 3); - send_code(s, END_BLOCK, static_ltree); - bi_flush(s); -} - - -/* =========================================================================== - * Determine the best encoding for the current block: dynamic trees, static - * trees or store, and output the encoded block to the zip file. - */ -function _tr_flush_block(s, buf, stored_len, last) -//DeflateState *s; -//charf *buf; /* input block, or NULL if too old */ -//ulg stored_len; /* length of input block */ -//int last; /* one if this is the last block for a file */ -{ - var opt_lenb, static_lenb; /* opt_len and static_len in bytes */ - var max_blindex = 0; /* index of last bit length code of non zero freq */ - - /* Build the Huffman trees unless a stored block is forced */ - if (s.level > 0) { - - /* Check if the file is binary or text */ - if (s.strm.data_type === Z_UNKNOWN) { - s.strm.data_type = detect_data_type(s); - } - - /* Construct the literal and distance trees */ - build_tree(s, s.l_desc); - // Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len, - // s->static_len)); - - build_tree(s, s.d_desc); - // Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len, - // s->static_len)); - /* At this point, opt_len and static_len are the total bit lengths of - * the compressed block data, excluding the tree representations. - */ - - /* Build the bit length tree for the above two trees, and get the index - * in bl_order of the last bit length code to send. - */ - max_blindex = build_bl_tree(s); - - /* Determine the best encoding. Compute the block lengths in bytes. */ - opt_lenb = (s.opt_len + 3 + 7) >>> 3; - static_lenb = (s.static_len + 3 + 7) >>> 3; - - // Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ", - // opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len, - // s->last_lit)); - - if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; } - - } else { - // Assert(buf != (char*)0, "lost buf"); - opt_lenb = static_lenb = stored_len + 5; /* force a stored block */ - } - - if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) { - /* 4: two words for the lengths */ - - /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE. - * Otherwise we can't have processed more than WSIZE input bytes since - * the last block flush, because compression would have been - * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to - * transform a block into a stored block. - */ - _tr_stored_block(s, buf, stored_len, last); - - } else if (s.strategy === Z_FIXED || static_lenb === opt_lenb) { - - send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3); - compress_block(s, static_ltree, static_dtree); - - } else { - send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3); - send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1); - compress_block(s, s.dyn_ltree, s.dyn_dtree); - } - // Assert (s->compressed_len == s->bits_sent, "bad compressed size"); - /* The above check is made mod 2^32, for files larger than 512 MB - * and uLong implemented on 32 bits. - */ - init_block(s); - - if (last) { - bi_windup(s); - } - // Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3, - // s->compressed_len-7*last)); -} - -/* =========================================================================== - * Save the match info and tally the frequency counts. Return true if - * the current block must be flushed. - */ -function _tr_tally(s, dist, lc) -// deflate_state *s; -// unsigned dist; /* distance of matched string */ -// unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */ -{ - //var out_length, in_length, dcode; - - s.pending_buf[s.d_buf + s.last_lit * 2] = (dist >>> 8) & 0xff; - s.pending_buf[s.d_buf + s.last_lit * 2 + 1] = dist & 0xff; - - s.pending_buf[s.l_buf + s.last_lit] = lc & 0xff; - s.last_lit++; - - if (dist === 0) { - /* lc is the unmatched char */ - s.dyn_ltree[lc * 2]/*.Freq*/++; - } else { - s.matches++; - /* Here, lc is the match length - MIN_MATCH */ - dist--; /* dist = match distance - 1 */ - //Assert((ush)dist < (ush)MAX_DIST(s) && - // (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && - // (ush)d_code(dist) < (ush)D_CODES, "_tr_tally: bad match"); - - s.dyn_ltree[(_length_code[lc] + LITERALS + 1) * 2]/*.Freq*/++; - s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++; - } - -// (!) This block is disabled in zlib defaults, -// don't enable it for binary compatibility - -//#ifdef TRUNCATE_BLOCK -// /* Try to guess if it is profitable to stop the current block here */ -// if ((s.last_lit & 0x1fff) === 0 && s.level > 2) { -// /* Compute an upper bound for the compressed length */ -// out_length = s.last_lit*8; -// in_length = s.strstart - s.block_start; -// -// for (dcode = 0; dcode < D_CODES; dcode++) { -// out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]); -// } -// out_length >>>= 3; -// //Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ", -// // s->last_lit, in_length, out_length, -// // 100L - out_length*100L/in_length)); -// if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) { -// return true; -// } -// } -//#endif - - return (s.last_lit === s.lit_bufsize - 1); - /* We avoid equality with lit_bufsize because of wraparound at 64K - * on 16 bit machines and because stored blocks are restricted to - * 64K-1 bytes. - */ -} - -exports._tr_init = _tr_init; -exports._tr_stored_block = _tr_stored_block; -exports._tr_flush_block = _tr_flush_block; -exports._tr_tally = _tr_tally; -exports._tr_align = _tr_align; - - -/***/ }), - -/***/ 22774: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var GetIntrinsic = __webpack_require__(28651); - -var callBindBasic = __webpack_require__(36688); - -/** @type {(thisArg: string, searchString: string, position?: number) => number} */ -var $indexOf = callBindBasic([GetIntrinsic('%String.prototype.indexOf%')]); - -/** @type {import('.')} */ -module.exports = function callBoundIntrinsic(name, allowMissing) { - /* eslint no-extra-parens: 0 */ - - var intrinsic = /** @type {(this: unknown, ...args: unknown[]) => unknown} */ (GetIntrinsic(name, !!allowMissing)); - if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { - return callBindBasic(/** @type {const} */ ([intrinsic])); - } - return intrinsic; -}; - - -/***/ }), - -/***/ 22925: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - -"use strict"; - - -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. - -var utils = __webpack_require__(72519); -var trees = __webpack_require__(22367); -var adler32 = __webpack_require__(46911); -var crc32 = __webpack_require__(99049); -var msg = __webpack_require__(56228); - -/* Public constants ==========================================================*/ -/* ===========================================================================*/ - - -/* Allowed flush values; see deflate() and inflate() below for details */ -var Z_NO_FLUSH = 0; -var Z_PARTIAL_FLUSH = 1; -//var Z_SYNC_FLUSH = 2; -var Z_FULL_FLUSH = 3; -var Z_FINISH = 4; -var Z_BLOCK = 5; -//var Z_TREES = 6; - - -/* Return codes for the compression/decompression functions. Negative values - * are errors, positive values are used for special but normal events. - */ -var Z_OK = 0; -var Z_STREAM_END = 1; -//var Z_NEED_DICT = 2; -//var Z_ERRNO = -1; -var Z_STREAM_ERROR = -2; -var Z_DATA_ERROR = -3; -//var Z_MEM_ERROR = -4; -var Z_BUF_ERROR = -5; -//var Z_VERSION_ERROR = -6; - - -/* compression levels */ -//var Z_NO_COMPRESSION = 0; -//var Z_BEST_SPEED = 1; -//var Z_BEST_COMPRESSION = 9; -var Z_DEFAULT_COMPRESSION = -1; - - -var Z_FILTERED = 1; -var Z_HUFFMAN_ONLY = 2; -var Z_RLE = 3; -var Z_FIXED = 4; -var Z_DEFAULT_STRATEGY = 0; - -/* Possible values of the data_type field (though see inflate()) */ -//var Z_BINARY = 0; -//var Z_TEXT = 1; -//var Z_ASCII = 1; // = Z_TEXT -var Z_UNKNOWN = 2; - - -/* The deflate compression method */ -var Z_DEFLATED = 8; - -/*============================================================================*/ - - -var MAX_MEM_LEVEL = 9; -/* Maximum value for memLevel in deflateInit2 */ -var MAX_WBITS = 15; -/* 32K LZ77 window */ -var DEF_MEM_LEVEL = 8; - - -var LENGTH_CODES = 29; -/* number of length codes, not counting the special END_BLOCK code */ -var LITERALS = 256; -/* number of literal bytes 0..255 */ -var L_CODES = LITERALS + 1 + LENGTH_CODES; -/* number of Literal or Length codes, including the END_BLOCK code */ -var D_CODES = 30; -/* number of distance codes */ -var BL_CODES = 19; -/* number of codes used to transfer the bit lengths */ -var HEAP_SIZE = 2 * L_CODES + 1; -/* maximum heap size */ -var MAX_BITS = 15; -/* All codes must not exceed MAX_BITS bits */ - -var MIN_MATCH = 3; -var MAX_MATCH = 258; -var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1); - -var PRESET_DICT = 0x20; - -var INIT_STATE = 42; -var EXTRA_STATE = 69; -var NAME_STATE = 73; -var COMMENT_STATE = 91; -var HCRC_STATE = 103; -var BUSY_STATE = 113; -var FINISH_STATE = 666; - -var BS_NEED_MORE = 1; /* block not completed, need more input or more output */ -var BS_BLOCK_DONE = 2; /* block flush performed */ -var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */ -var BS_FINISH_DONE = 4; /* finish done, accept no more input or output */ - -var OS_CODE = 0x03; // Unix :) . Don't detect, use this default. - -function err(strm, errorCode) { - strm.msg = msg[errorCode]; - return errorCode; -} - -function rank(f) { - return ((f) << 1) - ((f) > 4 ? 9 : 0); -} - -function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } } - - -/* ========================================================================= - * Flush as much pending output as possible. All deflate() output goes - * through this function so some applications may wish to modify it - * to avoid allocating a large strm->output buffer and copying into it. - * (See also read_buf()). - */ -function flush_pending(strm) { - var s = strm.state; - - //_tr_flush_bits(s); - var len = s.pending; - if (len > strm.avail_out) { - len = strm.avail_out; - } - if (len === 0) { return; } - - utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out); - strm.next_out += len; - s.pending_out += len; - strm.total_out += len; - strm.avail_out -= len; - s.pending -= len; - if (s.pending === 0) { - s.pending_out = 0; - } -} - - -function flush_block_only(s, last) { - trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last); - s.block_start = s.strstart; - flush_pending(s.strm); -} - - -function put_byte(s, b) { - s.pending_buf[s.pending++] = b; -} - - -/* ========================================================================= - * Put a short in the pending buffer. The 16-bit value is put in MSB order. - * IN assertion: the stream state is correct and there is enough room in - * pending_buf. - */ -function putShortMSB(s, b) { -// put_byte(s, (Byte)(b >> 8)); -// put_byte(s, (Byte)(b & 0xff)); - s.pending_buf[s.pending++] = (b >>> 8) & 0xff; - s.pending_buf[s.pending++] = b & 0xff; -} - - -/* =========================================================================== - * Read a new buffer from the current input stream, update the adler32 - * and total number of bytes read. All deflate() input goes through - * this function so some applications may wish to modify it to avoid - * allocating a large strm->input buffer and copying from it. - * (See also flush_pending()). - */ -function read_buf(strm, buf, start, size) { - var len = strm.avail_in; - - if (len > size) { len = size; } - if (len === 0) { return 0; } - - strm.avail_in -= len; - - // zmemcpy(buf, strm->next_in, len); - utils.arraySet(buf, strm.input, strm.next_in, len, start); - if (strm.state.wrap === 1) { - strm.adler = adler32(strm.adler, buf, len, start); - } - - else if (strm.state.wrap === 2) { - strm.adler = crc32(strm.adler, buf, len, start); - } - - strm.next_in += len; - strm.total_in += len; - - return len; -} - - -/* =========================================================================== - * Set match_start to the longest match starting at the given string and - * return its length. Matches shorter or equal to prev_length are discarded, - * in which case the result is equal to prev_length and match_start is - * garbage. - * IN assertions: cur_match is the head of the hash chain for the current - * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 - * OUT assertion: the match length is not greater than s->lookahead. - */ -function longest_match(s, cur_match) { - var chain_length = s.max_chain_length; /* max hash chain length */ - var scan = s.strstart; /* current string */ - var match; /* matched string */ - var len; /* length of current match */ - var best_len = s.prev_length; /* best match length so far */ - var nice_match = s.nice_match; /* stop if match long enough */ - var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ? - s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/; - - var _win = s.window; // shortcut - - var wmask = s.w_mask; - var prev = s.prev; - - /* Stop when cur_match becomes <= limit. To simplify the code, - * we prevent matches with the string of window index 0. - */ - - var strend = s.strstart + MAX_MATCH; - var scan_end1 = _win[scan + best_len - 1]; - var scan_end = _win[scan + best_len]; - - /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. - * It is easy to get rid of this optimization if necessary. - */ - // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever"); - - /* Do not waste too much time if we already have a good match: */ - if (s.prev_length >= s.good_match) { - chain_length >>= 2; - } - /* Do not look for matches beyond the end of the input. This is necessary - * to make deflate deterministic. - */ - if (nice_match > s.lookahead) { nice_match = s.lookahead; } - - // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); - - do { - // Assert(cur_match < s->strstart, "no future"); - match = cur_match; - - /* Skip to next match if the match length cannot increase - * or if the match length is less than 2. Note that the checks below - * for insufficient lookahead only occur occasionally for performance - * reasons. Therefore uninitialized memory will be accessed, and - * conditional jumps will be made that depend on those values. - * However the length of the match is limited to the lookahead, so - * the output of deflate is not affected by the uninitialized values. - */ - - if (_win[match + best_len] !== scan_end || - _win[match + best_len - 1] !== scan_end1 || - _win[match] !== _win[scan] || - _win[++match] !== _win[scan + 1]) { - continue; - } - - /* The check at best_len-1 can be removed because it will be made - * again later. (This heuristic is not always a win.) - * It is not necessary to compare scan[2] and match[2] since they - * are always equal when the other bytes match, given that - * the hash keys are equal and that HASH_BITS >= 8. - */ - scan += 2; - match++; - // Assert(*scan == *match, "match[2]?"); - - /* We check for insufficient lookahead only every 8th comparison; - * the 256th check will be made at strstart+258. - */ - do { - /*jshint noempty:false*/ - } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] && - _win[++scan] === _win[++match] && _win[++scan] === _win[++match] && - _win[++scan] === _win[++match] && _win[++scan] === _win[++match] && - _win[++scan] === _win[++match] && _win[++scan] === _win[++match] && - scan < strend); - - // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); - - len = MAX_MATCH - (strend - scan); - scan = strend - MAX_MATCH; - - if (len > best_len) { - s.match_start = cur_match; - best_len = len; - if (len >= nice_match) { - break; - } - scan_end1 = _win[scan + best_len - 1]; - scan_end = _win[scan + best_len]; - } - } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0); - - if (best_len <= s.lookahead) { - return best_len; - } - return s.lookahead; -} - - -/* =========================================================================== - * Fill the window when the lookahead becomes insufficient. - * Updates strstart and lookahead. - * - * IN assertion: lookahead < MIN_LOOKAHEAD - * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD - * At least one byte has been read, or avail_in == 0; reads are - * performed for at least two bytes (required for the zip translate_eol - * option -- not supported here). - */ -function fill_window(s) { - var _w_size = s.w_size; - var p, n, m, more, str; - - //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead"); - - do { - more = s.window_size - s.lookahead - s.strstart; - - // JS ints have 32 bit, block below not needed - /* Deal with !@#$% 64K limit: */ - //if (sizeof(int) <= 2) { - // if (more == 0 && s->strstart == 0 && s->lookahead == 0) { - // more = wsize; - // - // } else if (more == (unsigned)(-1)) { - // /* Very unlikely, but possible on 16 bit machine if - // * strstart == 0 && lookahead == 1 (input done a byte at time) - // */ - // more--; - // } - //} - - - /* If the window is almost full and there is insufficient lookahead, - * move the upper half to the lower one to make room in the upper half. - */ - if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) { - - utils.arraySet(s.window, s.window, _w_size, _w_size, 0); - s.match_start -= _w_size; - s.strstart -= _w_size; - /* we now have strstart >= MAX_DIST */ - s.block_start -= _w_size; - - /* Slide the hash table (could be avoided with 32 bit values - at the expense of memory usage). We slide even when level == 0 - to keep the hash table consistent if we switch back to level > 0 - later. (Using level 0 permanently is not an optimal usage of - zlib, so we don't care about this pathological case.) - */ - - n = s.hash_size; - p = n; - do { - m = s.head[--p]; - s.head[p] = (m >= _w_size ? m - _w_size : 0); - } while (--n); - - n = _w_size; - p = n; - do { - m = s.prev[--p]; - s.prev[p] = (m >= _w_size ? m - _w_size : 0); - /* If n is not on any hash chain, prev[n] is garbage but - * its value will never be used. - */ - } while (--n); - - more += _w_size; - } - if (s.strm.avail_in === 0) { - break; - } - - /* If there was no sliding: - * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 && - * more == window_size - lookahead - strstart - * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1) - * => more >= window_size - 2*WSIZE + 2 - * In the BIG_MEM or MMAP case (not yet supported), - * window_size == input_size + MIN_LOOKAHEAD && - * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD. - * Otherwise, window_size == 2*WSIZE so more >= 2. - * If there was sliding, more >= WSIZE. So in all cases, more >= 2. - */ - //Assert(more >= 2, "more < 2"); - n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more); - s.lookahead += n; - - /* Initialize the hash value now that we have some input: */ - if (s.lookahead + s.insert >= MIN_MATCH) { - str = s.strstart - s.insert; - s.ins_h = s.window[str]; - - /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask; -//#if MIN_MATCH != 3 -// Call update_hash() MIN_MATCH-3 more times -//#endif - while (s.insert) { - /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask; - - s.prev[str & s.w_mask] = s.head[s.ins_h]; - s.head[s.ins_h] = str; - str++; - s.insert--; - if (s.lookahead + s.insert < MIN_MATCH) { - break; - } - } - } - /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage, - * but this is not important since only literal bytes will be emitted. - */ - - } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0); - - /* If the WIN_INIT bytes after the end of the current data have never been - * written, then zero those bytes in order to avoid memory check reports of - * the use of uninitialized (or uninitialised as Julian writes) bytes by - * the longest match routines. Update the high water mark for the next - * time through here. WIN_INIT is set to MAX_MATCH since the longest match - * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead. - */ -// if (s.high_water < s.window_size) { -// var curr = s.strstart + s.lookahead; -// var init = 0; -// -// if (s.high_water < curr) { -// /* Previous high water mark below current data -- zero WIN_INIT -// * bytes or up to end of window, whichever is less. -// */ -// init = s.window_size - curr; -// if (init > WIN_INIT) -// init = WIN_INIT; -// zmemzero(s->window + curr, (unsigned)init); -// s->high_water = curr + init; -// } -// else if (s->high_water < (ulg)curr + WIN_INIT) { -// /* High water mark at or above current data, but below current data -// * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up -// * to end of window, whichever is less. -// */ -// init = (ulg)curr + WIN_INIT - s->high_water; -// if (init > s->window_size - s->high_water) -// init = s->window_size - s->high_water; -// zmemzero(s->window + s->high_water, (unsigned)init); -// s->high_water += init; -// } -// } -// -// Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, -// "not enough room for search"); -} - -/* =========================================================================== - * Copy without compression as much as possible from the input stream, return - * the current block state. - * This function does not insert new strings in the dictionary since - * uncompressible data is probably not useful. This function is used - * only for the level=0 compression option. - * NOTE: this function should be optimized to avoid extra copying from - * window to pending_buf. - */ -function deflate_stored(s, flush) { - /* Stored blocks are limited to 0xffff bytes, pending_buf is limited - * to pending_buf_size, and each stored block has a 5 byte header: - */ - var max_block_size = 0xffff; - - if (max_block_size > s.pending_buf_size - 5) { - max_block_size = s.pending_buf_size - 5; - } - - /* Copy as much as possible from input to output: */ - for (;;) { - /* Fill the window as much as possible: */ - if (s.lookahead <= 1) { - - //Assert(s->strstart < s->w_size+MAX_DIST(s) || - // s->block_start >= (long)s->w_size, "slide too late"); -// if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) || -// s.block_start >= s.w_size)) { -// throw new Error("slide too late"); -// } - - fill_window(s); - if (s.lookahead === 0 && flush === Z_NO_FLUSH) { - return BS_NEED_MORE; - } - - if (s.lookahead === 0) { - break; - } - /* flush the current block */ - } - //Assert(s->block_start >= 0L, "block gone"); -// if (s.block_start < 0) throw new Error("block gone"); - - s.strstart += s.lookahead; - s.lookahead = 0; - - /* Emit a stored block if pending_buf will be full: */ - var max_start = s.block_start + max_block_size; - - if (s.strstart === 0 || s.strstart >= max_start) { - /* strstart == 0 is possible when wraparound on 16-bit machine */ - s.lookahead = s.strstart - max_start; - s.strstart = max_start; - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - - - } - /* Flush if we may have to slide, otherwise block_start may become - * negative and the data will be gone: - */ - if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - } - - s.insert = 0; - - if (flush === Z_FINISH) { - /*** FLUSH_BLOCK(s, 1); ***/ - flush_block_only(s, true); - if (s.strm.avail_out === 0) { - return BS_FINISH_STARTED; - } - /***/ - return BS_FINISH_DONE; - } - - if (s.strstart > s.block_start) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - - return BS_NEED_MORE; -} - -/* =========================================================================== - * Compress as much as possible from the input stream, return the current - * block state. - * This function does not perform lazy evaluation of matches and inserts - * new strings in the dictionary only for unmatched strings or for short - * matches. It is used only for the fast compression options. - */ -function deflate_fast(s, flush) { - var hash_head; /* head of the hash chain */ - var bflush; /* set if current block must be flushed */ - - for (;;) { - /* Make sure that we always have enough lookahead, except - * at the end of the input file. We need MAX_MATCH bytes - * for the next match, plus MIN_MATCH bytes to insert the - * string following the next match. - */ - if (s.lookahead < MIN_LOOKAHEAD) { - fill_window(s); - if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) { - return BS_NEED_MORE; - } - if (s.lookahead === 0) { - break; /* flush the current block */ - } - } - - /* Insert the string window[strstart .. strstart+2] in the - * dictionary, and set hash_head to the head of the hash chain: - */ - hash_head = 0/*NIL*/; - if (s.lookahead >= MIN_MATCH) { - /*** INSERT_STRING(s, s.strstart, hash_head); ***/ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask; - hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h]; - s.head[s.ins_h] = s.strstart; - /***/ - } - - /* Find the longest match, discarding those <= prev_length. - * At this point we have always match_length < MIN_MATCH - */ - if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) { - /* To simplify the code, we prevent matches with the string - * of window index 0 (in particular we have to avoid a match - * of the string with itself at the start of the input file). - */ - s.match_length = longest_match(s, hash_head); - /* longest_match() sets match_start */ - } - if (s.match_length >= MIN_MATCH) { - // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only - - /*** _tr_tally_dist(s, s.strstart - s.match_start, - s.match_length - MIN_MATCH, bflush); ***/ - bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH); - - s.lookahead -= s.match_length; - - /* Insert new strings in the hash table only if the match length - * is not too large. This saves time but degrades compression. - */ - if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) { - s.match_length--; /* string at strstart already in table */ - do { - s.strstart++; - /*** INSERT_STRING(s, s.strstart, hash_head); ***/ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask; - hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h]; - s.head[s.ins_h] = s.strstart; - /***/ - /* strstart never exceeds WSIZE-MAX_MATCH, so there are - * always MIN_MATCH bytes ahead. - */ - } while (--s.match_length !== 0); - s.strstart++; - } else - { - s.strstart += s.match_length; - s.match_length = 0; - s.ins_h = s.window[s.strstart]; - /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask; - -//#if MIN_MATCH != 3 -// Call UPDATE_HASH() MIN_MATCH-3 more times -//#endif - /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not - * matter since it will be recomputed at next deflate call. - */ - } - } else { - /* No match, output a literal byte */ - //Tracevv((stderr,"%c", s.window[s.strstart])); - /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/ - bflush = trees._tr_tally(s, 0, s.window[s.strstart]); - - s.lookahead--; - s.strstart++; - } - if (bflush) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - } - s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1); - if (flush === Z_FINISH) { - /*** FLUSH_BLOCK(s, 1); ***/ - flush_block_only(s, true); - if (s.strm.avail_out === 0) { - return BS_FINISH_STARTED; - } - /***/ - return BS_FINISH_DONE; - } - if (s.last_lit) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - return BS_BLOCK_DONE; -} - -/* =========================================================================== - * Same as above, but achieves better compression. We use a lazy - * evaluation for matches: a match is finally adopted only if there is - * no better match at the next window position. - */ -function deflate_slow(s, flush) { - var hash_head; /* head of hash chain */ - var bflush; /* set if current block must be flushed */ - - var max_insert; - - /* Process the input block. */ - for (;;) { - /* Make sure that we always have enough lookahead, except - * at the end of the input file. We need MAX_MATCH bytes - * for the next match, plus MIN_MATCH bytes to insert the - * string following the next match. - */ - if (s.lookahead < MIN_LOOKAHEAD) { - fill_window(s); - if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) { - return BS_NEED_MORE; - } - if (s.lookahead === 0) { break; } /* flush the current block */ - } - - /* Insert the string window[strstart .. strstart+2] in the - * dictionary, and set hash_head to the head of the hash chain: - */ - hash_head = 0/*NIL*/; - if (s.lookahead >= MIN_MATCH) { - /*** INSERT_STRING(s, s.strstart, hash_head); ***/ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask; - hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h]; - s.head[s.ins_h] = s.strstart; - /***/ - } - - /* Find the longest match, discarding those <= prev_length. - */ - s.prev_length = s.match_length; - s.prev_match = s.match_start; - s.match_length = MIN_MATCH - 1; - - if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match && - s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) { - /* To simplify the code, we prevent matches with the string - * of window index 0 (in particular we have to avoid a match - * of the string with itself at the start of the input file). - */ - s.match_length = longest_match(s, hash_head); - /* longest_match() sets match_start */ - - if (s.match_length <= 5 && - (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) { - - /* If prev_match is also MIN_MATCH, match_start is garbage - * but we will ignore the current match anyway. - */ - s.match_length = MIN_MATCH - 1; - } - } - /* If there was a match at the previous step and the current - * match is not better, output the previous match: - */ - if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) { - max_insert = s.strstart + s.lookahead - MIN_MATCH; - /* Do not insert strings in hash table beyond this. */ - - //check_match(s, s.strstart-1, s.prev_match, s.prev_length); - - /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match, - s.prev_length - MIN_MATCH, bflush);***/ - bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH); - /* Insert in hash table all strings up to the end of the match. - * strstart-1 and strstart are already inserted. If there is not - * enough lookahead, the last two strings are not inserted in - * the hash table. - */ - s.lookahead -= s.prev_length - 1; - s.prev_length -= 2; - do { - if (++s.strstart <= max_insert) { - /*** INSERT_STRING(s, s.strstart, hash_head); ***/ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask; - hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h]; - s.head[s.ins_h] = s.strstart; - /***/ - } - } while (--s.prev_length !== 0); - s.match_available = 0; - s.match_length = MIN_MATCH - 1; - s.strstart++; - - if (bflush) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - - } else if (s.match_available) { - /* If there was no match at the previous position, output a - * single literal. If there was a match but the current match - * is longer, truncate the previous match to a single literal. - */ - //Tracevv((stderr,"%c", s->window[s->strstart-1])); - /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/ - bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]); - - if (bflush) { - /*** FLUSH_BLOCK_ONLY(s, 0) ***/ - flush_block_only(s, false); - /***/ - } - s.strstart++; - s.lookahead--; - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - } else { - /* There is no previous match to compare with, wait for - * the next step to decide. - */ - s.match_available = 1; - s.strstart++; - s.lookahead--; - } - } - //Assert (flush != Z_NO_FLUSH, "no flush?"); - if (s.match_available) { - //Tracevv((stderr,"%c", s->window[s->strstart-1])); - /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/ - bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]); - - s.match_available = 0; - } - s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1; - if (flush === Z_FINISH) { - /*** FLUSH_BLOCK(s, 1); ***/ - flush_block_only(s, true); - if (s.strm.avail_out === 0) { - return BS_FINISH_STARTED; - } - /***/ - return BS_FINISH_DONE; - } - if (s.last_lit) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - - return BS_BLOCK_DONE; -} - - -/* =========================================================================== - * For Z_RLE, simply look for runs of bytes, generate matches only of distance - * one. Do not maintain a hash table. (It will be regenerated if this run of - * deflate switches away from Z_RLE.) - */ -function deflate_rle(s, flush) { - var bflush; /* set if current block must be flushed */ - var prev; /* byte at distance one to match */ - var scan, strend; /* scan goes up to strend for length of run */ - - var _win = s.window; - - for (;;) { - /* Make sure that we always have enough lookahead, except - * at the end of the input file. We need MAX_MATCH bytes - * for the longest run, plus one for the unrolled loop. - */ - if (s.lookahead <= MAX_MATCH) { - fill_window(s); - if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) { - return BS_NEED_MORE; - } - if (s.lookahead === 0) { break; } /* flush the current block */ - } - - /* See how many times the previous byte repeats */ - s.match_length = 0; - if (s.lookahead >= MIN_MATCH && s.strstart > 0) { - scan = s.strstart - 1; - prev = _win[scan]; - if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) { - strend = s.strstart + MAX_MATCH; - do { - /*jshint noempty:false*/ - } while (prev === _win[++scan] && prev === _win[++scan] && - prev === _win[++scan] && prev === _win[++scan] && - prev === _win[++scan] && prev === _win[++scan] && - prev === _win[++scan] && prev === _win[++scan] && - scan < strend); - s.match_length = MAX_MATCH - (strend - scan); - if (s.match_length > s.lookahead) { - s.match_length = s.lookahead; - } - } - //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan"); - } - - /* Emit match if have run of MIN_MATCH or longer, else emit literal */ - if (s.match_length >= MIN_MATCH) { - //check_match(s, s.strstart, s.strstart - 1, s.match_length); - - /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/ - bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH); - - s.lookahead -= s.match_length; - s.strstart += s.match_length; - s.match_length = 0; - } else { - /* No match, output a literal byte */ - //Tracevv((stderr,"%c", s->window[s->strstart])); - /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/ - bflush = trees._tr_tally(s, 0, s.window[s.strstart]); - - s.lookahead--; - s.strstart++; - } - if (bflush) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - } - s.insert = 0; - if (flush === Z_FINISH) { - /*** FLUSH_BLOCK(s, 1); ***/ - flush_block_only(s, true); - if (s.strm.avail_out === 0) { - return BS_FINISH_STARTED; - } - /***/ - return BS_FINISH_DONE; - } - if (s.last_lit) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - return BS_BLOCK_DONE; -} - -/* =========================================================================== - * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table. - * (It will be regenerated if this run of deflate switches away from Huffman.) - */ -function deflate_huff(s, flush) { - var bflush; /* set if current block must be flushed */ - - for (;;) { - /* Make sure that we have a literal to write. */ - if (s.lookahead === 0) { - fill_window(s); - if (s.lookahead === 0) { - if (flush === Z_NO_FLUSH) { - return BS_NEED_MORE; - } - break; /* flush the current block */ - } - } - - /* Output a literal byte */ - s.match_length = 0; - //Tracevv((stderr,"%c", s->window[s->strstart])); - /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/ - bflush = trees._tr_tally(s, 0, s.window[s.strstart]); - s.lookahead--; - s.strstart++; - if (bflush) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - } - s.insert = 0; - if (flush === Z_FINISH) { - /*** FLUSH_BLOCK(s, 1); ***/ - flush_block_only(s, true); - if (s.strm.avail_out === 0) { - return BS_FINISH_STARTED; - } - /***/ - return BS_FINISH_DONE; - } - if (s.last_lit) { - /*** FLUSH_BLOCK(s, 0); ***/ - flush_block_only(s, false); - if (s.strm.avail_out === 0) { - return BS_NEED_MORE; - } - /***/ - } - return BS_BLOCK_DONE; -} - -/* Values for max_lazy_match, good_match and max_chain_length, depending on - * the desired pack level (0..9). The values given below have been tuned to - * exclude worst case performance for pathological files. Better values may be - * found for specific files. - */ -function Config(good_length, max_lazy, nice_length, max_chain, func) { - this.good_length = good_length; - this.max_lazy = max_lazy; - this.nice_length = nice_length; - this.max_chain = max_chain; - this.func = func; -} - -var configuration_table; - -configuration_table = [ - /* good lazy nice chain */ - new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */ - new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */ - new Config(4, 5, 16, 8, deflate_fast), /* 2 */ - new Config(4, 6, 32, 32, deflate_fast), /* 3 */ - - new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */ - new Config(8, 16, 32, 32, deflate_slow), /* 5 */ - new Config(8, 16, 128, 128, deflate_slow), /* 6 */ - new Config(8, 32, 128, 256, deflate_slow), /* 7 */ - new Config(32, 128, 258, 1024, deflate_slow), /* 8 */ - new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */ -]; - - -/* =========================================================================== - * Initialize the "longest match" routines for a new zlib stream - */ -function lm_init(s) { - s.window_size = 2 * s.w_size; - - /*** CLEAR_HASH(s); ***/ - zero(s.head); // Fill with NIL (= 0); - - /* Set the default configuration parameters: - */ - s.max_lazy_match = configuration_table[s.level].max_lazy; - s.good_match = configuration_table[s.level].good_length; - s.nice_match = configuration_table[s.level].nice_length; - s.max_chain_length = configuration_table[s.level].max_chain; - - s.strstart = 0; - s.block_start = 0; - s.lookahead = 0; - s.insert = 0; - s.match_length = s.prev_length = MIN_MATCH - 1; - s.match_available = 0; - s.ins_h = 0; -} - - -function DeflateState() { - this.strm = null; /* pointer back to this zlib stream */ - this.status = 0; /* as the name implies */ - this.pending_buf = null; /* output still pending */ - this.pending_buf_size = 0; /* size of pending_buf */ - this.pending_out = 0; /* next pending byte to output to the stream */ - this.pending = 0; /* nb of bytes in the pending buffer */ - this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */ - this.gzhead = null; /* gzip header information to write */ - this.gzindex = 0; /* where in extra, name, or comment */ - this.method = Z_DEFLATED; /* can only be DEFLATED */ - this.last_flush = -1; /* value of flush param for previous deflate call */ - - this.w_size = 0; /* LZ77 window size (32K by default) */ - this.w_bits = 0; /* log2(w_size) (8..16) */ - this.w_mask = 0; /* w_size - 1 */ - - this.window = null; - /* Sliding window. Input bytes are read into the second half of the window, - * and move to the first half later to keep a dictionary of at least wSize - * bytes. With this organization, matches are limited to a distance of - * wSize-MAX_MATCH bytes, but this ensures that IO is always - * performed with a length multiple of the block size. - */ - - this.window_size = 0; - /* Actual size of window: 2*wSize, except when the user input buffer - * is directly used as sliding window. - */ - - this.prev = null; - /* Link to older string with same hash index. To limit the size of this - * array to 64K, this link is maintained only for the last 32K strings. - * An index in this array is thus a window index modulo 32K. - */ - - this.head = null; /* Heads of the hash chains or NIL. */ - - this.ins_h = 0; /* hash index of string to be inserted */ - this.hash_size = 0; /* number of elements in hash table */ - this.hash_bits = 0; /* log2(hash_size) */ - this.hash_mask = 0; /* hash_size-1 */ - - this.hash_shift = 0; - /* Number of bits by which ins_h must be shifted at each input - * step. It must be such that after MIN_MATCH steps, the oldest - * byte no longer takes part in the hash key, that is: - * hash_shift * MIN_MATCH >= hash_bits - */ - - this.block_start = 0; - /* Window position at the beginning of the current output block. Gets - * negative when the window is moved backwards. - */ - - this.match_length = 0; /* length of best match */ - this.prev_match = 0; /* previous match */ - this.match_available = 0; /* set if previous match exists */ - this.strstart = 0; /* start of string to insert */ - this.match_start = 0; /* start of matching string */ - this.lookahead = 0; /* number of valid bytes ahead in window */ - - this.prev_length = 0; - /* Length of the best match at previous step. Matches not greater than this - * are discarded. This is used in the lazy match evaluation. - */ - - this.max_chain_length = 0; - /* To speed up deflation, hash chains are never searched beyond this - * length. A higher limit improves compression ratio but degrades the - * speed. - */ - - this.max_lazy_match = 0; - /* Attempt to find a better match only when the current match is strictly - * smaller than this value. This mechanism is used only for compression - * levels >= 4. - */ - // That's alias to max_lazy_match, don't use directly - //this.max_insert_length = 0; - /* Insert new strings in the hash table only if the match length is not - * greater than this length. This saves time but degrades compression. - * max_insert_length is used only for compression levels <= 3. - */ - - this.level = 0; /* compression level (1..9) */ - this.strategy = 0; /* favor or force Huffman coding*/ - - this.good_match = 0; - /* Use a faster search when the previous match is longer than this */ - - this.nice_match = 0; /* Stop searching when current match exceeds this */ - - /* used by trees.c: */ - - /* Didn't use ct_data typedef below to suppress compiler warning */ - - // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ - // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ - // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ - - // Use flat array of DOUBLE size, with interleaved fata, - // because JS does not support effective - this.dyn_ltree = new utils.Buf16(HEAP_SIZE * 2); - this.dyn_dtree = new utils.Buf16((2 * D_CODES + 1) * 2); - this.bl_tree = new utils.Buf16((2 * BL_CODES + 1) * 2); - zero(this.dyn_ltree); - zero(this.dyn_dtree); - zero(this.bl_tree); - - this.l_desc = null; /* desc. for literal tree */ - this.d_desc = null; /* desc. for distance tree */ - this.bl_desc = null; /* desc. for bit length tree */ - - //ush bl_count[MAX_BITS+1]; - this.bl_count = new utils.Buf16(MAX_BITS + 1); - /* number of codes at each bit length for an optimal tree */ - - //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ - this.heap = new utils.Buf16(2 * L_CODES + 1); /* heap used to build the Huffman trees */ - zero(this.heap); - - this.heap_len = 0; /* number of elements in the heap */ - this.heap_max = 0; /* element of largest frequency */ - /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used. - * The same heap array is used to build all trees. - */ - - this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1]; - zero(this.depth); - /* Depth of each subtree used as tie breaker for trees of equal frequency - */ - - this.l_buf = 0; /* buffer index for literals or lengths */ - - this.lit_bufsize = 0; - /* Size of match buffer for literals/lengths. There are 4 reasons for - * limiting lit_bufsize to 64K: - * - frequencies can be kept in 16 bit counters - * - if compression is not successful for the first block, all input - * data is still in the window so we can still emit a stored block even - * when input comes from standard input. (This can also be done for - * all blocks if lit_bufsize is not greater than 32K.) - * - if compression is not successful for a file smaller than 64K, we can - * even emit a stored file instead of a stored block (saving 5 bytes). - * This is applicable only for zip (not gzip or zlib). - * - creating new Huffman trees less frequently may not provide fast - * adaptation to changes in the input data statistics. (Take for - * example a binary file with poorly compressible code followed by - * a highly compressible string table.) Smaller buffer sizes give - * fast adaptation but have of course the overhead of transmitting - * trees more frequently. - * - I can't count above 4 - */ - - this.last_lit = 0; /* running index in l_buf */ - - this.d_buf = 0; - /* Buffer index for distances. To simplify the code, d_buf and l_buf have - * the same number of elements. To use different lengths, an extra flag - * array would be necessary. - */ - - this.opt_len = 0; /* bit length of current block with optimal trees */ - this.static_len = 0; /* bit length of current block with static trees */ - this.matches = 0; /* number of string matches in current block */ - this.insert = 0; /* bytes at end of window left to insert */ - - - this.bi_buf = 0; - /* Output buffer. bits are inserted starting at the bottom (least - * significant bits). - */ - this.bi_valid = 0; - /* Number of valid bits in bi_buf. All bits above the last valid bit - * are always zero. - */ - - // Used for window memory init. We safely ignore it for JS. That makes - // sense only for pointers and memory check tools. - //this.high_water = 0; - /* High water mark offset in window for initialized bytes -- bytes above - * this are set to zero in order to avoid memory check warnings when - * longest match routines access bytes past the input. This is then - * updated to the new high water mark. - */ -} - - -function deflateResetKeep(strm) { - var s; - - if (!strm || !strm.state) { - return err(strm, Z_STREAM_ERROR); - } - - strm.total_in = strm.total_out = 0; - strm.data_type = Z_UNKNOWN; - - s = strm.state; - s.pending = 0; - s.pending_out = 0; - - if (s.wrap < 0) { - s.wrap = -s.wrap; - /* was made negative by deflate(..., Z_FINISH); */ - } - s.status = (s.wrap ? INIT_STATE : BUSY_STATE); - strm.adler = (s.wrap === 2) ? - 0 // crc32(0, Z_NULL, 0) - : - 1; // adler32(0, Z_NULL, 0) - s.last_flush = Z_NO_FLUSH; - trees._tr_init(s); - return Z_OK; -} - - -function deflateReset(strm) { - var ret = deflateResetKeep(strm); - if (ret === Z_OK) { - lm_init(strm.state); - } - return ret; -} - - -function deflateSetHeader(strm, head) { - if (!strm || !strm.state) { return Z_STREAM_ERROR; } - if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; } - strm.state.gzhead = head; - return Z_OK; -} - - -function deflateInit2(strm, level, method, windowBits, memLevel, strategy) { - if (!strm) { // === Z_NULL - return Z_STREAM_ERROR; - } - var wrap = 1; - - if (level === Z_DEFAULT_COMPRESSION) { - level = 6; - } - - if (windowBits < 0) { /* suppress zlib wrapper */ - wrap = 0; - windowBits = -windowBits; - } - - else if (windowBits > 15) { - wrap = 2; /* write gzip wrapper instead */ - windowBits -= 16; - } - - - if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED || - windowBits < 8 || windowBits > 15 || level < 0 || level > 9 || - strategy < 0 || strategy > Z_FIXED) { - return err(strm, Z_STREAM_ERROR); - } - - - if (windowBits === 8) { - windowBits = 9; - } - /* until 256-byte window bug fixed */ - - var s = new DeflateState(); - - strm.state = s; - s.strm = strm; - - s.wrap = wrap; - s.gzhead = null; - s.w_bits = windowBits; - s.w_size = 1 << s.w_bits; - s.w_mask = s.w_size - 1; - - s.hash_bits = memLevel + 7; - s.hash_size = 1 << s.hash_bits; - s.hash_mask = s.hash_size - 1; - s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH); - - s.window = new utils.Buf8(s.w_size * 2); - s.head = new utils.Buf16(s.hash_size); - s.prev = new utils.Buf16(s.w_size); - - // Don't need mem init magic for JS. - //s.high_water = 0; /* nothing written to s->window yet */ - - s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */ - - s.pending_buf_size = s.lit_bufsize * 4; - - //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); - //s->pending_buf = (uchf *) overlay; - s.pending_buf = new utils.Buf8(s.pending_buf_size); - - // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`) - //s->d_buf = overlay + s->lit_bufsize/sizeof(ush); - s.d_buf = 1 * s.lit_bufsize; - - //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize; - s.l_buf = (1 + 2) * s.lit_bufsize; - - s.level = level; - s.strategy = strategy; - s.method = method; - - return deflateReset(strm); -} - -function deflateInit(strm, level) { - return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY); -} - - -function deflate(strm, flush) { - var old_flush, s; - var beg, val; // for gzip header write only - - if (!strm || !strm.state || - flush > Z_BLOCK || flush < 0) { - return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR; - } - - s = strm.state; - - if (!strm.output || - (!strm.input && strm.avail_in !== 0) || - (s.status === FINISH_STATE && flush !== Z_FINISH)) { - return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR); - } - - s.strm = strm; /* just in case */ - old_flush = s.last_flush; - s.last_flush = flush; - - /* Write the header */ - if (s.status === INIT_STATE) { - - if (s.wrap === 2) { // GZIP header - strm.adler = 0; //crc32(0L, Z_NULL, 0); - put_byte(s, 31); - put_byte(s, 139); - put_byte(s, 8); - if (!s.gzhead) { // s->gzhead == Z_NULL - put_byte(s, 0); - put_byte(s, 0); - put_byte(s, 0); - put_byte(s, 0); - put_byte(s, 0); - put_byte(s, s.level === 9 ? 2 : - (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ? - 4 : 0)); - put_byte(s, OS_CODE); - s.status = BUSY_STATE; - } - else { - put_byte(s, (s.gzhead.text ? 1 : 0) + - (s.gzhead.hcrc ? 2 : 0) + - (!s.gzhead.extra ? 0 : 4) + - (!s.gzhead.name ? 0 : 8) + - (!s.gzhead.comment ? 0 : 16) - ); - put_byte(s, s.gzhead.time & 0xff); - put_byte(s, (s.gzhead.time >> 8) & 0xff); - put_byte(s, (s.gzhead.time >> 16) & 0xff); - put_byte(s, (s.gzhead.time >> 24) & 0xff); - put_byte(s, s.level === 9 ? 2 : - (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ? - 4 : 0)); - put_byte(s, s.gzhead.os & 0xff); - if (s.gzhead.extra && s.gzhead.extra.length) { - put_byte(s, s.gzhead.extra.length & 0xff); - put_byte(s, (s.gzhead.extra.length >> 8) & 0xff); - } - if (s.gzhead.hcrc) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0); - } - s.gzindex = 0; - s.status = EXTRA_STATE; - } - } - else // DEFLATE header - { - var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8; - var level_flags = -1; - - if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) { - level_flags = 0; - } else if (s.level < 6) { - level_flags = 1; - } else if (s.level === 6) { - level_flags = 2; - } else { - level_flags = 3; - } - header |= (level_flags << 6); - if (s.strstart !== 0) { header |= PRESET_DICT; } - header += 31 - (header % 31); - - s.status = BUSY_STATE; - putShortMSB(s, header); - - /* Save the adler32 of the preset dictionary: */ - if (s.strstart !== 0) { - putShortMSB(s, strm.adler >>> 16); - putShortMSB(s, strm.adler & 0xffff); - } - strm.adler = 1; // adler32(0L, Z_NULL, 0); - } - } - -//#ifdef GZIP - if (s.status === EXTRA_STATE) { - if (s.gzhead.extra/* != Z_NULL*/) { - beg = s.pending; /* start of bytes to update crc */ - - while (s.gzindex < (s.gzhead.extra.length & 0xffff)) { - if (s.pending === s.pending_buf_size) { - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - flush_pending(strm); - beg = s.pending; - if (s.pending === s.pending_buf_size) { - break; - } - } - put_byte(s, s.gzhead.extra[s.gzindex] & 0xff); - s.gzindex++; - } - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - if (s.gzindex === s.gzhead.extra.length) { - s.gzindex = 0; - s.status = NAME_STATE; - } - } - else { - s.status = NAME_STATE; - } - } - if (s.status === NAME_STATE) { - if (s.gzhead.name/* != Z_NULL*/) { - beg = s.pending; /* start of bytes to update crc */ - //int val; - - do { - if (s.pending === s.pending_buf_size) { - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - flush_pending(strm); - beg = s.pending; - if (s.pending === s.pending_buf_size) { - val = 1; - break; - } - } - // JS specific: little magic to add zero terminator to end of string - if (s.gzindex < s.gzhead.name.length) { - val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff; - } else { - val = 0; - } - put_byte(s, val); - } while (val !== 0); - - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - if (val === 0) { - s.gzindex = 0; - s.status = COMMENT_STATE; - } - } - else { - s.status = COMMENT_STATE; - } - } - if (s.status === COMMENT_STATE) { - if (s.gzhead.comment/* != Z_NULL*/) { - beg = s.pending; /* start of bytes to update crc */ - //int val; - - do { - if (s.pending === s.pending_buf_size) { - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - flush_pending(strm); - beg = s.pending; - if (s.pending === s.pending_buf_size) { - val = 1; - break; - } - } - // JS specific: little magic to add zero terminator to end of string - if (s.gzindex < s.gzhead.comment.length) { - val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff; - } else { - val = 0; - } - put_byte(s, val); - } while (val !== 0); - - if (s.gzhead.hcrc && s.pending > beg) { - strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg); - } - if (val === 0) { - s.status = HCRC_STATE; - } - } - else { - s.status = HCRC_STATE; - } - } - if (s.status === HCRC_STATE) { - if (s.gzhead.hcrc) { - if (s.pending + 2 > s.pending_buf_size) { - flush_pending(strm); - } - if (s.pending + 2 <= s.pending_buf_size) { - put_byte(s, strm.adler & 0xff); - put_byte(s, (strm.adler >> 8) & 0xff); - strm.adler = 0; //crc32(0L, Z_NULL, 0); - s.status = BUSY_STATE; - } - } - else { - s.status = BUSY_STATE; - } - } -//#endif - - /* Flush as much pending output as possible */ - if (s.pending !== 0) { - flush_pending(strm); - if (strm.avail_out === 0) { - /* Since avail_out is 0, deflate will be called again with - * more output space, but possibly with both pending and - * avail_in equal to zero. There won't be anything to do, - * but this is not an error situation so make sure we - * return OK instead of BUF_ERROR at next call of deflate: - */ - s.last_flush = -1; - return Z_OK; - } - - /* Make sure there is something to do and avoid duplicate consecutive - * flushes. For repeated and useless calls with Z_FINISH, we keep - * returning Z_STREAM_END instead of Z_BUF_ERROR. - */ - } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) && - flush !== Z_FINISH) { - return err(strm, Z_BUF_ERROR); - } - - /* User must not provide more input after the first FINISH: */ - if (s.status === FINISH_STATE && strm.avail_in !== 0) { - return err(strm, Z_BUF_ERROR); - } - - /* Start a new block or continue the current one. - */ - if (strm.avail_in !== 0 || s.lookahead !== 0 || - (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) { - var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) : - (s.strategy === Z_RLE ? deflate_rle(s, flush) : - configuration_table[s.level].func(s, flush)); - - if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) { - s.status = FINISH_STATE; - } - if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) { - if (strm.avail_out === 0) { - s.last_flush = -1; - /* avoid BUF_ERROR next call, see above */ - } - return Z_OK; - /* If flush != Z_NO_FLUSH && avail_out == 0, the next call - * of deflate should use the same flush parameter to make sure - * that the flush is complete. So we don't have to output an - * empty block here, this will be done at next call. This also - * ensures that for a very small output buffer, we emit at most - * one empty block. - */ - } - if (bstate === BS_BLOCK_DONE) { - if (flush === Z_PARTIAL_FLUSH) { - trees._tr_align(s); - } - else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */ - - trees._tr_stored_block(s, 0, 0, false); - /* For a full flush, this empty block will be recognized - * as a special marker by inflate_sync(). - */ - if (flush === Z_FULL_FLUSH) { - /*** CLEAR_HASH(s); ***/ /* forget history */ - zero(s.head); // Fill with NIL (= 0); - - if (s.lookahead === 0) { - s.strstart = 0; - s.block_start = 0; - s.insert = 0; - } - } - } - flush_pending(strm); - if (strm.avail_out === 0) { - s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */ - return Z_OK; - } - } - } - //Assert(strm->avail_out > 0, "bug2"); - //if (strm.avail_out <= 0) { throw new Error("bug2");} - - if (flush !== Z_FINISH) { return Z_OK; } - if (s.wrap <= 0) { return Z_STREAM_END; } - - /* Write the trailer */ - if (s.wrap === 2) { - put_byte(s, strm.adler & 0xff); - put_byte(s, (strm.adler >> 8) & 0xff); - put_byte(s, (strm.adler >> 16) & 0xff); - put_byte(s, (strm.adler >> 24) & 0xff); - put_byte(s, strm.total_in & 0xff); - put_byte(s, (strm.total_in >> 8) & 0xff); - put_byte(s, (strm.total_in >> 16) & 0xff); - put_byte(s, (strm.total_in >> 24) & 0xff); - } - else - { - putShortMSB(s, strm.adler >>> 16); - putShortMSB(s, strm.adler & 0xffff); - } - - flush_pending(strm); - /* If avail_out is zero, the application will call deflate again - * to flush the rest. - */ - if (s.wrap > 0) { s.wrap = -s.wrap; } - /* write the trailer only once! */ - return s.pending !== 0 ? Z_OK : Z_STREAM_END; -} - -function deflateEnd(strm) { - var status; - - if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) { - return Z_STREAM_ERROR; - } - - status = strm.state.status; - if (status !== INIT_STATE && - status !== EXTRA_STATE && - status !== NAME_STATE && - status !== COMMENT_STATE && - status !== HCRC_STATE && - status !== BUSY_STATE && - status !== FINISH_STATE - ) { - return err(strm, Z_STREAM_ERROR); - } - - strm.state = null; - - return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK; -} - - -/* ========================================================================= - * Initializes the compression dictionary from the given byte - * sequence without producing any compressed output. - */ -function deflateSetDictionary(strm, dictionary) { - var dictLength = dictionary.length; - - var s; - var str, n; - var wrap; - var avail; - var next; - var input; - var tmpDict; - - if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) { - return Z_STREAM_ERROR; - } - - s = strm.state; - wrap = s.wrap; - - if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) { - return Z_STREAM_ERROR; - } - - /* when using zlib wrappers, compute Adler-32 for provided dictionary */ - if (wrap === 1) { - /* adler32(strm->adler, dictionary, dictLength); */ - strm.adler = adler32(strm.adler, dictionary, dictLength, 0); - } - - s.wrap = 0; /* avoid computing Adler-32 in read_buf */ - - /* if dictionary would fill window, just replace the history */ - if (dictLength >= s.w_size) { - if (wrap === 0) { /* already empty otherwise */ - /*** CLEAR_HASH(s); ***/ - zero(s.head); // Fill with NIL (= 0); - s.strstart = 0; - s.block_start = 0; - s.insert = 0; - } - /* use the tail */ - // dictionary = dictionary.slice(dictLength - s.w_size); - tmpDict = new utils.Buf8(s.w_size); - utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0); - dictionary = tmpDict; - dictLength = s.w_size; - } - /* insert dictionary into window and hash */ - avail = strm.avail_in; - next = strm.next_in; - input = strm.input; - strm.avail_in = dictLength; - strm.next_in = 0; - strm.input = dictionary; - fill_window(s); - while (s.lookahead >= MIN_MATCH) { - str = s.strstart; - n = s.lookahead - (MIN_MATCH - 1); - do { - /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */ - s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask; - - s.prev[str & s.w_mask] = s.head[s.ins_h]; - - s.head[s.ins_h] = str; - str++; - } while (--n); - s.strstart = str; - s.lookahead = MIN_MATCH - 1; - fill_window(s); - } - s.strstart += s.lookahead; - s.block_start = s.strstart; - s.insert = s.lookahead; - s.lookahead = 0; - s.match_length = s.prev_length = MIN_MATCH - 1; - s.match_available = 0; - strm.next_in = next; - strm.input = input; - strm.avail_in = avail; - s.wrap = wrap; - return Z_OK; -} - - -exports.deflateInit = deflateInit; -exports.deflateInit2 = deflateInit2; -exports.deflateReset = deflateReset; -exports.deflateResetKeep = deflateResetKeep; -exports.deflateSetHeader = deflateSetHeader; -exports.deflate = deflate; -exports.deflateEnd = deflateEnd; -exports.deflateSetDictionary = deflateSetDictionary; -exports.deflateInfo = 'pako deflate (from Nodeca project)'; - -/* Not implemented -exports.deflateBound = deflateBound; -exports.deflateCopy = deflateCopy; -exports.deflateParams = deflateParams; -exports.deflatePending = deflatePending; -exports.deflatePrime = deflatePrime; -exports.deflateTune = deflateTune; -*/ - - -/***/ }), - -/***/ 22956: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Lookup tables - var SBOX = []; - var INV_SBOX = []; - var SUB_MIX_0 = []; - var SUB_MIX_1 = []; - var SUB_MIX_2 = []; - var SUB_MIX_3 = []; - var INV_SUB_MIX_0 = []; - var INV_SUB_MIX_1 = []; - var INV_SUB_MIX_2 = []; - var INV_SUB_MIX_3 = []; - - // Compute lookup tables - (function () { - // Compute double table - var d = []; - for (var i = 0; i < 256; i++) { - if (i < 128) { - d[i] = i << 1; - } else { - d[i] = i << 1 ^ 0x11b; - } - } - - // Walk GF(2^8) - var x = 0; - var xi = 0; - for (var i = 0; i < 256; i++) { - // Compute sbox - var sx = xi ^ xi << 1 ^ xi << 2 ^ xi << 3 ^ xi << 4; - sx = sx >>> 8 ^ sx & 0xff ^ 0x63; - SBOX[x] = sx; - INV_SBOX[sx] = x; - - // Compute multiplication - var x2 = d[x]; - var x4 = d[x2]; - var x8 = d[x4]; - - // Compute sub bytes, mix columns tables - var t = d[sx] * 0x101 ^ sx * 0x1010100; - SUB_MIX_0[x] = t << 24 | t >>> 8; - SUB_MIX_1[x] = t << 16 | t >>> 16; - SUB_MIX_2[x] = t << 8 | t >>> 24; - SUB_MIX_3[x] = t; - - // Compute inv sub bytes, inv mix columns tables - var t = x8 * 0x1010101 ^ x4 * 0x10001 ^ x2 * 0x101 ^ x * 0x1010100; - INV_SUB_MIX_0[sx] = t << 24 | t >>> 8; - INV_SUB_MIX_1[sx] = t << 16 | t >>> 16; - INV_SUB_MIX_2[sx] = t << 8 | t >>> 24; - INV_SUB_MIX_3[sx] = t; - - // Compute next counter - if (!x) { - x = xi = 1; - } else { - x = x2 ^ d[d[d[x8 ^ x2]]]; - xi ^= d[d[xi]]; - } - } - })(); - - // Precomputed Rcon lookup - var RCON = [0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36]; - - /** - * AES block cipher algorithm. - */ - var AES = C_algo.AES = BlockCipher.extend({ - _doReset: function _doReset() { - var t; - - // Skip reset of nRounds has been set before and key did not change - if (this._nRounds && this._keyPriorReset === this._key) { - return; - } - - // Shortcuts - var key = this._keyPriorReset = this._key; - var keyWords = key.words; - var keySize = key.sigBytes / 4; - - // Compute number of rounds - var nRounds = this._nRounds = keySize + 6; - - // Compute number of key schedule rows - var ksRows = (nRounds + 1) * 4; - - // Compute key schedule - var keySchedule = this._keySchedule = []; - for (var ksRow = 0; ksRow < ksRows; ksRow++) { - if (ksRow < keySize) { - keySchedule[ksRow] = keyWords[ksRow]; - } else { - t = keySchedule[ksRow - 1]; - if (!(ksRow % keySize)) { - // Rot word - t = t << 8 | t >>> 24; - - // Sub word - t = SBOX[t >>> 24] << 24 | SBOX[t >>> 16 & 0xff] << 16 | SBOX[t >>> 8 & 0xff] << 8 | SBOX[t & 0xff]; - - // Mix Rcon - t ^= RCON[ksRow / keySize | 0] << 24; - } else if (keySize > 6 && ksRow % keySize == 4) { - // Sub word - t = SBOX[t >>> 24] << 24 | SBOX[t >>> 16 & 0xff] << 16 | SBOX[t >>> 8 & 0xff] << 8 | SBOX[t & 0xff]; - } - keySchedule[ksRow] = keySchedule[ksRow - keySize] ^ t; - } - } - - // Compute inv key schedule - var invKeySchedule = this._invKeySchedule = []; - for (var invKsRow = 0; invKsRow < ksRows; invKsRow++) { - var ksRow = ksRows - invKsRow; - if (invKsRow % 4) { - var t = keySchedule[ksRow]; - } else { - var t = keySchedule[ksRow - 4]; - } - if (invKsRow < 4 || ksRow <= 4) { - invKeySchedule[invKsRow] = t; - } else { - invKeySchedule[invKsRow] = INV_SUB_MIX_0[SBOX[t >>> 24]] ^ INV_SUB_MIX_1[SBOX[t >>> 16 & 0xff]] ^ INV_SUB_MIX_2[SBOX[t >>> 8 & 0xff]] ^ INV_SUB_MIX_3[SBOX[t & 0xff]]; - } - } - }, - encryptBlock: function encryptBlock(M, offset) { - this._doCryptBlock(M, offset, this._keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX); - }, - decryptBlock: function decryptBlock(M, offset) { - // Swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - this._doCryptBlock(M, offset, this._invKeySchedule, INV_SUB_MIX_0, INV_SUB_MIX_1, INV_SUB_MIX_2, INV_SUB_MIX_3, INV_SBOX); - - // Inv swap 2nd and 4th rows - var t = M[offset + 1]; - M[offset + 1] = M[offset + 3]; - M[offset + 3] = t; - }, - _doCryptBlock: function _doCryptBlock(M, offset, keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX) { - // Shortcut - var nRounds = this._nRounds; - - // Get input, add round key - var s0 = M[offset] ^ keySchedule[0]; - var s1 = M[offset + 1] ^ keySchedule[1]; - var s2 = M[offset + 2] ^ keySchedule[2]; - var s3 = M[offset + 3] ^ keySchedule[3]; - - // Key schedule row counter - var ksRow = 4; - - // Rounds - for (var round = 1; round < nRounds; round++) { - // Shift rows, sub bytes, mix columns, add round key - var t0 = SUB_MIX_0[s0 >>> 24] ^ SUB_MIX_1[s1 >>> 16 & 0xff] ^ SUB_MIX_2[s2 >>> 8 & 0xff] ^ SUB_MIX_3[s3 & 0xff] ^ keySchedule[ksRow++]; - var t1 = SUB_MIX_0[s1 >>> 24] ^ SUB_MIX_1[s2 >>> 16 & 0xff] ^ SUB_MIX_2[s3 >>> 8 & 0xff] ^ SUB_MIX_3[s0 & 0xff] ^ keySchedule[ksRow++]; - var t2 = SUB_MIX_0[s2 >>> 24] ^ SUB_MIX_1[s3 >>> 16 & 0xff] ^ SUB_MIX_2[s0 >>> 8 & 0xff] ^ SUB_MIX_3[s1 & 0xff] ^ keySchedule[ksRow++]; - var t3 = SUB_MIX_0[s3 >>> 24] ^ SUB_MIX_1[s0 >>> 16 & 0xff] ^ SUB_MIX_2[s1 >>> 8 & 0xff] ^ SUB_MIX_3[s2 & 0xff] ^ keySchedule[ksRow++]; - - // Update state - s0 = t0; - s1 = t1; - s2 = t2; - s3 = t3; - } - - // Shift rows, sub bytes, add round key - var t0 = (SBOX[s0 >>> 24] << 24 | SBOX[s1 >>> 16 & 0xff] << 16 | SBOX[s2 >>> 8 & 0xff] << 8 | SBOX[s3 & 0xff]) ^ keySchedule[ksRow++]; - var t1 = (SBOX[s1 >>> 24] << 24 | SBOX[s2 >>> 16 & 0xff] << 16 | SBOX[s3 >>> 8 & 0xff] << 8 | SBOX[s0 & 0xff]) ^ keySchedule[ksRow++]; - var t2 = (SBOX[s2 >>> 24] << 24 | SBOX[s3 >>> 16 & 0xff] << 16 | SBOX[s0 >>> 8 & 0xff] << 8 | SBOX[s1 & 0xff]) ^ keySchedule[ksRow++]; - var t3 = (SBOX[s3 >>> 24] << 24 | SBOX[s0 >>> 16 & 0xff] << 16 | SBOX[s1 >>> 8 & 0xff] << 8 | SBOX[s2 & 0xff]) ^ keySchedule[ksRow++]; - - // Set output - M[offset] = t0; - M[offset + 1] = t1; - M[offset + 2] = t2; - M[offset + 3] = t3; - }, - keySize: 256 / 32 - }); - - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.AES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg); - */ - C.AES = BlockCipher._createHelper(AES); - })(); - return CryptoJS.AES; -}); - -/***/ }), - -/***/ 23327: -/***/ (function(module) { - -// iterable DOM collections -// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods -module.exports = { - CSSRuleList: 0, - CSSStyleDeclaration: 0, - CSSValueList: 0, - ClientRectList: 0, - DOMRectList: 0, - DOMStringList: 0, - DOMTokenList: 1, - DataTransferItemList: 0, - FileList: 0, - HTMLAllCollection: 0, - HTMLCollection: 0, - HTMLFormElement: 0, - HTMLSelectElement: 0, - MediaList: 0, - MimeTypeArray: 0, - NamedNodeMap: 0, - NodeList: 1, - PaintRequestList: 0, - Plugin: 0, - PluginArray: 0, - SVGLengthList: 0, - SVGNumberList: 0, - SVGPathSegList: 0, - SVGPointList: 0, - SVGStringList: 0, - SVGTransformList: 0, - SourceBufferList: 0, - StyleSheetList: 0, - TextTrackCueList: 0, - TextTrackList: 0, - TouchList: 0 -}; - - -/***/ }), - -/***/ 23417: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var toIntegerOrInfinity = __webpack_require__(26882); - -var min = Math.min; - -// `ToLength` abstract operation -// https://tc39.es/ecma262/#sec-tolength -module.exports = function (argument) { - return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 -}; - - -/***/ }), - -/***/ 23913: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var toAbsoluteIndex = __webpack_require__(74841); -var toIntegerOrInfinity = __webpack_require__(26882); -var lengthOfArrayLike = __webpack_require__(45495); -var toObject = __webpack_require__(43162); -var arraySpeciesCreate = __webpack_require__(45744); -var createProperty = __webpack_require__(38639); -var arrayMethodHasSpeciesSupport = __webpack_require__(56280); - -var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('splice'); - -var TypeError = global.TypeError; -var max = Math.max; -var min = Math.min; -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; -var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded'; - -// `Array.prototype.splice` method -// https://tc39.es/ecma262/#sec-array.prototype.splice -// with adding support of @@species -$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { - splice: function splice(start, deleteCount /* , ...items */) { - var O = toObject(this); - var len = lengthOfArrayLike(O); - var actualStart = toAbsoluteIndex(start, len); - var argumentsLength = arguments.length; - var insertCount, actualDeleteCount, A, k, from, to; - if (argumentsLength === 0) { - insertCount = actualDeleteCount = 0; - } else if (argumentsLength === 1) { - insertCount = 0; - actualDeleteCount = len - actualStart; - } else { - insertCount = argumentsLength - 2; - actualDeleteCount = min(max(toIntegerOrInfinity(deleteCount), 0), len - actualStart); - } - if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) { - throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED); - } - A = arraySpeciesCreate(O, actualDeleteCount); - for (k = 0; k < actualDeleteCount; k++) { - from = actualStart + k; - if (from in O) createProperty(A, k, O[from]); - } - A.length = actualDeleteCount; - if (insertCount < actualDeleteCount) { - for (k = actualStart; k < len - actualDeleteCount; k++) { - from = k + actualDeleteCount; - to = k + insertCount; - if (from in O) O[to] = O[from]; - else delete O[to]; - } - for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1]; - } else if (insertCount > actualDeleteCount) { - for (k = len - actualDeleteCount; k > actualStart; k--) { - from = k + actualDeleteCount - 1; - to = k + insertCount - 1; - if (from in O) O[to] = O[from]; - else delete O[to]; - } - } - for (k = 0; k < insertCount; k++) { - O[k + actualStart] = arguments[k + 2]; - } - O.length = len - actualDeleteCount + insertCount; - return A; - } -}); - - -/***/ }), - -/***/ 24107: -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -__webpack_require__(20731); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66947), __webpack_require__(68319), __webpack_require__(82747), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var BlockCipher = C_lib.BlockCipher; - var C_algo = C.algo; - - // Permuted Choice 1 constants - var PC1 = [57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36, 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4]; - - // Permuted Choice 2 constants - var PC2 = [14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32]; - - // Cumulative bit shift constants - var BIT_SHIFTS = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28]; + // Cumulative bit shift constants + var BIT_SHIFTS = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28]; // SBOXes and round permutation constants var SBOX_P = [{ @@ -36406,1448 +9865,21492 @@ __webpack_require__(20731); 0x8000001f: 0x8020800 }]; - // Masks that select the SBOX input - var SBOX_MASK = [0xf8000001, 0x1f800000, 0x01f80000, 0x001f8000, 0x0001f800, 0x00001f80, 0x000001f8, 0x8000001f]; + // Masks that select the SBOX input + var SBOX_MASK = [0xf8000001, 0x1f800000, 0x01f80000, 0x001f8000, 0x0001f800, 0x00001f80, 0x000001f8, 0x8000001f]; + + /** + * DES block cipher algorithm. + */ + var DES = C_algo.DES = BlockCipher.extend({ + _doReset: function _doReset() { + // Shortcuts + var key = this._key; + var keyWords = key.words; + + // Select 56 bits according to PC1 + var keyBits = []; + for (var i = 0; i < 56; i++) { + var keyBitPos = PC1[i] - 1; + keyBits[i] = keyWords[keyBitPos >>> 5] >>> 31 - keyBitPos % 32 & 1; + } + + // Assemble 16 subkeys + var subKeys = this._subKeys = []; + for (var nSubKey = 0; nSubKey < 16; nSubKey++) { + // Create subkey + var subKey = subKeys[nSubKey] = []; + + // Shortcut + var bitShift = BIT_SHIFTS[nSubKey]; + + // Select 48 bits according to PC2 + for (var i = 0; i < 24; i++) { + // Select from the left 28 key bits + subKey[i / 6 | 0] |= keyBits[(PC2[i] - 1 + bitShift) % 28] << 31 - i % 6; + + // Select from the right 28 key bits + subKey[4 + (i / 6 | 0)] |= keyBits[28 + (PC2[i + 24] - 1 + bitShift) % 28] << 31 - i % 6; + } + + // Since each subkey is applied to an expanded 32-bit input, + // the subkey can be broken into 8 values scaled to 32-bits, + // which allows the key to be used without expansion + subKey[0] = subKey[0] << 1 | subKey[0] >>> 31; + for (var i = 1; i < 7; i++) { + subKey[i] = subKey[i] >>> (i - 1) * 4 + 3; + } + subKey[7] = subKey[7] << 5 | subKey[7] >>> 27; + } + + // Compute inverse subkeys + var invSubKeys = this._invSubKeys = []; + for (var i = 0; i < 16; i++) { + invSubKeys[i] = subKeys[15 - i]; + } + }, + encryptBlock: function encryptBlock(M, offset) { + this._doCryptBlock(M, offset, this._subKeys); + }, + decryptBlock: function decryptBlock(M, offset) { + this._doCryptBlock(M, offset, this._invSubKeys); + }, + _doCryptBlock: function _doCryptBlock(M, offset, subKeys) { + // Get input + this._lBlock = M[offset]; + this._rBlock = M[offset + 1]; + + // Initial permutation + exchangeLR.call(this, 4, 0x0f0f0f0f); + exchangeLR.call(this, 16, 0x0000ffff); + exchangeRL.call(this, 2, 0x33333333); + exchangeRL.call(this, 8, 0x00ff00ff); + exchangeLR.call(this, 1, 0x55555555); + + // Rounds + for (var round = 0; round < 16; round++) { + // Shortcuts + var subKey = subKeys[round]; + var lBlock = this._lBlock; + var rBlock = this._rBlock; + + // Feistel function + var f = 0; + for (var i = 0; i < 8; i++) { + f |= SBOX_P[i][((rBlock ^ subKey[i]) & SBOX_MASK[i]) >>> 0]; + } + this._lBlock = rBlock; + this._rBlock = lBlock ^ f; + } + + // Undo swap from last round + var t = this._lBlock; + this._lBlock = this._rBlock; + this._rBlock = t; + + // Final permutation + exchangeLR.call(this, 1, 0x55555555); + exchangeRL.call(this, 8, 0x00ff00ff); + exchangeRL.call(this, 2, 0x33333333); + exchangeLR.call(this, 16, 0x0000ffff); + exchangeLR.call(this, 4, 0x0f0f0f0f); + + // Set output + M[offset] = this._lBlock; + M[offset + 1] = this._rBlock; + }, + keySize: 64 / 32, + ivSize: 64 / 32, + blockSize: 64 / 32 + }); + + // Swap bits across the left and right words + function exchangeLR(offset, mask) { + var t = (this._lBlock >>> offset ^ this._rBlock) & mask; + this._rBlock ^= t; + this._lBlock ^= t << offset; + } + function exchangeRL(offset, mask) { + var t = (this._rBlock >>> offset ^ this._lBlock) & mask; + this._lBlock ^= t; + this._rBlock ^= t << offset; + } + + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.DES.encrypt(message, key, cfg); + * var plaintext = CryptoJS.DES.decrypt(ciphertext, key, cfg); + */ + C.DES = BlockCipher._createHelper(DES); + + /** + * Triple-DES block cipher algorithm. + */ + var TripleDES = C_algo.TripleDES = BlockCipher.extend({ + _doReset: function _doReset() { + // Shortcuts + var key = this._key; + var keyWords = key.words; + // Make sure the key length is valid (64, 128 or >= 192 bit) + if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) { + throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.'); + } + + // Extend the key according to the keying options defined in 3DES standard + var key1 = keyWords.slice(0, 2); + var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4); + var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6); + + // Create DES instances + this._des1 = DES.createEncryptor(WordArray.create(key1)); + this._des2 = DES.createEncryptor(WordArray.create(key2)); + this._des3 = DES.createEncryptor(WordArray.create(key3)); + }, + encryptBlock: function encryptBlock(M, offset) { + this._des1.encryptBlock(M, offset); + this._des2.decryptBlock(M, offset); + this._des3.encryptBlock(M, offset); + }, + decryptBlock: function decryptBlock(M, offset) { + this._des3.decryptBlock(M, offset); + this._des2.encryptBlock(M, offset); + this._des1.decryptBlock(M, offset); + }, + keySize: 192 / 32, + ivSize: 64 / 32, + blockSize: 64 / 32 + }); + + /** + * Shortcut functions to the cipher's object interface. + * + * @example + * + * var ciphertext = CryptoJS.TripleDES.encrypt(message, key, cfg); + * var plaintext = CryptoJS.TripleDES.decrypt(ciphertext, key, cfg); + */ + C.TripleDES = BlockCipher._createHelper(TripleDES); + })(); + return CryptoJS.TripleDES; +}); + +/***/ }), + +/***/ 18909: +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(20731); +; +(function (root, factory) { + if (true) { + // CommonJS + module.exports = exports = factory(__webpack_require__(48352)); + } else // removed by dead control flow +{} +})(void 0, function (CryptoJS) { + (function (undefined) { + // Shortcuts + var C = CryptoJS; + var C_lib = C.lib; + var Base = C_lib.Base; + var X32WordArray = C_lib.WordArray; + + /** + * x64 namespace. + */ + var C_x64 = C.x64 = {}; + + /** + * A 64-bit word. + */ + var X64Word = C_x64.Word = Base.extend({ + /** + * Initializes a newly created 64-bit word. + * + * @param {number} high The high 32 bits. + * @param {number} low The low 32 bits. + * + * @example + * + * var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607); + */ + init: function init(high, low) { + this.high = high; + this.low = low; + } + + /** + * Bitwise NOTs this word. + * + * @return {X64Word} A new x64-Word object after negating. + * + * @example + * + * var negated = x64Word.not(); + */ + // not: function () { + // var high = ~this.high; + // var low = ~this.low; + + // return X64Word.create(high, low); + // }, + + /** + * Bitwise ANDs this word with the passed word. + * + * @param {X64Word} word The x64-Word to AND with this word. + * + * @return {X64Word} A new x64-Word object after ANDing. + * + * @example + * + * var anded = x64Word.and(anotherX64Word); + */ + // and: function (word) { + // var high = this.high & word.high; + // var low = this.low & word.low; + + // return X64Word.create(high, low); + // }, + + /** + * Bitwise ORs this word with the passed word. + * + * @param {X64Word} word The x64-Word to OR with this word. + * + * @return {X64Word} A new x64-Word object after ORing. + * + * @example + * + * var ored = x64Word.or(anotherX64Word); + */ + // or: function (word) { + // var high = this.high | word.high; + // var low = this.low | word.low; + + // return X64Word.create(high, low); + // }, + + /** + * Bitwise XORs this word with the passed word. + * + * @param {X64Word} word The x64-Word to XOR with this word. + * + * @return {X64Word} A new x64-Word object after XORing. + * + * @example + * + * var xored = x64Word.xor(anotherX64Word); + */ + // xor: function (word) { + // var high = this.high ^ word.high; + // var low = this.low ^ word.low; + + // return X64Word.create(high, low); + // }, + + /** + * Shifts this word n bits to the left. + * + * @param {number} n The number of bits to shift. + * + * @return {X64Word} A new x64-Word object after shifting. + * + * @example + * + * var shifted = x64Word.shiftL(25); + */ + // shiftL: function (n) { + // if (n < 32) { + // var high = (this.high << n) | (this.low >>> (32 - n)); + // var low = this.low << n; + // } else { + // var high = this.low << (n - 32); + // var low = 0; + // } + + // return X64Word.create(high, low); + // }, + + /** + * Shifts this word n bits to the right. + * + * @param {number} n The number of bits to shift. + * + * @return {X64Word} A new x64-Word object after shifting. + * + * @example + * + * var shifted = x64Word.shiftR(7); + */ + // shiftR: function (n) { + // if (n < 32) { + // var low = (this.low >>> n) | (this.high << (32 - n)); + // var high = this.high >>> n; + // } else { + // var low = this.high >>> (n - 32); + // var high = 0; + // } + + // return X64Word.create(high, low); + // }, + + /** + * Rotates this word n bits to the left. + * + * @param {number} n The number of bits to rotate. + * + * @return {X64Word} A new x64-Word object after rotating. + * + * @example + * + * var rotated = x64Word.rotL(25); + */ + // rotL: function (n) { + // return this.shiftL(n).or(this.shiftR(64 - n)); + // }, + + /** + * Rotates this word n bits to the right. + * + * @param {number} n The number of bits to rotate. + * + * @return {X64Word} A new x64-Word object after rotating. + * + * @example + * + * var rotated = x64Word.rotR(7); + */ + // rotR: function (n) { + // return this.shiftR(n).or(this.shiftL(64 - n)); + // }, + + /** + * Adds this word with the passed word. + * + * @param {X64Word} word The x64-Word to add with this word. + * + * @return {X64Word} A new x64-Word object after adding. + * + * @example + * + * var added = x64Word.add(anotherX64Word); + */ + // add: function (word) { + // var low = (this.low + word.low) | 0; + // var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0; + // var high = (this.high + word.high + carry) | 0; + + // return X64Word.create(high, low); + // } + }); + + /** + * An array of 64-bit words. + * + * @property {Array} words The array of CryptoJS.x64.Word objects. + * @property {number} sigBytes The number of significant bytes in this word array. + */ + var X64WordArray = C_x64.WordArray = Base.extend({ + /** + * Initializes a newly created word array. + * + * @param {Array} words (Optional) An array of CryptoJS.x64.Word objects. + * @param {number} sigBytes (Optional) The number of significant bytes in the words. + * + * @example + * + * var wordArray = CryptoJS.x64.WordArray.create(); + * + * var wordArray = CryptoJS.x64.WordArray.create([ + * CryptoJS.x64.Word.create(0x00010203, 0x04050607), + * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) + * ]); + * + * var wordArray = CryptoJS.x64.WordArray.create([ + * CryptoJS.x64.Word.create(0x00010203, 0x04050607), + * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f) + * ], 10); + */ + init: function init(words, sigBytes) { + words = this.words = words || []; + if (sigBytes != undefined) { + this.sigBytes = sigBytes; + } else { + this.sigBytes = words.length * 8; + } + }, + /** + * Converts this 64-bit word array to a 32-bit word array. + * + * @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array. + * + * @example + * + * var x32WordArray = x64WordArray.toX32(); + */ + toX32: function toX32() { + // Shortcuts + var x64Words = this.words; + var x64WordsLength = x64Words.length; + + // Convert + var x32Words = []; + for (var i = 0; i < x64WordsLength; i++) { + var x64Word = x64Words[i]; + x32Words.push(x64Word.high); + x32Words.push(x64Word.low); + } + return X32WordArray.create(x32Words, this.sigBytes); + }, + /** + * Creates a copy of this word array. + * + * @return {X64WordArray} The clone. + * + * @example + * + * var clone = x64WordArray.clone(); + */ + clone: function clone() { + var clone = Base.clone.call(this); + + // Clone "words" array + var words = clone.words = this.words.slice(0); + + // Clone each X64Word object + var wordsLength = words.length; + for (var i = 0; i < wordsLength; i++) { + words[i] = words[i].clone(); + } + return clone; + } + }); + })(); + return CryptoJS; +}); + +/***/ }), + +/***/ 18645: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(65292); +__webpack_require__(73844); +__webpack_require__(11765); +__webpack_require__(24863); +__webpack_require__(71950); +__webpack_require__(57114); +__webpack_require__(69330); +__webpack_require__(81755); +__webpack_require__(20731); +__webpack_require__(14032); +__webpack_require__(61726); +__webpack_require__(58281); +__webpack_require__(6422); +__webpack_require__(94712); +function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } +function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } +function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return _regeneratorDefine2(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i.return) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (_regeneratorDefine2(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine2(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine2(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine2(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine2(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine2(u), _regeneratorDefine2(u, o, "Generator"), _regeneratorDefine2(u, n, function () { return this; }), _regeneratorDefine2(u, "toString", function () { return "[object Generator]"; }), (_regenerator = function _regenerator() { return { w: i, m: f }; })(); } +function _regeneratorDefine2(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } _regeneratorDefine2 = function _regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine2(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, _regeneratorDefine2(e, r, n, t); } +var INITIAL_STATE = 1; +var FAIL_STATE = 0; +/** + * A StateMachine represents a deterministic finite automaton. + * It can perform matches over a sequence of values, similar to a regular expression. + */ +var StateMachine = /*#__PURE__*/function () { + function StateMachine(dfa) { + this.stateTable = dfa.stateTable; + this.accepting = dfa.accepting; + this.tags = dfa.tags; + } + /** + * Returns an iterable object that yields pattern matches over the input sequence. + * Matches are of the form [startIndex, endIndex, tags]. + */ + var _proto = StateMachine.prototype; + _proto.match = function match(str) { + var _ref; + var self = this; + return _ref = {}, _ref[Symbol.iterator] = /*#__PURE__*/_regenerator().m(function _callee() { + var state, startRun, lastAccepting, lastState, p, c; + return _regenerator().w(function (_context) { + while (1) switch (_context.n) { + case 0: + state = INITIAL_STATE; + startRun = null; + lastAccepting = null; + lastState = null; + p = 0; + case 1: + if (!(p < str.length)) { + _context.n = 5; + break; + } + c = str[p]; + lastState = state; + state = self.stateTable[state][c]; + if (!(state === FAIL_STATE)) { + _context.n = 3; + break; + } + if (!(startRun != null && lastAccepting != null && lastAccepting >= startRun)) { + _context.n = 2; + break; + } + _context.n = 2; + return [startRun, lastAccepting, self.tags[lastState]]; + case 2: + // reset the state as if we started over from the initial state + + state = self.stateTable[INITIAL_STATE][c]; + startRun = null; + case 3: + // start a run if not in the failure state + + if (state !== FAIL_STATE && startRun == null) { + startRun = p; + } // if accepting, mark the potential match end + + if (self.accepting[state]) { + lastAccepting = p; + } // reset the state to the initial state if we get into the failure state + + if (state === FAIL_STATE) { + state = INITIAL_STATE; + } + case 4: + p++; + _context.n = 1; + break; + case 5: + if (!(startRun != null && lastAccepting != null && lastAccepting >= startRun)) { + _context.n = 6; + break; + } + _context.n = 6; + return [startRun, lastAccepting, self.tags[state]]; + case 6: + return _context.a(2); + } + }, _callee); + }), _ref; + } + /** + * For each match over the input sequence, action functions matching + * the tag definitions in the input pattern are called with the startIndex, + * endIndex, and sub-match sequence. + */; + _proto.apply = function apply(str, actions) { + for (var _iterator = _createForOfIteratorHelperLoose(this.match(str)), _step; !(_step = _iterator()).done;) { + var _step$value = _step.value, + start = _step$value[0], + end = _step$value[1], + tags = _step$value[2]; + for (var _iterator2 = _createForOfIteratorHelperLoose(tags), _step2; !(_step2 = _iterator2()).done;) { + var tag = _step2.value; + if (typeof actions[tag] === 'function') { + actions[tag](start, end, str.slice(start, end + 1)); + } + } + } + }; + return StateMachine; +}(); +module.exports = StateMachine; + +/***/ }), + +/***/ 84695: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; + + +__webpack_require__(58028); +__webpack_require__(20731); +__webpack_require__(14032); +__webpack_require__(68067); +/* + * MIT LICENSE + * Copyright (c) 2011 Devon Govett + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this + * software and associated documentation files (the "Software"), to deal in the Software + * without restriction, including without limitation the rights to use, copy, modify, merge, + * publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons + * to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +var fs = __webpack_require__(48181); +var zlib = __webpack_require__(6729); +module.exports = /*#__PURE__*/function () { + function PNG(data) { + var i; + this.data = data; + this.pos = 8; // Skip the default header + + this.palette = []; + this.imgData = []; + this.transparency = {}; + this.text = {}; + while (true) { + var chunkSize = this.readUInt32(); + var section = ''; + for (i = 0; i < 4; i++) { + section += String.fromCharCode(this.data[this.pos++]); + } + switch (section) { + case 'IHDR': + // we can grab interesting values from here (like width, height, etc) + this.width = this.readUInt32(); + this.height = this.readUInt32(); + this.bits = this.data[this.pos++]; + this.colorType = this.data[this.pos++]; + this.compressionMethod = this.data[this.pos++]; + this.filterMethod = this.data[this.pos++]; + this.interlaceMethod = this.data[this.pos++]; + break; + case 'PLTE': + this.palette = this.read(chunkSize); + break; + case 'IDAT': + for (i = 0; i < chunkSize; i++) { + this.imgData.push(this.data[this.pos++]); + } + break; + case 'tRNS': + // This chunk can only occur once and it must occur after the + // PLTE chunk and before the IDAT chunk. + this.transparency = {}; + switch (this.colorType) { + case 3: + // Indexed color, RGB. Each byte in this chunk is an alpha for + // the palette index in the PLTE ("palette") chunk up until the + // last non-opaque entry. Set up an array, stretching over all + // palette entries which will be 0 (opaque) or 1 (transparent). + this.transparency.indexed = this.read(chunkSize); + var short = 255 - this.transparency.indexed.length; + if (short > 0) { + for (i = 0; i < short; i++) { + this.transparency.indexed.push(255); + } + } + break; + case 0: + // Greyscale. Corresponding to entries in the PLTE chunk. + // Grey is two bytes, range 0 .. (2 ^ bit-depth) - 1 + this.transparency.grayscale = this.read(chunkSize)[0]; + break; + case 2: + // True color with proper alpha channel. + this.transparency.rgb = this.read(chunkSize); + break; + } + break; + case 'tEXt': + var text = this.read(chunkSize); + var index = text.indexOf(0); + var key = String.fromCharCode.apply(String, text.slice(0, index)); + this.text[key] = String.fromCharCode.apply(String, text.slice(index + 1)); + break; + case 'IEND': + // we've got everything we need! + switch (this.colorType) { + case 0: + case 3: + case 4: + this.colors = 1; + break; + case 2: + case 6: + this.colors = 3; + break; + } + this.hasAlphaChannel = [4, 6].includes(this.colorType); + var colors = this.colors + (this.hasAlphaChannel ? 1 : 0); + this.pixelBitlength = this.bits * colors; + switch (this.colors) { + case 1: + this.colorSpace = 'DeviceGray'; + break; + case 3: + this.colorSpace = 'DeviceRGB'; + break; + } + this.imgData = new Buffer(this.imgData); + return; + // removed by dead control flow + + default: + // unknown (or unimportant) section, skip it + this.pos += chunkSize; + } + this.pos += 4; // Skip the CRC + + if (this.pos > this.data.length) { + throw new Error('Incomplete or corrupt PNG file'); + } + } + } + PNG.decode = function decode(path, fn) { + return fs.readFile(path, function (err, file) { + var png = new PNG(file); + return png.decode(function (pixels) { + return fn(pixels); + }); + }); + }; + PNG.load = function load(path) { + var file = fs.readFileSync(path); + return new PNG(file); + }; + var _proto = PNG.prototype; + _proto.read = function read(bytes) { + var result = new Array(bytes); + for (var i = 0; i < bytes; i++) { + result[i] = this.data[this.pos++]; + } + return result; + }; + _proto.readUInt32 = function readUInt32() { + var b1 = this.data[this.pos++] << 24; + var b2 = this.data[this.pos++] << 16; + var b3 = this.data[this.pos++] << 8; + var b4 = this.data[this.pos++]; + return b1 | b2 | b3 | b4; + }; + _proto.readUInt16 = function readUInt16() { + var b1 = this.data[this.pos++] << 8; + var b2 = this.data[this.pos++]; + return b1 | b2; + }; + _proto.decodePixels = function decodePixels(fn) { + var _this = this; + return zlib.inflate(this.imgData, function (err, data) { + if (err) { + throw err; + } + var width = _this.width, + height = _this.height; + var pixelBytes = _this.pixelBitlength / 8; + var pixels = new Buffer(width * height * pixelBytes); + var length = data.length; + var pos = 0; + function pass(x0, y0, dx, dy, singlePass) { + if (singlePass === void 0) { + singlePass = false; + } + var w = Math.ceil((width - x0) / dx); + var h = Math.ceil((height - y0) / dy); + var scanlineLength = pixelBytes * w; + var buffer = singlePass ? pixels : new Buffer(scanlineLength * h); + var row = 0; + var c = 0; + while (row < h && pos < length) { + var byte, col, i, left, upper; + switch (data[pos++]) { + case 0: + // None + for (i = 0; i < scanlineLength; i++) { + buffer[c++] = data[pos++]; + } + break; + case 1: + // Sub + for (i = 0; i < scanlineLength; i++) { + byte = data[pos++]; + left = i < pixelBytes ? 0 : buffer[c - pixelBytes]; + buffer[c++] = (byte + left) % 256; + } + break; + case 2: + // Up + for (i = 0; i < scanlineLength; i++) { + byte = data[pos++]; + col = (i - i % pixelBytes) / pixelBytes; + upper = row && buffer[(row - 1) * scanlineLength + col * pixelBytes + i % pixelBytes]; + buffer[c++] = (upper + byte) % 256; + } + break; + case 3: + // Average + for (i = 0; i < scanlineLength; i++) { + byte = data[pos++]; + col = (i - i % pixelBytes) / pixelBytes; + left = i < pixelBytes ? 0 : buffer[c - pixelBytes]; + upper = row && buffer[(row - 1) * scanlineLength + col * pixelBytes + i % pixelBytes]; + buffer[c++] = (byte + Math.floor((left + upper) / 2)) % 256; + } + break; + case 4: + // Paeth + for (i = 0; i < scanlineLength; i++) { + var paeth, upperLeft; + byte = data[pos++]; + col = (i - i % pixelBytes) / pixelBytes; + left = i < pixelBytes ? 0 : buffer[c - pixelBytes]; + if (row === 0) { + upper = upperLeft = 0; + } else { + upper = buffer[(row - 1) * scanlineLength + col * pixelBytes + i % pixelBytes]; + upperLeft = col && buffer[(row - 1) * scanlineLength + (col - 1) * pixelBytes + i % pixelBytes]; + } + var p = left + upper - upperLeft; + var pa = Math.abs(p - left); + var pb = Math.abs(p - upper); + var pc = Math.abs(p - upperLeft); + if (pa <= pb && pa <= pc) { + paeth = left; + } else if (pb <= pc) { + paeth = upper; + } else { + paeth = upperLeft; + } + buffer[c++] = (byte + paeth) % 256; + } + break; + default: + throw new Error("Invalid filter algorithm: " + data[pos - 1]); + } + if (!singlePass) { + var pixelsPos = ((y0 + row * dy) * width + x0) * pixelBytes; + var bufferPos = row * scanlineLength; + for (i = 0; i < w; i++) { + for (var j = 0; j < pixelBytes; j++) pixels[pixelsPos++] = buffer[bufferPos++]; + pixelsPos += (dx - 1) * pixelBytes; + } + } + row++; + } + } + if (_this.interlaceMethod === 1) { + /* + 1 6 4 6 2 6 4 6 + 7 7 7 7 7 7 7 7 + 5 6 5 6 5 6 5 6 + 7 7 7 7 7 7 7 7 + 3 6 4 6 3 6 4 6 + 7 7 7 7 7 7 7 7 + 5 6 5 6 5 6 5 6 + 7 7 7 7 7 7 7 7 + */ + pass(0, 0, 8, 8); // 1 + pass(4, 0, 8, 8); // 2 + pass(0, 4, 4, 8); // 3 + pass(2, 0, 4, 4); // 4 + pass(0, 2, 2, 4); // 5 + pass(1, 0, 2, 2); // 6 + pass(0, 1, 1, 2); // 7 + } else { + pass(0, 0, 1, 1, true); + } + return fn(pixels); + }); + }; + _proto.decodePalette = function decodePalette() { + var palette = this.palette; + var length = palette.length; + var transparency = this.transparency.indexed || []; + var ret = new Buffer(transparency.length + length); + var pos = 0; + var c = 0; + for (var i = 0; i < length; i += 3) { + var left; + ret[pos++] = palette[i]; + ret[pos++] = palette[i + 1]; + ret[pos++] = palette[i + 2]; + ret[pos++] = (left = transparency[c++]) != null ? left : 255; + } + return ret; + }; + _proto.copyToImageData = function copyToImageData(imageData, pixels) { + var j, k; + var colors = this.colors; + var palette = null; + var alpha = this.hasAlphaChannel; + if (this.palette.length) { + palette = this._decodedPalette || (this._decodedPalette = this.decodePalette()); + colors = 4; + alpha = true; + } + var data = imageData.data || imageData; + var length = data.length; + var input = palette || pixels; + var i = j = 0; + if (colors === 1) { + while (i < length) { + k = palette ? pixels[i / 4] * 4 : j; + var v = input[k++]; + data[i++] = v; + data[i++] = v; + data[i++] = v; + data[i++] = alpha ? input[k++] : 255; + j = k; + } + } else { + while (i < length) { + k = palette ? pixels[i / 4] * 4 : j; + data[i++] = input[k++]; + data[i++] = input[k++]; + data[i++] = input[k++]; + data[i++] = alpha ? input[k++] : 255; + j = k; + } + } + }; + _proto.decode = function decode(fn) { + var _this2 = this; + var ret = new Buffer(this.width * this.height * 4); + return this.decodePixels(function (pixels) { + _this2.copyToImageData(ret, pixels); + return fn(ret); + }); + }; + return PNG; +}(); + +/***/ }), + +/***/ 93143: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var process = __webpack_require__(9964); +/* eslint-disable node/no-deprecated-api */ + + + +__webpack_require__(41584); +__webpack_require__(81755); +__webpack_require__(8953); +__webpack_require__(14032); +__webpack_require__(56912); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(83326); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +var buffer = __webpack_require__(14598); +var Buffer = buffer.Buffer; +var safer = {}; +var key; +for (key in buffer) { + if (!buffer.hasOwnProperty(key)) continue; + if (key === 'SlowBuffer' || key === 'Buffer') continue; + safer[key] = buffer[key]; +} +var Safer = safer.Buffer = {}; +for (key in Buffer) { + if (!Buffer.hasOwnProperty(key)) continue; + if (key === 'allocUnsafe' || key === 'allocUnsafeSlow') continue; + Safer[key] = Buffer[key]; +} +safer.Buffer.prototype = Buffer.prototype; +if (!Safer.from || Safer.from === Uint8Array.from) { + Safer.from = function (value, encodingOrOffset, length) { + if (typeof value === 'number') { + throw new TypeError('The "value" argument must not be of type number. Received type ' + typeof value); + } + if (value && typeof value.length === 'undefined') { + throw new TypeError('The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type ' + typeof value); + } + return Buffer(value, encodingOrOffset, length); + }; +} +if (!Safer.alloc) { + Safer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('The "size" argument must be of type number. Received type ' + typeof size); + } + if (size < 0 || size >= 2 * (1 << 30)) { + throw new RangeError('The value "' + size + '" is invalid for option "size"'); + } + var buf = Buffer(size); + if (!fill || fill.length === 0) { + buf.fill(0); + } else if (typeof encoding === 'string') { + buf.fill(fill, encoding); + } else { + buf.fill(fill); + } + return buf; + }; +} +if (!safer.kStringMaxLength) { + try { + safer.kStringMaxLength = process.binding('buffer').kStringMaxLength; + } catch (e) { + // we can't determine kStringMaxLength in environments where process.binding + // is unsupported, so let's not set it + } +} +if (!safer.constants) { + safer.constants = { + MAX_LENGTH: safer.kMaxLength + }; + if (safer.kStringMaxLength) { + safer.constants.MAX_STRING_LENGTH = safer.kStringMaxLength; + } +} +module.exports = safer; + +/***/ }), + +/***/ 24433: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(65292); +__webpack_require__(5597); +__webpack_require__(49063); +__webpack_require__(20731); +__webpack_require__(7585); +__webpack_require__(7283); +__webpack_require__(57444); +__webpack_require__(28331); +__webpack_require__(37309); +__webpack_require__(14032); +__webpack_require__(42437); +function ownKeys(object, enumerableOnly) { + var keys = Object.keys(object); + if (Object.getOwnPropertySymbols) { + var symbols = Object.getOwnPropertySymbols(object); + 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 = null != arguments[i] ? arguments[i] : {}; + i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { + _defineProperty(target, key, source[key]); + }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { + Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); + }); + } + return target; +} +function _defineProperty(obj, key, value) { + key = _toPropertyKey(key); + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + return obj; +} +function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +} +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); + } +} +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + Object.defineProperty(Constructor, "prototype", { + writable: false + }); + return Constructor; +} +function _toPropertyKey(arg) { + var key = _toPrimitive(arg, "string"); + return typeof key === "symbol" ? key : String(key); +} +function _toPrimitive(input, hint) { + if (typeof input !== "object" || input === null) return input; + var prim = input[Symbol.toPrimitive]; + if (prim !== undefined) { + var res = prim.call(input, hint || "default"); + if (typeof res !== "object") return res; + throw new TypeError("@@toPrimitive must return a primitive value."); + } + return (hint === "string" ? String : Number)(input); +} +var _require = __webpack_require__(14598), + Buffer = _require.Buffer; +var _require2 = __webpack_require__(63779), + inspect = _require2.inspect; +var custom = inspect && inspect.custom || 'inspect'; +function copyBuffer(src, target, offset) { + Buffer.prototype.copy.call(src, target, offset); +} +module.exports = /*#__PURE__*/function () { + function BufferList() { + _classCallCheck(this, BufferList); + this.head = null; + this.tail = null; + this.length = 0; + } + _createClass(BufferList, [{ + key: "push", + value: function push(v) { + var entry = { + data: v, + next: null + }; + if (this.length > 0) this.tail.next = entry;else this.head = entry; + this.tail = entry; + ++this.length; + } + }, { + key: "unshift", + value: function unshift(v) { + var entry = { + data: v, + next: this.head + }; + if (this.length === 0) this.tail = entry; + this.head = entry; + ++this.length; + } + }, { + key: "shift", + value: function shift() { + if (this.length === 0) return; + var ret = this.head.data; + if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; + --this.length; + return ret; + } + }, { + key: "clear", + value: function clear() { + this.head = this.tail = null; + this.length = 0; + } + }, { + key: "join", + value: function join(s) { + if (this.length === 0) return ''; + var p = this.head; + var ret = '' + p.data; + while (p = p.next) ret += s + p.data; + return ret; + } + }, { + key: "concat", + value: function concat(n) { + if (this.length === 0) return Buffer.alloc(0); + var ret = Buffer.allocUnsafe(n >>> 0); + var p = this.head; + var i = 0; + while (p) { + copyBuffer(p.data, ret, i); + i += p.data.length; + p = p.next; + } + return ret; + } + + // Consumes a specified amount of bytes or characters from the buffered data. + }, { + key: "consume", + value: function consume(n, hasStrings) { + var ret; + if (n < this.head.data.length) { + // `slice` is the same for buffers and strings. + ret = this.head.data.slice(0, n); + this.head.data = this.head.data.slice(n); + } else if (n === this.head.data.length) { + // First chunk is a perfect match. + ret = this.shift(); + } else { + // Result spans more than one buffer. + ret = hasStrings ? this._getString(n) : this._getBuffer(n); + } + return ret; + } + }, { + key: "first", + value: function first() { + return this.head.data; + } + + // Consumes a specified amount of characters from the buffered data. + }, { + key: "_getString", + value: function _getString(n) { + var p = this.head; + var c = 1; + var ret = p.data; + n -= ret.length; + while (p = p.next) { + var str = p.data; + var nb = n > str.length ? str.length : n; + if (nb === str.length) ret += str;else ret += str.slice(0, n); + n -= nb; + if (n === 0) { + if (nb === str.length) { + ++c; + if (p.next) this.head = p.next;else this.head = this.tail = null; + } else { + this.head = p; + p.data = str.slice(nb); + } + break; + } + ++c; + } + this.length -= c; + return ret; + } + + // Consumes a specified amount of bytes from the buffered data. + }, { + key: "_getBuffer", + value: function _getBuffer(n) { + var ret = Buffer.allocUnsafe(n); + var p = this.head; + var c = 1; + p.data.copy(ret); + n -= p.data.length; + while (p = p.next) { + var buf = p.data; + var nb = n > buf.length ? buf.length : n; + buf.copy(ret, ret.length - n, 0, nb); + n -= nb; + if (n === 0) { + if (nb === buf.length) { + ++c; + if (p.next) this.head = p.next;else this.head = this.tail = null; + } else { + this.head = p; + p.data = buf.slice(nb); + } + break; + } + ++c; + } + this.length -= c; + return ret; + } + + // Make sure the linked list only shows the minimal necessary information. + }, { + key: custom, + value: function value(_, options) { + return inspect(this, _objectSpread(_objectSpread({}, options), {}, { + // Only inspect one level. + depth: 0, + // It should not recurse. + customInspect: false + })); + } + }]); + return BufferList; +}(); + +/***/ }), + +/***/ 11432: +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(41584); +/* eslint-disable node/no-deprecated-api */ +var buffer = __webpack_require__(14598); +var Buffer = buffer.Buffer; + +// alternative to using Object.keys for old browsers +function copyProps(src, dst) { + for (var key in src) { + dst[key] = src[key]; + } +} +if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) { + module.exports = buffer; +} else { + // Copy properties from require('buffer') + copyProps(buffer, exports); + exports.Buffer = SafeBuffer; +} +function SafeBuffer(arg, encodingOrOffset, length) { + return Buffer(arg, encodingOrOffset, length); +} + +// Copy static methods from Buffer +copyProps(Buffer, SafeBuffer); +SafeBuffer.from = function (arg, encodingOrOffset, length) { + if (typeof arg === 'number') { + throw new TypeError('Argument must not be a number'); + } + return Buffer(arg, encodingOrOffset, length); +}; +SafeBuffer.alloc = function (size, fill, encoding) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number'); + } + var buf = Buffer(size); + if (fill !== undefined) { + if (typeof encoding === 'string') { + buf.fill(fill, encoding); + } else { + buf.fill(fill); + } + } else { + buf.fill(0); + } + return buf; +}; +SafeBuffer.allocUnsafe = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number'); + } + return Buffer(size); +}; +SafeBuffer.allocUnsafeSlow = function (size) { + if (typeof size !== 'number') { + throw new TypeError('Argument must be a number'); + } + return buffer.SlowBuffer(size); +}; + +/***/ }), + +/***/ 59006: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(81755); +__webpack_require__(20731); +__webpack_require__(8953); +__webpack_require__(14032); +__webpack_require__(56912); +__webpack_require__(59735); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +var inflate = __webpack_require__(3483); +var _require = __webpack_require__(84327), + swap32LE = _require.swap32LE; + +// Shift size for getting the index-1 table offset. +var SHIFT_1 = 6 + 5; + +// Shift size for getting the index-2 table offset. +var SHIFT_2 = 5; + +// Difference between the two shift sizes, +// for getting an index-1 offset from an index-2 offset. 6=11-5 +var SHIFT_1_2 = SHIFT_1 - SHIFT_2; + +// Number of index-1 entries for the BMP. 32=0x20 +// This part of the index-1 table is omitted from the serialized form. +var OMITTED_BMP_INDEX_1_LENGTH = 0x10000 >> SHIFT_1; + +// Number of entries in an index-2 block. 64=0x40 +var INDEX_2_BLOCK_LENGTH = 1 << SHIFT_1_2; + +// Mask for getting the lower bits for the in-index-2-block offset. */ +var INDEX_2_MASK = INDEX_2_BLOCK_LENGTH - 1; + +// Shift size for shifting left the index array values. +// Increases possible data size with 16-bit index values at the cost +// of compactability. +// This requires data blocks to be aligned by DATA_GRANULARITY. +var INDEX_SHIFT = 2; + +// Number of entries in a data block. 32=0x20 +var DATA_BLOCK_LENGTH = 1 << SHIFT_2; + +// Mask for getting the lower bits for the in-data-block offset. +var DATA_MASK = DATA_BLOCK_LENGTH - 1; + +// The part of the index-2 table for U+D800..U+DBFF stores values for +// lead surrogate code _units_ not code _points_. +// Values for lead surrogate code _points_ are indexed with this portion of the table. +// Length=32=0x20=0x400>>SHIFT_2. (There are 1024=0x400 lead surrogates.) +var LSCP_INDEX_2_OFFSET = 0x10000 >> SHIFT_2; +var LSCP_INDEX_2_LENGTH = 0x400 >> SHIFT_2; + +// Count the lengths of both BMP pieces. 2080=0x820 +var INDEX_2_BMP_LENGTH = LSCP_INDEX_2_OFFSET + LSCP_INDEX_2_LENGTH; + +// The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820. +// Length 32=0x20 for lead bytes C0..DF, regardless of SHIFT_2. +var UTF8_2B_INDEX_2_OFFSET = INDEX_2_BMP_LENGTH; +var UTF8_2B_INDEX_2_LENGTH = 0x800 >> 6; // U+0800 is the first code point after 2-byte UTF-8 + +// The index-1 table, only used for supplementary code points, at offset 2112=0x840. +// Variable length, for code points up to highStart, where the last single-value range starts. +// Maximum length 512=0x200=0x100000>>SHIFT_1. +// (For 0x100000 supplementary code points U+10000..U+10ffff.) +// +// The part of the index-2 table for supplementary code points starts +// after this index-1 table. +// +// Both the index-1 table and the following part of the index-2 table +// are omitted completely if there is only BMP data. +var INDEX_1_OFFSET = UTF8_2B_INDEX_2_OFFSET + UTF8_2B_INDEX_2_LENGTH; + +// The alignment size of a data block. Also the granularity for compaction. +var DATA_GRANULARITY = 1 << INDEX_SHIFT; +var UnicodeTrie = /*#__PURE__*/function () { + function UnicodeTrie(data) { + var isBuffer = typeof data.readUInt32BE === 'function' && typeof data.slice === 'function'; + if (isBuffer || data instanceof Uint8Array) { + // read binary format + var uncompressedLength; + if (isBuffer) { + this.highStart = data.readUInt32LE(0); + this.errorValue = data.readUInt32LE(4); + uncompressedLength = data.readUInt32LE(8); + data = data.slice(12); + } else { + var view = new DataView(data.buffer); + this.highStart = view.getUint32(0, true); + this.errorValue = view.getUint32(4, true); + uncompressedLength = view.getUint32(8, true); + data = data.subarray(12); + } + + // double inflate the actual trie data + data = inflate(data, new Uint8Array(uncompressedLength)); + data = inflate(data, new Uint8Array(uncompressedLength)); + + // swap bytes from little-endian + swap32LE(data); + this.data = new Uint32Array(data.buffer); + } else { + // pre-parsed data + var _data = data; + this.data = _data.data; + this.highStart = _data.highStart; + this.errorValue = _data.errorValue; + } + } + var _proto = UnicodeTrie.prototype; + _proto.get = function get(codePoint) { + var index; + if (codePoint < 0 || codePoint > 0x10ffff) { + return this.errorValue; + } + if (codePoint < 0xd800 || codePoint > 0xdbff && codePoint <= 0xffff) { + // Ordinary BMP code point, excluding leading surrogates. + // BMP uses a single level lookup. BMP index starts at offset 0 in the index. + // data is stored in the index array itself. + index = (this.data[codePoint >> SHIFT_2] << INDEX_SHIFT) + (codePoint & DATA_MASK); + return this.data[index]; + } + if (codePoint <= 0xffff) { + // Lead Surrogate Code Point. A Separate index section is stored for + // lead surrogate code units and code points. + // The main index has the code unit data. + // For this function, we need the code point data. + index = (this.data[LSCP_INDEX_2_OFFSET + (codePoint - 0xd800 >> SHIFT_2)] << INDEX_SHIFT) + (codePoint & DATA_MASK); + return this.data[index]; + } + if (codePoint < this.highStart) { + // Supplemental code point, use two-level lookup. + index = this.data[INDEX_1_OFFSET - OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> SHIFT_1)]; + index = this.data[index + (codePoint >> SHIFT_2 & INDEX_2_MASK)]; + index = (index << INDEX_SHIFT) + (codePoint & DATA_MASK); + return this.data[index]; + } + return this.data[this.data.length - DATA_GRANULARITY]; + }; + return UnicodeTrie; +}(); +module.exports = UnicodeTrie; + +/***/ }), + +/***/ 84327: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(81755); +__webpack_require__(8953); +__webpack_require__(14032); +__webpack_require__(56912); +__webpack_require__(59735); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +var isBigEndian = new Uint8Array(new Uint32Array([0x12345678]).buffer)[0] === 0x12; +var swap = function swap(b, n, m) { + var i = b[n]; + b[n] = b[m]; + b[m] = i; +}; +var swap32 = function swap32(array) { + var len = array.length; + for (var i = 0; i < len; i += 4) { + swap(array, i, i + 3); + swap(array, i + 1, i + 2); + } +}; +var swap32LE = function swap32LE(array) { + if (isBigEndian) { + swap32(array); + } +}; +module.exports = { + swap32LE: swap32LE +}; + +/***/ }), + +/***/ 5557: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var SVGtoPDF = __webpack_require__(64781); +module.exports = SVGtoPDF; + +/***/ }), + +/***/ 64781: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +/* module decorator */ module = __webpack_require__.nmd(module); + + +__webpack_require__(39081); +__webpack_require__(41584); +__webpack_require__(81755); +__webpack_require__(20731); +__webpack_require__(24863); +__webpack_require__(7283); +__webpack_require__(37309); +__webpack_require__(14032); +__webpack_require__(61726); +__webpack_require__(6422); +__webpack_require__(46467); +__webpack_require__(7851); +__webpack_require__(72095); +__webpack_require__(47259); +__webpack_require__(1083); +__webpack_require__(94712); +var SVGtoPDF = function SVGtoPDF(doc, svg, x, y, options) { + "use strict"; + + var NamedColors = { + aliceblue: [240, 248, 255], + antiquewhite: [250, 235, 215], + aqua: [0, 255, 255], + aquamarine: [127, 255, 212], + azure: [240, 255, 255], + beige: [245, 245, 220], + bisque: [255, 228, 196], + black: [0, 0, 0], + blanchedalmond: [255, 235, 205], + blue: [0, 0, 255], + blueviolet: [138, 43, 226], + brown: [165, 42, 42], + burlywood: [222, 184, 135], + cadetblue: [95, 158, 160], + chartreuse: [127, 255, 0], + chocolate: [210, 105, 30], + coral: [255, 127, 80], + cornflowerblue: [100, 149, 237], + cornsilk: [255, 248, 220], + crimson: [220, 20, 60], + cyan: [0, 255, 255], + darkblue: [0, 0, 139], + darkcyan: [0, 139, 139], + darkgoldenrod: [184, 134, 11], + darkgray: [169, 169, 169], + darkgrey: [169, 169, 169], + darkgreen: [0, 100, 0], + darkkhaki: [189, 183, 107], + darkmagenta: [139, 0, 139], + darkolivegreen: [85, 107, 47], + darkorange: [255, 140, 0], + darkorchid: [153, 50, 204], + darkred: [139, 0, 0], + darksalmon: [233, 150, 122], + darkseagreen: [143, 188, 143], + darkslateblue: [72, 61, 139], + darkslategray: [47, 79, 79], + darkslategrey: [47, 79, 79], + darkturquoise: [0, 206, 209], + darkviolet: [148, 0, 211], + deeppink: [255, 20, 147], + deepskyblue: [0, 191, 255], + dimgray: [105, 105, 105], + dimgrey: [105, 105, 105], + dodgerblue: [30, 144, 255], + firebrick: [178, 34, 34], + floralwhite: [255, 250, 240], + forestgreen: [34, 139, 34], + fuchsia: [255, 0, 255], + gainsboro: [220, 220, 220], + ghostwhite: [248, 248, 255], + gold: [255, 215, 0], + goldenrod: [218, 165, 32], + gray: [128, 128, 128], + grey: [128, 128, 128], + green: [0, 128, 0], + greenyellow: [173, 255, 47], + honeydew: [240, 255, 240], + hotpink: [255, 105, 180], + indianred: [205, 92, 92], + indigo: [75, 0, 130], + ivory: [255, 255, 240], + khaki: [240, 230, 140], + lavender: [230, 230, 250], + lavenderblush: [255, 240, 245], + lawngreen: [124, 252, 0], + lemonchiffon: [255, 250, 205], + lightblue: [173, 216, 230], + lightcoral: [240, 128, 128], + lightcyan: [224, 255, 255], + lightgoldenrodyellow: [250, 250, 210], + lightgray: [211, 211, 211], + lightgrey: [211, 211, 211], + lightgreen: [144, 238, 144], + lightpink: [255, 182, 193], + lightsalmon: [255, 160, 122], + lightseagreen: [32, 178, 170], + lightskyblue: [135, 206, 250], + lightslategray: [119, 136, 153], + lightslategrey: [119, 136, 153], + lightsteelblue: [176, 196, 222], + lightyellow: [255, 255, 224], + lime: [0, 255, 0], + limegreen: [50, 205, 50], + linen: [250, 240, 230], + magenta: [255, 0, 255], + maroon: [128, 0, 0], + mediumaquamarine: [102, 205, 170], + mediumblue: [0, 0, 205], + mediumorchid: [186, 85, 211], + mediumpurple: [147, 112, 219], + mediumseagreen: [60, 179, 113], + mediumslateblue: [123, 104, 238], + mediumspringgreen: [0, 250, 154], + mediumturquoise: [72, 209, 204], + mediumvioletred: [199, 21, 133], + midnightblue: [25, 25, 112], + mintcream: [245, 255, 250], + mistyrose: [255, 228, 225], + moccasin: [255, 228, 181], + navajowhite: [255, 222, 173], + navy: [0, 0, 128], + oldlace: [253, 245, 230], + olive: [128, 128, 0], + olivedrab: [107, 142, 35], + orange: [255, 165, 0], + orangered: [255, 69, 0], + orchid: [218, 112, 214], + palegoldenrod: [238, 232, 170], + palegreen: [152, 251, 152], + paleturquoise: [175, 238, 238], + palevioletred: [219, 112, 147], + papayawhip: [255, 239, 213], + peachpuff: [255, 218, 185], + peru: [205, 133, 63], + pink: [255, 192, 203], + plum: [221, 160, 221], + powderblue: [176, 224, 230], + purple: [128, 0, 128], + rebeccapurple: [102, 51, 153], + red: [255, 0, 0], + rosybrown: [188, 143, 143], + royalblue: [65, 105, 225], + saddlebrown: [139, 69, 19], + salmon: [250, 128, 114], + sandybrown: [244, 164, 96], + seagreen: [46, 139, 87], + seashell: [255, 245, 238], + sienna: [160, 82, 45], + silver: [192, 192, 192], + skyblue: [135, 206, 235], + slateblue: [106, 90, 205], + slategray: [112, 128, 144], + slategrey: [112, 128, 144], + snow: [255, 250, 250], + springgreen: [0, 255, 127], + steelblue: [70, 130, 180], + tan: [210, 180, 140], + teal: [0, 128, 128], + thistle: [216, 191, 216], + tomato: [255, 99, 71], + turquoise: [64, 224, 208], + violet: [238, 130, 238], + wheat: [245, 222, 179], + white: [255, 255, 255], + whitesmoke: [245, 245, 245], + yellow: [255, 255, 0] + }; + var DefaultColors = { + black: [NamedColors.black, 1], + white: [NamedColors.white, 1], + transparent: [NamedColors.black, 0] + }; + var Entities = { + quot: 34, + amp: 38, + lt: 60, + gt: 62, + apos: 39, + OElig: 338, + oelig: 339, + Scaron: 352, + scaron: 353, + Yuml: 376, + circ: 710, + tilde: 732, + ensp: 8194, + emsp: 8195, + thinsp: 8201, + zwnj: 8204, + zwj: 8205, + lrm: 8206, + rlm: 8207, + ndash: 8211, + mdash: 8212, + lsquo: 8216, + rsquo: 8217, + sbquo: 8218, + ldquo: 8220, + rdquo: 8221, + bdquo: 8222, + dagger: 8224, + Dagger: 8225, + permil: 8240, + lsaquo: 8249, + rsaquo: 8250, + euro: 8364, + nbsp: 160, + iexcl: 161, + cent: 162, + pound: 163, + curren: 164, + yen: 165, + brvbar: 166, + sect: 167, + uml: 168, + copy: 169, + ordf: 170, + laquo: 171, + not: 172, + shy: 173, + reg: 174, + macr: 175, + deg: 176, + plusmn: 177, + sup2: 178, + sup3: 179, + acute: 180, + micro: 181, + para: 182, + middot: 183, + cedil: 184, + sup1: 185, + ordm: 186, + raquo: 187, + frac14: 188, + frac12: 189, + frac34: 190, + iquest: 191, + Agrave: 192, + Aacute: 193, + Acirc: 194, + Atilde: 195, + Auml: 196, + Aring: 197, + AElig: 198, + Ccedil: 199, + Egrave: 200, + Eacute: 201, + Ecirc: 202, + Euml: 203, + Igrave: 204, + Iacute: 205, + Icirc: 206, + Iuml: 207, + ETH: 208, + Ntilde: 209, + Ograve: 210, + Oacute: 211, + Ocirc: 212, + Otilde: 213, + Ouml: 214, + times: 215, + Oslash: 216, + Ugrave: 217, + Uacute: 218, + Ucirc: 219, + Uuml: 220, + Yacute: 221, + THORN: 222, + szlig: 223, + agrave: 224, + aacute: 225, + acirc: 226, + atilde: 227, + auml: 228, + aring: 229, + aelig: 230, + ccedil: 231, + egrave: 232, + eacute: 233, + ecirc: 234, + euml: 235, + igrave: 236, + iacute: 237, + icirc: 238, + iuml: 239, + eth: 240, + ntilde: 241, + ograve: 242, + oacute: 243, + ocirc: 244, + otilde: 245, + ouml: 246, + divide: 247, + oslash: 248, + ugrave: 249, + uacute: 250, + ucirc: 251, + uuml: 252, + yacute: 253, + thorn: 254, + yuml: 255, + fnof: 402, + Alpha: 913, + Beta: 914, + Gamma: 915, + Delta: 916, + Epsilon: 917, + Zeta: 918, + Eta: 919, + Theta: 920, + Iota: 921, + Kappa: 922, + Lambda: 923, + Mu: 924, + Nu: 925, + Xi: 926, + Omicron: 927, + Pi: 928, + Rho: 929, + Sigma: 931, + Tau: 932, + Upsilon: 933, + Phi: 934, + Chi: 935, + Psi: 936, + Omega: 937, + alpha: 945, + beta: 946, + gamma: 947, + delta: 948, + epsilon: 949, + zeta: 950, + eta: 951, + theta: 952, + iota: 953, + kappa: 954, + lambda: 955, + mu: 956, + nu: 957, + xi: 958, + omicron: 959, + pi: 960, + rho: 961, + sigmaf: 962, + sigma: 963, + tau: 964, + upsilon: 965, + phi: 966, + chi: 967, + psi: 968, + omega: 969, + thetasym: 977, + upsih: 978, + piv: 982, + bull: 8226, + hellip: 8230, + prime: 8242, + Prime: 8243, + oline: 8254, + frasl: 8260, + weierp: 8472, + image: 8465, + real: 8476, + trade: 8482, + alefsym: 8501, + larr: 8592, + uarr: 8593, + rarr: 8594, + darr: 8595, + harr: 8596, + crarr: 8629, + lArr: 8656, + uArr: 8657, + rArr: 8658, + dArr: 8659, + hArr: 8660, + forall: 8704, + part: 8706, + exist: 8707, + empty: 8709, + nabla: 8711, + isin: 8712, + notin: 8713, + ni: 8715, + prod: 8719, + sum: 8721, + minus: 8722, + lowast: 8727, + radic: 8730, + prop: 8733, + infin: 8734, + ang: 8736, + and: 8743, + or: 8744, + cap: 8745, + cup: 8746, + int: 8747, + there4: 8756, + sim: 8764, + cong: 8773, + asymp: 8776, + ne: 8800, + equiv: 8801, + le: 8804, + ge: 8805, + sub: 8834, + sup: 8835, + nsub: 8836, + sube: 8838, + supe: 8839, + oplus: 8853, + otimes: 8855, + perp: 8869, + sdot: 8901, + lceil: 8968, + rceil: 8969, + lfloor: 8970, + rfloor: 8971, + lang: 9001, + rang: 9002, + loz: 9674, + spades: 9824, + clubs: 9827, + hearts: 9829, + diams: 9830 + }; + var PathArguments = { + A: 7, + a: 7, + C: 6, + c: 6, + H: 1, + h: 1, + L: 2, + l: 2, + M: 2, + m: 2, + Q: 4, + q: 4, + S: 4, + s: 4, + T: 2, + t: 2, + V: 1, + v: 1, + Z: 0, + z: 0 + }; + var PathFlags = { + A3: true, + A4: true, + a3: true, + a4: true + }; + var Properties = { + 'color': { + inherit: true, + initial: undefined + }, + 'visibility': { + inherit: true, + initial: 'visible', + values: { + 'hidden': 'hidden', + 'collapse': 'hidden', + 'visible': 'visible' + } + }, + 'fill': { + inherit: true, + initial: DefaultColors.black + }, + 'stroke': { + inherit: true, + initial: 'none' + }, + 'stop-color': { + inherit: false, + initial: DefaultColors.black + }, + 'fill-opacity': { + inherit: true, + initial: 1 + }, + 'stroke-opacity': { + inherit: true, + initial: 1 + }, + 'stop-opacity': { + inherit: false, + initial: 1 + }, + 'fill-rule': { + inherit: true, + initial: 'nonzero', + values: { + 'nonzero': 'nonzero', + 'evenodd': 'evenodd' + } + }, + 'clip-rule': { + inherit: true, + initial: 'nonzero', + values: { + 'nonzero': 'nonzero', + 'evenodd': 'evenodd' + } + }, + 'stroke-width': { + inherit: true, + initial: 1 + }, + 'stroke-dasharray': { + inherit: true, + initial: [] + }, + 'stroke-dashoffset': { + inherit: true, + initial: 0 + }, + 'stroke-miterlimit': { + inherit: true, + initial: 4 + }, + 'stroke-linejoin': { + inherit: true, + initial: 'miter', + values: { + 'miter': 'miter', + 'round': 'round', + 'bevel': 'bevel' + } + }, + 'stroke-linecap': { + inherit: true, + initial: 'butt', + values: { + 'butt': 'butt', + 'round': 'round', + 'square': 'square' + } + }, + 'font-size': { + inherit: true, + initial: 16, + values: { + 'xx-small': 9, + 'x-small': 10, + 'small': 13, + 'medium': 16, + 'large': 18, + 'x-large': 24, + 'xx-large': 32 + } + }, + 'font-family': { + inherit: true, + initial: 'sans-serif' + }, + 'font-weight': { + inherit: true, + initial: 'normal', + values: { + '600': 'bold', + '700': 'bold', + '800': 'bold', + '900': 'bold', + 'bold': 'bold', + 'bolder': 'bold', + '500': 'normal', + '400': 'normal', + '300': 'normal', + '200': 'normal', + '100': 'normal', + 'normal': 'normal', + 'lighter': 'normal' + } + }, + 'font-style': { + inherit: true, + initial: 'normal', + values: { + 'italic': 'italic', + 'oblique': 'italic', + 'normal': 'normal' + } + }, + 'text-anchor': { + inherit: true, + initial: 'start', + values: { + 'start': 'start', + 'middle': 'middle', + 'end': 'end' + } + }, + 'direction': { + inherit: true, + initial: 'ltr', + values: { + 'ltr': 'ltr', + 'rtl': 'rtl' + } + }, + 'dominant-baseline': { + inherit: true, + initial: 'baseline', + values: { + 'auto': 'baseline', + 'baseline': 'baseline', + 'before-edge': 'before-edge', + 'text-before-edge': 'before-edge', + 'middle': 'middle', + 'central': 'central', + 'after-edge': 'after-edge', + 'text-after-edge': 'after-edge', + 'ideographic': 'ideographic', + 'alphabetic': 'alphabetic', + 'hanging': 'hanging', + 'mathematical': 'mathematical' + } + }, + 'alignment-baseline': { + inherit: false, + initial: undefined, + values: { + 'auto': 'baseline', + 'baseline': 'baseline', + 'before-edge': 'before-edge', + 'text-before-edge': 'before-edge', + 'middle': 'middle', + 'central': 'central', + 'after-edge': 'after-edge', + 'text-after-edge': 'after-edge', + 'ideographic': 'ideographic', + 'alphabetic': 'alphabetic', + 'hanging': 'hanging', + 'mathematical': 'mathematical' + } + }, + 'baseline-shift': { + inherit: true, + initial: 'baseline', + values: { + 'baseline': 'baseline', + 'sub': 'sub', + 'super': 'super' + } + }, + 'word-spacing': { + inherit: true, + initial: 0, + values: { + normal: 0 + } + }, + 'letter-spacing': { + inherit: true, + initial: 0, + values: { + normal: 0 + } + }, + 'text-decoration': { + inherit: false, + initial: 'none', + values: { + 'none': 'none', + 'underline': 'underline', + 'overline': 'overline', + 'line-through': 'line-through' + } + }, + 'xml:space': { + inherit: true, + initial: 'default', + css: 'white-space', + values: { + 'preserve': 'preserve', + 'default': 'default', + 'pre': 'preserve', + 'pre-line': 'preserve', + 'pre-wrap': 'preserve', + 'nowrap': 'default' + } + }, + 'marker-start': { + inherit: true, + initial: 'none' + }, + 'marker-mid': { + inherit: true, + initial: 'none' + }, + 'marker-end': { + inherit: true, + initial: 'none' + }, + 'opacity': { + inherit: false, + initial: 1 + }, + 'transform': { + inherit: false, + initial: [1, 0, 0, 1, 0, 0] + }, + 'display': { + inherit: false, + initial: 'inline', + values: { + 'none': 'none', + 'inline': 'inline', + 'block': 'inline' + } + }, + 'clip-path': { + inherit: false, + initial: 'none' + }, + 'mask': { + inherit: false, + initial: 'none' + }, + 'overflow': { + inherit: false, + initial: 'hidden', + values: { + 'hidden': 'hidden', + 'scroll': 'hidden', + 'visible': 'visible' + } + } + }; + function docBeginGroup(bbox) { + var group = new function PDFGroup() {}(); + group.name = 'G' + (doc._groupCount = (doc._groupCount || 0) + 1); + group.resources = doc.ref(); + group.xobj = doc.ref({ + Type: 'XObject', + Subtype: 'Form', + FormType: 1, + BBox: bbox, + Group: { + S: 'Transparency', + CS: 'DeviceRGB', + I: true, + K: false + }, + Resources: group.resources + }); + group.xobj.write(''); + group.savedMatrix = doc._ctm; + group.savedPage = doc.page; + groupStack.push(group); + doc._ctm = [1, 0, 0, 1, 0, 0]; + doc.page = { + width: doc.page.width, + height: doc.page.height, + write: function write(data) { + group.xobj.write(data); + }, + fonts: {}, + xobjects: {}, + ext_gstates: {}, + patterns: {} + }; + return group; + } + function docEndGroup(group) { + if (group !== groupStack.pop()) { + throw 'Group not matching'; + } + if (Object.keys(doc.page.fonts).length) { + group.resources.data.Font = doc.page.fonts; + } + if (Object.keys(doc.page.xobjects).length) { + group.resources.data.XObject = doc.page.xobjects; + } + if (Object.keys(doc.page.ext_gstates).length) { + group.resources.data.ExtGState = doc.page.ext_gstates; + } + if (Object.keys(doc.page.patterns).length) { + group.resources.data.Pattern = doc.page.patterns; + } + group.resources.end(); + group.xobj.end(); + doc._ctm = group.savedMatrix; + doc.page = group.savedPage; + } + function docInsertGroup(group) { + doc.page.xobjects[group.name] = group.xobj; + doc.addContent('/' + group.name + ' Do'); + } + function docApplyMask(group, clip) { + var name = 'M' + (doc._maskCount = (doc._maskCount || 0) + 1); + var gstate = doc.ref({ + Type: 'ExtGState', + CA: 1, + ca: 1, + BM: 'Normal', + SMask: { + S: 'Luminosity', + G: group.xobj, + BC: clip ? [0, 0, 0] : [1, 1, 1] + } + }); + gstate.end(); + doc.page.ext_gstates[name] = gstate; + doc.addContent('/' + name + ' gs'); + } + function docCreatePattern(group, dx, dy, matrix) { + var pattern = new function PDFPattern() {}(); + pattern.group = group; + pattern.dx = dx; + pattern.dy = dy; + pattern.matrix = matrix || [1, 0, 0, 1, 0, 0]; + return pattern; + } + function docUsePattern(pattern, stroke) { + var name = 'P' + (doc._patternCount = (doc._patternCount || 0) + 1); + var ref = doc.ref({ + Type: 'Pattern', + PatternType: 1, + PaintType: 1, + TilingType: 2, + BBox: [0, 0, pattern.dx, pattern.dy], + XStep: pattern.dx, + YStep: pattern.dy, + Matrix: multiplyMatrix(doc._ctm, pattern.matrix), + Resources: { + ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'], + XObject: function () { + var temp = {}; + temp[pattern.group.name] = pattern.group.xobj; + return temp; + }() + } + }); + ref.write('/' + pattern.group.name + ' Do'); + ref.end(); + doc.page.patterns[name] = ref; + if (stroke) { + doc.addContent('/Pattern CS'); + doc.addContent('/' + name + ' SCN'); + } else { + doc.addContent('/Pattern cs'); + doc.addContent('/' + name + ' scn'); + } + } + function docBeginText(font, size) { + if (!doc.page.fonts[font.id]) { + doc.page.fonts[font.id] = font.ref(); + } + doc.addContent('BT').addContent('/' + font.id + ' ' + size + ' Tf'); + } + function docSetTextMatrix(a, b, c, d, e, f) { + doc.addContent(validateNumber(a) + ' ' + validateNumber(b) + ' ' + validateNumber(-c) + ' ' + validateNumber(-d) + ' ' + validateNumber(e) + ' ' + validateNumber(f) + ' Tm'); + } + function docSetTextMode(fill, stroke) { + var mode = fill && stroke ? 2 : stroke ? 1 : fill ? 0 : 3; + doc.addContent(mode + ' Tr'); + } + function docWriteGlyph(glyph) { + doc.addContent('<' + glyph + '> Tj'); + } + function docEndText() { + doc.addContent('ET'); + } + function docFillColor(color) { + if (color[0].constructor.name === 'PDFPattern') { + doc.fillOpacity(color[1]); + docUsePattern(color[0], false); + } else { + doc.fillColor(color[0], color[1]); + } + } + function docStrokeColor(color) { + if (color[0].constructor.name === 'PDFPattern') { + doc.strokeOpacity(color[1]); + docUsePattern(color[0], true); + } else { + doc.strokeColor(color[0], color[1]); + } + } + function docInsertLink(x, y, w, h, url) { + var ref = doc.ref({ + Type: 'Annot', + Subtype: 'Link', + Rect: [x, y, w, h], + Border: [0, 0, 0], + A: { + S: 'URI', + URI: new String(url) + } + }); + ref.end(); + links.push(ref); + } + function parseXml(xml) { + var SvgNode = function SvgNode(tag, type, value, error) { + this.error = error; + this.nodeName = tag; + this.nodeValue = value; + this.nodeType = type; + this.attributes = Object.create(null); + this.childNodes = []; + this.parentNode = null; + this.id = ''; + this.textContent = ''; + this.classList = []; + }; + SvgNode.prototype.getAttribute = function (attr) { + return this.attributes[attr] != null ? this.attributes[attr] : null; + }; + SvgNode.prototype.getElementById = function (id) { + var result = null; + (function recursive(node) { + if (result) { + return; + } + if (node.nodeType === 1) { + if (node.id === id) { + result = node; + } + for (var i = 0; i < node.childNodes.length; i++) { + recursive(node.childNodes[i]); + } + } + })(this); + return result; + }; + SvgNode.prototype.getElementsByTagName = function (tag) { + var result = []; + (function recursive(node) { + if (node.nodeType === 1) { + if (node.nodeName === tag) { + result.push(node); + } + for (var i = 0; i < node.childNodes.length; i++) { + recursive(node.childNodes[i]); + } + } + })(this); + return result; + }; + var parser = new StringParser(xml.trim()), + result, + child, + error = false; + var _recursive = function recursive() { + var temp, child; + if (temp = parser.match(/^<([\w:.-]+)\s*/, true)) { + // Opening tag + var node = new SvgNode(temp[1], 1, null, error); + while (temp = parser.match(/^([\w:.-]+)(?:\s*=\s*"([^"]*)"|\s*=\s*'([^']*)')?\s*/, true)) { + // Attribute + var attr = temp[1], + value = decodeEntities(temp[2] || temp[3] || ''); + if (!node.attributes[attr]) { + node.attributes[attr] = value; + if (attr === 'id') { + node.id = value; + } + if (attr === 'class') { + node.classList = value.split(' '); + } + } else { + warningCallback('parseXml: duplicate attribute "' + attr + '"'); + error = true; + } + } + if (parser.match(/^>/)) { + // End of opening tag + while (child = _recursive()) { + node.childNodes.push(child); + child.parentNode = node; + node.textContent += child.nodeType === 3 || child.nodeType === 4 ? child.nodeValue : child.textContent; + } + if (temp = parser.match(/^<\/([\w:.-]+)\s*>/, true)) { + // Closing tag + if (temp[1] === node.nodeName) { + return node; + } else { + warningCallback('parseXml: tag not matching, opening "' + node.nodeName + '" & closing "' + temp[1] + '"'); + error = true; + return node; + } + } else { + warningCallback('parseXml: tag not matching, opening "' + node.nodeName + '" & not closing'); + error = true; + return node; + } + } else if (parser.match(/^\/>/)) { + // Self-closing tag + return node; + } else { + warningCallback('parseXml: tag could not be parsed "' + node.nodeName + '"'); + error = true; + } + } else if (temp = parser.match(/^/)) { + // Comment + return new SvgNode(null, 8, temp, error); + } else if (temp = parser.match(/^<\?[\s\S]*?\?>/)) { + // Processing instructions + return new SvgNode(null, 7, temp, error); + } else if (temp = parser.match(/^/)) { + // Doctype + return new SvgNode(null, 10, temp, error); + } else if (temp = parser.match(/^/, true)) { + // Cdata node + return new SvgNode('#cdata-section', 4, temp[1], error); + } else if (temp = parser.match(/^([^<]+)/, true)) { + // Text node + return new SvgNode('#text', 3, decodeEntities(temp[1]), error); + } + }; + while (child = _recursive()) { + if (child.nodeType === 1 && !result) { + result = child; + } else if (child.nodeType === 1 || child.nodeType === 3 && child.nodeValue.trim() !== '') { + warningCallback('parseXml: data after document end has been discarded'); + } + } + if (parser.matchAll()) { + warningCallback('parseXml: parsing error'); + } + return result; + } + ; + function decodeEntities(str) { + return str.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g, function (mt, m0, m1, m2) { + if (m0) { + return String.fromCharCode(parseInt(m0, 10)); + } else if (m1) { + return String.fromCharCode(parseInt(m1, 16)); + } else if (m2 && Entities[m2]) { + return String.fromCharCode(Entities[m2]); + } else { + return mt; + } + }); + } + function parseColor(raw) { + var temp, result; + raw = (raw || '').trim(); + if (temp = NamedColors[raw]) { + result = [temp.slice(), 1]; + } else if (temp = raw.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i)) { + temp[1] = parseInt(temp[1]); + temp[2] = parseInt(temp[2]); + temp[3] = parseInt(temp[3]); + temp[4] = parseFloat(temp[4]); + if (temp[1] < 256 && temp[2] < 256 && temp[3] < 256 && temp[4] <= 1) { + result = [temp.slice(1, 4), temp[4]]; + } + } else if (temp = raw.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i)) { + temp[1] = parseInt(temp[1]); + temp[2] = parseInt(temp[2]); + temp[3] = parseInt(temp[3]); + if (temp[1] < 256 && temp[2] < 256 && temp[3] < 256) { + result = [temp.slice(1, 4), 1]; + } + } else if (temp = raw.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i)) { + temp[1] = 2.55 * parseFloat(temp[1]); + temp[2] = 2.55 * parseFloat(temp[2]); + temp[3] = 2.55 * parseFloat(temp[3]); + if (temp[1] < 256 && temp[2] < 256 && temp[3] < 256) { + result = [temp.slice(1, 4), 1]; + } + } else if (temp = raw.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i)) { + result = [[parseInt(temp[1], 16), parseInt(temp[2], 16), parseInt(temp[3], 16)], 1]; + } else if (temp = raw.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i)) { + result = [[0x11 * parseInt(temp[1], 16), 0x11 * parseInt(temp[2], 16), 0x11 * parseInt(temp[3], 16)], 1]; + } + return colorCallback ? colorCallback(result, raw) : result; + } + function opacityToColor(color, opacity, isMask) { + var newColor = color[0].slice(), + newOpacity = color[1] * opacity; + if (isMask) { + for (var i = 0; i < color.length; i++) { + newColor[i] *= newOpacity; + } + return [newColor, 1]; + } else { + return [newColor, newOpacity]; + } + } + function multiplyMatrix() { + function multiply(a, b) { + return [a[0] * b[0] + a[2] * b[1], a[1] * b[0] + a[3] * b[1], a[0] * b[2] + a[2] * b[3], a[1] * b[2] + a[3] * b[3], a[0] * b[4] + a[2] * b[5] + a[4], a[1] * b[4] + a[3] * b[5] + a[5]]; + } + var result = arguments[0]; + for (var i = 1; i < arguments.length; i++) { + result = multiply(result, arguments[i]); + } + return result; + } + function transformPoint(p, m) { + return [m[0] * p[0] + m[2] * p[1] + m[4], m[1] * p[0] + m[3] * p[1] + m[5]]; + } + function getGlobalMatrix() { + var ctm = doc._ctm; + for (var i = groupStack.length - 1; i >= 0; i--) { + ctm = multiplyMatrix(groupStack[i].savedMatrix, ctm); + } + return ctm; + } + function getPageBBox() { + return new _SvgShape().M(0, 0).L(doc.page.width, 0).L(doc.page.width, doc.page.height).L(0, doc.page.height).transform(inverseMatrix(getGlobalMatrix())).getBoundingBox(); + } + function inverseMatrix(m) { + var dt = m[0] * m[3] - m[1] * m[2]; + return [m[3] / dt, -m[1] / dt, -m[2] / dt, m[0] / dt, (m[2] * m[5] - m[3] * m[4]) / dt, (m[1] * m[4] - m[0] * m[5]) / dt]; + } + function validateMatrix(m) { + var m0 = validateNumber(m[0]), + m1 = validateNumber(m[1]), + m2 = validateNumber(m[2]), + m3 = validateNumber(m[3]), + m4 = validateNumber(m[4]), + m5 = validateNumber(m[5]); + if (isNotEqual(m0 * m3 - m1 * m2, 0)) { + return [m0, m1, m2, m3, m4, m5]; + } + } + function solveEquation(curve) { + var a = curve[2] || 0, + b = curve[1] || 0, + c = curve[0] || 0; + if (isEqual(a, 0) && isEqual(b, 0)) { + return []; + } else if (isEqual(a, 0)) { + return [-c / b]; + } else { + var d = b * b - 4 * a * c; + if (isNotEqual(d, 0) && d > 0) { + return [(-b + Math.sqrt(d)) / (2 * a), (-b - Math.sqrt(d)) / (2 * a)]; + } else if (isEqual(d, 0)) { + return [-b / (2 * a)]; + } else { + return []; + } + } + } + function getCurveValue(t, curve) { + return (curve[0] || 0) + (curve[1] || 0) * t + (curve[2] || 0) * t * t + (curve[3] || 0) * t * t * t; + } + function isEqual(number, ref) { + return Math.abs(number - ref) < 1e-10; + } + function isNotEqual(number, ref) { + return Math.abs(number - ref) >= 1e-10; + } + function validateNumber(n) { + return n > -1e21 && n < 1e21 ? Math.round(n * 1e6) / 1e6 : 0; + } + function isArrayLike(v) { + return typeof v === 'object' && v !== null && typeof v.length === 'number'; + } + function parseTranform(v) { + var parser = new StringParser((v || '').trim()), + result = [1, 0, 0, 1, 0, 0], + temp; + while (temp = parser.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/, true)) { + var func = temp[1], + nums = [], + parser2 = new StringParser(temp[2].trim()), + temp2 = void 0; + while (temp2 = parser2.matchNumber()) { + nums.push(Number(temp2)); + parser2.matchSeparator(); + } + if (func === 'matrix' && nums.length === 6) { + result = multiplyMatrix(result, [nums[0], nums[1], nums[2], nums[3], nums[4], nums[5]]); + } else if (func === 'translate' && nums.length === 2) { + result = multiplyMatrix(result, [1, 0, 0, 1, nums[0], nums[1]]); + } else if (func === 'translate' && nums.length === 1) { + result = multiplyMatrix(result, [1, 0, 0, 1, nums[0], 0]); + } else if (func === 'scale' && nums.length === 2) { + result = multiplyMatrix(result, [nums[0], 0, 0, nums[1], 0, 0]); + } else if (func === 'scale' && nums.length === 1) { + result = multiplyMatrix(result, [nums[0], 0, 0, nums[0], 0, 0]); + } else if (func === 'rotate' && nums.length === 3) { + var a = nums[0] * Math.PI / 180; + result = multiplyMatrix(result, [1, 0, 0, 1, nums[1], nums[2]], [Math.cos(a), Math.sin(a), -Math.sin(a), Math.cos(a), 0, 0], [1, 0, 0, 1, -nums[1], -nums[2]]); + } else if (func === 'rotate' && nums.length === 1) { + var _a = nums[0] * Math.PI / 180; + result = multiplyMatrix(result, [Math.cos(_a), Math.sin(_a), -Math.sin(_a), Math.cos(_a), 0, 0]); + } else if (func === 'skewX' && nums.length === 1) { + var _a2 = nums[0] * Math.PI / 180; + result = multiplyMatrix(result, [1, 0, Math.tan(_a2), 1, 0, 0]); + } else if (func === 'skewY' && nums.length === 1) { + var _a3 = nums[0] * Math.PI / 180; + result = multiplyMatrix(result, [1, Math.tan(_a3), 0, 1, 0, 0]); + } else { + return; + } + parser.matchSeparator(); + } + if (parser.matchAll()) { + return; + } + return result; + } + function parseAspectRatio(aspectRatio, availWidth, availHeight, elemWidth, elemHeight, initAlign) { + var temp = (aspectRatio || '').trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/) || [], + ratioType = temp[1] || temp[4] || 'meet', + xAlign = temp[2] || 'Mid', + yAlign = temp[3] || 'Mid', + scaleX = availWidth / elemWidth, + scaleY = availHeight / elemHeight, + dx = { + 'Min': 0, + 'Mid': 0.5, + 'Max': 1 + }[xAlign] - (initAlign || 0), + dy = { + 'Min': 0, + 'Mid': 0.5, + 'Max': 1 + }[yAlign] - (initAlign || 0); + if (ratioType === 'slice') { + scaleY = scaleX = Math.max(scaleX, scaleY); + } else if (ratioType === 'meet') { + scaleY = scaleX = Math.min(scaleX, scaleY); + } + return [scaleX, 0, 0, scaleY, dx * (availWidth - elemWidth * scaleX), dy * (availHeight - elemHeight * scaleY)]; + } + function parseStyleAttr(v) { + var result = Object.create(null); + v = (v || '').trim().split(/;/); + for (var i = 0; i < v.length; i++) { + var key = (v[i].split(':')[0] || '').trim(), + value = (v[i].split(':')[1] || '').trim(); + if (key) { + result[key] = value; + } + } + if (result['marker']) { + if (!result['marker-start']) { + result['marker-start'] = result['marker']; + } + if (!result['marker-mid']) { + result['marker-mid'] = result['marker']; + } + if (!result['marker-end']) { + result['marker-end'] = result['marker']; + } + } + if (result['font']) { + var fontFamily = null, + fontSize = null, + fontStyle = "normal", + fontWeight = "normal", + fontVariant = "normal"; + var parts = result['font'].split(/\s+/); + for (var _i = 0; _i < parts.length; _i++) { + switch (parts[_i]) { + case "normal": + break; + case "italic": + case "oblique": + fontStyle = parts[_i]; + break; + case "small-caps": + fontVariant = parts[_i]; + break; + case "bold": + case "bolder": + case "lighter": + case "100": + case "200": + case "300": + case "400": + case "500": + case "600": + case "700": + case "800": + case "900": + fontWeight = parts[_i]; + break; + default: + if (!fontSize) { + fontSize = parts[_i].split('/')[0]; + } else { + if (!fontFamily) { + fontFamily = parts[_i]; + } else { + fontFamily += ' ' + parts[_i]; + } + } + break; + } + } + if (!result['font-style']) { + result['font-style'] = fontStyle; + } + if (!result['font-variant']) { + result['font-variant'] = fontVariant; + } + if (!result['font-weight']) { + result['font-weight'] = fontWeight; + } + if (!result['font-size']) { + result['font-size'] = fontSize; + } + if (!result['font-family']) { + result['font-family'] = fontFamily; + } + } + return result; + } + function parseSelector(v) { + var parts = v.split(/(?=[.#])/g), + ids = [], + classes = [], + tags = [], + temp; + for (var i = 0; i < parts.length; i++) { + if (temp = parts[i].match(/^[#]([_A-Za-z0-9-]+)$/)) { + ids.push(temp[1]); + } else if (temp = parts[i].match(/^[.]([_A-Za-z0-9-]+)$/)) { + classes.push(temp[1]); + } else if (temp = parts[i].match(/^([_A-Za-z0-9-]+)$/)) { + tags.push(temp[1]); + } else if (parts[i] !== '*') { + return; + } + } + return { + tags: tags, + ids: ids, + classes: classes, + specificity: ids.length * 10000 + classes.length * 100 + tags.length + }; + } + function parseStyleSheet(v) { + var parser = new StringParser(v.trim()), + rules = [], + rule; + while (rule = parser.match(/^\s*([^\{\}]*?)\s*\{([^\{\}]*?)\}/, true)) { + var selectors = rule[1].split(/\s*,\s*/g), + css = parseStyleAttr(rule[2]); + for (var i = 0; i < selectors.length; i++) { + var selector = parseSelector(selectors[i]); + if (selector) { + rules.push({ + selector: selector, + css: css + }); + } + } + } + return rules; + } + function matchesSelector(elem, selector) { + if (elem.nodeType !== 1) { + return false; + } + for (var i = 0; i < selector.tags.length; i++) { + if (selector.tags[i] !== elem.nodeName) { + return false; + } + } + for (var _i2 = 0; _i2 < selector.ids.length; _i2++) { + if (selector.ids[_i2] !== elem.id) { + return false; + } + } + for (var _i3 = 0; _i3 < selector.classes.length; _i3++) { + if (elem.classList.indexOf(selector.classes[_i3]) === -1) { + return false; + } + } + return true; + } + function getStyle(elem) { + var result = Object.create(null); + var specificities = Object.create(null); + for (var i = 0; i < styleRules.length; i++) { + var rule = styleRules[i]; + if (matchesSelector(elem, rule.selector)) { + for (var key in rule.css) { + if (!(specificities[key] > rule.selector.specificity)) { + result[key] = rule.css[key]; + specificities[key] = rule.selector.specificity; + } + } + } + } + return result; + } + function combineArrays(array1, array2) { + return array1.concat(array2.slice(array1.length)); + } + function getAscent(font, size) { + return Math.max(font.ascender, (font.bbox[3] || font.bbox.maxY) * (font.scale || 1)) * size / 1000; + } + function getDescent(font, size) { + return Math.min(font.descender, (font.bbox[1] || font.bbox.minY) * (font.scale || 1)) * size / 1000; + } + function getXHeight(font, size) { + return (font.xHeight || 0.5 * (font.ascender - font.descender)) * size / 1000; + } + function getBaseline(font, size, baseline, shift) { + var dy1, dy2; + switch (baseline) { + case 'middle': + dy1 = 0.5 * getXHeight(font, size); + break; + case 'central': + dy1 = 0.5 * (getDescent(font, size) + getAscent(font, size)); + break; + case 'after-edge': + case 'text-after-edge': + dy1 = getDescent(font, size); + break; + case 'alphabetic': + case 'auto': + case 'baseline': + dy1 = 0; + break; + case 'mathematical': + dy1 = 0.5 * getAscent(font, size); + break; + case 'hanging': + dy1 = 0.8 * getAscent(font, size); + break; + case 'before-edge': + case 'text-before-edge': + dy1 = getAscent(font, size); + break; + default: + dy1 = 0; + break; + } + switch (shift) { + case 'baseline': + dy2 = 0; + break; + case 'super': + dy2 = 0.6 * size; + break; + case 'sub': + dy2 = -0.6 * size; + break; + default: + dy2 = shift; + break; + } + return dy1 - dy2; + } + function getTextPos(font, size, text) { + var encoded = font.encode('' + text), + hex = encoded[0], + pos = encoded[1], + data = []; + for (var i = 0; i < hex.length; i++) { + var unicode = font.unicode ? font.unicode[parseInt(hex[i], 16)] : [text.charCodeAt(i)]; + data.push({ + glyph: hex[i], + unicode: unicode, + width: pos[i].advanceWidth * size / 1000, + xOffset: pos[i].xOffset * size / 1000, + yOffset: pos[i].yOffset * size / 1000, + xAdvance: pos[i].xAdvance * size / 1000, + yAdvance: pos[i].yAdvance * size / 1000 + }); + } + return data; + } + function createSVGElement(obj, inherits) { + switch (obj.nodeName) { + case 'use': + return new SvgElemUse(obj, inherits); + case 'symbol': + return new SvgElemSymbol(obj, inherits); + case 'g': + return new SvgElemGroup(obj, inherits); + case 'a': + return new SvgElemLink(obj, inherits); + case 'svg': + return new SvgElemSvg(obj, inherits); + case 'image': + return new SVGElemImage(obj, inherits); + case 'rect': + return new SvgElemRect(obj, inherits); + case 'circle': + return new SvgElemCircle(obj, inherits); + case 'ellipse': + return new SvgElemEllipse(obj, inherits); + case 'line': + return new SvgElemLine(obj, inherits); + case 'polyline': + return new SvgElemPolyline(obj, inherits); + case 'polygon': + return new SvgElemPolygon(obj, inherits); + case 'path': + return new SvgElemPath(obj, inherits); + case 'text': + return new SvgElemText(obj, inherits); + case 'tspan': + return new SvgElemTspan(obj, inherits); + case 'textPath': + return new SvgElemTextPath(obj, inherits); + case '#text': + case '#cdata-section': + return new SvgElemTextNode(obj, inherits); + default: + return new SvgElem(obj, inherits); + } + } + var StringParser = function StringParser(str) { + this.match = function (exp, all) { + var temp = str.match(exp); + if (!temp || temp.index !== 0) { + return; + } + str = str.substring(temp[0].length); + return all ? temp : temp[0]; + }; + this.matchSeparator = function () { + return this.match(/^(?:\s*,\s*|\s*|)/); + }; + this.matchSpace = function () { + return this.match(/^(?:\s*)/); + }; + this.matchLengthUnit = function () { + return this.match(/^(?:px|pt|cm|mm|in|pc|em|ex|%|)/); + }; + this.matchNumber = function () { + return this.match(/^(?:[-+]?(?:[0-9]+[.][0-9]+|[0-9]+[.]|[.][0-9]+|[0-9]+)(?:[eE][-+]?[0-9]+)?)/); + }; + this.matchAll = function () { + return this.match(/^[\s\S]+/); + }; + }; + var BezierSegment = function BezierSegment(p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { + var divisions = 6 * precision; + var equationX = [p1x, -3 * p1x + 3 * c1x, 3 * p1x - 6 * c1x + 3 * c2x, -p1x + 3 * c1x - 3 * c2x + p2x]; + var equationY = [p1y, -3 * p1y + 3 * c1y, 3 * p1y - 6 * c1y + 3 * c2y, -p1y + 3 * c1y - 3 * c2y + p2y]; + var derivativeX = [-3 * p1x + 3 * c1x, 6 * p1x - 12 * c1x + 6 * c2x, -3 * p1x + 9 * c1x - 9 * c2x + 3 * p2x]; + var derivativeY = [-3 * p1y + 3 * c1y, 6 * p1y - 12 * c1y + 6 * c2y, -3 * p1y + 9 * c1y - 9 * c2y + 3 * p2y]; + var lengthMap = [0]; + for (var i = 1; i <= divisions; i++) { + var t = (i - 0.5) / divisions; + var dx = getCurveValue(t, derivativeX) / divisions, + dy = getCurveValue(t, derivativeY) / divisions, + l = Math.sqrt(dx * dx + dy * dy); + lengthMap[i] = lengthMap[i - 1] + l; + } + this.totalLength = lengthMap[divisions]; + this.startPoint = [p1x, p1y, isEqual(p1x, c1x) && isEqual(p1y, c1y) ? Math.atan2(c2y - c1y, c2x - c1x) : Math.atan2(c1y - p1y, c1x - p1x)]; + this.endPoint = [p2x, p2y, isEqual(c2x, p2x) && isEqual(c2y, p2y) ? Math.atan2(c2y - c1y, c2x - c1x) : Math.atan2(p2y - c2y, p2x - c2x)]; + this.getBoundingBox = function () { + var temp; + var minX = getCurveValue(0, equationX), + minY = getCurveValue(0, equationY), + maxX = getCurveValue(1, equationX), + maxY = getCurveValue(1, equationY); + if (minX > maxX) { + temp = maxX; + maxX = minX; + minX = temp; + } + if (minY > maxY) { + temp = maxY; + maxY = minY; + minY = temp; + } + var rootsX = solveEquation(derivativeX); + for (var _i4 = 0; _i4 < rootsX.length; _i4++) { + if (rootsX[_i4] >= 0 && rootsX[_i4] <= 1) { + var _x = getCurveValue(rootsX[_i4], equationX); + if (_x < minX) { + minX = _x; + } + if (_x > maxX) { + maxX = _x; + } + } + } + var rootsY = solveEquation(derivativeY); + for (var _i5 = 0; _i5 < rootsY.length; _i5++) { + if (rootsY[_i5] >= 0 && rootsY[_i5] <= 1) { + var _y = getCurveValue(rootsY[_i5], equationY); + if (_y < minY) { + minY = _y; + } + if (_y > maxY) { + maxY = _y; + } + } + } + return [minX, minY, maxX, maxY]; + }; + this.getPointAtLength = function (l) { + if (isEqual(l, 0)) { + return this.startPoint; + } + if (isEqual(l, this.totalLength)) { + return this.endPoint; + } + if (l < 0 || l > this.totalLength) { + return; + } + for (var _i6 = 1; _i6 <= divisions; _i6++) { + var l1 = lengthMap[_i6 - 1], + l2 = lengthMap[_i6]; + if (l1 <= l && l <= l2) { + var _t = (_i6 - (l2 - l) / (l2 - l1)) / divisions, + _x2 = getCurveValue(_t, equationX), + _y2 = getCurveValue(_t, equationY), + _dx = getCurveValue(_t, derivativeX), + _dy = getCurveValue(_t, derivativeY); + return [_x2, _y2, Math.atan2(_dy, _dx)]; + } + } + }; + }; + var LineSegment = function LineSegment(p1x, p1y, p2x, p2y) { + this.totalLength = Math.sqrt((p2x - p1x) * (p2x - p1x) + (p2y - p1y) * (p2y - p1y)); + this.startPoint = [p1x, p1y, Math.atan2(p2y - p1y, p2x - p1x)]; + this.endPoint = [p2x, p2y, Math.atan2(p2y - p1y, p2x - p1x)]; + this.getBoundingBox = function () { + return [Math.min(this.startPoint[0], this.endPoint[0]), Math.min(this.startPoint[1], this.endPoint[1]), Math.max(this.startPoint[0], this.endPoint[0]), Math.max(this.startPoint[1], this.endPoint[1])]; + }; + this.getPointAtLength = function (l) { + if (l >= 0 && l <= this.totalLength) { + var r = l / this.totalLength || 0, + _x3 = this.startPoint[0] + r * (this.endPoint[0] - this.startPoint[0]), + _y3 = this.startPoint[1] + r * (this.endPoint[1] - this.startPoint[1]); + return [_x3, _y3, this.startPoint[2]]; + } + }; + }; + var _SvgShape = function SvgShape() { + this.pathCommands = []; + this.pathSegments = []; + this.startPoint = null; + this.endPoint = null; + this.totalLength = 0; + var startX = 0, + startY = 0, + currX = 0, + currY = 0, + lastCom, + lastCtrlX, + lastCtrlY; + this.move = function (x, y) { + startX = currX = x; + startY = currY = y; + return null; + }; + this.line = function (x, y) { + var segment = new LineSegment(currX, currY, x, y); + currX = x; + currY = y; + return segment; + }; + this.curve = function (c1x, c1y, c2x, c2y, x, y) { + var segment = new BezierSegment(currX, currY, c1x, c1y, c2x, c2y, x, y); + currX = x; + currY = y; + return segment; + }; + this.close = function () { + var segment = new LineSegment(currX, currY, startX, startY); + currX = startX; + currY = startY; + return segment; + }; + this.addCommand = function (data) { + this.pathCommands.push(data); + var segment = this[data[0]].apply(this, data.slice(3)); + if (segment) { + segment.hasStart = data[1]; + segment.hasEnd = data[2]; + this.startPoint = this.startPoint || segment.startPoint; + this.endPoint = segment.endPoint; + this.pathSegments.push(segment); + this.totalLength += segment.totalLength; + } + }; + this.M = function (x, y) { + this.addCommand(['move', true, true, x, y]); + lastCom = 'M'; + return this; + }; + this.m = function (x, y) { + return this.M(currX + x, currY + y); + }; + this.Z = this.z = function () { + this.addCommand(['close', true, true]); + lastCom = 'Z'; + return this; + }; + this.L = function (x, y) { + this.addCommand(['line', true, true, x, y]); + lastCom = 'L'; + return this; + }; + this.l = function (x, y) { + return this.L(currX + x, currY + y); + }; + this.H = function (x) { + return this.L(x, currY); + }; + this.h = function (x) { + return this.L(currX + x, currY); + }; + this.V = function (y) { + return this.L(currX, y); + }; + this.v = function (y) { + return this.L(currX, currY + y); + }; + this.C = function (c1x, c1y, c2x, c2y, x, y) { + this.addCommand(['curve', true, true, c1x, c1y, c2x, c2y, x, y]); + lastCom = 'C'; + lastCtrlX = c2x; + lastCtrlY = c2y; + return this; + }; + this.c = function (c1x, c1y, c2x, c2y, x, y) { + return this.C(currX + c1x, currY + c1y, currX + c2x, currY + c2y, currX + x, currY + y); + }; + this.S = function (c1x, c1y, x, y) { + return this.C(currX + (lastCom === 'C' ? currX - lastCtrlX : 0), currY + (lastCom === 'C' ? currY - lastCtrlY : 0), c1x, c1y, x, y); + }; + this.s = function (c1x, c1y, x, y) { + return this.C(currX + (lastCom === 'C' ? currX - lastCtrlX : 0), currY + (lastCom === 'C' ? currY - lastCtrlY : 0), currX + c1x, currY + c1y, currX + x, currY + y); + }; + this.Q = function (cx, cy, x, y) { + var c1x = currX + 2 / 3 * (cx - currX), + c1y = currY + 2 / 3 * (cy - currY), + c2x = x + 2 / 3 * (cx - x), + c2y = y + 2 / 3 * (cy - y); + this.addCommand(['curve', true, true, c1x, c1y, c2x, c2y, x, y]); + lastCom = 'Q'; + lastCtrlX = cx; + lastCtrlY = cy; + return this; + }; + this.q = function (c1x, c1y, x, y) { + return this.Q(currX + c1x, currY + c1y, currX + x, currY + y); + }; + this.T = function (x, y) { + return this.Q(currX + (lastCom === 'Q' ? currX - lastCtrlX : 0), currY + (lastCom === 'Q' ? currY - lastCtrlY : 0), x, y); + }; + this.t = function (x, y) { + return this.Q(currX + (lastCom === 'Q' ? currX - lastCtrlX : 0), currY + (lastCom === 'Q' ? currY - lastCtrlY : 0), currX + x, currY + y); + }; + this.A = function (rx, ry, fi, fa, fs, x, y) { + if (isEqual(rx, 0) || isEqual(ry, 0)) { + this.addCommand(['line', true, true, x, y]); + } else { + fi = fi * (Math.PI / 180); + rx = Math.abs(rx); + ry = Math.abs(ry); + fa = 1 * !!fa; + fs = 1 * !!fs; + var x1 = Math.cos(fi) * (currX - x) / 2 + Math.sin(fi) * (currY - y) / 2, + y1 = Math.cos(fi) * (currY - y) / 2 - Math.sin(fi) * (currX - x) / 2, + lambda = x1 * x1 / (rx * rx) + y1 * y1 / (ry * ry); + if (lambda > 1) { + rx *= Math.sqrt(lambda); + ry *= Math.sqrt(lambda); + } + var r = Math.sqrt(Math.max(0, rx * rx * ry * ry - rx * rx * y1 * y1 - ry * ry * x1 * x1) / (rx * rx * y1 * y1 + ry * ry * x1 * x1)), + x2 = (fa === fs ? -1 : 1) * r * rx * y1 / ry, + y2 = (fa === fs ? 1 : -1) * r * ry * x1 / rx; + var cx = Math.cos(fi) * x2 - Math.sin(fi) * y2 + (currX + x) / 2, + cy = Math.sin(fi) * x2 + Math.cos(fi) * y2 + (currY + y) / 2, + th1 = Math.atan2((y1 - y2) / ry, (x1 - x2) / rx), + th2 = Math.atan2((-y1 - y2) / ry, (-x1 - x2) / rx); + if (fs === 0 && th2 - th1 > 0) { + th2 -= 2 * Math.PI; + } else if (fs === 1 && th2 - th1 < 0) { + th2 += 2 * Math.PI; + } + var segms = Math.ceil(Math.abs(th2 - th1) / (Math.PI / precision)); + for (var i = 0; i < segms; i++) { + var th3 = th1 + i * (th2 - th1) / segms, + th4 = th1 + (i + 1) * (th2 - th1) / segms, + t = 4 / 3 * Math.tan((th4 - th3) / 4); + var c1x = cx + Math.cos(fi) * rx * (Math.cos(th3) - t * Math.sin(th3)) - Math.sin(fi) * ry * (Math.sin(th3) + t * Math.cos(th3)), + c1y = cy + Math.sin(fi) * rx * (Math.cos(th3) - t * Math.sin(th3)) + Math.cos(fi) * ry * (Math.sin(th3) + t * Math.cos(th3)), + c2x = cx + Math.cos(fi) * rx * (Math.cos(th4) + t * Math.sin(th4)) - Math.sin(fi) * ry * (Math.sin(th4) - t * Math.cos(th4)), + c2y = cy + Math.sin(fi) * rx * (Math.cos(th4) + t * Math.sin(th4)) + Math.cos(fi) * ry * (Math.sin(th4) - t * Math.cos(th4)), + endX = cx + Math.cos(fi) * rx * Math.cos(th4) - Math.sin(fi) * ry * Math.sin(th4), + endY = cy + Math.sin(fi) * rx * Math.cos(th4) + Math.cos(fi) * ry * Math.sin(th4); + this.addCommand(['curve', i === 0, i === segms - 1, c1x, c1y, c2x, c2y, endX, endY]); + } + } + lastCom = 'A'; + return this; + }; + this.a = function (rx, ry, fi, fa, fs, x, y) { + return this.A(rx, ry, fi, fa, fs, currX + x, currY + y); + }; + this.path = function (d) { + var command, + value, + temp, + parser = new StringParser((d || '').trim()); + while (command = parser.match(/^[astvzqmhlcASTVZQMHLC]/)) { + parser.matchSeparator(); + var values = []; + while (value = PathFlags[command + values.length] ? parser.match(/^[01]/) : parser.matchNumber()) { + parser.matchSeparator(); + if (values.length === PathArguments[command]) { + this[command].apply(this, values); + values = []; + if (command === 'M') { + command = 'L'; + } else if (command === 'm') { + command = 'l'; + } + } + values.push(Number(value)); + } + if (values.length === PathArguments[command]) { + this[command].apply(this, values); + } else { + warningCallback('SvgPath: command ' + command + ' with ' + values.length + ' numbers'); + return; + } + } + if (temp = parser.matchAll()) { + warningCallback('SvgPath: unexpected string ' + temp); + } + return this; + }; + this.getBoundingBox = function () { + var bbox = [Infinity, Infinity, -Infinity, -Infinity]; + function addBounds(bbox1) { + if (bbox1[0] < bbox[0]) { + bbox[0] = bbox1[0]; + } + if (bbox1[2] > bbox[2]) { + bbox[2] = bbox1[2]; + } + if (bbox1[1] < bbox[1]) { + bbox[1] = bbox1[1]; + } + if (bbox1[3] > bbox[3]) { + bbox[3] = bbox1[3]; + } + } + for (var i = 0; i < this.pathSegments.length; i++) { + addBounds(this.pathSegments[i].getBoundingBox()); + } + if (bbox[0] === Infinity) { + bbox[0] = 0; + } + if (bbox[1] === Infinity) { + bbox[1] = 0; + } + if (bbox[2] === -Infinity) { + bbox[2] = 0; + } + if (bbox[3] === -Infinity) { + bbox[3] = 0; + } + return bbox; + }; + this.getPointAtLength = function (l) { + if (l >= 0 && l <= this.totalLength) { + var temp; + for (var i = 0; i < this.pathSegments.length; i++) { + if (temp = this.pathSegments[i].getPointAtLength(l)) { + return temp; + } + l -= this.pathSegments[i].totalLength; + } + return this.endPoint; + } + }; + this.transform = function (m) { + this.pathSegments = []; + this.startPoint = null; + this.endPoint = null; + this.totalLength = 0; + for (var i = 0; i < this.pathCommands.length; i++) { + var data = this.pathCommands.shift(); + for (var j = 3; j < data.length; j += 2) { + var p = transformPoint([data[j], data[j + 1]], m); + data[j] = p[0]; + data[j + 1] = p[1]; + } + this.addCommand(data); + } + return this; + }; + this.mergeShape = function (shape) { + for (var i = 0; i < shape.pathCommands.length; i++) { + this.addCommand(shape.pathCommands[i].slice()); + } + return this; + }; + this.clone = function () { + return new _SvgShape().mergeShape(this); + }; + this.insertInDocument = function () { + for (var i = 0; i < this.pathCommands.length; i++) { + var command = this.pathCommands[i][0], + values = this.pathCommands[i].slice(3); + switch (command) { + case 'move': + doc.moveTo(values[0], values[1]); + break; + case 'line': + doc.lineTo(values[0], values[1]); + break; + case 'curve': + doc.bezierCurveTo(values[0], values[1], values[2], values[3], values[4], values[5]); + break; + case 'close': + doc.closePath(); + break; + } + } + }; + this.getSubPaths = function () { + var subPaths = [], + shape = new _SvgShape(); + for (var i = 0; i < this.pathCommands.length; i++) { + var data = this.pathCommands[i], + command = this.pathCommands[i][0]; + if (command === 'move' && i !== 0) { + subPaths.push(shape); + shape = new _SvgShape(); + } + shape.addCommand(data); + } + subPaths.push(shape); + return subPaths; + }; + this.getMarkers = function () { + var markers = [], + subPaths = this.getSubPaths(); + for (var i = 0; i < subPaths.length; i++) { + var subPath = subPaths[i], + subPathMarkers = []; + for (var j = 0; j < subPath.pathSegments.length; j++) { + var segment = subPath.pathSegments[j]; + if (isNotEqual(segment.totalLength, 0) || j === 0 || j === subPath.pathSegments.length - 1) { + if (segment.hasStart) { + var startMarker = segment.getPointAtLength(0), + prevEndMarker = subPathMarkers.pop(); + if (prevEndMarker) { + startMarker[2] = 0.5 * (prevEndMarker[2] + startMarker[2]); + } + subPathMarkers.push(startMarker); + } + if (segment.hasEnd) { + var endMarker = segment.getPointAtLength(segment.totalLength); + subPathMarkers.push(endMarker); + } + } + } + markers = markers.concat(subPathMarkers); + } + return markers; + }; + }; + var SvgElem = function SvgElem(obj, inherits) { + var styleCache = Object.create(null); + var childrenCache = null; + this.name = obj.nodeName; + this.isOuterElement = obj === svg || !obj.parentNode; + this.inherits = inherits || (!this.isOuterElement ? createSVGElement(obj.parentNode, null) : null); + this.stack = this.inherits ? this.inherits.stack.concat(obj) : [obj]; + this.style = parseStyleAttr(typeof obj.getAttribute === 'function' && obj.getAttribute('style')); + this.css = useCSS ? getComputedStyle(obj) : getStyle(obj); + this.allowedChildren = []; + this.attr = function (key) { + if (typeof obj.getAttribute === 'function') { + return obj.getAttribute(key); + } + }; + this.resolveUrl = function (value) { + var temp = (value || '').match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/) || []; + var file = temp[1] || temp[3] || temp[5] || temp[7], + id = temp[2] || temp[4] || temp[6] || temp[8]; + if (id) { + if (!file) { + var svgObj = svg.getElementById(id); + if (svgObj) { + if (this.stack.indexOf(svgObj) === -1) { + return svgObj; + } else { + warningCallback('SVGtoPDF: loop of circular references for id "' + id + '"'); + return; + } + } + } + if (documentCallback) { + var svgs = documentCache[file]; + if (!svgs) { + svgs = documentCallback(file); + if (!isArrayLike(svgs)) { + svgs = [svgs]; + } + for (var i = 0; i < svgs.length; i++) { + if (typeof svgs[i] === 'string') { + svgs[i] = parseXml(svgs[i]); + } + } + documentCache[file] = svgs; + } + for (var _i7 = 0; _i7 < svgs.length; _i7++) { + var _svgObj = svgs[_i7].getElementById(id); + if (_svgObj) { + if (this.stack.indexOf(_svgObj) === -1) { + return _svgObj; + } else { + warningCallback('SVGtoPDF: loop of circular references for id "' + file + '#' + id + '"'); + return; + } + } + } + } + } + }; + this.computeUnits = function (value, unit, percent, isFontSize) { + if (unit === '%') { + return parseFloat(value) / 100 * (isFontSize || percent != null ? percent : this.getViewport()); + } else if (unit === 'ex' || unit === 'em') { + return value * { + 'em': 1, + 'ex': 0.5 + }[unit] * (isFontSize ? percent : this.get('font-size')); + } else { + return value * { + '': 1, + 'px': 1, + 'pt': 96 / 72, + 'cm': 96 / 2.54, + 'mm': 96 / 25.4, + 'in': 96, + 'pc': 96 / 6 + }[unit]; + } + }; + this.computeLength = function (value, percent, initial, isFontSize) { + var parser = new StringParser((value || '').trim()), + temp1, + temp2; + if (typeof (temp1 = parser.matchNumber()) === 'string' && typeof (temp2 = parser.matchLengthUnit()) === 'string' && !parser.matchAll()) { + return this.computeUnits(temp1, temp2, percent, isFontSize); + } + return initial; + }; + this.computeLengthList = function (value, percent, strict) { + var parser = new StringParser((value || '').trim()), + result = [], + temp1, + temp2; + while (typeof (temp1 = parser.matchNumber()) === 'string' && typeof (temp2 = parser.matchLengthUnit()) === 'string') { + result.push(this.computeUnits(temp1, temp2, percent)); + parser.matchSeparator(); + } + if (strict && parser.matchAll()) { + return; + } + return result; + }; + this.getLength = function (key, percent, initial) { + return this.computeLength(this.attr(key), percent, initial); + }; + this.getLengthList = function (key, percent) { + return this.computeLengthList(this.attr(key), percent); + }; + this.getUrl = function (key) { + return this.resolveUrl(this.attr(key)); + }; + this.getNumberList = function (key) { + var parser = new StringParser((this.attr(key) || '').trim()), + result = [], + temp; + while (temp = parser.matchNumber()) { + result.push(Number(temp)); + parser.matchSeparator(); + } + result.error = parser.matchAll(); + return result; + }; + this.getViewbox = function (key, initial) { + var viewBox = this.getNumberList(key); + if (viewBox.length === 4 && viewBox[2] >= 0 && viewBox[3] >= 0) { + return viewBox; + } + return initial; + }; + this.getPercent = function (key, initial) { + var value = this.attr(key); + var parser = new StringParser((value || '').trim()), + temp1, + temp2; + var number = parser.matchNumber(); + if (!number) { + return initial; + } + if (parser.match('%')) { + number *= 0.01; + } + if (parser.matchAll()) { + return initial; + } + return Math.max(0, Math.min(1, number)); + }; + this.chooseValue = function (args) { + for (var i = 0; i < arguments.length; i++) { + if (arguments[i] != null && arguments[i] === arguments[i]) { + return arguments[i]; + } + } + return arguments[arguments.length - 1]; + }; + this.get = function (key) { + if (styleCache[key] !== undefined) { + return styleCache[key]; + } + var keyInfo = Properties[key] || {}, + value, + result; + for (var i = 0; i < 3; i++) { + switch (i) { + case 0: + if (key !== 'transform') { + // the CSS transform behaves strangely + value = this.css[keyInfo.css || key]; + } + break; + case 1: + value = this.style[key]; + break; + case 2: + value = this.attr(key); + break; + } + if (value === 'inherit') { + result = this.inherits ? this.inherits.get(key) : keyInfo.initial; + if (result != null) { + return styleCache[key] = result; + } + } + if (keyInfo.values != null) { + result = keyInfo.values[value]; + if (result != null) { + return styleCache[key] = result; + } + } + if (value != null) { + var parsed = void 0; + switch (key) { + case 'font-size': + result = this.computeLength(value, this.inherits ? this.inherits.get(key) : keyInfo.initial, undefined, true); + break; + case 'baseline-shift': + result = this.computeLength(value, this.get('font-size')); + break; + case 'font-family': + result = value || undefined; + break; + case 'opacity': + case 'stroke-opacity': + case 'fill-opacity': + case 'stop-opacity': + parsed = parseFloat(value); + if (!isNaN(parsed)) { + result = Math.max(0, Math.min(1, parsed)); + } + break; + case 'transform': + result = parseTranform(value); + break; + case 'stroke-dasharray': + if (value === 'none') { + result = []; + } else if (parsed = this.computeLengthList(value, this.getViewport(), true)) { + var sum = 0, + error = false; + for (var j = 0; j < parsed.length; j++) { + if (parsed[j] < 0) { + error = true; + } + sum += parsed[j]; + } + if (!error) { + if (parsed.length % 2 === 1) { + parsed = parsed.concat(parsed); + } + result = sum === 0 ? [] : parsed; + } + } + break; + case 'color': + if (value === 'none' || value === 'transparent') { + result = 'none'; + } else { + result = parseColor(value); + } + break; + case 'fill': + case 'stroke': + if (value === 'none' || value === 'transparent') { + result = 'none'; + } else if (value === 'currentColor') { + result = this.get('color'); + } else if (parsed = parseColor(value)) { + return parsed; + } else if (parsed = (value || '').split(' ')) { + var object = this.resolveUrl(parsed[0]), + fallbackColor = parseColor(parsed[1]); + if (object == null) { + result = fallbackColor; + } else if (object.nodeName === 'linearGradient' || object.nodeName === 'radialGradient') { + result = new _SvgElemGradient(object, null, fallbackColor); + } else if (object.nodeName === 'pattern') { + result = new _SvgElemPattern(object, null, fallbackColor); + } else { + result = fallbackColor; + } + } + break; + case 'stop-color': + if (value === 'none' || value === 'transparent') { + result = 'none'; + } else if (value === 'currentColor') { + result = this.get('color'); + } else { + result = parseColor(value); + } + break; + case 'marker-start': + case 'marker-mid': + case 'marker-end': + case 'clip-path': + case 'mask': + if (value === 'none') { + result = 'none'; + } else { + result = this.resolveUrl(value); + } + break; + case 'stroke-width': + parsed = this.computeLength(value, this.getViewport()); + if (parsed != null && parsed >= 0) { + result = parsed; + } + break; + case 'stroke-miterlimit': + parsed = parseFloat(value); + if (parsed != null && parsed >= 1) { + result = parsed; + } + break; + case 'word-spacing': + case 'letter-spacing': + result = this.computeLength(value, this.getViewport()); + break; + case 'stroke-dashoffset': + result = this.computeLength(value, this.getViewport()); + if (result != null) { + if (result < 0) { + // fix for crbug.com/660850 + var dasharray = this.get('stroke-dasharray'); + for (var _j = 0; _j < dasharray.length; _j++) { + result += dasharray[_j]; + } + } + } + break; + } + if (result != null) { + return styleCache[key] = result; + } + } + } + return styleCache[key] = keyInfo.inherit && this.inherits ? this.inherits.get(key) : keyInfo.initial; + }; + this.getChildren = function () { + if (childrenCache != null) { + return childrenCache; + } + var children = []; + for (var i = 0; i < obj.childNodes.length; i++) { + var child = obj.childNodes[i]; + if (!child.error && this.allowedChildren.indexOf(child.nodeName) !== -1) { + children.push(createSVGElement(child, this)); + } + } + return childrenCache = children; + }; + this.getParentVWidth = function () { + return this.inherits ? this.inherits.getVWidth() : viewportWidth; + }; + this.getParentVHeight = function () { + return this.inherits ? this.inherits.getVHeight() : viewportHeight; + }; + this.getParentViewport = function () { + return Math.sqrt(0.5 * this.getParentVWidth() * this.getParentVWidth() + 0.5 * this.getParentVHeight() * this.getParentVHeight()); + }; + this.getVWidth = function () { + return this.getParentVWidth(); + }; + this.getVHeight = function () { + return this.getParentVHeight(); + }; + this.getViewport = function () { + return Math.sqrt(0.5 * this.getVWidth() * this.getVWidth() + 0.5 * this.getVHeight() * this.getVHeight()); + }; + this.getBoundingBox = function () { + var shape = this.getBoundingShape(); + return shape.getBoundingBox(); + }; + }; + var SvgElemStylable = function SvgElemStylable(obj, inherits) { + SvgElem.call(this, obj, inherits); + this.transform = function () { + doc.transform.apply(doc, this.getTransformation()); + }; + this.clip = function () { + if (this.get('clip-path') !== 'none') { + var clipPath = new SvgElemClipPath(this.get('clip-path'), null); + clipPath.useMask(this.getBoundingBox()); + return true; + } + }; + this.mask = function () { + if (this.get('mask') !== 'none') { + var mask = new SvgElemMask(this.get('mask'), null); + mask.useMask(this.getBoundingBox()); + return true; + } + }; + this.getFill = function (isClip, isMask) { + var opacity = this.get('opacity'), + fill = this.get('fill'), + fillOpacity = this.get('fill-opacity'); + if (isClip) { + return DefaultColors.white; + } + if (fill !== 'none' && opacity && fillOpacity) { + if (fill instanceof _SvgElemGradient || fill instanceof _SvgElemPattern) { + return fill.getPaint(this.getBoundingBox(), fillOpacity * opacity, isClip, isMask); + } + return opacityToColor(fill, fillOpacity * opacity, isMask); + } + }; + this.getStroke = function (isClip, isMask) { + var opacity = this.get('opacity'), + stroke = this.get('stroke'), + strokeOpacity = this.get('stroke-opacity'); + if (isClip || isEqual(this.get('stroke-width'), 0)) { + return; + } + if (stroke !== 'none' && opacity && strokeOpacity) { + if (stroke instanceof _SvgElemGradient || stroke instanceof _SvgElemPattern) { + return stroke.getPaint(this.getBoundingBox(), strokeOpacity * opacity, isClip, isMask); + } + return opacityToColor(stroke, strokeOpacity * opacity, isMask); + } + }; + }; + var SvgElemHasChildren = function SvgElemHasChildren(obj, inherits) { + SvgElemStylable.call(this, obj, inherits); + this.allowedChildren = ['use', 'g', 'a', 'svg', 'image', 'rect', 'circle', 'ellipse', 'line', 'polyline', 'polygon', 'path', 'text']; + this.getBoundingShape = function () { + var shape = new _SvgShape(), + children = this.getChildren(); + for (var i = 0; i < children.length; i++) { + if (children[i].get('display') !== 'none') { + if (typeof children[i].getBoundingShape === 'function') { + var childShape = children[i].getBoundingShape().clone(); + if (typeof children[i].getTransformation === 'function') { + childShape.transform(children[i].getTransformation()); + } + shape.mergeShape(childShape); + } + } + } + return shape; + }; + this.drawChildren = function (isClip, isMask) { + var children = this.getChildren(); + for (var i = 0; i < children.length; i++) { + if (children[i].get('display') !== 'none') { + if (typeof children[i].drawInDocument === 'function') { + children[i].drawInDocument(isClip, isMask); + } + } + } + }; + }; + var SvgElemContainer = function SvgElemContainer(obj, inherits) { + SvgElemHasChildren.call(this, obj, inherits); + this.drawContent = function (isClip, isMask) { + this.transform(); + var clipped = this.clip(), + masked = this.mask(), + group; + if ((this.get('opacity') < 1 || clipped || masked) && !isClip) { + group = docBeginGroup(getPageBBox()); + } + this.drawChildren(isClip, isMask); + if (group) { + docEndGroup(group); + doc.fillOpacity(this.get('opacity')); + docInsertGroup(group); + } + }; + }; + var SvgElemUse = function SvgElemUse(obj, inherits) { + SvgElemContainer.call(this, obj, inherits); + var x = this.getLength('x', this.getVWidth(), 0), + y = this.getLength('y', this.getVHeight(), 0), + child = this.getUrl('href') || this.getUrl('xlink:href'); + if (child) { + child = createSVGElement(child, this); + } + this.getChildren = function () { + return child ? [child] : []; + }; + this.drawInDocument = function (isClip, isMask) { + doc.save(); + this.drawContent(isClip, isMask); + doc.restore(); + }; + this.getTransformation = function () { + return multiplyMatrix(this.get('transform'), [1, 0, 0, 1, x, y]); + }; + }; + var SvgElemSymbol = function SvgElemSymbol(obj, inherits) { + SvgElemContainer.call(this, obj, inherits); + var width = this.getLength('width', this.getParentVWidth(), this.getParentVWidth()), + height = this.getLength('height', this.getParentVHeight(), this.getParentVHeight()); + if (inherits instanceof SvgElemUse) { + width = inherits.getLength('width', inherits.getParentVWidth(), width); + height = inherits.getLength('height', inherits.getParentVHeight(), height); + } + var aspectRatio = (this.attr('preserveAspectRatio') || '').trim(), + viewBox = this.getViewbox('viewBox', [0, 0, width, height]); + this.getVWidth = function () { + return viewBox[2]; + }; + this.getVHeight = function () { + return viewBox[3]; + }; + this.drawInDocument = function (isClip, isMask) { + doc.save(); + this.drawContent(isClip, isMask); + doc.restore(); + }; + this.getTransformation = function () { + return multiplyMatrix(parseAspectRatio(aspectRatio, width, height, viewBox[2], viewBox[3]), [1, 0, 0, 1, -viewBox[0], -viewBox[1]]); + }; + }; + var SvgElemGroup = function SvgElemGroup(obj, inherits) { + SvgElemContainer.call(this, obj, inherits); + this.drawInDocument = function (isClip, isMask) { + doc.save(); + if (this.link && !isClip && !isMask) { + this.addLink(); + } + this.drawContent(isClip, isMask); + doc.restore(); + }; + this.getTransformation = function () { + return this.get('transform'); + }; + }; + var SvgElemLink = function SvgElemLink(obj, inherits) { + if (inherits && inherits.isText) { + SvgElemTspan.call(this, obj, inherits); + this.allowedChildren = ['textPath', 'tspan', '#text', '#cdata-section', 'a']; + } else { + SvgElemGroup.call(this, obj, inherits); + } + this.link = this.attr('href') || this.attr('xlink:href'); + this.addLink = function () { + if (this.link.match(/^(?:[a-z][a-z0-9+.-]*:|\/\/)?/i) && this.getChildren().length) { + var bbox = this.getBoundingShape().transform(getGlobalMatrix()).getBoundingBox(); + docInsertLink(bbox[0], bbox[1], bbox[2], bbox[3], this.link); + } + }; + }; + var SvgElemSvg = function SvgElemSvg(obj, inherits) { + SvgElemContainer.call(this, obj, inherits); + var width = this.getLength('width', this.getParentVWidth(), this.getParentVWidth()), + height = this.getLength('height', this.getParentVHeight(), this.getParentVHeight()), + x = this.getLength('x', this.getParentVWidth(), 0), + y = this.getLength('y', this.getParentVHeight(), 0); + if (inherits instanceof SvgElemUse) { + width = inherits.getLength('width', inherits.getParentVWidth(), width); + height = inherits.getLength('height', inherits.getParentVHeight(), height); + } + var aspectRatio = this.attr('preserveAspectRatio'), + viewBox = this.getViewbox('viewBox', [0, 0, width, height]); + if (this.isOuterElement && preserveAspectRatio) { + x = y = 0; + width = viewportWidth; + height = viewportHeight; + aspectRatio = preserveAspectRatio; + } + this.getVWidth = function () { + return viewBox[2]; + }; + this.getVHeight = function () { + return viewBox[3]; + }; + this.drawInDocument = function (isClip, isMask) { + doc.save(); + if (this.get('overflow') === 'hidden') { + new _SvgShape().M(x, y).L(x + width, y).L(x + width, y + height).L(x, y + height).Z().transform(this.get('transform')).insertInDocument(); + doc.clip(); + } + this.drawContent(isClip, isMask); + doc.restore(); + }; + this.getTransformation = function () { + return multiplyMatrix(this.get('transform'), [1, 0, 0, 1, x, y], parseAspectRatio(aspectRatio, width, height, viewBox[2], viewBox[3]), [1, 0, 0, 1, -viewBox[0], -viewBox[1]]); + }; + }; + var SVGElemImage = function SVGElemImage(obj, inherits) { + SvgElemStylable.call(this, obj, inherits); + var link = imageCallback(this.attr('href') || this.attr('xlink:href') || ''), + x = this.getLength('x', this.getVWidth(), 0), + y = this.getLength('y', this.getVHeight(), 0), + width = this.getLength('width', this.getVWidth(), 'auto'), + height = this.getLength('height', this.getVHeight(), 'auto'), + image; + try { + image = doc.openImage(link); + } catch (e) { + warningCallback('SVGElemImage: failed to open image "' + link + '" in PDFKit'); + } + if (image) { + if (width === 'auto' && height !== 'auto') { + width = height * image.width / image.height; + } else if (height === 'auto' && width !== 'auto') { + height = width * image.height / image.width; + } else if (width === 'auto' && height === 'auto') { + width = image.width; + height = image.height; + } + } + if (width === 'auto' || width < 0) { + width = 0; + } + if (height === 'auto' || height < 0) { + height = 0; + } + this.getTransformation = function () { + return this.get('transform'); + }; + this.getBoundingShape = function () { + return new _SvgShape().M(x, y).L(x + width, y).M(x + width, y + height).L(x, y + height); + }; + this.drawInDocument = function (isClip, isMask) { + if (this.get('visibility') === 'hidden' || !image) { + return; + } + doc.save(); + this.transform(); + if (this.get('overflow') === 'hidden') { + doc.rect(x, y, width, height).clip(); + } + this.clip(); + this.mask(); + doc.translate(x, y); + doc.transform.apply(doc, parseAspectRatio(this.attr('preserveAspectRatio'), width, height, image ? image.width : width, image ? image.height : height)); + if (!isClip) { + doc.fillOpacity(this.get('opacity')); + doc.image(image, 0, 0); + } else { + doc.rect(0, 0, image.width, image.height); + docFillColor(DefaultColors.white).fill(); + } + doc.restore(); + }; + }; + var _SvgElemPattern = function SvgElemPattern(obj, inherits, fallback) { + SvgElemHasChildren.call(this, obj, inherits); + this.ref = function () { + var ref = this.getUrl('href') || this.getUrl('xlink:href'); + if (ref && ref.nodeName === obj.nodeName) { + return new _SvgElemPattern(ref, inherits, fallback); + } + }.call(this); + var _attr = this.attr; + this.attr = function (key) { + var attr = _attr.call(this, key); + if (attr != null || key === 'href' || key === 'xlink:href') { + return attr; + } + return this.ref ? this.ref.attr(key) : null; + }; + var _getChildren = this.getChildren; + this.getChildren = function () { + var children = _getChildren.call(this); + if (children.length > 0) { + return children; + } + return this.ref ? this.ref.getChildren() : []; + }; + this.getPaint = function (bBox, gOpacity, isClip, isMask) { + var bBoxUnitsPattern = this.attr('patternUnits') !== 'userSpaceOnUse', + bBoxUnitsContent = this.attr('patternContentUnits') === 'objectBoundingBox', + x = this.getLength('x', bBoxUnitsPattern ? 1 : this.getParentVWidth(), 0), + y = this.getLength('y', bBoxUnitsPattern ? 1 : this.getParentVHeight(), 0), + width = this.getLength('width', bBoxUnitsPattern ? 1 : this.getParentVWidth(), 0), + height = this.getLength('height', bBoxUnitsPattern ? 1 : this.getParentVHeight(), 0); + if (bBoxUnitsContent && !bBoxUnitsPattern) { + // Use the same units for pattern & pattern content + x = (x - bBox[0]) / (bBox[2] - bBox[0]) || 0; + y = (y - bBox[1]) / (bBox[3] - bBox[1]) || 0; + width = width / (bBox[2] - bBox[0]) || 0; + height = height / (bBox[3] - bBox[1]) || 0; + } else if (!bBoxUnitsContent && bBoxUnitsPattern) { + x = bBox[0] + x * (bBox[2] - bBox[0]); + y = bBox[1] + y * (bBox[3] - bBox[1]); + width = width * (bBox[2] - bBox[0]); + height = height * (bBox[3] - bBox[1]); + } + var viewBox = this.getViewbox('viewBox', [0, 0, width, height]), + aspectRatio = (this.attr('preserveAspectRatio') || '').trim(), + aspectRatioMatrix = multiplyMatrix(parseAspectRatio(aspectRatio, width, height, viewBox[2], viewBox[3], 0), [1, 0, 0, 1, -viewBox[0], -viewBox[1]]), + matrix = parseTranform(this.attr('patternTransform')); + if (bBoxUnitsContent) { + matrix = multiplyMatrix([bBox[2] - bBox[0], 0, 0, bBox[3] - bBox[1], bBox[0], bBox[1]], matrix); + } + matrix = multiplyMatrix(matrix, [1, 0, 0, 1, x, y]); + if ((matrix = validateMatrix(matrix)) && (aspectRatioMatrix = validateMatrix(aspectRatioMatrix)) && (width = validateNumber(width)) && (height = validateNumber(height))) { + var group = docBeginGroup([0, 0, width, height]); + doc.transform.apply(doc, aspectRatioMatrix); + this.drawChildren(isClip, isMask); + docEndGroup(group); + return [docCreatePattern(group, width, height, matrix), gOpacity]; + } else { + return fallback ? [fallback[0], fallback[1] * gOpacity] : undefined; + } + }; + this.getVWidth = function () { + var bBoxUnitsPattern = this.attr('patternUnits') !== 'userSpaceOnUse', + width = this.getLength('width', bBoxUnitsPattern ? 1 : this.getParentVWidth(), 0); + return this.getViewbox('viewBox', [0, 0, width, 0])[2]; + }; + this.getVHeight = function () { + var bBoxUnitsPattern = this.attr('patternUnits') !== 'userSpaceOnUse', + height = this.getLength('height', bBoxUnitsPattern ? 1 : this.getParentVHeight(), 0); + return this.getViewbox('viewBox', [0, 0, 0, height])[3]; + }; + }; + var _SvgElemGradient = function SvgElemGradient(obj, inherits, fallback) { + SvgElem.call(this, obj, inherits); + this.allowedChildren = ['stop']; + this.ref = function () { + var ref = this.getUrl('href') || this.getUrl('xlink:href'); + if (ref && ref.nodeName === obj.nodeName) { + return new _SvgElemGradient(ref, inherits, fallback); + } + }.call(this); + var _attr = this.attr; + this.attr = function (key) { + var attr = _attr.call(this, key); + if (attr != null || key === 'href' || key === 'xlink:href') { + return attr; + } + return this.ref ? this.ref.attr(key) : null; + }; + var _getChildren = this.getChildren; + this.getChildren = function () { + var children = _getChildren.call(this); + if (children.length > 0) { + return children; + } + return this.ref ? this.ref.getChildren() : []; + }; + this.getPaint = function (bBox, gOpacity, isClip, isMask) { + var children = this.getChildren(); + if (children.length === 0) { + return; + } + if (children.length === 1) { + var child = children[0], + stopColor = child.get('stop-color'); + if (stopColor === 'none') { + return; + } + return opacityToColor(stopColor, child.get('stop-opacity') * gOpacity, isMask); + } + var bBoxUnits = this.attr('gradientUnits') !== 'userSpaceOnUse', + matrix = parseTranform(this.attr('gradientTransform')), + spread = this.attr('spreadMethod'), + grad, + x1, + x2, + y1, + y2, + r2, + nAfter = 0, + nBefore = 0, + nTotal = 1; + if (bBoxUnits) { + matrix = multiplyMatrix([bBox[2] - bBox[0], 0, 0, bBox[3] - bBox[1], bBox[0], bBox[1]], matrix); + } + if (matrix = validateMatrix(matrix)) { + if (this.name === 'linearGradient') { + x1 = this.getLength('x1', bBoxUnits ? 1 : this.getVWidth(), 0); + x2 = this.getLength('x2', bBoxUnits ? 1 : this.getVWidth(), bBoxUnits ? 1 : this.getVWidth()); + y1 = this.getLength('y1', bBoxUnits ? 1 : this.getVHeight(), 0); + y2 = this.getLength('y2', bBoxUnits ? 1 : this.getVHeight(), 0); + } else { + x2 = this.getLength('cx', bBoxUnits ? 1 : this.getVWidth(), bBoxUnits ? 0.5 : 0.5 * this.getVWidth()); + y2 = this.getLength('cy', bBoxUnits ? 1 : this.getVHeight(), bBoxUnits ? 0.5 : 0.5 * this.getVHeight()); + r2 = this.getLength('r', bBoxUnits ? 1 : this.getViewport(), bBoxUnits ? 0.5 : 0.5 * this.getViewport()); + x1 = this.getLength('fx', bBoxUnits ? 1 : this.getVWidth(), x2); + y1 = this.getLength('fy', bBoxUnits ? 1 : this.getVHeight(), y2); + if (r2 < 0) { + warningCallback('SvgElemGradient: negative r value'); + } + var d = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)), + multiplier = 1; + if (d > r2) { + // according to specification + multiplier = r2 / d; + x1 = x2 + (x1 - x2) * multiplier; + y1 = y2 + (y1 - y2) * multiplier; + } + r2 = Math.max(r2, d * multiplier * (1 + 1e-6)); // fix for edge-case gradients see issue #84 + } + if (spread === 'reflect' || spread === 'repeat') { + var inv = inverseMatrix(matrix), + corner1 = transformPoint([bBox[0], bBox[1]], inv), + corner2 = transformPoint([bBox[2], bBox[1]], inv), + corner3 = transformPoint([bBox[2], bBox[3]], inv), + corner4 = transformPoint([bBox[0], bBox[3]], inv); + if (this.name === 'linearGradient') { + // See file 'gradient-repeat-maths.png' + nAfter = Math.max((corner1[0] - x2) * (x2 - x1) + (corner1[1] - y2) * (y2 - y1), (corner2[0] - x2) * (x2 - x1) + (corner2[1] - y2) * (y2 - y1), (corner3[0] - x2) * (x2 - x1) + (corner3[1] - y2) * (y2 - y1), (corner4[0] - x2) * (x2 - x1) + (corner4[1] - y2) * (y2 - y1)) / (Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); + nBefore = Math.max((corner1[0] - x1) * (x1 - x2) + (corner1[1] - y1) * (y1 - y2), (corner2[0] - x1) * (x1 - x2) + (corner2[1] - y1) * (y1 - y2), (corner3[0] - x1) * (x1 - x2) + (corner3[1] - y1) * (y1 - y2), (corner4[0] - x1) * (x1 - x2) + (corner4[1] - y1) * (y1 - y2)) / (Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); + } else { + nAfter = Math.sqrt(Math.max(Math.pow(corner1[0] - x2, 2) + Math.pow(corner1[1] - y2, 2), Math.pow(corner2[0] - x2, 2) + Math.pow(corner2[1] - y2, 2), Math.pow(corner3[0] - x2, 2) + Math.pow(corner3[1] - y2, 2), Math.pow(corner4[0] - x2, 2) + Math.pow(corner4[1] - y2, 2))) / r2 - 1; + } + nAfter = Math.ceil(nAfter + 0.5); // Add a little more because the stroke can extend outside of the bounding box + nBefore = Math.ceil(nBefore + 0.5); + nTotal = nBefore + 1 + nAfter; // How many times the gradient needs to be repeated to fill the object bounding box + } + if (this.name === 'linearGradient') { + grad = doc.linearGradient(x1 - nBefore * (x2 - x1), y1 - nBefore * (y2 - y1), x2 + nAfter * (x2 - x1), y2 + nAfter * (y2 - y1)); + } else { + grad = doc.radialGradient(x1, y1, 0, x2, y2, r2 + nAfter * r2); + } + for (var n = 0; n < nTotal; n++) { + var offset = 0, + inOrder = spread !== 'reflect' || (n - nBefore) % 2 === 0; + for (var i = 0; i < children.length; i++) { + var _child = children[inOrder ? i : children.length - 1 - i], + _stopColor = _child.get('stop-color'); + if (_stopColor === 'none') { + _stopColor = DefaultColors.transparent; + } + _stopColor = opacityToColor(_stopColor, _child.get('stop-opacity') * gOpacity, isMask); + offset = Math.max(offset, inOrder ? _child.getPercent('offset', 0) : 1 - _child.getPercent('offset', 0)); + if (i === 0 && _stopColor[0].length === 4) { + grad._colorSpace = 'DeviceCMYK'; + } // Fix until PR #763 is merged into PDFKit + if (i === 0 && offset > 0) { + grad.stop((n + 0) / nTotal, _stopColor[0], _stopColor[1]); + } + grad.stop((n + offset) / (nAfter + nBefore + 1), _stopColor[0], _stopColor[1]); + if (i === children.length - 1 && offset < 1) { + grad.stop((n + 1) / nTotal, _stopColor[0], _stopColor[1]); + } + } + } + grad.setTransform.apply(grad, matrix); + return [grad, 1]; + } else { + return fallback ? [fallback[0], fallback[1] * gOpacity] : undefined; + } + }; + }; + var SvgElemBasicShape = function SvgElemBasicShape(obj, inherits) { + SvgElemStylable.call(this, obj, inherits); + this.dashScale = 1; + this.getBoundingShape = function () { + return this.shape; + }; + this.getTransformation = function () { + return this.get('transform'); + }; + this.drawInDocument = function (isClip, isMask) { + if (this.get('visibility') === 'hidden' || !this.shape) { + return; + } + doc.save(); + this.transform(); + this.clip(); + if (!isClip) { + var masked = this.mask(), + group; + if (masked) { + group = docBeginGroup(getPageBBox()); + } + var subPaths = this.shape.getSubPaths(), + fill = this.getFill(isClip, isMask), + stroke = this.getStroke(isClip, isMask), + lineWidth = this.get('stroke-width'), + lineCap = this.get('stroke-linecap'); + if (fill || stroke) { + if (fill) { + docFillColor(fill); + } + if (stroke) { + for (var j = 0; j < subPaths.length; j++) { + if (isEqual(subPaths[j].totalLength, 0)) { + if ((lineCap === 'square' || lineCap === 'round') && lineWidth > 0) { + if (subPaths[j].startPoint && subPaths[j].startPoint.length > 1) { + var _x4 = subPaths[j].startPoint[0], + _y4 = subPaths[j].startPoint[1]; + docFillColor(stroke); + if (lineCap === 'square') { + doc.rect(_x4 - 0.5 * lineWidth, _y4 - 0.5 * lineWidth, lineWidth, lineWidth); + } else if (lineCap === 'round') { + doc.circle(_x4, _y4, 0.5 * lineWidth); + } + doc.fill(); + } + } + } + } + var dashArray = this.get('stroke-dasharray'), + dashOffset = this.get('stroke-dashoffset'); + if (isNotEqual(this.dashScale, 1)) { + for (var _j2 = 0; _j2 < dashArray.length; _j2++) { + dashArray[_j2] *= this.dashScale; + } + dashOffset *= this.dashScale; + } + docStrokeColor(stroke); + doc.lineWidth(lineWidth).miterLimit(this.get('stroke-miterlimit')).lineJoin(this.get('stroke-linejoin')).lineCap(lineCap).dash(dashArray, { + phase: dashOffset + }); + } + for (var _j3 = 0; _j3 < subPaths.length; _j3++) { + if (subPaths[_j3].totalLength > 0) { + subPaths[_j3].insertInDocument(); + } + } + if (fill && stroke) { + doc.fillAndStroke(this.get('fill-rule')); + } else if (fill) { + doc.fill(this.get('fill-rule')); + } else if (stroke) { + doc.stroke(); + } + } + var markerStart = this.get('marker-start'), + markerMid = this.get('marker-mid'), + markerEnd = this.get('marker-end'); + if (markerStart !== 'none' || markerMid !== 'none' || markerEnd !== 'none') { + var markersPos = this.shape.getMarkers(); + if (markerStart !== 'none') { + var marker = new SvgElemMarker(markerStart, null); + marker.drawMarker(false, isMask, markersPos[0], lineWidth); + } + if (markerMid !== 'none') { + for (var i = 1; i < markersPos.length - 1; i++) { + var _marker = new SvgElemMarker(markerMid, null); + _marker.drawMarker(false, isMask, markersPos[i], lineWidth); + } + } + if (markerEnd !== 'none') { + var _marker2 = new SvgElemMarker(markerEnd, null); + _marker2.drawMarker(false, isMask, markersPos[markersPos.length - 1], lineWidth); + } + } + if (group) { + docEndGroup(group); + docInsertGroup(group); + } + } else { + this.shape.insertInDocument(); + docFillColor(DefaultColors.white); + doc.fill(this.get('clip-rule')); + } + doc.restore(); + }; + }; + var SvgElemRect = function SvgElemRect(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var x = this.getLength('x', this.getVWidth(), 0), + y = this.getLength('y', this.getVHeight(), 0), + w = this.getLength('width', this.getVWidth(), 0), + h = this.getLength('height', this.getVHeight(), 0), + rx = this.getLength('rx', this.getVWidth()), + ry = this.getLength('ry', this.getVHeight()); + if (rx === undefined && ry === undefined) { + rx = ry = 0; + } else if (rx === undefined && ry !== undefined) { + rx = ry; + } else if (rx !== undefined && ry === undefined) { + ry = rx; + } + if (w > 0 && h > 0) { + if (rx && ry) { + rx = Math.min(rx, 0.5 * w); + ry = Math.min(ry, 0.5 * h); + this.shape = new _SvgShape().M(x + rx, y).L(x + w - rx, y).A(rx, ry, 0, 0, 1, x + w, y + ry).L(x + w, y + h - ry).A(rx, ry, 0, 0, 1, x + w - rx, y + h).L(x + rx, y + h).A(rx, ry, 0, 0, 1, x, y + h - ry).L(x, y + ry).A(rx, ry, 0, 0, 1, x + rx, y).Z(); + } else { + this.shape = new _SvgShape().M(x, y).L(x + w, y).L(x + w, y + h).L(x, y + h).Z(); + } + } else { + this.shape = new _SvgShape(); + } + }; + var SvgElemCircle = function SvgElemCircle(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var cx = this.getLength('cx', this.getVWidth(), 0), + cy = this.getLength('cy', this.getVHeight(), 0), + r = this.getLength('r', this.getViewport(), 0); + if (r > 0) { + this.shape = new _SvgShape().M(cx + r, cy).A(r, r, 0, 0, 1, cx - r, cy).A(r, r, 0, 0, 1, cx + r, cy).Z(); + } else { + this.shape = new _SvgShape(); + } + }; + var SvgElemEllipse = function SvgElemEllipse(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var cx = this.getLength('cx', this.getVWidth(), 0), + cy = this.getLength('cy', this.getVHeight(), 0), + rx = this.getLength('rx', this.getVWidth(), 0), + ry = this.getLength('ry', this.getVHeight(), 0); + if (rx > 0 && ry > 0) { + this.shape = new _SvgShape().M(cx + rx, cy).A(rx, ry, 0, 0, 1, cx - rx, cy).A(rx, ry, 0, 0, 1, cx + rx, cy).Z(); + } else { + this.shape = new _SvgShape(); + } + }; + var SvgElemLine = function SvgElemLine(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var x1 = this.getLength('x1', this.getVWidth(), 0), + y1 = this.getLength('y1', this.getVHeight(), 0), + x2 = this.getLength('x2', this.getVWidth(), 0), + y2 = this.getLength('y2', this.getVHeight(), 0); + this.shape = new _SvgShape().M(x1, y1).L(x2, y2); + }; + var SvgElemPolyline = function SvgElemPolyline(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var points = this.getNumberList('points'); + this.shape = new _SvgShape(); + for (var i = 0; i < points.length - 1; i += 2) { + if (i === 0) { + this.shape.M(points[i], points[i + 1]); + } else { + this.shape.L(points[i], points[i + 1]); + } + } + if (points.error) { + warningCallback('SvgElemPolygon: unexpected string ' + points.error); + } + if (points.length % 2 === 1) { + warningCallback('SvgElemPolyline: uneven number of coordinates'); + } + }; + var SvgElemPolygon = function SvgElemPolygon(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + var points = this.getNumberList('points'); + this.shape = new _SvgShape(); + for (var i = 0; i < points.length - 1; i += 2) { + if (i === 0) { + this.shape.M(points[i], points[i + 1]); + } else { + this.shape.L(points[i], points[i + 1]); + } + } + this.shape.Z(); + if (points.error) { + warningCallback('SvgElemPolygon: unexpected string ' + points.error); + } + if (points.length % 2 === 1) { + warningCallback('SvgElemPolygon: uneven number of coordinates'); + } + }; + var SvgElemPath = function SvgElemPath(obj, inherits) { + SvgElemBasicShape.call(this, obj, inherits); + this.shape = new _SvgShape().path(this.attr('d')); + var pathLength = this.getLength('pathLength', this.getViewport()); + this.pathLength = pathLength > 0 ? pathLength : undefined; + this.dashScale = this.pathLength !== undefined ? this.shape.totalLength / this.pathLength : 1; + }; + var SvgElemMarker = function SvgElemMarker(obj, inherits) { + SvgElemHasChildren.call(this, obj, inherits); + var width = this.getLength('markerWidth', this.getParentVWidth(), 3), + height = this.getLength('markerHeight', this.getParentVHeight(), 3), + viewBox = this.getViewbox('viewBox', [0, 0, width, height]); + this.getVWidth = function () { + return viewBox[2]; + }; + this.getVHeight = function () { + return viewBox[3]; + }; + this.drawMarker = function (isClip, isMask, posArray, strokeWidth) { + doc.save(); + var orient = this.attr('orient'), + units = this.attr('markerUnits'), + rotate = orient === 'auto' ? posArray[2] : (parseFloat(orient) || 0) * Math.PI / 180, + scale = units === 'userSpaceOnUse' ? 1 : strokeWidth; + doc.transform(Math.cos(rotate) * scale, Math.sin(rotate) * scale, -Math.sin(rotate) * scale, Math.cos(rotate) * scale, posArray[0], posArray[1]); + var refX = this.getLength('refX', this.getVWidth(), 0), + refY = this.getLength('refY', this.getVHeight(), 0), + aspectRatioMatrix = parseAspectRatio(this.attr('preserveAspectRatio'), width, height, viewBox[2], viewBox[3], 0.5); + if (this.get('overflow') === 'hidden') { + doc.rect(aspectRatioMatrix[0] * (viewBox[0] + viewBox[2] / 2 - refX) - width / 2, aspectRatioMatrix[3] * (viewBox[1] + viewBox[3] / 2 - refY) - height / 2, width, height).clip(); + } + doc.transform.apply(doc, aspectRatioMatrix); + doc.translate(-refX, -refY); + var group; + if (this.get('opacity') < 1 && !isClip) { + group = docBeginGroup(getPageBBox()); + } + this.drawChildren(isClip, isMask); + if (group) { + docEndGroup(group); + doc.fillOpacity(this.get('opacity')); + docInsertGroup(group); + } + doc.restore(); + }; + }; + var SvgElemClipPath = function SvgElemClipPath(obj, inherits) { + SvgElemHasChildren.call(this, obj, inherits); + this.useMask = function (bBox) { + var group = docBeginGroup(getPageBBox()); + doc.save(); + if (this.attr('clipPathUnits') === 'objectBoundingBox') { + doc.transform(bBox[2] - bBox[0], 0, 0, bBox[3] - bBox[1], bBox[0], bBox[1]); + } + this.clip(); + this.drawChildren(true, false); + doc.restore(); + docEndGroup(group); + docApplyMask(group, true); + }; + }; + var SvgElemMask = function SvgElemMask(obj, inherits) { + SvgElemHasChildren.call(this, obj, inherits); + this.useMask = function (bBox) { + var group = docBeginGroup(getPageBBox()); + doc.save(); + var x, y, w, h; + if (this.attr('maskUnits') === 'userSpaceOnUse') { + x = this.getLength('x', this.getVWidth(), -0.1 * (bBox[2] - bBox[0]) + bBox[0]); + y = this.getLength('y', this.getVHeight(), -0.1 * (bBox[3] - bBox[1]) + bBox[1]); + w = this.getLength('width', this.getVWidth(), 1.2 * (bBox[2] - bBox[0])); + h = this.getLength('height', this.getVHeight(), 1.2 * (bBox[3] - bBox[1])); + } else { + x = this.getLength('x', this.getVWidth(), -0.1) * (bBox[2] - bBox[0]) + bBox[0]; + y = this.getLength('y', this.getVHeight(), -0.1) * (bBox[3] - bBox[1]) + bBox[1]; + w = this.getLength('width', this.getVWidth(), 1.2) * (bBox[2] - bBox[0]); + h = this.getLength('height', this.getVHeight(), 1.2) * (bBox[3] - bBox[1]); + } + doc.rect(x, y, w, h).clip(); + if (this.attr('maskContentUnits') === 'objectBoundingBox') { + doc.transform(bBox[2] - bBox[0], 0, 0, bBox[3] - bBox[1], bBox[0], bBox[1]); + } + this.clip(); + this.drawChildren(false, true); + doc.restore(); + docEndGroup(group); + docApplyMask(group, true); + }; + }; + var SvgElemTextContainer = function SvgElemTextContainer(obj, inherits) { + SvgElemStylable.call(this, obj, inherits); + this.allowedChildren = ['tspan', '#text', '#cdata-section', 'a']; + this.isText = true; + this.getBoundingShape = function () { + var shape = new _SvgShape(); + for (var i = 0; i < this._pos.length; i++) { + var pos = this._pos[i]; + if (!pos.hidden) { + var dx0 = pos.ascent * Math.sin(pos.rotate), + dy0 = -pos.ascent * Math.cos(pos.rotate), + dx1 = pos.descent * Math.sin(pos.rotate), + dy1 = -pos.descent * Math.cos(pos.rotate), + dx2 = pos.width * Math.cos(pos.rotate), + dy2 = pos.width * Math.sin(pos.rotate); + shape.M(pos.x + dx0, pos.y + dy0).L(pos.x + dx0 + dx2, pos.y + dy0 + dy2).M(pos.x + dx1 + dx2, pos.y + dy1 + dy2).L(pos.x + dx1, pos.y + dy1); + } + } + return shape; + }; + this.drawTextInDocument = function (isClip, isMask) { + if (this.link && !isClip && !isMask) { + this.addLink(); + } + if (this.get('text-decoration') === 'underline') { + this.decorate(0.05 * this._font.size, -0.075 * this._font.size, isClip, isMask); + } + if (this.get('text-decoration') === 'overline') { + this.decorate(0.05 * this._font.size, getAscent(this._font.font, this._font.size) + 0.075 * this._font.size, isClip, isMask); + } + var fill = this.getFill(isClip, isMask), + stroke = this.getStroke(isClip, isMask), + strokeWidth = this.get('stroke-width'); + if (this._font.fauxBold) { + if (!stroke) { + stroke = fill; + strokeWidth = this._font.size * 0.03; + } else { + strokeWidth += this._font.size * 0.03; + } + } + var children = this.getChildren(); + for (var i = 0; i < children.length; i++) { + var childElem = children[i]; + switch (childElem.name) { + case 'tspan': + case 'textPath': + case 'a': + if (childElem.get('display') !== 'none') { + childElem.drawTextInDocument(isClip, isMask); + } + break; + case '#text': + case '#cdata-section': + if (this.get('visibility') === 'hidden') { + continue; + } + if (fill || stroke || isClip) { + if (fill) { + docFillColor(fill); + } + if (stroke && strokeWidth) { + docStrokeColor(stroke); + doc.lineWidth(strokeWidth).miterLimit(this.get('stroke-miterlimit')).lineJoin(this.get('stroke-linejoin')).lineCap(this.get('stroke-linecap')).dash(this.get('stroke-dasharray'), { + phase: this.get('stroke-dashoffset') + }); + } + docBeginText(this._font.font, this._font.size); + docSetTextMode(!!fill, !!stroke); + for (var j = 0, pos = childElem._pos; j < pos.length; j++) { + if (!pos[j].hidden && isNotEqual(pos[j].width, 0)) { + var cos = Math.cos(pos[j].rotate), + sin = Math.sin(pos[j].rotate), + skew = this._font.fauxItalic ? -0.25 : 0; + docSetTextMatrix(cos * pos[j].scale, sin * pos[j].scale, cos * skew - sin, sin * skew + cos, pos[j].x, pos[j].y); + docWriteGlyph(pos[j].glyph); + } + } + docEndText(); + } + break; + } + } + if (this.get('text-decoration') === 'line-through') { + this.decorate(0.05 * this._font.size, 0.5 * (getAscent(this._font.font, this._font.size) + getDescent(this._font.font, this._font.size)), isClip, isMask); + } + }; + this.decorate = function (lineWidth, linePosition, isClip, isMask) { + var fill = this.getFill(isClip, isMask), + stroke = this.getStroke(isClip, isMask); + if (fill) { + docFillColor(fill); + } + if (stroke) { + docStrokeColor(stroke); + doc.lineWidth(this.get('stroke-width')).miterLimit(this.get('stroke-miterlimit')).lineJoin(this.get('stroke-linejoin')).lineCap(this.get('stroke-linecap')).dash(this.get('stroke-dasharray'), { + phase: this.get('stroke-dashoffset') + }); + } + for (var j = 0, pos = this._pos; j < pos.length; j++) { + if (!pos[j].hidden && isNotEqual(pos[j].width, 0)) { + var dx0 = (linePosition + lineWidth / 2) * Math.sin(pos[j].rotate), + dy0 = -(linePosition + lineWidth / 2) * Math.cos(pos[j].rotate), + dx1 = (linePosition - lineWidth / 2) * Math.sin(pos[j].rotate), + dy1 = -(linePosition - lineWidth / 2) * Math.cos(pos[j].rotate), + dx2 = pos[j].width * Math.cos(pos[j].rotate), + dy2 = pos[j].width * Math.sin(pos[j].rotate); + new _SvgShape().M(pos[j].x + dx0, pos[j].y + dy0).L(pos[j].x + dx0 + dx2, pos[j].y + dy0 + dy2).L(pos[j].x + dx1 + dx2, pos[j].y + dy1 + dy2).L(pos[j].x + dx1, pos[j].y + dy1).Z().insertInDocument(); + if (fill && stroke) { + doc.fillAndStroke(); + } else if (fill) { + doc.fill(); + } else if (stroke) { + doc.stroke(); + } + } + } + }; + }; + var SvgElemTextNode = function SvgElemTextNode(obj, inherits) { + this.name = obj.nodeName; + this.textContent = obj.nodeValue; + }; + var SvgElemTspan = function SvgElemTspan(obj, inherits) { + SvgElemTextContainer.call(this, obj, inherits); + }; + var SvgElemTextPath = function SvgElemTextPath(obj, inherits) { + SvgElemTextContainer.call(this, obj, inherits); + var pathObject, pathLength, temp; + if ((temp = this.attr('path')) && temp.trim() !== '') { + var _pathLength = this.getLength('pathLength', this.getViewport()); + this.pathObject = new _SvgShape().path(temp); + this.pathLength = _pathLength > 0 ? _pathLength : this.pathObject.totalLength; + this.pathScale = this.pathObject.totalLength / this.pathLength; + } else if ((temp = this.getUrl('href') || this.getUrl('xlink:href')) && temp.nodeName === 'path') { + var pathElem = new SvgElemPath(temp, this); + this.pathObject = pathElem.shape.clone().transform(pathElem.get('transform')); + this.pathLength = this.chooseValue(pathElem.pathLength, this.pathObject.totalLength); + this.pathScale = this.pathObject.totalLength / this.pathLength; + } + }; + var SvgElemText = function SvgElemText(obj, inherits) { + SvgElemTextContainer.call(this, obj, inherits); + this.allowedChildren = ['textPath', 'tspan', '#text', '#cdata-section', 'a']; + (function (textParentElem) { + var processedText = '', + remainingText = obj.textContent, + textPaths = [], + currentChunk = [], + currentAnchor, + currentDirection, + currentX = 0, + currentY = 0; + function doAnchoring() { + if (currentChunk.length) { + var last = currentChunk[currentChunk.length - 1]; + var first = currentChunk[0]; + var width = last.x + last.width - first.x; + var anchordx = { + 'startltr': 0, + 'middleltr': 0.5, + 'endltr': 1, + 'startrtl': 1, + 'middlertl': 0.5, + 'endrtl': 0 + }[currentAnchor + currentDirection] * width || 0; + for (var i = 0; i < currentChunk.length; i++) { + currentChunk[i].x -= anchordx; + } + } + currentChunk = []; + } + function adjustLength(pos, length, spacingAndGlyphs) { + var firstChar = pos[0], + lastChar = pos[pos.length - 1], + startX = firstChar.x, + endX = lastChar.x + lastChar.width; + if (spacingAndGlyphs) { + var textScale = length / (endX - startX); + if (textScale > 0 && textScale < Infinity) { + for (var j = 0; j < pos.length; j++) { + pos[j].x = startX + textScale * (pos[j].x - startX); + pos[j].scale *= textScale; + pos[j].width *= textScale; + } + } + } else { + if (pos.length >= 2) { + var spaceDiff = (length - (endX - startX)) / (pos.length - 1); + for (var _j4 = 0; _j4 < pos.length; _j4++) { + pos[_j4].x += _j4 * spaceDiff; + } + } + } + currentX += length - (endX - startX); + } + function recursive(currentElem, parentElem) { + currentElem._x = combineArrays(currentElem.getLengthList('x', currentElem.getVWidth()), parentElem ? parentElem._x.slice(parentElem._pos.length) : []); + currentElem._y = combineArrays(currentElem.getLengthList('y', currentElem.getVHeight()), parentElem ? parentElem._y.slice(parentElem._pos.length) : []); + currentElem._dx = combineArrays(currentElem.getLengthList('dx', currentElem.getVWidth()), parentElem ? parentElem._dx.slice(parentElem._pos.length) : []); + currentElem._dy = combineArrays(currentElem.getLengthList('dy', currentElem.getVHeight()), parentElem ? parentElem._dy.slice(parentElem._pos.length) : []); + currentElem._rot = combineArrays(currentElem.getNumberList('rotate'), parentElem ? parentElem._rot.slice(parentElem._pos.length) : []); + currentElem._defRot = currentElem.chooseValue(currentElem._rot[currentElem._rot.length - 1], parentElem && parentElem._defRot, 0); + if (currentElem.name === 'textPath') { + currentElem._y = []; + } + var fontOptions = { + fauxItalic: false, + fauxBold: false + }, + fontNameorLink = fontCallback(currentElem.get('font-family'), currentElem.get('font-weight') === 'bold', currentElem.get('font-style') === 'italic', fontOptions); + try { + doc.font(fontNameorLink); + } catch (e) { + warningCallback('SVGElemText: failed to open font "' + fontNameorLink + '" in PDFKit'); + } + currentElem._pos = []; + currentElem._index = 0; + currentElem._font = { + font: doc._font, + size: currentElem.get('font-size'), + fauxItalic: fontOptions.fauxItalic, + fauxBold: fontOptions.fauxBold + }; + var textLength = currentElem.getLength('textLength', currentElem.getVWidth(), undefined), + spacingAndGlyphs = currentElem.attr('lengthAdjust') === 'spacingAndGlyphs', + wordSpacing = currentElem.get('word-spacing'), + letterSpacing = currentElem.get('letter-spacing'), + textAnchor = currentElem.get('text-anchor'), + textDirection = currentElem.get('direction'), + baseline = getBaseline(currentElem._font.font, currentElem._font.size, currentElem.get('alignment-baseline') || currentElem.get('dominant-baseline'), currentElem.get('baseline-shift')); + if (currentElem.name === 'textPath') { + doAnchoring(); + currentX = currentY = 0; + } + var children = currentElem.getChildren(); + for (var i = 0; i < children.length; i++) { + var childElem = children[i]; + switch (childElem.name) { + case 'tspan': + case 'textPath': + case 'a': + recursive(childElem, currentElem); + break; + case '#text': + case '#cdata-section': + var rawText = childElem.textContent, + renderedText = rawText, + words = void 0; + childElem._font = currentElem._font; + childElem._pos = []; + remainingText = remainingText.substring(rawText.length); + if (currentElem.get('xml:space') === 'preserve') { + renderedText = renderedText.replace(/[\s]/g, ' '); + } else { + renderedText = renderedText.replace(/[\s]+/g, ' '); + if (processedText.match(/[\s]$|^$/)) { + renderedText = renderedText.replace(/^[\s]/, ''); + } + if (remainingText.match(/^[\s]*$/)) { + renderedText = renderedText.replace(/[\s]$/, ''); + } + } + processedText += rawText; + if (wordSpacing === 0) { + words = [renderedText]; + } else { + words = renderedText.split(/(\s)/); + } + for (var w = 0; w < words.length; w++) { + var pos = getTextPos(currentElem._font.font, currentElem._font.size, words[w]); + for (var j = 0; j < pos.length; j++) { + var index = currentElem._index, + xAttr = currentElem._x[index], + yAttr = currentElem._y[index], + dxAttr = currentElem._dx[index], + dyAttr = currentElem._dy[index], + rotAttr = currentElem._rot[index], + continuous = !(w === 0 && j === 0); + if (xAttr !== undefined) { + continuous = false; + doAnchoring(); + currentX = xAttr; + } + if (yAttr !== undefined) { + continuous = false; + doAnchoring(); + currentY = yAttr; + } + if (dxAttr !== undefined) { + continuous = false; + currentX += dxAttr; + } + if (dyAttr !== undefined) { + continuous = false; + currentY += dyAttr; + } + if (rotAttr !== undefined || currentElem._defRot !== 0) { + continuous = false; + } + var position = { + glyph: pos[j].glyph, + rotate: Math.PI / 180 * currentElem.chooseValue(rotAttr, currentElem._defRot), + x: currentX + pos[j].xOffset, + y: currentY + baseline + pos[j].yOffset, + width: pos[j].width, + ascent: getAscent(currentElem._font.font, currentElem._font.size), + descent: getDescent(currentElem._font.font, currentElem._font.size), + scale: 1, + hidden: false, + continuous: continuous + }; + currentChunk.push(position); + childElem._pos.push(position); + currentElem._pos.push(position); + currentElem._index += pos[j].unicode.length; + if (currentChunk.length === 1) { + currentAnchor = textAnchor; + currentDirection = textDirection; + } + currentX += pos[j].xAdvance + letterSpacing; + currentY += pos[j].yAdvance; + } + if (words[w] === ' ') { + currentX += wordSpacing; + } + } + break; + default: + remainingText = remainingText.substring(childElem.textContent.length); + } + } + if (textLength && currentElem._pos.length) { + adjustLength(currentElem._pos, textLength, spacingAndGlyphs); + } + if (currentElem.name === 'textPath' || currentElem.name === 'text') { + doAnchoring(); + } + if (currentElem.name === 'textPath') { + textPaths.push(currentElem); + var pathObject = currentElem.pathObject; + if (pathObject) { + currentX = pathObject.endPoint[0]; + currentY = pathObject.endPoint[1]; + } + } + if (parentElem) { + parentElem._pos = parentElem._pos.concat(currentElem._pos); + parentElem._index += currentElem._index; + } + } + function textOnPath(currentElem) { + var pathObject = currentElem.pathObject, + pathLength = currentElem.pathLength, + pathScale = currentElem.pathScale; + if (pathObject) { + var textOffset = currentElem.getLength('startOffset', pathLength, 0); + for (var j = 0; j < currentElem._pos.length; j++) { + var charMidX = textOffset + currentElem._pos[j].x + 0.5 * currentElem._pos[j].width; + if (charMidX > pathLength || charMidX < 0) { + currentElem._pos[j].hidden = true; + } else { + var pointOnPath = pathObject.getPointAtLength(charMidX * pathScale); + if (isNotEqual(pathScale, 1)) { + currentElem._pos[j].scale *= pathScale; + currentElem._pos[j].width *= pathScale; + } + currentElem._pos[j].x = pointOnPath[0] - 0.5 * currentElem._pos[j].width * Math.cos(pointOnPath[2]) - currentElem._pos[j].y * Math.sin(pointOnPath[2]); + currentElem._pos[j].y = pointOnPath[1] - 0.5 * currentElem._pos[j].width * Math.sin(pointOnPath[2]) + currentElem._pos[j].y * Math.cos(pointOnPath[2]); + currentElem._pos[j].rotate = pointOnPath[2] + currentElem._pos[j].rotate; + currentElem._pos[j].continuous = false; + } + } + } else { + for (var _j5 = 0; _j5 < currentElem._pos.length; _j5++) { + currentElem._pos[_j5].hidden = true; + } + } + } + recursive(textParentElem, null); + for (var i = 0; i < textPaths.length; i++) { + textOnPath(textPaths[i]); + } + })(this); + this.getTransformation = function () { + return this.get('transform'); + }; + this.drawInDocument = function (isClip, isMask) { + doc.save(); + this.transform(); + this.clip(); + var masked = this.mask(), + group; + if (masked) { + group = docBeginGroup(getPageBBox()); + } + this.drawTextInDocument(isClip, isMask); + if (group) { + docEndGroup(group); + docInsertGroup(group); + } + doc.restore(); + }; + }; + options = options || {}; + var pxToPt = options.assumePt ? 1 : 72 / 96, + // 1px = 72/96pt, but only if assumePt is false + viewportWidth = (options.width || doc.page.width) / pxToPt, + viewportHeight = (options.height || doc.page.height) / pxToPt, + preserveAspectRatio = options.preserveAspectRatio || null, + // default to null so that the attr can override if not passed + useCSS = options.useCSS && typeof SVGElement !== 'undefined' && svg instanceof SVGElement && typeof getComputedStyle === 'function', + warningCallback = options.warningCallback, + fontCallback = options.fontCallback, + imageCallback = options.imageCallback, + colorCallback = options.colorCallback, + documentCallback = options.documentCallback, + precision = Math.ceil(Math.max(1, options.precision)) || 3, + groupStack = [], + documentCache = {}, + links = [], + styleRules = []; + if (typeof warningCallback !== 'function') { + warningCallback = function warningCallback(str) { + if (typeof console !== undefined && typeof console.warn === 'function') { + console.warn(str); + } + }; + } + if (typeof fontCallback !== 'function') { + fontCallback = function fontCallback(family, bold, italic, fontOptions) { + // Check if the font is already registered in the document + if (bold && italic) { + if (doc._registeredFonts.hasOwnProperty(family + '-BoldItalic')) { + return family + '-BoldItalic'; + } else if (doc._registeredFonts.hasOwnProperty(family + '-Italic')) { + fontOptions.fauxBold = true; + return family + '-Italic'; + } else if (doc._registeredFonts.hasOwnProperty(family + '-Bold')) { + fontOptions.fauxItalic = true; + return family + '-Bold'; + } else if (doc._registeredFonts.hasOwnProperty(family)) { + fontOptions.fauxBold = true; + fontOptions.fauxItalic = true; + return family; + } + } + if (bold && !italic) { + if (doc._registeredFonts.hasOwnProperty(family + '-Bold')) { + return family + '-Bold'; + } else if (doc._registeredFonts.hasOwnProperty(family)) { + fontOptions.fauxBold = true; + return family; + } + } + if (!bold && italic) { + if (doc._registeredFonts.hasOwnProperty(family + '-Italic')) { + return family + '-Italic'; + } else if (doc._registeredFonts.hasOwnProperty(family)) { + fontOptions.fauxItalic = true; + return family; + } + } + if (!bold && !italic) { + if (doc._registeredFonts.hasOwnProperty(family)) { + return family; + } + } + // Use standard fonts as fallback + if (family.match(/(?:^|,)\s*serif\s*$/)) { + if (bold && italic) { + return 'Times-BoldItalic'; + } + if (bold && !italic) { + return 'Times-Bold'; + } + if (!bold && italic) { + return 'Times-Italic'; + } + if (!bold && !italic) { + return 'Times-Roman'; + } + } else if (family.match(/(?:^|,)\s*monospace\s*$/)) { + if (bold && italic) { + return 'Courier-BoldOblique'; + } + if (bold && !italic) { + return 'Courier-Bold'; + } + if (!bold && italic) { + return 'Courier-Oblique'; + } + if (!bold && !italic) { + return 'Courier'; + } + } else if (family.match(/(?:^|,)\s*sans-serif\s*$/) || true) { + if (bold && italic) { + return 'Helvetica-BoldOblique'; + } + if (bold && !italic) { + return 'Helvetica-Bold'; + } + if (!bold && italic) { + return 'Helvetica-Oblique'; + } + if (!bold && !italic) { + return 'Helvetica'; + } + } + }; + } + if (typeof imageCallback !== 'function') { + imageCallback = function imageCallback(link) { + return link.replace(/\s+/g, ''); + }; + } + if (typeof colorCallback !== 'function') { + colorCallback = null; + } else { + for (var color in DefaultColors) { + var newColor = colorCallback(DefaultColors[color]); + DefaultColors[color][0] = newColor[0]; + DefaultColors[color][1] = newColor[1]; + } + } + if (typeof documentCallback !== 'function') { + documentCallback = null; + } + if (typeof svg === 'string') { + svg = parseXml(svg); + } + if (svg) { + var styles = svg.getElementsByTagName('style'); + for (var i = 0; i < styles.length; i++) { + styleRules = styleRules.concat(parseStyleSheet(styles[i].textContent)); + } + var elem = createSVGElement(svg, null); + if (typeof elem.drawInDocument === 'function') { + if (options.useCSS && !useCSS) { + warningCallback('SVGtoPDF: useCSS option can only be used for SVG *elements* in compatible browsers'); + } + var savedFillColor = doc._fillColor; + doc.save().translate(x || 0, y || 0).scale(pxToPt); + elem.drawInDocument(); + for (var _i8 = 0; _i8 < links.length; _i8++) { + doc.page.annotations.push(links[_i8]); + } + doc.restore(); + doc._fillColor = savedFillColor; + } else { + warningCallback('SVGtoPDF: this element can\'t be rendered directly: ' + svg.nodeName); + } + } else { + warningCallback('SVGtoPDF: the input does not look like a valid SVG'); + } +}; +if ( true && module && typeof module.exports !== 'undefined') { + module.exports = SVGtoPDF; +} + +/***/ }), + +/***/ 65300: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +__webpack_require__(49063); +__webpack_require__(97514); +__webpack_require__(11765); +__webpack_require__(81755); +__webpack_require__(80055); +__webpack_require__(20731); +__webpack_require__(7283); +__webpack_require__(18756); +__webpack_require__(37309); +__webpack_require__(14032); +__webpack_require__(76014); +__webpack_require__(58281); +__webpack_require__(28356); +__webpack_require__(42437); +__webpack_require__(94712); +var TraversalTracker = __webpack_require__(2318); +var DocPreprocessor = __webpack_require__(98883); +var DocMeasure = __webpack_require__(42526); +var DocumentContext = __webpack_require__(79178); +var PageElementWriter = __webpack_require__(11220); +var ColumnCalculator = __webpack_require__(77530); +var TableProcessor = __webpack_require__(89836); +var Line = __webpack_require__(70770); +var isString = (__webpack_require__(91867).isString); +var isArray = (__webpack_require__(91867).isArray); +var isUndefined = (__webpack_require__(91867).isUndefined); +var isNull = (__webpack_require__(91867).isNull); +var pack = (__webpack_require__(91867).pack); +var offsetVector = (__webpack_require__(91867).offsetVector); +var fontStringify = (__webpack_require__(91867).fontStringify); +var getNodeId = (__webpack_require__(91867).getNodeId); +var isFunction = (__webpack_require__(91867).isFunction); +var TextTools = __webpack_require__(11548); +var StyleContextStack = __webpack_require__(76442); +var isNumber = (__webpack_require__(91867).isNumber); +var accessibilityMetadata = __webpack_require__(16799); +function addAll(target, otherArray) { + otherArray.forEach(function (item) { + target.push(item); + }); +} + +/** + * Checks whether a list item (or any node) contains a nested list (ul or ol), + * including when wrapped in a stack or columns. + */ +function _itemContainsList(node) { + if (!node) { + return false; + } + if (node.ul || node.ol) { + return true; + } + if (node.stack) { + for (var i = 0; i < node.stack.length; i++) { + if (_itemContainsList(node.stack[i])) { + return true; + } + } + } + if (node.columns) { + for (var j = 0; j < node.columns.length; j++) { + if (_itemContainsList(node.columns[j])) { + return true; + } + } + } + return false; +} + +/** + * Creates an instance of LayoutBuilder - layout engine which turns document-definition-object + * into a set of pages, lines, inlines and vectors ready to be rendered into a PDF + * + * @param {Object} pageSize - an object defining page width and height + * @param {Object} pageMargins - an object defining top, left, right and bottom margins + */ +function LayoutBuilder(pageSize, pageMargins, imageMeasure, svgMeasure) { + this.pageSize = pageSize; + this.pageMargins = pageMargins; + this.tracker = new TraversalTracker(); + this.imageMeasure = imageMeasure; + this.svgMeasure = svgMeasure; + this.tableLayouts = {}; + this.nestedLevel = 0; + + // Accessibility context tracking + this._accessibilityListStack = []; + this._accessibilityTableContext = null; +} +LayoutBuilder.prototype.registerTableLayouts = function (tableLayouts) { + this.tableLayouts = pack(this.tableLayouts, tableLayouts); +}; + +/** + * Executes layout engine on document-definition-object and creates an array of pages + * containing positioned Blocks, Lines and inlines + * + * @param {Object} docStructure document-definition-object + * @param {Object} fontProvider font provider + * @param {Object} styleDictionary dictionary with style definitions + * @param {Object} defaultStyle default style definition + * @return {Array} an array of pages + */ +LayoutBuilder.prototype.layoutDocument = function (docStructure, fontProvider, styleDictionary, defaultStyle, background, header, footer, images, watermark, pageBreakBeforeFct) { + function addPageBreaksIfNecessary(linearNodeList, pages) { + if (!isFunction(pageBreakBeforeFct)) { + return false; + } + var hasRenderableContent = function hasRenderableContent(node) { + if (!node || node.positions.length === 0) { + return false; + } + if (node.text === '' && !node.listMarker) { + return false; + } + return true; + }; + linearNodeList = linearNodeList.filter(hasRenderableContent); + linearNodeList.forEach(function (node) { + var nodeInfo = {}; + ['id', 'text', 'ul', 'ol', 'table', 'image', 'qr', 'canvas', 'svg', 'columns', 'headlineLevel', 'style', 'pageBreak', 'pageOrientation', 'width', 'height'].forEach(function (key) { + if (node[key] !== undefined) { + nodeInfo[key] = node[key]; + } + }); + nodeInfo.startPosition = node.positions[0]; + nodeInfo.pageNumbers = Array.from(new Set(node.positions.map(function (node) { + return node.pageNumber; + }))); + nodeInfo.pages = pages.length; + nodeInfo.stack = isArray(node.stack); + node.nodeInfo = nodeInfo; + }); + for (var index = 0; index < linearNodeList.length; index++) { + var node = linearNodeList[index]; + if (node.pageBreak !== 'before' && !node.pageBreakCalculated) { + node.pageBreakCalculated = true; + var pageNumber = node.nodeInfo.pageNumbers[0]; + var followingNodesOnPage = []; + var nodesOnNextPage = []; + var previousNodesOnPage = []; + if (pageBreakBeforeFct.length > 1) { + for (var ii = index + 1, l = linearNodeList.length; ii < l; ii++) { + if (linearNodeList[ii].nodeInfo.pageNumbers.indexOf(pageNumber) > -1) { + followingNodesOnPage.push(linearNodeList[ii].nodeInfo); + } + if (pageBreakBeforeFct.length > 2 && linearNodeList[ii].nodeInfo.pageNumbers.indexOf(pageNumber + 1) > -1) { + nodesOnNextPage.push(linearNodeList[ii].nodeInfo); + } + } + } + if (pageBreakBeforeFct.length > 3) { + for (var ii = 0; ii < index; ii++) { + if (linearNodeList[ii].nodeInfo.pageNumbers.indexOf(pageNumber) > -1) { + previousNodesOnPage.push(linearNodeList[ii].nodeInfo); + } + } + } + if (pageBreakBeforeFct(node.nodeInfo, followingNodesOnPage, nodesOnNextPage, previousNodesOnPage)) { + node.pageBreak = 'before'; + return true; + } + } + } + return false; + } + this.docPreprocessor = new DocPreprocessor(); + this.docMeasure = new DocMeasure(fontProvider, styleDictionary, defaultStyle, this.imageMeasure, this.svgMeasure, this.tableLayouts, images); + function resetXYs(result) { + result.linearNodeList.forEach(function (node) { + node.resetXY(); + }); + } + var result = this.tryLayoutDocument(docStructure, fontProvider, styleDictionary, defaultStyle, background, header, footer, images, watermark); + while (addPageBreaksIfNecessary(result.linearNodeList, result.pages)) { + resetXYs(result); + result = this.tryLayoutDocument(docStructure, fontProvider, styleDictionary, defaultStyle, background, header, footer, images, watermark); + } + return result.pages; +}; +LayoutBuilder.prototype.tryLayoutDocument = function (docStructure, fontProvider, styleDictionary, defaultStyle, background, header, footer, images, watermark, pageBreakBeforeFct) { + this.linearNodeList = []; + docStructure = this.docPreprocessor.preprocessDocument(docStructure); + docStructure = this.docMeasure.measureDocument(docStructure); + this.writer = new PageElementWriter(new DocumentContext(this.pageSize, this.pageMargins), this.tracker); + var _this = this; + this.writer.context().tracker.startTracking('pageAdded', function () { + _this.addBackground(background); + }); + this.addBackground(background); + this.processNode(docStructure); + this.addHeadersAndFooters(header, footer); + if (watermark != null) { + this.addWatermark(watermark, fontProvider, defaultStyle); + } + return { + pages: this.writer.context().pages, + linearNodeList: this.linearNodeList + }; +}; +LayoutBuilder.prototype.addBackground = function (background) { + var backgroundGetter = isFunction(background) ? background : function () { + return background; + }; + var context = this.writer.context(); + var pageSize = context.getCurrentPage().pageSize; + var pageBackground = backgroundGetter(context.page + 1, pageSize); + if (pageBackground) { + this.writer.beginUnbreakableBlock(pageSize.width, pageSize.height); + pageBackground = this.docPreprocessor.preprocessDocument(pageBackground); + this.processNode(this.docMeasure.measureDocument(pageBackground)); + this.writer.commitUnbreakableBlock(0, 0); + context.backgroundLength[context.page] += pageBackground.positions.length; + } +}; +LayoutBuilder.prototype.addStaticRepeatable = function (headerOrFooter, sizeFunction) { + this.addDynamicRepeatable(function () { + return JSON.parse(JSON.stringify(headerOrFooter)); // copy to new object + }, sizeFunction); +}; +LayoutBuilder.prototype.addDynamicRepeatable = function (nodeGetter, sizeFunction) { + var pages = this.writer.context().pages; + for (var pageIndex = 0, l = pages.length; pageIndex < l; pageIndex++) { + this.writer.context().page = pageIndex; + var node = nodeGetter(pageIndex + 1, l, this.writer.context().pages[pageIndex].pageSize); + if (node) { + var sizes = sizeFunction(this.writer.context().getCurrentPage().pageSize, this.pageMargins); + this.writer.beginUnbreakableBlock(sizes.width, sizes.height); + node = this.docPreprocessor.preprocessDocument(node); + this.processNode(this.docMeasure.measureDocument(node)); + this.writer.commitUnbreakableBlock(sizes.x, sizes.y); + } + } +}; +LayoutBuilder.prototype.addHeadersAndFooters = function (header, footer) { + var headerSizeFct = function headerSizeFct(pageSize, pageMargins) { + return { + x: 0, + y: 0, + width: pageSize.width, + height: pageMargins.top + }; + }; + var footerSizeFct = function footerSizeFct(pageSize, pageMargins) { + return { + x: 0, + y: pageSize.height - pageMargins.bottom, + width: pageSize.width, + height: pageMargins.bottom + }; + }; + if (isFunction(header)) { + this.addDynamicRepeatable(header, headerSizeFct); + } else if (header) { + this.addStaticRepeatable(header, headerSizeFct); + } + if (isFunction(footer)) { + this.addDynamicRepeatable(footer, footerSizeFct); + } else if (footer) { + this.addStaticRepeatable(footer, footerSizeFct); + } +}; +LayoutBuilder.prototype.addWatermark = function (watermark, fontProvider, defaultStyle) { + if (isString(watermark)) { + watermark = { + 'text': watermark + }; + } + if (!watermark.text) { + // empty watermark text + return; + } + var pages = this.writer.context().pages; + for (var i = 0, l = pages.length; i < l; i++) { + pages[i].watermark = getWatermarkObject(Object.assign({}, watermark), pages[i].pageSize, fontProvider, defaultStyle); + } + function getWatermarkObject(watermark, pageSize, fontProvider, defaultStyle) { + watermark.font = watermark.font || defaultStyle.font || 'Roboto'; + watermark.fontSize = watermark.fontSize || 'auto'; + watermark.color = watermark.color || 'black'; + watermark.opacity = isNumber(watermark.opacity) ? watermark.opacity : 0.6; + watermark.bold = watermark.bold || false; + watermark.italics = watermark.italics || false; + watermark.angle = !isUndefined(watermark.angle) && !isNull(watermark.angle) ? watermark.angle : null; + if (watermark.angle === null) { + watermark.angle = Math.atan2(pageSize.height, pageSize.width) * -180 / Math.PI; + } + if (watermark.fontSize === 'auto') { + watermark.fontSize = getWatermarkFontSize(pageSize, watermark, fontProvider); + } + var watermarkObject = { + text: watermark.text, + font: fontProvider.provideFont(watermark.font, watermark.bold, watermark.italics), + fontSize: watermark.fontSize, + color: watermark.color, + opacity: watermark.opacity, + angle: watermark.angle + }; + watermarkObject._size = getWatermarkSize(watermark, fontProvider); + return watermarkObject; + } + function getWatermarkSize(watermark, fontProvider) { + var textTools = new TextTools(fontProvider); + var styleContextStack = new StyleContextStack(null, { + font: watermark.font, + bold: watermark.bold, + italics: watermark.italics + }); + styleContextStack.push({ + fontSize: watermark.fontSize + }); + var size = textTools.sizeOfString(watermark.text, styleContextStack); + var rotatedSize = textTools.sizeOfRotatedText(watermark.text, watermark.angle, styleContextStack); + return { + size: size, + rotatedSize: rotatedSize + }; + } + function getWatermarkFontSize(pageSize, watermark, fontProvider) { + var textTools = new TextTools(fontProvider); + var styleContextStack = new StyleContextStack(null, { + font: watermark.font, + bold: watermark.bold, + italics: watermark.italics + }); + var rotatedSize; + + /** + * Binary search the best font size. + * Initial bounds [0, 1000] + * Break when range < 1 + */ + var a = 0; + var b = 1000; + var c = (a + b) / 2; + while (Math.abs(a - b) > 1) { + styleContextStack.push({ + fontSize: c + }); + rotatedSize = textTools.sizeOfRotatedText(watermark.text, watermark.angle, styleContextStack); + if (rotatedSize.width > pageSize.width) { + b = c; + c = (a + b) / 2; + } else if (rotatedSize.width < pageSize.width) { + if (rotatedSize.height > pageSize.height) { + b = c; + c = (a + b) / 2; + } else { + a = c; + c = (a + b) / 2; + } + } + styleContextStack.pop(); + } + /* + End binary search + */ + return c; + } +}; +function decorateNode(node) { + var x = node.x, + y = node.y; + node.positions = []; + if (isArray(node.canvas)) { + node.canvas.forEach(function (vector) { + var x = vector.x, + y = vector.y, + x1 = vector.x1, + y1 = vector.y1, + x2 = vector.x2, + y2 = vector.y2; + vector.resetXY = function () { + vector.x = x; + vector.y = y; + vector.x1 = x1; + vector.y1 = y1; + vector.x2 = x2; + vector.y2 = y2; + }; + }); + } + node.resetXY = function () { + node.x = x; + node.y = y; + if (isArray(node.canvas)) { + node.canvas.forEach(function (vector) { + vector.resetXY(); + }); + } + }; +} +LayoutBuilder.prototype.processNode = function (node) { + var self = this; + this.linearNodeList.push(node); + decorateNode(node); + applyMargins(function () { + var unbreakable = node.unbreakable; + if (unbreakable) { + self.writer.beginUnbreakableBlock(); + } + var absPosition = node.absolutePosition; + if (absPosition) { + self.writer.context().beginDetachedBlock(); + self.writer.context().moveTo(absPosition.x || 0, absPosition.y || 0); + } + var relPosition = node.relativePosition; + if (relPosition) { + self.writer.context().beginDetachedBlock(); + self.writer.context().moveToRelative(relPosition.x || 0, relPosition.y || 0); + } + if (node.stack) { + self.processVerticalContainer(node); + } else if (node.columns) { + self.processColumns(node); + } else if (node.ul) { + self.processList(false, node); + } else if (node.ol) { + self.processList(true, node); + } else if (node.table) { + self.processTable(node); + } else if (node.text !== undefined) { + self.processLeaf(node); + } else if (node.toc) { + self.processToc(node); + } else if (node.image) { + self.processImage(node); + } else if (node.svg) { + self.processSVG(node); + } else if (node.canvas) { + self.processCanvas(node); + } else if (node.qr) { + self.processQr(node); + } else if (!node._span) { + throw 'Unrecognized document structure: ' + JSON.stringify(node, fontStringify); + } + if (absPosition || relPosition) { + self.writer.context().endDetachedBlock(); + } + if (unbreakable) { + self.writer.commitUnbreakableBlock(); + } + }); + function applyMargins(callback) { + var margin = node._margin; + if (node.pageBreak === 'before') { + self.writer.moveToNextPage(node.pageOrientation); + } else if (node.pageBreak === 'beforeOdd') { + self.writer.moveToNextPage(node.pageOrientation); + if ((self.writer.context().page + 1) % 2 === 1) { + self.writer.moveToNextPage(node.pageOrientation); + } + } else if (node.pageBreak === 'beforeEven') { + self.writer.moveToNextPage(node.pageOrientation); + if ((self.writer.context().page + 1) % 2 === 0) { + self.writer.moveToNextPage(node.pageOrientation); + } + } + var isDetachedBlock = node.relativePosition || node.absolutePosition; + + // Detached nodes have no margins, their position is only determined by 'x' and 'y' + if (margin && !isDetachedBlock) { + var availableHeight = self.writer.context().availableHeight; + // If top margin is bigger than available space, move to next page + // Necessary for nodes inside tables + if (availableHeight - margin[1] < 0) { + // Consume the whole available space + self.writer.context().moveDown(availableHeight); + self.writer.moveToNextPage(node.pageOrientation); + /** + * TODO - Something to consider: + * Right now the node starts at the top of next page (after header) + * Another option would be to apply just the top margin that has not been consumed in the page before + * It would something like: this.write.context().moveDown(margin[1] - availableHeight) + */ + } else { + self.writer.context().moveDown(margin[1]); + } + + // Apply lateral margins + self.writer.context().addMargin(margin[0], margin[2]); + } + callback(); + + // Detached nodes have no margins, their position is only determined by 'x' and 'y' + if (margin && !isDetachedBlock) { + var _availableHeight = self.writer.context().availableHeight; + // If bottom margin is bigger than available space, move to next page + // Necessary for nodes inside tables + if (_availableHeight - margin[3] < 0) { + self.writer.context().moveDown(_availableHeight); + self.writer.moveToNextPage(node.pageOrientation); + /** + * TODO - Something to consider: + * Right now next node starts at the top of next page (after header) + * Another option would be to apply the bottom margin that has not been consumed in the next page? + * It would something like: this.write.context().moveDown(margin[3] - availableHeight) + */ + } else { + self.writer.context().moveDown(margin[3]); + } + + // Apply lateral margins + self.writer.context().addMargin(-margin[0], -margin[2]); + } + if (node.pageBreak === 'after') { + self.writer.moveToNextPage(node.pageOrientation); + } else if (node.pageBreak === 'afterOdd') { + self.writer.moveToNextPage(node.pageOrientation); + if ((self.writer.context().page + 1) % 2 === 1) { + self.writer.moveToNextPage(node.pageOrientation); + } + } else if (node.pageBreak === 'afterEven') { + self.writer.moveToNextPage(node.pageOrientation); + if ((self.writer.context().page + 1) % 2 === 0) { + self.writer.moveToNextPage(node.pageOrientation); + } + } + } +}; + +// vertical container +LayoutBuilder.prototype.processVerticalContainer = function (node) { + var self = this; + node.stack.forEach(function (item) { + self.processNode(item); + addAll(node.positions, item.positions); + + //TODO: paragraph gap + }); +}; + +// columns +LayoutBuilder.prototype.processColumns = function (columnNode) { + this.nestedLevel++; + var columns = columnNode.columns; + var availableWidth = this.writer.context().availableWidth; + var gaps = gapArray(columnNode._gap); + if (gaps) { + availableWidth -= (gaps.length - 1) * columnNode._gap; + } + ColumnCalculator.buildColumnWidths(columns, availableWidth); + var result = this.processRow({ + marginX: columnNode._margin ? [columnNode._margin[0], columnNode._margin[2]] : [0, 0], + cells: columns, + widths: columns, + gaps: gaps + }); + addAll(columnNode.positions, result.positions); + this.nestedLevel--; + if (this.nestedLevel === 0) { + this.writer.context().resetMarginXTopParent(); + } + function gapArray(gap) { + if (!gap) { + return null; + } + var gaps = []; + gaps.push(0); + for (var i = columns.length - 1; i > 0; i--) { + gaps.push(gap); + } + return gaps; + } +}; + +/** + * Searches for a cell in the same row that starts a rowspan and is positioned immediately before the current cell. + * Alternatively, it finds a cell where the colspan initiating the rowspan extends to the cell just before the current one. + * + * @param {Array} arr - An array representing cells in a row. + * @param {number} i - The index of the current cell to search backward from. + * @returns {object|null} The starting cell of the rowspan if found; otherwise, `null`. + */ +LayoutBuilder.prototype._findStartingRowSpanCell = function (arr, i) { + var requiredColspan = 1; + for (var index = i - 1; index >= 0; index--) { + if (!arr[index]._span) { + if (arr[index].rowSpan > 1 && (arr[index].colSpan || 1) === requiredColspan) { + return arr[index]; + } else { + return null; + } + } + requiredColspan++; + } + return null; +}; + +/** + * Retrieves a page break description for a specified page from a list of page breaks. + * + * @param {Array} pageBreaks - An array of page break descriptions, each containing `prevPage` properties. + * @param {number} page - The page number to find the associated page break for. + * @returns {object|undefined} The page break description object for the specified page if found; otherwise, `undefined`. + */ +LayoutBuilder.prototype._getPageBreak = function (pageBreaks, page) { + return pageBreaks.find(function (desc) { + return desc.prevPage === page; + }); +}; +LayoutBuilder.prototype._getPageBreakListBySpan = function (tableNode, page, rowIndex) { + if (!tableNode || !tableNode._breaksBySpan) { + return null; + } + var breaksList = tableNode._breaksBySpan.filter(function (desc) { + return desc.prevPage === page && rowIndex <= desc.rowIndexOfSpanEnd; + }); + var y = Number.MAX_VALUE, + prevY = Number.MIN_VALUE; + breaksList.forEach(function (b) { + prevY = Math.max(b.prevY, prevY); + y = Math.min(b.y, y); + }); + return { + prevPage: page, + prevY: prevY, + y: y + }; +}; +LayoutBuilder.prototype._findSameRowPageBreakByRowSpanData = function (breaksBySpan, page, rowIndex) { + if (!breaksBySpan) { + return null; + } + return breaksBySpan.find(function (desc) { + return desc.prevPage === page && rowIndex === desc.rowIndexOfSpanEnd; + }); +}; +LayoutBuilder.prototype._updatePageBreaksData = function (pageBreaks, tableNode, rowIndex) { + var _this2 = this; + Object.keys(tableNode._bottomByPage).forEach(function (p) { + var page = Number(p); + var pageBreak = _this2._getPageBreak(pageBreaks, page); + if (pageBreak) { + pageBreak.prevY = Math.max(pageBreak.prevY, tableNode._bottomByPage[page]); + } + if (tableNode._breaksBySpan && tableNode._breaksBySpan.length > 0) { + var breaksBySpanList = tableNode._breaksBySpan.filter(function (pb) { + return pb.prevPage === page && rowIndex <= pb.rowIndexOfSpanEnd; + }); + if (breaksBySpanList && breaksBySpanList.length > 0) { + breaksBySpanList.forEach(function (b) { + b.prevY = Math.max(b.prevY, tableNode._bottomByPage[page]); + }); + } + } + }); +}; + +/** + * Resolves the Y-coordinates for a target object by comparing two break points. + * + * @param {object} break1 - The first break point with `prevY` and `y` properties. + * @param {object} break2 - The second break point with `prevY` and `y` properties. + * @param {object} target - The target object to be updated with resolved Y-coordinates. + * @property {number} target.prevY - Updated to the maximum `prevY` value between `break1` and `break2`. + * @property {number} target.y - Updated to the minimum `y` value between `break1` and `break2`. + */ +LayoutBuilder.prototype._resolveBreakY = function (break1, break2, target) { + target.prevY = Math.max(break1.prevY, break2.prevY); + target.y = Math.min(break1.y, break2.y); +}; +LayoutBuilder.prototype._storePageBreakData = function (data, startsRowSpan, pageBreaks, tableNode) { + var pageDesc; + var pageDescBySpan; + if (!startsRowSpan) { + pageDesc = this._getPageBreak(pageBreaks, data.prevPage); + pageDescBySpan = this._getPageBreakListBySpan(tableNode, data.prevPage, data.rowIndex); + if (!pageDesc) { + pageDesc = Object.assign({}, data); + pageBreaks.push(pageDesc); + } + if (pageDescBySpan) { + this._resolveBreakY(pageDesc, pageDescBySpan, pageDesc); + } + this._resolveBreakY(pageDesc, data, pageDesc); + } else { + var breaksBySpan = tableNode && tableNode._breaksBySpan || null; + pageDescBySpan = this._findSameRowPageBreakByRowSpanData(breaksBySpan, data.prevPage, data.rowIndex); + if (!pageDescBySpan) { + pageDescBySpan = Object.assign({}, data, { + rowIndexOfSpanEnd: data.rowIndex + data.rowSpan - 1 + }); + if (!tableNode._breaksBySpan) { + tableNode._breaksBySpan = []; + } + tableNode._breaksBySpan.push(pageDescBySpan); + } + pageDescBySpan.prevY = Math.max(pageDescBySpan.prevY, data.prevY); + pageDescBySpan.y = Math.min(pageDescBySpan.y, data.y); + pageDesc = this._getPageBreak(pageBreaks, data.prevPage); + if (pageDesc) { + this._resolveBreakY(pageDesc, pageDescBySpan, pageDesc); + } + } +}; + +/** + * Calculates the left offset for a column based on the specified gap values. + * + * @param {number} i - The index of the column for which the offset is being calculated. + * @param {Array} gaps - An array of gap values for each column. + * @returns {number} The left offset for the column. Returns `gaps[i]` if it exists, otherwise `0`. + */ +LayoutBuilder.prototype._colLeftOffset = function (i, gaps) { + if (gaps && gaps.length > i) { + return gaps[i]; + } + return 0; +}; + +/** + * Retrieves the ending cell for a row span in case it exists in a specified table column. + * + * @param {Array>} tableBody - The table body, represented as a 2D array of cell objects. + * @param {number} rowIndex - The index of the starting row for the row span. + * @param {object} column - The column object containing row span information. + * @param {number} columnIndex - The index of the column within the row. + * @returns {object|null} The cell at the end of the row span if it exists; otherwise, `null`. + * @throws {Error} If the row span extends beyond the total row count. + */ +LayoutBuilder.prototype._getRowSpanEndingCell = function (tableBody, rowIndex, column, columnIndex) { + if (column.rowSpan && column.rowSpan > 1) { + var endingRow = rowIndex + column.rowSpan - 1; + if (endingRow >= tableBody.length) { + throw new Error("Row span for column " + columnIndex + " (with indexes starting from 0) exceeded row count"); + } + return tableBody[endingRow][columnIndex]; + } + return null; +}; +LayoutBuilder.prototype.processRow = function (_ref) { + var _ref$marginX = _ref.marginX, + marginX = _ref$marginX === void 0 ? [0, 0] : _ref$marginX, + _ref$dontBreakRows = _ref.dontBreakRows, + dontBreakRows = _ref$dontBreakRows === void 0 ? false : _ref$dontBreakRows, + _ref$rowsWithoutPageB = _ref.rowsWithoutPageBreak, + rowsWithoutPageBreak = _ref$rowsWithoutPageB === void 0 ? 0 : _ref$rowsWithoutPageB, + cells = _ref.cells, + widths = _ref.widths, + gaps = _ref.gaps, + tableNode = _ref.tableNode, + tableBody = _ref.tableBody, + rowIndex = _ref.rowIndex, + height = _ref.height; + var self = this; + var isUnbreakableRow = dontBreakRows || rowIndex <= rowsWithoutPageBreak - 1; + var pageBreaks = []; + var pageBreaksByRowSpan = []; + var positions = []; + var willBreakByHeight = false; + widths = widths || cells; + + // Check if row should break by height + if (!isUnbreakableRow && height > self.writer.context().availableHeight) { + willBreakByHeight = true; + } + + // Use the marginX if we are in a top level table/column (not nested) + var marginXParent = self.nestedLevel === 1 ? marginX : null; + var _bottomByPage = tableNode ? tableNode._bottomByPage : null; + this.writer.context().beginColumnGroup(marginXParent, _bottomByPage); + for (var i = 0, l = cells.length; i < l; i++) { + var cell = cells[i]; + + // Update accessibility table context with current column index + if (self._accessibilityTableContext && self._accessibilityTableContext.tagged) { + self._accessibilityTableContext.colIndex = i; + } + + // Page change handler + + this.tracker.auto('pageChanged', storePageBreakClosure, function () { + var width = widths[i]._calcWidth; + var leftOffset = self._colLeftOffset(i, gaps); + // Check if exists and retrieve the cell that started the rowspan in case we are in the cell just after + var startingSpanCell = self._findStartingRowSpanCell(cells, i); + if (cell.colSpan && cell.colSpan > 1) { + for (var j = 1; j < cell.colSpan; j++) { + width += widths[++i]._calcWidth + gaps[i]; + } + } + + // if rowspan starts in this cell, we retrieve the last cell affected by the rowspan + var rowSpanEndingCell = self._getRowSpanEndingCell(tableBody, rowIndex, cell, i); + if (rowSpanEndingCell) { + // We store a reference of the ending cell in the first cell of the rowspan + cell._endingCell = rowSpanEndingCell; + cell._endingCell._startingRowSpanY = cell._startingRowSpanY; + } + + // If we are after a cell that started a rowspan + var endOfRowSpanCell = null; + if (startingSpanCell && startingSpanCell._endingCell) { + // Reference to the last cell of the rowspan + endOfRowSpanCell = startingSpanCell._endingCell; + // Store if we are in an unbreakable block when we save the context and the originalX + if (self.writer.transactionLevel > 0) { + endOfRowSpanCell._isUnbreakableContext = true; + endOfRowSpanCell._originalXOffset = self.writer.originalX; + } + } + + // We pass the endingSpanCell reference to store the context just after processing rowspan cell + self.writer.context().beginColumn(width, leftOffset, endOfRowSpanCell); + if (!cell._span) { + self.processNode(cell); + self.writer.context().updateBottomByPage(); + addAll(positions, cell.positions); + } else if (cell._columnEndingContext) { + var discountY = 0; + if (dontBreakRows) { + // Calculate how many points we have to discount to Y when dontBreakRows and rowSpan are combined + var ctxBeforeRowSpanLastRow = self.writer.writer.contextStack[self.writer.writer.contextStack.length - 1]; + discountY = ctxBeforeRowSpanLastRow.y - cell._startingRowSpanY; + } + var originalXOffset = 0; + // If context was saved from an unbreakable block and we are not in an unbreakable block anymore + // We have to sum the originalX (X before starting unbreakable block) to X + if (cell._isUnbreakableContext && !self.writer.transactionLevel) { + originalXOffset = cell._originalXOffset; + } + // row-span ending + // Recover the context after processing the rowspanned cell + self.writer.context().markEnding(cell, originalXOffset, discountY); + } + }); + } + + // Check if last cell is part of a span + var endingSpanCell = null; + var lastColumn = cells.length > 0 ? cells[cells.length - 1] : null; + if (lastColumn) { + // Previous column cell has a rowspan + if (lastColumn._endingCell) { + endingSpanCell = lastColumn._endingCell; + // Previous column cell is part of a span + } else if (lastColumn._span === true) { + // We get the cell that started the span where we set a reference to the ending cell + var startingSpanCell = this._findStartingRowSpanCell(cells, cells.length); + if (startingSpanCell) { + // Context will be stored here (ending cell) + endingSpanCell = startingSpanCell._endingCell; + // Store if we are in an unbreakable block when we save the context and the originalX + if (this.writer.transactionLevel > 0) { + endingSpanCell._isUnbreakableContext = true; + endingSpanCell._originalXOffset = this.writer.originalX; + } + } + } + } + + // If content did not break page, check if we should break by height + if (willBreakByHeight && !isUnbreakableRow && pageBreaks.length === 0) { + this.writer.context().moveDown(this.writer.context().availableHeight); + this.writer.moveToNextPage(); + } + var bottomByPage = this.writer.context().completeColumnGroup(height, endingSpanCell); + if (tableNode) { + tableNode._bottomByPage = bottomByPage; + // If there are page breaks in this row, update data with prevY of last cell + this._updatePageBreaksData(pageBreaks, tableNode, rowIndex); + } + return { + pageBreaksBySpan: pageBreaksByRowSpan, + pageBreaks: pageBreaks, + positions: positions + }; + function storePageBreakClosure(data) { + var startsRowSpan = cell.rowSpan && cell.rowSpan > 1; + if (startsRowSpan) { + data.rowSpan = cell.rowSpan; + } + data.rowIndex = rowIndex; + self._storePageBreakData(data, startsRowSpan, pageBreaks, tableNode); + } +}; + +// lists +LayoutBuilder.prototype.processList = function (orderedList, node) { + var self = this, + items = orderedList ? node.ol : node.ul, + gapSize = node._gapSize; + + // Push list accessibility context + this._accessibilityListStack.push({ + node: node, + itemIndex: -1, + isFirstNodeInItem: false, + isLastNodeInItem: false + }); + this.writer.context().addMargin(gapSize.width); + var nextMarker; + this.tracker.auto('lineAdded', addMarkerToFirstLeaf, function () { + items.forEach(function (item, idx) { + var listCtx = self._accessibilityListStack[self._accessibilityListStack.length - 1]; + listCtx.itemIndex = idx; + listCtx.isFirstNodeInItem = true; + listCtx.isLastNodeInItem = !_itemContainsList(item); + nextMarker = item.listMarker; + self.processNode(item); + listCtx.isFirstNodeInItem = false; + addAll(node.positions, item.positions); + }); + }); + this.writer.context().addMargin(-gapSize.width); + + // Pop list accessibility context + this._accessibilityListStack.pop(); + function addMarkerToFirstLeaf(line) { + // I'm not very happy with the way list processing is implemented + // (both code and algorithm should be rethinked) + if (nextMarker) { + var marker = nextMarker; + nextMarker = null; + if (marker.canvas) { + var vector = marker.canvas[0]; + offsetVector(vector, -marker._minWidth, 0); + self.writer.addVector(vector); + } else if (marker._inlines) { + var markerLine = new Line(self.pageSize.width); + markerLine.addInline(marker._inlines[0]); + markerLine.x = -marker._minWidth; + markerLine.y = line.getAscenderHeight() - markerLine.getAscenderHeight(); + self.writer.addLine(markerLine, true); + } + } + } +}; + +// tables +LayoutBuilder.prototype.processTable = function (tableNode) { + var _this3 = this; + this.nestedLevel++; + var processor = new TableProcessor(tableNode); + var isTaggedTable = accessibilityMetadata.shouldTagTable(tableNode); + var isTOCTable = accessibilityMetadata.isTOC(tableNode); + var headerRowCount = tableNode.table.headerRows || 0; + + // Store the accessibility table context so child nodes (processLeaf) can see it + var previousTableContext = this._accessibilityTableContext; + processor.beginTable(this.writer); + var rowHeights = tableNode.table.heights; + for (var i = 0, l = tableNode.table.body.length; i < l; i++) { + // if dontBreakRows and row starts a rowspan + // we store the 'y' of the beginning of each rowSpan + if (processor.dontBreakRows) { + tableNode.table.body[i].forEach(function (cell) { + if (cell.rowSpan && cell.rowSpan > 1) { + cell._startingRowSpanY = _this3.writer.context().y; + } + }); + } + processor.beginRow(i, this.writer); + + // Set table accessibility context for this row's cells + if (isTaggedTable) { + var isHeaderRow = i < headerRowCount; + this._accessibilityTableContext = { + tagged: true, + isTOC: isTOCTable, + rowIndex: i, + isHeader: isHeaderRow, + headerRowCount: headerRowCount, + totalRows: l, + isFirstRow: i === 0, + isLastRow: i === l - 1, + colIndex: -1 // will be updated per cell during processRow + }; + } + var height; + if (isFunction(rowHeights)) { + height = rowHeights(i); + } else if (isArray(rowHeights)) { + height = rowHeights[i]; + } else { + height = rowHeights; + } + if (height === 'auto') { + height = undefined; + } + var pageBeforeProcessing = this.writer.context().page; + var result = this.processRow({ + marginX: tableNode._margin ? [tableNode._margin[0], tableNode._margin[2]] : [0, 0], + dontBreakRows: processor.dontBreakRows, + rowsWithoutPageBreak: processor.rowsWithoutPageBreak, + cells: tableNode.table.body[i], + widths: tableNode.table.widths, + gaps: tableNode._offsets.offsets, + tableBody: tableNode.table.body, + tableNode: tableNode, + rowIndex: i, + height: height + }); + addAll(tableNode.positions, result.positions); + if (!result.pageBreaks || result.pageBreaks.length === 0) { + var breaksBySpan = tableNode && tableNode._breaksBySpan || null; + var breakBySpanData = this._findSameRowPageBreakByRowSpanData(breaksBySpan, pageBeforeProcessing, i); + if (breakBySpanData) { + var finalBreakBySpanData = this._getPageBreakListBySpan(tableNode, breakBySpanData.prevPage, i); + result.pageBreaks.push(finalBreakBySpanData); + } + } + processor.endRow(i, this.writer, result.pageBreaks); + } + processor.endTable(this.writer); + + // Restore previous table context (for nested tables) + this._accessibilityTableContext = previousTableContext; + this.nestedLevel--; + if (this.nestedLevel === 0) { + this.writer.context().resetMarginXTopParent(); + } +}; + +// leafs (texts) +LayoutBuilder.prototype.processLeaf = function (node) { + var line = this.buildNextLine(node); + if (line && (node.tocItem || node.id)) { + line._node = node; + } + var currentHeight = line ? line.getHeight() : 0; + var maxHeight = node.maxHeight || -1; + if (line) { + var nodeId = getNodeId(node); + if (nodeId) { + line.id = nodeId; + } + } + if (node._tocItemRef) { + line._pageNodeRef = node._tocItemRef; + } + if (node._pageRef) { + line._pageNodeRef = node._pageRef._nodeRef; + } + if (line && line.inlines && isArray(line.inlines)) { + for (var i = 0, l = line.inlines.length; i < l; i++) { + if (line.inlines[i]._tocItemRef) { + line.inlines[i]._pageNodeRef = line.inlines[i]._tocItemRef; + } + if (line.inlines[i]._pageRef) { + line.inlines[i]._pageNodeRef = line.inlines[i]._pageRef._nodeRef; + } + } + } + + // Build accessibility context for text lines + var accessibilityRole = accessibilityMetadata.getAccessibilityRole(node); + var isFirstLine = true; + while (line && (maxHeight === -1 || currentHeight < maxHeight)) { + // Annotate line with accessibility context + // Snapshot tableContext (clone) since the shared object is mutated per-column + var tableCtxSnapshot = this._accessibilityTableContext ? { + tagged: this._accessibilityTableContext.tagged, + isTOC: this._accessibilityTableContext.isTOC, + rowIndex: this._accessibilityTableContext.rowIndex, + isHeader: this._accessibilityTableContext.isHeader, + headerRowCount: this._accessibilityTableContext.headerRowCount, + totalRows: this._accessibilityTableContext.totalRows, + isFirstRow: this._accessibilityTableContext.isFirstRow, + isLastRow: this._accessibilityTableContext.isLastRow, + colIndex: this._accessibilityTableContext.colIndex + } : null; + line._accessibilityContext = { + role: accessibilityRole, + isFirstLine: isFirstLine, + isLastLine: line.lastLineInParagraph, + listContext: this._accessibilityListStack.length > 0 ? { + depth: this._accessibilityListStack.length, + itemIndex: this._accessibilityListStack[this._accessibilityListStack.length - 1].itemIndex, + isFirstInItem: isFirstLine && this._accessibilityListStack[this._accessibilityListStack.length - 1].isFirstNodeInItem, + isLastInItem: line.lastLineInParagraph && this._accessibilityListStack[this._accessibilityListStack.length - 1].isLastNodeInItem + } : null, + tableContext: tableCtxSnapshot + }; + isFirstLine = false; + var positions = this.writer.addLine(line); + node.positions.push(positions); + line = this.buildNextLine(node); + if (line) { + currentHeight += line.getHeight(); + } + } +}; +LayoutBuilder.prototype.processToc = function (node) { + if (node.toc.title) { + this.processNode(node.toc.title); + } + if (node.toc._table) { + this.processNode(node.toc._table); + } +}; +LayoutBuilder.prototype.buildNextLine = function (textNode) { + function cloneInline(inline) { + var newInline = inline.constructor(); + for (var key in inline) { + newInline[key] = inline[key]; + } + return newInline; + } + function findMaxFitLength(text, maxWidth, measureFn) { + var low = 1; + var high = text.length; + var bestFit = 1; + while (low <= high) { + var mid = Math.floor((low + high) / 2); + var part = text.substring(0, mid); + var width = measureFn(part); + if (width <= maxWidth) { + bestFit = mid; + low = mid + 1; + } else { + high = mid - 1; + } + } + return bestFit; + } + if (!textNode._inlines || textNode._inlines.length === 0) { + return null; + } + var line = new Line(this.writer.context().availableWidth); + var textTools = new TextTools(null); + var isForceContinue = false; + while (textNode._inlines && textNode._inlines.length > 0 && (line.hasEnoughSpaceForInline(textNode._inlines[0], textNode._inlines.slice(1)) || isForceContinue)) { + var isHardWrap = false; + var inline = textNode._inlines.shift(); + isForceContinue = false; + if (!inline.noWrap && inline.text.length > 1 && inline.width > line.getAvailableWidth()) { + var maxChars = findMaxFitLength(inline.text, line.getAvailableWidth(), function (txt) { + return textTools.widthOfString(txt, inline.font, inline.fontSize, inline.characterSpacing, inline.fontFeatures); + }); + if (maxChars < inline.text.length) { + var newInline = cloneInline(inline); + newInline.text = inline.text.substr(maxChars); + inline.text = inline.text.substr(0, maxChars); + newInline.width = textTools.widthOfString(newInline.text, newInline.font, newInline.fontSize, newInline.characterSpacing, newInline.fontFeatures); + inline.width = textTools.widthOfString(inline.text, inline.font, inline.fontSize, inline.characterSpacing, inline.fontFeatures); + textNode._inlines.unshift(newInline); + isHardWrap = true; + } + } + line.addInline(inline); + isForceContinue = inline.noNewLine && !isHardWrap; + } + line.lastLineInParagraph = textNode._inlines.length === 0; + return line; +}; + +// images +LayoutBuilder.prototype.processImage = function (node) { + node._accessibilityContext = { + role: node.alt || node.actualText ? 'Figure' : 'Artifact', + alt: node.alt, + actualText: node.actualText + }; + var position = this.writer.addImage(node); + node.positions.push(position); +}; +LayoutBuilder.prototype.processSVG = function (node) { + node._accessibilityContext = { + role: node.alt || node.actualText ? 'Figure' : 'Artifact', + alt: node.alt, + actualText: node.actualText + }; + var position = this.writer.addSVG(node); + node.positions.push(position); +}; +LayoutBuilder.prototype.processCanvas = function (node) { + var height = node._minHeight; + if (node.absolutePosition === undefined && this.writer.context().availableHeight < height) { + // TODO: support for canvas larger than a page + // TODO: support for other overflow methods + + this.writer.moveToNextPage(); + } + this.writer.alignCanvas(node); + node.canvas.forEach(function (vector) { + vector._accessibilityContext = { + role: 'Artifact' + }; + var position = this.writer.addVector(vector); + node.positions.push(position); + }, this); + this.writer.context().moveDown(height); +}; +LayoutBuilder.prototype.processQr = function (node) { + var position = this.writer.addQr(node); + node.positions.push(position); +}; +module.exports = LayoutBuilder; + +/***/ }), + +/***/ 32596: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +"use strict"; +var __webpack_dirname__ = "/"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; + + +__webpack_require__(69330); +__webpack_require__(5597); +__webpack_require__(11765); +__webpack_require__(7585); +__webpack_require__(7283); +__webpack_require__(58281); +Object.defineProperty(exports, "__esModule", ({ + value: true +})); +exports["default"] = void 0; +__webpack_require__(65292); +__webpack_require__(73844); +__webpack_require__(39081); +__webpack_require__(41584); +__webpack_require__(49063); +__webpack_require__(58028); +__webpack_require__(81755); +__webpack_require__(94845); +__webpack_require__(80055); +__webpack_require__(20731); +__webpack_require__(45337); +__webpack_require__(8953); +__webpack_require__(24863); +__webpack_require__(70095); +__webpack_require__(10849); +__webpack_require__(18756); +__webpack_require__(37309); +__webpack_require__(14032); +__webpack_require__(59883); +__webpack_require__(68067); +__webpack_require__(61726); +__webpack_require__(57114); +__webpack_require__(26663); +__webpack_require__(65578); +__webpack_require__(6422); +__webpack_require__(46467); +__webpack_require__(7851); +__webpack_require__(72095); +__webpack_require__(62046); +__webpack_require__(47259); +__webpack_require__(18425); +__webpack_require__(56912); +__webpack_require__(73663); +__webpack_require__(29883); +__webpack_require__(35471); +__webpack_require__(21012); +__webpack_require__(88997); +__webpack_require__(97464); +__webpack_require__(2857); +__webpack_require__(94715); +__webpack_require__(13624); +__webpack_require__(91132); +__webpack_require__(62514); +__webpack_require__(24597); +__webpack_require__(88042); +__webpack_require__(4660); +__webpack_require__(92451); +__webpack_require__(44206); +__webpack_require__(66288); +__webpack_require__(13250); +__webpack_require__(3858); +__webpack_require__(84538); +__webpack_require__(64793); +__webpack_require__(74202); +__webpack_require__(52529); +__webpack_require__(64654); +__webpack_require__(42437); +__webpack_require__(94712); +var _stream = _interopRequireDefault(__webpack_require__(9760)); +var _zlib = _interopRequireDefault(__webpack_require__(6729)); +var _cryptoJs = _interopRequireDefault(__webpack_require__(94119)); +var _fontkit = _interopRequireDefault(__webpack_require__(10740)); +var _events = __webpack_require__(64785); +var _linebreak = _interopRequireDefault(__webpack_require__(5417)); +var _jpegExif = _interopRequireDefault(__webpack_require__(38834)); +var _pngJs = _interopRequireDefault(__webpack_require__(84695)); +function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } +function _readOnlyError(r) { throw new TypeError('"' + r + '" is read-only'); } +function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } +function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } +function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; } +function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } +function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } +function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } +function _createForOfIteratorHelperLoose(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (t) return (t = t.call(r)).next.bind(t); if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var o = 0; return function () { return o >= r.length ? { done: !0 } : { done: !1, value: r[o++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } +function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } +var fs = __webpack_require__(48181); +/* +PDFAbstractReference - abstract class for PDF reference +*/ +var PDFAbstractReference = /*#__PURE__*/function () { + function PDFAbstractReference() {} + var _proto = PDFAbstractReference.prototype; + _proto.toString = function toString() { + throw new Error('Must be implemented by subclasses'); + }; + return PDFAbstractReference; +}(); +/* +PDFTree - abstract base class for name and number tree objects +*/ +var PDFTree = /*#__PURE__*/function () { + function PDFTree() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + this._items = {}; + // disable /Limits output for this tree + this.limits = typeof options.limits === 'boolean' ? options.limits : true; + } + var _proto2 = PDFTree.prototype; + _proto2.add = function add(key, val) { + return this._items[key] = val; + }; + _proto2.get = function get(key) { + return this._items[key]; + }; + _proto2.toString = function toString() { + var _this = this; + // Needs to be sorted by key + var sortedKeys = Object.keys(this._items).sort(function (a, b) { + return _this._compareKeys(a, b); + }); + var out = ['<<']; + if (this.limits && sortedKeys.length > 1) { + var _first = sortedKeys[0], + _last = sortedKeys[sortedKeys.length - 1]; + out.push(" /Limits " + PDFObject.convert([this._dataForKey(_first), this._dataForKey(_last)])); + } + out.push(" /" + this._keysName() + " ["); + for (var _iterator = _createForOfIteratorHelperLoose(sortedKeys), _step; !(_step = _iterator()).done;) { + var key = _step.value; + out.push(" " + PDFObject.convert(this._dataForKey(key)) + " " + PDFObject.convert(this._items[key])); + } + out.push(']'); + out.push('>>'); + return out.join('\n'); + }; + _proto2._compareKeys = function _compareKeys(/*a, b*/ + ) { + throw new Error('Must be implemented by subclasses'); + }; + _proto2._keysName = function _keysName() { + throw new Error('Must be implemented by subclasses'); + }; + _proto2._dataForKey = function _dataForKey(/*k*/ + ) { + throw new Error('Must be implemented by subclasses'); + }; + return PDFTree; +}(); +var SpotColor = /*#__PURE__*/function () { + function SpotColor(doc, name, C, M, Y, K) { + this.id = 'CS' + Object.keys(doc.spotColors).length; + this.name = name; + this.values = [C, M, Y, K]; + this.ref = doc.ref(['Separation', this.name, 'DeviceCMYK', { + Range: [0, 1, 0, 1, 0, 1, 0, 1], + C0: [0, 0, 0, 0], + C1: this.values.map(function (value) { + return value / 100; + }), + FunctionType: 2, + Domain: [0, 1], + N: 1 + }]); + this.ref.end(); + } + var _proto3 = SpotColor.prototype; + _proto3.toString = function toString() { + return this.ref.id + " 0 R"; + }; + return SpotColor; +}(); +/* +PDFObject - converts JavaScript types into their corresponding PDF types. +By Devon Govett +*/ +var pad = function pad(str, length) { + return (Array(length + 1).join('0') + str).slice(-length); +}; +var escapableRe = /[\n\r\t\b\f()\\]/g; +var escapable = { + '\n': '\\n', + '\r': '\\r', + '\t': '\\t', + '\b': '\\b', + '\f': '\\f', + '\\': '\\\\', + '(': '\\(', + ')': '\\)' +}; + +// Convert little endian UTF-16 to big endian +var swapBytes = function swapBytes(buff) { + var l = buff.length; + if (l & 0x01) { + throw new Error('Buffer length must be even'); + } else { + for (var i = 0, end = l - 1; i < end; i += 2) { + var a = buff[i]; + buff[i] = buff[i + 1]; + buff[i + 1] = a; + } + } + return buff; +}; +var PDFObject = /*#__PURE__*/function () { + function PDFObject() {} + PDFObject.convert = function convert(object) { + var encryptFn = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + // String literals are converted to the PDF name type + if (typeof object === 'string') { + return "/" + object; + + // String objects are converted to PDF strings (UTF-16) + } else if (object instanceof String) { + var string = object; + // Detect if this is a unicode string + var isUnicode = false; + for (var i = 0, end = string.length; i < end; i++) { + if (string.charCodeAt(i) > 0x7f) { + isUnicode = true; + break; + } + } + + // If so, encode it as big endian UTF-16 + var stringBuffer; + if (isUnicode) { + stringBuffer = swapBytes(Buffer.from("\uFEFF" + string, 'utf16le')); + } else { + stringBuffer = Buffer.from(string.valueOf(), 'ascii'); + } + + // Encrypt the string when necessary + if (encryptFn) { + string = encryptFn(stringBuffer).toString('binary'); + } else { + string = stringBuffer.toString('binary'); + } + + // Escape characters as required by the spec + string = string.replace(escapableRe, function (c) { + return escapable[c]; + }); + return "(" + string + ")"; + + // Buffers are converted to PDF hex strings + } else if (Buffer.isBuffer(object)) { + return "<" + object.toString('hex') + ">"; + } else if (object instanceof PDFAbstractReference || object instanceof PDFTree || object instanceof SpotColor) { + return object.toString(); + } else if (object instanceof Date) { + var _string = "D:" + pad(object.getUTCFullYear(), 4) + pad(object.getUTCMonth() + 1, 2) + pad(object.getUTCDate(), 2) + pad(object.getUTCHours(), 2) + pad(object.getUTCMinutes(), 2) + pad(object.getUTCSeconds(), 2) + 'Z'; + + // Encrypt the string when necessary + if (encryptFn) { + _string = encryptFn(Buffer.from(_string, 'ascii')).toString('binary'); + + // Escape characters as required by the spec + _string = _string.replace(escapableRe, function (c) { + return escapable[c]; + }); + } + return "(" + _string + ")"; + } else if (Array.isArray(object)) { + var items = object.map(function (e) { + return PDFObject.convert(e, encryptFn); + }).join(' '); + return "[" + items + "]"; + } else if ({}.toString.call(object) === '[object Object]') { + var out = ['<<']; + for (var key in object) { + var val = object[key]; + out.push("/" + key + " " + PDFObject.convert(val, encryptFn)); + } + out.push('>>'); + return out.join('\n'); + } else if (typeof object === 'number') { + return PDFObject.number(object); + } else { + return "" + object; + } + }; + PDFObject.number = function number(n) { + if (n > -1e21 && n < 1e21) { + return Math.round(n * 1e6) / 1e6; + } + throw new Error("unsupported number: " + n); + }; + return PDFObject; +}(); +/* +PDFReference - represents a reference to another object in the PDF object heirarchy +By Devon Govett +*/ +var PDFReference = /*#__PURE__*/function (_PDFAbstractReference) { + function PDFReference(document, id) { + var _this2; + var data = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + _this2 = _PDFAbstractReference.call(this) || this; + _this2.document = document; + _this2.id = id; + _this2.data = data; + _this2.gen = 0; + _this2.compress = _this2.document.compress && !_this2.data.Filter; + _this2.uncompressedLength = 0; + _this2.buffer = []; + return _this2; + } + _inheritsLoose(PDFReference, _PDFAbstractReference); + var _proto4 = PDFReference.prototype; + _proto4.write = function write(chunk) { + if (!Buffer.isBuffer(chunk)) { + chunk = Buffer.from(chunk + '\n', 'binary'); + } + this.uncompressedLength += chunk.length; + if (this.data.Length == null) { + this.data.Length = 0; + } + this.buffer.push(chunk); + this.data.Length += chunk.length; + if (this.compress) { + return this.data.Filter = 'FlateDecode'; + } + }; + _proto4.end = function end(chunk) { + if (chunk) { + this.write(chunk); + } + return this.finalize(); + }; + _proto4.finalize = function finalize() { + this.offset = this.document._offset; + var encryptFn = this.document._security ? this.document._security.getEncryptFn(this.id, this.gen) : null; + if (this.buffer.length) { + this.buffer = Buffer.concat(this.buffer); + if (this.compress) { + this.buffer = _zlib.default.deflateSync(this.buffer); + } + if (encryptFn) { + this.buffer = encryptFn(this.buffer); + } + this.data.Length = this.buffer.length; + } + this.document._write(this.id + " " + this.gen + " obj"); + this.document._write(PDFObject.convert(this.data, encryptFn)); + if (this.buffer.length) { + this.document._write('stream'); + this.document._write(this.buffer); + this.buffer = []; // free up memory + this.document._write('\nendstream'); + } + this.document._write('endobj'); + this.document._refEnd(this); + }; + _proto4.toString = function toString() { + return this.id + " " + this.gen + " R"; + }; + return PDFReference; +}(PDFAbstractReference); +/* +PDFPage - represents a single page in the PDF document +By Devon Govett +*/ +var DEFAULT_MARGINS = { + top: 72, + left: 72, + bottom: 72, + right: 72 +}; +var SIZES = { + '4A0': [4767.87, 6740.79], + '2A0': [3370.39, 4767.87], + A0: [2383.94, 3370.39], + A1: [1683.78, 2383.94], + A2: [1190.55, 1683.78], + A3: [841.89, 1190.55], + A4: [595.28, 841.89], + A5: [419.53, 595.28], + A6: [297.64, 419.53], + A7: [209.76, 297.64], + A8: [147.4, 209.76], + A9: [104.88, 147.4], + A10: [73.7, 104.88], + B0: [2834.65, 4008.19], + B1: [2004.09, 2834.65], + B2: [1417.32, 2004.09], + B3: [1000.63, 1417.32], + B4: [708.66, 1000.63], + B5: [498.9, 708.66], + B6: [354.33, 498.9], + B7: [249.45, 354.33], + B8: [175.75, 249.45], + B9: [124.72, 175.75], + B10: [87.87, 124.72], + C0: [2599.37, 3676.54], + C1: [1836.85, 2599.37], + C2: [1298.27, 1836.85], + C3: [918.43, 1298.27], + C4: [649.13, 918.43], + C5: [459.21, 649.13], + C6: [323.15, 459.21], + C7: [229.61, 323.15], + C8: [161.57, 229.61], + C9: [113.39, 161.57], + C10: [79.37, 113.39], + RA0: [2437.8, 3458.27], + RA1: [1729.13, 2437.8], + RA2: [1218.9, 1729.13], + RA3: [864.57, 1218.9], + RA4: [609.45, 864.57], + SRA0: [2551.18, 3628.35], + SRA1: [1814.17, 2551.18], + SRA2: [1275.59, 1814.17], + SRA3: [907.09, 1275.59], + SRA4: [637.8, 907.09], + EXECUTIVE: [521.86, 756.0], + FOLIO: [612.0, 936.0], + LEGAL: [612.0, 1008.0], + LETTER: [612.0, 792.0], + TABLOID: [792.0, 1224.0] +}; +var PDFPage = /*#__PURE__*/function () { + function PDFPage(document) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + this.document = document; + this.size = options.size || 'letter'; + this.layout = options.layout || 'portrait'; + + // process margins + if (typeof options.margin === 'number') { + this.margins = { + top: options.margin, + left: options.margin, + bottom: options.margin, + right: options.margin + }; + + // default to 1 inch margins + } else { + this.margins = options.margins || DEFAULT_MARGINS; + } + + // calculate page dimensions + var dimensions = Array.isArray(this.size) ? this.size : SIZES[this.size.toUpperCase()]; + this.width = dimensions[this.layout === 'portrait' ? 0 : 1]; + this.height = dimensions[this.layout === 'portrait' ? 1 : 0]; + this.content = this.document.ref(); + + // Initialize the Font, XObject, and ExtGState dictionaries + this.resources = this.document.ref({ + ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'] + }); + + // The page dictionary + this.dictionary = this.document.ref({ + Type: 'Page', + Parent: this.document._root.data.Pages, + MediaBox: [0, 0, this.width, this.height], + Contents: this.content, + Resources: this.resources + }); + this.markings = []; + } + + // Lazily create these objects + var _proto5 = PDFPage.prototype; + _proto5.maxY = function maxY() { + return this.height - this.margins.bottom; + }; + _proto5.write = function write(chunk) { + return this.content.write(chunk); + } + + // Set tab order if document is tagged for accessibility. +; + _proto5._setTabOrder = function _setTabOrder() { + if (!this.dictionary.Tabs && this.document.hasMarkInfoDictionary()) { + this.dictionary.data.Tabs = 'S'; + } + }; + _proto5.end = function end() { + this._setTabOrder(); + this.dictionary.end(); + this.resources.data.ColorSpace = this.resources.data.ColorSpace || {}; + for (var _i = 0, _Object$values = Object.values(this.document.spotColors); _i < _Object$values.length; _i++) { + var color = _Object$values[_i]; + this.resources.data.ColorSpace[color.id] = color; + } + this.resources.end(); + return this.content.end(); + }; + return _createClass(PDFPage, [{ + key: "fonts", + get: function get() { + var data = this.resources.data; + return data.Font != null ? data.Font : data.Font = {}; + } + }, { + key: "xobjects", + get: function get() { + var data = this.resources.data; + return data.XObject != null ? data.XObject : data.XObject = {}; + } + }, { + key: "ext_gstates", + get: function get() { + var data = this.resources.data; + return data.ExtGState != null ? data.ExtGState : data.ExtGState = {}; + } + }, { + key: "patterns", + get: function get() { + var data = this.resources.data; + return data.Pattern != null ? data.Pattern : data.Pattern = {}; + } + }, { + key: "colorSpaces", + get: function get() { + var data = this.resources.data; + return data.ColorSpace || (data.ColorSpace = {}); + } + }, { + key: "annotations", + get: function get() { + var data = this.dictionary.data; + return data.Annots != null ? data.Annots : data.Annots = []; + } + }, { + key: "structParentTreeKey", + get: function get() { + var data = this.dictionary.data; + return data.StructParents != null ? data.StructParents : data.StructParents = this.document.createStructParentTreeNextKey(); + } + }]); +}(); +/* +PDFNameTree - represents a name tree object +*/ +var PDFNameTree = /*#__PURE__*/function (_PDFTree) { + function PDFNameTree() { + return _PDFTree.apply(this, arguments) || this; + } + _inheritsLoose(PDFNameTree, _PDFTree); + var _proto6 = PDFNameTree.prototype; + _proto6._compareKeys = function _compareKeys(a, b) { + return a.localeCompare(b); + }; + _proto6._keysName = function _keysName() { + return "Names"; + }; + _proto6._dataForKey = function _dataForKey(k) { + return new String(k); + }; + return PDFNameTree; +}(PDFTree); +/** + * Check if value is in a range group. + * @param {number} value + * @param {number[]} rangeGroup + * @returns {boolean} + */ +function inRange(value, rangeGroup) { + if (value < rangeGroup[0]) return false; + var startRange = 0; + var endRange = rangeGroup.length / 2; + while (startRange <= endRange) { + var middleRange = Math.floor((startRange + endRange) / 2); + + // actual array index + var arrayIndex = middleRange * 2; + + // Check if value is in range pointed by actual index + if (value >= rangeGroup[arrayIndex] && value <= rangeGroup[arrayIndex + 1]) { + return true; + } + if (value > rangeGroup[arrayIndex + 1]) { + // Search Right Side Of Array + startRange = middleRange + 1; + } else { + // Search Left Side Of Array + endRange = middleRange - 1; + } + } + return false; +} + +// prettier-ignore-start +/** + * A.1 Unassigned code points in Unicode 3.2 + * @link https://tools.ietf.org/html/rfc3454#appendix-A.1 + */ +var unassigned_code_points = [0x0221, 0x0221, 0x0234, 0x024f, 0x02ae, 0x02af, 0x02ef, 0x02ff, 0x0350, 0x035f, 0x0370, 0x0373, 0x0376, 0x0379, 0x037b, 0x037d, 0x037f, 0x0383, 0x038b, 0x038b, 0x038d, 0x038d, 0x03a2, 0x03a2, 0x03cf, 0x03cf, 0x03f7, 0x03ff, 0x0487, 0x0487, 0x04cf, 0x04cf, 0x04f6, 0x04f7, 0x04fa, 0x04ff, 0x0510, 0x0530, 0x0557, 0x0558, 0x0560, 0x0560, 0x0588, 0x0588, 0x058b, 0x0590, 0x05a2, 0x05a2, 0x05ba, 0x05ba, 0x05c5, 0x05cf, 0x05eb, 0x05ef, 0x05f5, 0x060b, 0x060d, 0x061a, 0x061c, 0x061e, 0x0620, 0x0620, 0x063b, 0x063f, 0x0656, 0x065f, 0x06ee, 0x06ef, 0x06ff, 0x06ff, 0x070e, 0x070e, 0x072d, 0x072f, 0x074b, 0x077f, 0x07b2, 0x0900, 0x0904, 0x0904, 0x093a, 0x093b, 0x094e, 0x094f, 0x0955, 0x0957, 0x0971, 0x0980, 0x0984, 0x0984, 0x098d, 0x098e, 0x0991, 0x0992, 0x09a9, 0x09a9, 0x09b1, 0x09b1, 0x09b3, 0x09b5, 0x09ba, 0x09bb, 0x09bd, 0x09bd, 0x09c5, 0x09c6, 0x09c9, 0x09ca, 0x09ce, 0x09d6, 0x09d8, 0x09db, 0x09de, 0x09de, 0x09e4, 0x09e5, 0x09fb, 0x0a01, 0x0a03, 0x0a04, 0x0a0b, 0x0a0e, 0x0a11, 0x0a12, 0x0a29, 0x0a29, 0x0a31, 0x0a31, 0x0a34, 0x0a34, 0x0a37, 0x0a37, 0x0a3a, 0x0a3b, 0x0a3d, 0x0a3d, 0x0a43, 0x0a46, 0x0a49, 0x0a4a, 0x0a4e, 0x0a58, 0x0a5d, 0x0a5d, 0x0a5f, 0x0a65, 0x0a75, 0x0a80, 0x0a84, 0x0a84, 0x0a8c, 0x0a8c, 0x0a8e, 0x0a8e, 0x0a92, 0x0a92, 0x0aa9, 0x0aa9, 0x0ab1, 0x0ab1, 0x0ab4, 0x0ab4, 0x0aba, 0x0abb, 0x0ac6, 0x0ac6, 0x0aca, 0x0aca, 0x0ace, 0x0acf, 0x0ad1, 0x0adf, 0x0ae1, 0x0ae5, 0x0af0, 0x0b00, 0x0b04, 0x0b04, 0x0b0d, 0x0b0e, 0x0b11, 0x0b12, 0x0b29, 0x0b29, 0x0b31, 0x0b31, 0x0b34, 0x0b35, 0x0b3a, 0x0b3b, 0x0b44, 0x0b46, 0x0b49, 0x0b4a, 0x0b4e, 0x0b55, 0x0b58, 0x0b5b, 0x0b5e, 0x0b5e, 0x0b62, 0x0b65, 0x0b71, 0x0b81, 0x0b84, 0x0b84, 0x0b8b, 0x0b8d, 0x0b91, 0x0b91, 0x0b96, 0x0b98, 0x0b9b, 0x0b9b, 0x0b9d, 0x0b9d, 0x0ba0, 0x0ba2, 0x0ba5, 0x0ba7, 0x0bab, 0x0bad, 0x0bb6, 0x0bb6, 0x0bba, 0x0bbd, 0x0bc3, 0x0bc5, 0x0bc9, 0x0bc9, 0x0bce, 0x0bd6, 0x0bd8, 0x0be6, 0x0bf3, 0x0c00, 0x0c04, 0x0c04, 0x0c0d, 0x0c0d, 0x0c11, 0x0c11, 0x0c29, 0x0c29, 0x0c34, 0x0c34, 0x0c3a, 0x0c3d, 0x0c45, 0x0c45, 0x0c49, 0x0c49, 0x0c4e, 0x0c54, 0x0c57, 0x0c5f, 0x0c62, 0x0c65, 0x0c70, 0x0c81, 0x0c84, 0x0c84, 0x0c8d, 0x0c8d, 0x0c91, 0x0c91, 0x0ca9, 0x0ca9, 0x0cb4, 0x0cb4, 0x0cba, 0x0cbd, 0x0cc5, 0x0cc5, 0x0cc9, 0x0cc9, 0x0cce, 0x0cd4, 0x0cd7, 0x0cdd, 0x0cdf, 0x0cdf, 0x0ce2, 0x0ce5, 0x0cf0, 0x0d01, 0x0d04, 0x0d04, 0x0d0d, 0x0d0d, 0x0d11, 0x0d11, 0x0d29, 0x0d29, 0x0d3a, 0x0d3d, 0x0d44, 0x0d45, 0x0d49, 0x0d49, 0x0d4e, 0x0d56, 0x0d58, 0x0d5f, 0x0d62, 0x0d65, 0x0d70, 0x0d81, 0x0d84, 0x0d84, 0x0d97, 0x0d99, 0x0db2, 0x0db2, 0x0dbc, 0x0dbc, 0x0dbe, 0x0dbf, 0x0dc7, 0x0dc9, 0x0dcb, 0x0dce, 0x0dd5, 0x0dd5, 0x0dd7, 0x0dd7, 0x0de0, 0x0df1, 0x0df5, 0x0e00, 0x0e3b, 0x0e3e, 0x0e5c, 0x0e80, 0x0e83, 0x0e83, 0x0e85, 0x0e86, 0x0e89, 0x0e89, 0x0e8b, 0x0e8c, 0x0e8e, 0x0e93, 0x0e98, 0x0e98, 0x0ea0, 0x0ea0, 0x0ea4, 0x0ea4, 0x0ea6, 0x0ea6, 0x0ea8, 0x0ea9, 0x0eac, 0x0eac, 0x0eba, 0x0eba, 0x0ebe, 0x0ebf, 0x0ec5, 0x0ec5, 0x0ec7, 0x0ec7, 0x0ece, 0x0ecf, 0x0eda, 0x0edb, 0x0ede, 0x0eff, 0x0f48, 0x0f48, 0x0f6b, 0x0f70, 0x0f8c, 0x0f8f, 0x0f98, 0x0f98, 0x0fbd, 0x0fbd, 0x0fcd, 0x0fce, 0x0fd0, 0x0fff, 0x1022, 0x1022, 0x1028, 0x1028, 0x102b, 0x102b, 0x1033, 0x1035, 0x103a, 0x103f, 0x105a, 0x109f, 0x10c6, 0x10cf, 0x10f9, 0x10fa, 0x10fc, 0x10ff, 0x115a, 0x115e, 0x11a3, 0x11a7, 0x11fa, 0x11ff, 0x1207, 0x1207, 0x1247, 0x1247, 0x1249, 0x1249, 0x124e, 0x124f, 0x1257, 0x1257, 0x1259, 0x1259, 0x125e, 0x125f, 0x1287, 0x1287, 0x1289, 0x1289, 0x128e, 0x128f, 0x12af, 0x12af, 0x12b1, 0x12b1, 0x12b6, 0x12b7, 0x12bf, 0x12bf, 0x12c1, 0x12c1, 0x12c6, 0x12c7, 0x12cf, 0x12cf, 0x12d7, 0x12d7, 0x12ef, 0x12ef, 0x130f, 0x130f, 0x1311, 0x1311, 0x1316, 0x1317, 0x131f, 0x131f, 0x1347, 0x1347, 0x135b, 0x1360, 0x137d, 0x139f, 0x13f5, 0x1400, 0x1677, 0x167f, 0x169d, 0x169f, 0x16f1, 0x16ff, 0x170d, 0x170d, 0x1715, 0x171f, 0x1737, 0x173f, 0x1754, 0x175f, 0x176d, 0x176d, 0x1771, 0x1771, 0x1774, 0x177f, 0x17dd, 0x17df, 0x17ea, 0x17ff, 0x180f, 0x180f, 0x181a, 0x181f, 0x1878, 0x187f, 0x18aa, 0x1dff, 0x1e9c, 0x1e9f, 0x1efa, 0x1eff, 0x1f16, 0x1f17, 0x1f1e, 0x1f1f, 0x1f46, 0x1f47, 0x1f4e, 0x1f4f, 0x1f58, 0x1f58, 0x1f5a, 0x1f5a, 0x1f5c, 0x1f5c, 0x1f5e, 0x1f5e, 0x1f7e, 0x1f7f, 0x1fb5, 0x1fb5, 0x1fc5, 0x1fc5, 0x1fd4, 0x1fd5, 0x1fdc, 0x1fdc, 0x1ff0, 0x1ff1, 0x1ff5, 0x1ff5, 0x1fff, 0x1fff, 0x2053, 0x2056, 0x2058, 0x205e, 0x2064, 0x2069, 0x2072, 0x2073, 0x208f, 0x209f, 0x20b2, 0x20cf, 0x20eb, 0x20ff, 0x213b, 0x213c, 0x214c, 0x2152, 0x2184, 0x218f, 0x23cf, 0x23ff, 0x2427, 0x243f, 0x244b, 0x245f, 0x24ff, 0x24ff, 0x2614, 0x2615, 0x2618, 0x2618, 0x267e, 0x267f, 0x268a, 0x2700, 0x2705, 0x2705, 0x270a, 0x270b, 0x2728, 0x2728, 0x274c, 0x274c, 0x274e, 0x274e, 0x2753, 0x2755, 0x2757, 0x2757, 0x275f, 0x2760, 0x2795, 0x2797, 0x27b0, 0x27b0, 0x27bf, 0x27cf, 0x27ec, 0x27ef, 0x2b00, 0x2e7f, 0x2e9a, 0x2e9a, 0x2ef4, 0x2eff, 0x2fd6, 0x2fef, 0x2ffc, 0x2fff, 0x3040, 0x3040, 0x3097, 0x3098, 0x3100, 0x3104, 0x312d, 0x3130, 0x318f, 0x318f, 0x31b8, 0x31ef, 0x321d, 0x321f, 0x3244, 0x3250, 0x327c, 0x327e, 0x32cc, 0x32cf, 0x32ff, 0x32ff, 0x3377, 0x337a, 0x33de, 0x33df, 0x33ff, 0x33ff, 0x4db6, 0x4dff, 0x9fa6, 0x9fff, 0xa48d, 0xa48f, 0xa4c7, 0xabff, 0xd7a4, 0xd7ff, 0xfa2e, 0xfa2f, 0xfa6b, 0xfaff, 0xfb07, 0xfb12, 0xfb18, 0xfb1c, 0xfb37, 0xfb37, 0xfb3d, 0xfb3d, 0xfb3f, 0xfb3f, 0xfb42, 0xfb42, 0xfb45, 0xfb45, 0xfbb2, 0xfbd2, 0xfd40, 0xfd4f, 0xfd90, 0xfd91, 0xfdc8, 0xfdcf, 0xfdfd, 0xfdff, 0xfe10, 0xfe1f, 0xfe24, 0xfe2f, 0xfe47, 0xfe48, 0xfe53, 0xfe53, 0xfe67, 0xfe67, 0xfe6c, 0xfe6f, 0xfe75, 0xfe75, 0xfefd, 0xfefe, 0xff00, 0xff00, 0xffbf, 0xffc1, 0xffc8, 0xffc9, 0xffd0, 0xffd1, 0xffd8, 0xffd9, 0xffdd, 0xffdf, 0xffe7, 0xffe7, 0xffef, 0xfff8, 0x10000, 0x102ff, 0x1031f, 0x1031f, 0x10324, 0x1032f, 0x1034b, 0x103ff, 0x10426, 0x10427, 0x1044e, 0x1cfff, 0x1d0f6, 0x1d0ff, 0x1d127, 0x1d129, 0x1d1de, 0x1d3ff, 0x1d455, 0x1d455, 0x1d49d, 0x1d49d, 0x1d4a0, 0x1d4a1, 0x1d4a3, 0x1d4a4, 0x1d4a7, 0x1d4a8, 0x1d4ad, 0x1d4ad, 0x1d4ba, 0x1d4ba, 0x1d4bc, 0x1d4bc, 0x1d4c1, 0x1d4c1, 0x1d4c4, 0x1d4c4, 0x1d506, 0x1d506, 0x1d50b, 0x1d50c, 0x1d515, 0x1d515, 0x1d51d, 0x1d51d, 0x1d53a, 0x1d53a, 0x1d53f, 0x1d53f, 0x1d545, 0x1d545, 0x1d547, 0x1d549, 0x1d551, 0x1d551, 0x1d6a4, 0x1d6a7, 0x1d7ca, 0x1d7cd, 0x1d800, 0x1fffd, 0x2a6d7, 0x2f7ff, 0x2fa1e, 0x2fffd, 0x30000, 0x3fffd, 0x40000, 0x4fffd, 0x50000, 0x5fffd, 0x60000, 0x6fffd, 0x70000, 0x7fffd, 0x80000, 0x8fffd, 0x90000, 0x9fffd, 0xa0000, 0xafffd, 0xb0000, 0xbfffd, 0xc0000, 0xcfffd, 0xd0000, 0xdfffd, 0xe0000, 0xe0000, 0xe0002, 0xe001f, 0xe0080, 0xefffd]; +// prettier-ignore-end + +var isUnassignedCodePoint = function isUnassignedCodePoint(character) { + return inRange(character, unassigned_code_points); +}; + +// prettier-ignore-start +/** + * B.1 Commonly mapped to nothing + * @link https://tools.ietf.org/html/rfc3454#appendix-B.1 + */ +var commonly_mapped_to_nothing = [0x00ad, 0x00ad, 0x034f, 0x034f, 0x1806, 0x1806, 0x180b, 0x180b, 0x180c, 0x180c, 0x180d, 0x180d, 0x200b, 0x200b, 0x200c, 0x200c, 0x200d, 0x200d, 0x2060, 0x2060, 0xfe00, 0xfe00, 0xfe01, 0xfe01, 0xfe02, 0xfe02, 0xfe03, 0xfe03, 0xfe04, 0xfe04, 0xfe05, 0xfe05, 0xfe06, 0xfe06, 0xfe07, 0xfe07, 0xfe08, 0xfe08, 0xfe09, 0xfe09, 0xfe0a, 0xfe0a, 0xfe0b, 0xfe0b, 0xfe0c, 0xfe0c, 0xfe0d, 0xfe0d, 0xfe0e, 0xfe0e, 0xfe0f, 0xfe0f, 0xfeff, 0xfeff]; +// prettier-ignore-end + +var isCommonlyMappedToNothing = function isCommonlyMappedToNothing(character) { + return inRange(character, commonly_mapped_to_nothing); +}; + +// prettier-ignore-start +/** + * C.1.2 Non-ASCII space characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.1.2 + */ +var non_ASCII_space_characters = [0x00a0, 0x00a0 /* NO-BREAK SPACE */, 0x1680, 0x1680 /* OGHAM SPACE MARK */, 0x2000, 0x2000 /* EN QUAD */, 0x2001, 0x2001 /* EM QUAD */, 0x2002, 0x2002 /* EN SPACE */, 0x2003, 0x2003 /* EM SPACE */, 0x2004, 0x2004 /* THREE-PER-EM SPACE */, 0x2005, 0x2005 /* FOUR-PER-EM SPACE */, 0x2006, 0x2006 /* SIX-PER-EM SPACE */, 0x2007, 0x2007 /* FIGURE SPACE */, 0x2008, 0x2008 /* PUNCTUATION SPACE */, 0x2009, 0x2009 /* THIN SPACE */, 0x200a, 0x200a /* HAIR SPACE */, 0x200b, 0x200b /* ZERO WIDTH SPACE */, 0x202f, 0x202f /* NARROW NO-BREAK SPACE */, 0x205f, 0x205f /* MEDIUM MATHEMATICAL SPACE */, 0x3000, 0x3000 /* IDEOGRAPHIC SPACE */]; +// prettier-ignore-end + +var isNonASCIISpaceCharacter = function isNonASCIISpaceCharacter(character) { + return inRange(character, non_ASCII_space_characters); +}; + +// prettier-ignore-start +var non_ASCII_controls_characters = [ +/** + * C.2.2 Non-ASCII control characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.2 + */ +0x0080, 0x009f /* [CONTROL CHARACTERS] */, 0x06dd, 0x06dd /* ARABIC END OF AYAH */, 0x070f, 0x070f /* SYRIAC ABBREVIATION MARK */, 0x180e, 0x180e /* MONGOLIAN VOWEL SEPARATOR */, 0x200c, 0x200c /* ZERO WIDTH NON-JOINER */, 0x200d, 0x200d /* ZERO WIDTH JOINER */, 0x2028, 0x2028 /* LINE SEPARATOR */, 0x2029, 0x2029 /* PARAGRAPH SEPARATOR */, 0x2060, 0x2060 /* WORD JOINER */, 0x2061, 0x2061 /* FUNCTION APPLICATION */, 0x2062, 0x2062 /* INVISIBLE TIMES */, 0x2063, 0x2063 /* INVISIBLE SEPARATOR */, 0x206a, 0x206f /* [CONTROL CHARACTERS] */, 0xfeff, 0xfeff /* ZERO WIDTH NO-BREAK SPACE */, 0xfff9, 0xfffc /* [CONTROL CHARACTERS] */, 0x1d173, 0x1d17a /* [MUSICAL CONTROL CHARACTERS] */]; +var non_character_codepoints = [ +/** + * C.4 Non-character code points + * @link https://tools.ietf.org/html/rfc3454#appendix-C.4 + */ +0xfdd0, 0xfdef /* [NONCHARACTER CODE POINTS] */, 0xfffe, 0xffff /* [NONCHARACTER CODE POINTS] */, 0x1fffe, 0x1ffff /* [NONCHARACTER CODE POINTS] */, 0x2fffe, 0x2ffff /* [NONCHARACTER CODE POINTS] */, 0x3fffe, 0x3ffff /* [NONCHARACTER CODE POINTS] */, 0x4fffe, 0x4ffff /* [NONCHARACTER CODE POINTS] */, 0x5fffe, 0x5ffff /* [NONCHARACTER CODE POINTS] */, 0x6fffe, 0x6ffff /* [NONCHARACTER CODE POINTS] */, 0x7fffe, 0x7ffff /* [NONCHARACTER CODE POINTS] */, 0x8fffe, 0x8ffff /* [NONCHARACTER CODE POINTS] */, 0x9fffe, 0x9ffff /* [NONCHARACTER CODE POINTS] */, 0xafffe, 0xaffff /* [NONCHARACTER CODE POINTS] */, 0xbfffe, 0xbffff /* [NONCHARACTER CODE POINTS] */, 0xcfffe, 0xcffff /* [NONCHARACTER CODE POINTS] */, 0xdfffe, 0xdffff /* [NONCHARACTER CODE POINTS] */, 0xefffe, 0xeffff /* [NONCHARACTER CODE POINTS] */, 0x10fffe, 0x10ffff /* [NONCHARACTER CODE POINTS] */]; + +/** + * 2.3. Prohibited Output + */ +var prohibited_characters = [ +/** + * C.2.1 ASCII control characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.2.1 + */ +0, 0x001f /* [CONTROL CHARACTERS] */, 0x007f, 0x007f /* DELETE */, +/** + * C.8 Change display properties or are deprecated + * @link https://tools.ietf.org/html/rfc3454#appendix-C.8 + */ +0x0340, 0x0340 /* COMBINING GRAVE TONE MARK */, 0x0341, 0x0341 /* COMBINING ACUTE TONE MARK */, 0x200e, 0x200e /* LEFT-TO-RIGHT MARK */, 0x200f, 0x200f /* RIGHT-TO-LEFT MARK */, 0x202a, 0x202a /* LEFT-TO-RIGHT EMBEDDING */, 0x202b, 0x202b /* RIGHT-TO-LEFT EMBEDDING */, 0x202c, 0x202c /* POP DIRECTIONAL FORMATTING */, 0x202d, 0x202d /* LEFT-TO-RIGHT OVERRIDE */, 0x202e, 0x202e /* RIGHT-TO-LEFT OVERRIDE */, 0x206a, 0x206a /* INHIBIT SYMMETRIC SWAPPING */, 0x206b, 0x206b /* ACTIVATE SYMMETRIC SWAPPING */, 0x206c, 0x206c /* INHIBIT ARABIC FORM SHAPING */, 0x206d, 0x206d /* ACTIVATE ARABIC FORM SHAPING */, 0x206e, 0x206e /* NATIONAL DIGIT SHAPES */, 0x206f, 0x206f /* NOMINAL DIGIT SHAPES */, +/** + * C.7 Inappropriate for canonical representation + * @link https://tools.ietf.org/html/rfc3454#appendix-C.7 + */ +0x2ff0, 0x2ffb /* [IDEOGRAPHIC DESCRIPTION CHARACTERS] */, +/** + * C.5 Surrogate codes + * @link https://tools.ietf.org/html/rfc3454#appendix-C.5 + */ +0xd800, 0xdfff, +/** + * C.3 Private use + * @link https://tools.ietf.org/html/rfc3454#appendix-C.3 + */ +0xe000, 0xf8ff /* [PRIVATE USE, PLANE 0] */, +/** + * C.6 Inappropriate for plain text + * @link https://tools.ietf.org/html/rfc3454#appendix-C.6 + */ +0xfff9, 0xfff9 /* INTERLINEAR ANNOTATION ANCHOR */, 0xfffa, 0xfffa /* INTERLINEAR ANNOTATION SEPARATOR */, 0xfffb, 0xfffb /* INTERLINEAR ANNOTATION TERMINATOR */, 0xfffc, 0xfffc /* OBJECT REPLACEMENT CHARACTER */, 0xfffd, 0xfffd /* REPLACEMENT CHARACTER */, +/** + * C.9 Tagging characters + * @link https://tools.ietf.org/html/rfc3454#appendix-C.9 + */ +0xe0001, 0xe0001 /* LANGUAGE TAG */, 0xe0020, 0xe007f /* [TAGGING CHARACTERS] */, +/** + * C.3 Private use + * @link https://tools.ietf.org/html/rfc3454#appendix-C.3 + */ + +0xf0000, 0xffffd /* [PRIVATE USE, PLANE 15] */, 0x100000, 0x10fffd /* [PRIVATE USE, PLANE 16] */]; +// prettier-ignore-end + +var isProhibitedCharacter = function isProhibitedCharacter(character) { + return inRange(character, non_ASCII_space_characters) || inRange(character, prohibited_characters) || inRange(character, non_ASCII_controls_characters) || inRange(character, non_character_codepoints); +}; + +// prettier-ignore-start +/** + * D.1 Characters with bidirectional property "R" or "AL" + * @link https://tools.ietf.org/html/rfc3454#appendix-D.1 + */ +var bidirectional_r_al = [0x05be, 0x05be, 0x05c0, 0x05c0, 0x05c3, 0x05c3, 0x05d0, 0x05ea, 0x05f0, 0x05f4, 0x061b, 0x061b, 0x061f, 0x061f, 0x0621, 0x063a, 0x0640, 0x064a, 0x066d, 0x066f, 0x0671, 0x06d5, 0x06dd, 0x06dd, 0x06e5, 0x06e6, 0x06fa, 0x06fe, 0x0700, 0x070d, 0x0710, 0x0710, 0x0712, 0x072c, 0x0780, 0x07a5, 0x07b1, 0x07b1, 0x200f, 0x200f, 0xfb1d, 0xfb1d, 0xfb1f, 0xfb28, 0xfb2a, 0xfb36, 0xfb38, 0xfb3c, 0xfb3e, 0xfb3e, 0xfb40, 0xfb41, 0xfb43, 0xfb44, 0xfb46, 0xfbb1, 0xfbd3, 0xfd3d, 0xfd50, 0xfd8f, 0xfd92, 0xfdc7, 0xfdf0, 0xfdfc, 0xfe70, 0xfe74, 0xfe76, 0xfefc]; +// prettier-ignore-end + +var isBidirectionalRAL = function isBidirectionalRAL(character) { + return inRange(character, bidirectional_r_al); +}; + +// prettier-ignore-start +/** + * D.2 Characters with bidirectional property "L" + * @link https://tools.ietf.org/html/rfc3454#appendix-D.2 + */ +var bidirectional_l = [0x0041, 0x005a, 0x0061, 0x007a, 0x00aa, 0x00aa, 0x00b5, 0x00b5, 0x00ba, 0x00ba, 0x00c0, 0x00d6, 0x00d8, 0x00f6, 0x00f8, 0x0220, 0x0222, 0x0233, 0x0250, 0x02ad, 0x02b0, 0x02b8, 0x02bb, 0x02c1, 0x02d0, 0x02d1, 0x02e0, 0x02e4, 0x02ee, 0x02ee, 0x037a, 0x037a, 0x0386, 0x0386, 0x0388, 0x038a, 0x038c, 0x038c, 0x038e, 0x03a1, 0x03a3, 0x03ce, 0x03d0, 0x03f5, 0x0400, 0x0482, 0x048a, 0x04ce, 0x04d0, 0x04f5, 0x04f8, 0x04f9, 0x0500, 0x050f, 0x0531, 0x0556, 0x0559, 0x055f, 0x0561, 0x0587, 0x0589, 0x0589, 0x0903, 0x0903, 0x0905, 0x0939, 0x093d, 0x0940, 0x0949, 0x094c, 0x0950, 0x0950, 0x0958, 0x0961, 0x0964, 0x0970, 0x0982, 0x0983, 0x0985, 0x098c, 0x098f, 0x0990, 0x0993, 0x09a8, 0x09aa, 0x09b0, 0x09b2, 0x09b2, 0x09b6, 0x09b9, 0x09be, 0x09c0, 0x09c7, 0x09c8, 0x09cb, 0x09cc, 0x09d7, 0x09d7, 0x09dc, 0x09dd, 0x09df, 0x09e1, 0x09e6, 0x09f1, 0x09f4, 0x09fa, 0x0a05, 0x0a0a, 0x0a0f, 0x0a10, 0x0a13, 0x0a28, 0x0a2a, 0x0a30, 0x0a32, 0x0a33, 0x0a35, 0x0a36, 0x0a38, 0x0a39, 0x0a3e, 0x0a40, 0x0a59, 0x0a5c, 0x0a5e, 0x0a5e, 0x0a66, 0x0a6f, 0x0a72, 0x0a74, 0x0a83, 0x0a83, 0x0a85, 0x0a8b, 0x0a8d, 0x0a8d, 0x0a8f, 0x0a91, 0x0a93, 0x0aa8, 0x0aaa, 0x0ab0, 0x0ab2, 0x0ab3, 0x0ab5, 0x0ab9, 0x0abd, 0x0ac0, 0x0ac9, 0x0ac9, 0x0acb, 0x0acc, 0x0ad0, 0x0ad0, 0x0ae0, 0x0ae0, 0x0ae6, 0x0aef, 0x0b02, 0x0b03, 0x0b05, 0x0b0c, 0x0b0f, 0x0b10, 0x0b13, 0x0b28, 0x0b2a, 0x0b30, 0x0b32, 0x0b33, 0x0b36, 0x0b39, 0x0b3d, 0x0b3e, 0x0b40, 0x0b40, 0x0b47, 0x0b48, 0x0b4b, 0x0b4c, 0x0b57, 0x0b57, 0x0b5c, 0x0b5d, 0x0b5f, 0x0b61, 0x0b66, 0x0b70, 0x0b83, 0x0b83, 0x0b85, 0x0b8a, 0x0b8e, 0x0b90, 0x0b92, 0x0b95, 0x0b99, 0x0b9a, 0x0b9c, 0x0b9c, 0x0b9e, 0x0b9f, 0x0ba3, 0x0ba4, 0x0ba8, 0x0baa, 0x0bae, 0x0bb5, 0x0bb7, 0x0bb9, 0x0bbe, 0x0bbf, 0x0bc1, 0x0bc2, 0x0bc6, 0x0bc8, 0x0bca, 0x0bcc, 0x0bd7, 0x0bd7, 0x0be7, 0x0bf2, 0x0c01, 0x0c03, 0x0c05, 0x0c0c, 0x0c0e, 0x0c10, 0x0c12, 0x0c28, 0x0c2a, 0x0c33, 0x0c35, 0x0c39, 0x0c41, 0x0c44, 0x0c60, 0x0c61, 0x0c66, 0x0c6f, 0x0c82, 0x0c83, 0x0c85, 0x0c8c, 0x0c8e, 0x0c90, 0x0c92, 0x0ca8, 0x0caa, 0x0cb3, 0x0cb5, 0x0cb9, 0x0cbe, 0x0cbe, 0x0cc0, 0x0cc4, 0x0cc7, 0x0cc8, 0x0cca, 0x0ccb, 0x0cd5, 0x0cd6, 0x0cde, 0x0cde, 0x0ce0, 0x0ce1, 0x0ce6, 0x0cef, 0x0d02, 0x0d03, 0x0d05, 0x0d0c, 0x0d0e, 0x0d10, 0x0d12, 0x0d28, 0x0d2a, 0x0d39, 0x0d3e, 0x0d40, 0x0d46, 0x0d48, 0x0d4a, 0x0d4c, 0x0d57, 0x0d57, 0x0d60, 0x0d61, 0x0d66, 0x0d6f, 0x0d82, 0x0d83, 0x0d85, 0x0d96, 0x0d9a, 0x0db1, 0x0db3, 0x0dbb, 0x0dbd, 0x0dbd, 0x0dc0, 0x0dc6, 0x0dcf, 0x0dd1, 0x0dd8, 0x0ddf, 0x0df2, 0x0df4, 0x0e01, 0x0e30, 0x0e32, 0x0e33, 0x0e40, 0x0e46, 0x0e4f, 0x0e5b, 0x0e81, 0x0e82, 0x0e84, 0x0e84, 0x0e87, 0x0e88, 0x0e8a, 0x0e8a, 0x0e8d, 0x0e8d, 0x0e94, 0x0e97, 0x0e99, 0x0e9f, 0x0ea1, 0x0ea3, 0x0ea5, 0x0ea5, 0x0ea7, 0x0ea7, 0x0eaa, 0x0eab, 0x0ead, 0x0eb0, 0x0eb2, 0x0eb3, 0x0ebd, 0x0ebd, 0x0ec0, 0x0ec4, 0x0ec6, 0x0ec6, 0x0ed0, 0x0ed9, 0x0edc, 0x0edd, 0x0f00, 0x0f17, 0x0f1a, 0x0f34, 0x0f36, 0x0f36, 0x0f38, 0x0f38, 0x0f3e, 0x0f47, 0x0f49, 0x0f6a, 0x0f7f, 0x0f7f, 0x0f85, 0x0f85, 0x0f88, 0x0f8b, 0x0fbe, 0x0fc5, 0x0fc7, 0x0fcc, 0x0fcf, 0x0fcf, 0x1000, 0x1021, 0x1023, 0x1027, 0x1029, 0x102a, 0x102c, 0x102c, 0x1031, 0x1031, 0x1038, 0x1038, 0x1040, 0x1057, 0x10a0, 0x10c5, 0x10d0, 0x10f8, 0x10fb, 0x10fb, 0x1100, 0x1159, 0x115f, 0x11a2, 0x11a8, 0x11f9, 0x1200, 0x1206, 0x1208, 0x1246, 0x1248, 0x1248, 0x124a, 0x124d, 0x1250, 0x1256, 0x1258, 0x1258, 0x125a, 0x125d, 0x1260, 0x1286, 0x1288, 0x1288, 0x128a, 0x128d, 0x1290, 0x12ae, 0x12b0, 0x12b0, 0x12b2, 0x12b5, 0x12b8, 0x12be, 0x12c0, 0x12c0, 0x12c2, 0x12c5, 0x12c8, 0x12ce, 0x12d0, 0x12d6, 0x12d8, 0x12ee, 0x12f0, 0x130e, 0x1310, 0x1310, 0x1312, 0x1315, 0x1318, 0x131e, 0x1320, 0x1346, 0x1348, 0x135a, 0x1361, 0x137c, 0x13a0, 0x13f4, 0x1401, 0x1676, 0x1681, 0x169a, 0x16a0, 0x16f0, 0x1700, 0x170c, 0x170e, 0x1711, 0x1720, 0x1731, 0x1735, 0x1736, 0x1740, 0x1751, 0x1760, 0x176c, 0x176e, 0x1770, 0x1780, 0x17b6, 0x17be, 0x17c5, 0x17c7, 0x17c8, 0x17d4, 0x17da, 0x17dc, 0x17dc, 0x17e0, 0x17e9, 0x1810, 0x1819, 0x1820, 0x1877, 0x1880, 0x18a8, 0x1e00, 0x1e9b, 0x1ea0, 0x1ef9, 0x1f00, 0x1f15, 0x1f18, 0x1f1d, 0x1f20, 0x1f45, 0x1f48, 0x1f4d, 0x1f50, 0x1f57, 0x1f59, 0x1f59, 0x1f5b, 0x1f5b, 0x1f5d, 0x1f5d, 0x1f5f, 0x1f7d, 0x1f80, 0x1fb4, 0x1fb6, 0x1fbc, 0x1fbe, 0x1fbe, 0x1fc2, 0x1fc4, 0x1fc6, 0x1fcc, 0x1fd0, 0x1fd3, 0x1fd6, 0x1fdb, 0x1fe0, 0x1fec, 0x1ff2, 0x1ff4, 0x1ff6, 0x1ffc, 0x200e, 0x200e, 0x2071, 0x2071, 0x207f, 0x207f, 0x2102, 0x2102, 0x2107, 0x2107, 0x210a, 0x2113, 0x2115, 0x2115, 0x2119, 0x211d, 0x2124, 0x2124, 0x2126, 0x2126, 0x2128, 0x2128, 0x212a, 0x212d, 0x212f, 0x2131, 0x2133, 0x2139, 0x213d, 0x213f, 0x2145, 0x2149, 0x2160, 0x2183, 0x2336, 0x237a, 0x2395, 0x2395, 0x249c, 0x24e9, 0x3005, 0x3007, 0x3021, 0x3029, 0x3031, 0x3035, 0x3038, 0x303c, 0x3041, 0x3096, 0x309d, 0x309f, 0x30a1, 0x30fa, 0x30fc, 0x30ff, 0x3105, 0x312c, 0x3131, 0x318e, 0x3190, 0x31b7, 0x31f0, 0x321c, 0x3220, 0x3243, 0x3260, 0x327b, 0x327f, 0x32b0, 0x32c0, 0x32cb, 0x32d0, 0x32fe, 0x3300, 0x3376, 0x337b, 0x33dd, 0x33e0, 0x33fe, 0x3400, 0x4db5, 0x4e00, 0x9fa5, 0xa000, 0xa48c, 0xac00, 0xd7a3, 0xd800, 0xfa2d, 0xfa30, 0xfa6a, 0xfb00, 0xfb06, 0xfb13, 0xfb17, 0xff21, 0xff3a, 0xff41, 0xff5a, 0xff66, 0xffbe, 0xffc2, 0xffc7, 0xffca, 0xffcf, 0xffd2, 0xffd7, 0xffda, 0xffdc, 0x10300, 0x1031e, 0x10320, 0x10323, 0x10330, 0x1034a, 0x10400, 0x10425, 0x10428, 0x1044d, 0x1d000, 0x1d0f5, 0x1d100, 0x1d126, 0x1d12a, 0x1d166, 0x1d16a, 0x1d172, 0x1d183, 0x1d184, 0x1d18c, 0x1d1a9, 0x1d1ae, 0x1d1dd, 0x1d400, 0x1d454, 0x1d456, 0x1d49c, 0x1d49e, 0x1d49f, 0x1d4a2, 0x1d4a2, 0x1d4a5, 0x1d4a6, 0x1d4a9, 0x1d4ac, 0x1d4ae, 0x1d4b9, 0x1d4bb, 0x1d4bb, 0x1d4bd, 0x1d4c0, 0x1d4c2, 0x1d4c3, 0x1d4c5, 0x1d505, 0x1d507, 0x1d50a, 0x1d50d, 0x1d514, 0x1d516, 0x1d51c, 0x1d51e, 0x1d539, 0x1d53b, 0x1d53e, 0x1d540, 0x1d544, 0x1d546, 0x1d546, 0x1d54a, 0x1d550, 0x1d552, 0x1d6a3, 0x1d6a8, 0x1d7c9, 0x20000, 0x2a6d6, 0x2f800, 0x2fa1d, 0xf0000, 0xffffd, 0x100000, 0x10fffd]; +// prettier-ignore-end + +var isBidirectionalL = function isBidirectionalL(character) { + return inRange(character, bidirectional_l); +}; + +// 2.1. Mapping + +/** + * non-ASCII space characters [StringPrep, C.1.2] that can be + * mapped to SPACE (U+0020) + */ +var mapping2space = isNonASCIISpaceCharacter; + +/** + * the "commonly mapped to nothing" characters [StringPrep, B.1] + * that can be mapped to nothing. + */ +var mapping2nothing = isCommonlyMappedToNothing; + +// utils +var getCodePoint = function getCodePoint(character) { + return character.codePointAt(0); +}; +var first = function first(x) { + return x[0]; +}; +var last = function last(x) { + return x[x.length - 1]; +}; + +/** + * Convert provided string into an array of Unicode Code Points. + * Based on https://stackoverflow.com/a/21409165/1556249 + * and https://www.npmjs.com/package/code-point-at. + * @param {string} input + * @returns {number[]} + */ +function toCodePoints(input) { + var codepoints = []; + var size = input.length; + for (var i = 0; i < size; i += 1) { + var before = input.charCodeAt(i); + if (before >= 0xd800 && before <= 0xdbff && size > i + 1) { + var next = input.charCodeAt(i + 1); + if (next >= 0xdc00 && next <= 0xdfff) { + codepoints.push((before - 0xd800) * 0x400 + next - 0xdc00 + 0x10000); + i += 1; + continue; + } + } + codepoints.push(before); + } + return codepoints; +} + +/** + * SASLprep. + * @param {string} input + * @param {Object} opts + * @param {boolean} opts.allowUnassigned + * @returns {string} + */ +function saslprep(input) { + var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (typeof input !== 'string') { + throw new TypeError('Expected string.'); + } + if (input.length === 0) { + return ''; + } + + // 1. Map + var mapped_input = toCodePoints(input) + // 1.1 mapping to space + .map(function (character) { + return mapping2space(character) ? 0x20 : character; + }) + // 1.2 mapping to nothing + .filter(function (character) { + return !mapping2nothing(character); + }); + + // 2. Normalize + var normalized_input = String.fromCodePoint.apply(null, mapped_input).normalize('NFKC'); + var normalized_map = toCodePoints(normalized_input); + + // 3. Prohibit + var hasProhibited = normalized_map.some(isProhibitedCharacter); + if (hasProhibited) { + throw new Error('Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3'); + } + + // Unassigned Code Points + if (opts.allowUnassigned !== true) { + var hasUnassigned = normalized_map.some(isUnassignedCodePoint); + if (hasUnassigned) { + throw new Error('Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5'); + } + } + + // 4. check bidi + + var hasBidiRAL = normalized_map.some(isBidirectionalRAL); + var hasBidiL = normalized_map.some(isBidirectionalL); + + // 4.1 If a string contains any RandALCat character, the string MUST NOT + // contain any LCat character. + if (hasBidiRAL && hasBidiL) { + throw new Error('String must not contain RandALCat and LCat at the same time,' + ' see https://tools.ietf.org/html/rfc3454#section-6'); + } + + /** + * 4.2 If a string contains any RandALCat character, a RandALCat + * character MUST be the first character of the string, and a + * RandALCat character MUST be the last character of the string. + */ + + var isFirstBidiRAL = isBidirectionalRAL(getCodePoint(first(normalized_input))); + var isLastBidiRAL = isBidirectionalRAL(getCodePoint(last(normalized_input))); + if (hasBidiRAL && !(isFirstBidiRAL && isLastBidiRAL)) { + throw new Error('Bidirectional RandALCat character must be the first and the last' + ' character of the string, see https://tools.ietf.org/html/rfc3454#section-6'); + } + return normalized_input; +} + +/* + PDFSecurity - represents PDF security settings + By Yang Liu + */ +var PDFSecurity = /*#__PURE__*/function () { + function PDFSecurity(document) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (!options.ownerPassword && !options.userPassword) { + throw new Error('None of owner password and user password is defined.'); + } + this.document = document; + this._setupEncryption(options); + } + PDFSecurity.generateFileID = function generateFileID() { + var info = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var infoStr = info.CreationDate.getTime() + "\n"; + for (var key in info) { + // eslint-disable-next-line no-prototype-builtins + if (!info.hasOwnProperty(key)) { + continue; + } + infoStr += key + ": " + info[key].valueOf() + "\n"; + } + return wordArrayToBuffer(_cryptoJs.default.MD5(infoStr)); + }; + PDFSecurity.generateRandomWordArray = function generateRandomWordArray(bytes) { + return _cryptoJs.default.lib.WordArray.random(bytes); + }; + PDFSecurity.create = function create(document) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (!options.ownerPassword && !options.userPassword) { + return null; + } + return new PDFSecurity(document, options); + }; + var _proto7 = PDFSecurity.prototype; + _proto7._setupEncryption = function _setupEncryption(options) { + switch (options.pdfVersion) { + case '1.4': + case '1.5': + this.version = 2; + break; + case '1.6': + case '1.7': + this.version = 4; + break; + case '1.7ext3': + this.version = 5; + break; + default: + this.version = 1; + break; + } + var encDict = { + Filter: 'Standard' + }; + switch (this.version) { + case 1: + case 2: + case 4: + this._setupEncryptionV1V2V4(this.version, encDict, options); + break; + case 5: + this._setupEncryptionV5(encDict, options); + break; + } + this.dictionary = this.document.ref(encDict); + }; + _proto7._setupEncryptionV1V2V4 = function _setupEncryptionV1V2V4(v, encDict, options) { + var r, permissions; + switch (v) { + case 1: + r = 2; + this.keyBits = 40; + permissions = getPermissionsR2(options.permissions); + break; + case 2: + r = 3; + this.keyBits = 128; + permissions = getPermissionsR3(options.permissions); + break; + case 4: + r = 4; + this.keyBits = 128; + permissions = getPermissionsR3(options.permissions); + break; + } + var paddedUserPassword = processPasswordR2R3R4(options.userPassword); + var paddedOwnerPassword = options.ownerPassword ? processPasswordR2R3R4(options.ownerPassword) : paddedUserPassword; + var ownerPasswordEntry = getOwnerPasswordR2R3R4(r, this.keyBits, paddedUserPassword, paddedOwnerPassword); + this.encryptionKey = getEncryptionKeyR2R3R4(r, this.keyBits, this.document._id, paddedUserPassword, ownerPasswordEntry, permissions); + var userPasswordEntry; + if (r === 2) { + userPasswordEntry = getUserPasswordR2(this.encryptionKey); + } else { + userPasswordEntry = getUserPasswordR3R4(this.document._id, this.encryptionKey); + } + encDict.V = v; + if (v >= 2) { + encDict.Length = this.keyBits; + } + if (v === 4) { + encDict.CF = { + StdCF: { + AuthEvent: 'DocOpen', + CFM: 'AESV2', + Length: this.keyBits / 8 + } + }; + encDict.StmF = 'StdCF'; + encDict.StrF = 'StdCF'; + } + encDict.R = r; + encDict.O = wordArrayToBuffer(ownerPasswordEntry); + encDict.U = wordArrayToBuffer(userPasswordEntry); + encDict.P = permissions; + }; + _proto7._setupEncryptionV5 = function _setupEncryptionV5(encDict, options) { + this.keyBits = 256; + var permissions = getPermissionsR3(options.permissions); + var processedUserPassword = processPasswordR5(options.userPassword); + var processedOwnerPassword = options.ownerPassword ? processPasswordR5(options.ownerPassword) : processedUserPassword; + this.encryptionKey = getEncryptionKeyR5(PDFSecurity.generateRandomWordArray); + var userPasswordEntry = getUserPasswordR5(processedUserPassword, PDFSecurity.generateRandomWordArray); + var userKeySalt = _cryptoJs.default.lib.WordArray.create(userPasswordEntry.words.slice(10, 12), 8); + var userEncryptionKeyEntry = getUserEncryptionKeyR5(processedUserPassword, userKeySalt, this.encryptionKey); + var ownerPasswordEntry = getOwnerPasswordR5(processedOwnerPassword, userPasswordEntry, PDFSecurity.generateRandomWordArray); + var ownerKeySalt = _cryptoJs.default.lib.WordArray.create(ownerPasswordEntry.words.slice(10, 12), 8); + var ownerEncryptionKeyEntry = getOwnerEncryptionKeyR5(processedOwnerPassword, ownerKeySalt, userPasswordEntry, this.encryptionKey); + var permsEntry = getEncryptedPermissionsR5(permissions, this.encryptionKey, PDFSecurity.generateRandomWordArray); + encDict.V = 5; + encDict.Length = this.keyBits; + encDict.CF = { + StdCF: { + AuthEvent: 'DocOpen', + CFM: 'AESV3', + Length: this.keyBits / 8 + } + }; + encDict.StmF = 'StdCF'; + encDict.StrF = 'StdCF'; + encDict.R = 5; + encDict.O = wordArrayToBuffer(ownerPasswordEntry); + encDict.OE = wordArrayToBuffer(ownerEncryptionKeyEntry); + encDict.U = wordArrayToBuffer(userPasswordEntry); + encDict.UE = wordArrayToBuffer(userEncryptionKeyEntry); + encDict.P = permissions; + encDict.Perms = wordArrayToBuffer(permsEntry); + }; + _proto7.getEncryptFn = function getEncryptFn(obj, gen) { + var digest; + if (this.version < 5) { + digest = this.encryptionKey.clone().concat(_cryptoJs.default.lib.WordArray.create([(obj & 0xff) << 24 | (obj & 0xff00) << 8 | obj >> 8 & 0xff00 | gen & 0xff, (gen & 0xff00) << 16], 5)); + } + if (this.version === 1 || this.version === 2) { + var _key2 = _cryptoJs.default.MD5(digest); + _key2.sigBytes = Math.min(16, this.keyBits / 8 + 5); + return function (buffer) { + return wordArrayToBuffer(_cryptoJs.default.RC4.encrypt(_cryptoJs.default.lib.WordArray.create(buffer), _key2).ciphertext); + }; + } + var key; + if (this.version === 4) { + key = _cryptoJs.default.MD5(digest.concat(_cryptoJs.default.lib.WordArray.create([0x73416c54], 4))); + } else { + key = this.encryptionKey; + } + var iv = PDFSecurity.generateRandomWordArray(16); + var options = { + mode: _cryptoJs.default.mode.CBC, + padding: _cryptoJs.default.pad.Pkcs7, + iv: iv + }; + return function (buffer) { + return wordArrayToBuffer(iv.clone().concat(_cryptoJs.default.AES.encrypt(_cryptoJs.default.lib.WordArray.create(buffer), key, options).ciphertext)); + }; + }; + _proto7.end = function end() { + this.dictionary.end(); + }; + return PDFSecurity; +}(); +function getPermissionsR2() { + var permissionObject = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var permissions = 0xffffffc0 >> 0; + if (permissionObject.printing) { + permissions |= 4; + } + if (permissionObject.modifying) { + permissions |= 8; + } + if (permissionObject.copying) { + permissions |= 16; + } + if (permissionObject.annotating) { + permissions |= 32; + } + return permissions; +} +function getPermissionsR3() { + var permissionObject = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var permissions = 0xfffff0c0 >> 0; + if (permissionObject.printing === 'lowResolution') { + permissions |= 4; + } + if (permissionObject.printing === 'highResolution') { + permissions |= 2052; + } + if (permissionObject.modifying) { + permissions |= 8; + } + if (permissionObject.copying) { + permissions |= 16; + } + if (permissionObject.annotating) { + permissions |= 32; + } + if (permissionObject.fillingForms) { + permissions |= 256; + } + if (permissionObject.contentAccessibility) { + permissions |= 512; + } + if (permissionObject.documentAssembly) { + permissions |= 1024; + } + return permissions; +} +function getUserPasswordR2(encryptionKey) { + return _cryptoJs.default.RC4.encrypt(processPasswordR2R3R4(), encryptionKey).ciphertext; +} +function getUserPasswordR3R4(documentId, encryptionKey) { + var key = encryptionKey.clone(); + var cipher = _cryptoJs.default.MD5(processPasswordR2R3R4().concat(_cryptoJs.default.lib.WordArray.create(documentId))); + for (var i = 0; i < 20; i++) { + var xorRound = Math.ceil(key.sigBytes / 4); + for (var j = 0; j < xorRound; j++) { + key.words[j] = encryptionKey.words[j] ^ (i | i << 8 | i << 16 | i << 24); + } + cipher = _cryptoJs.default.RC4.encrypt(cipher, key).ciphertext; + } + return cipher.concat(_cryptoJs.default.lib.WordArray.create(null, 16)); +} +function getOwnerPasswordR2R3R4(r, keyBits, paddedUserPassword, paddedOwnerPassword) { + var digest = paddedOwnerPassword; + var round = r >= 3 ? 51 : 1; + for (var i = 0; i < round; i++) { + digest = _cryptoJs.default.MD5(digest); + } + var key = digest.clone(); + key.sigBytes = keyBits / 8; + var cipher = paddedUserPassword; + round = r >= 3 ? 20 : 1; + for (var _i2 = 0; _i2 < round; _i2++) { + var xorRound = Math.ceil(key.sigBytes / 4); + for (var j = 0; j < xorRound; j++) { + key.words[j] = digest.words[j] ^ (_i2 | _i2 << 8 | _i2 << 16 | _i2 << 24); + } + cipher = _cryptoJs.default.RC4.encrypt(cipher, key).ciphertext; + } + return cipher; +} +function getEncryptionKeyR2R3R4(r, keyBits, documentId, paddedUserPassword, ownerPasswordEntry, permissions) { + var key = paddedUserPassword.clone().concat(ownerPasswordEntry).concat(_cryptoJs.default.lib.WordArray.create([lsbFirstWord(permissions)], 4)).concat(_cryptoJs.default.lib.WordArray.create(documentId)); + var round = r >= 3 ? 51 : 1; + for (var i = 0; i < round; i++) { + key = _cryptoJs.default.MD5(key); + key.sigBytes = keyBits / 8; + } + return key; +} +function getUserPasswordR5(processedUserPassword, generateRandomWordArray) { + var validationSalt = generateRandomWordArray(8); + var keySalt = generateRandomWordArray(8); + return _cryptoJs.default.SHA256(processedUserPassword.clone().concat(validationSalt)).concat(validationSalt).concat(keySalt); +} +function getUserEncryptionKeyR5(processedUserPassword, userKeySalt, encryptionKey) { + var key = _cryptoJs.default.SHA256(processedUserPassword.clone().concat(userKeySalt)); + var options = { + mode: _cryptoJs.default.mode.CBC, + padding: _cryptoJs.default.pad.NoPadding, + iv: _cryptoJs.default.lib.WordArray.create(null, 16) + }; + return _cryptoJs.default.AES.encrypt(encryptionKey, key, options).ciphertext; +} +function getOwnerPasswordR5(processedOwnerPassword, userPasswordEntry, generateRandomWordArray) { + var validationSalt = generateRandomWordArray(8); + var keySalt = generateRandomWordArray(8); + return _cryptoJs.default.SHA256(processedOwnerPassword.clone().concat(validationSalt).concat(userPasswordEntry)).concat(validationSalt).concat(keySalt); +} +function getOwnerEncryptionKeyR5(processedOwnerPassword, ownerKeySalt, userPasswordEntry, encryptionKey) { + var key = _cryptoJs.default.SHA256(processedOwnerPassword.clone().concat(ownerKeySalt).concat(userPasswordEntry)); + var options = { + mode: _cryptoJs.default.mode.CBC, + padding: _cryptoJs.default.pad.NoPadding, + iv: _cryptoJs.default.lib.WordArray.create(null, 16) + }; + return _cryptoJs.default.AES.encrypt(encryptionKey, key, options).ciphertext; +} +function getEncryptionKeyR5(generateRandomWordArray) { + return generateRandomWordArray(32); +} +function getEncryptedPermissionsR5(permissions, encryptionKey, generateRandomWordArray) { + var cipher = _cryptoJs.default.lib.WordArray.create([lsbFirstWord(permissions), 0xffffffff, 0x54616462], 12).concat(generateRandomWordArray(4)); + var options = { + mode: _cryptoJs.default.mode.ECB, + padding: _cryptoJs.default.pad.NoPadding + }; + return _cryptoJs.default.AES.encrypt(cipher, encryptionKey, options).ciphertext; +} +function processPasswordR2R3R4() { + var password = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; + var out = Buffer.alloc(32); + var length = password.length; + var index = 0; + while (index < length && index < 32) { + var code = password.charCodeAt(index); + if (code > 0xff) { + throw new Error('Password contains one or more invalid characters.'); + } + out[index] = code; + index++; + } + while (index < 32) { + out[index] = PASSWORD_PADDING[index - length]; + index++; + } + return _cryptoJs.default.lib.WordArray.create(out); +} +function processPasswordR5() { + var password = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ''; + password = unescape(encodeURIComponent(saslprep(password))); + var length = Math.min(127, password.length); + var out = Buffer.alloc(length); + for (var i = 0; i < length; i++) { + out[i] = password.charCodeAt(i); + } + return _cryptoJs.default.lib.WordArray.create(out); +} +function lsbFirstWord(data) { + return (data & 0xff) << 24 | (data & 0xff00) << 8 | data >> 8 & 0xff00 | data >> 24 & 0xff; +} +function wordArrayToBuffer(wordArray) { + var byteArray = []; + for (var i = 0; i < wordArray.sigBytes; i++) { + byteArray.push(wordArray.words[Math.floor(i / 4)] >> 8 * (3 - i % 4) & 0xff); + } + return Buffer.from(byteArray); +} +var PASSWORD_PADDING = [0x28, 0xbf, 0x4e, 0x5e, 0x4e, 0x75, 0x8a, 0x41, 0x64, 0x00, 0x4e, 0x56, 0xff, 0xfa, 0x01, 0x08, 0x2e, 0x2e, 0x00, 0xb6, 0xd0, 0x68, 0x3e, 0x80, 0x2f, 0x0c, 0xa9, 0xfe, 0x64, 0x53, 0x69, 0x7a]; +var number = PDFObject.number; +var PDFGradient = /*#__PURE__*/function () { + function PDFGradient(doc) { + this.doc = doc; + this.stops = []; + this.embedded = false; + this.transform = [1, 0, 0, 1, 0, 0]; + } + var _proto8 = PDFGradient.prototype; + _proto8.stop = function stop(pos, color, opacity) { + if (opacity == null) { + opacity = 1; + } + color = this.doc._normalizeColor(color); + if (this.stops.length === 0) { + if (color.length === 3) { + this._colorSpace = 'DeviceRGB'; + } else if (color.length === 4) { + this._colorSpace = 'DeviceCMYK'; + } else if (color.length === 1) { + this._colorSpace = 'DeviceGray'; + } else { + throw new Error('Unknown color space'); + } + } else if (this._colorSpace === 'DeviceRGB' && color.length !== 3 || this._colorSpace === 'DeviceCMYK' && color.length !== 4 || this._colorSpace === 'DeviceGray' && color.length !== 1) { + throw new Error('All gradient stops must use the same color space'); + } + opacity = Math.max(0, Math.min(1, opacity)); + this.stops.push([pos, color, opacity]); + return this; + }; + _proto8.setTransform = function setTransform(m11, m12, m21, m22, dx, dy) { + this.transform = [m11, m12, m21, m22, dx, dy]; + return this; + }; + _proto8.embed = function embed(m) { + var fn; + var stopsLength = this.stops.length; + if (stopsLength === 0) { + return; + } + this.embedded = true; + this.matrix = m; + + // if the last stop comes before 100%, add a copy at 100% + var last = this.stops[stopsLength - 1]; + if (last[0] < 1) { + this.stops.push([1, last[1], last[2]]); + } + var bounds = []; + var encode = []; + var stops = []; + for (var i = 0; i < stopsLength - 1; i++) { + encode.push(0, 1); + if (i + 2 !== stopsLength) { + bounds.push(this.stops[i + 1][0]); + } + fn = this.doc.ref({ + FunctionType: 2, + Domain: [0, 1], + C0: this.stops[i + 0][1], + C1: this.stops[i + 1][1], + N: 1 + }); + stops.push(fn); + fn.end(); + } + + // if there are only two stops, we don't need a stitching function + if (stopsLength === 1) { + fn = stops[0]; + } else { + fn = this.doc.ref({ + FunctionType: 3, + // stitching function + Domain: [0, 1], + Functions: stops, + Bounds: bounds, + Encode: encode + }); + fn.end(); + } + this.id = "Sh" + ++this.doc._gradCount; + var shader = this.shader(fn); + shader.end(); + var pattern = this.doc.ref({ + Type: 'Pattern', + PatternType: 2, + Shading: shader, + Matrix: this.matrix.map(number) + }); + pattern.end(); + if (this.stops.some(function (stop) { + return stop[2] < 1; + })) { + var grad = this.opacityGradient(); + grad._colorSpace = 'DeviceGray'; + for (var _iterator2 = _createForOfIteratorHelperLoose(this.stops), _step2; !(_step2 = _iterator2()).done;) { + var stop = _step2.value; + grad.stop(stop[0], [stop[2]]); + } + grad = grad.embed(this.matrix); + var pageBBox = [0, 0, this.doc.page.width, this.doc.page.height]; + var form = this.doc.ref({ + Type: 'XObject', + Subtype: 'Form', + FormType: 1, + BBox: pageBBox, + Group: { + Type: 'Group', + S: 'Transparency', + CS: 'DeviceGray' + }, + Resources: { + ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'], + Pattern: { + Sh1: grad + } + } + }); + form.write('/Pattern cs /Sh1 scn'); + form.end(pageBBox.join(' ') + " re f"); + var gstate = this.doc.ref({ + Type: 'ExtGState', + SMask: { + Type: 'Mask', + S: 'Luminosity', + G: form + } + }); + gstate.end(); + var opacityPattern = this.doc.ref({ + Type: 'Pattern', + PatternType: 1, + PaintType: 1, + TilingType: 2, + BBox: pageBBox, + XStep: pageBBox[2], + YStep: pageBBox[3], + Resources: { + ProcSet: ['PDF', 'Text', 'ImageB', 'ImageC', 'ImageI'], + Pattern: { + Sh1: pattern + }, + ExtGState: { + Gs1: gstate + } + } + }); + opacityPattern.write('/Gs1 gs /Pattern cs /Sh1 scn'); + opacityPattern.end(pageBBox.join(' ') + " re f"); + this.doc.page.patterns[this.id] = opacityPattern; + } else { + this.doc.page.patterns[this.id] = pattern; + } + return pattern; + }; + _proto8.apply = function apply(stroke) { + // apply gradient transform to existing document ctm + var _this$doc$_ctm = this.doc._ctm, + m0 = _this$doc$_ctm[0], + m1 = _this$doc$_ctm[1], + m2 = _this$doc$_ctm[2], + m3 = _this$doc$_ctm[3], + m4 = _this$doc$_ctm[4], + m5 = _this$doc$_ctm[5]; + var _this$transform = this.transform, + m11 = _this$transform[0], + m12 = _this$transform[1], + m21 = _this$transform[2], + m22 = _this$transform[3], + dx = _this$transform[4], + dy = _this$transform[5]; + var m = [m0 * m11 + m2 * m12, m1 * m11 + m3 * m12, m0 * m21 + m2 * m22, m1 * m21 + m3 * m22, m0 * dx + m2 * dy + m4, m1 * dx + m3 * dy + m5]; + if (!this.embedded || m.join(' ') !== this.matrix.join(' ')) { + this.embed(m); + } + this.doc._setColorSpace('Pattern', stroke); + var op = stroke ? 'SCN' : 'scn'; + return this.doc.addContent("/" + this.id + " " + op); + }; + return PDFGradient; +}(); +var PDFLinearGradient = /*#__PURE__*/function (_PDFGradient) { + function PDFLinearGradient(doc, x1, y1, x2, y2) { + var _this3; + _this3 = _PDFGradient.call(this, doc) || this; + _this3.x1 = x1; + _this3.y1 = y1; + _this3.x2 = x2; + _this3.y2 = y2; + return _this3; + } + _inheritsLoose(PDFLinearGradient, _PDFGradient); + var _proto9 = PDFLinearGradient.prototype; + _proto9.shader = function shader(fn) { + return this.doc.ref({ + ShadingType: 2, + ColorSpace: this._colorSpace, + Coords: [this.x1, this.y1, this.x2, this.y2], + Function: fn, + Extend: [true, true] + }); + }; + _proto9.opacityGradient = function opacityGradient() { + return new PDFLinearGradient(this.doc, this.x1, this.y1, this.x2, this.y2); + }; + return PDFLinearGradient; +}(PDFGradient); +var PDFRadialGradient = /*#__PURE__*/function (_PDFGradient2) { + function PDFRadialGradient(doc, x1, y1, r1, x2, y2, r2) { + var _this4; + _this4 = _PDFGradient2.call(this, doc) || this; + _this4.doc = doc; + _this4.x1 = x1; + _this4.y1 = y1; + _this4.r1 = r1; + _this4.x2 = x2; + _this4.y2 = y2; + _this4.r2 = r2; + return _this4; + } + _inheritsLoose(PDFRadialGradient, _PDFGradient2); + var _proto0 = PDFRadialGradient.prototype; + _proto0.shader = function shader(fn) { + return this.doc.ref({ + ShadingType: 3, + ColorSpace: this._colorSpace, + Coords: [this.x1, this.y1, this.r1, this.x2, this.y2, this.r2], + Function: fn, + Extend: [true, true] + }); + }; + _proto0.opacityGradient = function opacityGradient() { + return new PDFRadialGradient(this.doc, this.x1, this.y1, this.r1, this.x2, this.y2, this.r2); + }; + return PDFRadialGradient; +}(PDFGradient); +var Gradient = { + PDFGradient: PDFGradient, + PDFLinearGradient: PDFLinearGradient, + PDFRadialGradient: PDFRadialGradient +}; + +/* +PDF tiling pattern support. Uncolored only. + */ + +var underlyingColorSpaces = ['DeviceCMYK', 'DeviceRGB']; +var PDFTilingPattern = /*#__PURE__*/function () { + function PDFTilingPattern(doc, bBox, xStep, yStep, stream) { + this.doc = doc; + this.bBox = bBox; + this.xStep = xStep; + this.yStep = yStep; + this.stream = stream; + } + var _proto1 = PDFTilingPattern.prototype; + _proto1.createPattern = function createPattern() { + // no resources needed for our current usage + // required entry + var resources = this.doc.ref(); + resources.end(); + // apply default transform matrix (flipped in the default doc._ctm) + // see document.js & gradient.js + var _this$doc$_ctm2 = this.doc._ctm, + m0 = _this$doc$_ctm2[0], + m1 = _this$doc$_ctm2[1], + m2 = _this$doc$_ctm2[2], + m3 = _this$doc$_ctm2[3], + m4 = _this$doc$_ctm2[4], + m5 = _this$doc$_ctm2[5]; + var m11 = 1, + m12 = 0, + m21 = 0, + m22 = 1, + dx = 0, + dy = 0; + var m = [m0 * m11 + m2 * m12, m1 * m11 + m3 * m12, m0 * m21 + m2 * m22, m1 * m21 + m3 * m22, m0 * dx + m2 * dy + m4, m1 * dx + m3 * dy + m5]; + var pattern = this.doc.ref({ + Type: 'Pattern', + PatternType: 1, + // tiling + PaintType: 2, + // 1-colored, 2-uncolored + TilingType: 2, + // 2-no distortion + BBox: this.bBox, + XStep: this.xStep, + YStep: this.yStep, + Matrix: m.map(function (v) { + return +v.toFixed(5); + }), + Resources: resources + }); + pattern.end(this.stream); + return pattern; + }; + _proto1.embedPatternColorSpaces = function embedPatternColorSpaces() { + var _this5 = this; + // map each pattern to an underlying color space + // and embed on each page + underlyingColorSpaces.forEach(function (csName) { + var csId = _this5.getPatternColorSpaceId(csName); + if (_this5.doc.page.colorSpaces[csId]) return; + var cs = _this5.doc.ref(['Pattern', csName]); + cs.end(); + _this5.doc.page.colorSpaces[csId] = cs; + }); + }; + _proto1.getPatternColorSpaceId = function getPatternColorSpaceId(underlyingColorspace) { + return "CsP" + underlyingColorspace; + }; + _proto1.embed = function embed() { + if (!this.id) { + this.doc._patternCount = this.doc._patternCount + 1; + this.id = 'P' + this.doc._patternCount; + this.pattern = this.createPattern(); + } + + // patterns are embedded in each page + if (!this.doc.page.patterns[this.id]) { + this.doc.page.patterns[this.id] = this.pattern; + } + }; + _proto1.apply = function apply(stroke, patternColor) { + // do any embedding/creating that might be needed + this.embedPatternColorSpaces(); + this.embed(); + var normalizedColor = this.doc._normalizeColor(patternColor); + if (!normalizedColor) throw Error("invalid pattern color. (value: " + patternColor + ")"); + + // select one of the pattern color spaces + var csId = this.getPatternColorSpaceId(this.doc._getColorSpace(normalizedColor)); + this.doc._setColorSpace(csId, stroke); + + // stroke/fill using the pattern and color (in the above underlying color space) + var op = stroke ? 'SCN' : 'scn'; + return this.doc.addContent(normalizedColor.join(' ') + " /" + this.id + " " + op); + }; + return PDFTilingPattern; +}(); +var pattern = { + PDFTilingPattern: PDFTilingPattern +}; +var PDFGradient$1 = Gradient.PDFGradient, + PDFLinearGradient$1 = Gradient.PDFLinearGradient, + PDFRadialGradient$1 = Gradient.PDFRadialGradient; +var PDFTilingPattern$1 = pattern.PDFTilingPattern; +var ColorMixin = { + initColor: function initColor() { + this.spotColors = {}; + // The opacity dictionaries + this._opacityRegistry = {}; + this._opacityCount = 0; + this._patternCount = 0; + return this._gradCount = 0; + }, + _normalizeColor: function _normalizeColor(color) { + if (typeof color === 'string') { + if (color.charAt(0) === '#') { + if (color.length === 4) { + color = color.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i, '#$1$1$2$2$3$3'); + } + var hex = parseInt(color.slice(1), 16); + color = [hex >> 16, hex >> 8 & 0xff, hex & 0xff]; + } else if (namedColors[color]) { + color = namedColors[color]; + } else if (this.spotColors[color]) { + return this.spotColors[color]; + } + } + if (Array.isArray(color)) { + // RGB + if (color.length === 3) { + color = color.map(function (part) { + return part / 255; + }); + // CMYK + } else if (color.length === 4) { + color = color.map(function (part) { + return part / 100; + }); + } + return color; + } + return null; + }, + _setColor: function _setColor(color, stroke) { + if (color instanceof PDFGradient$1) { + color.apply(stroke); + return true; + // see if tiling pattern, decode & apply it it + } else if (Array.isArray(color) && color[0] instanceof PDFTilingPattern$1) { + color[0].apply(stroke, color[1]); + return true; + } + // any other case should be a normal color and not a pattern + return this._setColorCore(color, stroke); + }, + _setColorCore: function _setColorCore(color, stroke) { + color = this._normalizeColor(color); + if (!color) { + return false; + } + var op = stroke ? 'SCN' : 'scn'; + var space = this._getColorSpace(color); + this._setColorSpace(space, stroke); + if (color instanceof SpotColor) { + this.page.colorSpaces[color.id] = color.ref; + this.addContent("1 " + op); + } else { + this.addContent(color.join(' ') + " " + op); + } + return true; + }, + _setColorSpace: function _setColorSpace(space, stroke) { + var op = stroke ? 'CS' : 'cs'; + return this.addContent("/" + space + " " + op); + }, + _getColorSpace: function _getColorSpace(color) { + if (color instanceof SpotColor) { + return color.id; + } + return color.length === 4 ? 'DeviceCMYK' : 'DeviceRGB'; + }, + fillColor: function fillColor(color, opacity) { + var set = this._setColor(color, false); + if (set) { + this.fillOpacity(opacity); + } + + // save this for text wrapper, which needs to reset + // the fill color on new pages + this._fillColor = [color, opacity]; + return this; + }, + strokeColor: function strokeColor(color, opacity) { + var set = this._setColor(color, true); + if (set) { + this.strokeOpacity(opacity); + } + return this; + }, + opacity: function opacity(_opacity) { + this._doOpacity(_opacity, _opacity); + return this; + }, + fillOpacity: function fillOpacity(opacity) { + this._doOpacity(opacity, null); + return this; + }, + strokeOpacity: function strokeOpacity(opacity) { + this._doOpacity(null, opacity); + return this; + }, + _doOpacity: function _doOpacity(fillOpacity, strokeOpacity) { + var dictionary, name; + if (fillOpacity == null && strokeOpacity == null) { + return; + } + if (fillOpacity != null) { + fillOpacity = Math.max(0, Math.min(1, fillOpacity)); + } + if (strokeOpacity != null) { + strokeOpacity = Math.max(0, Math.min(1, strokeOpacity)); + } + var key = fillOpacity + "_" + strokeOpacity; + if (this._opacityRegistry[key]) { + var _this$_opacityRegistr = this._opacityRegistry[key]; + dictionary = _this$_opacityRegistr[0]; + name = _this$_opacityRegistr[1]; + } else { + dictionary = { + Type: 'ExtGState' + }; + if (fillOpacity != null) { + dictionary.ca = fillOpacity; + } + if (strokeOpacity != null) { + dictionary.CA = strokeOpacity; + } + dictionary = this.ref(dictionary); + dictionary.end(); + var id = ++this._opacityCount; + name = "Gs" + id; + this._opacityRegistry[key] = [dictionary, name]; + } + this.page.ext_gstates[name] = dictionary; + return this.addContent("/" + name + " gs"); + }, + linearGradient: function linearGradient(x1, y1, x2, y2) { + return new PDFLinearGradient$1(this, x1, y1, x2, y2); + }, + radialGradient: function radialGradient(x1, y1, r1, x2, y2, r2) { + return new PDFRadialGradient$1(this, x1, y1, r1, x2, y2, r2); + }, + pattern: function pattern(bbox, xStep, yStep, stream) { + return new PDFTilingPattern$1(this, bbox, xStep, yStep, stream); + }, + addSpotColor: function addSpotColor(name, C, M, Y, K) { + var color = new SpotColor(this, name, C, M, Y, K); + this.spotColors[name] = color; + return this; + } +}; +var namedColors = { + aliceblue: [240, 248, 255], + antiquewhite: [250, 235, 215], + aqua: [0, 255, 255], + aquamarine: [127, 255, 212], + azure: [240, 255, 255], + beige: [245, 245, 220], + bisque: [255, 228, 196], + black: [0, 0, 0], + blanchedalmond: [255, 235, 205], + blue: [0, 0, 255], + blueviolet: [138, 43, 226], + brown: [165, 42, 42], + burlywood: [222, 184, 135], + cadetblue: [95, 158, 160], + chartreuse: [127, 255, 0], + chocolate: [210, 105, 30], + coral: [255, 127, 80], + cornflowerblue: [100, 149, 237], + cornsilk: [255, 248, 220], + crimson: [220, 20, 60], + cyan: [0, 255, 255], + darkblue: [0, 0, 139], + darkcyan: [0, 139, 139], + darkgoldenrod: [184, 134, 11], + darkgray: [169, 169, 169], + darkgreen: [0, 100, 0], + darkgrey: [169, 169, 169], + darkkhaki: [189, 183, 107], + darkmagenta: [139, 0, 139], + darkolivegreen: [85, 107, 47], + darkorange: [255, 140, 0], + darkorchid: [153, 50, 204], + darkred: [139, 0, 0], + darksalmon: [233, 150, 122], + darkseagreen: [143, 188, 143], + darkslateblue: [72, 61, 139], + darkslategray: [47, 79, 79], + darkslategrey: [47, 79, 79], + darkturquoise: [0, 206, 209], + darkviolet: [148, 0, 211], + deeppink: [255, 20, 147], + deepskyblue: [0, 191, 255], + dimgray: [105, 105, 105], + dimgrey: [105, 105, 105], + dodgerblue: [30, 144, 255], + firebrick: [178, 34, 34], + floralwhite: [255, 250, 240], + forestgreen: [34, 139, 34], + fuchsia: [255, 0, 255], + gainsboro: [220, 220, 220], + ghostwhite: [248, 248, 255], + gold: [255, 215, 0], + goldenrod: [218, 165, 32], + gray: [128, 128, 128], + grey: [128, 128, 128], + green: [0, 128, 0], + greenyellow: [173, 255, 47], + honeydew: [240, 255, 240], + hotpink: [255, 105, 180], + indianred: [205, 92, 92], + indigo: [75, 0, 130], + ivory: [255, 255, 240], + khaki: [240, 230, 140], + lavender: [230, 230, 250], + lavenderblush: [255, 240, 245], + lawngreen: [124, 252, 0], + lemonchiffon: [255, 250, 205], + lightblue: [173, 216, 230], + lightcoral: [240, 128, 128], + lightcyan: [224, 255, 255], + lightgoldenrodyellow: [250, 250, 210], + lightgray: [211, 211, 211], + lightgreen: [144, 238, 144], + lightgrey: [211, 211, 211], + lightpink: [255, 182, 193], + lightsalmon: [255, 160, 122], + lightseagreen: [32, 178, 170], + lightskyblue: [135, 206, 250], + lightslategray: [119, 136, 153], + lightslategrey: [119, 136, 153], + lightsteelblue: [176, 196, 222], + lightyellow: [255, 255, 224], + lime: [0, 255, 0], + limegreen: [50, 205, 50], + linen: [250, 240, 230], + magenta: [255, 0, 255], + maroon: [128, 0, 0], + mediumaquamarine: [102, 205, 170], + mediumblue: [0, 0, 205], + mediumorchid: [186, 85, 211], + mediumpurple: [147, 112, 219], + mediumseagreen: [60, 179, 113], + mediumslateblue: [123, 104, 238], + mediumspringgreen: [0, 250, 154], + mediumturquoise: [72, 209, 204], + mediumvioletred: [199, 21, 133], + midnightblue: [25, 25, 112], + mintcream: [245, 255, 250], + mistyrose: [255, 228, 225], + moccasin: [255, 228, 181], + navajowhite: [255, 222, 173], + navy: [0, 0, 128], + oldlace: [253, 245, 230], + olive: [128, 128, 0], + olivedrab: [107, 142, 35], + orange: [255, 165, 0], + orangered: [255, 69, 0], + orchid: [218, 112, 214], + palegoldenrod: [238, 232, 170], + palegreen: [152, 251, 152], + paleturquoise: [175, 238, 238], + palevioletred: [219, 112, 147], + papayawhip: [255, 239, 213], + peachpuff: [255, 218, 185], + peru: [205, 133, 63], + pink: [255, 192, 203], + plum: [221, 160, 221], + powderblue: [176, 224, 230], + purple: [128, 0, 128], + red: [255, 0, 0], + rosybrown: [188, 143, 143], + royalblue: [65, 105, 225], + saddlebrown: [139, 69, 19], + salmon: [250, 128, 114], + sandybrown: [244, 164, 96], + seagreen: [46, 139, 87], + seashell: [255, 245, 238], + sienna: [160, 82, 45], + silver: [192, 192, 192], + skyblue: [135, 206, 235], + slateblue: [106, 90, 205], + slategray: [112, 128, 144], + slategrey: [112, 128, 144], + snow: [255, 250, 250], + springgreen: [0, 255, 127], + steelblue: [70, 130, 180], + tan: [210, 180, 140], + teal: [0, 128, 128], + thistle: [216, 191, 216], + tomato: [255, 99, 71], + turquoise: [64, 224, 208], + violet: [238, 130, 238], + wheat: [245, 222, 179], + white: [255, 255, 255], + whitesmoke: [245, 245, 245], + yellow: [255, 255, 0], + yellowgreen: [154, 205, 50] +}; +var cx, cy, px, py, sx, sy; +cx = cy = px = py = sx = sy = 0; +var parameters = { + A: 7, + a: 7, + C: 6, + c: 6, + H: 1, + h: 1, + L: 2, + l: 2, + M: 2, + m: 2, + Q: 4, + q: 4, + S: 4, + s: 4, + T: 2, + t: 2, + V: 1, + v: 1, + Z: 0, + z: 0 +}; +var parse = function parse(path) { + var cmd; + var ret = []; + var args = []; + var curArg = ''; + var foundDecimal = false; + var params = 0; + for (var _iterator3 = _createForOfIteratorHelperLoose(path), _step3; !(_step3 = _iterator3()).done;) { + var c = _step3.value; + if (parameters[c] != null) { + params = parameters[c]; + if (cmd) { + // save existing command + if (curArg.length > 0) { + args[args.length] = +curArg; + } + ret[ret.length] = { + cmd: cmd, + args: args + }; + args = []; + curArg = ''; + foundDecimal = false; + } + cmd = c; + } else if ([' ', ','].includes(c) || c === '-' && curArg.length > 0 && curArg[curArg.length - 1] !== 'e' || c === '.' && foundDecimal) { + if (curArg.length === 0) { + continue; + } + if (args.length === params) { + // handle reused commands + ret[ret.length] = { + cmd: cmd, + args: args + }; + args = [+curArg]; + + // handle assumed commands + if (cmd === 'M') { + cmd = 'L'; + } + if (cmd === 'm') { + cmd = 'l'; + } + } else { + args[args.length] = +curArg; + } + foundDecimal = c === '.'; + + // fix for negative numbers or repeated decimals with no delimeter between commands + curArg = ['-', '.'].includes(c) ? c : ''; + } else { + curArg += c; + if (c === '.') { + foundDecimal = true; + } + } + } + + // add the last command + if (curArg.length > 0) { + if (args.length === params) { + // handle reused commands + ret[ret.length] = { + cmd: cmd, + args: args + }; + args = [+curArg]; + + // handle assumed commands + if (cmd === 'M') { + cmd = 'L'; + } + if (cmd === 'm') { + cmd = 'l'; + } + } else { + args[args.length] = +curArg; + } + } + ret[ret.length] = { + cmd: cmd, + args: args + }; + return ret; +}; +var _apply = function apply(commands, doc) { + // current point, control point, and subpath starting point + cx = cy = px = py = sx = sy = 0; + + // run the commands + for (var i = 0; i < commands.length; i++) { + var c = commands[i]; + if (typeof runners[c.cmd] === 'function') { + runners[c.cmd](doc, c.args); + } + } +}; +var runners = { + M: function M(doc, a) { + cx = a[0]; + cy = a[1]; + px = py = null; + sx = cx; + sy = cy; + return doc.moveTo(cx, cy); + }, + m: function m(doc, a) { + cx += a[0]; + cy += a[1]; + px = py = null; + sx = cx; + sy = cy; + return doc.moveTo(cx, cy); + }, + C: function C(doc, a) { + cx = a[4]; + cy = a[5]; + px = a[2]; + py = a[3]; + return doc.bezierCurveTo.apply(doc, a); + }, + c: function c(doc, a) { + doc.bezierCurveTo(a[0] + cx, a[1] + cy, a[2] + cx, a[3] + cy, a[4] + cx, a[5] + cy); + px = cx + a[2]; + py = cy + a[3]; + cx += a[4]; + return cy += a[5]; + }, + S: function S(doc, a) { + if (px === null) { + px = cx; + py = cy; + } + doc.bezierCurveTo(cx - (px - cx), cy - (py - cy), a[0], a[1], a[2], a[3]); + px = a[0]; + py = a[1]; + cx = a[2]; + return cy = a[3]; + }, + s: function s(doc, a) { + if (px === null) { + px = cx; + py = cy; + } + doc.bezierCurveTo(cx - (px - cx), cy - (py - cy), cx + a[0], cy + a[1], cx + a[2], cy + a[3]); + px = cx + a[0]; + py = cy + a[1]; + cx += a[2]; + return cy += a[3]; + }, + Q: function Q(doc, a) { + px = a[0]; + py = a[1]; + cx = a[2]; + cy = a[3]; + return doc.quadraticCurveTo(a[0], a[1], cx, cy); + }, + q: function q(doc, a) { + doc.quadraticCurveTo(a[0] + cx, a[1] + cy, a[2] + cx, a[3] + cy); + px = cx + a[0]; + py = cy + a[1]; + cx += a[2]; + return cy += a[3]; + }, + T: function T(doc, a) { + if (px === null) { + px = cx; + py = cy; + } else { + px = cx - (px - cx); + py = cy - (py - cy); + } + doc.quadraticCurveTo(px, py, a[0], a[1]); + px = cx - (px - cx); + py = cy - (py - cy); + cx = a[0]; + return cy = a[1]; + }, + t: function t(doc, a) { + if (px === null) { + px = cx; + py = cy; + } else { + px = cx - (px - cx); + py = cy - (py - cy); + } + doc.quadraticCurveTo(px, py, cx + a[0], cy + a[1]); + cx += a[0]; + return cy += a[1]; + }, + A: function A(doc, a) { + solveArc(doc, cx, cy, a); + cx = a[5]; + return cy = a[6]; + }, + a: function a(doc, _a) { + _a[5] += cx; + _a[6] += cy; + solveArc(doc, cx, cy, _a); + cx = _a[5]; + return cy = _a[6]; + }, + L: function L(doc, a) { + cx = a[0]; + cy = a[1]; + px = py = null; + return doc.lineTo(cx, cy); + }, + l: function l(doc, a) { + cx += a[0]; + cy += a[1]; + px = py = null; + return doc.lineTo(cx, cy); + }, + H: function H(doc, a) { + cx = a[0]; + px = py = null; + return doc.lineTo(cx, cy); + }, + h: function h(doc, a) { + cx += a[0]; + px = py = null; + return doc.lineTo(cx, cy); + }, + V: function V(doc, a) { + cy = a[0]; + px = py = null; + return doc.lineTo(cx, cy); + }, + v: function v(doc, a) { + cy += a[0]; + px = py = null; + return doc.lineTo(cx, cy); + }, + Z: function Z(doc) { + doc.closePath(); + cx = sx; + return cy = sy; + }, + z: function z(doc) { + doc.closePath(); + cx = sx; + return cy = sy; + } +}; +var solveArc = function solveArc(doc, x, y, coords) { + var rx = coords[0], + ry = coords[1], + rot = coords[2], + large = coords[3], + sweep = coords[4], + ex = coords[5], + ey = coords[6]; + var segs = arcToSegments(ex, ey, rx, ry, large, sweep, rot, x, y); + for (var _iterator4 = _createForOfIteratorHelperLoose(segs), _step4; !(_step4 = _iterator4()).done;) { + var seg = _step4.value; + var bez = segmentToBezier.apply(void 0, seg); + doc.bezierCurveTo.apply(doc, bez); + } +}; + +// from Inkscape svgtopdf, thanks! +var arcToSegments = function arcToSegments(x, y, rx, ry, large, sweep, rotateX, ox, oy) { + var th = rotateX * (Math.PI / 180); + var sin_th = Math.sin(th); + var cos_th = Math.cos(th); + rx = Math.abs(rx); + ry = Math.abs(ry); + px = cos_th * (ox - x) * 0.5 + sin_th * (oy - y) * 0.5; + py = cos_th * (oy - y) * 0.5 - sin_th * (ox - x) * 0.5; + var pl = px * px / (rx * rx) + py * py / (ry * ry); + if (pl > 1) { + pl = Math.sqrt(pl); + rx *= pl; + ry *= pl; + } + var a00 = cos_th / rx; + var a01 = sin_th / rx; + var a10 = -sin_th / ry; + var a11 = cos_th / ry; + var x0 = a00 * ox + a01 * oy; + var y0 = a10 * ox + a11 * oy; + var x1 = a00 * x + a01 * y; + var y1 = a10 * x + a11 * y; + var d = (x1 - x0) * (x1 - x0) + (y1 - y0) * (y1 - y0); + var sfactor_sq = 1 / d - 0.25; + if (sfactor_sq < 0) { + sfactor_sq = 0; + } + var sfactor = Math.sqrt(sfactor_sq); + if (sweep === large) { + sfactor = -sfactor; + } + var xc = 0.5 * (x0 + x1) - sfactor * (y1 - y0); + var yc = 0.5 * (y0 + y1) + sfactor * (x1 - x0); + var th0 = Math.atan2(y0 - yc, x0 - xc); + var th1 = Math.atan2(y1 - yc, x1 - xc); + var th_arc = th1 - th0; + if (th_arc < 0 && sweep === 1) { + th_arc += 2 * Math.PI; + } else if (th_arc > 0 && sweep === 0) { + th_arc -= 2 * Math.PI; + } + var segments = Math.ceil(Math.abs(th_arc / (Math.PI * 0.5 + 0.001))); + var result = []; + for (var i = 0; i < segments; i++) { + var th2 = th0 + i * th_arc / segments; + var th3 = th0 + (i + 1) * th_arc / segments; + result[i] = [xc, yc, th2, th3, rx, ry, sin_th, cos_th]; + } + return result; +}; +var segmentToBezier = function segmentToBezier(cx, cy, th0, th1, rx, ry, sin_th, cos_th) { + var a00 = cos_th * rx; + var a01 = -sin_th * ry; + var a10 = sin_th * rx; + var a11 = cos_th * ry; + var th_half = 0.5 * (th1 - th0); + var t = 8 / 3 * Math.sin(th_half * 0.5) * Math.sin(th_half * 0.5) / Math.sin(th_half); + var x1 = cx + Math.cos(th0) - t * Math.sin(th0); + var y1 = cy + Math.sin(th0) + t * Math.cos(th0); + var x3 = cx + Math.cos(th1); + var y3 = cy + Math.sin(th1); + var x2 = x3 + t * Math.sin(th1); + var y2 = y3 - t * Math.cos(th1); + return [a00 * x1 + a01 * y1, a10 * x1 + a11 * y1, a00 * x2 + a01 * y2, a10 * x2 + a11 * y2, a00 * x3 + a01 * y3, a10 * x3 + a11 * y3]; +}; +var SVGPath = /*#__PURE__*/function () { + function SVGPath() {} + SVGPath.apply = function apply(doc, path) { + var commands = parse(path); + _apply(commands, doc); + }; + return SVGPath; +}(); +var number$1 = PDFObject.number; + +// This constant is used to approximate a symmetrical arc using a cubic +// Bezier curve. +var KAPPA = 4.0 * ((Math.sqrt(2) - 1.0) / 3.0); +var VectorMixin = { + initVector: function initVector() { + this._ctm = [1, 0, 0, 1, 0, 0]; // current transformation matrix + return this._ctmStack = []; + }, + save: function save() { + this._ctmStack.push(this._ctm.slice()); + // TODO: save/restore colorspace and styles so not setting it unnessesarily all the time? + return this.addContent('q'); + }, + restore: function restore() { + this._ctm = this._ctmStack.pop() || [1, 0, 0, 1, 0, 0]; + return this.addContent('Q'); + }, + closePath: function closePath() { + return this.addContent('h'); + }, + lineWidth: function lineWidth(w) { + return this.addContent(number$1(w) + " w"); + }, + _CAP_STYLES: { + BUTT: 0, + ROUND: 1, + SQUARE: 2 + }, + lineCap: function lineCap(c) { + if (typeof c === 'string') { + c = this._CAP_STYLES[c.toUpperCase()]; + } + return this.addContent(c + " J"); + }, + _JOIN_STYLES: { + MITER: 0, + ROUND: 1, + BEVEL: 2 + }, + lineJoin: function lineJoin(j) { + if (typeof j === 'string') { + j = this._JOIN_STYLES[j.toUpperCase()]; + } + return this.addContent(j + " j"); + }, + miterLimit: function miterLimit(m) { + return this.addContent(number$1(m) + " M"); + }, + dash: function dash(length) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var originalLength = length; + if (!Array.isArray(length)) { + length = [length, options.space || length]; + } + var valid = length.every(function (x) { + return Number.isFinite(x) && x > 0; + }); + if (!valid) { + throw new Error("dash(" + JSON.stringify(originalLength) + ", " + JSON.stringify(options) + ") invalid, lengths must be numeric and greater than zero"); + } + length = length.map(number$1).join(' '); + return this.addContent("[" + length + "] " + number$1(options.phase || 0) + " d"); + }, + undash: function undash() { + return this.addContent('[] 0 d'); + }, + moveTo: function moveTo(x, y) { + return this.addContent(number$1(x) + " " + number$1(y) + " m"); + }, + lineTo: function lineTo(x, y) { + return this.addContent(number$1(x) + " " + number$1(y) + " l"); + }, + bezierCurveTo: function bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y) { + return this.addContent(number$1(cp1x) + " " + number$1(cp1y) + " " + number$1(cp2x) + " " + number$1(cp2y) + " " + number$1(x) + " " + number$1(y) + " c"); + }, + quadraticCurveTo: function quadraticCurveTo(cpx, cpy, x, y) { + return this.addContent(number$1(cpx) + " " + number$1(cpy) + " " + number$1(x) + " " + number$1(y) + " v"); + }, + rect: function rect(x, y, w, h) { + return this.addContent(number$1(x) + " " + number$1(y) + " " + number$1(w) + " " + number$1(h) + " re"); + }, + roundedRect: function roundedRect(x, y, w, h, r) { + if (r == null) { + r = 0; + } + r = Math.min(r, 0.5 * w, 0.5 * h); + + // amount to inset control points from corners (see `ellipse`) + var c = r * (1.0 - KAPPA); + this.moveTo(x + r, y); + this.lineTo(x + w - r, y); + this.bezierCurveTo(x + w - c, y, x + w, y + c, x + w, y + r); + this.lineTo(x + w, y + h - r); + this.bezierCurveTo(x + w, y + h - c, x + w - c, y + h, x + w - r, y + h); + this.lineTo(x + r, y + h); + this.bezierCurveTo(x + c, y + h, x, y + h - c, x, y + h - r); + this.lineTo(x, y + r); + this.bezierCurveTo(x, y + c, x + c, y, x + r, y); + return this.closePath(); + }, + ellipse: function ellipse(x, y, r1, r2) { + // based on http://stackoverflow.com/questions/2172798/how-to-draw-an-oval-in-html5-canvas/2173084#2173084 + if (r2 == null) { + r2 = r1; + } + x -= r1; + y -= r2; + var ox = r1 * KAPPA; + var oy = r2 * KAPPA; + var xe = x + r1 * 2; + var ye = y + r2 * 2; + var xm = x + r1; + var ym = y + r2; + this.moveTo(x, ym); + this.bezierCurveTo(x, ym - oy, xm - ox, y, xm, y); + this.bezierCurveTo(xm + ox, y, xe, ym - oy, xe, ym); + this.bezierCurveTo(xe, ym + oy, xm + ox, ye, xm, ye); + this.bezierCurveTo(xm - ox, ye, x, ym + oy, x, ym); + return this.closePath(); + }, + circle: function circle(x, y, radius) { + return this.ellipse(x, y, radius); + }, + arc: function arc(x, y, radius, startAngle, endAngle, anticlockwise) { + if (anticlockwise == null) { + anticlockwise = false; + } + var TWO_PI = 2.0 * Math.PI; + var HALF_PI = 0.5 * Math.PI; + var deltaAng = endAngle - startAngle; + if (Math.abs(deltaAng) > TWO_PI) { + // draw only full circle if more than that is specified + deltaAng = TWO_PI; + } else if (deltaAng !== 0 && anticlockwise !== deltaAng < 0) { + // necessary to flip direction of rendering + var dir = anticlockwise ? -1 : 1; + deltaAng = dir * TWO_PI + deltaAng; + } + var numSegs = Math.ceil(Math.abs(deltaAng) / HALF_PI); + var segAng = deltaAng / numSegs; + var handleLen = segAng / HALF_PI * KAPPA * radius; + var curAng = startAngle; + + // component distances between anchor point and control point + var deltaCx = -Math.sin(curAng) * handleLen; + var deltaCy = Math.cos(curAng) * handleLen; + + // anchor point + var ax = x + Math.cos(curAng) * radius; + var ay = y + Math.sin(curAng) * radius; + + // calculate and render segments + this.moveTo(ax, ay); + for (var segIdx = 0; segIdx < numSegs; segIdx++) { + // starting control point + var cp1x = ax + deltaCx; + var cp1y = ay + deltaCy; + + // step angle + curAng += segAng; + + // next anchor point + ax = x + Math.cos(curAng) * radius; + ay = y + Math.sin(curAng) * radius; + + // next control point delta + deltaCx = -Math.sin(curAng) * handleLen; + deltaCy = Math.cos(curAng) * handleLen; + + // ending control point + var cp2x = ax - deltaCx; + var cp2y = ay - deltaCy; + + // render segment + this.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, ax, ay); + } + return this; + }, + polygon: function polygon() { + for (var _len = arguments.length, points = new Array(_len), _key = 0; _key < _len; _key++) { + points[_key] = arguments[_key]; + } + this.moveTo.apply(this, points.shift() || []); + for (var _i3 = 0, _points = points; _i3 < _points.length; _i3++) { + var point = _points[_i3]; + this.lineTo.apply(this, point || []); + } + return this.closePath(); + }, + path: function path(_path) { + SVGPath.apply(this, _path); + return this; + }, + _windingRule: function _windingRule(rule) { + if (/even-?odd/.test(rule)) { + return '*'; + } + return ''; + }, + fill: function fill(color, rule) { + if (/(even-?odd)|(non-?zero)/.test(color)) { + rule = color; + color = null; + } + if (color) { + this.fillColor(color); + } + return this.addContent("f" + this._windingRule(rule)); + }, + stroke: function stroke(color) { + if (color) { + this.strokeColor(color); + } + return this.addContent('S'); + }, + fillAndStroke: function fillAndStroke(fillColor, strokeColor, rule) { + if (strokeColor == null) { + strokeColor = fillColor; + } + var isFillRule = /(even-?odd)|(non-?zero)/; + if (isFillRule.test(fillColor)) { + rule = fillColor; + fillColor = null; + } + if (isFillRule.test(strokeColor)) { + rule = strokeColor; + strokeColor = fillColor; + } + if (fillColor) { + this.fillColor(fillColor); + this.strokeColor(strokeColor); + } + return this.addContent("B" + this._windingRule(rule)); + }, + clip: function clip(rule) { + return this.addContent("W" + this._windingRule(rule) + " n"); + }, + transform: function transform(m11, m12, m21, m22, dx, dy) { + // keep track of the current transformation matrix + if (m11 === 1 && m12 === 0 && m21 === 0 && m22 === 1 && dx === 0 && dy === 0) { + // Ignore identity transforms + return this; + } + var m = this._ctm; + var m0 = m[0], + m1 = m[1], + m2 = m[2], + m3 = m[3], + m4 = m[4], + m5 = m[5]; + m[0] = m0 * m11 + m2 * m12; + m[1] = m1 * m11 + m3 * m12; + m[2] = m0 * m21 + m2 * m22; + m[3] = m1 * m21 + m3 * m22; + m[4] = m0 * dx + m2 * dy + m4; + m[5] = m1 * dx + m3 * dy + m5; + var values = [m11, m12, m21, m22, dx, dy].map(function (v) { + return number$1(v); + }).join(' '); + return this.addContent(values + " cm"); + }, + translate: function translate(x, y) { + return this.transform(1, 0, 0, 1, x, y); + }, + rotate: function rotate(angle) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var y; + var rad = angle * Math.PI / 180; + var cos = Math.cos(rad); + var sin = Math.sin(rad); + var x = y = 0; + if (options.origin != null) { + var _options$origin = options.origin; + x = _options$origin[0]; + y = _options$origin[1]; + var x1 = x * cos - y * sin; + var y1 = x * sin + y * cos; + x -= x1; + y -= y1; + } + return this.transform(cos, sin, -sin, cos, x, y); + }, + scale: function scale(xFactor, yFactor) { + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var y; + if (yFactor == null) { + yFactor = xFactor; + } + if (typeof yFactor === 'object') { + options = yFactor; + yFactor = xFactor; + } + var x = y = 0; + if (options.origin != null) { + var _options$origin2 = options.origin; + x = _options$origin2[0]; + y = _options$origin2[1]; + x -= xFactor * x; + y -= yFactor * y; + } + return this.transform(xFactor, 0, 0, yFactor, x, y); + } +}; +var WIN_ANSI_MAP = { + 402: 131, + 8211: 150, + 8212: 151, + 8216: 145, + 8217: 146, + 8218: 130, + 8220: 147, + 8221: 148, + 8222: 132, + 8224: 134, + 8225: 135, + 8226: 149, + 8230: 133, + 8364: 128, + 8240: 137, + 8249: 139, + 8250: 155, + 710: 136, + 8482: 153, + 338: 140, + 339: 156, + 732: 152, + 352: 138, + 353: 154, + 376: 159, + 381: 142, + 382: 158 +}; +var characters = ".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/); +var AFMFont = /*#__PURE__*/function () { + function AFMFont(contents) { + this.contents = contents; + this.attributes = {}; + this.glyphWidths = {}; + this.boundingBoxes = {}; + this.kernPairs = {}; + this.parse(); + // todo: remove charWidths since appears to not be used + this.charWidths = new Array(256); + for (var char = 0; char <= 255; char++) { + this.charWidths[char] = this.glyphWidths[characters[char]]; + } + this.bbox = this.attributes['FontBBox'].split(/\s+/).map(function (e) { + return +e; + }); + this.ascender = +(this.attributes['Ascender'] || 0); + this.descender = +(this.attributes['Descender'] || 0); + this.xHeight = +(this.attributes['XHeight'] || 0); + this.capHeight = +(this.attributes['CapHeight'] || 0); + this.lineGap = this.bbox[3] - this.bbox[1] - (this.ascender - this.descender); + } + AFMFont.open = function open(filename) { + return new AFMFont(fs.readFileSync(filename, 'utf8')); + }; + var _proto10 = AFMFont.prototype; + _proto10.parse = function parse() { + var section = ''; + for (var _iterator5 = _createForOfIteratorHelperLoose(this.contents.split('\n')), _step5; !(_step5 = _iterator5()).done;) { + var line = _step5.value; + var match; + var a; + if (match = line.match(/^Start(\w+)/)) { + section = match[1]; + continue; + } else if (match = line.match(/^End(\w+)/)) { + section = ''; + continue; + } + switch (section) { + case 'FontMetrics': + match = line.match(/(^\w+)\s+(.*)/); + var key = match[1]; + var value = match[2]; + if (a = this.attributes[key]) { + if (!Array.isArray(a)) { + a = this.attributes[key] = [a]; + } + a.push(value); + } else { + this.attributes[key] = value; + } + break; + case 'CharMetrics': + if (!/^CH?\s/.test(line)) { + continue; + } + var name = line.match(/\bN\s+(\.?\w+)\s*;/)[1]; + this.glyphWidths[name] = +line.match(/\bWX\s+(\d+)\s*;/)[1]; + break; + case 'KernPairs': + match = line.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/); + if (match) { + this.kernPairs[match[1] + '\0' + match[2]] = parseInt(match[3]); + } + break; + } + } + }; + _proto10.encodeText = function encodeText(text) { + var res = []; + for (var i = 0, len = text.length; i < len; i++) { + var char = text.charCodeAt(i); + char = WIN_ANSI_MAP[char] || char; + res.push(char.toString(16)); + } + return res; + }; + _proto10.glyphsForString = function glyphsForString(string) { + var glyphs = []; + for (var i = 0, len = string.length; i < len; i++) { + var charCode = string.charCodeAt(i); + glyphs.push(this.characterToGlyph(charCode)); + } + return glyphs; + }; + _proto10.characterToGlyph = function characterToGlyph(character) { + return characters[WIN_ANSI_MAP[character] || character] || '.notdef'; + }; + _proto10.widthOfGlyph = function widthOfGlyph(glyph) { + return this.glyphWidths[glyph] || 0; + }; + _proto10.getKernPair = function getKernPair(left, right) { + return this.kernPairs[left + '\0' + right] || 0; + }; + _proto10.advancesForGlyphs = function advancesForGlyphs(glyphs) { + var advances = []; + for (var index = 0; index < glyphs.length; index++) { + var left = glyphs[index]; + var right = glyphs[index + 1]; + advances.push(this.widthOfGlyph(left) + this.getKernPair(left, right)); + } + return advances; + }; + return AFMFont; +}(); +var PDFFont = /*#__PURE__*/function () { + function PDFFont() {} + var _proto11 = PDFFont.prototype; + _proto11.encode = function encode() { + throw new Error('Must be implemented by subclasses'); + }; + _proto11.widthOfString = function widthOfString() { + throw new Error('Must be implemented by subclasses'); + }; + _proto11.ref = function ref() { + return this.dictionary != null ? this.dictionary : this.dictionary = this.document.ref(); + }; + _proto11.finalize = function finalize() { + if (this.embedded || this.dictionary == null) { + return; + } + this.embed(); + return this.embedded = true; + }; + _proto11.embed = function embed() { + throw new Error('Must be implemented by subclasses'); + }; + _proto11.lineHeight = function lineHeight(size, includeGap) { + if (includeGap == null) { + includeGap = false; + } + var gap = includeGap ? this.lineGap : 0; + return (this.ascender + gap - this.descender) / 1000 * size; + }; + return PDFFont; +}(); // This insanity is so bundlers can inline the font files +var STANDARD_FONTS = { + Courier: function Courier() { + return fs.readFileSync(__webpack_dirname__ + '/data/Courier.afm', 'utf8'); + }, + 'Courier-Bold': function CourierBold() { + return fs.readFileSync(__webpack_dirname__ + '/data/Courier-Bold.afm', 'utf8'); + }, + 'Courier-Oblique': function CourierOblique() { + return fs.readFileSync(__webpack_dirname__ + '/data/Courier-Oblique.afm', 'utf8'); + }, + 'Courier-BoldOblique': function CourierBoldOblique() { + return fs.readFileSync(__webpack_dirname__ + '/data/Courier-BoldOblique.afm', 'utf8'); + }, + Helvetica: function Helvetica() { + return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica.afm', 'utf8'); + }, + 'Helvetica-Bold': function HelveticaBold() { + return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-Bold.afm', 'utf8'); + }, + 'Helvetica-Oblique': function HelveticaOblique() { + return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-Oblique.afm', 'utf8'); + }, + 'Helvetica-BoldOblique': function HelveticaBoldOblique() { + return fs.readFileSync(__webpack_dirname__ + '/data/Helvetica-BoldOblique.afm', 'utf8'); + }, + 'Times-Roman': function TimesRoman() { + return fs.readFileSync(__webpack_dirname__ + '/data/Times-Roman.afm', 'utf8'); + }, + 'Times-Bold': function TimesBold() { + return fs.readFileSync(__webpack_dirname__ + '/data/Times-Bold.afm', 'utf8'); + }, + 'Times-Italic': function TimesItalic() { + return fs.readFileSync(__webpack_dirname__ + '/data/Times-Italic.afm', 'utf8'); + }, + 'Times-BoldItalic': function TimesBoldItalic() { + return fs.readFileSync(__webpack_dirname__ + '/data/Times-BoldItalic.afm', 'utf8'); + }, + Symbol: function Symbol() { + return fs.readFileSync(__webpack_dirname__ + '/data/Symbol.afm', 'utf8'); + }, + ZapfDingbats: function ZapfDingbats() { + return fs.readFileSync(__webpack_dirname__ + '/data/ZapfDingbats.afm', 'utf8'); + } +}; +var StandardFont = /*#__PURE__*/function (_PDFFont) { + function StandardFont(document, name, id) { + var _this6; + _this6 = _PDFFont.call(this) || this; + _this6.document = document; + _this6.name = name; + _this6.id = id; + _this6.font = new AFMFont(STANDARD_FONTS[_this6.name]()); + var _this6$font = _this6.font; + _this6.ascender = _this6$font.ascender; + _this6.descender = _this6$font.descender; + _this6.bbox = _this6$font.bbox; + _this6.lineGap = _this6$font.lineGap; + _this6.xHeight = _this6$font.xHeight; + _this6.capHeight = _this6$font.capHeight; + return _this6; + } + _inheritsLoose(StandardFont, _PDFFont); + var _proto12 = StandardFont.prototype; + _proto12.embed = function embed() { + this.dictionary.data = { + Type: 'Font', + BaseFont: this.name, + Subtype: 'Type1', + Encoding: 'WinAnsiEncoding' + }; + return this.dictionary.end(); + }; + _proto12.encode = function encode(text) { + var encoded = this.font.encodeText(text); + var glyphs = this.font.glyphsForString("" + text); + var advances = this.font.advancesForGlyphs(glyphs); + var positions = []; + for (var i = 0; i < glyphs.length; i++) { + var glyph = glyphs[i]; + positions.push({ + xAdvance: advances[i], + yAdvance: 0, + xOffset: 0, + yOffset: 0, + advanceWidth: this.font.widthOfGlyph(glyph) + }); + } + return [encoded, positions]; + }; + _proto12.widthOfString = function widthOfString(string, size) { + var glyphs = this.font.glyphsForString("" + string); + var advances = this.font.advancesForGlyphs(glyphs); + var width = 0; + for (var _iterator6 = _createForOfIteratorHelperLoose(advances), _step6; !(_step6 = _iterator6()).done;) { + var advance = _step6.value; + width += advance; + } + var scale = size / 1000; + return width * scale; + }; + StandardFont.isStandardFont = function isStandardFont(name) { + return name in STANDARD_FONTS; + }; + return StandardFont; +}(PDFFont); +var toHex = function toHex(num) { + return ("0000" + num.toString(16)).slice(-4); +}; +var EmbeddedFont = /*#__PURE__*/function (_PDFFont2) { + function EmbeddedFont(document, font, id) { + var _this7; + _this7 = _PDFFont2.call(this) || this; + _this7.document = document; + _this7.font = font; + _this7.id = id; + _this7.subset = _this7.font.createSubset(); + _this7.unicode = [[0]]; + _this7.widths = [_this7.font.getGlyph(0).advanceWidth]; + _this7.name = _this7.font.postscriptName; + _this7.scale = 1000 / _this7.font.unitsPerEm; + _this7.ascender = _this7.font.ascent * _this7.scale; + _this7.descender = _this7.font.descent * _this7.scale; + _this7.xHeight = _this7.font.xHeight * _this7.scale; + _this7.capHeight = _this7.font.capHeight * _this7.scale; + _this7.lineGap = _this7.font.lineGap * _this7.scale; + _this7.bbox = _this7.font.bbox; + if (document.options.fontLayoutCache !== false) { + _this7.layoutCache = Object.create(null); + } + return _this7; + } + _inheritsLoose(EmbeddedFont, _PDFFont2); + var _proto13 = EmbeddedFont.prototype; + _proto13.layoutRun = function layoutRun(text, features) { + var run = this.font.layout(text, features); + + // Normalize position values + for (var i = 0; i < run.positions.length; i++) { + var position = run.positions[i]; + for (var key in position) { + position[key] *= this.scale; + } + position.advanceWidth = run.glyphs[i].advanceWidth * this.scale; + } + return run; + }; + _proto13.layoutCached = function layoutCached(text) { + if (!this.layoutCache) { + return this.layoutRun(text); + } + var cached; + if (cached = this.layoutCache[text]) { + return cached; + } + var run = this.layoutRun(text); + this.layoutCache[text] = run; + return run; + }; + _proto13.layout = function layout(text, features, onlyWidth) { + // Skip the cache if any user defined features are applied + if (features) { + return this.layoutRun(text, features); + } + var glyphs = onlyWidth ? null : []; + var positions = onlyWidth ? null : []; + var advanceWidth = 0; + + // Split the string by words to increase cache efficiency. + // For this purpose, spaces and tabs are a good enough delimeter. + var last = 0; + var index = 0; + while (index <= text.length) { + var needle; + if (index === text.length && last < index || (needle = text.charAt(index), [' ', '\t'].includes(needle))) { + var run = this.layoutCached(text.slice(last, ++index)); + if (!onlyWidth) { + glyphs = glyphs.concat(run.glyphs); + positions = positions.concat(run.positions); + } + advanceWidth += run.advanceWidth; + last = index; + } else { + index++; + } + } + return { + glyphs: glyphs, + positions: positions, + advanceWidth: advanceWidth + }; + }; + _proto13.encode = function encode(text, features) { + var _this$layout = this.layout(text, features), + glyphs = _this$layout.glyphs, + positions = _this$layout.positions; + var res = []; + for (var i = 0; i < glyphs.length; i++) { + var glyph = glyphs[i]; + var gid = this.subset.includeGlyph(glyph.id); + res.push(("0000" + gid.toString(16)).slice(-4)); + if (this.widths[gid] == null) { + this.widths[gid] = glyph.advanceWidth * this.scale; + } + if (this.unicode[gid] == null) { + this.unicode[gid] = glyph.codePoints; + } + } + return [res, positions]; + }; + _proto13.widthOfString = function widthOfString(string, size, features) { + var width = this.layout(string, features, true).advanceWidth; + var scale = size / 1000; + return width * scale; + }; + _proto13.embed = function embed() { + var _this8 = this; + var isCFF = this.subset.cff != null; + var fontFile = this.document.ref(); + if (isCFF) { + fontFile.data.Subtype = 'CIDFontType0C'; + } + this.subset.encodeStream().on('data', function (data) { + return fontFile.write(data); + }).on('end', function () { + return fontFile.end(); + }); + var familyClass = ((this.font['OS/2'] != null ? this.font['OS/2'].sFamilyClass : undefined) || 0) >> 8; + var flags = 0; + if (this.font.post.isFixedPitch) { + flags |= 1 << 0; + } + if (1 <= familyClass && familyClass <= 7) { + flags |= 1 << 1; + } + flags |= 1 << 2; // assume the font uses non-latin characters + if (familyClass === 10) { + flags |= 1 << 3; + } + if (this.font.head.macStyle.italic) { + flags |= 1 << 6; + } + + // generate a tag (6 uppercase letters. 17 is the char code offset from '0' to 'A'. 73 will map to 'Z') + var tag = [1, 2, 3, 4, 5, 6].map(function (i) { + return String.fromCharCode((_this8.id.charCodeAt(i) || 73) + 17); + }).join(''); + var name = tag + '+' + this.font.postscriptName.replaceAll(' ', '_'); + var bbox = this.font.bbox; + var descriptor = this.document.ref({ + Type: 'FontDescriptor', + FontName: name, + Flags: flags, + FontBBox: [bbox.minX * this.scale, bbox.minY * this.scale, bbox.maxX * this.scale, bbox.maxY * this.scale], + ItalicAngle: this.font.italicAngle, + Ascent: this.ascender, + Descent: this.descender, + CapHeight: (this.font.capHeight || this.font.ascent) * this.scale, + XHeight: (this.font.xHeight || 0) * this.scale, + StemV: 0 + }); // not sure how to calculate this + + if (isCFF) { + descriptor.data.FontFile3 = fontFile; + } else { + descriptor.data.FontFile2 = fontFile; + } + if (this.document.subset && this.document.subset === 1) { + var CIDSet = Buffer.from('FFFFFFFFC0', 'hex'); + var CIDSetRef = this.document.ref(); + CIDSetRef.write(CIDSet); + CIDSetRef.end(); + descriptor.data.CIDSet = CIDSetRef; + } + descriptor.end(); + var descendantFontData = { + Type: 'Font', + Subtype: 'CIDFontType0', + BaseFont: name, + CIDSystemInfo: { + Registry: new String('Adobe'), + Ordering: new String('Identity'), + Supplement: 0 + }, + FontDescriptor: descriptor, + W: [0, this.widths] + }; + if (!isCFF) { + descendantFontData.Subtype = 'CIDFontType2'; + descendantFontData.CIDToGIDMap = 'Identity'; + } + var descendantFont = this.document.ref(descendantFontData); + descendantFont.end(); + this.dictionary.data = { + Type: 'Font', + Subtype: 'Type0', + BaseFont: name, + Encoding: 'Identity-H', + DescendantFonts: [descendantFont], + ToUnicode: this.toUnicodeCmap() + }; + return this.dictionary.end(); + } + + // Maps the glyph ids encoded in the PDF back to unicode strings + // Because of ligature substitutions and the like, there may be one or more + // unicode characters represented by each glyph. +; + _proto13.toUnicodeCmap = function toUnicodeCmap() { + var cmap = this.document.ref(); + var entries = []; + for (var _iterator7 = _createForOfIteratorHelperLoose(this.unicode), _step7; !(_step7 = _iterator7()).done;) { + var codePoints = _step7.value; + var encoded = []; + + // encode codePoints to utf16 + for (var _iterator8 = _createForOfIteratorHelperLoose(codePoints), _step8; !(_step8 = _iterator8()).done;) { + var value = _step8.value; + if (value > 0xffff) { + value -= 0x10000; + encoded.push(toHex(value >>> 10 & 0x3ff | 0xd800)); + value = 0xdc00 | value & 0x3ff; + } + encoded.push(toHex(value)); + } + entries.push("<" + encoded.join(' ') + ">"); + } + var chunkSize = 256; + var chunks = Math.ceil(entries.length / chunkSize); + var ranges = []; + for (var i = 0; i < chunks; i++) { + var start = i * chunkSize; + var end = Math.min((i + 1) * chunkSize, entries.length); + ranges.push("<" + toHex(start) + "> <" + toHex(end - 1) + "> [" + entries.slice(start, end).join(' ') + "]"); + } + cmap.end("/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n" + ranges.join('\n') + "\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend"); + return cmap; + }; + return EmbeddedFont; +}(PDFFont); +var PDFFontFactory = /*#__PURE__*/function () { + function PDFFontFactory() {} + PDFFontFactory.open = function open(document, src, family, id) { + var font; + if (typeof src === 'string') { + if (StandardFont.isStandardFont(src)) { + return new StandardFont(document, src, id); + } + src = fs.readFileSync(src); + } + if (Buffer.isBuffer(src)) { + font = _fontkit.default.create(src, family); + } else if (src instanceof Uint8Array) { + font = _fontkit.default.create(Buffer.from(src), family); + } else if (src instanceof ArrayBuffer) { + font = _fontkit.default.create(Buffer.from(new Uint8Array(src)), family); + } + if (font == null) { + throw new Error('Not a supported font format or standard PDF font.'); + } + return new EmbeddedFont(document, font, id); + }; + return PDFFontFactory; +}(); +var isEqualFont = function isEqualFont(font1, font2) { + var _font1$font$_tables, _font2$font$_tables, _font1$font$_tables2, _font2$font$_tables2; + // compare font checksum + if (((_font1$font$_tables = font1.font._tables) == null || (_font1$font$_tables = _font1$font$_tables.head) == null ? void 0 : _font1$font$_tables.checkSumAdjustment) !== ((_font2$font$_tables = font2.font._tables) == null || (_font2$font$_tables = _font2$font$_tables.head) == null ? void 0 : _font2$font$_tables.checkSumAdjustment)) { + return false; + } + + // compare font name table + if (JSON.stringify((_font1$font$_tables2 = font1.font._tables) == null || (_font1$font$_tables2 = _font1$font$_tables2.name) == null ? void 0 : _font1$font$_tables2.records) !== JSON.stringify((_font2$font$_tables2 = font2.font._tables) == null || (_font2$font$_tables2 = _font2$font$_tables2.name) == null ? void 0 : _font2$font$_tables2.records)) { + return false; + } + return true; +}; +var FontsMixin = { + initFonts: function initFonts() { + var defaultFont = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'Helvetica'; + // Lookup table for embedded fonts + this._fontFamilies = {}; + this._fontCount = 0; + + // Font state + this._fontSize = 12; + this._font = null; + this._registeredFonts = {}; + + // Set the default font + if (defaultFont) { + this.font(defaultFont); + } + }, + font: function font(src, family, size) { + var cacheKey, font; + if (typeof family === 'number') { + size = family; + family = null; + } + + // check registered fonts if src is a string + if (typeof src === 'string' && this._registeredFonts[src]) { + cacheKey = src; + var _this$_registeredFont = this._registeredFonts[src]; + src = _this$_registeredFont.src; + family = _this$_registeredFont.family; + } else { + cacheKey = family || src; + if (typeof cacheKey !== 'string') { + cacheKey = null; + } + } + if (size != null) { + this.fontSize(size); + } + + // fast path: check if the font is already in the PDF + if (font = this._fontFamilies[cacheKey]) { + this._font = font; + return this; + } + + // load the font + var id = "F" + ++this._fontCount; + this._font = PDFFontFactory.open(this, src, family, id); + + // check for existing font familes with the same name already in the PDF + // useful if the font was passed as a buffer + if ((font = this._fontFamilies[this._font.name]) && isEqualFont(this._font, font)) { + this._font = font; + return this; + } + + // save the font for reuse later + if (cacheKey) { + this._fontFamilies[cacheKey] = this._font; + } + if (this._font.name) { + this._fontFamilies[this._font.name] = this._font; + } + return this; + }, + fontSize: function fontSize(_fontSize) { + this._fontSize = _fontSize; + return this; + }, + currentLineHeight: function currentLineHeight(includeGap) { + if (includeGap == null) { + includeGap = false; + } + return this._font.lineHeight(this._fontSize, includeGap); + }, + registerFont: function registerFont(name, src, family) { + this._registeredFonts[name] = { + src: src, + family: family + }; + return this; + } +}; +var SOFT_HYPHEN = "\xAD"; +var HYPHEN = '-'; +var LineWrapper = /*#__PURE__*/function (_EventEmitter) { + function LineWrapper(document, options) { + var _this9; + _this9 = _EventEmitter.call(this) || this; + _this9.document = document; + _this9.horizontalScaling = options.horizontalScaling || 100; + _this9.indent = (options.indent || 0) * _this9.horizontalScaling / 100; + _this9.characterSpacing = (options.characterSpacing || 0) * _this9.horizontalScaling / 100; + _this9.wordSpacing = (options.wordSpacing === 0) * _this9.horizontalScaling / 100; + _this9.columns = options.columns || 1; + _this9.columnGap = (options.columnGap != null ? options.columnGap : 18) * _this9.horizontalScaling / 100; // 1/4 inch + _this9.lineWidth = (options.width * _this9.horizontalScaling / 100 - _this9.columnGap * (_this9.columns - 1)) / _this9.columns; + _this9.spaceLeft = _this9.lineWidth; + _this9.startX = _this9.document.x; + _this9.startY = _this9.document.y; + _this9.column = 1; + _this9.ellipsis = options.ellipsis; + _this9.continuedX = 0; + _this9.features = options.features; + + // calculate the maximum Y position the text can appear at + if (options.height != null) { + _this9.height = options.height; + _this9.maxY = _this9.startY + options.height; + } else { + _this9.maxY = _this9.document.page.maxY(); + } + + // handle paragraph indents + _this9.on('firstLine', function (options) { + // if this is the first line of the text segment, and + // we're continuing where we left off, indent that much + // otherwise use the user specified indent option + var indent = _this9.continuedX || _this9.indent; + _this9.document.x += indent; + _this9.lineWidth -= indent; + + // if indentAllLines is set to true + // we're not resetting the indentation for this paragraph after the first line + if (options.indentAllLines) { + return; + } + + // otherwise we start the next line without indent + return _this9.once('line', function () { + _this9.document.x -= indent; + _this9.lineWidth += indent; + if (options.continued && !_this9.continuedX) { + _this9.continuedX = _this9.indent; + } + if (!options.continued) { + return _this9.continuedX = 0; + } + }); + }); + + // handle left aligning last lines of paragraphs + _this9.on('lastLine', function (options) { + var align = options.align; + if (align === 'justify') { + options.align = 'left'; + } + _this9.lastLine = true; + return _this9.once('line', function () { + _this9.document.y += options.paragraphGap || 0; + options.align = align; + return _this9.lastLine = false; + }); + }); + return _this9; + } + _inheritsLoose(LineWrapper, _EventEmitter); + var _proto14 = LineWrapper.prototype; + _proto14.wordWidth = function wordWidth(word) { + return this.document.widthOfString(word, this) + this.characterSpacing + this.wordSpacing; + }; + _proto14.canFit = function canFit(word, w) { + if (word[word.length - 1] != SOFT_HYPHEN) { + return w <= this.spaceLeft; + } + return w + this.wordWidth(HYPHEN) <= this.spaceLeft; + }; + _proto14.eachWord = function eachWord(text, fn) { + // setup a unicode line breaker + var bk; + var breaker = new _linebreak.default(text); + var last = null; + var wordWidths = Object.create(null); + while (bk = breaker.nextBreak()) { + var shouldContinue; + var word = text.slice((last != null ? last.position : undefined) || 0, bk.position); + var w = wordWidths[word] != null ? wordWidths[word] : wordWidths[word] = this.wordWidth(word); + + // if the word is longer than the whole line, chop it up + // TODO: break by grapheme clusters, not JS string characters + if (w > this.lineWidth + this.continuedX) { + // make some fake break objects + var lbk = last; + var fbk = {}; + while (word.length) { + // fit as much of the word as possible into the space we have + var l, mightGrow; + if (w > this.spaceLeft) { + // start our check at the end of our available space - this method is faster than a loop of each character and it resolves + // an issue with long loops when processing massive words, such as a huge number of spaces + l = Math.ceil(this.spaceLeft / (w / word.length)); + w = this.wordWidth(word.slice(0, l)); + mightGrow = w <= this.spaceLeft && l < word.length; + } else { + l = word.length; + } + var mustShrink = w > this.spaceLeft && l > 0; + // shrink or grow word as necessary after our near-guess above + while (mustShrink || mightGrow) { + if (mustShrink) { + w = this.wordWidth(word.slice(0, --l)); + mustShrink = w > this.spaceLeft && l > 0; + } else { + w = this.wordWidth(word.slice(0, ++l)); + mustShrink = w > this.spaceLeft && l > 0; + mightGrow = w <= this.spaceLeft && l < word.length; + } + } + + // check for the edge case where a single character cannot fit into a line. + if (l === 0 && this.spaceLeft === this.lineWidth) { + l = 1; + } + + // send a required break unless this is the last piece and a linebreak is not specified + fbk.required = bk.required || l < word.length; + shouldContinue = fn(word.slice(0, l), w, fbk, lbk); + lbk = { + required: false + }; + + // get the remaining piece of the word + word = word.slice(l); + w = this.wordWidth(word); + if (shouldContinue === false) { + break; + } + } + } else { + // otherwise just emit the break as it was given to us + shouldContinue = fn(word, w, bk, last); + } + if (shouldContinue === false) { + break; + } + last = bk; + } + }; + _proto14.wrap = function wrap(text, options) { + var _this0 = this; + // override options from previous continued fragments + this.horizontalScaling = options.horizontalScaling || 100; + if (options.indent != null) { + this.indent = options.indent * this.horizontalScaling / 100; + } + if (options.characterSpacing != null) { + this.characterSpacing = options.characterSpacing * this.horizontalScaling / 100; + } + if (options.wordSpacing != null) { + this.wordSpacing = options.wordSpacing * this.horizontalScaling / 100; + } + if (options.ellipsis != null) { + this.ellipsis = options.ellipsis; + } + + // make sure we're actually on the page + // and that the first line of is never by + // itself at the bottom of a page (orphans) + var nextY = this.document.y + this.document.currentLineHeight(true); + if (this.document.y > this.maxY || nextY > this.maxY) { + this.nextSection(); + } + var buffer = ''; + var textWidth = 0; + var wc = 0; + var lc = 0; + var y = this.document.y; // used to reset Y pos if options.continued (below) + var emitLine = function emitLine() { + options.textWidth = textWidth + _this0.wordSpacing * (wc - 1); + options.wordCount = wc; + options.lineWidth = _this0.lineWidth; + y = _this0.document.y; + _this0.emit('line', buffer, options, _this0); + return lc++; + }; + this.emit('sectionStart', options, this); + this.eachWord(text, function (word, w, bk, last) { + if (last == null || last.required) { + _this0.emit('firstLine', options, _this0); + _this0.spaceLeft = _this0.lineWidth; + } + if (_this0.canFit(word, w)) { + buffer += word; + textWidth += w; + wc++; + } + if (bk.required || !_this0.canFit(word, w)) { + // if the user specified a max height and an ellipsis, and is about to pass the + // max height and max columns after the next line, append the ellipsis + var lh = _this0.document.currentLineHeight(true); + if (_this0.height != null && _this0.ellipsis && _this0.document.y + lh * 2 > _this0.maxY && _this0.column >= _this0.columns) { + if (_this0.ellipsis === true) { + _this0.ellipsis = '…'; + } // map default ellipsis character + buffer = buffer.replace(/\s+$/, ''); + textWidth = _this0.wordWidth(buffer + _this0.ellipsis); + + // remove characters from the buffer until the ellipsis fits + // to avoid infinite loop need to stop while-loop if buffer is empty string + while (buffer && textWidth > _this0.lineWidth) { + buffer = buffer.slice(0, -1).replace(/\s+$/, ''); + textWidth = _this0.wordWidth(buffer + _this0.ellipsis); + } + // need to add ellipsis only if there is enough space for it + if (textWidth <= _this0.lineWidth) { + buffer = buffer + _this0.ellipsis; + } + textWidth = _this0.wordWidth(buffer); + } + if (bk.required) { + if (w > _this0.spaceLeft) { + emitLine(); + buffer = word; + textWidth = w; + wc = 1; + } + _this0.emit('lastLine', options, _this0); + } + + // Previous entry is a soft hyphen - add visible hyphen. + if (buffer[buffer.length - 1] == SOFT_HYPHEN) { + buffer = buffer.slice(0, -1) + HYPHEN; + _this0.spaceLeft -= _this0.wordWidth(HYPHEN); + } + emitLine(); + + // if we've reached the edge of the page, + // continue on a new page or column + if (_this0.document.y + lh > _this0.maxY) { + var shouldContinue = _this0.nextSection(); + + // stop if we reached the maximum height + if (!shouldContinue) { + wc = 0; + buffer = ''; + return false; + } + } + + // reset the space left and buffer + if (bk.required) { + _this0.spaceLeft = _this0.lineWidth; + buffer = ''; + textWidth = 0; + return wc = 0; + } else { + // reset the space left and buffer + _this0.spaceLeft = _this0.lineWidth - w; + buffer = word; + textWidth = w; + return wc = 1; + } + } else { + return _this0.spaceLeft -= w; + } + }); + if (wc > 0) { + this.emit('lastLine', options, this); + emitLine(); + } + this.emit('sectionEnd', options, this); + + // if the wrap is set to be continued, save the X position + // to start the first line of the next segment at, and reset + // the y position + if (options.continued === true) { + if (lc > 1) { + this.continuedX = 0; + } + this.continuedX += options.textWidth || 0; + return this.document.y = y; + } else { + return this.document.x = this.startX; + } + }; + _proto14.nextSection = function nextSection(options) { + this.emit('sectionEnd', options, this); + if (++this.column > this.columns) { + // if a max height was specified by the user, we're done. + // otherwise, the default is to make a new page at the bottom. + if (this.height != null) { + return false; + } + this.document.continueOnNewPage(); + this.column = 1; + this.startY = this.document.page.margins.top; + this.maxY = this.document.page.maxY(); + this.document.x = this.startX; + if (this.document._fillColor) { + var _this$document; + (_this$document = this.document).fillColor.apply(_this$document, this.document._fillColor); + } + this.emit('pageBreak', options, this); + } else { + this.document.x += this.lineWidth + this.columnGap; + this.document.y = this.startY; + this.emit('columnBreak', options, this); + } + this.emit('sectionStart', options, this); + return true; + }; + return LineWrapper; +}(_events.EventEmitter); +var number$2 = PDFObject.number; +var TextMixin = { + initText: function initText() { + this._line = this._line.bind(this); + // Current coordinates + this.x = 0; + this.y = 0; + return this._lineGap = 0; + }, + lineGap: function lineGap(_lineGap) { + this._lineGap = _lineGap; + return this; + }, + moveDown: function moveDown(lines) { + if (lines == null) { + lines = 1; + } + this.y += this.currentLineHeight(true) * lines + this._lineGap; + return this; + }, + moveUp: function moveUp(lines) { + if (lines == null) { + lines = 1; + } + this.y -= this.currentLineHeight(true) * lines + this._lineGap; + return this; + }, + _text: function _text(text, x, y, options, lineCallback) { + var _this1 = this; + options = this._initOptions(x, y, options); + + // Convert text to a string + text = text == null ? '' : "" + text; + + // if the wordSpacing option is specified, remove multiple consecutive spaces + if (options.wordSpacing) { + text = text.replace(/\s{2,}/g, ' '); + } + var addStructure = function addStructure() { + if (options.structParent) { + options.structParent.add(_this1.struct(options.structType || 'P', [_this1.markStructureContent(options.structType || 'P')])); + } + }; + + // word wrapping + if (options.width) { + var wrapper = this._wrapper; + if (!wrapper) { + wrapper = new LineWrapper(this, options); + wrapper.on('line', lineCallback); + wrapper.on('firstLine', addStructure); + } + this._wrapper = options.continued ? wrapper : null; + this._textOptions = options.continued ? options : null; + wrapper.wrap(text, options); + + // render paragraphs as single lines + } else { + for (var _iterator9 = _createForOfIteratorHelperLoose(text.split('\n')), _step9; !(_step9 = _iterator9()).done;) { + var line = _step9.value; + addStructure(); + lineCallback(line, options); + } + } + return this; + }, + text: function text(_text2, x, y, options) { + return this._text(_text2, x, y, options, this._line); + }, + widthOfString: function widthOfString(string) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var horizontalScaling = options.horizontalScaling || 100; + return (this._font.widthOfString(string, this._fontSize, options.features) + (options.characterSpacing || 0) * (string.length - 1)) * horizontalScaling / 100; + }, + heightOfString: function heightOfString(text, options) { + var _this10 = this; + var x = this.x, + y = this.y; + options = this._initOptions(options); + options.height = Infinity; // don't break pages + + var lineGap = options.lineGap || this._lineGap || 0; + this._text(text, this.x, this.y, options, function () { + return _this10.y += _this10.currentLineHeight(true) + lineGap; + }); + var height = this.y - y; + this.x = x; + this.y = y; + return height; + }, + list: function list(_list, x, y, options, wrapper) { + options = this._initOptions(x, y, options); + var listType = options.listType || 'bullet'; + var unit = Math.round(this._font.ascender / 1000 * this._fontSize); + var midLine = unit / 2; + var r = options.bulletRadius || unit / 3; + var indent = options.textIndent || (listType === 'bullet' ? r * 5 : unit * 2); + var itemIndent = options.bulletIndent || (listType === 'bullet' ? r * 8 : unit * 2); + var level = 1; + var items = []; + var levels = []; + var numbers = []; + var _flatten = function flatten(list) { + var n = 1; + for (var i = 0; i < list.length; i++) { + var item = list[i]; + if (Array.isArray(item)) { + level++; + _flatten(item); + level--; + } else { + items.push(item); + levels.push(level); + if (listType !== 'bullet') { + numbers.push(n++); + } + } + } + }; + _flatten(_list); + var label = function label(n) { + switch (listType) { + case 'numbered': + return n + "."; + case 'lettered': + var letter = String.fromCharCode((n - 1) % 26 + 65); + var times = Math.floor((n - 1) / 26 + 1); + var text = Array(times + 1).join(letter); + return text + "."; + } + }; + var drawListItem = function drawListItem(listItem, i) { + var _this11 = this; + wrapper = new LineWrapper(this, options); + wrapper.on('line', this._line); + level = 1; + wrapper.once('firstLine', function () { + var item, itemType, labelType, bodyType; + if (options.structParent) { + if (options.structTypes) { + var _options$structTypes = options.structTypes; + itemType = _options$structTypes[0]; + labelType = _options$structTypes[1]; + bodyType = _options$structTypes[2]; + } else { + itemType = 'LI'; + labelType = 'Lbl'; + bodyType = 'LBody'; + } + } + if (itemType) { + item = _this11.struct(itemType); + options.structParent.add(item); + } else if (options.structParent) { + item = options.structParent; + } + var l; + if ((l = levels[i++]) !== level) { + var diff = itemIndent * (l - level); + _this11.x += diff; + wrapper.lineWidth -= diff; + level = l; + } + if (item && (labelType || bodyType)) { + item.add(_this11.struct(labelType || bodyType, [_this11.markStructureContent(labelType || bodyType)])); + } + switch (listType) { + case 'bullet': + _this11.circle(_this11.x - indent + r, _this11.y + midLine, r); + _this11.fill(); + break; + case 'numbered': + case 'lettered': + var text = label(numbers[i - 1]); + _this11._fragment(text, _this11.x - indent, _this11.y, options); + break; + } + if (item && labelType && bodyType) { + item.add(_this11.struct(bodyType, [_this11.markStructureContent(bodyType)])); + } + if (item && item !== options.structParent) { + item.end(); + } + }); + wrapper.on('sectionStart', function () { + var pos = indent + itemIndent * (level - 1); + _this11.x += pos; + return wrapper.lineWidth -= pos; + }); + wrapper.on('sectionEnd', function () { + var pos = indent + itemIndent * (level - 1); + _this11.x -= pos; + return wrapper.lineWidth += pos; + }); + wrapper.wrap(listItem, options); + }; + for (var i = 0; i < items.length; i++) { + drawListItem.call(this, items[i], i); + } + return this; + }, + _initOptions: function _initOptions() { + var x = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var y = arguments.length > 1 ? arguments[1] : undefined; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + if (typeof x === 'object') { + options = x; + x = null; + } + + // clone options object + var result = Object.assign({}, options); + + // extend options with previous values for continued text + if (this._textOptions) { + for (var key in this._textOptions) { + var val = this._textOptions[key]; + if (key !== 'continued') { + if (result[key] === undefined) { + result[key] = val; + } + } + } + } + + // Update the current position + if (x != null) { + this.x = x; + } + if (y != null) { + this.y = y; + } + + // wrap to margins if no x or y position passed + if (result.lineBreak !== false) { + if (result.width == null) { + result.width = this.page.width - this.x - this.page.margins.right; + } + result.width = Math.max(result.width, 0); + } + if (!result.columns) { + result.columns = 0; + } + if (result.columnGap == null) { + result.columnGap = 18; + } // 1/4 inch + + return result; + }, + _line: function _line(text) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var wrapper = arguments.length > 2 ? arguments[2] : undefined; + this._fragment(text, this.x, this.y, options); + var lineGap = options.lineGap || this._lineGap || 0; + if (!wrapper) { + return this.x += this.widthOfString(text, options); + } else { + return this.y += this.currentLineHeight(true) + lineGap; + } + }, + _fragment: function _fragment(text, x, y, options) { + var _this12 = this; + var dy, encoded, i, positions, textWidth, words; + text = ("" + text).replace(/\n/g, ''); + if (text.length === 0) { + return; + } + + // handle options + var align = options.align || 'left'; + var wordSpacing = options.wordSpacing || 0; + var characterSpacing = options.characterSpacing || 0; + var horizontalScaling = options.horizontalScaling || 100; + + // text alignments + if (options.width) { + switch (align) { + case 'right': + textWidth = this.widthOfString(text.replace(/\s+$/, ''), options); + x += options.lineWidth - textWidth; + break; + case 'center': + x += options.lineWidth / 2 - options.textWidth / 2; + break; + case 'justify': + // calculate the word spacing value + words = text.trim().split(/\s+/); + textWidth = this.widthOfString(text.replace(/\s+/g, ''), options); + var spaceWidth = this.widthOfString(' ') + characterSpacing; + wordSpacing = Math.max(0, (options.lineWidth - textWidth) / Math.max(1, words.length - 1) - spaceWidth); + break; + } + } + + // text baseline alignments based on http://wiki.apache.org/xmlgraphics-fop/LineLayout/AlignmentHandling + if (typeof options.baseline === 'number') { + dy = -options.baseline; + } else { + switch (options.baseline) { + case 'svg-middle': + dy = 0.5 * this._font.xHeight; + break; + case 'middle': + case 'svg-central': + dy = 0.5 * (this._font.descender + this._font.ascender); + break; + case 'bottom': + case 'ideographic': + dy = this._font.descender; + break; + case 'alphabetic': + dy = 0; + break; + case 'mathematical': + dy = 0.5 * this._font.ascender; + break; + case 'hanging': + dy = 0.8 * this._font.ascender; + break; + case 'top': + dy = this._font.ascender; + break; + default: + dy = this._font.ascender; + } + dy = dy / 1000 * this._fontSize; + } + + // calculate the actual rendered width of the string after word and character spacing + var renderedWidth = options.textWidth + wordSpacing * (options.wordCount - 1) + characterSpacing * (text.length - 1); + + // create link annotations if the link option is given + if (options.link != null) { + this.link(x, y, renderedWidth, this.currentLineHeight(), options.link); + } + if (options.goTo != null) { + this.goTo(x, y, renderedWidth, this.currentLineHeight(), options.goTo); + } + if (options.destination != null) { + this.addNamedDestination(options.destination, 'XYZ', x, y, null); + } + + // create underline + if (options.underline) { + this.save(); + if (!options.stroke) { + this.strokeColor.apply(this, this._fillColor || []); + } + var lineWidth = this._fontSize < 10 ? 0.5 : Math.floor(this._fontSize / 10); + this.lineWidth(lineWidth); + var lineY = y + this.currentLineHeight() - lineWidth; + this.moveTo(x, lineY); + this.lineTo(x + renderedWidth, lineY); + this.stroke(); + this.restore(); + } + + // create strikethrough line + if (options.strike) { + this.save(); + if (!options.stroke) { + this.strokeColor.apply(this, this._fillColor || []); + } + var _lineWidth = this._fontSize < 10 ? 0.5 : Math.floor(this._fontSize / 10); + this.lineWidth(_lineWidth); + var _lineY = y + this.currentLineHeight() / 2; + this.moveTo(x, _lineY); + this.lineTo(x + renderedWidth, _lineY); + this.stroke(); + this.restore(); + } + this.save(); + + // oblique (angle in degrees or boolean) + if (options.oblique) { + var skew; + if (typeof options.oblique === 'number') { + skew = -Math.tan(options.oblique * Math.PI / 180); + } else { + skew = -0.25; + } + this.transform(1, 0, 0, 1, x, y); + this.transform(1, 0, skew, 1, -skew * dy, 0); + this.transform(1, 0, 0, 1, -x, -y); + } + + // flip coordinate system + this.transform(1, 0, 0, -1, 0, this.page.height); + y = this.page.height - y - dy; + + // add current font to page if necessary + if (this.page.fonts[this._font.id] == null) { + this.page.fonts[this._font.id] = this._font.ref(); + } + + // begin the text object + this.addContent('BT'); + + // text position + this.addContent("1 0 0 1 " + number$2(x) + " " + number$2(y) + " Tm"); + + // font and font size + this.addContent("/" + this._font.id + " " + number$2(this._fontSize) + " Tf"); + + // rendering mode + var mode = options.fill && options.stroke ? 2 : options.stroke ? 1 : 0; + if (mode) { + this.addContent(mode + " Tr"); + } + + // Character spacing + if (characterSpacing) { + this.addContent(number$2(characterSpacing) + " Tc"); + } + + // Horizontal scaling + if (horizontalScaling !== 100) { + this.addContent(horizontalScaling + " Tz"); + } + + // Add the actual text + // If we have a word spacing value, we need to encode each word separately + // since the normal Tw operator only works on character code 32, which isn't + // used for embedded fonts. + if (wordSpacing) { + words = text.trim().split(/\s+/); + wordSpacing += this.widthOfString(' ') + characterSpacing; + wordSpacing *= 1000 / this._fontSize; + encoded = []; + positions = []; + for (var _iterator0 = _createForOfIteratorHelperLoose(words), _step0; !(_step0 = _iterator0()).done;) { + var word = _step0.value; + var _this$_font$encode = this._font.encode(word, options.features), + encodedWord = _this$_font$encode[0], + positionsWord = _this$_font$encode[1]; + encoded = encoded.concat(encodedWord); + positions = positions.concat(positionsWord); + + // add the word spacing to the end of the word + // clone object because of cache + var space = {}; + var object = positions[positions.length - 1]; + for (var key in object) { + var val = object[key]; + space[key] = val; + } + space.xAdvance += wordSpacing; + positions[positions.length - 1] = space; + } + } else { + var _this$_font$encode2 = this._font.encode(text, options.features); + encoded = _this$_font$encode2[0]; + positions = _this$_font$encode2[1]; + } + var scale = this._fontSize / 1000; + var commands = []; + var last = 0; + var hadOffset = false; + + // Adds a segment of text to the TJ command buffer + var addSegment = function addSegment(cur) { + if (last < cur) { + var hex = encoded.slice(last, cur).join(''); + var advance = positions[cur - 1].xAdvance - positions[cur - 1].advanceWidth; + commands.push("<" + hex + "> " + number$2(-advance)); + } + return last = cur; + }; + + // Flushes the current TJ commands to the output stream + var flush = function flush(i) { + addSegment(i); + if (commands.length > 0) { + _this12.addContent("[" + commands.join(' ') + "] TJ"); + return commands.length = 0; + } + }; + for (i = 0; i < positions.length; i++) { + // If we have an x or y offset, we have to break out of the current TJ command + // so we can move the text position. + var pos = positions[i]; + if (pos.xOffset || pos.yOffset) { + // Flush the current buffer + flush(i); + + // Move the text position and flush just the current character + this.addContent("1 0 0 1 " + number$2(x + pos.xOffset * scale) + " " + number$2(y + pos.yOffset * scale) + " Tm"); + flush(i + 1); + hadOffset = true; + } else { + // If the last character had an offset, reset the text position + if (hadOffset) { + this.addContent("1 0 0 1 " + number$2(x) + " " + number$2(y) + " Tm"); + hadOffset = false; + } + + // Group segments that don't have any advance adjustments + if (pos.xAdvance - pos.advanceWidth !== 0) { + addSegment(i + 1); + } + } + x += pos.xAdvance * scale; + } + + // Flush any remaining commands + flush(i); + + // end the text object + this.addContent('ET'); + + // restore flipped coordinate system + return this.restore(); + } +}; +var MARKERS = [0xffc0, 0xffc1, 0xffc2, 0xffc3, 0xffc5, 0xffc6, 0xffc7, 0xffc8, 0xffc9, 0xffca, 0xffcb, 0xffcc, 0xffcd, 0xffce, 0xffcf]; +var COLOR_SPACE_MAP = { + 1: 'DeviceGray', + 3: 'DeviceRGB', + 4: 'DeviceCMYK' +}; +var JPEG = /*#__PURE__*/function () { + function JPEG(data, label) { + var marker; + this.data = data; + this.label = label; + if (this.data.readUInt16BE(0) !== 0xffd8) { + throw 'SOI not found in JPEG'; + } + + // Parse the EXIF orientation + this.orientation = _jpegExif.default.fromBuffer(this.data).Orientation || 1; + var pos = 2; + while (pos < this.data.length) { + marker = this.data.readUInt16BE(pos); + pos += 2; + if (MARKERS.includes(marker)) { + break; + } + pos += this.data.readUInt16BE(pos); + } + if (!MARKERS.includes(marker)) { + throw 'Invalid JPEG.'; + } + pos += 2; + this.bits = this.data[pos++]; + this.height = this.data.readUInt16BE(pos); + pos += 2; + this.width = this.data.readUInt16BE(pos); + pos += 2; + var channels = this.data[pos++]; + this.colorSpace = COLOR_SPACE_MAP[channels]; + this.obj = null; + } + var _proto15 = JPEG.prototype; + _proto15.embed = function embed(document) { + if (this.obj) { + return; + } + this.obj = document.ref({ + Type: 'XObject', + Subtype: 'Image', + BitsPerComponent: this.bits, + Width: this.width, + Height: this.height, + ColorSpace: this.colorSpace, + Filter: 'DCTDecode' + }); + + // add extra decode params for CMYK images. By swapping the + // min and max values from the default, we invert the colors. See + // section 4.8.4 of the spec. + if (this.colorSpace === 'DeviceCMYK') { + this.obj.data['Decode'] = [1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0]; + } + this.obj.end(this.data); + + // free memory + return this.data = null; + }; + return JPEG; +}(); +var PNGImage = /*#__PURE__*/function () { + function PNGImage(data, label) { + this.label = label; + this.image = new _pngJs.default(data); + this.width = this.image.width; + this.height = this.image.height; + this.imgData = this.image.imgData; + this.obj = null; + } + var _proto16 = PNGImage.prototype; + _proto16.embed = function embed(document) { + var dataDecoded = false; + this.document = document; + if (this.obj) { + return; + } + var hasAlphaChannel = this.image.hasAlphaChannel; + var isInterlaced = this.image.interlaceMethod === 1; + this.obj = this.document.ref({ + Type: 'XObject', + Subtype: 'Image', + BitsPerComponent: hasAlphaChannel ? 8 : this.image.bits, + Width: this.width, + Height: this.height, + Filter: 'FlateDecode' + }); + if (!hasAlphaChannel) { + var params = this.document.ref({ + Predictor: isInterlaced ? 1 : 15, + Colors: this.image.colors, + BitsPerComponent: this.image.bits, + Columns: this.width + }); + this.obj.data['DecodeParms'] = params; + params.end(); + } + if (this.image.palette.length === 0) { + this.obj.data['ColorSpace'] = this.image.colorSpace; + } else { + // embed the color palette in the PDF as an object stream + var palette = this.document.ref(); + palette.end(Buffer.from(this.image.palette)); + + // build the color space array for the image + this.obj.data['ColorSpace'] = ['Indexed', 'DeviceRGB', this.image.palette.length / 3 - 1, palette]; + } + + // For PNG color types 0, 2 and 3, the transparency data is stored in + // a dedicated PNG chunk. + if (this.image.transparency.grayscale != null) { + // Use Color Key Masking (spec section 4.8.5) + // An array with N elements, where N is two times the number of color components. + var val = this.image.transparency.grayscale; + this.obj.data['Mask'] = [val, val]; + } else if (this.image.transparency.rgb) { + // Use Color Key Masking (spec section 4.8.5) + // An array with N elements, where N is two times the number of color components. + var rgb = this.image.transparency.rgb; + var mask = []; + for (var _iterator1 = _createForOfIteratorHelperLoose(rgb), _step1; !(_step1 = _iterator1()).done;) { + var x = _step1.value; + mask.push(x, x); + } + this.obj.data['Mask'] = mask; + } else if (this.image.transparency.indexed) { + // Create a transparency SMask for the image based on the data + // in the PLTE and tRNS sections. See below for details on SMasks. + dataDecoded = true; + return this.loadIndexedAlphaChannel(); + } else if (hasAlphaChannel) { + // For PNG color types 4 and 6, the transparency data is stored as a alpha + // channel mixed in with the main image data. Separate this data out into an + // SMask object and store it separately in the PDF. + dataDecoded = true; + return this.splitAlphaChannel(); + } + if (isInterlaced && !dataDecoded) { + return this.decodeData(); + } + this.finalize(); + }; + _proto16.finalize = function finalize() { + if (this.alphaChannel) { + var sMask = this.document.ref({ + Type: 'XObject', + Subtype: 'Image', + Height: this.height, + Width: this.width, + BitsPerComponent: 8, + Filter: 'FlateDecode', + ColorSpace: 'DeviceGray', + Decode: [0, 1] + }); + sMask.end(this.alphaChannel); + this.obj.data['SMask'] = sMask; + } + + // add the actual image data + this.obj.end(this.imgData); + + // free memory + this.image = null; + return this.imgData = null; + }; + _proto16.splitAlphaChannel = function splitAlphaChannel() { + var _this13 = this; + return this.image.decodePixels(function (pixels) { + var a, p; + var colorCount = _this13.image.colors; + var pixelCount = _this13.width * _this13.height; + var imgData = Buffer.alloc(pixelCount * colorCount); + var alphaChannel = Buffer.alloc(pixelCount); + var i = p = a = 0; + var len = pixels.length; + // For 16bit images copy only most significant byte (MSB) - PNG data is always stored in network byte order (MSB first) + var skipByteCount = _this13.image.bits === 16 ? 1 : 0; + while (i < len) { + for (var colorIndex = 0; colorIndex < colorCount; colorIndex++) { + imgData[p++] = pixels[i++]; + i += skipByteCount; + } + alphaChannel[a++] = pixels[i++]; + i += skipByteCount; + } + _this13.imgData = _zlib.default.deflateSync(imgData); + _this13.alphaChannel = _zlib.default.deflateSync(alphaChannel); + return _this13.finalize(); + }); + }; + _proto16.loadIndexedAlphaChannel = function loadIndexedAlphaChannel() { + var _this14 = this; + var transparency = this.image.transparency.indexed; + return this.image.decodePixels(function (pixels) { + var alphaChannel = Buffer.alloc(_this14.width * _this14.height); + var i = 0; + for (var j = 0, end = pixels.length; j < end; j++) { + alphaChannel[i++] = transparency[pixels[j]]; + } + _this14.alphaChannel = _zlib.default.deflateSync(alphaChannel); + return _this14.finalize(); + }); + }; + _proto16.decodeData = function decodeData() { + var _this15 = this; + this.image.decodePixels(function (pixels) { + _this15.imgData = _zlib.default.deflateSync(pixels); + _this15.finalize(); + }); + }; + return PNGImage; +}(); +/* +PDFImage - embeds images in PDF documents +By Devon Govett +*/ +var PDFImage = /*#__PURE__*/function () { + function PDFImage() {} + PDFImage.open = function open(src, label) { + var data; + if (Buffer.isBuffer(src)) { + data = src; + } else if (src instanceof ArrayBuffer) { + data = Buffer.from(new Uint8Array(src)); + } else { + var match; + if (match = /^data:.+?;base64,(.*)$/.exec(src)) { + data = Buffer.from(match[1], 'base64'); + } else { + data = fs.readFileSync(src); + if (!data) { + return; + } + } + } + if (data[0] === 0xff && data[1] === 0xd8) { + return new JPEG(data, label); + } else if (data[0] === 0x89 && data.toString('ascii', 1, 4) === 'PNG') { + return new PNGImage(data, label); + } else { + throw new Error('Unknown image format.'); + } + }; + return PDFImage; +}(); +var ImagesMixin = { + initImages: function initImages() { + this._imageRegistry = {}; + return this._imageCount = 0; + }, + image: function image(src, x, y) { + var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; + var bh, bp, bw, image, ip, left, left1, rotateAngle, originX, originY; + if (typeof x === 'object') { + options = x; + x = null; + } + + // Ignore orientation based on document options or image options + var ignoreOrientation = options.ignoreOrientation || options.ignoreOrientation !== false && this.options.ignoreOrientation; + x = (left = x != null ? x : options.x) != null ? left : this.x; + y = (left1 = y != null ? y : options.y) != null ? left1 : this.y; + if (typeof src === 'string') { + image = this._imageRegistry[src]; + } + if (!image) { + if (src.width && src.height) { + image = src; + } else { + image = this.openImage(src); + } + } + if (!image.obj) { + image.embed(this); + } + if (this.page.xobjects[image.label] == null) { + this.page.xobjects[image.label] = image.obj; + } + var _image = image, + width = _image.width, + height = _image.height; + + // If EXIF orientation calls for it, swap width and height + if (!ignoreOrientation && image.orientation > 4) { + var _ref3 = [height, width]; + width = _ref3[0]; + height = _ref3[1]; + } + var w = options.width || width; + var h = options.height || height; + if (options.width && !options.height) { + var wp = w / width; + w = width * wp; + h = height * wp; + } else if (options.height && !options.width) { + var hp = h / height; + w = width * hp; + h = height * hp; + } else if (options.scale) { + w = width * options.scale; + h = height * options.scale; + } else if (options.fit) { + var _options$fit = options.fit; + bw = _options$fit[0]; + bh = _options$fit[1]; + bp = bw / bh; + ip = width / height; + if (ip > bp) { + w = bw; + h = bw / ip; + } else { + h = bh; + w = bh * ip; + } + } else if (options.cover) { + var _options$cover = options.cover; + bw = _options$cover[0]; + bh = _options$cover[1]; + bp = bw / bh; + ip = width / height; + if (ip > bp) { + h = bh; + w = bh * ip; + } else { + w = bw; + h = bw / ip; + } + } + if (options.fit || options.cover) { + if (options.align === 'center') { + x = x + bw / 2 - w / 2; + } else if (options.align === 'right') { + x = x + bw - w; + } + if (options.valign === 'center') { + y = y + bh / 2 - h / 2; + } else if (options.valign === 'bottom') { + y = y + bh - h; + } + } + if (!ignoreOrientation) { + switch (image.orientation) { + // No orientation (need to flip image, though, because of the default transform matrix on the document) + default: + case 1: + h = -h; + y -= h; + rotateAngle = 0; + break; + // Flip Horizontal + case 2: + w = -w; + h = -h; + x -= w; + y -= h; + rotateAngle = 0; + break; + // Rotate 180 degrees + case 3: + originX = x; + originY = y; + h = -h; + x -= w; + rotateAngle = 180; + break; + // Flip vertical + case 4: + // Do nothing, image will be flipped + + break; + // Flip horizontally and rotate 270 degrees CW + case 5: + originX = x; + originY = y; + var _ref4 = [h, w]; + w = _ref4[0]; + h = _ref4[1]; + y -= h; + rotateAngle = 90; + break; + // Rotate 90 degrees CW + case 6: + originX = x; + originY = y; + var _ref5 = [h, w]; + w = _ref5[0]; + h = _ref5[1]; + h = -h; + rotateAngle = 90; + break; + // Flip horizontally and rotate 90 degrees CW + case 7: + originX = x; + originY = y; + var _ref6 = [h, w]; + w = _ref6[0]; + h = _ref6[1]; + h = -h; + w = -w; + x -= w; + rotateAngle = 90; + break; + // Rotate 270 degrees CW + case 8: + originX = x; + originY = y; + var _ref7 = [h, w]; + w = _ref7[0]; + h = _ref7[1]; + h = -h; + x -= w; + y -= h; + rotateAngle = -90; + break; + } + } else { + h = -h; + y -= h; + rotateAngle = 0; + } + + // create link annotations if the link option is given + if (options.link != null) { + this.link(x, y, w, h, options.link); + } + if (options.goTo != null) { + this.goTo(x, y, w, h, options.goTo); + } + if (options.destination != null) { + this.addNamedDestination(options.destination, 'XYZ', x, y, null); + } + + // Set the current y position to below the image if it is in the document flow + if (this.y === y) { + this.y += h; + } + this.save(); + if (rotateAngle) { + this.rotate(rotateAngle, { + origin: [originX, originY] + }); + } + this.transform(w, 0, 0, h, x, y); + this.addContent("/" + image.label + " Do"); + this.restore(); + return this; + }, + openImage: function openImage(src) { + var image; + if (typeof src === 'string') { + image = this._imageRegistry[src]; + } + if (!image) { + image = PDFImage.open(src, "I" + ++this._imageCount); + if (typeof src === 'string') { + this._imageRegistry[src] = image; + } + } + return image; + } +}; +var AnnotationsMixin = { + annotate: function annotate(x, y, w, h, options) { + options.Type = 'Annot'; + options.Rect = this._convertRect(x, y, w, h); + options.Border = [0, 0, 0]; + if (options.Subtype === 'Link' && typeof options.F === 'undefined') { + options.F = 1 << 2; // Print Annotation Flag + } + if (options.Subtype !== 'Link') { + if (options.C == null) { + options.C = this._normalizeColor(options.color || [0, 0, 0]); + } + } // convert colors + delete options.color; + if (typeof options.Dest === 'string') { + options.Dest = new String(options.Dest); + } + + // Capitalize keys + for (var key in options) { + var val = options[key]; + options[key[0].toUpperCase() + key.slice(1)] = val; + } + var ref = this.ref(options); + this.page.annotations.push(ref); + ref.end(); + return this; + }, + note: function note(x, y, w, h, contents) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + options.Subtype = 'Text'; + options.Contents = new String(contents); + if (options.Name == null) { + options.Name = 'Comment'; + } + if (options.color == null) { + options.color = [243, 223, 92]; + } + return this.annotate(x, y, w, h, options); + }, + goTo: function goTo(x, y, w, h, name) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + options.Subtype = 'Link'; + options.A = this.ref({ + S: 'GoTo', + D: new String(name) + }); + options.A.end(); + return this.annotate(x, y, w, h, options); + }, + link: function link(x, y, w, h, url) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + options.Subtype = 'Link'; + if (typeof url === 'number') { + // Link to a page in the document (the page must already exist) + var pages = this._root.data.Pages.data; + if (url >= 0 && url < pages.Kids.length) { + options.A = this.ref({ + S: 'GoTo', + D: [pages.Kids[url], 'XYZ', null, null, null] + }); + options.A.end(); + } else { + throw new Error("The document has no page " + url); + } + } else { + // Link to an external url + options.A = this.ref({ + S: 'URI', + URI: new String(url) + }); + options.A.end(); + } + return this.annotate(x, y, w, h, options); + }, + _markup: function _markup(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + var _this$_convertRect = this._convertRect(x, y, w, h), + x1 = _this$_convertRect[0], + y1 = _this$_convertRect[1], + x2 = _this$_convertRect[2], + y2 = _this$_convertRect[3]; + options.QuadPoints = [x1, y2, x2, y2, x1, y1, x2, y1]; + options.Contents = new String(); + return this.annotate(x, y, w, h, options); + }, + highlight: function highlight(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'Highlight'; + if (options.color == null) { + options.color = [241, 238, 148]; + } + return this._markup(x, y, w, h, options); + }, + underline: function underline(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'Underline'; + return this._markup(x, y, w, h, options); + }, + strike: function strike(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'StrikeOut'; + return this._markup(x, y, w, h, options); + }, + lineAnnotation: function lineAnnotation(x1, y1, x2, y2) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'Line'; + options.Contents = new String(); + options.L = [x1, this.page.height - y1, x2, this.page.height - y2]; + return this.annotate(x1, y1, x2, y2, options); + }, + rectAnnotation: function rectAnnotation(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'Square'; + options.Contents = new String(); + return this.annotate(x, y, w, h, options); + }, + ellipseAnnotation: function ellipseAnnotation(x, y, w, h) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + options.Subtype = 'Circle'; + options.Contents = new String(); + return this.annotate(x, y, w, h, options); + }, + textAnnotation: function textAnnotation(x, y, w, h, text) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + options.Subtype = 'FreeText'; + options.Contents = new String(text); + options.DA = new String(); + return this.annotate(x, y, w, h, options); + }, + fileAnnotation: function fileAnnotation(x, y, w, h) { + var file = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {}; + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + // create hidden file + var filespec = this.file(file.src, Object.assign({ + hidden: true + }, file)); + options.Subtype = 'FileAttachment'; + options.FS = filespec; + + // add description from filespec unless description (Contents) has already been set + if (options.Contents) { + options.Contents = new String(options.Contents); + } else if (filespec.data.Desc) { + options.Contents = filespec.data.Desc; + } + return this.annotate(x, y, w, h, options); + }, + _convertRect: function _convertRect(x1, y1, w, h) { + // flip y1 and y2 + var y2 = y1; + y1 += h; + + // make x2 + var x2 = x1 + w; + + // apply current transformation matrix to points + var _this$_ctm = this._ctm, + m0 = _this$_ctm[0], + m1 = _this$_ctm[1], + m2 = _this$_ctm[2], + m3 = _this$_ctm[3], + m4 = _this$_ctm[4], + m5 = _this$_ctm[5]; + x1 = m0 * x1 + m2 * y1 + m4; + y1 = m1 * x1 + m3 * y1 + m5; + x2 = m0 * x2 + m2 * y2 + m4; + y2 = m1 * x2 + m3 * y2 + m5; + return [x1, y1, x2, y2]; + } +}; +var PDFOutline = /*#__PURE__*/function () { + function PDFOutline(document, parent, title, dest) { + var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : { + expanded: false + }; + this.document = document; + this.options = options; + this.outlineData = {}; + if (dest !== null) { + this.outlineData['Dest'] = [dest.dictionary, 'Fit']; + } + if (parent !== null) { + this.outlineData['Parent'] = parent; + } + if (title !== null) { + this.outlineData['Title'] = new String(title); + } + this.dictionary = this.document.ref(this.outlineData); + this.children = []; + } + var _proto17 = PDFOutline.prototype; + _proto17.addItem = function addItem(title) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { + expanded: false + }; + var result = new PDFOutline(this.document, this.dictionary, title, this.document.page, options); + this.children.push(result); + return result; + }; + _proto17.endOutline = function endOutline() { + if (this.children.length > 0) { + if (this.options.expanded) { + this.outlineData.Count = this.children.length; + } + var _first2 = this.children[0], + _last2 = this.children[this.children.length - 1]; + this.outlineData.First = _first2.dictionary; + this.outlineData.Last = _last2.dictionary; + for (var i = 0, len = this.children.length; i < len; i++) { + var child = this.children[i]; + if (i > 0) { + child.outlineData.Prev = this.children[i - 1].dictionary; + } + if (i < this.children.length - 1) { + child.outlineData.Next = this.children[i + 1].dictionary; + } + child.endOutline(); + } + } + return this.dictionary.end(); + }; + return PDFOutline; +}(); +var OutlineMixin = { + initOutline: function initOutline() { + return this.outline = new PDFOutline(this, null, null, null); + }, + endOutline: function endOutline() { + this.outline.endOutline(); + if (this.outline.children.length > 0) { + this._root.data.Outlines = this.outline.dictionary; + return this._root.data.PageMode = 'UseOutlines'; + } + } +}; + +/* +PDFStructureContent - a reference to a marked structure content +By Ben Schmidt +*/ +var PDFStructureContent = /*#__PURE__*/function () { + function PDFStructureContent(pageRef, mcid) { + this.refs = [{ + pageRef: pageRef, + mcid: mcid + }]; + } + var _proto18 = PDFStructureContent.prototype; + _proto18.push = function push(structContent) { + var _this16 = this; + structContent.refs.forEach(function (ref) { + return _this16.refs.push(ref); + }); + }; + return PDFStructureContent; +}(); +/* +PDFStructureElement - represents an element in the PDF logical structure tree +By Ben Schmidt +*/ +var PDFStructureElement = /*#__PURE__*/function () { + function PDFStructureElement(document, type) { + var _this17 = this; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var children = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null; + this.document = document; + this._attached = false; + this._ended = false; + this._flushed = false; + this.dictionary = document.ref({ + // Type: "StructElem", + S: type + }); + var data = this.dictionary.data; + if (Array.isArray(options) || this._isValidChild(options)) { + children = options; + options = {}; + } + if (typeof options.title !== 'undefined') { + data.T = new String(options.title); + } + if (typeof options.lang !== 'undefined') { + data.Lang = new String(options.lang); + } + if (typeof options.alt !== 'undefined') { + data.Alt = new String(options.alt); + } + if (typeof options.expanded !== 'undefined') { + data.E = new String(options.expanded); + } + if (typeof options.actual !== 'undefined') { + data.ActualText = new String(options.actual); + } + this._children = []; + if (children) { + if (!Array.isArray(children)) { + children = [children]; + } + children.forEach(function (child) { + return _this17.add(child); + }); + this.end(); + } + } + var _proto19 = PDFStructureElement.prototype; + _proto19.add = function add(child) { + if (this._ended) { + throw new Error("Cannot add child to already-ended structure element"); + } + if (!this._isValidChild(child)) { + throw new Error("Invalid structure element child"); + } + if (child instanceof PDFStructureElement) { + child.setParent(this.dictionary); + if (this._attached) { + child.setAttached(); + } + } + if (child instanceof PDFStructureContent) { + this._addContentToParentTree(child); + } + if (typeof child === 'function' && this._attached) { + // _contentForClosure() adds the content to the parent tree + child = this._contentForClosure(child); + } + this._children.push(child); + return this; + }; + _proto19._addContentToParentTree = function _addContentToParentTree(content) { + var _this18 = this; + content.refs.forEach(function (_ref) { + var pageRef = _ref.pageRef, + mcid = _ref.mcid; + var pageStructParents = _this18.document.getStructParentTree().get(pageRef.data.StructParents); + pageStructParents[mcid] = _this18.dictionary; + }); + }; + _proto19.setParent = function setParent(parentRef) { + if (this.dictionary.data.P) { + throw new Error("Structure element added to more than one parent"); + } + this.dictionary.data.P = parentRef; + this._flush(); + }; + _proto19.setAttached = function setAttached() { + var _this19 = this; + if (this._attached) { + return; + } + this._children.forEach(function (child, index) { + if (child instanceof PDFStructureElement) { + child.setAttached(); + } + if (typeof child === 'function') { + _this19._children[index] = _this19._contentForClosure(child); + } + }); + this._attached = true; + this._flush(); + }; + _proto19.end = function end() { + if (this._ended) { + return; + } + this._children.filter(function (child) { + return child instanceof PDFStructureElement; + }).forEach(function (child) { + return child.end(); + }); + this._ended = true; + this._flush(); + }; + _proto19._isValidChild = function _isValidChild(child) { + return child instanceof PDFStructureElement || child instanceof PDFStructureContent || typeof child === 'function'; + }; + _proto19._contentForClosure = function _contentForClosure(closure) { + var content = this.document.markStructureContent(this.dictionary.data.S); + closure(); + this.document.endMarkedContent(); + this._addContentToParentTree(content); + return content; + }; + _proto19._isFlushable = function _isFlushable() { + if (!this.dictionary.data.P || !this._ended) { + return false; + } + return this._children.every(function (child) { + if (typeof child === 'function') { + return false; + } + if (child instanceof PDFStructureElement) { + return child._isFlushable(); + } + return true; + }); + }; + _proto19._flush = function _flush() { + var _this20 = this; + if (this._flushed || !this._isFlushable()) { + return; + } + this.dictionary.data.K = []; + this._children.forEach(function (child) { + return _this20._flushChild(child); + }); + this.dictionary.end(); + + // free memory used by children; the dictionary itself may still be + // referenced by a parent structure element or root, but we can + // at least trim the tree here + this._children = []; + this.dictionary.data.K = null; + this._flushed = true; + }; + _proto19._flushChild = function _flushChild(child) { + var _this21 = this; + if (child instanceof PDFStructureElement) { + this.dictionary.data.K.push(child.dictionary); + } + if (child instanceof PDFStructureContent) { + child.refs.forEach(function (_ref2) { + var pageRef = _ref2.pageRef, + mcid = _ref2.mcid; + if (!_this21.dictionary.data.Pg) { + _this21.dictionary.data.Pg = pageRef; + } + if (_this21.dictionary.data.Pg === pageRef) { + _this21.dictionary.data.K.push(mcid); + } else { + _this21.dictionary.data.K.push({ + Type: "MCR", + Pg: pageRef, + MCID: mcid + }); + } + }); + } + }; + return PDFStructureElement; +}(); +/* +PDFNumberTree - represents a number tree object +*/ +var PDFNumberTree = /*#__PURE__*/function (_PDFTree2) { + function PDFNumberTree() { + return _PDFTree2.apply(this, arguments) || this; + } + _inheritsLoose(PDFNumberTree, _PDFTree2); + var _proto20 = PDFNumberTree.prototype; + _proto20._compareKeys = function _compareKeys(a, b) { + return parseInt(a) - parseInt(b); + }; + _proto20._keysName = function _keysName() { + return "Nums"; + }; + _proto20._dataForKey = function _dataForKey(k) { + return parseInt(k); + }; + return PDFNumberTree; +}(PDFTree); +/* +Markings mixin - support marked content sequences in content streams +By Ben Schmidt +*/ +var MarkingsMixin = { + initMarkings: function initMarkings(options) { + this.structChildren = []; + if (options.tagged) { + this.getMarkInfoDictionary().data.Marked = true; + this.getStructTreeRoot(); + } + }, + markContent: function markContent(tag) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + if (tag === 'Artifact' || options && options.mcid) { + var toClose = 0; + this.page.markings.forEach(function (marking) { + if (toClose || marking.structContent || marking.tag === 'Artifact') { + toClose++; + } + }); + while (toClose--) { + this.endMarkedContent(); + } + } + if (!options) { + this.page.markings.push({ + tag: tag + }); + this.addContent("/" + tag + " BMC"); + return this; + } + this.page.markings.push({ + tag: tag, + options: options + }); + var dictionary = {}; + if (typeof options.mcid !== 'undefined') { + dictionary.MCID = options.mcid; + } + if (tag === 'Artifact') { + if (typeof options.type === 'string') { + dictionary.Type = options.type; + } + if (Array.isArray(options.bbox)) { + dictionary.BBox = [options.bbox[0], this.page.height - options.bbox[3], options.bbox[2], this.page.height - options.bbox[1]]; + } + if (Array.isArray(options.attached) && options.attached.every(function (val) { + return typeof val === 'string'; + })) { + dictionary.Attached = options.attached; + } + } + if (tag === 'Span') { + if (options.lang) { + dictionary.Lang = new String(options.lang); + } + if (options.alt) { + dictionary.Alt = new String(options.alt); + } + if (options.expanded) { + dictionary.E = new String(options.expanded); + } + if (options.actual) { + dictionary.ActualText = new String(options.actual); + } + } + this.addContent("/" + tag + " " + PDFObject.convert(dictionary) + " BDC"); + return this; + }, + markStructureContent: function markStructureContent(tag) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var pageStructParents = this.getStructParentTree().get(this.page.structParentTreeKey); + var mcid = pageStructParents.length; + pageStructParents.push(null); + this.markContent(tag, Object.assign({}, options, { + mcid: mcid + })); + var structContent = new PDFStructureContent(this.page.dictionary, mcid); + this.page.markings.slice(-1)[0].structContent = structContent; + return structContent; + }, + endMarkedContent: function endMarkedContent() { + this.page.markings.pop(); + this.addContent('EMC'); + return this; + }, + struct: function struct(type) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var children = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; + return new PDFStructureElement(this, type, options, children); + }, + addStructure: function addStructure(structElem) { + var structTreeRoot = this.getStructTreeRoot(); + structElem.setParent(structTreeRoot); + structElem.setAttached(); + this.structChildren.push(structElem); + if (!structTreeRoot.data.K) { + structTreeRoot.data.K = []; + } + structTreeRoot.data.K.push(structElem.dictionary); + return this; + }, + initPageMarkings: function initPageMarkings(pageMarkings) { + var _this22 = this; + pageMarkings.forEach(function (marking) { + if (marking.structContent) { + var structContent = marking.structContent; + var newStructContent = _this22.markStructureContent(marking.tag, marking.options); + structContent.push(newStructContent); + _this22.page.markings.slice(-1)[0].structContent = structContent; + } else { + _this22.markContent(marking.tag, marking.options); + } + }); + }, + endPageMarkings: function endPageMarkings(page) { + var pageMarkings = page.markings; + pageMarkings.forEach(function () { + return page.write('EMC'); + }); + page.markings = []; + return pageMarkings; + }, + getMarkInfoDictionary: function getMarkInfoDictionary() { + if (!this._root.data.MarkInfo) { + this._root.data.MarkInfo = this.ref({}); + } + return this._root.data.MarkInfo; + }, + hasMarkInfoDictionary: function hasMarkInfoDictionary() { + return !!this._root.data.MarkInfo; + }, + getStructTreeRoot: function getStructTreeRoot() { + if (!this._root.data.StructTreeRoot) { + this._root.data.StructTreeRoot = this.ref({ + Type: 'StructTreeRoot', + ParentTree: new PDFNumberTree(), + ParentTreeNextKey: 0 + }); + } + return this._root.data.StructTreeRoot; + }, + getStructParentTree: function getStructParentTree() { + return this.getStructTreeRoot().data.ParentTree; + }, + createStructParentTreeNextKey: function createStructParentTreeNextKey() { + // initialise the MarkInfo dictionary + this.getMarkInfoDictionary(); + var structTreeRoot = this.getStructTreeRoot(); + var key = structTreeRoot.data.ParentTreeNextKey++; + structTreeRoot.data.ParentTree.add(key, []); + return key; + }, + endMarkings: function endMarkings() { + var structTreeRoot = this._root.data.StructTreeRoot; + if (structTreeRoot) { + structTreeRoot.end(); + this.structChildren.forEach(function (structElem) { + return structElem.end(); + }); + } + if (this._root.data.MarkInfo) { + this._root.data.MarkInfo.end(); + } + } +}; +var FIELD_FLAGS = { + readOnly: 1, + required: 2, + noExport: 4, + multiline: 0x1000, + password: 0x2000, + toggleToOffButton: 0x4000, + radioButton: 0x8000, + pushButton: 0x10000, + combo: 0x20000, + edit: 0x40000, + sort: 0x80000, + multiSelect: 0x200000, + noSpell: 0x400000 +}; +var FIELD_JUSTIFY = { + left: 0, + center: 1, + right: 2 +}; +var VALUE_MAP = { + value: 'V', + defaultValue: 'DV' +}; +var FORMAT_SPECIAL = { + zip: '0', + zipPlus4: '1', + zip4: '1', + phone: '2', + ssn: '3' +}; +var FORMAT_DEFAULT = { + number: { + nDec: 0, + sepComma: false, + negStyle: 'MinusBlack', + currency: '', + currencyPrepend: true + }, + percent: { + nDec: 0, + sepComma: false + } +}; +var AcroFormMixin = { + /** + * Must call if adding AcroForms to a document. Must also call font() before + * this method to set the default font. + */ + initForm: function initForm() { + if (!this._font) { + throw new Error('Must set a font before calling initForm method'); + } + this._acroform = { + fonts: {}, + defaultFont: this._font.name + }; + this._acroform.fonts[this._font.id] = this._font.ref(); + var data = { + Fields: [], + NeedAppearances: true, + DA: new String("/" + this._font.id + " 0 Tf 0 g"), + DR: { + Font: {} + } + }; + data.DR.Font[this._font.id] = this._font.ref(); + var AcroForm = this.ref(data); + this._root.data.AcroForm = AcroForm; + return this; + }, + /** + * Called automatically by document.js + */ + endAcroForm: function endAcroForm() { + var _this23 = this; + if (this._root.data.AcroForm) { + if (!Object.keys(this._acroform.fonts).length && !this._acroform.defaultFont) { + throw new Error('No fonts specified for PDF form'); + } + var fontDict = this._root.data.AcroForm.data.DR.Font; + Object.keys(this._acroform.fonts).forEach(function (name) { + fontDict[name] = _this23._acroform.fonts[name]; + }); + this._root.data.AcroForm.data.Fields.forEach(function (fieldRef) { + _this23._endChild(fieldRef); + }); + this._root.data.AcroForm.end(); + } + return this; + }, + _endChild: function _endChild(ref) { + var _this24 = this; + if (Array.isArray(ref.data.Kids)) { + ref.data.Kids.forEach(function (childRef) { + _this24._endChild(childRef); + }); + ref.end(); + } + return this; + }, + /** + * Creates and adds a form field to the document. Form fields are intermediate + * nodes in a PDF form that are used to specify form name heirarchy and form + * value defaults. + * @param {string} name - field name (T attribute in field dictionary) + * @param {object} options - other attributes to include in field dictionary + */ + formField: function formField(name) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var fieldDict = this._fieldDict(name, null, options); + var fieldRef = this.ref(fieldDict); + this._addToParent(fieldRef); + return fieldRef; + }, + /** + * Creates and adds a Form Annotation to the document. Form annotations are + * called Widget annotations internally within a PDF file. + * @param {string} name - form field name (T attribute of widget annotation + * dictionary) + * @param {number} x + * @param {number} y + * @param {number} w + * @param {number} h + * @param {object} options + */ + formAnnotation: function formAnnotation(name, type, x, y, w, h) { + var options = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : {}; + var fieldDict = this._fieldDict(name, type, options); + fieldDict.Subtype = 'Widget'; + if (fieldDict.F === undefined) { + fieldDict.F = 4; // print the annotation + } + + // Add Field annot to page, and get it's ref + this.annotate(x, y, w, h, fieldDict); + var annotRef = this.page.annotations[this.page.annotations.length - 1]; + return this._addToParent(annotRef); + }, + formText: function formText(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'text', x, y, w, h, options); + }, + formPushButton: function formPushButton(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'pushButton', x, y, w, h, options); + }, + formCombo: function formCombo(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'combo', x, y, w, h, options); + }, + formList: function formList(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'list', x, y, w, h, options); + }, + formRadioButton: function formRadioButton(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'radioButton', x, y, w, h, options); + }, + formCheckbox: function formCheckbox(name, x, y, w, h) { + var options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; + return this.formAnnotation(name, 'checkbox', x, y, w, h, options); + }, + _addToParent: function _addToParent(fieldRef) { + var parent = fieldRef.data.Parent; + if (parent) { + if (!parent.data.Kids) { + parent.data.Kids = []; + } + parent.data.Kids.push(fieldRef); + } else { + this._root.data.AcroForm.data.Fields.push(fieldRef); + } + return this; + }, + _fieldDict: function _fieldDict(name, type) { + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + if (!this._acroform) { + throw new Error('Call document.initForm() method before adding form elements to document'); + } + var opts = Object.assign({}, options); + if (type !== null) { + opts = this._resolveType(type, options); + } + opts = this._resolveFlags(opts); + opts = this._resolveJustify(opts); + opts = this._resolveFont(opts); + opts = this._resolveStrings(opts); + opts = this._resolveColors(opts); + opts = this._resolveFormat(opts); + opts.T = new String(name); + if (opts.parent) { + opts.Parent = opts.parent; + delete opts.parent; + } + return opts; + }, + _resolveType: function _resolveType(type, opts) { + if (type === 'text') { + opts.FT = 'Tx'; + } else if (type === 'pushButton') { + opts.FT = 'Btn'; + opts.pushButton = true; + } else if (type === 'radioButton') { + opts.FT = 'Btn'; + opts.radioButton = true; + } else if (type === 'checkbox') { + opts.FT = 'Btn'; + } else if (type === 'combo') { + opts.FT = 'Ch'; + opts.combo = true; + } else if (type === 'list') { + opts.FT = 'Ch'; + } else { + throw new Error("Invalid form annotation type '" + type + "'"); + } + return opts; + }, + _resolveFormat: function _resolveFormat(opts) { + var f = opts.format; + if (f && f.type) { + var fnKeystroke; + var fnFormat; + var params = ''; + if (FORMAT_SPECIAL[f.type] !== undefined) { + fnKeystroke = "AFSpecial_Keystroke"; + fnFormat = "AFSpecial_Format"; + params = FORMAT_SPECIAL[f.type]; + } else { + var format = f.type.charAt(0).toUpperCase() + f.type.slice(1); + fnKeystroke = "AF" + format + "_Keystroke"; + fnFormat = "AF" + format + "_Format"; + if (f.type === 'date') { + fnKeystroke += 'Ex'; + params = String(f.param); + } else if (f.type === 'time') { + params = String(f.param); + } else if (f.type === 'number') { + var p = Object.assign({}, FORMAT_DEFAULT.number, f); + params = String([String(p.nDec), p.sepComma ? '0' : '1', '"' + p.negStyle + '"', 'null', '"' + p.currency + '"', String(p.currencyPrepend)].join(',')); + } else if (f.type === 'percent') { + var _p = Object.assign({}, FORMAT_DEFAULT.percent, f); + params = String([String(_p.nDec), _p.sepComma ? '0' : '1'].join(',')); + } + } + opts.AA = opts.AA ? opts.AA : {}; + opts.AA.K = { + S: 'JavaScript', + JS: new String(fnKeystroke + "(" + params + ");") + }; + opts.AA.F = { + S: 'JavaScript', + JS: new String(fnFormat + "(" + params + ");") + }; + } + delete opts.format; + return opts; + }, + _resolveColors: function _resolveColors(opts) { + var color = this._normalizeColor(opts.backgroundColor); + if (color) { + if (!opts.MK) { + opts.MK = {}; + } + opts.MK.BG = color; + } + color = this._normalizeColor(opts.borderColor); + if (color) { + if (!opts.MK) { + opts.MK = {}; + } + opts.MK.BC = color; + } + delete opts.backgroundColor; + delete opts.borderColor; + return opts; + }, + _resolveFlags: function _resolveFlags(options) { + var result = 0; + Object.keys(options).forEach(function (key) { + if (FIELD_FLAGS[key]) { + if (options[key]) { + result |= FIELD_FLAGS[key]; + } + delete options[key]; + } + }); + if (result !== 0) { + options.Ff = options.Ff ? options.Ff : 0; + options.Ff |= result; + } + return options; + }, + _resolveJustify: function _resolveJustify(options) { + var result = 0; + if (options.align !== undefined) { + if (typeof FIELD_JUSTIFY[options.align] === 'number') { + result = FIELD_JUSTIFY[options.align]; + } + delete options.align; + } + if (result !== 0) { + options.Q = result; // default + } + return options; + }, + _resolveFont: function _resolveFont(options) { + // add current font to document-level AcroForm dict if necessary + if (this._acroform.fonts[this._font.id] == null) { + this._acroform.fonts[this._font.id] = this._font.ref(); + } + + // add current font to field's resource dict (RD) if not the default acroform font + if (this._acroform.defaultFont !== this._font.name) { + options.DR = { + Font: {} + }; + + // Get the fontSize option. If not set use auto sizing + var fontSize = options.fontSize || 0; + options.DR.Font[this._font.id] = this._font.ref(); + options.DA = new String("/" + this._font.id + " " + fontSize + " Tf 0 g"); + } + return options; + }, + _resolveStrings: function _resolveStrings(options) { + var select = []; + function appendChoices(a) { + if (Array.isArray(a)) { + for (var idx = 0; idx < a.length; idx++) { + if (typeof a[idx] === 'string') { + select.push(new String(a[idx])); + } else { + select.push(a[idx]); + } + } + } + } + appendChoices(options.Opt); + if (options.select) { + appendChoices(options.select); + delete options.select; + } + if (select.length) { + options.Opt = select; + } + Object.keys(VALUE_MAP).forEach(function (key) { + if (options[key] !== undefined) { + options[VALUE_MAP[key]] = options[key]; + delete options[key]; + } + }); + ['V', 'DV'].forEach(function (key) { + if (typeof options[key] === 'string') { + options[key] = new String(options[key]); + } + }); + if (options.MK && options.MK.CA) { + options.MK.CA = new String(options.MK.CA); + } + if (options.label) { + options.MK = options.MK ? options.MK : {}; + options.MK.CA = new String(options.label); + delete options.label; + } + return options; + } +}; +var AttachmentsMixin = { + /** + * Embed contents of `src` in PDF + * @param {Buffer | ArrayBuffer | string} src input Buffer, ArrayBuffer, base64 encoded string or path to file + * @param {object} options + * * options.name: filename to be shown in PDF, will use `src` if none set + * * options.type: filetype to be shown in PDF + * * options.description: description to be shown in PDF + * * options.hidden: if true, do not add attachment to EmbeddedFiles dictionary. Useful for file attachment annotations + * * options.creationDate: override creation date + * * options.modifiedDate: override modified date + * * options.relationship: Relationship between the PDF document and its attached file. Can be 'Alternative', 'Data', 'Source', 'Supplement' or 'Unspecified'. + * @returns filespec reference + */ + file: function file(src) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + options.name = options.name || src; + options.relationship = options.relationship || 'Unspecified'; + var refBody = { + Type: 'EmbeddedFile', + Params: {} + }; + var data; + if (!src) { + throw new Error('No src specified'); + } + if (Buffer.isBuffer(src)) { + data = src; + } else if (src instanceof ArrayBuffer) { + data = Buffer.from(new Uint8Array(src)); + } else { + var match; + if (match = /^data:(.*?);base64,(.*)$/.exec(src)) { + if (match[1]) { + refBody.Subtype = match[1].replace('/', '#2F'); + } + data = Buffer.from(match[2], 'base64'); + } else { + data = fs.readFileSync(src); + if (!data) { + throw new Error("Could not read contents of file at filepath " + src); + } + + // update CreationDate and ModDate + var _fs$statSync = fs.statSync(src), + birthtime = _fs$statSync.birthtime, + ctime = _fs$statSync.ctime; + refBody.Params.CreationDate = birthtime; + refBody.Params.ModDate = ctime; + } + } + + // override creation date and modified date + if (options.creationDate instanceof Date) { + refBody.Params.CreationDate = options.creationDate; + } + if (options.modifiedDate instanceof Date) { + refBody.Params.ModDate = options.modifiedDate; + } + // add optional subtype + if (options.type) { + refBody.Subtype = options.type.replace('/', '#2F'); + } + + // add checksum and size information + var checksum = _cryptoJs.default.MD5(_cryptoJs.default.lib.WordArray.create(new Uint8Array(data))); + refBody.Params.CheckSum = new String(checksum); + refBody.Params.Size = data.byteLength; + + // save some space when embedding the same file again + // if a file with the same name and metadata exists, reuse its reference + var ref; + if (!this._fileRegistry) this._fileRegistry = {}; + var file = this._fileRegistry[options.name]; + if (file && isEqual(refBody, file)) { + ref = file.ref; + } else { + ref = this.ref(refBody); + ref.end(data); + this._fileRegistry[options.name] = Object.assign({}, refBody, { + ref: ref + }); + } + // add filespec for embedded file + var fileSpecBody = { + Type: 'Filespec', + AFRelationship: options.relationship, + F: new String(options.name), + EF: { + F: ref + }, + UF: new String(options.name) + }; + if (options.description) { + fileSpecBody.Desc = new String(options.description); + } + var filespec = this.ref(fileSpecBody); + filespec.end(); + if (!options.hidden) { + this.addNamedEmbeddedFile(options.name, filespec); + } + + // Add file to the catalogue to be PDF/A3 compliant + if (this._root.data.AF) { + this._root.data.AF.push(filespec); + } else { + this._root.data.AF = [filespec]; + } + return filespec; + } +}; + +/** check two embedded file metadata objects for equality */ +function isEqual(a, b) { + return a.Subtype === b.Subtype && a.Params.CheckSum.toString() === b.Params.CheckSum.toString() && a.Params.Size === b.Params.Size && a.Params.CreationDate.getTime() === b.Params.CreationDate.getTime() && (a.Params.ModDate === undefined && b.Params.ModDate === undefined || a.Params.ModDate.getTime() === b.Params.ModDate.getTime()); +} +var PDFA = { + initPDFA: function initPDFA(pSubset) { + if (pSubset.charAt(pSubset.length - 3) === '-') { + this.subset_conformance = pSubset.charAt(pSubset.length - 1).toUpperCase(); + this.subset = parseInt(pSubset.charAt(pSubset.length - 2)); + } else { + // Default to Basic conformance when user doesn't specify + this.subset_conformance = 'B'; + this.subset = parseInt(pSubset.charAt(pSubset.length - 1)); + } + }, + endSubset: function endSubset() { + this._addPdfaMetadata(); + this._addColorOutputIntent(); + }, + _addColorOutputIntent: function _addColorOutputIntent() { + var iccProfile = Buffer("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", "base64"); + ; + var colorProfileRef = this.ref({ + Length: iccProfile.length, + N: 3 + }); + colorProfileRef.write(iccProfile); + colorProfileRef.end(); + var intentRef = this.ref({ + Type: 'OutputIntent', + S: 'GTS_PDFA1', + Info: new String('sRGB IEC61966-2.1'), + OutputConditionIdentifier: new String('sRGB IEC61966-2.1'), + DestOutputProfile: colorProfileRef + }); + intentRef.end(); + this._root.data.OutputIntents = [intentRef]; + }, + _getPdfaid: function _getPdfaid() { + return "\n \n " + this.subset + "\n " + this.subset_conformance + "\n \n "; + }, + _addPdfaMetadata: function _addPdfaMetadata() { + this.appendXML(this._getPdfaid()); + } +}; +var PDFUA = { + initPDFUA: function initPDFUA() { + this.subset = 1; + }, + endSubset: function endSubset() { + this._addPdfuaMetadata(); + }, + _addPdfuaMetadata: function _addPdfuaMetadata() { + this.appendXML(this._getPdfuaid()); + }, + _getPdfuaid: function _getPdfuaid() { + return "\n \n " + this.subset + "\n \n "; + } +}; +var SubsetMixin = { + _importSubset: function _importSubset(subset) { + Object.assign(this, subset); + }, + initSubset: function initSubset(options) { + switch (options.subset) { + case 'PDF/A-1': + case 'PDF/A-1a': + case 'PDF/A-1b': + case 'PDF/A-2': + case 'PDF/A-2a': + case 'PDF/A-2b': + case 'PDF/A-3': + case 'PDF/A-3a': + case 'PDF/A-3b': + this._importSubset(PDFA); + this.initPDFA(options.subset); + break; + case 'PDF/UA': + this._importSubset(PDFUA); + this.initPDFUA(); + break; + } + } +}; +var PDFMetadata = /*#__PURE__*/function () { + function PDFMetadata() { + this._metadata = "\n \n \n \n "; + } + var _proto21 = PDFMetadata.prototype; + _proto21._closeTags = function _closeTags() { + this._metadata = this._metadata.concat("\n \n \n \n "); + }; + _proto21.append = function append(xml) { + var newline = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + this._metadata = this._metadata.concat(xml); + if (newline) this._metadata = this._metadata.concat('\n'); + }; + _proto21.getXML = function getXML() { + return this._metadata; + }; + _proto21.getLength = function getLength() { + return this._metadata.length; + }; + _proto21.end = function end() { + this._closeTags(); + this._metadata = this._metadata.trim(); + }; + return PDFMetadata; +}(); +var MetadataMixin = { + initMetadata: function initMetadata() { + this.metadata = new PDFMetadata(); + }, + appendXML: function appendXML(xml) { + var newline = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + this.metadata.append(xml, newline); + }, + _addInfo: function _addInfo() { + this.appendXML("\n \n " + (this.info.CreationDate.toISOString().split('.')[0] + "Z") + "\n " + this.info.Creator + "\n \n "); + if (this.info.Title || this.info.Author || this.info.Subject) { + this.appendXML("\n \n "); + if (this.info.Title) { + this.appendXML("\n \n \n " + this.info.Title + "\n \n \n "); + } + if (this.info.Author) { + this.appendXML("\n \n \n " + this.info.Author + "\n \n \n "); + } + if (this.info.Subject) { + this.appendXML("\n \n \n " + this.info.Subject + "\n \n \n "); + } + this.appendXML("\n \n "); + } + this.appendXML("\n \n " + this.info.Creator + "", false); + if (this.info.Keywords) { + this.appendXML("\n " + this.info.Keywords + "", false); + } + this.appendXML("\n \n "); + }, + endMetadata: function endMetadata() { + this._addInfo(); + this.metadata.end(); + + /* + Metadata was introduced in PDF 1.4, so adding it to 1.3 + will likely only take up more space. + */ + if (this.version != 1.3) { + this.metadataRef = this.ref({ + length: this.metadata.getLength(), + Type: 'Metadata', + Subtype: 'XML' + }); + this.metadataRef.compress = false; + this.metadataRef.write(Buffer.from(this.metadata.getXML(), 'utf-8')); + this.metadataRef.end(); + this._root.data.Metadata = this.metadataRef; + } + } +}; + +/* +PDFDocument - represents an entire PDF document +By Devon Govett +*/ +var PDFDocument = /*#__PURE__*/function (_stream$Readable) { + function PDFDocument() { + var _this25; + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + _this25 = _stream$Readable.call(this, options) || this; + _this25.options = options; + + // PDF version + switch (options.pdfVersion) { + case '1.4': + _this25.version = 1.4; + break; + case '1.5': + _this25.version = 1.5; + break; + case '1.6': + _this25.version = 1.6; + break; + case '1.7': + case '1.7ext3': + _this25.version = 1.7; + break; + default: + _this25.version = 1.3; + break; + } + + // Whether streams should be compressed + _this25.compress = _this25.options.compress != null ? _this25.options.compress : true; + _this25._pageBuffer = []; + _this25._pageBufferStart = 0; + + // The PDF object store + _this25._offsets = []; + _this25._waiting = 0; + _this25._ended = false; + _this25._offset = 0; + var Pages = _this25.ref({ + Type: 'Pages', + Count: 0, + Kids: [] + }); + var Names = _this25.ref({ + Dests: new PDFNameTree() + }); + _this25._root = _this25.ref({ + Type: 'Catalog', + Pages: Pages, + Names: Names + }); + if (_this25.options.lang) { + _this25._root.data.Lang = new String(_this25.options.lang); + } + + // The current page + _this25.page = null; + + // Initialize mixins + _this25.initMetadata(); + _this25.initColor(); + _this25.initVector(); + _this25.initFonts(options.font); + _this25.initText(); + _this25.initImages(); + _this25.initOutline(); + _this25.initMarkings(options); + _this25.initSubset(options); + + // Initialize the metadata + _this25.info = { + Producer: 'PDFKit', + Creator: 'PDFKit', + CreationDate: new Date() + }; + if (_this25.options.info) { + for (var key in _this25.options.info) { + var val = _this25.options.info[key]; + _this25.info[key] = val; + } + } + if (_this25.options.displayTitle) { + _this25._root.data.ViewerPreferences = _this25.ref({ + DisplayDocTitle: true + }); + } + + // Generate file ID + _this25._id = PDFSecurity.generateFileID(_this25.info); + + // Initialize security settings + _this25._security = PDFSecurity.create(_this25, options); + + // Write the header + // PDF version + _this25._write("%PDF-" + _this25.version); + + // 4 binary chars, as recommended by the spec + _this25._write('%\xFF\xFF\xFF\xFF'); + + // Add the first page + if (_this25.options.autoFirstPage !== false) { + _this25.addPage(); + } + return _this25; + } + _inheritsLoose(PDFDocument, _stream$Readable); + var _proto22 = PDFDocument.prototype; + _proto22.addPage = function addPage(options) { + if (options == null) { + options = this.options; + } + + // end the current page if needed + if (!this.options.bufferPages) { + this.flushPages(); + } + + // create a page object + this.page = new PDFPage(this, options); + this._pageBuffer.push(this.page); + + // add the page to the object store + var pages = this._root.data.Pages.data; + pages.Kids.push(this.page.dictionary); + pages.Count++; + + // reset x and y coordinates + this.x = this.page.margins.left; + this.y = this.page.margins.top; + + // flip PDF coordinate system so that the origin is in + // the top left rather than the bottom left + this._ctm = [1, 0, 0, 1, 0, 0]; + this.transform(1, 0, 0, -1, 0, this.page.height); + this.emit('pageAdded'); + return this; + }; + _proto22.continueOnNewPage = function continueOnNewPage(options) { + var pageMarkings = this.endPageMarkings(this.page); + this.addPage(options); + this.initPageMarkings(pageMarkings); + return this; + }; + _proto22.bufferedPageRange = function bufferedPageRange() { + return { + start: this._pageBufferStart, + count: this._pageBuffer.length + }; + }; + _proto22.switchToPage = function switchToPage(n) { + var page; + if (!(page = this._pageBuffer[n - this._pageBufferStart])) { + throw new Error("switchToPage(" + n + ") out of bounds, current buffer covers pages " + this._pageBufferStart + " to " + (this._pageBufferStart + this._pageBuffer.length - 1)); + } + return this.page = page; + }; + _proto22.flushPages = function flushPages() { + // this local variable exists so we're future-proof against + // reentrant calls to flushPages. + var pages = this._pageBuffer; + this._pageBuffer = []; + this._pageBufferStart += pages.length; + for (var _iterator10 = _createForOfIteratorHelperLoose(pages), _step10; !(_step10 = _iterator10()).done;) { + var page = _step10.value; + this.endPageMarkings(page); + page.end(); + } + }; + _proto22.addNamedDestination = function addNamedDestination(name) { + for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + args[_key - 1] = arguments[_key]; + } + if (args.length === 0) { + args = ['XYZ', null, null, null]; + } + if (args[0] === 'XYZ' && args[2] !== null) { + args[2] = this.page.height - args[2]; + } + args.unshift(this.page.dictionary); + this._root.data.Names.data.Dests.add(name, args); + }; + _proto22.addNamedEmbeddedFile = function addNamedEmbeddedFile(name, ref) { + if (!this._root.data.Names.data.EmbeddedFiles) { + // disabling /Limits for this tree fixes attachments not showing in Adobe Reader + this._root.data.Names.data.EmbeddedFiles = new PDFNameTree({ + limits: false + }); + } + + // add filespec to EmbeddedFiles + this._root.data.Names.data.EmbeddedFiles.add(name, ref); + }; + _proto22.addNamedJavaScript = function addNamedJavaScript(name, js) { + if (!this._root.data.Names.data.JavaScript) { + this._root.data.Names.data.JavaScript = new PDFNameTree(); + } + var data = { + JS: new String(js), + S: 'JavaScript' + }; + this._root.data.Names.data.JavaScript.add(name, data); + }; + _proto22.ref = function ref(data) { + var ref = new PDFReference(this, this._offsets.length + 1, data); + this._offsets.push(null); // placeholder for this object's offset once it is finalized + this._waiting++; + return ref; + }; + _proto22._read = function _read() {} + // do nothing, but this method is required by node +; + _proto22._write = function _write(data) { + if (!Buffer.isBuffer(data)) { + data = Buffer.from(data + '\n', 'binary'); + } + this.push(data); + return this._offset += data.length; + }; + _proto22.addContent = function addContent(data) { + this.page.write(data); + return this; + }; + _proto22._refEnd = function _refEnd(ref) { + this._offsets[ref.id - 1] = ref.offset; + if (--this._waiting === 0 && this._ended) { + this._finalize(); + return this._ended = false; + } + }; + _proto22.end = function end() { + this.flushPages(); + this._info = this.ref(); + for (var key in this.info) { + var val = this.info[key]; + if (typeof val === 'string') { + val = new String(val); + } + var entry = this.ref(val); + entry.end(); + this._info.data[key] = entry; + } + this._info.end(); + for (var name in this._fontFamilies) { + var font = this._fontFamilies[name]; + font.finalize(); + } + this.endOutline(); + this.endMarkings(); + if (this.subset) { + this.endSubset(); + } + this.endMetadata(); + this._root.end(); + this._root.data.Pages.end(); + this._root.data.Names.end(); + this.endAcroForm(); + if (this._root.data.ViewerPreferences) { + this._root.data.ViewerPreferences.end(); + } + if (this._security) { + this._security.end(); + } + if (this._waiting === 0) { + return this._finalize(); + } else { + return this._ended = true; + } + }; + _proto22._finalize = function _finalize() { + // generate xref + var xRefOffset = this._offset; + this._write('xref'); + this._write("0 " + (this._offsets.length + 1)); + this._write('0000000000 65535 f '); + for (var _iterator11 = _createForOfIteratorHelperLoose(this._offsets), _step11; !(_step11 = _iterator11()).done;) { + var offset = _step11.value; + offset = ("0000000000" + offset).slice(-10); + this._write(offset + ' 00000 n '); + } + + // trailer + var trailer = { + Size: this._offsets.length + 1, + Root: this._root, + Info: this._info, + ID: [this._id, this._id] + }; + if (this._security) { + trailer.Encrypt = this._security.dictionary; + } + this._write('trailer'); + this._write(PDFObject.convert(trailer)); + this._write('startxref'); + this._write("" + xRefOffset); + this._write('%%EOF'); + + // end the stream + return this.push(null); + }; + _proto22.toString = function toString() { + return '[object PDFDocument]'; + }; + return PDFDocument; +}(_stream.default.Readable); +var mixin = function mixin(methods) { + Object.assign(PDFDocument.prototype, methods); +}; +mixin(MetadataMixin); +mixin(ColorMixin); +mixin(VectorMixin); +mixin(FontsMixin); +mixin(TextMixin); +mixin(ImagesMixin); +mixin(AnnotationsMixin); +mixin(OutlineMixin); +mixin(MarkingsMixin); +mixin(AcroFormMixin); +mixin(AttachmentsMixin); +mixin(SubsetMixin); +PDFDocument.LineWrapper = LineWrapper; +var _default = exports["default"] = PDFDocument; + +/***/ }), + +/***/ 73751: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var ___EXPOSE_LOADER_IMPORT___ = __webpack_require__(45314); +var ___EXPOSE_LOADER_GET_GLOBAL_THIS___ = __webpack_require__(72022); +var ___EXPOSE_LOADER_GLOBAL_THIS___ = ___EXPOSE_LOADER_GET_GLOBAL_THIS___; +if (typeof ___EXPOSE_LOADER_GLOBAL_THIS___["pdfMake"] === 'undefined') ___EXPOSE_LOADER_GLOBAL_THIS___["pdfMake"] = ___EXPOSE_LOADER_IMPORT___; +module.exports = ___EXPOSE_LOADER_IMPORT___; + + +/***/ }), + +/***/ 80182: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var process = __webpack_require__(9964); +// Currently in sync with Node.js lib/assert.js +// https://github.com/nodejs/node/commit/2a51ae424a513ec9a6aa3466baa0cc1d55dd4f3b + +// Originally from narwhal.js (http://narwhaljs.org) +// Copyright (c) 2009 Thomas Robinson <280north.com> +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the 'Software'), to +// deal in the Software without restriction, including without limitation the +// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +// sell copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } +function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } +function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } +var _require = __webpack_require__(35403), + _require$codes = _require.codes, + ERR_AMBIGUOUS_ARGUMENT = _require$codes.ERR_AMBIGUOUS_ARGUMENT, + ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, + ERR_INVALID_ARG_VALUE = _require$codes.ERR_INVALID_ARG_VALUE, + ERR_INVALID_RETURN_VALUE = _require$codes.ERR_INVALID_RETURN_VALUE, + ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS; +var AssertionError = __webpack_require__(85416); +var _require2 = __webpack_require__(7187), + inspect = _require2.inspect; +var _require$types = (__webpack_require__(7187).types), + isPromise = _require$types.isPromise, + isRegExp = _require$types.isRegExp; +var objectAssign = __webpack_require__(37596)(); +var objectIs = __webpack_require__(89636)(); +var RegExpPrototypeTest = __webpack_require__(67913)('RegExp.prototype.test'); +var errorCache = new Map(); +var isDeepEqual; +var isDeepStrictEqual; +var parseExpressionAt; +var findNodeAround; +var decoder; +function lazyLoadComparison() { + var comparison = __webpack_require__(86781); + isDeepEqual = comparison.isDeepEqual; + isDeepStrictEqual = comparison.isDeepStrictEqual; +} + +// Escape control characters but not \n and \t to keep the line breaks and +// indentation intact. +// eslint-disable-next-line no-control-regex +var escapeSequencesRegExp = /[\x00-\x08\x0b\x0c\x0e-\x1f]/g; +var meta = (/* unused pure expression or super */ null && (["\\u0000", "\\u0001", "\\u0002", "\\u0003", "\\u0004", "\\u0005", "\\u0006", "\\u0007", '\\b', '', '', "\\u000b", '\\f', '', "\\u000e", "\\u000f", "\\u0010", "\\u0011", "\\u0012", "\\u0013", "\\u0014", "\\u0015", "\\u0016", "\\u0017", "\\u0018", "\\u0019", "\\u001a", "\\u001b", "\\u001c", "\\u001d", "\\u001e", "\\u001f"])); +var escapeFn = function escapeFn(str) { + return meta[str.charCodeAt(0)]; +}; +var warned = false; + +// The assert module provides functions that throw +// AssertionError's when particular conditions are not met. The +// assert module must conform to the following interface. + +var assert = module.exports = ok; +var NO_EXCEPTION_SENTINEL = {}; + +// All of the following functions must throw an AssertionError +// when a corresponding condition is not met, with a message that +// may be undefined if not provided. All assertion methods provide +// both the actual and expected values to the assertion error for +// display purposes. + +function innerFail(obj) { + if (obj.message instanceof Error) throw obj.message; + throw new AssertionError(obj); +} +function fail(actual, expected, message, operator, stackStartFn) { + var argsLen = arguments.length; + var internalMessage; + if (argsLen === 0) { + internalMessage = 'Failed'; + } else if (argsLen === 1) { + message = actual; + actual = undefined; + } else { + if (warned === false) { + warned = true; + var warn = process.emitWarning ? process.emitWarning : console.warn.bind(console); + warn('assert.fail() with more than one argument is deprecated. ' + 'Please use assert.strictEqual() instead or only pass a message.', 'DeprecationWarning', 'DEP0094'); + } + if (argsLen === 2) operator = '!='; + } + if (message instanceof Error) throw message; + var errArgs = { + actual: actual, + expected: expected, + operator: operator === undefined ? 'fail' : operator, + stackStartFn: stackStartFn || fail + }; + if (message !== undefined) { + errArgs.message = message; + } + var err = new AssertionError(errArgs); + if (internalMessage) { + err.message = internalMessage; + err.generatedMessage = true; + } + throw err; +} +assert.fail = fail; + +// The AssertionError is defined in internal/error. +assert.AssertionError = AssertionError; +function innerOk(fn, argLen, value, message) { + if (!value) { + var generatedMessage = false; + if (argLen === 0) { + generatedMessage = true; + message = 'No value argument passed to `assert.ok()`'; + } else if (message instanceof Error) { + throw message; + } + var err = new AssertionError({ + actual: value, + expected: true, + message: message, + operator: '==', + stackStartFn: fn + }); + err.generatedMessage = generatedMessage; + throw err; + } +} + +// Pure assertion tests whether a value is truthy, as determined +// by !!value. +function ok() { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + innerOk.apply(void 0, [ok, args.length].concat(args)); +} +assert.ok = ok; + +// The equality assertion tests shallow, coercive equality with ==. +/* eslint-disable no-restricted-properties */ +assert.equal = function equal(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + // eslint-disable-next-line eqeqeq + if (actual != expected) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: '==', + stackStartFn: equal + }); + } +}; + +// The non-equality assertion tests for whether two objects are not +// equal with !=. +assert.notEqual = function notEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + // eslint-disable-next-line eqeqeq + if (actual == expected) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: '!=', + stackStartFn: notEqual + }); + } +}; + +// The equivalence assertion tests a deep equality relation. +assert.deepEqual = function deepEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (isDeepEqual === undefined) lazyLoadComparison(); + if (!isDeepEqual(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'deepEqual', + stackStartFn: deepEqual + }); + } +}; + +// The non-equivalence assertion tests for any deep inequality. +assert.notDeepEqual = function notDeepEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (isDeepEqual === undefined) lazyLoadComparison(); + if (isDeepEqual(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'notDeepEqual', + stackStartFn: notDeepEqual + }); + } +}; +/* eslint-enable */ + +assert.deepStrictEqual = function deepStrictEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (isDeepEqual === undefined) lazyLoadComparison(); + if (!isDeepStrictEqual(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'deepStrictEqual', + stackStartFn: deepStrictEqual + }); + } +}; +assert.notDeepStrictEqual = notDeepStrictEqual; +function notDeepStrictEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (isDeepEqual === undefined) lazyLoadComparison(); + if (isDeepStrictEqual(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'notDeepStrictEqual', + stackStartFn: notDeepStrictEqual + }); + } +} +assert.strictEqual = function strictEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (!objectIs(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'strictEqual', + stackStartFn: strictEqual + }); + } +}; +assert.notStrictEqual = function notStrictEqual(actual, expected, message) { + if (arguments.length < 2) { + throw new ERR_MISSING_ARGS('actual', 'expected'); + } + if (objectIs(actual, expected)) { + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: 'notStrictEqual', + stackStartFn: notStrictEqual + }); + } +}; +var Comparison = /*#__PURE__*/_createClass(function Comparison(obj, keys, actual) { + var _this = this; + _classCallCheck(this, Comparison); + keys.forEach(function (key) { + if (key in obj) { + if (actual !== undefined && typeof actual[key] === 'string' && isRegExp(obj[key]) && RegExpPrototypeTest(obj[key], actual[key])) { + _this[key] = actual[key]; + } else { + _this[key] = obj[key]; + } + } + }); +}); +function compareExceptionKey(actual, expected, key, message, keys, fn) { + if (!(key in actual) || !isDeepStrictEqual(actual[key], expected[key])) { + if (!message) { + // Create placeholder objects to create a nice output. + var a = new Comparison(actual, keys); + var b = new Comparison(expected, keys, actual); + var err = new AssertionError({ + actual: a, + expected: b, + operator: 'deepStrictEqual', + stackStartFn: fn + }); + err.actual = actual; + err.expected = expected; + err.operator = fn.name; + throw err; + } + innerFail({ + actual: actual, + expected: expected, + message: message, + operator: fn.name, + stackStartFn: fn + }); + } +} +function expectedException(actual, expected, msg, fn) { + if (typeof expected !== 'function') { + if (isRegExp(expected)) return RegExpPrototypeTest(expected, actual); + // assert.doesNotThrow does not accept objects. + if (arguments.length === 2) { + throw new ERR_INVALID_ARG_TYPE('expected', ['Function', 'RegExp'], expected); + } + + // Handle primitives properly. + if (_typeof(actual) !== 'object' || actual === null) { + var err = new AssertionError({ + actual: actual, + expected: expected, + message: msg, + operator: 'deepStrictEqual', + stackStartFn: fn + }); + err.operator = fn.name; + throw err; + } + var keys = Object.keys(expected); + // Special handle errors to make sure the name and the message are compared + // as well. + if (expected instanceof Error) { + keys.push('name', 'message'); + } else if (keys.length === 0) { + throw new ERR_INVALID_ARG_VALUE('error', expected, 'may not be an empty object'); + } + if (isDeepEqual === undefined) lazyLoadComparison(); + keys.forEach(function (key) { + if (typeof actual[key] === 'string' && isRegExp(expected[key]) && RegExpPrototypeTest(expected[key], actual[key])) { + return; + } + compareExceptionKey(actual, expected, key, msg, keys, fn); + }); + return true; + } + // Guard instanceof against arrow functions as they don't have a prototype. + if (expected.prototype !== undefined && actual instanceof expected) { + return true; + } + if (Error.isPrototypeOf(expected)) { + return false; + } + return expected.call({}, actual) === true; +} +function getActual(fn) { + if (typeof fn !== 'function') { + throw new ERR_INVALID_ARG_TYPE('fn', 'Function', fn); + } + try { + fn(); + } catch (e) { + return e; + } + return NO_EXCEPTION_SENTINEL; +} +function checkIsPromise(obj) { + // Accept native ES6 promises and promises that are implemented in a similar + // way. Do not accept thenables that use a function as `obj` and that have no + // `catch` handler. + + // TODO: thenables are checked up until they have the correct methods, + // but according to documentation, the `then` method should receive + // the `fulfill` and `reject` arguments as well or it may be never resolved. + + return isPromise(obj) || obj !== null && _typeof(obj) === 'object' && typeof obj.then === 'function' && typeof obj.catch === 'function'; +} +function waitForActual(promiseFn) { + return Promise.resolve().then(function () { + var resultPromise; + if (typeof promiseFn === 'function') { + // Return a rejected promise if `promiseFn` throws synchronously. + resultPromise = promiseFn(); + // Fail in case no promise is returned. + if (!checkIsPromise(resultPromise)) { + throw new ERR_INVALID_RETURN_VALUE('instance of Promise', 'promiseFn', resultPromise); + } + } else if (checkIsPromise(promiseFn)) { + resultPromise = promiseFn; + } else { + throw new ERR_INVALID_ARG_TYPE('promiseFn', ['Function', 'Promise'], promiseFn); + } + return Promise.resolve().then(function () { + return resultPromise; + }).then(function () { + return NO_EXCEPTION_SENTINEL; + }).catch(function (e) { + return e; + }); + }); +} +function expectsError(stackStartFn, actual, error, message) { + if (typeof error === 'string') { + if (arguments.length === 4) { + throw new ERR_INVALID_ARG_TYPE('error', ['Object', 'Error', 'Function', 'RegExp'], error); + } + if (_typeof(actual) === 'object' && actual !== null) { + if (actual.message === error) { + throw new ERR_AMBIGUOUS_ARGUMENT('error/message', "The error message \"".concat(actual.message, "\" is identical to the message.")); + } + } else if (actual === error) { + throw new ERR_AMBIGUOUS_ARGUMENT('error/message', "The error \"".concat(actual, "\" is identical to the message.")); + } + message = error; + error = undefined; + } else if (error != null && _typeof(error) !== 'object' && typeof error !== 'function') { + throw new ERR_INVALID_ARG_TYPE('error', ['Object', 'Error', 'Function', 'RegExp'], error); + } + if (actual === NO_EXCEPTION_SENTINEL) { + var details = ''; + if (error && error.name) { + details += " (".concat(error.name, ")"); + } + details += message ? ": ".concat(message) : '.'; + var fnType = stackStartFn.name === 'rejects' ? 'rejection' : 'exception'; + innerFail({ + actual: undefined, + expected: error, + operator: stackStartFn.name, + message: "Missing expected ".concat(fnType).concat(details), + stackStartFn: stackStartFn + }); + } + if (error && !expectedException(actual, error, message, stackStartFn)) { + throw actual; + } +} +function expectsNoError(stackStartFn, actual, error, message) { + if (actual === NO_EXCEPTION_SENTINEL) return; + if (typeof error === 'string') { + message = error; + error = undefined; + } + if (!error || expectedException(actual, error)) { + var details = message ? ": ".concat(message) : '.'; + var fnType = stackStartFn.name === 'doesNotReject' ? 'rejection' : 'exception'; + innerFail({ + actual: actual, + expected: error, + operator: stackStartFn.name, + message: "Got unwanted ".concat(fnType).concat(details, "\n") + "Actual message: \"".concat(actual && actual.message, "\""), + stackStartFn: stackStartFn + }); + } + throw actual; +} +assert.throws = function throws(promiseFn) { + for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { + args[_key2 - 1] = arguments[_key2]; + } + expectsError.apply(void 0, [throws, getActual(promiseFn)].concat(args)); +}; +assert.rejects = function rejects(promiseFn) { + for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) { + args[_key3 - 1] = arguments[_key3]; + } + return waitForActual(promiseFn).then(function (result) { + return expectsError.apply(void 0, [rejects, result].concat(args)); + }); +}; +assert.doesNotThrow = function doesNotThrow(fn) { + for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) { + args[_key4 - 1] = arguments[_key4]; + } + expectsNoError.apply(void 0, [doesNotThrow, getActual(fn)].concat(args)); +}; +assert.doesNotReject = function doesNotReject(fn) { + for (var _len5 = arguments.length, args = new Array(_len5 > 1 ? _len5 - 1 : 0), _key5 = 1; _key5 < _len5; _key5++) { + args[_key5 - 1] = arguments[_key5]; + } + return waitForActual(fn).then(function (result) { + return expectsNoError.apply(void 0, [doesNotReject, result].concat(args)); + }); +}; +assert.ifError = function ifError(err) { + if (err !== null && err !== undefined) { + var message = 'ifError got unwanted exception: '; + if (_typeof(err) === 'object' && typeof err.message === 'string') { + if (err.message.length === 0 && err.constructor) { + message += err.constructor.name; + } else { + message += err.message; + } + } else { + message += inspect(err); + } + var newErr = new AssertionError({ + actual: err, + expected: null, + operator: 'ifError', + message: message, + stackStartFn: ifError + }); + + // Make sure we actually have a stack trace! + var origStack = err.stack; + if (typeof origStack === 'string') { + // This will remove any duplicated frames from the error frames taken + // from within `ifError` and add the original error frames to the newly + // created ones. + var tmp2 = origStack.split('\n'); + tmp2.shift(); + // Filter all frames existing in err.stack. + var tmp1 = newErr.stack.split('\n'); + for (var i = 0; i < tmp2.length; i++) { + // Find the first occurrence of the frame. + var pos = tmp1.indexOf(tmp2[i]); + if (pos !== -1) { + // Only keep new frames. + tmp1 = tmp1.slice(0, pos); + break; + } + } + newErr.stack = "".concat(tmp1.join('\n'), "\n").concat(tmp2.join('\n')); + } + throw newErr; + } +}; + +// Currently in sync with Node.js lib/assert.js +// https://github.com/nodejs/node/commit/2a871df3dfb8ea663ef5e1f8f62701ec51384ecb +function internalMatch(string, regexp, message, fn, fnName) { + if (!isRegExp(regexp)) { + throw new ERR_INVALID_ARG_TYPE('regexp', 'RegExp', regexp); + } + var match = fnName === 'match'; + if (typeof string !== 'string' || RegExpPrototypeTest(regexp, string) !== match) { + if (message instanceof Error) { + throw message; + } + var generatedMessage = !message; + + // 'The input was expected to not match the regular expression ' + + message = message || (typeof string !== 'string' ? 'The "string" argument must be of type string. Received type ' + "".concat(_typeof(string), " (").concat(inspect(string), ")") : (match ? 'The input did not match the regular expression ' : 'The input was expected to not match the regular expression ') + "".concat(inspect(regexp), ". Input:\n\n").concat(inspect(string), "\n")); + var err = new AssertionError({ + actual: string, + expected: regexp, + message: message, + operator: fnName, + stackStartFn: fn + }); + err.generatedMessage = generatedMessage; + throw err; + } +} +assert.match = function match(string, regexp, message) { + internalMatch(string, regexp, message, match, 'match'); +}; +assert.doesNotMatch = function doesNotMatch(string, regexp, message) { + internalMatch(string, regexp, message, doesNotMatch, 'doesNotMatch'); +}; + +// Expose a strict only variant of assert +function strict() { + for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) { + args[_key6] = arguments[_key6]; + } + innerOk.apply(void 0, [strict, args.length].concat(args)); +} +assert.strict = objectAssign(strict, assert, { + equal: assert.strictEqual, + deepEqual: assert.deepStrictEqual, + notEqual: assert.notStrictEqual, + notDeepEqual: assert.notDeepStrictEqual +}); +assert.strict.strict = assert.strict; + +/***/ }), + +/***/ 85416: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var process = __webpack_require__(9964); +// Currently in sync with Node.js lib/internal/assert/assertion_error.js +// https://github.com/nodejs/node/commit/0817840f775032169ddd70c85ac059f18ffcc81c + + + +function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } +function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } +function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } +function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } +function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } +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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } +function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _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); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); } +function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct.bind(); } else { _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; }; } return _construct.apply(null, arguments); } +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; } } +function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; } +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } +function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } +var _require = __webpack_require__(7187), + inspect = _require.inspect; +var _require2 = __webpack_require__(35403), + ERR_INVALID_ARG_TYPE = _require2.codes.ERR_INVALID_ARG_TYPE; + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith +function endsWith(str, search, this_len) { + if (this_len === undefined || this_len > str.length) { + this_len = str.length; + } + return str.substring(this_len - search.length, this_len) === search; +} + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat +function repeat(str, count) { + count = Math.floor(count); + if (str.length == 0 || count == 0) return ''; + var maxCount = str.length * count; + count = Math.floor(Math.log(count) / Math.log(2)); + while (count) { + str += str; + count--; + } + str += str.substring(0, maxCount - str.length); + return str; +} +var blue = ''; +var green = ''; +var red = ''; +var white = ''; +var kReadableOperator = { + deepStrictEqual: 'Expected values to be strictly deep-equal:', + strictEqual: 'Expected values to be strictly equal:', + strictEqualObject: 'Expected "actual" to be reference-equal to "expected":', + deepEqual: 'Expected values to be loosely deep-equal:', + equal: 'Expected values to be loosely equal:', + notDeepStrictEqual: 'Expected "actual" not to be strictly deep-equal to:', + notStrictEqual: 'Expected "actual" to be strictly unequal to:', + notStrictEqualObject: 'Expected "actual" not to be reference-equal to "expected":', + notDeepEqual: 'Expected "actual" not to be loosely deep-equal to:', + notEqual: 'Expected "actual" to be loosely unequal to:', + notIdentical: 'Values identical but not reference-equal:' +}; + +// Comparing short primitives should just show === / !== instead of using the +// diff. +var kMaxShortLength = 10; +function copyError(source) { + var keys = Object.keys(source); + var target = Object.create(Object.getPrototypeOf(source)); + keys.forEach(function (key) { + target[key] = source[key]; + }); + Object.defineProperty(target, 'message', { + value: source.message + }); + return target; +} +function inspectValue(val) { + // The util.inspect default values could be changed. This makes sure the + // error messages contain the necessary information nevertheless. + return inspect(val, { + compact: false, + customInspect: false, + depth: 1000, + maxArrayLength: Infinity, + // Assert compares only enumerable properties (with a few exceptions). + showHidden: false, + // Having a long line as error is better than wrapping the line for + // comparison for now. + // TODO(BridgeAR): `breakLength` should be limited as soon as soon as we + // have meta information about the inspected properties (i.e., know where + // in what line the property starts and ends). + breakLength: Infinity, + // Assert does not detect proxies currently. + showProxy: false, + sorted: true, + // Inspect getters as we also check them when comparing entries. + getters: true + }); +} +function createErrDiff(actual, expected, operator) { + var other = ''; + var res = ''; + var lastPos = 0; + var end = ''; + var skipped = false; + var actualInspected = inspectValue(actual); + var actualLines = actualInspected.split('\n'); + var expectedLines = inspectValue(expected).split('\n'); + var i = 0; + var indicator = ''; + + // In case both values are objects explicitly mark them as not reference equal + // for the `strictEqual` operator. + if (operator === 'strictEqual' && _typeof(actual) === 'object' && _typeof(expected) === 'object' && actual !== null && expected !== null) { + operator = 'strictEqualObject'; + } + + // If "actual" and "expected" fit on a single line and they are not strictly + // equal, check further special handling. + if (actualLines.length === 1 && expectedLines.length === 1 && actualLines[0] !== expectedLines[0]) { + var inputLength = actualLines[0].length + expectedLines[0].length; + // If the character length of "actual" and "expected" together is less than + // kMaxShortLength and if neither is an object and at least one of them is + // not `zero`, use the strict equal comparison to visualize the output. + if (inputLength <= kMaxShortLength) { + if ((_typeof(actual) !== 'object' || actual === null) && (_typeof(expected) !== 'object' || expected === null) && (actual !== 0 || expected !== 0)) { + // -0 === +0 + return "".concat(kReadableOperator[operator], "\n\n") + "".concat(actualLines[0], " !== ").concat(expectedLines[0], "\n"); + } + } else if (operator !== 'strictEqualObject') { + // If the stderr is a tty and the input length is lower than the current + // columns per line, add a mismatch indicator below the output. If it is + // not a tty, use a default value of 80 characters. + var maxLength = process.stderr && process.stderr.isTTY ? process.stderr.columns : 80; + if (inputLength < maxLength) { + while (actualLines[0][i] === expectedLines[0][i]) { + i++; + } + // Ignore the first characters. + if (i > 2) { + // Add position indicator for the first mismatch in case it is a + // single line and the input length is less than the column length. + indicator = "\n ".concat(repeat(' ', i), "^"); + i = 0; + } + } + } + } + + // Remove all ending lines that match (this optimizes the output for + // readability by reducing the number of total changed lines). + var a = actualLines[actualLines.length - 1]; + var b = expectedLines[expectedLines.length - 1]; + while (a === b) { + if (i++ < 2) { + end = "\n ".concat(a).concat(end); + } else { + other = a; + } + actualLines.pop(); + expectedLines.pop(); + if (actualLines.length === 0 || expectedLines.length === 0) break; + a = actualLines[actualLines.length - 1]; + b = expectedLines[expectedLines.length - 1]; + } + var maxLines = Math.max(actualLines.length, expectedLines.length); + // Strict equal with identical objects that are not identical by reference. + // E.g., assert.deepStrictEqual({ a: Symbol() }, { a: Symbol() }) + if (maxLines === 0) { + // We have to get the result again. The lines were all removed before. + var _actualLines = actualInspected.split('\n'); + + // Only remove lines in case it makes sense to collapse those. + // TODO: Accept env to always show the full error. + if (_actualLines.length > 30) { + _actualLines[26] = "".concat(blue, "...").concat(white); + while (_actualLines.length > 27) { + _actualLines.pop(); + } + } + return "".concat(kReadableOperator.notIdentical, "\n\n").concat(_actualLines.join('\n'), "\n"); + } + if (i > 3) { + end = "\n".concat(blue, "...").concat(white).concat(end); + skipped = true; + } + if (other !== '') { + end = "\n ".concat(other).concat(end); + other = ''; + } + var printedLines = 0; + var msg = kReadableOperator[operator] + "\n".concat(green, "+ actual").concat(white, " ").concat(red, "- expected").concat(white); + var skippedMsg = " ".concat(blue, "...").concat(white, " Lines skipped"); + for (i = 0; i < maxLines; i++) { + // Only extra expected lines exist + var cur = i - lastPos; + if (actualLines.length < i + 1) { + // If the last diverging line is more than one line above and the + // current line is at least line three, add some of the former lines and + // also add dots to indicate skipped entries. + if (cur > 1 && i > 2) { + if (cur > 4) { + res += "\n".concat(blue, "...").concat(white); + skipped = true; + } else if (cur > 3) { + res += "\n ".concat(expectedLines[i - 2]); + printedLines++; + } + res += "\n ".concat(expectedLines[i - 1]); + printedLines++; + } + // Mark the current line as the last diverging one. + lastPos = i; + // Add the expected line to the cache. + other += "\n".concat(red, "-").concat(white, " ").concat(expectedLines[i]); + printedLines++; + // Only extra actual lines exist + } else if (expectedLines.length < i + 1) { + // If the last diverging line is more than one line above and the + // current line is at least line three, add some of the former lines and + // also add dots to indicate skipped entries. + if (cur > 1 && i > 2) { + if (cur > 4) { + res += "\n".concat(blue, "...").concat(white); + skipped = true; + } else if (cur > 3) { + res += "\n ".concat(actualLines[i - 2]); + printedLines++; + } + res += "\n ".concat(actualLines[i - 1]); + printedLines++; + } + // Mark the current line as the last diverging one. + lastPos = i; + // Add the actual line to the result. + res += "\n".concat(green, "+").concat(white, " ").concat(actualLines[i]); + printedLines++; + // Lines diverge + } else { + var expectedLine = expectedLines[i]; + var actualLine = actualLines[i]; + // If the lines diverge, specifically check for lines that only diverge by + // a trailing comma. In that case it is actually identical and we should + // mark it as such. + var divergingLines = actualLine !== expectedLine && (!endsWith(actualLine, ',') || actualLine.slice(0, -1) !== expectedLine); + // If the expected line has a trailing comma but is otherwise identical, + // add a comma at the end of the actual line. Otherwise the output could + // look weird as in: + // + // [ + // 1 // No comma at the end! + // + 2 + // ] + // + if (divergingLines && endsWith(expectedLine, ',') && expectedLine.slice(0, -1) === actualLine) { + divergingLines = false; + actualLine += ','; + } + if (divergingLines) { + // If the last diverging line is more than one line above and the + // current line is at least line three, add some of the former lines and + // also add dots to indicate skipped entries. + if (cur > 1 && i > 2) { + if (cur > 4) { + res += "\n".concat(blue, "...").concat(white); + skipped = true; + } else if (cur > 3) { + res += "\n ".concat(actualLines[i - 2]); + printedLines++; + } + res += "\n ".concat(actualLines[i - 1]); + printedLines++; + } + // Mark the current line as the last diverging one. + lastPos = i; + // Add the actual line to the result and cache the expected diverging + // line so consecutive diverging lines show up as +++--- and not +-+-+-. + res += "\n".concat(green, "+").concat(white, " ").concat(actualLine); + other += "\n".concat(red, "-").concat(white, " ").concat(expectedLine); + printedLines += 2; + // Lines are identical + } else { + // Add all cached information to the result before adding other things + // and reset the cache. + res += other; + other = ''; + // If the last diverging line is exactly one line above or if it is the + // very first line, add the line to the result. + if (cur === 1 || i === 0) { + res += "\n ".concat(actualLine); + printedLines++; + } + } + } + // Inspected object to big (Show ~20 rows max) + if (printedLines > 20 && i < maxLines - 2) { + return "".concat(msg).concat(skippedMsg, "\n").concat(res, "\n").concat(blue, "...").concat(white).concat(other, "\n") + "".concat(blue, "...").concat(white); + } + } + return "".concat(msg).concat(skipped ? skippedMsg : '', "\n").concat(res).concat(other).concat(end).concat(indicator); +} +var AssertionError = /*#__PURE__*/function (_Error, _inspect$custom) { + _inherits(AssertionError, _Error); + var _super = _createSuper(AssertionError); + function AssertionError(options) { + var _this; + _classCallCheck(this, AssertionError); + if (_typeof(options) !== 'object' || options === null) { + throw new ERR_INVALID_ARG_TYPE('options', 'Object', options); + } + var message = options.message, + operator = options.operator, + stackStartFn = options.stackStartFn; + var actual = options.actual, + expected = options.expected; + var limit = Error.stackTraceLimit; + Error.stackTraceLimit = 0; + if (message != null) { + _this = _super.call(this, String(message)); + } else { + if (process.stderr && process.stderr.isTTY) { + // Reset on each call to make sure we handle dynamically set environment + // variables correct. + if (process.stderr && process.stderr.getColorDepth && process.stderr.getColorDepth() !== 1) { + blue = "\x1B[34m"; + green = "\x1B[32m"; + white = "\x1B[39m"; + red = "\x1B[31m"; + } else { + blue = ''; + green = ''; + white = ''; + red = ''; + } + } + // Prevent the error stack from being visible by duplicating the error + // in a very close way to the original in case both sides are actually + // instances of Error. + if (_typeof(actual) === 'object' && actual !== null && _typeof(expected) === 'object' && expected !== null && 'stack' in actual && actual instanceof Error && 'stack' in expected && expected instanceof Error) { + actual = copyError(actual); + expected = copyError(expected); + } + if (operator === 'deepStrictEqual' || operator === 'strictEqual') { + _this = _super.call(this, createErrDiff(actual, expected, operator)); + } else if (operator === 'notDeepStrictEqual' || operator === 'notStrictEqual') { + // In case the objects are equal but the operator requires unequal, show + // the first object and say A equals B + var base = kReadableOperator[operator]; + var res = inspectValue(actual).split('\n'); + + // In case "actual" is an object, it should not be reference equal. + if (operator === 'notStrictEqual' && _typeof(actual) === 'object' && actual !== null) { + base = kReadableOperator.notStrictEqualObject; + } + + // Only remove lines in case it makes sense to collapse those. + // TODO: Accept env to always show the full error. + if (res.length > 30) { + res[26] = "".concat(blue, "...").concat(white); + while (res.length > 27) { + res.pop(); + } + } + + // Only print a single input. + if (res.length === 1) { + _this = _super.call(this, "".concat(base, " ").concat(res[0])); + } else { + _this = _super.call(this, "".concat(base, "\n\n").concat(res.join('\n'), "\n")); + } + } else { + var _res = inspectValue(actual); + var other = ''; + var knownOperators = kReadableOperator[operator]; + if (operator === 'notDeepEqual' || operator === 'notEqual') { + _res = "".concat(kReadableOperator[operator], "\n\n").concat(_res); + if (_res.length > 1024) { + _res = "".concat(_res.slice(0, 1021), "..."); + } + } else { + other = "".concat(inspectValue(expected)); + if (_res.length > 512) { + _res = "".concat(_res.slice(0, 509), "..."); + } + if (other.length > 512) { + other = "".concat(other.slice(0, 509), "..."); + } + if (operator === 'deepEqual' || operator === 'equal') { + _res = "".concat(knownOperators, "\n\n").concat(_res, "\n\nshould equal\n\n"); + } else { + other = " ".concat(operator, " ").concat(other); + } + } + _this = _super.call(this, "".concat(_res).concat(other)); + } + } + Error.stackTraceLimit = limit; + _this.generatedMessage = !message; + Object.defineProperty(_assertThisInitialized(_this), 'name', { + value: 'AssertionError [ERR_ASSERTION]', + enumerable: false, + writable: true, + configurable: true + }); + _this.code = 'ERR_ASSERTION'; + _this.actual = actual; + _this.expected = expected; + _this.operator = operator; + if (Error.captureStackTrace) { + // eslint-disable-next-line no-restricted-syntax + Error.captureStackTrace(_assertThisInitialized(_this), stackStartFn); + } + // Create error message including the error code in the name. + _this.stack; + // Reset the name. + _this.name = 'AssertionError'; + return _possibleConstructorReturn(_this); + } + _createClass(AssertionError, [{ + key: "toString", + value: function toString() { + return "".concat(this.name, " [").concat(this.code, "]: ").concat(this.message); + } + }, { + key: _inspect$custom, + value: function value(recurseTimes, ctx) { + // This limits the `actual` and `expected` property default inspection to + // the minimum depth. Otherwise those values would be too verbose compared + // to the actual error message which contains a combined view of these two + // input values. + return inspect(this, _objectSpread(_objectSpread({}, ctx), {}, { + customInspect: false, + depth: 0 + })); + } + }]); + return AssertionError; +}( /*#__PURE__*/_wrapNativeSuper(Error), inspect.custom); +module.exports = AssertionError; + +/***/ }), + +/***/ 35403: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +// Currently in sync with Node.js lib/internal/errors.js +// https://github.com/nodejs/node/commit/3b044962c48fe313905877a96b5d0894a5404f6f + +/* eslint node-core/documented-errors: "error" */ +/* eslint node-core/alphabetize-errors: "error" */ +/* eslint node-core/prefer-util-format-errors: "error" */ + + + +// The whole point behind this internal module is to allow Node.js to no +// longer be forced to treat every error message change as a semver-major +// change. The NodeError classes here all expose a `code` property whose +// value statically and permanently identifies the error. While the error +// message may change, the code should not. +function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } +function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } +function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } +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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } +function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } +function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } +function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } +function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } +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; } } +function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } +var codes = {}; + +// Lazy loaded +var assert; +var util; +function createErrorType(code, message, Base) { + if (!Base) { + Base = Error; + } + function getMessage(arg1, arg2, arg3) { + if (typeof message === 'string') { + return message; + } else { + return message(arg1, arg2, arg3); + } + } + var NodeError = /*#__PURE__*/function (_Base) { + _inherits(NodeError, _Base); + var _super = _createSuper(NodeError); + function NodeError(arg1, arg2, arg3) { + var _this; + _classCallCheck(this, NodeError); + _this = _super.call(this, getMessage(arg1, arg2, arg3)); + _this.code = code; + return _this; + } + return _createClass(NodeError); + }(Base); + codes[code] = NodeError; +} + +// https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js +function oneOf(expected, thing) { + if (Array.isArray(expected)) { + var len = expected.length; + expected = expected.map(function (i) { + return String(i); + }); + if (len > 2) { + return "one of ".concat(thing, " ").concat(expected.slice(0, len - 1).join(', '), ", or ") + expected[len - 1]; + } else if (len === 2) { + return "one of ".concat(thing, " ").concat(expected[0], " or ").concat(expected[1]); + } else { + return "of ".concat(thing, " ").concat(expected[0]); + } + } else { + return "of ".concat(thing, " ").concat(String(expected)); + } +} + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith +function startsWith(str, search, pos) { + return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search; +} + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith +function endsWith(str, search, this_len) { + if (this_len === undefined || this_len > str.length) { + this_len = str.length; + } + return str.substring(this_len - search.length, this_len) === search; +} + +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes +function includes(str, search, start) { + if (typeof start !== 'number') { + start = 0; + } + if (start + search.length > str.length) { + return false; + } else { + return str.indexOf(search, start) !== -1; + } +} +createErrorType('ERR_AMBIGUOUS_ARGUMENT', 'The "%s" argument is ambiguous. %s', TypeError); +createErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) { + if (assert === undefined) assert = __webpack_require__(80182); + assert(typeof name === 'string', "'name' must be a string"); + + // determiner: 'must be' or 'must not be' + var determiner; + if (typeof expected === 'string' && startsWith(expected, 'not ')) { + determiner = 'must not be'; + expected = expected.replace(/^not /, ''); + } else { + determiner = 'must be'; + } + var msg; + if (endsWith(name, ' argument')) { + // For cases like 'first argument' + msg = "The ".concat(name, " ").concat(determiner, " ").concat(oneOf(expected, 'type')); + } else { + var type = includes(name, '.') ? 'property' : 'argument'; + msg = "The \"".concat(name, "\" ").concat(type, " ").concat(determiner, " ").concat(oneOf(expected, 'type')); + } + + // TODO(BridgeAR): Improve the output by showing `null` and similar. + msg += ". Received type ".concat(_typeof(actual)); + return msg; +}, TypeError); +createErrorType('ERR_INVALID_ARG_VALUE', function (name, value) { + var reason = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'is invalid'; + if (util === undefined) util = __webpack_require__(7187); + var inspected = util.inspect(value); + if (inspected.length > 128) { + inspected = "".concat(inspected.slice(0, 128), "..."); + } + return "The argument '".concat(name, "' ").concat(reason, ". Received ").concat(inspected); +}, TypeError, RangeError); +createErrorType('ERR_INVALID_RETURN_VALUE', function (input, name, value) { + var type; + if (value && value.constructor && value.constructor.name) { + type = "instance of ".concat(value.constructor.name); + } else { + type = "type ".concat(_typeof(value)); + } + return "Expected ".concat(input, " to be returned from the \"").concat(name, "\"") + " function but got ".concat(type, "."); +}, TypeError); +createErrorType('ERR_MISSING_ARGS', function () { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + if (assert === undefined) assert = __webpack_require__(80182); + assert(args.length > 0, 'At least one arg needs to be specified'); + var msg = 'The '; + var len = args.length; + args = args.map(function (a) { + return "\"".concat(a, "\""); + }); + switch (len) { + case 1: + msg += "".concat(args[0], " argument"); + break; + case 2: + msg += "".concat(args[0], " and ").concat(args[1], " arguments"); + break; + default: + msg += args.slice(0, len - 1).join(', '); + msg += ", and ".concat(args[len - 1], " arguments"); + break; + } + return "".concat(msg, " must be specified"); +}, TypeError); +module.exports.codes = codes; + +/***/ }), + +/***/ 86781: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +// Currently in sync with Node.js lib/internal/util/comparisons.js +// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9 + + + +function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } +function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } +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 _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } +function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } +function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } +var regexFlagsSupported = /a/g.flags !== undefined; +var arrayFromSet = function arrayFromSet(set) { + var array = []; + set.forEach(function (value) { + return array.push(value); + }); + return array; +}; +var arrayFromMap = function arrayFromMap(map) { + var array = []; + map.forEach(function (value, key) { + return array.push([key, value]); + }); + return array; +}; +var objectIs = Object.is ? Object.is : __webpack_require__(98527); +var objectGetOwnPropertySymbols = Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols : function () { + return []; +}; +var numberIsNaN = Number.isNaN ? Number.isNaN : __webpack_require__(7051); +function uncurryThis(f) { + return f.call.bind(f); +} +var hasOwnProperty = uncurryThis(Object.prototype.hasOwnProperty); +var propertyIsEnumerable = uncurryThis(Object.prototype.propertyIsEnumerable); +var objectToString = uncurryThis(Object.prototype.toString); +var _require$types = (__webpack_require__(7187).types), + isAnyArrayBuffer = _require$types.isAnyArrayBuffer, + isArrayBufferView = _require$types.isArrayBufferView, + isDate = _require$types.isDate, + isMap = _require$types.isMap, + isRegExp = _require$types.isRegExp, + isSet = _require$types.isSet, + isNativeError = _require$types.isNativeError, + isBoxedPrimitive = _require$types.isBoxedPrimitive, + isNumberObject = _require$types.isNumberObject, + isStringObject = _require$types.isStringObject, + isBooleanObject = _require$types.isBooleanObject, + isBigIntObject = _require$types.isBigIntObject, + isSymbolObject = _require$types.isSymbolObject, + isFloat32Array = _require$types.isFloat32Array, + isFloat64Array = _require$types.isFloat64Array; +function isNonIndex(key) { + if (key.length === 0 || key.length > 10) return true; + for (var i = 0; i < key.length; i++) { + var code = key.charCodeAt(i); + if (code < 48 || code > 57) return true; + } + // The maximum size for an array is 2 ** 32 -1. + return key.length === 10 && key >= Math.pow(2, 32); +} +function getOwnNonIndexProperties(value) { + return Object.keys(value).filter(isNonIndex).concat(objectGetOwnPropertySymbols(value).filter(Object.prototype.propertyIsEnumerable.bind(value))); +} + +// Taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js +// original notice: +/*! + * The buffer module from node.js, for the browser. + * + * @author Feross Aboukhadijeh + * @license MIT + */ +function compare(a, b) { + if (a === b) { + return 0; + } + var x = a.length; + var y = b.length; + for (var i = 0, len = Math.min(x, y); i < len; ++i) { + if (a[i] !== b[i]) { + x = a[i]; + y = b[i]; + break; + } + } + if (x < y) { + return -1; + } + if (y < x) { + return 1; + } + return 0; +} +var ONLY_ENUMERABLE = undefined; +var kStrict = true; +var kLoose = false; +var kNoIterator = 0; +var kIsArray = 1; +var kIsSet = 2; +var kIsMap = 3; + +// Check if they have the same source and flags +function areSimilarRegExps(a, b) { + return regexFlagsSupported ? a.source === b.source && a.flags === b.flags : RegExp.prototype.toString.call(a) === RegExp.prototype.toString.call(b); +} +function areSimilarFloatArrays(a, b) { + if (a.byteLength !== b.byteLength) { + return false; + } + for (var offset = 0; offset < a.byteLength; offset++) { + if (a[offset] !== b[offset]) { + return false; + } + } + return true; +} +function areSimilarTypedArrays(a, b) { + if (a.byteLength !== b.byteLength) { + return false; + } + return compare(new Uint8Array(a.buffer, a.byteOffset, a.byteLength), new Uint8Array(b.buffer, b.byteOffset, b.byteLength)) === 0; +} +function areEqualArrayBuffers(buf1, buf2) { + return buf1.byteLength === buf2.byteLength && compare(new Uint8Array(buf1), new Uint8Array(buf2)) === 0; +} +function isEqualBoxedPrimitive(val1, val2) { + if (isNumberObject(val1)) { + return isNumberObject(val2) && objectIs(Number.prototype.valueOf.call(val1), Number.prototype.valueOf.call(val2)); + } + if (isStringObject(val1)) { + return isStringObject(val2) && String.prototype.valueOf.call(val1) === String.prototype.valueOf.call(val2); + } + if (isBooleanObject(val1)) { + return isBooleanObject(val2) && Boolean.prototype.valueOf.call(val1) === Boolean.prototype.valueOf.call(val2); + } + if (isBigIntObject(val1)) { + return isBigIntObject(val2) && BigInt.prototype.valueOf.call(val1) === BigInt.prototype.valueOf.call(val2); + } + return isSymbolObject(val2) && Symbol.prototype.valueOf.call(val1) === Symbol.prototype.valueOf.call(val2); +} + +// Notes: Type tags are historical [[Class]] properties that can be set by +// FunctionTemplate::SetClassName() in C++ or Symbol.toStringTag in JS +// and retrieved using Object.prototype.toString.call(obj) in JS +// See https://tc39.github.io/ecma262/#sec-object.prototype.tostring +// for a list of tags pre-defined in the spec. +// There are some unspecified tags in the wild too (e.g. typed array tags). +// Since tags can be altered, they only serve fast failures +// +// Typed arrays and buffers are checked by comparing the content in their +// underlying ArrayBuffer. This optimization requires that it's +// reasonable to interpret their underlying memory in the same way, +// which is checked by comparing their type tags. +// (e.g. a Uint8Array and a Uint16Array with the same memory content +// could still be different because they will be interpreted differently). +// +// For strict comparison, objects should have +// a) The same built-in type tags +// b) The same prototypes. + +function innerDeepEqual(val1, val2, strict, memos) { + // All identical values are equivalent, as determined by ===. + if (val1 === val2) { + if (val1 !== 0) return true; + return strict ? objectIs(val1, val2) : true; + } + + // Check more closely if val1 and val2 are equal. + if (strict) { + if (_typeof(val1) !== 'object') { + return typeof val1 === 'number' && numberIsNaN(val1) && numberIsNaN(val2); + } + if (_typeof(val2) !== 'object' || val1 === null || val2 === null) { + return false; + } + if (Object.getPrototypeOf(val1) !== Object.getPrototypeOf(val2)) { + return false; + } + } else { + if (val1 === null || _typeof(val1) !== 'object') { + if (val2 === null || _typeof(val2) !== 'object') { + // eslint-disable-next-line eqeqeq + return val1 == val2; + } + return false; + } + if (val2 === null || _typeof(val2) !== 'object') { + return false; + } + } + var val1Tag = objectToString(val1); + var val2Tag = objectToString(val2); + if (val1Tag !== val2Tag) { + return false; + } + if (Array.isArray(val1)) { + // Check for sparse arrays and general fast path + if (val1.length !== val2.length) { + return false; + } + var keys1 = getOwnNonIndexProperties(val1, ONLY_ENUMERABLE); + var keys2 = getOwnNonIndexProperties(val2, ONLY_ENUMERABLE); + if (keys1.length !== keys2.length) { + return false; + } + return keyCheck(val1, val2, strict, memos, kIsArray, keys1); + } + // [browserify] This triggers on certain types in IE (Map/Set) so we don't + // wan't to early return out of the rest of the checks. However we can check + // if the second value is one of these values and the first isn't. + if (val1Tag === '[object Object]') { + // return keyCheck(val1, val2, strict, memos, kNoIterator); + if (!isMap(val1) && isMap(val2) || !isSet(val1) && isSet(val2)) { + return false; + } + } + if (isDate(val1)) { + if (!isDate(val2) || Date.prototype.getTime.call(val1) !== Date.prototype.getTime.call(val2)) { + return false; + } + } else if (isRegExp(val1)) { + if (!isRegExp(val2) || !areSimilarRegExps(val1, val2)) { + return false; + } + } else if (isNativeError(val1) || val1 instanceof Error) { + // Do not compare the stack as it might differ even though the error itself + // is otherwise identical. + if (val1.message !== val2.message || val1.name !== val2.name) { + return false; + } + } else if (isArrayBufferView(val1)) { + if (!strict && (isFloat32Array(val1) || isFloat64Array(val1))) { + if (!areSimilarFloatArrays(val1, val2)) { + return false; + } + } else if (!areSimilarTypedArrays(val1, val2)) { + return false; + } + // Buffer.compare returns true, so val1.length === val2.length. If they both + // only contain numeric keys, we don't need to exam further than checking + // the symbols. + var _keys = getOwnNonIndexProperties(val1, ONLY_ENUMERABLE); + var _keys2 = getOwnNonIndexProperties(val2, ONLY_ENUMERABLE); + if (_keys.length !== _keys2.length) { + return false; + } + return keyCheck(val1, val2, strict, memos, kNoIterator, _keys); + } else if (isSet(val1)) { + if (!isSet(val2) || val1.size !== val2.size) { + return false; + } + return keyCheck(val1, val2, strict, memos, kIsSet); + } else if (isMap(val1)) { + if (!isMap(val2) || val1.size !== val2.size) { + return false; + } + return keyCheck(val1, val2, strict, memos, kIsMap); + } else if (isAnyArrayBuffer(val1)) { + if (!areEqualArrayBuffers(val1, val2)) { + return false; + } + } else if (isBoxedPrimitive(val1) && !isEqualBoxedPrimitive(val1, val2)) { + return false; + } + return keyCheck(val1, val2, strict, memos, kNoIterator); +} +function getEnumerables(val, keys) { + return keys.filter(function (k) { + return propertyIsEnumerable(val, k); + }); +} +function keyCheck(val1, val2, strict, memos, iterationType, aKeys) { + // For all remaining Object pairs, including Array, objects and Maps, + // equivalence is determined by having: + // a) The same number of owned enumerable properties + // b) The same set of keys/indexes (although not necessarily the same order) + // c) Equivalent values for every corresponding key/index + // d) For Sets and Maps, equal contents + // Note: this accounts for both named and indexed properties on Arrays. + if (arguments.length === 5) { + aKeys = Object.keys(val1); + var bKeys = Object.keys(val2); + + // The pair must have the same number of owned properties. + if (aKeys.length !== bKeys.length) { + return false; + } + } + + // Cheap key test + var i = 0; + for (; i < aKeys.length; i++) { + if (!hasOwnProperty(val2, aKeys[i])) { + return false; + } + } + if (strict && arguments.length === 5) { + var symbolKeysA = objectGetOwnPropertySymbols(val1); + if (symbolKeysA.length !== 0) { + var count = 0; + for (i = 0; i < symbolKeysA.length; i++) { + var key = symbolKeysA[i]; + if (propertyIsEnumerable(val1, key)) { + if (!propertyIsEnumerable(val2, key)) { + return false; + } + aKeys.push(key); + count++; + } else if (propertyIsEnumerable(val2, key)) { + return false; + } + } + var symbolKeysB = objectGetOwnPropertySymbols(val2); + if (symbolKeysA.length !== symbolKeysB.length && getEnumerables(val2, symbolKeysB).length !== count) { + return false; + } + } else { + var _symbolKeysB = objectGetOwnPropertySymbols(val2); + if (_symbolKeysB.length !== 0 && getEnumerables(val2, _symbolKeysB).length !== 0) { + return false; + } + } + } + if (aKeys.length === 0 && (iterationType === kNoIterator || iterationType === kIsArray && val1.length === 0 || val1.size === 0)) { + return true; + } + + // Use memos to handle cycles. + if (memos === undefined) { + memos = { + val1: new Map(), + val2: new Map(), + position: 0 + }; + } else { + // We prevent up to two map.has(x) calls by directly retrieving the value + // and checking for undefined. The map can only contain numbers, so it is + // safe to check for undefined only. + var val2MemoA = memos.val1.get(val1); + if (val2MemoA !== undefined) { + var val2MemoB = memos.val2.get(val2); + if (val2MemoB !== undefined) { + return val2MemoA === val2MemoB; + } + } + memos.position++; + } + memos.val1.set(val1, memos.position); + memos.val2.set(val2, memos.position); + var areEq = objEquiv(val1, val2, strict, aKeys, memos, iterationType); + memos.val1.delete(val1); + memos.val2.delete(val2); + return areEq; +} +function setHasEqualElement(set, val1, strict, memo) { + // Go looking. + var setValues = arrayFromSet(set); + for (var i = 0; i < setValues.length; i++) { + var val2 = setValues[i]; + if (innerDeepEqual(val1, val2, strict, memo)) { + // Remove the matching element to make sure we do not check that again. + set.delete(val2); + return true; + } + } + return false; +} + +// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness#Loose_equality_using +// Sadly it is not possible to detect corresponding values properly in case the +// type is a string, number, bigint or boolean. The reason is that those values +// can match lots of different string values (e.g., 1n == '+00001'). +function findLooseMatchingPrimitives(prim) { + switch (_typeof(prim)) { + case 'undefined': + return null; + case 'object': + // Only pass in null as object! + return undefined; + case 'symbol': + return false; + case 'string': + prim = +prim; + // Loose equal entries exist only if the string is possible to convert to + // a regular number and not NaN. + // Fall through + case 'number': + if (numberIsNaN(prim)) { + return false; + } + } + return true; +} +function setMightHaveLoosePrim(a, b, prim) { + var altValue = findLooseMatchingPrimitives(prim); + if (altValue != null) return altValue; + return b.has(altValue) && !a.has(altValue); +} +function mapMightHaveLoosePrim(a, b, prim, item, memo) { + var altValue = findLooseMatchingPrimitives(prim); + if (altValue != null) { + return altValue; + } + var curB = b.get(altValue); + if (curB === undefined && !b.has(altValue) || !innerDeepEqual(item, curB, false, memo)) { + return false; + } + return !a.has(altValue) && innerDeepEqual(item, curB, false, memo); +} +function setEquiv(a, b, strict, memo) { + // This is a lazily initiated Set of entries which have to be compared + // pairwise. + var set = null; + var aValues = arrayFromSet(a); + for (var i = 0; i < aValues.length; i++) { + var val = aValues[i]; + // Note: Checking for the objects first improves the performance for object + // heavy sets but it is a minor slow down for primitives. As they are fast + // to check this improves the worst case scenario instead. + if (_typeof(val) === 'object' && val !== null) { + if (set === null) { + set = new Set(); + } + // If the specified value doesn't exist in the second set its an not null + // object (or non strict only: a not matching primitive) we'll need to go + // hunting for something thats deep-(strict-)equal to it. To make this + // O(n log n) complexity we have to copy these values in a new set first. + set.add(val); + } else if (!b.has(val)) { + if (strict) return false; + + // Fast path to detect missing string, symbol, undefined and null values. + if (!setMightHaveLoosePrim(a, b, val)) { + return false; + } + if (set === null) { + set = new Set(); + } + set.add(val); + } + } + if (set !== null) { + var bValues = arrayFromSet(b); + for (var _i = 0; _i < bValues.length; _i++) { + var _val = bValues[_i]; + // We have to check if a primitive value is already + // matching and only if it's not, go hunting for it. + if (_typeof(_val) === 'object' && _val !== null) { + if (!setHasEqualElement(set, _val, strict, memo)) return false; + } else if (!strict && !a.has(_val) && !setHasEqualElement(set, _val, strict, memo)) { + return false; + } + } + return set.size === 0; + } + return true; +} +function mapHasEqualEntry(set, map, key1, item1, strict, memo) { + // To be able to handle cases like: + // Map([[{}, 'a'], [{}, 'b']]) vs Map([[{}, 'b'], [{}, 'a']]) + // ... we need to consider *all* matching keys, not just the first we find. + var setValues = arrayFromSet(set); + for (var i = 0; i < setValues.length; i++) { + var key2 = setValues[i]; + if (innerDeepEqual(key1, key2, strict, memo) && innerDeepEqual(item1, map.get(key2), strict, memo)) { + set.delete(key2); + return true; + } + } + return false; +} +function mapEquiv(a, b, strict, memo) { + var set = null; + var aEntries = arrayFromMap(a); + for (var i = 0; i < aEntries.length; i++) { + var _aEntries$i = _slicedToArray(aEntries[i], 2), + key = _aEntries$i[0], + item1 = _aEntries$i[1]; + if (_typeof(key) === 'object' && key !== null) { + if (set === null) { + set = new Set(); + } + set.add(key); + } else { + // By directly retrieving the value we prevent another b.has(key) check in + // almost all possible cases. + var item2 = b.get(key); + if (item2 === undefined && !b.has(key) || !innerDeepEqual(item1, item2, strict, memo)) { + if (strict) return false; + // Fast path to detect missing string, symbol, undefined and null + // keys. + if (!mapMightHaveLoosePrim(a, b, key, item1, memo)) return false; + if (set === null) { + set = new Set(); + } + set.add(key); + } + } + } + if (set !== null) { + var bEntries = arrayFromMap(b); + for (var _i2 = 0; _i2 < bEntries.length; _i2++) { + var _bEntries$_i = _slicedToArray(bEntries[_i2], 2), + _key = _bEntries$_i[0], + item = _bEntries$_i[1]; + if (_typeof(_key) === 'object' && _key !== null) { + if (!mapHasEqualEntry(set, a, _key, item, strict, memo)) return false; + } else if (!strict && (!a.has(_key) || !innerDeepEqual(a.get(_key), item, false, memo)) && !mapHasEqualEntry(set, a, _key, item, false, memo)) { + return false; + } + } + return set.size === 0; + } + return true; +} +function objEquiv(a, b, strict, keys, memos, iterationType) { + // Sets and maps don't have their entries accessible via normal object + // properties. + var i = 0; + if (iterationType === kIsSet) { + if (!setEquiv(a, b, strict, memos)) { + return false; + } + } else if (iterationType === kIsMap) { + if (!mapEquiv(a, b, strict, memos)) { + return false; + } + } else if (iterationType === kIsArray) { + for (; i < a.length; i++) { + if (hasOwnProperty(a, i)) { + if (!hasOwnProperty(b, i) || !innerDeepEqual(a[i], b[i], strict, memos)) { + return false; + } + } else if (hasOwnProperty(b, i)) { + return false; + } else { + // Array is sparse. + var keysA = Object.keys(a); + for (; i < keysA.length; i++) { + var key = keysA[i]; + if (!hasOwnProperty(b, key) || !innerDeepEqual(a[key], b[key], strict, memos)) { + return false; + } + } + if (keysA.length !== Object.keys(b).length) { + return false; + } + return true; + } + } + } + + // The pair must have equivalent values for every corresponding key. + // Possibly expensive deep test: + for (i = 0; i < keys.length; i++) { + var _key2 = keys[i]; + if (!innerDeepEqual(a[_key2], b[_key2], strict, memos)) { + return false; + } + } + return true; +} +function isDeepEqual(val1, val2) { + return innerDeepEqual(val1, val2, kLoose); +} +function isDeepStrictEqual(val1, val2) { + return innerDeepEqual(val1, val2, kStrict); +} +module.exports = { + isDeepEqual: isDeepEqual, + isDeepStrictEqual: isDeepStrictEqual +}; + +/***/ }), + +/***/ 32504: +/***/ (function(__unused_webpack_module, exports) { + +"use strict"; + + +exports.byteLength = byteLength +exports.toByteArray = toByteArray +exports.fromByteArray = fromByteArray + +var lookup = [] +var revLookup = [] +var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array + +var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' +for (var i = 0, len = code.length; i < len; ++i) { + lookup[i] = code[i] + revLookup[code.charCodeAt(i)] = i +} + +// Support decoding URL-safe base64 strings, as Node.js does. +// See: https://en.wikipedia.org/wiki/Base64#URL_applications +revLookup['-'.charCodeAt(0)] = 62 +revLookup['_'.charCodeAt(0)] = 63 + +function getLens (b64) { + var len = b64.length + + if (len % 4 > 0) { + throw new Error('Invalid string. Length must be a multiple of 4') + } + + // Trim off extra bytes after placeholder bytes are found + // See: https://github.com/beatgammit/base64-js/issues/42 + var validLen = b64.indexOf('=') + if (validLen === -1) validLen = len + + var placeHoldersLen = validLen === len + ? 0 + : 4 - (validLen % 4) + + return [validLen, placeHoldersLen] +} + +// base64 is 4/3 + up to two characters of the original data +function byteLength (b64) { + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function _byteLength (b64, validLen, placeHoldersLen) { + return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen +} + +function toByteArray (b64) { + var tmp + var lens = getLens(b64) + var validLen = lens[0] + var placeHoldersLen = lens[1] + + var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) + + var curByte = 0 + + // if there are placeholders, only get up to the last complete 4 chars + var len = placeHoldersLen > 0 + ? validLen - 4 + : validLen + + var i + for (i = 0; i < len; i += 4) { + tmp = + (revLookup[b64.charCodeAt(i)] << 18) | + (revLookup[b64.charCodeAt(i + 1)] << 12) | + (revLookup[b64.charCodeAt(i + 2)] << 6) | + revLookup[b64.charCodeAt(i + 3)] + arr[curByte++] = (tmp >> 16) & 0xFF + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 2) { + tmp = + (revLookup[b64.charCodeAt(i)] << 2) | + (revLookup[b64.charCodeAt(i + 1)] >> 4) + arr[curByte++] = tmp & 0xFF + } + + if (placeHoldersLen === 1) { + tmp = + (revLookup[b64.charCodeAt(i)] << 10) | + (revLookup[b64.charCodeAt(i + 1)] << 4) | + (revLookup[b64.charCodeAt(i + 2)] >> 2) + arr[curByte++] = (tmp >> 8) & 0xFF + arr[curByte++] = tmp & 0xFF + } + + return arr +} + +function tripletToBase64 (num) { + return lookup[num >> 18 & 0x3F] + + lookup[num >> 12 & 0x3F] + + lookup[num >> 6 & 0x3F] + + lookup[num & 0x3F] +} + +function encodeChunk (uint8, start, end) { + var tmp + var output = [] + for (var i = start; i < end; i += 3) { + tmp = + ((uint8[i] << 16) & 0xFF0000) + + ((uint8[i + 1] << 8) & 0xFF00) + + (uint8[i + 2] & 0xFF) + output.push(tripletToBase64(tmp)) + } + return output.join('') +} + +function fromByteArray (uint8) { + var tmp + var len = uint8.length + var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes + var parts = [] + var maxChunkLength = 16383 // must be multiple of 3 + + // go through the array every three bytes, we'll deal with trailing stuff later + for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { + parts.push(encodeChunk( + uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength) + )) + } + + // pad the end with zeros, but make sure to not forget the extra bytes + if (extraBytes === 1) { + tmp = uint8[len - 1] + parts.push( + lookup[tmp >> 2] + + lookup[(tmp << 4) & 0x3F] + + '==' + ) + } else if (extraBytes === 2) { + tmp = (uint8[len - 2] << 8) + uint8[len - 1] + parts.push( + lookup[tmp >> 10] + + lookup[(tmp >> 4) & 0x3F] + + lookup[(tmp << 2) & 0x3F] + + '=' + ) + } + + return parts.join('') +} + + +/***/ }), + +/***/ 34097: +/***/ (function(module) { + +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. + + Bit reading helpers +*/ + +var BROTLI_READ_SIZE = 4096; +var BROTLI_IBUF_SIZE = (2 * BROTLI_READ_SIZE + 32); +var BROTLI_IBUF_MASK = (2 * BROTLI_READ_SIZE - 1); + +var kBitMask = new Uint32Array([ + 0, 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, + 65535, 131071, 262143, 524287, 1048575, 2097151, 4194303, 8388607, 16777215 +]); + +/* Input byte buffer, consist of a ringbuffer and a "slack" region where */ +/* bytes from the start of the ringbuffer are copied. */ +function BrotliBitReader(input) { + this.buf_ = new Uint8Array(BROTLI_IBUF_SIZE); + this.input_ = input; /* input callback */ + + this.reset(); +} + +BrotliBitReader.READ_SIZE = BROTLI_READ_SIZE; +BrotliBitReader.IBUF_MASK = BROTLI_IBUF_MASK; + +BrotliBitReader.prototype.reset = function() { + this.buf_ptr_ = 0; /* next input will write here */ + this.val_ = 0; /* pre-fetched bits */ + this.pos_ = 0; /* byte position in stream */ + this.bit_pos_ = 0; /* current bit-reading position in val_ */ + this.bit_end_pos_ = 0; /* bit-reading end position from LSB of val_ */ + this.eos_ = 0; /* input stream is finished */ + + this.readMoreInput(); + for (var i = 0; i < 4; i++) { + this.val_ |= this.buf_[this.pos_] << (8 * i); + ++this.pos_; + } + + return this.bit_end_pos_ > 0; +}; + +/* Fills up the input ringbuffer by calling the input callback. + + Does nothing if there are at least 32 bytes present after current position. + + Returns 0 if either: + - the input callback returned an error, or + - there is no more input and the position is past the end of the stream. + + After encountering the end of the input stream, 32 additional zero bytes are + copied to the ringbuffer, therefore it is safe to call this function after + every 32 bytes of input is read. +*/ +BrotliBitReader.prototype.readMoreInput = function() { + if (this.bit_end_pos_ > 256) { + return; + } else if (this.eos_) { + if (this.bit_pos_ > this.bit_end_pos_) + throw new Error('Unexpected end of input ' + this.bit_pos_ + ' ' + this.bit_end_pos_); + } else { + var dst = this.buf_ptr_; + var bytes_read = this.input_.read(this.buf_, dst, BROTLI_READ_SIZE); + if (bytes_read < 0) { + throw new Error('Unexpected end of input'); + } + + if (bytes_read < BROTLI_READ_SIZE) { + this.eos_ = 1; + /* Store 32 bytes of zero after the stream end. */ + for (var p = 0; p < 32; p++) + this.buf_[dst + bytes_read + p] = 0; + } + + if (dst === 0) { + /* Copy the head of the ringbuffer to the slack region. */ + for (var p = 0; p < 32; p++) + this.buf_[(BROTLI_READ_SIZE << 1) + p] = this.buf_[p]; + + this.buf_ptr_ = BROTLI_READ_SIZE; + } else { + this.buf_ptr_ = 0; + } + + this.bit_end_pos_ += bytes_read << 3; + } +}; + +/* Guarantees that there are at least 24 bits in the buffer. */ +BrotliBitReader.prototype.fillBitWindow = function() { + while (this.bit_pos_ >= 8) { + this.val_ >>>= 8; + this.val_ |= this.buf_[this.pos_ & BROTLI_IBUF_MASK] << 24; + ++this.pos_; + this.bit_pos_ = this.bit_pos_ - 8 >>> 0; + this.bit_end_pos_ = this.bit_end_pos_ - 8 >>> 0; + } +}; + +/* Reads the specified number of bits from Read Buffer. */ +BrotliBitReader.prototype.readBits = function(n_bits) { + if (32 - this.bit_pos_ < n_bits) { + this.fillBitWindow(); + } + + var val = ((this.val_ >>> this.bit_pos_) & kBitMask[n_bits]); + this.bit_pos_ += n_bits; + return val; +}; + +module.exports = BrotliBitReader; + + +/***/ }), + +/***/ 7043: +/***/ (function(__unused_webpack_module, exports) { + +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. + + Lookup table to map the previous two bytes to a context id. + + There are four different context modeling modes defined here: + CONTEXT_LSB6: context id is the least significant 6 bits of the last byte, + CONTEXT_MSB6: context id is the most significant 6 bits of the last byte, + CONTEXT_UTF8: second-order context model tuned for UTF8-encoded text, + CONTEXT_SIGNED: second-order context model tuned for signed integers. + + The context id for the UTF8 context model is calculated as follows. If p1 + and p2 are the previous two bytes, we calcualte the context as + + context = kContextLookup[p1] | kContextLookup[p2 + 256]. + + If the previous two bytes are ASCII characters (i.e. < 128), this will be + equivalent to + + context = 4 * context1(p1) + context2(p2), + + where context1 is based on the previous byte in the following way: + + 0 : non-ASCII control + 1 : \t, \n, \r + 2 : space + 3 : other punctuation + 4 : " ' + 5 : % + 6 : ( < [ { + 7 : ) > ] } + 8 : , ; : + 9 : . + 10 : = + 11 : number + 12 : upper-case vowel + 13 : upper-case consonant + 14 : lower-case vowel + 15 : lower-case consonant + + and context2 is based on the second last byte: + + 0 : control, space + 1 : punctuation + 2 : upper-case letter, number + 3 : lower-case letter + + If the last byte is ASCII, and the second last byte is not (in a valid UTF8 + stream it will be a continuation byte, value between 128 and 191), the + context is the same as if the second last byte was an ASCII control or space. + + If the last byte is a UTF8 lead byte (value >= 192), then the next byte will + be a continuation byte and the context id is 2 or 3 depending on the LSB of + the last byte and to a lesser extent on the second last byte if it is ASCII. + + If the last byte is a UTF8 continuation byte, the second last byte can be: + - continuation byte: the next byte is probably ASCII or lead byte (assuming + 4-byte UTF8 characters are rare) and the context id is 0 or 1. + - lead byte (192 - 207): next byte is ASCII or lead byte, context is 0 or 1 + - lead byte (208 - 255): next byte is continuation byte, context is 2 or 3 + + The possible value combinations of the previous two bytes, the range of + context ids and the type of the next byte is summarized in the table below: + + |--------\-----------------------------------------------------------------| + | \ Last byte | + | Second \---------------------------------------------------------------| + | last byte \ ASCII | cont. byte | lead byte | + | \ (0-127) | (128-191) | (192-) | + |=============|===================|=====================|==================| + | ASCII | next: ASCII/lead | not valid | next: cont. | + | (0-127) | context: 4 - 63 | | context: 2 - 3 | + |-------------|-------------------|---------------------|------------------| + | cont. byte | next: ASCII/lead | next: ASCII/lead | next: cont. | + | (128-191) | context: 4 - 63 | context: 0 - 1 | context: 2 - 3 | + |-------------|-------------------|---------------------|------------------| + | lead byte | not valid | next: ASCII/lead | not valid | + | (192-207) | | context: 0 - 1 | | + |-------------|-------------------|---------------------|------------------| + | lead byte | not valid | next: cont. | not valid | + | (208-) | | context: 2 - 3 | | + |-------------|-------------------|---------------------|------------------| + + The context id for the signed context mode is calculated as: + + context = (kContextLookup[512 + p1] << 3) | kContextLookup[512 + p2]. + + For any context modeling modes, the context ids can be calculated by |-ing + together two lookups from one table using context model dependent offsets: + + context = kContextLookup[offset1 + p1] | kContextLookup[offset2 + p2]. + + where offset1 and offset2 are dependent on the context mode. +*/ + +var CONTEXT_LSB6 = 0; +var CONTEXT_MSB6 = 1; +var CONTEXT_UTF8 = 2; +var CONTEXT_SIGNED = 3; + +/* Common context lookup table for all context modes. */ +exports.lookup = new Uint8Array([ + /* CONTEXT_UTF8, last byte. */ + /* ASCII range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 12, 16, 12, 12, 20, 12, 16, 24, 28, 12, 12, 32, 12, 36, 12, + 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 32, 32, 24, 40, 28, 12, + 12, 48, 52, 52, 52, 48, 52, 52, 52, 48, 52, 52, 52, 52, 52, 48, + 52, 52, 52, 52, 52, 48, 52, 52, 52, 52, 52, 24, 12, 28, 12, 12, + 12, 56, 60, 60, 60, 56, 60, 60, 60, 56, 60, 60, 60, 60, 60, 56, + 60, 60, 60, 60, 60, 56, 60, 60, 60, 60, 60, 24, 12, 28, 12, 0, + /* UTF8 continuation byte range. */ + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, + /* UTF8 lead byte range. */ + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, + /* CONTEXT_UTF8 second last byte. */ + /* ASCII range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, + 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, + 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 0, + /* UTF8 continuation byte range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + /* UTF8 lead byte range. */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + /* CONTEXT_SIGNED, second last byte. */ + 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, + /* CONTEXT_SIGNED, last byte, same as the above values shifted by 3 bits. */ + 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, + 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 56, + /* CONTEXT_LSB6, last byte. */ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + /* CONTEXT_MSB6, last byte. */ + 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, + 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, + 8, 8, 8, 8, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, + 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, + 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, + 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, + 24, 24, 24, 24, 25, 25, 25, 25, 26, 26, 26, 26, 27, 27, 27, 27, + 28, 28, 28, 28, 29, 29, 29, 29, 30, 30, 30, 30, 31, 31, 31, 31, + 32, 32, 32, 32, 33, 33, 33, 33, 34, 34, 34, 34, 35, 35, 35, 35, + 36, 36, 36, 36, 37, 37, 37, 37, 38, 38, 38, 38, 39, 39, 39, 39, + 40, 40, 40, 40, 41, 41, 41, 41, 42, 42, 42, 42, 43, 43, 43, 43, + 44, 44, 44, 44, 45, 45, 45, 45, 46, 46, 46, 46, 47, 47, 47, 47, + 48, 48, 48, 48, 49, 49, 49, 49, 50, 50, 50, 50, 51, 51, 51, 51, + 52, 52, 52, 52, 53, 53, 53, 53, 54, 54, 54, 54, 55, 55, 55, 55, + 56, 56, 56, 56, 57, 57, 57, 57, 58, 58, 58, 58, 59, 59, 59, 59, + 60, 60, 60, 60, 61, 61, 61, 61, 62, 62, 62, 62, 63, 63, 63, 63, + /* CONTEXT_{M,L}SB6, second last byte, */ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +]); + +exports.lookupOffsets = new Uint16Array([ + /* CONTEXT_LSB6 */ + 1024, 1536, + /* CONTEXT_MSB6 */ + 1280, 1536, + /* CONTEXT_UTF8 */ + 0, 256, + /* CONTEXT_SIGNED */ + 768, 512, +]); + + +/***/ }), + +/***/ 20980: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +var __webpack_unused_export__; +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. +*/ + +var BrotliInput = (__webpack_require__(98197)/* .BrotliInput */ .z); +var BrotliOutput = (__webpack_require__(98197)/* .BrotliOutput */ .y); +var BrotliBitReader = __webpack_require__(34097); +var BrotliDictionary = __webpack_require__(80614); +var HuffmanCode = (__webpack_require__(81561)/* .HuffmanCode */ .z); +var BrotliBuildHuffmanTable = (__webpack_require__(81561)/* .BrotliBuildHuffmanTable */ .u); +var Context = __webpack_require__(7043); +var Prefix = __webpack_require__(42210); +var Transform = __webpack_require__(87984); + +var kDefaultCodeLength = 8; +var kCodeLengthRepeatCode = 16; +var kNumLiteralCodes = 256; +var kNumInsertAndCopyCodes = 704; +var kNumBlockLengthCodes = 26; +var kLiteralContextBits = 6; +var kDistanceContextBits = 2; + +var HUFFMAN_TABLE_BITS = 8; +var HUFFMAN_TABLE_MASK = 0xff; +/* Maximum possible Huffman table size for an alphabet size of 704, max code + * length 15 and root table bits 8. */ +var HUFFMAN_MAX_TABLE_SIZE = 1080; + +var CODE_LENGTH_CODES = 18; +var kCodeLengthCodeOrder = new Uint8Array([ + 1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13, 14, 15, +]); + +var NUM_DISTANCE_SHORT_CODES = 16; +var kDistanceShortCodeIndexOffset = new Uint8Array([ + 3, 2, 1, 0, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2 +]); + +var kDistanceShortCodeValueOffset = new Int8Array([ + 0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2, 2, -3, 3 +]); + +var kMaxHuffmanTableSize = new Uint16Array([ + 256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 694, 726, 758, 790, 822, + 854, 886, 920, 952, 984, 1016, 1048, 1080 +]); + +function DecodeWindowBits(br) { + var n; + if (br.readBits(1) === 0) { + return 16; + } + + n = br.readBits(3); + if (n > 0) { + return 17 + n; + } + + n = br.readBits(3); + if (n > 0) { + return 8 + n; + } + + return 17; +} + +/* Decodes a number in the range [0..255], by reading 1 - 11 bits. */ +function DecodeVarLenUint8(br) { + if (br.readBits(1)) { + var nbits = br.readBits(3); + if (nbits === 0) { + return 1; + } else { + return br.readBits(nbits) + (1 << nbits); + } + } + return 0; +} + +function MetaBlockLength() { + this.meta_block_length = 0; + this.input_end = 0; + this.is_uncompressed = 0; + this.is_metadata = false; +} + +function DecodeMetaBlockLength(br) { + var out = new MetaBlockLength; + var size_nibbles; + var size_bytes; + var i; + + out.input_end = br.readBits(1); + if (out.input_end && br.readBits(1)) { + return out; + } + + size_nibbles = br.readBits(2) + 4; + if (size_nibbles === 7) { + out.is_metadata = true; + + if (br.readBits(1) !== 0) + throw new Error('Invalid reserved bit'); + + size_bytes = br.readBits(2); + if (size_bytes === 0) + return out; + + for (i = 0; i < size_bytes; i++) { + var next_byte = br.readBits(8); + if (i + 1 === size_bytes && size_bytes > 1 && next_byte === 0) + throw new Error('Invalid size byte'); + + out.meta_block_length |= next_byte << (i * 8); + } + } else { + for (i = 0; i < size_nibbles; ++i) { + var next_nibble = br.readBits(4); + if (i + 1 === size_nibbles && size_nibbles > 4 && next_nibble === 0) + throw new Error('Invalid size nibble'); + + out.meta_block_length |= next_nibble << (i * 4); + } + } + + ++out.meta_block_length; + + if (!out.input_end && !out.is_metadata) { + out.is_uncompressed = br.readBits(1); + } + + return out; +} + +/* Decodes the next Huffman code from bit-stream. */ +function ReadSymbol(table, index, br) { + var start_index = index; + + var nbits; + br.fillBitWindow(); + index += (br.val_ >>> br.bit_pos_) & HUFFMAN_TABLE_MASK; + nbits = table[index].bits - HUFFMAN_TABLE_BITS; + if (nbits > 0) { + br.bit_pos_ += HUFFMAN_TABLE_BITS; + index += table[index].value; + index += (br.val_ >>> br.bit_pos_) & ((1 << nbits) - 1); + } + br.bit_pos_ += table[index].bits; + return table[index].value; +} + +function ReadHuffmanCodeLengths(code_length_code_lengths, num_symbols, code_lengths, br) { + var symbol = 0; + var prev_code_len = kDefaultCodeLength; + var repeat = 0; + var repeat_code_len = 0; + var space = 32768; + + var table = []; + for (var i = 0; i < 32; i++) + table.push(new HuffmanCode(0, 0)); + + BrotliBuildHuffmanTable(table, 0, 5, code_length_code_lengths, CODE_LENGTH_CODES); + + while (symbol < num_symbols && space > 0) { + var p = 0; + var code_len; + + br.readMoreInput(); + br.fillBitWindow(); + p += (br.val_ >>> br.bit_pos_) & 31; + br.bit_pos_ += table[p].bits; + code_len = table[p].value & 0xff; + if (code_len < kCodeLengthRepeatCode) { + repeat = 0; + code_lengths[symbol++] = code_len; + if (code_len !== 0) { + prev_code_len = code_len; + space -= 32768 >> code_len; + } + } else { + var extra_bits = code_len - 14; + var old_repeat; + var repeat_delta; + var new_len = 0; + if (code_len === kCodeLengthRepeatCode) { + new_len = prev_code_len; + } + if (repeat_code_len !== new_len) { + repeat = 0; + repeat_code_len = new_len; + } + old_repeat = repeat; + if (repeat > 0) { + repeat -= 2; + repeat <<= extra_bits; + } + repeat += br.readBits(extra_bits) + 3; + repeat_delta = repeat - old_repeat; + if (symbol + repeat_delta > num_symbols) { + throw new Error('[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols'); + } + + for (var x = 0; x < repeat_delta; x++) + code_lengths[symbol + x] = repeat_code_len; + + symbol += repeat_delta; + + if (repeat_code_len !== 0) { + space -= repeat_delta << (15 - repeat_code_len); + } + } + } + if (space !== 0) { + throw new Error("[ReadHuffmanCodeLengths] space = " + space); + } + + for (; symbol < num_symbols; symbol++) + code_lengths[symbol] = 0; +} + +function ReadHuffmanCode(alphabet_size, tables, table, br) { + var table_size = 0; + var simple_code_or_skip; + var code_lengths = new Uint8Array(alphabet_size); + + br.readMoreInput(); + + /* simple_code_or_skip is used as follows: + 1 for simple code; + 0 for no skipping, 2 skips 2 code lengths, 3 skips 3 code lengths */ + simple_code_or_skip = br.readBits(2); + if (simple_code_or_skip === 1) { + /* Read symbols, codes & code lengths directly. */ + var i; + var max_bits_counter = alphabet_size - 1; + var max_bits = 0; + var symbols = new Int32Array(4); + var num_symbols = br.readBits(2) + 1; + while (max_bits_counter) { + max_bits_counter >>= 1; + ++max_bits; + } + + for (i = 0; i < num_symbols; ++i) { + symbols[i] = br.readBits(max_bits) % alphabet_size; + code_lengths[symbols[i]] = 2; + } + code_lengths[symbols[0]] = 1; + switch (num_symbols) { + case 1: + break; + case 3: + if ((symbols[0] === symbols[1]) || + (symbols[0] === symbols[2]) || + (symbols[1] === symbols[2])) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + break; + case 2: + if (symbols[0] === symbols[1]) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + + code_lengths[symbols[1]] = 1; + break; + case 4: + if ((symbols[0] === symbols[1]) || + (symbols[0] === symbols[2]) || + (symbols[0] === symbols[3]) || + (symbols[1] === symbols[2]) || + (symbols[1] === symbols[3]) || + (symbols[2] === symbols[3])) { + throw new Error('[ReadHuffmanCode] invalid symbols'); + } + + if (br.readBits(1)) { + code_lengths[symbols[2]] = 3; + code_lengths[symbols[3]] = 3; + } else { + code_lengths[symbols[0]] = 2; + } + break; + } + } else { /* Decode Huffman-coded code lengths. */ + var i; + var code_length_code_lengths = new Uint8Array(CODE_LENGTH_CODES); + var space = 32; + var num_codes = 0; + /* Static Huffman code for the code length code lengths */ + var huff = [ + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 1), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(3, 2), + new HuffmanCode(2, 0), new HuffmanCode(2, 4), new HuffmanCode(2, 3), new HuffmanCode(4, 5) + ]; + for (i = simple_code_or_skip; i < CODE_LENGTH_CODES && space > 0; ++i) { + var code_len_idx = kCodeLengthCodeOrder[i]; + var p = 0; + var v; + br.fillBitWindow(); + p += (br.val_ >>> br.bit_pos_) & 15; + br.bit_pos_ += huff[p].bits; + v = huff[p].value; + code_length_code_lengths[code_len_idx] = v; + if (v !== 0) { + space -= (32 >> v); + ++num_codes; + } + } + + if (!(num_codes === 1 || space === 0)) + throw new Error('[ReadHuffmanCode] invalid num_codes or space'); + + ReadHuffmanCodeLengths(code_length_code_lengths, alphabet_size, code_lengths, br); + } + + table_size = BrotliBuildHuffmanTable(tables, table, HUFFMAN_TABLE_BITS, code_lengths, alphabet_size); + + if (table_size === 0) { + throw new Error("[ReadHuffmanCode] BuildHuffmanTable failed: "); + } + + return table_size; +} + +function ReadBlockLength(table, index, br) { + var code; + var nbits; + code = ReadSymbol(table, index, br); + nbits = Prefix.kBlockLengthPrefixCode[code].nbits; + return Prefix.kBlockLengthPrefixCode[code].offset + br.readBits(nbits); +} + +function TranslateShortCodes(code, ringbuffer, index) { + var val; + if (code < NUM_DISTANCE_SHORT_CODES) { + index += kDistanceShortCodeIndexOffset[code]; + index &= 3; + val = ringbuffer[index] + kDistanceShortCodeValueOffset[code]; + } else { + val = code - NUM_DISTANCE_SHORT_CODES + 1; + } + return val; +} + +function MoveToFront(v, index) { + var value = v[index]; + var i = index; + for (; i; --i) v[i] = v[i - 1]; + v[0] = value; +} + +function InverseMoveToFrontTransform(v, v_len) { + var mtf = new Uint8Array(256); + var i; + for (i = 0; i < 256; ++i) { + mtf[i] = i; + } + for (i = 0; i < v_len; ++i) { + var index = v[i]; + v[i] = mtf[index]; + if (index) MoveToFront(mtf, index); + } +} + +/* Contains a collection of huffman trees with the same alphabet size. */ +function HuffmanTreeGroup(alphabet_size, num_htrees) { + this.alphabet_size = alphabet_size; + this.num_htrees = num_htrees; + this.codes = new Array(num_htrees + num_htrees * kMaxHuffmanTableSize[(alphabet_size + 31) >>> 5]); + this.htrees = new Uint32Array(num_htrees); +} + +HuffmanTreeGroup.prototype.decode = function(br) { + var i; + var table_size; + var next = 0; + for (i = 0; i < this.num_htrees; ++i) { + this.htrees[i] = next; + table_size = ReadHuffmanCode(this.alphabet_size, this.codes, next, br); + next += table_size; + } +}; + +function DecodeContextMap(context_map_size, br) { + var out = { num_htrees: null, context_map: null }; + var use_rle_for_zeros; + var max_run_length_prefix = 0; + var table; + var i; + + br.readMoreInput(); + var num_htrees = out.num_htrees = DecodeVarLenUint8(br) + 1; + + var context_map = out.context_map = new Uint8Array(context_map_size); + if (num_htrees <= 1) { + return out; + } + + use_rle_for_zeros = br.readBits(1); + if (use_rle_for_zeros) { + max_run_length_prefix = br.readBits(4) + 1; + } + + table = []; + for (i = 0; i < HUFFMAN_MAX_TABLE_SIZE; i++) { + table[i] = new HuffmanCode(0, 0); + } + + ReadHuffmanCode(num_htrees + max_run_length_prefix, table, 0, br); + + for (i = 0; i < context_map_size;) { + var code; + + br.readMoreInput(); + code = ReadSymbol(table, 0, br); + if (code === 0) { + context_map[i] = 0; + ++i; + } else if (code <= max_run_length_prefix) { + var reps = 1 + (1 << code) + br.readBits(code); + while (--reps) { + if (i >= context_map_size) { + throw new Error("[DecodeContextMap] i >= context_map_size"); + } + context_map[i] = 0; + ++i; + } + } else { + context_map[i] = code - max_run_length_prefix; + ++i; + } + } + if (br.readBits(1)) { + InverseMoveToFrontTransform(context_map, context_map_size); + } + + return out; +} + +function DecodeBlockType(max_block_type, trees, tree_type, block_types, ringbuffers, indexes, br) { + var ringbuffer = tree_type * 2; + var index = tree_type; + var type_code = ReadSymbol(trees, tree_type * HUFFMAN_MAX_TABLE_SIZE, br); + var block_type; + if (type_code === 0) { + block_type = ringbuffers[ringbuffer + (indexes[index] & 1)]; + } else if (type_code === 1) { + block_type = ringbuffers[ringbuffer + ((indexes[index] - 1) & 1)] + 1; + } else { + block_type = type_code - 2; + } + if (block_type >= max_block_type) { + block_type -= max_block_type; + } + block_types[tree_type] = block_type; + ringbuffers[ringbuffer + (indexes[index] & 1)] = block_type; + ++indexes[index]; +} + +function CopyUncompressedBlockToOutput(output, len, pos, ringbuffer, ringbuffer_mask, br) { + var rb_size = ringbuffer_mask + 1; + var rb_pos = pos & ringbuffer_mask; + var br_pos = br.pos_ & BrotliBitReader.IBUF_MASK; + var nbytes; + + /* For short lengths copy byte-by-byte */ + if (len < 8 || br.bit_pos_ + (len << 3) < br.bit_end_pos_) { + while (len-- > 0) { + br.readMoreInput(); + ringbuffer[rb_pos++] = br.readBits(8); + if (rb_pos === rb_size) { + output.write(ringbuffer, rb_size); + rb_pos = 0; + } + } + return; + } + + if (br.bit_end_pos_ < 32) { + throw new Error('[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32'); + } + + /* Copy remaining 0-4 bytes from br.val_ to ringbuffer. */ + while (br.bit_pos_ < 32) { + ringbuffer[rb_pos] = (br.val_ >>> br.bit_pos_); + br.bit_pos_ += 8; + ++rb_pos; + --len; + } + + /* Copy remaining bytes from br.buf_ to ringbuffer. */ + nbytes = (br.bit_end_pos_ - br.bit_pos_) >> 3; + if (br_pos + nbytes > BrotliBitReader.IBUF_MASK) { + var tail = BrotliBitReader.IBUF_MASK + 1 - br_pos; + for (var x = 0; x < tail; x++) + ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; + + nbytes -= tail; + rb_pos += tail; + len -= tail; + br_pos = 0; + } + + for (var x = 0; x < nbytes; x++) + ringbuffer[rb_pos + x] = br.buf_[br_pos + x]; + + rb_pos += nbytes; + len -= nbytes; + + /* If we wrote past the logical end of the ringbuffer, copy the tail of the + ringbuffer to its beginning and flush the ringbuffer to the output. */ + if (rb_pos >= rb_size) { + output.write(ringbuffer, rb_size); + rb_pos -= rb_size; + for (var x = 0; x < rb_pos; x++) + ringbuffer[x] = ringbuffer[rb_size + x]; + } + + /* If we have more to copy than the remaining size of the ringbuffer, then we + first fill the ringbuffer from the input and then flush the ringbuffer to + the output */ + while (rb_pos + len >= rb_size) { + nbytes = rb_size - rb_pos; + if (br.input_.read(ringbuffer, rb_pos, nbytes) < nbytes) { + throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); + } + output.write(ringbuffer, rb_size); + len -= nbytes; + rb_pos = 0; + } + + /* Copy straight from the input onto the ringbuffer. The ringbuffer will be + flushed to the output at a later time. */ + if (br.input_.read(ringbuffer, rb_pos, len) < len) { + throw new Error('[CopyUncompressedBlockToOutput] not enough bytes'); + } + + /* Restore the state of the bit reader. */ + br.reset(); +} + +/* Advances the bit reader position to the next byte boundary and verifies + that any skipped bits are set to zero. */ +function JumpToByteBoundary(br) { + var new_bit_pos = (br.bit_pos_ + 7) & ~7; + var pad_bits = br.readBits(new_bit_pos - br.bit_pos_); + return pad_bits == 0; +} + +function BrotliDecompressedSize(buffer) { + var input = new BrotliInput(buffer); + var br = new BrotliBitReader(input); + DecodeWindowBits(br); + var out = DecodeMetaBlockLength(br); + return out.meta_block_length; +} + +__webpack_unused_export__ = BrotliDecompressedSize; + +function BrotliDecompressBuffer(buffer, output_size) { + var input = new BrotliInput(buffer); + + if (output_size == null) { + output_size = BrotliDecompressedSize(buffer); + } + + var output_buffer = new Uint8Array(output_size); + var output = new BrotliOutput(output_buffer); + + BrotliDecompress(input, output); + + if (output.pos < output.buffer.length) { + output.buffer = output.buffer.subarray(0, output.pos); + } + + return output.buffer; +} + +exports.BrotliDecompressBuffer = BrotliDecompressBuffer; + +function BrotliDecompress(input, output) { + var i; + var pos = 0; + var input_end = 0; + var window_bits = 0; + var max_backward_distance; + var max_distance = 0; + var ringbuffer_size; + var ringbuffer_mask; + var ringbuffer; + var ringbuffer_end; + /* This ring buffer holds a few past copy distances that will be used by */ + /* some special distance codes. */ + var dist_rb = [ 16, 15, 11, 4 ]; + var dist_rb_idx = 0; + /* The previous 2 bytes used for context. */ + var prev_byte1 = 0; + var prev_byte2 = 0; + var hgroup = [new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0), new HuffmanTreeGroup(0, 0)]; + var block_type_trees; + var block_len_trees; + var br; + + /* We need the slack region for the following reasons: + - always doing two 8-byte copies for fast backward copying + - transforms + - flushing the input ringbuffer when decoding uncompressed blocks */ + var kRingBufferWriteAheadSlack = 128 + BrotliBitReader.READ_SIZE; + + br = new BrotliBitReader(input); + + /* Decode window size. */ + window_bits = DecodeWindowBits(br); + max_backward_distance = (1 << window_bits) - 16; + + ringbuffer_size = 1 << window_bits; + ringbuffer_mask = ringbuffer_size - 1; + ringbuffer = new Uint8Array(ringbuffer_size + kRingBufferWriteAheadSlack + BrotliDictionary.maxDictionaryWordLength); + ringbuffer_end = ringbuffer_size; + + block_type_trees = []; + block_len_trees = []; + for (var x = 0; x < 3 * HUFFMAN_MAX_TABLE_SIZE; x++) { + block_type_trees[x] = new HuffmanCode(0, 0); + block_len_trees[x] = new HuffmanCode(0, 0); + } + + while (!input_end) { + var meta_block_remaining_len = 0; + var is_uncompressed; + var block_length = [ 1 << 28, 1 << 28, 1 << 28 ]; + var block_type = [ 0 ]; + var num_block_types = [ 1, 1, 1 ]; + var block_type_rb = [ 0, 1, 0, 1, 0, 1 ]; + var block_type_rb_index = [ 0 ]; + var distance_postfix_bits; + var num_direct_distance_codes; + var distance_postfix_mask; + var num_distance_codes; + var context_map = null; + var context_modes = null; + var num_literal_htrees; + var dist_context_map = null; + var num_dist_htrees; + var context_offset = 0; + var context_map_slice = null; + var literal_htree_index = 0; + var dist_context_offset = 0; + var dist_context_map_slice = null; + var dist_htree_index = 0; + var context_lookup_offset1 = 0; + var context_lookup_offset2 = 0; + var context_mode; + var htree_command; + + for (i = 0; i < 3; ++i) { + hgroup[i].codes = null; + hgroup[i].htrees = null; + } + + br.readMoreInput(); + + var _out = DecodeMetaBlockLength(br); + meta_block_remaining_len = _out.meta_block_length; + if (pos + meta_block_remaining_len > output.buffer.length) { + /* We need to grow the output buffer to fit the additional data. */ + var tmp = new Uint8Array( pos + meta_block_remaining_len ); + tmp.set( output.buffer ); + output.buffer = tmp; + } + input_end = _out.input_end; + is_uncompressed = _out.is_uncompressed; + + if (_out.is_metadata) { + JumpToByteBoundary(br); + + for (; meta_block_remaining_len > 0; --meta_block_remaining_len) { + br.readMoreInput(); + /* Read one byte and ignore it. */ + br.readBits(8); + } + + continue; + } + + if (meta_block_remaining_len === 0) { + continue; + } + + if (is_uncompressed) { + br.bit_pos_ = (br.bit_pos_ + 7) & ~7; + CopyUncompressedBlockToOutput(output, meta_block_remaining_len, pos, + ringbuffer, ringbuffer_mask, br); + pos += meta_block_remaining_len; + continue; + } + + for (i = 0; i < 3; ++i) { + num_block_types[i] = DecodeVarLenUint8(br) + 1; + if (num_block_types[i] >= 2) { + ReadHuffmanCode(num_block_types[i] + 2, block_type_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + ReadHuffmanCode(kNumBlockLengthCodes, block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + block_length[i] = ReadBlockLength(block_len_trees, i * HUFFMAN_MAX_TABLE_SIZE, br); + block_type_rb_index[i] = 1; + } + } + + br.readMoreInput(); + + distance_postfix_bits = br.readBits(2); + num_direct_distance_codes = NUM_DISTANCE_SHORT_CODES + (br.readBits(4) << distance_postfix_bits); + distance_postfix_mask = (1 << distance_postfix_bits) - 1; + num_distance_codes = (num_direct_distance_codes + (48 << distance_postfix_bits)); + context_modes = new Uint8Array(num_block_types[0]); + + for (i = 0; i < num_block_types[0]; ++i) { + br.readMoreInput(); + context_modes[i] = (br.readBits(2) << 1); + } + + var _o1 = DecodeContextMap(num_block_types[0] << kLiteralContextBits, br); + num_literal_htrees = _o1.num_htrees; + context_map = _o1.context_map; + + var _o2 = DecodeContextMap(num_block_types[2] << kDistanceContextBits, br); + num_dist_htrees = _o2.num_htrees; + dist_context_map = _o2.context_map; + + hgroup[0] = new HuffmanTreeGroup(kNumLiteralCodes, num_literal_htrees); + hgroup[1] = new HuffmanTreeGroup(kNumInsertAndCopyCodes, num_block_types[1]); + hgroup[2] = new HuffmanTreeGroup(num_distance_codes, num_dist_htrees); + + for (i = 0; i < 3; ++i) { + hgroup[i].decode(br); + } + + context_map_slice = 0; + dist_context_map_slice = 0; + context_mode = context_modes[block_type[0]]; + context_lookup_offset1 = Context.lookupOffsets[context_mode]; + context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; + htree_command = hgroup[1].htrees[0]; + + while (meta_block_remaining_len > 0) { + var cmd_code; + var range_idx; + var insert_code; + var copy_code; + var insert_length; + var copy_length; + var distance_code; + var distance; + var context; + var j; + var copy_dst; + + br.readMoreInput(); + + if (block_length[1] === 0) { + DecodeBlockType(num_block_types[1], + block_type_trees, 1, block_type, block_type_rb, + block_type_rb_index, br); + block_length[1] = ReadBlockLength(block_len_trees, HUFFMAN_MAX_TABLE_SIZE, br); + htree_command = hgroup[1].htrees[block_type[1]]; + } + --block_length[1]; + cmd_code = ReadSymbol(hgroup[1].codes, htree_command, br); + range_idx = cmd_code >> 6; + if (range_idx >= 2) { + range_idx -= 2; + distance_code = -1; + } else { + distance_code = 0; + } + insert_code = Prefix.kInsertRangeLut[range_idx] + ((cmd_code >> 3) & 7); + copy_code = Prefix.kCopyRangeLut[range_idx] + (cmd_code & 7); + insert_length = Prefix.kInsertLengthPrefixCode[insert_code].offset + + br.readBits(Prefix.kInsertLengthPrefixCode[insert_code].nbits); + copy_length = Prefix.kCopyLengthPrefixCode[copy_code].offset + + br.readBits(Prefix.kCopyLengthPrefixCode[copy_code].nbits); + prev_byte1 = ringbuffer[pos-1 & ringbuffer_mask]; + prev_byte2 = ringbuffer[pos-2 & ringbuffer_mask]; + for (j = 0; j < insert_length; ++j) { + br.readMoreInput(); + + if (block_length[0] === 0) { + DecodeBlockType(num_block_types[0], + block_type_trees, 0, block_type, block_type_rb, + block_type_rb_index, br); + block_length[0] = ReadBlockLength(block_len_trees, 0, br); + context_offset = block_type[0] << kLiteralContextBits; + context_map_slice = context_offset; + context_mode = context_modes[block_type[0]]; + context_lookup_offset1 = Context.lookupOffsets[context_mode]; + context_lookup_offset2 = Context.lookupOffsets[context_mode + 1]; + } + context = (Context.lookup[context_lookup_offset1 + prev_byte1] | + Context.lookup[context_lookup_offset2 + prev_byte2]); + literal_htree_index = context_map[context_map_slice + context]; + --block_length[0]; + prev_byte2 = prev_byte1; + prev_byte1 = ReadSymbol(hgroup[0].codes, hgroup[0].htrees[literal_htree_index], br); + ringbuffer[pos & ringbuffer_mask] = prev_byte1; + if ((pos & ringbuffer_mask) === ringbuffer_mask) { + output.write(ringbuffer, ringbuffer_size); + } + ++pos; + } + meta_block_remaining_len -= insert_length; + if (meta_block_remaining_len <= 0) break; + + if (distance_code < 0) { + var context; + + br.readMoreInput(); + if (block_length[2] === 0) { + DecodeBlockType(num_block_types[2], + block_type_trees, 2, block_type, block_type_rb, + block_type_rb_index, br); + block_length[2] = ReadBlockLength(block_len_trees, 2 * HUFFMAN_MAX_TABLE_SIZE, br); + dist_context_offset = block_type[2] << kDistanceContextBits; + dist_context_map_slice = dist_context_offset; + } + --block_length[2]; + context = (copy_length > 4 ? 3 : copy_length - 2) & 0xff; + dist_htree_index = dist_context_map[dist_context_map_slice + context]; + distance_code = ReadSymbol(hgroup[2].codes, hgroup[2].htrees[dist_htree_index], br); + if (distance_code >= num_direct_distance_codes) { + var nbits; + var postfix; + var offset; + distance_code -= num_direct_distance_codes; + postfix = distance_code & distance_postfix_mask; + distance_code >>= distance_postfix_bits; + nbits = (distance_code >> 1) + 1; + offset = ((2 + (distance_code & 1)) << nbits) - 4; + distance_code = num_direct_distance_codes + + ((offset + br.readBits(nbits)) << + distance_postfix_bits) + postfix; + } + } + + /* Convert the distance code to the actual distance by possibly looking */ + /* up past distnaces from the ringbuffer. */ + distance = TranslateShortCodes(distance_code, dist_rb, dist_rb_idx); + if (distance < 0) { + throw new Error('[BrotliDecompress] invalid distance'); + } + + if (pos < max_backward_distance && + max_distance !== max_backward_distance) { + max_distance = pos; + } else { + max_distance = max_backward_distance; + } + + copy_dst = pos & ringbuffer_mask; + + if (distance > max_distance) { + if (copy_length >= BrotliDictionary.minDictionaryWordLength && + copy_length <= BrotliDictionary.maxDictionaryWordLength) { + var offset = BrotliDictionary.offsetsByLength[copy_length]; + var word_id = distance - max_distance - 1; + var shift = BrotliDictionary.sizeBitsByLength[copy_length]; + var mask = (1 << shift) - 1; + var word_idx = word_id & mask; + var transform_idx = word_id >> shift; + offset += word_idx * copy_length; + if (transform_idx < Transform.kNumTransforms) { + var len = Transform.transformDictionaryWord(ringbuffer, copy_dst, offset, copy_length, transform_idx); + copy_dst += len; + pos += len; + meta_block_remaining_len -= len; + if (copy_dst >= ringbuffer_end) { + output.write(ringbuffer, ringbuffer_size); + + for (var _x = 0; _x < (copy_dst - ringbuffer_end); _x++) + ringbuffer[_x] = ringbuffer[ringbuffer_end + _x]; + } + } else { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + } else { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + } else { + if (distance_code > 0) { + dist_rb[dist_rb_idx & 3] = distance; + ++dist_rb_idx; + } + + if (copy_length > meta_block_remaining_len) { + throw new Error("Invalid backward reference. pos: " + pos + " distance: " + distance + + " len: " + copy_length + " bytes left: " + meta_block_remaining_len); + } + + for (j = 0; j < copy_length; ++j) { + ringbuffer[pos & ringbuffer_mask] = ringbuffer[(pos - distance) & ringbuffer_mask]; + if ((pos & ringbuffer_mask) === ringbuffer_mask) { + output.write(ringbuffer, ringbuffer_size); + } + ++pos; + --meta_block_remaining_len; + } + } + + /* When we get here, we must have inserted at least one literal and */ + /* made a copy of at least length two, therefore accessing the last 2 */ + /* bytes is valid. */ + prev_byte1 = ringbuffer[(pos - 1) & ringbuffer_mask]; + prev_byte2 = ringbuffer[(pos - 2) & ringbuffer_mask]; + } + + /* Protect pos from overflow, wrap it around at every GB of input data */ + pos &= 0x3fffffff; + } + + output.write(ringbuffer, pos & ringbuffer_mask); +} + +__webpack_unused_export__ = BrotliDecompress; + +BrotliDictionary.init(); + + +/***/ }), + +/***/ 84543: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +var base64 = __webpack_require__(32504); + +/** + * The normal dictionary-data.js is quite large, which makes it + * unsuitable for browser usage. In order to make it smaller, + * we read dictionary.bin, which is a compressed version of + * the dictionary, and on initial load, Brotli decompresses + * it's own dictionary. 😜 + */ +exports.init = function() { + var BrotliDecompressBuffer = (__webpack_require__(20980).BrotliDecompressBuffer); + var compressed = base64.toByteArray(__webpack_require__(13501)); + return BrotliDecompressBuffer(compressed); +}; + + +/***/ }), + +/***/ 13501: +/***/ (function(module) { + +module.exports="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"; + + +/***/ }), + +/***/ 80614: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. + + Collection of static dictionary words. +*/ + +var data = __webpack_require__(84543); +exports.init = function() { + exports.dictionary = data.init(); +}; + +exports.offsetsByLength = new Uint32Array([ + 0, 0, 0, 0, 0, 4096, 9216, 21504, 35840, 44032, + 53248, 63488, 74752, 87040, 93696, 100864, 104704, 106752, 108928, 113536, + 115968, 118528, 119872, 121280, 122016, +]); + +exports.sizeBitsByLength = new Uint8Array([ + 0, 0, 0, 0, 10, 10, 11, 11, 10, 10, + 10, 10, 10, 9, 9, 8, 7, 7, 8, 7, + 7, 6, 6, 5, 5, +]); + +exports.minDictionaryWordLength = 4; +exports.maxDictionaryWordLength = 24; + + +/***/ }), + +/***/ 81561: +/***/ (function(__unused_webpack_module, exports) { + +function HuffmanCode(bits, value) { + this.bits = bits; /* number of bits used for this symbol */ + this.value = value; /* symbol value or table offset */ +} + +exports.z = HuffmanCode; + +var MAX_LENGTH = 15; + +/* Returns reverse(reverse(key, len) + 1, len), where reverse(key, len) is the + bit-wise reversal of the len least significant bits of key. */ +function GetNextKey(key, len) { + var step = 1 << (len - 1); + while (key & step) { + step >>= 1; + } + return (key & (step - 1)) + step; +} + +/* Stores code in table[0], table[step], table[2*step], ..., table[end] */ +/* Assumes that end is an integer multiple of step */ +function ReplicateValue(table, i, step, end, code) { + do { + end -= step; + table[i + end] = new HuffmanCode(code.bits, code.value); + } while (end > 0); +} + +/* Returns the table width of the next 2nd level table. count is the histogram + of bit lengths for the remaining symbols, len is the code length of the next + processed symbol */ +function NextTableBitSize(count, len, root_bits) { + var left = 1 << (len - root_bits); + while (len < MAX_LENGTH) { + left -= count[len]; + if (left <= 0) break; + ++len; + left <<= 1; + } + return len - root_bits; +} + +exports.u = function(root_table, table, root_bits, code_lengths, code_lengths_size) { + var start_table = table; + var code; /* current table entry */ + var len; /* current code length */ + var symbol; /* symbol index in original or sorted table */ + var key; /* reversed prefix code */ + var step; /* step size to replicate values in current table */ + var low; /* low bits for current root entry */ + var mask; /* mask for low bits */ + var table_bits; /* key length of current table */ + var table_size; /* size of current table */ + var total_size; /* sum of root table size and 2nd level table sizes */ + var sorted; /* symbols sorted by code length */ + var count = new Int32Array(MAX_LENGTH + 1); /* number of codes of each length */ + var offset = new Int32Array(MAX_LENGTH + 1); /* offsets in sorted table for each length */ + + sorted = new Int32Array(code_lengths_size); + + /* build histogram of code lengths */ + for (symbol = 0; symbol < code_lengths_size; symbol++) { + count[code_lengths[symbol]]++; + } + + /* generate offsets into sorted symbol table by code length */ + offset[1] = 0; + for (len = 1; len < MAX_LENGTH; len++) { + offset[len + 1] = offset[len] + count[len]; + } + + /* sort symbols by length, by symbol order within each length */ + for (symbol = 0; symbol < code_lengths_size; symbol++) { + if (code_lengths[symbol] !== 0) { + sorted[offset[code_lengths[symbol]]++] = symbol; + } + } + + table_bits = root_bits; + table_size = 1 << table_bits; + total_size = table_size; + + /* special case code with only one value */ + if (offset[MAX_LENGTH] === 1) { + for (key = 0; key < total_size; ++key) { + root_table[table + key] = new HuffmanCode(0, sorted[0] & 0xffff); + } + + return total_size; + } + + /* fill in root table */ + key = 0; + symbol = 0; + for (len = 1, step = 2; len <= root_bits; ++len, step <<= 1) { + for (; count[len] > 0; --count[len]) { + code = new HuffmanCode(len & 0xff, sorted[symbol++] & 0xffff); + ReplicateValue(root_table, table + key, step, table_size, code); + key = GetNextKey(key, len); + } + } + + /* fill in 2nd level tables and add pointers to root table */ + mask = total_size - 1; + low = -1; + for (len = root_bits + 1, step = 2; len <= MAX_LENGTH; ++len, step <<= 1) { + for (; count[len] > 0; --count[len]) { + if ((key & mask) !== low) { + table += table_size; + table_bits = NextTableBitSize(count, len, root_bits); + table_size = 1 << table_bits; + total_size += table_size; + low = key & mask; + root_table[start_table + low] = new HuffmanCode((table_bits + root_bits) & 0xff, ((table - start_table) - low) & 0xffff); + } + code = new HuffmanCode((len - root_bits) & 0xff, sorted[symbol++] & 0xffff); + ReplicateValue(root_table, table + (key >> root_bits), step, table_size, code); + key = GetNextKey(key, len); + } + } + + return total_size; +} + + +/***/ }), + +/***/ 42210: +/***/ (function(__unused_webpack_module, exports) { + +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. + + Lookup tables to map prefix codes to value ranges. This is used during + decoding of the block lengths, literal insertion lengths and copy lengths. +*/ + +/* Represents the range of values belonging to a prefix code: */ +/* [offset, offset + 2^nbits) */ +function PrefixCodeRange(offset, nbits) { + this.offset = offset; + this.nbits = nbits; +} + +exports.kBlockLengthPrefixCode = [ + new PrefixCodeRange(1, 2), new PrefixCodeRange(5, 2), new PrefixCodeRange(9, 2), new PrefixCodeRange(13, 2), + new PrefixCodeRange(17, 3), new PrefixCodeRange(25, 3), new PrefixCodeRange(33, 3), new PrefixCodeRange(41, 3), + new PrefixCodeRange(49, 4), new PrefixCodeRange(65, 4), new PrefixCodeRange(81, 4), new PrefixCodeRange(97, 4), + new PrefixCodeRange(113, 5), new PrefixCodeRange(145, 5), new PrefixCodeRange(177, 5), new PrefixCodeRange(209, 5), + new PrefixCodeRange(241, 6), new PrefixCodeRange(305, 6), new PrefixCodeRange(369, 7), new PrefixCodeRange(497, 8), + new PrefixCodeRange(753, 9), new PrefixCodeRange(1265, 10), new PrefixCodeRange(2289, 11), new PrefixCodeRange(4337, 12), + new PrefixCodeRange(8433, 13), new PrefixCodeRange(16625, 24) +]; + +exports.kInsertLengthPrefixCode = [ + new PrefixCodeRange(0, 0), new PrefixCodeRange(1, 0), new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), + new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), new PrefixCodeRange(6, 1), new PrefixCodeRange(8, 1), + new PrefixCodeRange(10, 2), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 3), new PrefixCodeRange(26, 3), + new PrefixCodeRange(34, 4), new PrefixCodeRange(50, 4), new PrefixCodeRange(66, 5), new PrefixCodeRange(98, 5), + new PrefixCodeRange(130, 6), new PrefixCodeRange(194, 7), new PrefixCodeRange(322, 8), new PrefixCodeRange(578, 9), + new PrefixCodeRange(1090, 10), new PrefixCodeRange(2114, 12), new PrefixCodeRange(6210, 14), new PrefixCodeRange(22594, 24), +]; + +exports.kCopyLengthPrefixCode = [ + new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), + new PrefixCodeRange(6, 0), new PrefixCodeRange(7, 0), new PrefixCodeRange(8, 0), new PrefixCodeRange(9, 0), + new PrefixCodeRange(10, 1), new PrefixCodeRange(12, 1), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 2), + new PrefixCodeRange(22, 3), new PrefixCodeRange(30, 3), new PrefixCodeRange(38, 4), new PrefixCodeRange(54, 4), + new PrefixCodeRange(70, 5), new PrefixCodeRange(102, 5), new PrefixCodeRange(134, 6), new PrefixCodeRange(198, 7), + new PrefixCodeRange(326, 8), new PrefixCodeRange(582, 9), new PrefixCodeRange(1094, 10), new PrefixCodeRange(2118, 24), +]; + +exports.kInsertRangeLut = [ + 0, 0, 8, 8, 0, 16, 8, 16, 16, +]; + +exports.kCopyRangeLut = [ + 0, 8, 0, 8, 16, 0, 16, 8, 16, +]; + + +/***/ }), + +/***/ 98197: +/***/ (function(__unused_webpack_module, exports) { + +function BrotliInput(buffer) { + this.buffer = buffer; + this.pos = 0; +} + +BrotliInput.prototype.read = function(buf, i, count) { + if (this.pos + count > this.buffer.length) { + count = this.buffer.length - this.pos; + } + + for (var p = 0; p < count; p++) + buf[i + p] = this.buffer[this.pos + p]; + + this.pos += count; + return count; +} + +exports.z = BrotliInput; + +function BrotliOutput(buf) { + this.buffer = buf; + this.pos = 0; +} + +BrotliOutput.prototype.write = function(buf, count) { + if (this.pos + count > this.buffer.length) + throw new Error('Output buffer is not large enough'); + + this.buffer.set(buf.subarray(0, count), this.pos); + this.pos += count; + return count; +}; + +exports.y = BrotliOutput; + + +/***/ }), + +/***/ 87984: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +/* Copyright 2013 Google Inc. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + 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. + + Transformations on dictionary words. +*/ + +var BrotliDictionary = __webpack_require__(80614); + +var kIdentity = 0; +var kOmitLast1 = 1; +var kOmitLast2 = 2; +var kOmitLast3 = 3; +var kOmitLast4 = 4; +var kOmitLast5 = 5; +var kOmitLast6 = 6; +var kOmitLast7 = 7; +var kOmitLast8 = 8; +var kOmitLast9 = 9; +var kUppercaseFirst = 10; +var kUppercaseAll = 11; +var kOmitFirst1 = 12; +var kOmitFirst2 = 13; +var kOmitFirst3 = 14; +var kOmitFirst4 = 15; +var kOmitFirst5 = 16; +var kOmitFirst6 = 17; +var kOmitFirst7 = 18; +var kOmitFirst8 = 19; +var kOmitFirst9 = 20; + +function Transform(prefix, transform, suffix) { + this.prefix = new Uint8Array(prefix.length); + this.transform = transform; + this.suffix = new Uint8Array(suffix.length); + + for (var i = 0; i < prefix.length; i++) + this.prefix[i] = prefix.charCodeAt(i); + + for (var i = 0; i < suffix.length; i++) + this.suffix[i] = suffix.charCodeAt(i); +} + +var kTransforms = [ + new Transform( "", kIdentity, "" ), + new Transform( "", kIdentity, " " ), + new Transform( " ", kIdentity, " " ), + new Transform( "", kOmitFirst1, "" ), + new Transform( "", kUppercaseFirst, " " ), + new Transform( "", kIdentity, " the " ), + new Transform( " ", kIdentity, "" ), + new Transform( "s ", kIdentity, " " ), + new Transform( "", kIdentity, " of " ), + new Transform( "", kUppercaseFirst, "" ), + new Transform( "", kIdentity, " and " ), + new Transform( "", kOmitFirst2, "" ), + new Transform( "", kOmitLast1, "" ), + new Transform( ", ", kIdentity, " " ), + new Transform( "", kIdentity, ", " ), + new Transform( " ", kUppercaseFirst, " " ), + new Transform( "", kIdentity, " in " ), + new Transform( "", kIdentity, " to " ), + new Transform( "e ", kIdentity, " " ), + new Transform( "", kIdentity, "\"" ), + new Transform( "", kIdentity, "." ), + new Transform( "", kIdentity, "\">" ), + new Transform( "", kIdentity, "\n" ), + new Transform( "", kOmitLast3, "" ), + new Transform( "", kIdentity, "]" ), + new Transform( "", kIdentity, " for " ), + new Transform( "", kOmitFirst3, "" ), + new Transform( "", kOmitLast2, "" ), + new Transform( "", kIdentity, " a " ), + new Transform( "", kIdentity, " that " ), + new Transform( " ", kUppercaseFirst, "" ), + new Transform( "", kIdentity, ". " ), + new Transform( ".", kIdentity, "" ), + new Transform( " ", kIdentity, ", " ), + new Transform( "", kOmitFirst4, "" ), + new Transform( "", kIdentity, " with " ), + new Transform( "", kIdentity, "'" ), + new Transform( "", kIdentity, " from " ), + new Transform( "", kIdentity, " by " ), + new Transform( "", kOmitFirst5, "" ), + new Transform( "", kOmitFirst6, "" ), + new Transform( " the ", kIdentity, "" ), + new Transform( "", kOmitLast4, "" ), + new Transform( "", kIdentity, ". The " ), + new Transform( "", kUppercaseAll, "" ), + new Transform( "", kIdentity, " on " ), + new Transform( "", kIdentity, " as " ), + new Transform( "", kIdentity, " is " ), + new Transform( "", kOmitLast7, "" ), + new Transform( "", kOmitLast1, "ing " ), + new Transform( "", kIdentity, "\n\t" ), + new Transform( "", kIdentity, ":" ), + new Transform( " ", kIdentity, ". " ), + new Transform( "", kIdentity, "ed " ), + new Transform( "", kOmitFirst9, "" ), + new Transform( "", kOmitFirst7, "" ), + new Transform( "", kOmitLast6, "" ), + new Transform( "", kIdentity, "(" ), + new Transform( "", kUppercaseFirst, ", " ), + new Transform( "", kOmitLast8, "" ), + new Transform( "", kIdentity, " at " ), + new Transform( "", kIdentity, "ly " ), + new Transform( " the ", kIdentity, " of " ), + new Transform( "", kOmitLast5, "" ), + new Transform( "", kOmitLast9, "" ), + new Transform( " ", kUppercaseFirst, ", " ), + new Transform( "", kUppercaseFirst, "\"" ), + new Transform( ".", kIdentity, "(" ), + new Transform( "", kUppercaseAll, " " ), + new Transform( "", kUppercaseFirst, "\">" ), + new Transform( "", kIdentity, "=\"" ), + new Transform( " ", kIdentity, "." ), + new Transform( ".com/", kIdentity, "" ), + new Transform( " the ", kIdentity, " of the " ), + new Transform( "", kUppercaseFirst, "'" ), + new Transform( "", kIdentity, ". This " ), + new Transform( "", kIdentity, "," ), + new Transform( ".", kIdentity, " " ), + new Transform( "", kUppercaseFirst, "(" ), + new Transform( "", kUppercaseFirst, "." ), + new Transform( "", kIdentity, " not " ), + new Transform( " ", kIdentity, "=\"" ), + new Transform( "", kIdentity, "er " ), + new Transform( " ", kUppercaseAll, " " ), + new Transform( "", kIdentity, "al " ), + new Transform( " ", kUppercaseAll, "" ), + new Transform( "", kIdentity, "='" ), + new Transform( "", kUppercaseAll, "\"" ), + new Transform( "", kUppercaseFirst, ". " ), + new Transform( " ", kIdentity, "(" ), + new Transform( "", kIdentity, "ful " ), + new Transform( " ", kUppercaseFirst, ". " ), + new Transform( "", kIdentity, "ive " ), + new Transform( "", kIdentity, "less " ), + new Transform( "", kUppercaseAll, "'" ), + new Transform( "", kIdentity, "est " ), + new Transform( " ", kUppercaseFirst, "." ), + new Transform( "", kUppercaseAll, "\">" ), + new Transform( " ", kIdentity, "='" ), + new Transform( "", kUppercaseFirst, "," ), + new Transform( "", kIdentity, "ize " ), + new Transform( "", kUppercaseAll, "." ), + new Transform( "\xc2\xa0", kIdentity, "" ), + new Transform( " ", kIdentity, "," ), + new Transform( "", kUppercaseFirst, "=\"" ), + new Transform( "", kUppercaseAll, "=\"" ), + new Transform( "", kIdentity, "ous " ), + new Transform( "", kUppercaseAll, ", " ), + new Transform( "", kUppercaseFirst, "='" ), + new Transform( " ", kUppercaseFirst, "," ), + new Transform( " ", kUppercaseAll, "=\"" ), + new Transform( " ", kUppercaseAll, ", " ), + new Transform( "", kUppercaseAll, "," ), + new Transform( "", kUppercaseAll, "(" ), + new Transform( "", kUppercaseAll, ". " ), + new Transform( " ", kUppercaseAll, "." ), + new Transform( "", kUppercaseAll, "='" ), + new Transform( " ", kUppercaseAll, ". " ), + new Transform( " ", kUppercaseFirst, "=\"" ), + new Transform( " ", kUppercaseAll, "='" ), + new Transform( " ", kUppercaseFirst, "='" ) +]; + +exports.kTransforms = kTransforms; +exports.kNumTransforms = kTransforms.length; + +function ToUpperCase(p, i) { + if (p[i] < 0xc0) { + if (p[i] >= 97 && p[i] <= 122) { + p[i] ^= 32; + } + return 1; + } + + /* An overly simplified uppercasing model for utf-8. */ + if (p[i] < 0xe0) { + p[i + 1] ^= 32; + return 2; + } + + /* An arbitrary transform for three byte characters. */ + p[i + 2] ^= 5; + return 3; +} + +exports.transformDictionaryWord = function(dst, idx, word, len, transform) { + var prefix = kTransforms[transform].prefix; + var suffix = kTransforms[transform].suffix; + var t = kTransforms[transform].transform; + var skip = t < kOmitFirst1 ? 0 : t - (kOmitFirst1 - 1); + var i = 0; + var start_idx = idx; + var uppercase; + + if (skip > len) { + skip = len; + } + + var prefix_pos = 0; + while (prefix_pos < prefix.length) { + dst[idx++] = prefix[prefix_pos++]; + } + + word += skip; + len -= skip; + + if (t <= kOmitLast9) { + len -= t; + } + + for (i = 0; i < len; i++) { + dst[idx++] = BrotliDictionary.dictionary[word + i]; + } + + uppercase = idx - len; + + if (t === kUppercaseFirst) { + ToUpperCase(dst, uppercase); + } else if (t === kUppercaseAll) { + while (len > 0) { + var step = ToUpperCase(dst, uppercase); + uppercase += step; + len -= step; + } + } + + var suffix_pos = 0; + while (suffix_pos < suffix.length) { + dst[idx++] = suffix[suffix_pos++]; + } + + return idx - start_idx; +} + + +/***/ }), + +/***/ 34460: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +module.exports = __webpack_require__(20980).BrotliDecompressBuffer; + + +/***/ }), + +/***/ 72908: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; +/* provided dependency */ var process = __webpack_require__(9964); + +/* eslint camelcase: "off" */ + +var assert = __webpack_require__(80182); + +var Zstream = __webpack_require__(37468); +var zlib_deflate = __webpack_require__(22925); +var zlib_inflate = __webpack_require__(2269); +var constants = __webpack_require__(81607); + +for (var key in constants) { + exports[key] = constants[key]; +} + +// zlib modes +exports.NONE = 0; +exports.DEFLATE = 1; +exports.INFLATE = 2; +exports.GZIP = 3; +exports.GUNZIP = 4; +exports.DEFLATERAW = 5; +exports.INFLATERAW = 6; +exports.UNZIP = 7; + +var GZIP_HEADER_ID1 = 0x1f; +var GZIP_HEADER_ID2 = 0x8b; + +/** + * Emulate Node's zlib C++ layer for use by the JS layer in index.js + */ +function Zlib(mode) { + if (typeof mode !== 'number' || mode < exports.DEFLATE || mode > exports.UNZIP) { + throw new TypeError('Bad argument'); + } + + this.dictionary = null; + this.err = 0; + this.flush = 0; + this.init_done = false; + this.level = 0; + this.memLevel = 0; + this.mode = mode; + this.strategy = 0; + this.windowBits = 0; + this.write_in_progress = false; + this.pending_close = false; + this.gzip_id_bytes_read = 0; +} + +Zlib.prototype.close = function () { + if (this.write_in_progress) { + this.pending_close = true; + return; + } + + this.pending_close = false; + + assert(this.init_done, 'close before init'); + assert(this.mode <= exports.UNZIP); + + if (this.mode === exports.DEFLATE || this.mode === exports.GZIP || this.mode === exports.DEFLATERAW) { + zlib_deflate.deflateEnd(this.strm); + } else if (this.mode === exports.INFLATE || this.mode === exports.GUNZIP || this.mode === exports.INFLATERAW || this.mode === exports.UNZIP) { + zlib_inflate.inflateEnd(this.strm); + } + + this.mode = exports.NONE; + + this.dictionary = null; +}; + +Zlib.prototype.write = function (flush, input, in_off, in_len, out, out_off, out_len) { + return this._write(true, flush, input, in_off, in_len, out, out_off, out_len); +}; + +Zlib.prototype.writeSync = function (flush, input, in_off, in_len, out, out_off, out_len) { + return this._write(false, flush, input, in_off, in_len, out, out_off, out_len); +}; + +Zlib.prototype._write = function (async, flush, input, in_off, in_len, out, out_off, out_len) { + assert.equal(arguments.length, 8); + + assert(this.init_done, 'write before init'); + assert(this.mode !== exports.NONE, 'already finalized'); + assert.equal(false, this.write_in_progress, 'write already in progress'); + assert.equal(false, this.pending_close, 'close is pending'); + + this.write_in_progress = true; + + assert.equal(false, flush === undefined, 'must provide flush value'); + + this.write_in_progress = true; + + if (flush !== exports.Z_NO_FLUSH && flush !== exports.Z_PARTIAL_FLUSH && flush !== exports.Z_SYNC_FLUSH && flush !== exports.Z_FULL_FLUSH && flush !== exports.Z_FINISH && flush !== exports.Z_BLOCK) { + throw new Error('Invalid flush value'); + } + + if (input == null) { + input = Buffer.alloc(0); + in_len = 0; + in_off = 0; + } + + this.strm.avail_in = in_len; + this.strm.input = input; + this.strm.next_in = in_off; + this.strm.avail_out = out_len; + this.strm.output = out; + this.strm.next_out = out_off; + this.flush = flush; + + if (!async) { + // sync version + this._process(); + + if (this._checkError()) { + return this._afterSync(); + } + return; + } + + // async version + var self = this; + process.nextTick(function () { + self._process(); + self._after(); + }); + + return this; +}; + +Zlib.prototype._afterSync = function () { + var avail_out = this.strm.avail_out; + var avail_in = this.strm.avail_in; + + this.write_in_progress = false; + + return [avail_in, avail_out]; +}; + +Zlib.prototype._process = function () { + var next_expected_header_byte = null; + + // If the avail_out is left at 0, then it means that it ran out + // of room. If there was avail_out left over, then it means + // that all of the input was consumed. + switch (this.mode) { + case exports.DEFLATE: + case exports.GZIP: + case exports.DEFLATERAW: + this.err = zlib_deflate.deflate(this.strm, this.flush); + break; + case exports.UNZIP: + if (this.strm.avail_in > 0) { + next_expected_header_byte = this.strm.next_in; + } + + switch (this.gzip_id_bytes_read) { + case 0: + if (next_expected_header_byte === null) { + break; + } + + if (this.strm.input[next_expected_header_byte] === GZIP_HEADER_ID1) { + this.gzip_id_bytes_read = 1; + next_expected_header_byte++; + + if (this.strm.avail_in === 1) { + // The only available byte was already read. + break; + } + } else { + this.mode = exports.INFLATE; + break; + } + + // fallthrough + case 1: + if (next_expected_header_byte === null) { + break; + } + + if (this.strm.input[next_expected_header_byte] === GZIP_HEADER_ID2) { + this.gzip_id_bytes_read = 2; + this.mode = exports.GUNZIP; + } else { + // There is no actual difference between INFLATE and INFLATERAW + // (after initialization). + this.mode = exports.INFLATE; + } + + break; + default: + throw new Error('invalid number of gzip magic number bytes read'); + } + + // fallthrough + case exports.INFLATE: + case exports.GUNZIP: + case exports.INFLATERAW: + this.err = zlib_inflate.inflate(this.strm, this.flush + + // If data was encoded with dictionary + );if (this.err === exports.Z_NEED_DICT && this.dictionary) { + // Load it + this.err = zlib_inflate.inflateSetDictionary(this.strm, this.dictionary); + if (this.err === exports.Z_OK) { + // And try to decode again + this.err = zlib_inflate.inflate(this.strm, this.flush); + } else if (this.err === exports.Z_DATA_ERROR) { + // Both inflateSetDictionary() and inflate() return Z_DATA_ERROR. + // Make it possible for After() to tell a bad dictionary from bad + // input. + this.err = exports.Z_NEED_DICT; + } + } + while (this.strm.avail_in > 0 && this.mode === exports.GUNZIP && this.err === exports.Z_STREAM_END && this.strm.next_in[0] !== 0x00) { + // Bytes remain in input buffer. Perhaps this is another compressed + // member in the same archive, or just trailing garbage. + // Trailing zero bytes are okay, though, since they are frequently + // used for padding. + + this.reset(); + this.err = zlib_inflate.inflate(this.strm, this.flush); + } + break; + default: + throw new Error('Unknown mode ' + this.mode); + } +}; + +Zlib.prototype._checkError = function () { + // Acceptable error states depend on the type of zlib stream. + switch (this.err) { + case exports.Z_OK: + case exports.Z_BUF_ERROR: + if (this.strm.avail_out !== 0 && this.flush === exports.Z_FINISH) { + this._error('unexpected end of file'); + return false; + } + break; + case exports.Z_STREAM_END: + // normal statuses, not fatal + break; + case exports.Z_NEED_DICT: + if (this.dictionary == null) { + this._error('Missing dictionary'); + } else { + this._error('Bad dictionary'); + } + return false; + default: + // something else. + this._error('Zlib error'); + return false; + } + + return true; +}; + +Zlib.prototype._after = function () { + if (!this._checkError()) { + return; + } + + var avail_out = this.strm.avail_out; + var avail_in = this.strm.avail_in; + + this.write_in_progress = false; + + // call the write() cb + this.callback(avail_in, avail_out); + + if (this.pending_close) { + this.close(); + } +}; + +Zlib.prototype._error = function (message) { + if (this.strm.msg) { + message = this.strm.msg; + } + this.onerror(message, this.err + + // no hope of rescue. + );this.write_in_progress = false; + if (this.pending_close) { + this.close(); + } +}; + +Zlib.prototype.init = function (windowBits, level, memLevel, strategy, dictionary) { + assert(arguments.length === 4 || arguments.length === 5, 'init(windowBits, level, memLevel, strategy, [dictionary])'); + + assert(windowBits >= 8 && windowBits <= 15, 'invalid windowBits'); + assert(level >= -1 && level <= 9, 'invalid compression level'); + + assert(memLevel >= 1 && memLevel <= 9, 'invalid memlevel'); + + assert(strategy === exports.Z_FILTERED || strategy === exports.Z_HUFFMAN_ONLY || strategy === exports.Z_RLE || strategy === exports.Z_FIXED || strategy === exports.Z_DEFAULT_STRATEGY, 'invalid strategy'); + + this._init(level, windowBits, memLevel, strategy, dictionary); + this._setDictionary(); +}; + +Zlib.prototype.params = function () { + throw new Error('deflateParams Not supported'); +}; + +Zlib.prototype.reset = function () { + this._reset(); + this._setDictionary(); +}; + +Zlib.prototype._init = function (level, windowBits, memLevel, strategy, dictionary) { + this.level = level; + this.windowBits = windowBits; + this.memLevel = memLevel; + this.strategy = strategy; + + this.flush = exports.Z_NO_FLUSH; + + this.err = exports.Z_OK; + + if (this.mode === exports.GZIP || this.mode === exports.GUNZIP) { + this.windowBits += 16; + } + + if (this.mode === exports.UNZIP) { + this.windowBits += 32; + } + + if (this.mode === exports.DEFLATERAW || this.mode === exports.INFLATERAW) { + this.windowBits = -1 * this.windowBits; + } + + this.strm = new Zstream(); + + switch (this.mode) { + case exports.DEFLATE: + case exports.GZIP: + case exports.DEFLATERAW: + this.err = zlib_deflate.deflateInit2(this.strm, this.level, exports.Z_DEFLATED, this.windowBits, this.memLevel, this.strategy); + break; + case exports.INFLATE: + case exports.GUNZIP: + case exports.INFLATERAW: + case exports.UNZIP: + this.err = zlib_inflate.inflateInit2(this.strm, this.windowBits); + break; + default: + throw new Error('Unknown mode ' + this.mode); + } + + if (this.err !== exports.Z_OK) { + this._error('Init error'); + } + + this.dictionary = dictionary; + + this.write_in_progress = false; + this.init_done = true; +}; + +Zlib.prototype._setDictionary = function () { + if (this.dictionary == null) { + return; + } + + this.err = exports.Z_OK; + + switch (this.mode) { + case exports.DEFLATE: + case exports.DEFLATERAW: + this.err = zlib_deflate.deflateSetDictionary(this.strm, this.dictionary); + break; + default: + break; + } + + if (this.err !== exports.Z_OK) { + this._error('Failed to set dictionary'); + } +}; + +Zlib.prototype._reset = function () { + this.err = exports.Z_OK; + + switch (this.mode) { + case exports.DEFLATE: + case exports.DEFLATERAW: + case exports.GZIP: + this.err = zlib_deflate.deflateReset(this.strm); + break; + case exports.INFLATE: + case exports.INFLATERAW: + case exports.GUNZIP: + this.err = zlib_inflate.inflateReset(this.strm); + break; + default: + break; + } + + if (this.err !== exports.Z_OK) { + this._error('Failed to reset stream'); + } +}; + +exports.Zlib = Zlib; + +/***/ }), + +/***/ 6729: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + +"use strict"; +/* provided dependency */ var process = __webpack_require__(9964); + + +var Buffer = (__webpack_require__(14598).Buffer); +var Transform = (__webpack_require__(9760).Transform); +var binding = __webpack_require__(72908); +var util = __webpack_require__(7187); +var assert = (__webpack_require__(80182).ok); +var kMaxLength = (__webpack_require__(14598).kMaxLength); +var kRangeErrorMessage = 'Cannot create final Buffer. It would be larger ' + 'than 0x' + kMaxLength.toString(16) + ' bytes'; + +// zlib doesn't provide these, so kludge them in following the same +// const naming scheme zlib uses. +binding.Z_MIN_WINDOWBITS = 8; +binding.Z_MAX_WINDOWBITS = 15; +binding.Z_DEFAULT_WINDOWBITS = 15; + +// fewer than 64 bytes per chunk is stupid. +// technically it could work with as few as 8, but even 64 bytes +// is absurdly low. Usually a MB or more is best. +binding.Z_MIN_CHUNK = 64; +binding.Z_MAX_CHUNK = Infinity; +binding.Z_DEFAULT_CHUNK = 16 * 1024; + +binding.Z_MIN_MEMLEVEL = 1; +binding.Z_MAX_MEMLEVEL = 9; +binding.Z_DEFAULT_MEMLEVEL = 8; + +binding.Z_MIN_LEVEL = -1; +binding.Z_MAX_LEVEL = 9; +binding.Z_DEFAULT_LEVEL = binding.Z_DEFAULT_COMPRESSION; + +// expose all the zlib constants +var bkeys = Object.keys(binding); +for (var bk = 0; bk < bkeys.length; bk++) { + var bkey = bkeys[bk]; + if (bkey.match(/^Z/)) { + Object.defineProperty(exports, bkey, { + enumerable: true, value: binding[bkey], writable: false + }); + } +} + +// translation table for return codes. +var codes = { + Z_OK: binding.Z_OK, + Z_STREAM_END: binding.Z_STREAM_END, + Z_NEED_DICT: binding.Z_NEED_DICT, + Z_ERRNO: binding.Z_ERRNO, + Z_STREAM_ERROR: binding.Z_STREAM_ERROR, + Z_DATA_ERROR: binding.Z_DATA_ERROR, + Z_MEM_ERROR: binding.Z_MEM_ERROR, + Z_BUF_ERROR: binding.Z_BUF_ERROR, + Z_VERSION_ERROR: binding.Z_VERSION_ERROR +}; + +var ckeys = Object.keys(codes); +for (var ck = 0; ck < ckeys.length; ck++) { + var ckey = ckeys[ck]; + codes[codes[ckey]] = ckey; +} + +Object.defineProperty(exports, "codes", ({ + enumerable: true, value: Object.freeze(codes), writable: false +})); + +exports.Deflate = Deflate; +exports.Inflate = Inflate; +exports.Gzip = Gzip; +exports.Gunzip = Gunzip; +exports.DeflateRaw = DeflateRaw; +exports.InflateRaw = InflateRaw; +exports.Unzip = Unzip; + +exports.createDeflate = function (o) { + return new Deflate(o); +}; + +exports.createInflate = function (o) { + return new Inflate(o); +}; + +exports.createDeflateRaw = function (o) { + return new DeflateRaw(o); +}; + +exports.createInflateRaw = function (o) { + return new InflateRaw(o); +}; + +exports.createGzip = function (o) { + return new Gzip(o); +}; + +exports.createGunzip = function (o) { + return new Gunzip(o); +}; + +exports.createUnzip = function (o) { + return new Unzip(o); +}; + +// Convenience methods. +// compress/decompress a string or buffer in one step. +exports.deflate = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new Deflate(opts), buffer, callback); +}; + +exports.deflateSync = function (buffer, opts) { + return zlibBufferSync(new Deflate(opts), buffer); +}; + +exports.gzip = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new Gzip(opts), buffer, callback); +}; + +exports.gzipSync = function (buffer, opts) { + return zlibBufferSync(new Gzip(opts), buffer); +}; + +exports.deflateRaw = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new DeflateRaw(opts), buffer, callback); +}; + +exports.deflateRawSync = function (buffer, opts) { + return zlibBufferSync(new DeflateRaw(opts), buffer); +}; + +exports.unzip = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new Unzip(opts), buffer, callback); +}; + +exports.unzipSync = function (buffer, opts) { + return zlibBufferSync(new Unzip(opts), buffer); +}; + +exports.inflate = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new Inflate(opts), buffer, callback); +}; + +exports.inflateSync = function (buffer, opts) { + return zlibBufferSync(new Inflate(opts), buffer); +}; + +exports.gunzip = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new Gunzip(opts), buffer, callback); +}; + +exports.gunzipSync = function (buffer, opts) { + return zlibBufferSync(new Gunzip(opts), buffer); +}; + +exports.inflateRaw = function (buffer, opts, callback) { + if (typeof opts === 'function') { + callback = opts; + opts = {}; + } + return zlibBuffer(new InflateRaw(opts), buffer, callback); +}; + +exports.inflateRawSync = function (buffer, opts) { + return zlibBufferSync(new InflateRaw(opts), buffer); +}; + +function zlibBuffer(engine, buffer, callback) { + var buffers = []; + var nread = 0; + + engine.on('error', onError); + engine.on('end', onEnd); + + engine.end(buffer); + flow(); + + function flow() { + var chunk; + while (null !== (chunk = engine.read())) { + buffers.push(chunk); + nread += chunk.length; + } + engine.once('readable', flow); + } + + function onError(err) { + engine.removeListener('end', onEnd); + engine.removeListener('readable', flow); + callback(err); + } + + function onEnd() { + var buf; + var err = null; + + if (nread >= kMaxLength) { + err = new RangeError(kRangeErrorMessage); + } else { + buf = Buffer.concat(buffers, nread); + } + + buffers = []; + engine.close(); + callback(err, buf); + } +} + +function zlibBufferSync(engine, buffer) { + if (typeof buffer === 'string') buffer = Buffer.from(buffer); + + if (!Buffer.isBuffer(buffer)) throw new TypeError('Not a string or buffer'); + + var flushFlag = engine._finishFlushFlag; + + return engine._processChunk(buffer, flushFlag); +} + +// generic zlib +// minimal 2-byte header +function Deflate(opts) { + if (!(this instanceof Deflate)) return new Deflate(opts); + Zlib.call(this, opts, binding.DEFLATE); +} + +function Inflate(opts) { + if (!(this instanceof Inflate)) return new Inflate(opts); + Zlib.call(this, opts, binding.INFLATE); +} + +// gzip - bigger header, same deflate compression +function Gzip(opts) { + if (!(this instanceof Gzip)) return new Gzip(opts); + Zlib.call(this, opts, binding.GZIP); +} + +function Gunzip(opts) { + if (!(this instanceof Gunzip)) return new Gunzip(opts); + Zlib.call(this, opts, binding.GUNZIP); +} + +// raw - no header +function DeflateRaw(opts) { + if (!(this instanceof DeflateRaw)) return new DeflateRaw(opts); + Zlib.call(this, opts, binding.DEFLATERAW); +} + +function InflateRaw(opts) { + if (!(this instanceof InflateRaw)) return new InflateRaw(opts); + Zlib.call(this, opts, binding.INFLATERAW); +} + +// auto-detect header. +function Unzip(opts) { + if (!(this instanceof Unzip)) return new Unzip(opts); + Zlib.call(this, opts, binding.UNZIP); +} + +function isValidFlushFlag(flag) { + return flag === binding.Z_NO_FLUSH || flag === binding.Z_PARTIAL_FLUSH || flag === binding.Z_SYNC_FLUSH || flag === binding.Z_FULL_FLUSH || flag === binding.Z_FINISH || flag === binding.Z_BLOCK; +} + +// the Zlib class they all inherit from +// This thing manages the queue of requests, and returns +// true or false if there is anything in the queue when +// you call the .write() method. + +function Zlib(opts, mode) { + var _this = this; + + this._opts = opts = opts || {}; + this._chunkSize = opts.chunkSize || exports.Z_DEFAULT_CHUNK; + + Transform.call(this, opts); + + if (opts.flush && !isValidFlushFlag(opts.flush)) { + throw new Error('Invalid flush flag: ' + opts.flush); + } + if (opts.finishFlush && !isValidFlushFlag(opts.finishFlush)) { + throw new Error('Invalid flush flag: ' + opts.finishFlush); + } + + this._flushFlag = opts.flush || binding.Z_NO_FLUSH; + this._finishFlushFlag = typeof opts.finishFlush !== 'undefined' ? opts.finishFlush : binding.Z_FINISH; + + if (opts.chunkSize) { + if (opts.chunkSize < exports.Z_MIN_CHUNK || opts.chunkSize > exports.Z_MAX_CHUNK) { + throw new Error('Invalid chunk size: ' + opts.chunkSize); + } + } + + if (opts.windowBits) { + if (opts.windowBits < exports.Z_MIN_WINDOWBITS || opts.windowBits > exports.Z_MAX_WINDOWBITS) { + throw new Error('Invalid windowBits: ' + opts.windowBits); + } + } + + if (opts.level) { + if (opts.level < exports.Z_MIN_LEVEL || opts.level > exports.Z_MAX_LEVEL) { + throw new Error('Invalid compression level: ' + opts.level); + } + } + + if (opts.memLevel) { + if (opts.memLevel < exports.Z_MIN_MEMLEVEL || opts.memLevel > exports.Z_MAX_MEMLEVEL) { + throw new Error('Invalid memLevel: ' + opts.memLevel); + } + } + + if (opts.strategy) { + if (opts.strategy != exports.Z_FILTERED && opts.strategy != exports.Z_HUFFMAN_ONLY && opts.strategy != exports.Z_RLE && opts.strategy != exports.Z_FIXED && opts.strategy != exports.Z_DEFAULT_STRATEGY) { + throw new Error('Invalid strategy: ' + opts.strategy); + } + } + + if (opts.dictionary) { + if (!Buffer.isBuffer(opts.dictionary)) { + throw new Error('Invalid dictionary: it should be a Buffer instance'); + } + } + + this._handle = new binding.Zlib(mode); + + var self = this; + this._hadError = false; + this._handle.onerror = function (message, errno) { + // there is no way to cleanly recover. + // continuing only obscures problems. + _close(self); + self._hadError = true; + + var error = new Error(message); + error.errno = errno; + error.code = exports.codes[errno]; + self.emit('error', error); + }; + + var level = exports.Z_DEFAULT_COMPRESSION; + if (typeof opts.level === 'number') level = opts.level; + + var strategy = exports.Z_DEFAULT_STRATEGY; + if (typeof opts.strategy === 'number') strategy = opts.strategy; + + this._handle.init(opts.windowBits || exports.Z_DEFAULT_WINDOWBITS, level, opts.memLevel || exports.Z_DEFAULT_MEMLEVEL, strategy, opts.dictionary); + + this._buffer = Buffer.allocUnsafe(this._chunkSize); + this._offset = 0; + this._level = level; + this._strategy = strategy; + + this.once('end', this.close); + + Object.defineProperty(this, '_closed', { + get: function () { + return !_this._handle; + }, + configurable: true, + enumerable: true + }); +} + +util.inherits(Zlib, Transform); + +Zlib.prototype.params = function (level, strategy, callback) { + if (level < exports.Z_MIN_LEVEL || level > exports.Z_MAX_LEVEL) { + throw new RangeError('Invalid compression level: ' + level); + } + if (strategy != exports.Z_FILTERED && strategy != exports.Z_HUFFMAN_ONLY && strategy != exports.Z_RLE && strategy != exports.Z_FIXED && strategy != exports.Z_DEFAULT_STRATEGY) { + throw new TypeError('Invalid strategy: ' + strategy); + } + + if (this._level !== level || this._strategy !== strategy) { + var self = this; + this.flush(binding.Z_SYNC_FLUSH, function () { + assert(self._handle, 'zlib binding closed'); + self._handle.params(level, strategy); + if (!self._hadError) { + self._level = level; + self._strategy = strategy; + if (callback) callback(); + } + }); + } else { + process.nextTick(callback); + } +}; + +Zlib.prototype.reset = function () { + assert(this._handle, 'zlib binding closed'); + return this._handle.reset(); +}; + +// This is the _flush function called by the transform class, +// internally, when the last chunk has been written. +Zlib.prototype._flush = function (callback) { + this._transform(Buffer.alloc(0), '', callback); +}; + +Zlib.prototype.flush = function (kind, callback) { + var _this2 = this; + + var ws = this._writableState; + + if (typeof kind === 'function' || kind === undefined && !callback) { + callback = kind; + kind = binding.Z_FULL_FLUSH; + } + + if (ws.ended) { + if (callback) process.nextTick(callback); + } else if (ws.ending) { + if (callback) this.once('end', callback); + } else if (ws.needDrain) { + if (callback) { + this.once('drain', function () { + return _this2.flush(kind, callback); + }); + } + } else { + this._flushFlag = kind; + this.write(Buffer.alloc(0), '', callback); + } +}; + +Zlib.prototype.close = function (callback) { + _close(this, callback); + process.nextTick(emitCloseNT, this); +}; + +function _close(engine, callback) { + if (callback) process.nextTick(callback); + + // Caller may invoke .close after a zlib error (which will null _handle). + if (!engine._handle) return; + + engine._handle.close(); + engine._handle = null; +} + +function emitCloseNT(self) { + self.emit('close'); +} + +Zlib.prototype._transform = function (chunk, encoding, cb) { + var flushFlag; + var ws = this._writableState; + var ending = ws.ending || ws.ended; + var last = ending && (!chunk || ws.length === chunk.length); + + if (chunk !== null && !Buffer.isBuffer(chunk)) return cb(new Error('invalid input')); + + if (!this._handle) return cb(new Error('zlib binding closed')); + + // If it's the last chunk, or a final flush, we use the Z_FINISH flush flag + // (or whatever flag was provided using opts.finishFlush). + // If it's explicitly flushing at some other time, then we use + // Z_FULL_FLUSH. Otherwise, use Z_NO_FLUSH for maximum compression + // goodness. + if (last) flushFlag = this._finishFlushFlag;else { + flushFlag = this._flushFlag; + // once we've flushed the last of the queue, stop flushing and + // go back to the normal behavior. + if (chunk.length >= ws.length) { + this._flushFlag = this._opts.flush || binding.Z_NO_FLUSH; + } + } + + this._processChunk(chunk, flushFlag, cb); +}; + +Zlib.prototype._processChunk = function (chunk, flushFlag, cb) { + var availInBefore = chunk && chunk.length; + var availOutBefore = this._chunkSize - this._offset; + var inOff = 0; + + var self = this; + + var async = typeof cb === 'function'; + + if (!async) { + var buffers = []; + var nread = 0; + + var error; + this.on('error', function (er) { + error = er; + }); + + assert(this._handle, 'zlib binding closed'); + do { + var res = this._handle.writeSync(flushFlag, chunk, // in + inOff, // in_off + availInBefore, // in_len + this._buffer, // out + this._offset, //out_off + availOutBefore); // out_len + } while (!this._hadError && callback(res[0], res[1])); + + if (this._hadError) { + throw error; + } + + if (nread >= kMaxLength) { + _close(this); + throw new RangeError(kRangeErrorMessage); + } + + var buf = Buffer.concat(buffers, nread); + _close(this); + + return buf; + } + + assert(this._handle, 'zlib binding closed'); + var req = this._handle.write(flushFlag, chunk, // in + inOff, // in_off + availInBefore, // in_len + this._buffer, // out + this._offset, //out_off + availOutBefore); // out_len + + req.buffer = chunk; + req.callback = callback; + + function callback(availInAfter, availOutAfter) { + // When the callback is used in an async write, the callback's + // context is the `req` object that was created. The req object + // is === this._handle, and that's why it's important to null + // out the values after they are done being used. `this._handle` + // can stay in memory longer than the callback and buffer are needed. + if (this) { + this.buffer = null; + this.callback = null; + } + + if (self._hadError) return; + + var have = availOutBefore - availOutAfter; + assert(have >= 0, 'have should not go down'); + + if (have > 0) { + var out = self._buffer.slice(self._offset, self._offset + have); + self._offset += have; + // serve some output to the consumer. + if (async) { + self.push(out); + } else { + buffers.push(out); + nread += out.length; + } + } + + // exhausted the output buffer, or used all the input create a new one. + if (availOutAfter === 0 || self._offset >= self._chunkSize) { + availOutBefore = self._chunkSize; + self._offset = 0; + self._buffer = Buffer.allocUnsafe(self._chunkSize); + } + + if (availOutAfter === 0) { + // Not actually done. Need to reprocess. + // Also, update the availInBefore to the availInAfter value, + // so that if we have to hit it a third (fourth, etc.) time, + // it'll have the correct byte counts. + inOff += availInBefore - availInAfter; + availInBefore = availInAfter; + + if (!async) return true; + + var newReq = self._handle.write(flushFlag, chunk, inOff, availInBefore, self._buffer, self._offset, self._chunkSize); + newReq.callback = callback; // this same function + newReq.buffer = chunk; + return; + } + + if (!async) return false; + + // finished with the chunk. + cb(); + } +}; + +util.inherits(Deflate, Zlib); +util.inherits(Inflate, Zlib); +util.inherits(Gzip, Zlib); +util.inherits(Gunzip, Zlib); +util.inherits(DeflateRaw, Zlib); +util.inherits(InflateRaw, Zlib); +util.inherits(Unzip, Zlib); + +/***/ }), + +/***/ 17802: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var bind = __webpack_require__(5049); + +var $apply = __webpack_require__(73036); +var $call = __webpack_require__(10078); +var $reflectApply = __webpack_require__(61909); + +/** @type {import('./actualApply')} */ +module.exports = $reflectApply || bind.call($call, $apply); + + +/***/ }), + +/***/ 28619: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var bind = __webpack_require__(5049); +var $apply = __webpack_require__(73036); +var actualApply = __webpack_require__(17802); + +/** @type {import('./applyBind')} */ +module.exports = function applyBind() { + return actualApply(bind, $apply, arguments); +}; + + +/***/ }), + +/***/ 73036: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./functionApply')} */ +module.exports = Function.prototype.apply; + + +/***/ }), + +/***/ 10078: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./functionCall')} */ +module.exports = Function.prototype.call; + + +/***/ }), + +/***/ 36688: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var bind = __webpack_require__(5049); +var $TypeError = __webpack_require__(96785); + +var $call = __webpack_require__(10078); +var $actualApply = __webpack_require__(17802); + +/** @type {(args: [Function, thisArg?: unknown, ...args: unknown[]]) => Function} TODO FIXME, find a way to use import('.') */ +module.exports = function callBindBasic(args) { + if (args.length < 1 || typeof args[0] !== 'function') { + throw new $TypeError('a function is required'); + } + return $actualApply(bind, $call, args); +}; + + +/***/ }), + +/***/ 61909: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./reflectApply')} */ +module.exports = typeof Reflect !== 'undefined' && Reflect && Reflect.apply; + + +/***/ }), + +/***/ 67913: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var GetIntrinsic = __webpack_require__(28651); + +var callBind = __webpack_require__(26601); + +var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf')); + +module.exports = function callBoundIntrinsic(name, allowMissing) { + var intrinsic = GetIntrinsic(name, !!allowMissing); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { + return callBind(intrinsic); + } + return intrinsic; +}; + + +/***/ }), + +/***/ 26601: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var setFunctionLength = __webpack_require__(86255); + +var $defineProperty = __webpack_require__(56649); + +var callBindBasic = __webpack_require__(36688); +var applyBind = __webpack_require__(28619); + +module.exports = function callBind(originalFunction) { + var func = callBindBasic(arguments); + var adjustedLength = originalFunction.length - (arguments.length - 1); + return setFunctionLength( + func, + 1 + (adjustedLength > 0 ? adjustedLength : 0), + true + ); +}; + +if ($defineProperty) { + $defineProperty(module.exports, 'apply', { value: applyBind }); +} else { + module.exports.apply = applyBind; +} + + +/***/ }), + +/***/ 22774: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var GetIntrinsic = __webpack_require__(28651); + +var callBindBasic = __webpack_require__(36688); + +/** @type {(thisArg: string, searchString: string, position?: number) => number} */ +var $indexOf = callBindBasic([GetIntrinsic('%String.prototype.indexOf%')]); + +/** @type {import('.')} */ +module.exports = function callBoundIntrinsic(name, allowMissing) { + /* eslint no-extra-parens: 0 */ + + var intrinsic = /** @type {(this: unknown, ...args: unknown[]) => unknown} */ (GetIntrinsic(name, !!allowMissing)); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { + return callBindBasic(/** @type {const} */ ([intrinsic])); + } + return intrinsic; +}; + + +/***/ }), + +/***/ 41613: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; +var clone = (function() { +'use strict'; + +/** + * Clones (copies) an Object using deep copying. + * + * This function supports circular references by default, but if you are certain + * there are no circular references in your object, you can save some CPU time + * by calling clone(obj, false). + * + * Caution: if `circular` is false and `parent` contains circular references, + * your program may enter an infinite loop and crash. + * + * @param `parent` - the object to be cloned + * @param `circular` - set to true if the object to be cloned may contain + * circular references. (optional - true by default) + * @param `depth` - set to a number if the object is only to be cloned to + * a particular depth. (optional - defaults to Infinity) + * @param `prototype` - sets the prototype to be used when cloning an object. + * (optional - defaults to parent prototype). +*/ +function clone(parent, circular, depth, prototype) { + var filter; + if (typeof circular === 'object') { + depth = circular.depth; + prototype = circular.prototype; + filter = circular.filter; + circular = circular.circular + } + // maintain two arrays for circular references, where corresponding parents + // and children have the same index + var allParents = []; + var allChildren = []; + + var useBuffer = typeof Buffer != 'undefined'; + + if (typeof circular == 'undefined') + circular = true; + + if (typeof depth == 'undefined') + depth = Infinity; + + // recurse this function so we don't reset allParents and allChildren + function _clone(parent, depth) { + // cloning null always returns null + if (parent === null) + return null; + + if (depth == 0) + return parent; + + var child; + var proto; + if (typeof parent != 'object') { + return parent; + } + + if (clone.__isArray(parent)) { + child = []; + } else if (clone.__isRegExp(parent)) { + child = new RegExp(parent.source, __getRegExpFlags(parent)); + if (parent.lastIndex) child.lastIndex = parent.lastIndex; + } else if (clone.__isDate(parent)) { + child = new Date(parent.getTime()); + } else if (useBuffer && Buffer.isBuffer(parent)) { + if (Buffer.allocUnsafe) { + // Node.js >= 4.5.0 + child = Buffer.allocUnsafe(parent.length); + } else { + // Older Node.js versions + child = new Buffer(parent.length); + } + parent.copy(child); + return child; + } else { + if (typeof prototype == 'undefined') { + proto = Object.getPrototypeOf(parent); + child = Object.create(proto); + } + else { + child = Object.create(prototype); + proto = prototype; + } + } + + if (circular) { + var index = allParents.indexOf(parent); + + if (index != -1) { + return allChildren[index]; + } + allParents.push(parent); + allChildren.push(child); + } + + for (var i in parent) { + var attrs; + if (proto) { + attrs = Object.getOwnPropertyDescriptor(proto, i); + } + + if (attrs && attrs.set == null) { + continue; + } + child[i] = _clone(parent[i], depth - 1); + } + + return child; + } + + return _clone(parent, depth); +} + +/** + * Simple flat clone using prototype, accepts only objects, usefull for property + * override on FLAT configuration object (no nested props). + * + * USE WITH CAUTION! This may not behave as you wish if you do not know how this + * works. + */ +clone.clonePrototype = function clonePrototype(parent) { + if (parent === null) + return null; + + var c = function () {}; + c.prototype = parent; + return new c(); +}; + +// private utility functions + +function __objToStr(o) { + return Object.prototype.toString.call(o); +}; +clone.__objToStr = __objToStr; + +function __isDate(o) { + return typeof o === 'object' && __objToStr(o) === '[object Date]'; +}; +clone.__isDate = __isDate; + +function __isArray(o) { + return typeof o === 'object' && __objToStr(o) === '[object Array]'; +}; +clone.__isArray = __isArray; + +function __isRegExp(o) { + return typeof o === 'object' && __objToStr(o) === '[object RegExp]'; +}; +clone.__isRegExp = __isRegExp; + +function __getRegExpFlags(re) { + var flags = ''; + if (re.global) flags += 'g'; + if (re.ignoreCase) flags += 'i'; + if (re.multiline) flags += 'm'; + return flags; +}; +clone.__getRegExpFlags = __getRegExpFlags; + +return clone; +})(); + +if ( true && module.exports) { + module.exports = clone; +} + + +/***/ }), + +/***/ 83043: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +__webpack_require__(59883); +var path = __webpack_require__(11206); + +module.exports = path.Object.values; + + +/***/ }), + +/***/ 42075: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +__webpack_require__(94910); +__webpack_require__(81755); +__webpack_require__(14032); +__webpack_require__(68067); +__webpack_require__(77074); +__webpack_require__(44455); +__webpack_require__(80986); +__webpack_require__(58281); +var path = __webpack_require__(11206); + +module.exports = path.Promise; + + +/***/ }), + +/***/ 98168: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var parent = __webpack_require__(90780); +__webpack_require__(84151); +// TODO: Remove from `core-js@4` +__webpack_require__(98443); +__webpack_require__(49261); +__webpack_require__(67858); + +module.exports = parent; + + +/***/ }), + +/***/ 32631: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isCallable = __webpack_require__(94578); +var tryToString = __webpack_require__(68664); + +var TypeError = global.TypeError; + +// `Assert: IsCallable(argument) is true` +module.exports = function (argument) { + if (isCallable(argument)) return argument; + throw TypeError(tryToString(argument) + ' is not a function'); +}; + + +/***/ }), + +/***/ 69075: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isConstructor = __webpack_require__(20884); +var tryToString = __webpack_require__(68664); + +var TypeError = global.TypeError; + +// `Assert: IsConstructor(argument) is true` +module.exports = function (argument) { + if (isConstructor(argument)) return argument; + throw TypeError(tryToString(argument) + ' is not a constructor'); +}; + + +/***/ }), + +/***/ 58659: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isCallable = __webpack_require__(94578); + +var String = global.String; +var TypeError = global.TypeError; + +module.exports = function (argument) { + if (typeof argument == 'object' || isCallable(argument)) return argument; + throw TypeError("Can't set " + String(argument) + ' as a prototype'); +}; + + +/***/ }), + +/***/ 71156: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var wellKnownSymbol = __webpack_require__(38688); +var create = __webpack_require__(10819); +var definePropertyModule = __webpack_require__(95892); + +var UNSCOPABLES = wellKnownSymbol('unscopables'); +var ArrayPrototype = Array.prototype; + +// Array.prototype[@@unscopables] +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +if (ArrayPrototype[UNSCOPABLES] == undefined) { + definePropertyModule.f(ArrayPrototype, UNSCOPABLES, { + configurable: true, + value: create(null) + }); +} + +// add a key to Array.prototype[@@unscopables] +module.exports = function (key) { + ArrayPrototype[UNSCOPABLES][key] = true; +}; + + +/***/ }), + +/***/ 36352: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var charAt = (__webpack_require__(69510).charAt); + +// `AdvanceStringIndex` abstract operation +// https://tc39.es/ecma262/#sec-advancestringindex +module.exports = function (S, index, unicode) { + return index + (unicode ? charAt(S, index).length : 1); +}; + + +/***/ }), + +/***/ 2868: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isPrototypeOf = __webpack_require__(70176); + +var TypeError = global.TypeError; + +module.exports = function (it, Prototype) { + if (isPrototypeOf(Prototype, it)) return it; + throw TypeError('Incorrect invocation'); +}; + + +/***/ }), + +/***/ 34984: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isObject = __webpack_require__(24517); + +var String = global.String; +var TypeError = global.TypeError; + +// `Assert: Type(argument) is Object` +module.exports = function (argument) { + if (isObject(argument)) return argument; + throw TypeError(String(argument) + ' is not an object'); +}; + + +/***/ }), + +/***/ 92642: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var toObject = __webpack_require__(43162); +var toAbsoluteIndex = __webpack_require__(74841); +var lengthOfArrayLike = __webpack_require__(45495); + +var min = Math.min; + +// `Array.prototype.copyWithin` method implementation +// https://tc39.es/ecma262/#sec-array.prototype.copywithin +// eslint-disable-next-line es/no-array-prototype-copywithin -- safe +module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) { + var O = toObject(this); + var len = lengthOfArrayLike(O); + var to = toAbsoluteIndex(target, len); + var from = toAbsoluteIndex(start, len); + var end = arguments.length > 2 ? arguments[2] : undefined; + var count = min((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to); + var inc = 1; + if (from < to && to < from + count) { + inc = -1; + from += count - 1; + to += count - 1; + } + while (count-- > 0) { + if (from in O) O[to] = O[from]; + else delete O[to]; + to += inc; + from += inc; + } return O; +}; + + +/***/ }), + +/***/ 72864: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var toObject = __webpack_require__(43162); +var toAbsoluteIndex = __webpack_require__(74841); +var lengthOfArrayLike = __webpack_require__(45495); + +// `Array.prototype.fill` method implementation +// https://tc39.es/ecma262/#sec-array.prototype.fill +module.exports = function fill(value /* , start = 0, end = @length */) { + var O = toObject(this); + var length = lengthOfArrayLike(O); + var argumentsLength = arguments.length; + var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length); + var end = argumentsLength > 2 ? arguments[2] : undefined; + var endPos = end === undefined ? length : toAbsoluteIndex(end, length); + while (endPos > index) O[index++] = value; + return O; +}; + + +/***/ }), + +/***/ 82938: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $forEach = (__webpack_require__(91102).forEach); +var arrayMethodIsStrict = __webpack_require__(81007); + +var STRICT_METHOD = arrayMethodIsStrict('forEach'); + +// `Array.prototype.forEach` method implementation +// https://tc39.es/ecma262/#sec-array.prototype.foreach +module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) { + return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +// eslint-disable-next-line es/no-array-prototype-foreach -- safe +} : [].forEach; + + +/***/ }), + +/***/ 34269: +/***/ (function(module) { + +module.exports = function (Constructor, list) { + var index = 0; + var length = list.length; + var result = new Constructor(length); + while (length > index) result[index] = list[index++]; + return result; +}; + + +/***/ }), + +/***/ 95717: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var global = __webpack_require__(32010); +var bind = __webpack_require__(25567); +var call = __webpack_require__(2834); +var toObject = __webpack_require__(43162); +var callWithSafeIterationClosing = __webpack_require__(97738); +var isArrayIteratorMethod = __webpack_require__(89564); +var isConstructor = __webpack_require__(20884); +var lengthOfArrayLike = __webpack_require__(45495); +var createProperty = __webpack_require__(38639); +var getIterator = __webpack_require__(15892); +var getIteratorMethod = __webpack_require__(13872); + +var Array = global.Array; + +// `Array.from` method implementation +// https://tc39.es/ecma262/#sec-array.from +module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) { + var O = toObject(arrayLike); + var IS_CONSTRUCTOR = isConstructor(this); + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined); + var iteratorMethod = getIteratorMethod(O); + var index = 0; + var length, result, step, iterator, next, value; + // if the target is not iterable or it's an array with the default iterator - use a simple case + if (iteratorMethod && !(this == Array && isArrayIteratorMethod(iteratorMethod))) { + iterator = getIterator(O, iteratorMethod); + next = iterator.next; + result = IS_CONSTRUCTOR ? new this() : []; + for (;!(step = call(next, iterator)).done; index++) { + value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value; + createProperty(result, index, value); + } + } else { + length = lengthOfArrayLike(O); + result = IS_CONSTRUCTOR ? new this(length) : Array(length); + for (;length > index; index++) { + value = mapping ? mapfn(O[index], index) : O[index]; + createProperty(result, index, value); + } + } + result.length = index; + return result; +}; + + +/***/ }), + +/***/ 12636: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var toIndexedObject = __webpack_require__(98086); +var toAbsoluteIndex = __webpack_require__(74841); +var lengthOfArrayLike = __webpack_require__(45495); + +// `Array.prototype.{ indexOf, includes }` methods implementation +var createMethod = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = lengthOfArrayLike(O); + var index = toAbsoluteIndex(fromIndex, length); + var value; + // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare -- NaN check + if (IS_INCLUDES && el != el) while (length > index) { + value = O[index++]; + // eslint-disable-next-line no-self-compare -- NaN check + if (value != value) return true; + // Array#indexOf ignores holes, Array#includes - not + } else for (;length > index; index++) { + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; + } return !IS_INCLUDES && -1; + }; +}; + +module.exports = { + // `Array.prototype.includes` method + // https://tc39.es/ecma262/#sec-array.prototype.includes + includes: createMethod(true), + // `Array.prototype.indexOf` method + // https://tc39.es/ecma262/#sec-array.prototype.indexof + indexOf: createMethod(false) +}; + + +/***/ }), + +/***/ 91102: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var bind = __webpack_require__(25567); +var uncurryThis = __webpack_require__(38347); +var IndexedObject = __webpack_require__(7514); +var toObject = __webpack_require__(43162); +var lengthOfArrayLike = __webpack_require__(45495); +var arraySpeciesCreate = __webpack_require__(45744); + +var push = uncurryThis([].push); + +// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation +var createMethod = function (TYPE) { + var IS_MAP = TYPE == 1; + var IS_FILTER = TYPE == 2; + var IS_SOME = TYPE == 3; + var IS_EVERY = TYPE == 4; + var IS_FIND_INDEX = TYPE == 6; + var IS_FILTER_REJECT = TYPE == 7; + var NO_HOLES = TYPE == 5 || IS_FIND_INDEX; + return function ($this, callbackfn, that, specificCreate) { + var O = toObject($this); + var self = IndexedObject(O); + var boundFunction = bind(callbackfn, that); + var length = lengthOfArrayLike(self); + var index = 0; + var create = specificCreate || arraySpeciesCreate; + var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined; + var value, result; + for (;length > index; index++) if (NO_HOLES || index in self) { + value = self[index]; + result = boundFunction(value, index, O); + if (TYPE) { + if (IS_MAP) target[index] = result; // map + else if (result) switch (TYPE) { + case 3: return true; // some + case 5: return value; // find + case 6: return index; // findIndex + case 2: push(target, value); // filter + } else switch (TYPE) { + case 4: return false; // every + case 7: push(target, value); // filterReject + } + } + } + return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target; + }; +}; + +module.exports = { + // `Array.prototype.forEach` method + // https://tc39.es/ecma262/#sec-array.prototype.foreach + forEach: createMethod(0), + // `Array.prototype.map` method + // https://tc39.es/ecma262/#sec-array.prototype.map + map: createMethod(1), + // `Array.prototype.filter` method + // https://tc39.es/ecma262/#sec-array.prototype.filter + filter: createMethod(2), + // `Array.prototype.some` method + // https://tc39.es/ecma262/#sec-array.prototype.some + some: createMethod(3), + // `Array.prototype.every` method + // https://tc39.es/ecma262/#sec-array.prototype.every + every: createMethod(4), + // `Array.prototype.find` method + // https://tc39.es/ecma262/#sec-array.prototype.find + find: createMethod(5), + // `Array.prototype.findIndex` method + // https://tc39.es/ecma262/#sec-array.prototype.findIndex + findIndex: createMethod(6), + // `Array.prototype.filterReject` method + // https://github.com/tc39/proposal-array-filtering + filterReject: createMethod(7) +}; + + +/***/ }), + +/***/ 84320: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +/* eslint-disable es/no-array-prototype-lastindexof -- safe */ +var apply = __webpack_require__(58448); +var toIndexedObject = __webpack_require__(98086); +var toIntegerOrInfinity = __webpack_require__(26882); +var lengthOfArrayLike = __webpack_require__(45495); +var arrayMethodIsStrict = __webpack_require__(81007); + +var min = Math.min; +var $lastIndexOf = [].lastIndexOf; +var NEGATIVE_ZERO = !!$lastIndexOf && 1 / [1].lastIndexOf(1, -0) < 0; +var STRICT_METHOD = arrayMethodIsStrict('lastIndexOf'); +var FORCED = NEGATIVE_ZERO || !STRICT_METHOD; + +// `Array.prototype.lastIndexOf` method implementation +// https://tc39.es/ecma262/#sec-array.prototype.lastindexof +module.exports = FORCED ? function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) { + // convert -0 to +0 + if (NEGATIVE_ZERO) return apply($lastIndexOf, this, arguments) || 0; + var O = toIndexedObject(this); + var length = lengthOfArrayLike(O); + var index = length - 1; + if (arguments.length > 1) index = min(index, toIntegerOrInfinity(arguments[1])); + if (index < 0) index = length + index; + for (;index >= 0; index--) if (index in O && O[index] === searchElement) return index || 0; + return -1; +} : $lastIndexOf; + + +/***/ }), + +/***/ 56280: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); +var wellKnownSymbol = __webpack_require__(38688); +var V8_VERSION = __webpack_require__(70091); + +var SPECIES = wellKnownSymbol('species'); + +module.exports = function (METHOD_NAME) { + // We can't use this feature detection in V8 since it causes + // deoptimization and serious performance degradation + // https://github.com/zloirock/core-js/issues/677 + return V8_VERSION >= 51 || !fails(function () { + var array = []; + var constructor = array.constructor = {}; + constructor[SPECIES] = function () { + return { foo: 1 }; + }; + return array[METHOD_NAME](Boolean).foo !== 1; + }); +}; + + +/***/ }), + +/***/ 81007: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var fails = __webpack_require__(47044); + +module.exports = function (METHOD_NAME, argument) { + var method = [][METHOD_NAME]; + return !!method && fails(function () { + // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing + method.call(null, argument || function () { throw 1; }, 1); + }); +}; + + +/***/ }), + +/***/ 32843: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var aCallable = __webpack_require__(32631); +var toObject = __webpack_require__(43162); +var IndexedObject = __webpack_require__(7514); +var lengthOfArrayLike = __webpack_require__(45495); + +var TypeError = global.TypeError; + +// `Array.prototype.{ reduce, reduceRight }` methods implementation +var createMethod = function (IS_RIGHT) { + return function (that, callbackfn, argumentsLength, memo) { + aCallable(callbackfn); + var O = toObject(that); + var self = IndexedObject(O); + var length = lengthOfArrayLike(O); + var index = IS_RIGHT ? length - 1 : 0; + var i = IS_RIGHT ? -1 : 1; + if (argumentsLength < 2) while (true) { + if (index in self) { + memo = self[index]; + index += i; + break; + } + index += i; + if (IS_RIGHT ? index < 0 : length <= index) { + throw TypeError('Reduce of empty array with no initial value'); + } + } + for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) { + memo = callbackfn(memo, self[index], index, O); + } + return memo; + }; +}; + +module.exports = { + // `Array.prototype.reduce` method + // https://tc39.es/ecma262/#sec-array.prototype.reduce + left: createMethod(false), + // `Array.prototype.reduceRight` method + // https://tc39.es/ecma262/#sec-array.prototype.reduceright + right: createMethod(true) +}; + + +/***/ }), + +/***/ 73163: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); + +module.exports = uncurryThis([].slice); + + +/***/ }), + +/***/ 43977: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var arraySlice = __webpack_require__(73163); + +var floor = Math.floor; + +var mergeSort = function (array, comparefn) { + var length = array.length; + var middle = floor(length / 2); + return length < 8 ? insertionSort(array, comparefn) : merge( + array, + mergeSort(arraySlice(array, 0, middle), comparefn), + mergeSort(arraySlice(array, middle), comparefn), + comparefn + ); +}; + +var insertionSort = function (array, comparefn) { + var length = array.length; + var i = 1; + var element, j; + + while (i < length) { + j = i; + element = array[i]; + while (j && comparefn(array[j - 1], element) > 0) { + array[j] = array[--j]; + } + if (j !== i++) array[j] = element; + } return array; +}; + +var merge = function (array, left, right, comparefn) { + var llength = left.length; + var rlength = right.length; + var lindex = 0; + var rindex = 0; + + while (lindex < llength || rindex < rlength) { + array[lindex + rindex] = (lindex < llength && rindex < rlength) + ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++] + : lindex < llength ? left[lindex++] : right[rindex++]; + } return array; +}; + +module.exports = mergeSort; + + +/***/ }), + +/***/ 98578: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isArray = __webpack_require__(59113); +var isConstructor = __webpack_require__(20884); +var isObject = __webpack_require__(24517); +var wellKnownSymbol = __webpack_require__(38688); + +var SPECIES = wellKnownSymbol('species'); +var Array = global.Array; + +// a part of `ArraySpeciesCreate` abstract operation +// https://tc39.es/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray) { + var C; + if (isArray(originalArray)) { + C = originalArray.constructor; + // cross-realm fallback + if (isConstructor(C) && (C === Array || isArray(C.prototype))) C = undefined; + else if (isObject(C)) { + C = C[SPECIES]; + if (C === null) C = undefined; + } + } return C === undefined ? Array : C; +}; + + +/***/ }), + +/***/ 45744: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var arraySpeciesConstructor = __webpack_require__(98578); + +// `ArraySpeciesCreate` abstract operation +// https://tc39.es/ecma262/#sec-arrayspeciescreate +module.exports = function (originalArray, length) { + return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length); +}; + + +/***/ }), + +/***/ 97738: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var anObject = __webpack_require__(34984); +var iteratorClose = __webpack_require__(50194); + +// call something on iterator step with safe closing on error +module.exports = function (iterator, fn, value, ENTRIES) { + try { + return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); + } catch (error) { + iteratorClose(iterator, 'throw', error); + } +}; + + +/***/ }), + +/***/ 46769: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var wellKnownSymbol = __webpack_require__(38688); + +var ITERATOR = wellKnownSymbol('iterator'); +var SAFE_CLOSING = false; + +try { + var called = 0; + var iteratorWithReturn = { + next: function () { + return { done: !!called++ }; + }, + 'return': function () { + SAFE_CLOSING = true; + } + }; + iteratorWithReturn[ITERATOR] = function () { + return this; + }; + // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing + Array.from(iteratorWithReturn, function () { throw 2; }); +} catch (error) { /* empty */ } + +module.exports = function (exec, SKIP_CLOSING) { + if (!SKIP_CLOSING && !SAFE_CLOSING) return false; + var ITERATION_SUPPORT = false; + try { + var object = {}; + object[ITERATOR] = function () { + return { + next: function () { + return { done: ITERATION_SUPPORT = true }; + } + }; + }; + exec(object); + } catch (error) { /* empty */ } + return ITERATION_SUPPORT; +}; + + +/***/ }), + +/***/ 93975: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); + +var toString = uncurryThis({}.toString); +var stringSlice = uncurryThis(''.slice); + +module.exports = function (it) { + return stringSlice(toString(it), 8, -1); +}; + + +/***/ }), + +/***/ 52564: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); +var isCallable = __webpack_require__(94578); +var classofRaw = __webpack_require__(93975); +var wellKnownSymbol = __webpack_require__(38688); + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var Object = global.Object; + +// ES3 wrong here +var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; + +// fallback for IE11 Script Access Denied error +var tryGet = function (it, key) { + try { + return it[key]; + } catch (error) { /* empty */ } +}; + +// getting tag from ES6+ `Object.prototype.toString` +module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) { + var O, tag, result; + return it === undefined ? 'Undefined' : it === null ? 'Null' + // @@toStringTag case + : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag + // builtinTag case + : CORRECT_ARGUMENTS ? classofRaw(O) + // ES3 arguments fallback + : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result; +}; + + +/***/ }), + +/***/ 34074: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var arraySlice = __webpack_require__(73163); + +var replace = uncurryThis(''.replace); +var split = uncurryThis(''.split); +var join = uncurryThis([].join); + +var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd'); +var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/; +var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST); +var IS_FIREFOX_OR_SAFARI_STACK = /@[^\n]*\n/.test(TEST) && !/zxcasd/.test(TEST); + +module.exports = function (stack, dropEntries) { + if (typeof stack != 'string') return stack; + if (IS_V8_OR_CHAKRA_STACK) { + while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, ''); + } else if (IS_FIREFOX_OR_SAFARI_STACK) { + return join(arraySlice(split(stack, '\n'), dropEntries), '\n'); + } return stack; +}; + + +/***/ }), + +/***/ 9649: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var defineProperty = (__webpack_require__(95892).f); +var create = __webpack_require__(10819); +var redefineAll = __webpack_require__(15341); +var bind = __webpack_require__(25567); +var anInstance = __webpack_require__(2868); +var iterate = __webpack_require__(80383); +var defineIterator = __webpack_require__(97001); +var setSpecies = __webpack_require__(51334); +var DESCRIPTORS = __webpack_require__(15567); +var fastKey = (__webpack_require__(62148).fastKey); +var InternalStateModule = __webpack_require__(70172); + +var setInternalState = InternalStateModule.set; +var internalStateGetterFor = InternalStateModule.getterFor; + +module.exports = { + getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) { + var Constructor = wrapper(function (that, iterable) { + anInstance(that, Prototype); + setInternalState(that, { + type: CONSTRUCTOR_NAME, + index: create(null), + first: undefined, + last: undefined, + size: 0 + }); + if (!DESCRIPTORS) that.size = 0; + if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); + }); + + var Prototype = Constructor.prototype; + + var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME); + + var define = function (that, key, value) { + var state = getInternalState(that); + var entry = getEntry(that, key); + var previous, index; + // change existing entry + if (entry) { + entry.value = value; + // create new entry + } else { + state.last = entry = { + index: index = fastKey(key, true), + key: key, + value: value, + previous: previous = state.last, + next: undefined, + removed: false + }; + if (!state.first) state.first = entry; + if (previous) previous.next = entry; + if (DESCRIPTORS) state.size++; + else that.size++; + // add to index + if (index !== 'F') state.index[index] = entry; + } return that; + }; + + var getEntry = function (that, key) { + var state = getInternalState(that); + // fast case + var index = fastKey(key); + var entry; + if (index !== 'F') return state.index[index]; + // frozen object case + for (entry = state.first; entry; entry = entry.next) { + if (entry.key == key) return entry; + } + }; + + redefineAll(Prototype, { + // `{ Map, Set }.prototype.clear()` methods + // https://tc39.es/ecma262/#sec-map.prototype.clear + // https://tc39.es/ecma262/#sec-set.prototype.clear + clear: function clear() { + var that = this; + var state = getInternalState(that); + var data = state.index; + var entry = state.first; + while (entry) { + entry.removed = true; + if (entry.previous) entry.previous = entry.previous.next = undefined; + delete data[entry.index]; + entry = entry.next; + } + state.first = state.last = undefined; + if (DESCRIPTORS) state.size = 0; + else that.size = 0; + }, + // `{ Map, Set }.prototype.delete(key)` methods + // https://tc39.es/ecma262/#sec-map.prototype.delete + // https://tc39.es/ecma262/#sec-set.prototype.delete + 'delete': function (key) { + var that = this; + var state = getInternalState(that); + var entry = getEntry(that, key); + if (entry) { + var next = entry.next; + var prev = entry.previous; + delete state.index[entry.index]; + entry.removed = true; + if (prev) prev.next = next; + if (next) next.previous = prev; + if (state.first == entry) state.first = next; + if (state.last == entry) state.last = prev; + if (DESCRIPTORS) state.size--; + else that.size--; + } return !!entry; + }, + // `{ Map, Set }.prototype.forEach(callbackfn, thisArg = undefined)` methods + // https://tc39.es/ecma262/#sec-map.prototype.foreach + // https://tc39.es/ecma262/#sec-set.prototype.foreach + forEach: function forEach(callbackfn /* , that = undefined */) { + var state = getInternalState(this); + var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined); + var entry; + while (entry = entry ? entry.next : state.first) { + boundFunction(entry.value, entry.key, this); + // revert to the last existing entry + while (entry && entry.removed) entry = entry.previous; + } + }, + // `{ Map, Set}.prototype.has(key)` methods + // https://tc39.es/ecma262/#sec-map.prototype.has + // https://tc39.es/ecma262/#sec-set.prototype.has + has: function has(key) { + return !!getEntry(this, key); + } + }); + + redefineAll(Prototype, IS_MAP ? { + // `Map.prototype.get(key)` method + // https://tc39.es/ecma262/#sec-map.prototype.get + get: function get(key) { + var entry = getEntry(this, key); + return entry && entry.value; + }, + // `Map.prototype.set(key, value)` method + // https://tc39.es/ecma262/#sec-map.prototype.set + set: function set(key, value) { + return define(this, key === 0 ? 0 : key, value); + } + } : { + // `Set.prototype.add(value)` method + // https://tc39.es/ecma262/#sec-set.prototype.add + add: function add(value) { + return define(this, value = value === 0 ? 0 : value, value); + } + }); + if (DESCRIPTORS) defineProperty(Prototype, 'size', { + get: function () { + return getInternalState(this).size; + } + }); + return Constructor; + }, + setStrong: function (Constructor, CONSTRUCTOR_NAME, IS_MAP) { + var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator'; + var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME); + var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME); + // `{ Map, Set }.prototype.{ keys, values, entries, @@iterator }()` methods + // https://tc39.es/ecma262/#sec-map.prototype.entries + // https://tc39.es/ecma262/#sec-map.prototype.keys + // https://tc39.es/ecma262/#sec-map.prototype.values + // https://tc39.es/ecma262/#sec-map.prototype-@@iterator + // https://tc39.es/ecma262/#sec-set.prototype.entries + // https://tc39.es/ecma262/#sec-set.prototype.keys + // https://tc39.es/ecma262/#sec-set.prototype.values + // https://tc39.es/ecma262/#sec-set.prototype-@@iterator + defineIterator(Constructor, CONSTRUCTOR_NAME, function (iterated, kind) { + setInternalState(this, { + type: ITERATOR_NAME, + target: iterated, + state: getInternalCollectionState(iterated), + kind: kind, + last: undefined + }); + }, function () { + var state = getInternalIteratorState(this); + var kind = state.kind; + var entry = state.last; + // revert to the last existing entry + while (entry && entry.removed) entry = entry.previous; + // get next entry + if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) { + // or finish the iteration + state.target = undefined; + return { value: undefined, done: true }; + } + // return step by kind + if (kind == 'keys') return { value: entry.key, done: false }; + if (kind == 'values') return { value: entry.value, done: false }; + return { value: [entry.key, entry.value], done: false }; + }, IS_MAP ? 'entries' : 'values', !IS_MAP, true); + + // `{ Map, Set }.prototype[@@species]` accessors + // https://tc39.es/ecma262/#sec-get-map-@@species + // https://tc39.es/ecma262/#sec-get-set-@@species + setSpecies(CONSTRUCTOR_NAME); + } +}; + + +/***/ }), + +/***/ 36673: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var isForced = __webpack_require__(39599); +var redefine = __webpack_require__(13711); +var InternalMetadataModule = __webpack_require__(62148); +var iterate = __webpack_require__(80383); +var anInstance = __webpack_require__(2868); +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); +var fails = __webpack_require__(47044); +var checkCorrectnessOfIteration = __webpack_require__(46769); +var setToStringTag = __webpack_require__(15216); +var inheritIfRequired = __webpack_require__(51868); + +module.exports = function (CONSTRUCTOR_NAME, wrapper, common) { + var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1; + var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1; + var ADDER = IS_MAP ? 'set' : 'add'; + var NativeConstructor = global[CONSTRUCTOR_NAME]; + var NativePrototype = NativeConstructor && NativeConstructor.prototype; + var Constructor = NativeConstructor; + var exported = {}; + + var fixMethod = function (KEY) { + var uncurriedNativeMethod = uncurryThis(NativePrototype[KEY]); + redefine(NativePrototype, KEY, + KEY == 'add' ? function add(value) { + uncurriedNativeMethod(this, value === 0 ? 0 : value); + return this; + } : KEY == 'delete' ? function (key) { + return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key); + } : KEY == 'get' ? function get(key) { + return IS_WEAK && !isObject(key) ? undefined : uncurriedNativeMethod(this, key === 0 ? 0 : key); + } : KEY == 'has' ? function has(key) { + return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key); + } : function set(key, value) { + uncurriedNativeMethod(this, key === 0 ? 0 : key, value); + return this; + } + ); + }; + + var REPLACE = isForced( + CONSTRUCTOR_NAME, + !isCallable(NativeConstructor) || !(IS_WEAK || NativePrototype.forEach && !fails(function () { + new NativeConstructor().entries().next(); + })) + ); + + if (REPLACE) { + // create collection constructor + Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER); + InternalMetadataModule.enable(); + } else if (isForced(CONSTRUCTOR_NAME, true)) { + var instance = new Constructor(); + // early implementations not supports chaining + var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance; + // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false + var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); }); + // most early implementations doesn't supports iterables, most modern - not close it correctly + // eslint-disable-next-line no-new -- required for testing + var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); }); + // for early implementations -0 and +0 not the same + var BUGGY_ZERO = !IS_WEAK && fails(function () { + // V8 ~ Chromium 42- fails only with 5+ elements + var $instance = new NativeConstructor(); + var index = 5; + while (index--) $instance[ADDER](index, index); + return !$instance.has(-0); + }); + + if (!ACCEPT_ITERABLES) { + Constructor = wrapper(function (dummy, iterable) { + anInstance(dummy, NativePrototype); + var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor); + if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); + return that; + }); + Constructor.prototype = NativePrototype; + NativePrototype.constructor = Constructor; + } + + if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) { + fixMethod('delete'); + fixMethod('has'); + IS_MAP && fixMethod('get'); + } + + if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER); + + // weak collections should not contains .clear method + if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear; + } + + exported[CONSTRUCTOR_NAME] = Constructor; + $({ global: true, forced: Constructor != NativeConstructor }, exported); + + setToStringTag(Constructor, CONSTRUCTOR_NAME); + + if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP); + + return Constructor; +}; + + +/***/ }), + +/***/ 2675: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var hasOwn = __webpack_require__(20340); +var ownKeys = __webpack_require__(21594); +var getOwnPropertyDescriptorModule = __webpack_require__(72062); +var definePropertyModule = __webpack_require__(95892); + +module.exports = function (target, source) { + var keys = ownKeys(source); + var defineProperty = definePropertyModule.f; + var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; + for (var i = 0; i < keys.length; i++) { + var key = keys[i]; + if (!hasOwn(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key)); + } +}; + + +/***/ }), + +/***/ 91151: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var wellKnownSymbol = __webpack_require__(38688); + +var MATCH = wellKnownSymbol('match'); + +module.exports = function (METHOD_NAME) { + var regexp = /./; + try { + '/./'[METHOD_NAME](regexp); + } catch (error1) { + try { + regexp[MATCH] = false; + return '/./'[METHOD_NAME](regexp); + } catch (error2) { /* empty */ } + } return false; +}; + + +/***/ }), + +/***/ 68494: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); + +module.exports = !fails(function () { + function F() { /* empty */ } + F.prototype.constructor = null; + // eslint-disable-next-line es/no-object-getprototypeof -- required for testing + return Object.getPrototypeOf(new F()) !== F.prototype; +}); + + +/***/ }), + +/***/ 91159: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var requireObjectCoercible = __webpack_require__(83943); +var toString = __webpack_require__(25096); + +var quot = /"/g; +var replace = uncurryThis(''.replace); + +// `CreateHTML` abstract operation +// https://tc39.es/ecma262/#sec-createhtml +module.exports = function (string, tag, attribute, value) { + var S = toString(requireObjectCoercible(string)); + var p1 = '<' + tag; + if (attribute !== '') p1 += ' ' + attribute + '="' + replace(toString(value), quot, '"') + '"'; + return p1 + '>' + S + ''; +}; + + +/***/ }), + +/***/ 13945: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var IteratorPrototype = (__webpack_require__(5844).IteratorPrototype); +var create = __webpack_require__(10819); +var createPropertyDescriptor = __webpack_require__(97841); +var setToStringTag = __webpack_require__(15216); +var Iterators = __webpack_require__(15366); + +var returnThis = function () { return this; }; + +module.exports = function (IteratorConstructor, NAME, next) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); + Iterators[TO_STRING_TAG] = returnThis; + return IteratorConstructor; +}; + + +/***/ }), + +/***/ 48914: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__(15567); +var definePropertyModule = __webpack_require__(95892); +var createPropertyDescriptor = __webpack_require__(97841); + +module.exports = DESCRIPTORS ? function (object, key, value) { + return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); +} : function (object, key, value) { + object[key] = value; + return object; +}; + + +/***/ }), + +/***/ 97841: +/***/ (function(module) { + +module.exports = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value + }; +}; + + +/***/ }), + +/***/ 38639: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var toPropertyKey = __webpack_require__(63918); +var definePropertyModule = __webpack_require__(95892); +var createPropertyDescriptor = __webpack_require__(97841); + +module.exports = function (object, key, value) { + var propertyKey = toPropertyKey(key); + if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); + else object[propertyKey] = value; +}; + + +/***/ }), + +/***/ 53087: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var global = __webpack_require__(32010); +var anObject = __webpack_require__(34984); +var ordinaryToPrimitive = __webpack_require__(39629); + +var TypeError = global.TypeError; + +// `Date.prototype[@@toPrimitive](hint)` method implementation +// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive +module.exports = function (hint) { + anObject(this); + if (hint === 'string' || hint === 'default') hint = 'string'; + else if (hint !== 'number') throw TypeError('Incorrect hint'); + return ordinaryToPrimitive(this, hint); +}; + + +/***/ }), + +/***/ 97001: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var call = __webpack_require__(2834); +var IS_PURE = __webpack_require__(63432); +var FunctionName = __webpack_require__(7081); +var isCallable = __webpack_require__(94578); +var createIteratorConstructor = __webpack_require__(13945); +var getPrototypeOf = __webpack_require__(69548); +var setPrototypeOf = __webpack_require__(3840); +var setToStringTag = __webpack_require__(15216); +var createNonEnumerableProperty = __webpack_require__(48914); +var redefine = __webpack_require__(13711); +var wellKnownSymbol = __webpack_require__(38688); +var Iterators = __webpack_require__(15366); +var IteratorsCore = __webpack_require__(5844); + +var PROPER_FUNCTION_NAME = FunctionName.PROPER; +var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE; +var IteratorPrototype = IteratorsCore.IteratorPrototype; +var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS; +var ITERATOR = wellKnownSymbol('iterator'); +var KEYS = 'keys'; +var VALUES = 'values'; +var ENTRIES = 'entries'; + +var returnThis = function () { return this; }; + +module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { + createIteratorConstructor(IteratorConstructor, NAME, next); + + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND]; + switch (KIND) { + case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; + case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; + case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; + } return function () { return new IteratorConstructor(this); }; + }; + + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = IterablePrototype[ITERATOR] + || IterablePrototype['@@iterator'] + || DEFAULT && IterablePrototype[DEFAULT]; + var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT); + var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; + + // fix native + if (anyNativeIterator) { + CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable())); + if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) { + if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) { + if (setPrototypeOf) { + setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype); + } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) { + redefine(CurrentIteratorPrototype, ITERATOR, returnThis); + } + } + // Set @@toStringTag to native iterators + setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); + if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis; + } + } + + // fix Array.prototype.{ values, @@iterator }.name in V8 / FF + if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { + if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) { + createNonEnumerableProperty(IterablePrototype, 'name', VALUES); + } else { + INCORRECT_VALUES_NAME = true; + defaultIterator = function values() { return call(nativeIterator, this); }; + } + } + + // export additional methods + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES) + }; + if (FORCED) for (KEY in methods) { + if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { + redefine(IterablePrototype, KEY, methods[KEY]); + } + } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods); + } + + // define iterator + if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) { + redefine(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT }); + } + Iterators[NAME] = defaultIterator; + + return methods; +}; + + +/***/ }), + +/***/ 46042: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var path = __webpack_require__(11206); +var hasOwn = __webpack_require__(20340); +var wrappedWellKnownSymbolModule = __webpack_require__(75960); +var defineProperty = (__webpack_require__(95892).f); + +module.exports = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wrappedWellKnownSymbolModule.f(NAME) + }); +}; + + +/***/ }), + +/***/ 15567: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); + +// Detect IE8's incomplete defineProperty implementation +module.exports = !fails(function () { + // eslint-disable-next-line es/no-object-defineproperty -- required for testing + return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; +}); + + +/***/ }), + +/***/ 12072: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isObject = __webpack_require__(24517); + +var document = global.document; +// typeof document.createElement is 'object' in old IE +var EXISTS = isObject(document) && isObject(document.createElement); + +module.exports = function (it) { + return EXISTS ? document.createElement(it) : {}; +}; + + +/***/ }), + +/***/ 23327: +/***/ (function(module) { + +// iterable DOM collections +// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods +module.exports = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0 +}; + + +/***/ }), + +/***/ 67797: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +// in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList` +var documentCreateElement = __webpack_require__(12072); + +var classList = documentCreateElement('span').classList; +var DOMTokenListPrototype = classList && classList.constructor && classList.constructor.prototype; + +module.exports = DOMTokenListPrototype === Object.prototype ? undefined : DOMTokenListPrototype; + + +/***/ }), + +/***/ 3809: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var userAgent = __webpack_require__(40715); + +var firefox = userAgent.match(/firefox\/(\d+)/i); + +module.exports = !!firefox && +firefox[1]; + + +/***/ }), + +/***/ 3157: +/***/ (function(module) { + +module.exports = typeof window == 'object'; + + +/***/ }), + +/***/ 21983: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var UA = __webpack_require__(40715); + +module.exports = /MSIE|Trident/.test(UA); + + +/***/ }), + +/***/ 70573: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var userAgent = __webpack_require__(40715); +var global = __webpack_require__(32010); + +module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined; + + +/***/ }), + +/***/ 17716: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var userAgent = __webpack_require__(40715); + +module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent); + + +/***/ }), + +/***/ 95053: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var classof = __webpack_require__(93975); +var global = __webpack_require__(32010); + +module.exports = classof(global.process) == 'process'; + + +/***/ }), + +/***/ 664: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var userAgent = __webpack_require__(40715); + +module.exports = /web0s(?!.*chrome)/i.test(userAgent); + + +/***/ }), + +/***/ 40715: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__(38486); + +module.exports = getBuiltIn('navigator', 'userAgent') || ''; + + +/***/ }), + +/***/ 70091: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var userAgent = __webpack_require__(40715); + +var process = global.process; +var Deno = global.Deno; +var versions = process && process.versions || Deno && Deno.version; +var v8 = versions && versions.v8; +var match, version; + +if (v8) { + match = v8.split('.'); + // in old Chrome, versions of V8 isn't V8 = Chrome / 10 + // but their correct versions are not interesting for us + version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]); +} + +// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0` +// so check `userAgent` even if `.v8` exists, but 0 +if (!version && userAgent) { + match = userAgent.match(/Edge\/(\d+)/); + if (!match || match[1] >= 74) { + match = userAgent.match(/Chrome\/(\d+)/); + if (match) version = +match[1]; + } +} + +module.exports = version; + + +/***/ }), + +/***/ 41731: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var userAgent = __webpack_require__(40715); + +var webkit = userAgent.match(/AppleWebKit\/(\d+)\./); + +module.exports = !!webkit && +webkit[1]; + + +/***/ }), + +/***/ 2416: +/***/ (function(module) { + +// IE8- don't enum bug keys +module.exports = [ + 'constructor', + 'hasOwnProperty', + 'isPrototypeOf', + 'propertyIsEnumerable', + 'toLocaleString', + 'toString', + 'valueOf' +]; + + +/***/ }), + +/***/ 45144: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); +var createPropertyDescriptor = __webpack_require__(97841); + +module.exports = !fails(function () { + var error = Error('a'); + if (!('stack' in error)) return true; + // eslint-disable-next-line es/no-object-defineproperty -- safe + Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7)); + return error.stack !== 7; +}); + + +/***/ }), + +/***/ 56475: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var getOwnPropertyDescriptor = (__webpack_require__(72062).f); +var createNonEnumerableProperty = __webpack_require__(48914); +var redefine = __webpack_require__(13711); +var setGlobal = __webpack_require__(7421); +var copyConstructorProperties = __webpack_require__(2675); +var isForced = __webpack_require__(39599); + +/* + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.noTargetGet - prevent calling a getter on target + options.name - the .name of the function if it does not match the key +*/ +module.exports = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var FORCED, target, key, targetProperty, sourceProperty, descriptor; + if (GLOBAL) { + target = global; + } else if (STATIC) { + target = global[TARGET] || setGlobal(TARGET, {}); + } else { + target = (global[TARGET] || {}).prototype; + } + if (target) for (key in source) { + sourceProperty = source[key]; + if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor(target, key); + targetProperty = descriptor && descriptor.value; + } else targetProperty = target[key]; + FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); + // contained in target + if (!FORCED && targetProperty !== undefined) { + if (typeof sourceProperty == typeof targetProperty) continue; + copyConstructorProperties(sourceProperty, targetProperty); + } + // add a flag to not completely full polyfills + if (options.sham || (targetProperty && targetProperty.sham)) { + createNonEnumerableProperty(sourceProperty, 'sham', true); + } + // extend global + redefine(target, key, sourceProperty, options); + } +}; + + +/***/ }), + +/***/ 47044: +/***/ (function(module) { + +module.exports = function (exec) { + try { + return !!exec(); + } catch (error) { + return true; + } +}; + + +/***/ }), + +/***/ 11813: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +// TODO: Remove from `core-js@4` since it's moved to entry points +__webpack_require__(61726); +var uncurryThis = __webpack_require__(38347); +var redefine = __webpack_require__(13711); +var regexpExec = __webpack_require__(49820); +var fails = __webpack_require__(47044); +var wellKnownSymbol = __webpack_require__(38688); +var createNonEnumerableProperty = __webpack_require__(48914); + +var SPECIES = wellKnownSymbol('species'); +var RegExpPrototype = RegExp.prototype; + +module.exports = function (KEY, exec, FORCED, SHAM) { + var SYMBOL = wellKnownSymbol(KEY); + + var DELEGATES_TO_SYMBOL = !fails(function () { + // String methods call symbol-named RegEp methods + var O = {}; + O[SYMBOL] = function () { return 7; }; + return ''[KEY](O) != 7; + }); + + var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () { + // Symbol-named RegExp methods call .exec + var execCalled = false; + var re = /a/; + + if (KEY === 'split') { + // We can't use real regex here since it causes deoptimization + // and serious performance degradation in V8 + // https://github.com/zloirock/core-js/issues/306 + re = {}; + // RegExp[@@split] doesn't call the regex's exec method, but first creates + // a new one. We need to return the patched regex when creating the new one. + re.constructor = {}; + re.constructor[SPECIES] = function () { return re; }; + re.flags = ''; + re[SYMBOL] = /./[SYMBOL]; + } + + re.exec = function () { execCalled = true; return null; }; + + re[SYMBOL](''); + return !execCalled; + }); + + if ( + !DELEGATES_TO_SYMBOL || + !DELEGATES_TO_EXEC || + FORCED + ) { + var uncurriedNativeRegExpMethod = uncurryThis(/./[SYMBOL]); + var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) { + var uncurriedNativeMethod = uncurryThis(nativeMethod); + var $exec = regexp.exec; + if ($exec === regexpExec || $exec === RegExpPrototype.exec) { + if (DELEGATES_TO_SYMBOL && !forceStringMethod) { + // The native String method already delegates to @@method (this + // polyfilled function), leasing to infinite recursion. + // We avoid it by directly calling the native @@method method. + return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) }; + } + return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) }; + } + return { done: false }; + }); + + redefine(String.prototype, KEY, methods[0]); + redefine(RegExpPrototype, SYMBOL, methods[1]); + } + + if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true); +}; + + +/***/ }), + +/***/ 55481: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); + +module.exports = !fails(function () { + // eslint-disable-next-line es/no-object-isextensible, es/no-object-preventextensions -- required for testing + return Object.isExtensible(Object.preventExtensions({})); +}); + + +/***/ }), + +/***/ 58448: +/***/ (function(module) { + +var FunctionPrototype = Function.prototype; +var apply = FunctionPrototype.apply; +var bind = FunctionPrototype.bind; +var call = FunctionPrototype.call; + +// eslint-disable-next-line es/no-reflect -- safe +module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () { + return call.apply(apply, arguments); +}); + + +/***/ }), + +/***/ 25567: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var aCallable = __webpack_require__(32631); + +var bind = uncurryThis(uncurryThis.bind); + +// optional / simple context binding +module.exports = function (fn, that) { + aCallable(fn); + return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) { + return fn.apply(that, arguments); + }; +}; + + +/***/ }), + +/***/ 2834: +/***/ (function(module) { + +var call = Function.prototype.call; + +module.exports = call.bind ? call.bind(call) : function () { + return call.apply(call, arguments); +}; + + +/***/ }), + +/***/ 7081: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__(15567); +var hasOwn = __webpack_require__(20340); + +var FunctionPrototype = Function.prototype; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor; + +var EXISTS = hasOwn(FunctionPrototype, 'name'); +// additional protection from minified / mangled / dropped function names +var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something'; +var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable)); + +module.exports = { + EXISTS: EXISTS, + PROPER: PROPER, + CONFIGURABLE: CONFIGURABLE +}; + + +/***/ }), + +/***/ 38347: +/***/ (function(module) { + +var FunctionPrototype = Function.prototype; +var bind = FunctionPrototype.bind; +var call = FunctionPrototype.call; +var callBind = bind && bind.bind(call); + +module.exports = bind ? function (fn) { + return fn && callBind(call, fn); +} : function (fn) { + return fn && function () { + return call.apply(fn, arguments); + }; +}; + + +/***/ }), + +/***/ 38486: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isCallable = __webpack_require__(94578); + +var aFunction = function (argument) { + return isCallable(argument) ? argument : undefined; +}; + +module.exports = function (namespace, method) { + return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method]; +}; + + +/***/ }), + +/***/ 13872: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var classof = __webpack_require__(52564); +var getMethod = __webpack_require__(51839); +var Iterators = __webpack_require__(15366); +var wellKnownSymbol = __webpack_require__(38688); + +var ITERATOR = wellKnownSymbol('iterator'); + +module.exports = function (it) { + if (it != undefined) return getMethod(it, ITERATOR) + || getMethod(it, '@@iterator') + || Iterators[classof(it)]; +}; + + +/***/ }), + +/***/ 15892: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var aCallable = __webpack_require__(32631); +var anObject = __webpack_require__(34984); +var tryToString = __webpack_require__(68664); +var getIteratorMethod = __webpack_require__(13872); + +var TypeError = global.TypeError; + +module.exports = function (argument, usingIterator) { + var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator; + if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument)); + throw TypeError(tryToString(argument) + ' is not iterable'); +}; + + +/***/ }), + +/***/ 51839: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var aCallable = __webpack_require__(32631); + +// `GetMethod` abstract operation +// https://tc39.es/ecma262/#sec-getmethod +module.exports = function (V, P) { + var func = V[P]; + return func == null ? undefined : aCallable(func); +}; + + +/***/ }), + +/***/ 29519: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var toObject = __webpack_require__(43162); + +var floor = Math.floor; +var charAt = uncurryThis(''.charAt); +var replace = uncurryThis(''.replace); +var stringSlice = uncurryThis(''.slice); +var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g; +var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g; + +// `GetSubstitution` abstract operation +// https://tc39.es/ecma262/#sec-getsubstitution +module.exports = function (matched, str, position, captures, namedCaptures, replacement) { + var tailPos = position + matched.length; + var m = captures.length; + var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; + if (namedCaptures !== undefined) { + namedCaptures = toObject(namedCaptures); + symbols = SUBSTITUTION_SYMBOLS; + } + return replace(replacement, symbols, function (match, ch) { + var capture; + switch (charAt(ch, 0)) { + case '$': return '$'; + case '&': return matched; + case '`': return stringSlice(str, 0, position); + case "'": return stringSlice(str, tailPos); + case '<': + capture = namedCaptures[stringSlice(ch, 1, -1)]; + break; + default: // \d\d? + var n = +ch; + if (n === 0) return match; + if (n > m) { + var f = floor(n / 10); + if (f === 0) return match; + if (f <= m) return captures[f - 1] === undefined ? charAt(ch, 1) : captures[f - 1] + charAt(ch, 1); + return match; + } + capture = captures[n - 1]; + } + return capture === undefined ? '' : capture; + }); +}; + + +/***/ }), + +/***/ 32010: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var check = function (it) { + return it && it.Math == Math && it; +}; + +// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 +module.exports = + // eslint-disable-next-line es/no-global-this -- safe + check(typeof globalThis == 'object' && globalThis) || + check(typeof window == 'object' && window) || + // eslint-disable-next-line no-restricted-globals -- safe + check(typeof self == 'object' && self) || + check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) || + // eslint-disable-next-line no-new-func -- fallback + (function () { return this; })() || Function('return this')(); + + +/***/ }), + +/***/ 20340: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var toObject = __webpack_require__(43162); + +var hasOwnProperty = uncurryThis({}.hasOwnProperty); + +// `HasOwnProperty` abstract operation +// https://tc39.es/ecma262/#sec-hasownproperty +module.exports = Object.hasOwn || function hasOwn(it, key) { + return hasOwnProperty(toObject(it), key); +}; + + +/***/ }), + +/***/ 90682: +/***/ (function(module) { + +module.exports = {}; + + +/***/ }), + +/***/ 61144: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); + +module.exports = function (a, b) { + var console = global.console; + if (console && console.error) { + arguments.length == 1 ? console.error(a) : console.error(a, b); + } +}; + + +/***/ }), + +/***/ 520: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var getBuiltIn = __webpack_require__(38486); + +module.exports = getBuiltIn('document', 'documentElement'); + + +/***/ }), + +/***/ 18904: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__(15567); +var fails = __webpack_require__(47044); +var createElement = __webpack_require__(12072); + +// Thank's IE8 for his funny defineProperty +module.exports = !DESCRIPTORS && !fails(function () { + // eslint-disable-next-line es/no-object-defineproperty -- requied for testing + return Object.defineProperty(createElement('div'), 'a', { + get: function () { return 7; } + }).a != 7; +}); + + +/***/ }), + +/***/ 64397: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +// IEEE754 conversions based on https://github.com/feross/ieee754 +var global = __webpack_require__(32010); + +var Array = global.Array; +var abs = Math.abs; +var pow = Math.pow; +var floor = Math.floor; +var log = Math.log; +var LN2 = Math.LN2; + +var pack = function (number, mantissaLength, bytes) { + var buffer = Array(bytes); + var exponentLength = bytes * 8 - mantissaLength - 1; + var eMax = (1 << exponentLength) - 1; + var eBias = eMax >> 1; + var rt = mantissaLength === 23 ? pow(2, -24) - pow(2, -77) : 0; + var sign = number < 0 || number === 0 && 1 / number < 0 ? 1 : 0; + var index = 0; + var exponent, mantissa, c; + number = abs(number); + // eslint-disable-next-line no-self-compare -- NaN check + if (number != number || number === Infinity) { + // eslint-disable-next-line no-self-compare -- NaN check + mantissa = number != number ? 1 : 0; + exponent = eMax; + } else { + exponent = floor(log(number) / LN2); + if (number * (c = pow(2, -exponent)) < 1) { + exponent--; + c *= 2; + } + if (exponent + eBias >= 1) { + number += rt / c; + } else { + number += rt * pow(2, 1 - eBias); + } + if (number * c >= 2) { + exponent++; + c /= 2; + } + if (exponent + eBias >= eMax) { + mantissa = 0; + exponent = eMax; + } else if (exponent + eBias >= 1) { + mantissa = (number * c - 1) * pow(2, mantissaLength); + exponent = exponent + eBias; + } else { + mantissa = number * pow(2, eBias - 1) * pow(2, mantissaLength); + exponent = 0; + } + } + for (; mantissaLength >= 8; buffer[index++] = mantissa & 255, mantissa /= 256, mantissaLength -= 8); + exponent = exponent << mantissaLength | mantissa; + exponentLength += mantissaLength; + for (; exponentLength > 0; buffer[index++] = exponent & 255, exponent /= 256, exponentLength -= 8); + buffer[--index] |= sign * 128; + return buffer; +}; + +var unpack = function (buffer, mantissaLength) { + var bytes = buffer.length; + var exponentLength = bytes * 8 - mantissaLength - 1; + var eMax = (1 << exponentLength) - 1; + var eBias = eMax >> 1; + var nBits = exponentLength - 7; + var index = bytes - 1; + var sign = buffer[index--]; + var exponent = sign & 127; + var mantissa; + sign >>= 7; + for (; nBits > 0; exponent = exponent * 256 + buffer[index], index--, nBits -= 8); + mantissa = exponent & (1 << -nBits) - 1; + exponent >>= -nBits; + nBits += mantissaLength; + for (; nBits > 0; mantissa = mantissa * 256 + buffer[index], index--, nBits -= 8); + if (exponent === 0) { + exponent = 1 - eBias; + } else if (exponent === eMax) { + return mantissa ? NaN : sign ? -Infinity : Infinity; + } else { + mantissa = mantissa + pow(2, mantissaLength); + exponent = exponent - eBias; + } return (sign ? -1 : 1) * mantissa * pow(2, exponent - mantissaLength); +}; + +module.exports = { + pack: pack, + unpack: unpack +}; + + +/***/ }), + +/***/ 7514: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var fails = __webpack_require__(47044); +var classof = __webpack_require__(93975); + +var Object = global.Object; +var split = uncurryThis(''.split); + +// fallback for non-array-like ES3 and non-enumerable old V8 strings +module.exports = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins -- safe + return !Object('z').propertyIsEnumerable(0); +}) ? function (it) { + return classof(it) == 'String' ? split(it, '') : Object(it); +} : Object; + + +/***/ }), + +/***/ 51868: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); +var setPrototypeOf = __webpack_require__(3840); + +// makes subclassing work correct for wrapped built-ins +module.exports = function ($this, dummy, Wrapper) { + var NewTarget, NewTargetPrototype; + if ( + // it can work only with native `setPrototypeOf` + setPrototypeOf && + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this + isCallable(NewTarget = dummy.constructor) && + NewTarget !== Wrapper && + isObject(NewTargetPrototype = NewTarget.prototype) && + NewTargetPrototype !== Wrapper.prototype + ) setPrototypeOf($this, NewTargetPrototype); + return $this; +}; + + +/***/ }), + +/***/ 10447: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var isCallable = __webpack_require__(94578); +var store = __webpack_require__(55480); + +var functionToString = uncurryThis(Function.toString); + +// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper +if (!isCallable(store.inspectSource)) { + store.inspectSource = function (it) { + return functionToString(it); + }; +} + +module.exports = store.inspectSource; + + +/***/ }), + +/***/ 87811: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var isObject = __webpack_require__(24517); +var createNonEnumerableProperty = __webpack_require__(48914); + +// `InstallErrorCause` abstract operation +// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause +module.exports = function (O, options) { + if (isObject(options) && 'cause' in options) { + createNonEnumerableProperty(O, 'cause', options.cause); + } +}; + + +/***/ }), + +/***/ 62148: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var $ = __webpack_require__(56475); +var uncurryThis = __webpack_require__(38347); +var hiddenKeys = __webpack_require__(90682); +var isObject = __webpack_require__(24517); +var hasOwn = __webpack_require__(20340); +var defineProperty = (__webpack_require__(95892).f); +var getOwnPropertyNamesModule = __webpack_require__(6611); +var getOwnPropertyNamesExternalModule = __webpack_require__(8807); +var uid = __webpack_require__(46859); +var FREEZING = __webpack_require__(55481); + +var REQUIRED = false; +var METADATA = uid('meta'); +var id = 0; + +// eslint-disable-next-line es/no-object-isextensible -- safe +var isExtensible = Object.isExtensible || function () { + return true; +}; + +var setMetadata = function (it) { + defineProperty(it, METADATA, { value: { + objectID: 'O' + id++, // object ID + weakData: {} // weak collections IDs + } }); +}; + +var fastKey = function (it, create) { + // return a primitive with prefix + if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it; + if (!hasOwn(it, METADATA)) { + // can't set metadata to uncaught frozen object + if (!isExtensible(it)) return 'F'; + // not necessary to add metadata + if (!create) return 'E'; + // add missing metadata + setMetadata(it); + // return object ID + } return it[METADATA].objectID; +}; - /** - * DES block cipher algorithm. - */ - var DES = C_algo.DES = BlockCipher.extend({ - _doReset: function _doReset() { - // Shortcuts - var key = this._key; - var keyWords = key.words; +var getWeakData = function (it, create) { + if (!hasOwn(it, METADATA)) { + // can't set metadata to uncaught frozen object + if (!isExtensible(it)) return true; + // not necessary to add metadata + if (!create) return false; + // add missing metadata + setMetadata(it); + // return the store of weak collections IDs + } return it[METADATA].weakData; +}; - // Select 56 bits according to PC1 - var keyBits = []; - for (var i = 0; i < 56; i++) { - var keyBitPos = PC1[i] - 1; - keyBits[i] = keyWords[keyBitPos >>> 5] >>> 31 - keyBitPos % 32 & 1; +// add metadata on freeze-family methods calling +var onFreeze = function (it) { + if (FREEZING && REQUIRED && isExtensible(it) && !hasOwn(it, METADATA)) setMetadata(it); + return it; +}; + +var enable = function () { + meta.enable = function () { /* empty */ }; + REQUIRED = true; + var getOwnPropertyNames = getOwnPropertyNamesModule.f; + var splice = uncurryThis([].splice); + var test = {}; + test[METADATA] = 1; + + // prevent exposing of metadata key + if (getOwnPropertyNames(test).length) { + getOwnPropertyNamesModule.f = function (it) { + var result = getOwnPropertyNames(it); + for (var i = 0, length = result.length; i < length; i++) { + if (result[i] === METADATA) { + splice(result, i, 1); + break; } + } return result; + }; - // Assemble 16 subkeys - var subKeys = this._subKeys = []; - for (var nSubKey = 0; nSubKey < 16; nSubKey++) { - // Create subkey - var subKey = subKeys[nSubKey] = []; + $({ target: 'Object', stat: true, forced: true }, { + getOwnPropertyNames: getOwnPropertyNamesExternalModule.f + }); + } +}; - // Shortcut - var bitShift = BIT_SHIFTS[nSubKey]; +var meta = module.exports = { + enable: enable, + fastKey: fastKey, + getWeakData: getWeakData, + onFreeze: onFreeze +}; - // Select 48 bits according to PC2 - for (var i = 0; i < 24; i++) { - // Select from the left 28 key bits - subKey[i / 6 | 0] |= keyBits[(PC2[i] - 1 + bitShift) % 28] << 31 - i % 6; +hiddenKeys[METADATA] = true; - // Select from the right 28 key bits - subKey[4 + (i / 6 | 0)] |= keyBits[28 + (PC2[i + 24] - 1 + bitShift) % 28] << 31 - i % 6; - } - // Since each subkey is applied to an expanded 32-bit input, - // the subkey can be broken into 8 values scaled to 32-bits, - // which allows the key to be used without expansion - subKey[0] = subKey[0] << 1 | subKey[0] >>> 31; - for (var i = 1; i < 7; i++) { - subKey[i] = subKey[i] >>> (i - 1) * 4 + 3; - } - subKey[7] = subKey[7] << 5 | subKey[7] >>> 27; - } +/***/ }), - // Compute inverse subkeys - var invSubKeys = this._invSubKeys = []; - for (var i = 0; i < 16; i++) { - invSubKeys[i] = subKeys[15 - i]; - } - }, - encryptBlock: function encryptBlock(M, offset) { - this._doCryptBlock(M, offset, this._subKeys); - }, - decryptBlock: function decryptBlock(M, offset) { - this._doCryptBlock(M, offset, this._invSubKeys); - }, - _doCryptBlock: function _doCryptBlock(M, offset, subKeys) { - // Get input - this._lBlock = M[offset]; - this._rBlock = M[offset + 1]; +/***/ 70172: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Initial permutation - exchangeLR.call(this, 4, 0x0f0f0f0f); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeRL.call(this, 2, 0x33333333); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeLR.call(this, 1, 0x55555555); +var NATIVE_WEAK_MAP = __webpack_require__(26168); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var isObject = __webpack_require__(24517); +var createNonEnumerableProperty = __webpack_require__(48914); +var hasOwn = __webpack_require__(20340); +var shared = __webpack_require__(55480); +var sharedKey = __webpack_require__(82194); +var hiddenKeys = __webpack_require__(90682); - // Rounds - for (var round = 0; round < 16; round++) { - // Shortcuts - var subKey = subKeys[round]; - var lBlock = this._lBlock; - var rBlock = this._rBlock; +var OBJECT_ALREADY_INITIALIZED = 'Object already initialized'; +var TypeError = global.TypeError; +var WeakMap = global.WeakMap; +var set, get, has; - // Feistel function - var f = 0; - for (var i = 0; i < 8; i++) { - f |= SBOX_P[i][((rBlock ^ subKey[i]) & SBOX_MASK[i]) >>> 0]; - } - this._lBlock = rBlock; - this._rBlock = lBlock ^ f; - } +var enforce = function (it) { + return has(it) ? get(it) : set(it, {}); +}; - // Undo swap from last round - var t = this._lBlock; - this._lBlock = this._rBlock; - this._rBlock = t; +var getterFor = function (TYPE) { + return function (it) { + var state; + if (!isObject(it) || (state = get(it)).type !== TYPE) { + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); + } return state; + }; +}; - // Final permutation - exchangeLR.call(this, 1, 0x55555555); - exchangeRL.call(this, 8, 0x00ff00ff); - exchangeRL.call(this, 2, 0x33333333); - exchangeLR.call(this, 16, 0x0000ffff); - exchangeLR.call(this, 4, 0x0f0f0f0f); +if (NATIVE_WEAK_MAP || shared.state) { + var store = shared.state || (shared.state = new WeakMap()); + var wmget = uncurryThis(store.get); + var wmhas = uncurryThis(store.has); + var wmset = uncurryThis(store.set); + set = function (it, metadata) { + if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED); + metadata.facade = it; + wmset(store, it, metadata); + return metadata; + }; + get = function (it) { + return wmget(store, it) || {}; + }; + has = function (it) { + return wmhas(store, it); + }; +} else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + set = function (it, metadata) { + if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED); + metadata.facade = it; + createNonEnumerableProperty(it, STATE, metadata); + return metadata; + }; + get = function (it) { + return hasOwn(it, STATE) ? it[STATE] : {}; + }; + has = function (it) { + return hasOwn(it, STATE); + }; +} - // Set output - M[offset] = this._lBlock; - M[offset + 1] = this._rBlock; - }, - keySize: 64 / 32, - ivSize: 64 / 32, - blockSize: 64 / 32 - }); +module.exports = { + set: set, + get: get, + has: has, + enforce: enforce, + getterFor: getterFor +}; - // Swap bits across the left and right words - function exchangeLR(offset, mask) { - var t = (this._lBlock >>> offset ^ this._rBlock) & mask; - this._rBlock ^= t; - this._lBlock ^= t << offset; - } - function exchangeRL(offset, mask) { - var t = (this._rBlock >>> offset ^ this._lBlock) & mask; - this._lBlock ^= t; - this._rBlock ^= t << offset; - } - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.DES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.DES.decrypt(ciphertext, key, cfg); - */ - C.DES = BlockCipher._createHelper(DES); +/***/ }), - /** - * Triple-DES block cipher algorithm. - */ - var TripleDES = C_algo.TripleDES = BlockCipher.extend({ - _doReset: function _doReset() { - // Shortcuts - var key = this._key; - var keyWords = key.words; - // Make sure the key length is valid (64, 128 or >= 192 bit) - if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) { - throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.'); - } +/***/ 89564: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Extend the key according to the keying options defined in 3DES standard - var key1 = keyWords.slice(0, 2); - var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4); - var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6); +var wellKnownSymbol = __webpack_require__(38688); +var Iterators = __webpack_require__(15366); - // Create DES instances - this._des1 = DES.createEncryptor(WordArray.create(key1)); - this._des2 = DES.createEncryptor(WordArray.create(key2)); - this._des3 = DES.createEncryptor(WordArray.create(key3)); - }, - encryptBlock: function encryptBlock(M, offset) { - this._des1.encryptBlock(M, offset); - this._des2.decryptBlock(M, offset); - this._des3.encryptBlock(M, offset); - }, - decryptBlock: function decryptBlock(M, offset) { - this._des3.decryptBlock(M, offset); - this._des2.encryptBlock(M, offset); - this._des1.decryptBlock(M, offset); - }, - keySize: 192 / 32, - ivSize: 64 / 32, - blockSize: 64 / 32 - }); +var ITERATOR = wellKnownSymbol('iterator'); +var ArrayPrototype = Array.prototype; + +// check on default Array iterator +module.exports = function (it) { + return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it); +}; - /** - * Shortcut functions to the cipher's object interface. - * - * @example - * - * var ciphertext = CryptoJS.TripleDES.encrypt(message, key, cfg); - * var plaintext = CryptoJS.TripleDES.decrypt(ciphertext, key, cfg); - */ - C.TripleDES = BlockCipher._createHelper(TripleDES); - })(); - return CryptoJS.TripleDES; -}); /***/ }), -/***/ 24162: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 59113: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var classof = __webpack_require__(93975); +// `IsArray` abstract operation +// https://tc39.es/ecma262/#sec-isarray +// eslint-disable-next-line es/no-array-isarray -- safe +module.exports = Array.isArray || function isArray(argument) { + return classof(argument) == 'Array'; +}; -var Buffer = (__webpack_require__(93143).Buffer) -// == UTF32-LE/BE codec. ========================================================== +/***/ }), -exports._utf32 = Utf32Codec +/***/ 94578: +/***/ (function(module) { -function Utf32Codec (codecOptions, iconv) { - this.iconv = iconv - this.bomAware = true - this.isLE = codecOptions.isLE -} +// `IsCallable` abstract operation +// https://tc39.es/ecma262/#sec-iscallable +module.exports = function (argument) { + return typeof argument == 'function'; +}; -exports.utf32le = { type: "_utf32", isLE: true } -exports.utf32be = { type: "_utf32", isLE: false } -// Aliases -exports.ucs4le = "utf32le" -exports.ucs4be = "utf32be" +/***/ }), -Utf32Codec.prototype.encoder = Utf32Encoder -Utf32Codec.prototype.decoder = Utf32Decoder +/***/ 20884: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -// -- Encoding +var uncurryThis = __webpack_require__(38347); +var fails = __webpack_require__(47044); +var isCallable = __webpack_require__(94578); +var classof = __webpack_require__(52564); +var getBuiltIn = __webpack_require__(38486); +var inspectSource = __webpack_require__(10447); -function Utf32Encoder (options, codec) { - this.isLE = codec.isLE - this.highSurrogate = 0 -} +var noop = function () { /* empty */ }; +var empty = []; +var construct = getBuiltIn('Reflect', 'construct'); +var constructorRegExp = /^\s*(?:class|function)\b/; +var exec = uncurryThis(constructorRegExp.exec); +var INCORRECT_TO_STRING = !constructorRegExp.exec(noop); -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 +var isConstructorModern = function (argument) { + if (!isCallable(argument)) return false; + try { + construct(noop, empty, argument); + return true; + } catch (error) { + return false; + } +}; - for (var i = 0; i < src.length; i += 2) { - var code = src.readUInt16LE(i) - var isHighSurrogate = (code >= 0xD800 && code < 0xDC00) - var isLowSurrogate = (code >= 0xDC00 && code < 0xE000) +var isConstructorLegacy = function (argument) { + if (!isCallable(argument)) return false; + switch (classof(argument)) { + case 'AsyncFunction': + case 'GeneratorFunction': + case 'AsyncGeneratorFunction': return false; + // we can't check .prototype since constructors produced by .bind haven't it + } return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument)); +}; - 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 +// `IsConstructor` abstract operation +// https://tc39.es/ecma262/#sec-isconstructor +module.exports = !construct || fails(function () { + var called; + return isConstructorModern(isConstructorModern.call) + || !isConstructorModern(Object) + || !isConstructorModern(function () { called = true; }) + || called; +}) ? isConstructorLegacy : isConstructorModern; - write32.call(dst, codepoint, offset) - offset += 4 - this.highSurrogate = 0 - continue - } - } +/***/ }), - 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 - } - } +/***/ 39599: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - if (offset < dst.length) { dst = dst.slice(0, offset) } +var fails = __webpack_require__(47044); +var isCallable = __webpack_require__(94578); - return dst -} +var replacement = /#|\.prototype\./; -Utf32Encoder.prototype.end = function () { - // Treat any leftover high surrogate as a semi-valid independent character. - if (!this.highSurrogate) { return } +var isForced = function (feature, detection) { + var value = data[normalize(feature)]; + return value == POLYFILL ? true + : value == NATIVE ? false + : isCallable(detection) ? fails(detection) + : !!detection; +}; - var buf = Buffer.alloc(4) +var normalize = isForced.normalize = function (string) { + return String(string).replace(replacement, '.').toLowerCase(); +}; - if (this.isLE) { buf.writeUInt32LE(this.highSurrogate, 0) } else { buf.writeUInt32BE(this.highSurrogate, 0) } +var data = isForced.data = {}; +var NATIVE = isForced.NATIVE = 'N'; +var POLYFILL = isForced.POLYFILL = 'P'; - this.highSurrogate = 0 +module.exports = isForced; - return buf -} -// -- Decoding +/***/ }), -function Utf32Decoder (options, codec) { - this.isLE = codec.isLE - this.badChar = codec.iconv.defaultCharUnicode.charCodeAt(0) - this.overflow = [] -} +/***/ 17506: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -Utf32Decoder.prototype.write = function (src) { - if (src.length === 0) { return "" } +var isObject = __webpack_require__(24517); - 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 +var floor = Math.floor; + +// `IsIntegralNumber` abstract operation +// https://tc39.es/ecma262/#sec-isintegralnumber +// eslint-disable-next-line es/no-number-isinteger -- safe +module.exports = Number.isInteger || function isInteger(it) { + return !isObject(it) && isFinite(it) && floor(it) === it; +}; + + +/***/ }), + +/***/ 24517: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var isCallable = __webpack_require__(94578); + +module.exports = function (it) { + return typeof it == 'object' ? it !== null : isCallable(it); +}; + + +/***/ }), + +/***/ 63432: +/***/ (function(module) { + +module.exports = false; + + +/***/ }), + +/***/ 28831: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var isObject = __webpack_require__(24517); +var classof = __webpack_require__(93975); +var wellKnownSymbol = __webpack_require__(38688); + +var MATCH = wellKnownSymbol('match'); + +// `IsRegExp` abstract operation +// https://tc39.es/ecma262/#sec-isregexp +module.exports = function (it) { + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +}; - 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) - } - } +/***/ 46290: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // 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) - } +var global = __webpack_require__(32010); +var getBuiltIn = __webpack_require__(38486); +var isCallable = __webpack_require__(94578); +var isPrototypeOf = __webpack_require__(70176); +var USE_SYMBOL_AS_UID = __webpack_require__(9567); - // Keep overflowing bytes. - for (; i < src.length; i++) { - overflow.push(src[i]) - } +var Object = global.Object; - return dst.slice(0, offset).toString("ucs2") -} +module.exports = USE_SYMBOL_AS_UID ? function (it) { + return typeof it == 'symbol'; +} : function (it) { + var $Symbol = getBuiltIn('Symbol'); + return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it)); +}; -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 - } - // Ephemeral Planes: Write high surrogate. - if (codepoint >= 0x10000) { - codepoint -= 0x10000 +/***/ }), - var high = 0xD800 | (codepoint >> 10) - dst[offset++] = high & 0xff - dst[offset++] = high >> 8 +/***/ 80383: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Low surrogate is written below. - var codepoint = 0xDC00 | (codepoint & 0x3FF) - } +var global = __webpack_require__(32010); +var bind = __webpack_require__(25567); +var call = __webpack_require__(2834); +var anObject = __webpack_require__(34984); +var tryToString = __webpack_require__(68664); +var isArrayIteratorMethod = __webpack_require__(89564); +var lengthOfArrayLike = __webpack_require__(45495); +var isPrototypeOf = __webpack_require__(70176); +var getIterator = __webpack_require__(15892); +var getIteratorMethod = __webpack_require__(13872); +var iteratorClose = __webpack_require__(50194); - // Write BMP char or low surrogate. - dst[offset++] = codepoint & 0xff - dst[offset++] = codepoint >> 8 +var TypeError = global.TypeError; - return offset +var Result = function (stopped, result) { + this.stopped = stopped; + this.result = result; }; -Utf32Decoder.prototype.end = function () { - this.overflow.length = 0 -} +var ResultPrototype = Result.prototype; -// == 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'}); +module.exports = function (iterable, unboundFunction, options) { + var that = options && options.that; + var AS_ENTRIES = !!(options && options.AS_ENTRIES); + var IS_ITERATOR = !!(options && options.IS_ITERATOR); + var INTERRUPTED = !!(options && options.INTERRUPTED); + var fn = bind(unboundFunction, that); + var iterator, iterFn, index, length, result, next, step; -// Encoder prepends BOM (which can be overridden with (addBOM: false}). + var stop = function (condition) { + if (iterator) iteratorClose(iterator, 'normal', condition); + return new Result(true, condition); + }; -exports.utf32 = Utf32AutoCodec -exports.ucs4 = "utf32" + var callFn = function (value) { + if (AS_ENTRIES) { + anObject(value); + return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]); + } return INTERRUPTED ? fn(value, stop) : fn(value); + }; -function Utf32AutoCodec (options, iconv) { - this.iconv = iconv -} + if (IS_ITERATOR) { + iterator = iterable; + } else { + iterFn = getIteratorMethod(iterable); + if (!iterFn) throw TypeError(tryToString(iterable) + ' is not iterable'); + // optimisation for array iterators + if (isArrayIteratorMethod(iterFn)) { + for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) { + result = callFn(iterable[index]); + if (result && isPrototypeOf(ResultPrototype, result)) return result; + } return new Result(false); + } + iterator = getIterator(iterable, iterFn); + } -Utf32AutoCodec.prototype.encoder = Utf32AutoEncoder -Utf32AutoCodec.prototype.decoder = Utf32AutoDecoder + next = iterator.next; + while (!(step = call(next, iterator)).done) { + try { + result = callFn(step.value); + } catch (error) { + iteratorClose(iterator, 'throw', error); + } + if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result; + } return new Result(false); +}; -// -- Encoding -function Utf32AutoEncoder (options, codec) { - options = options || {} +/***/ }), - if (options.addBOM === undefined) { - options.addBOM = true - } +/***/ 50194: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - this.encoder = codec.iconv.getEncoder(options.defaultEncoding || "utf-32le", options) -} +var call = __webpack_require__(2834); +var anObject = __webpack_require__(34984); +var getMethod = __webpack_require__(51839); -Utf32AutoEncoder.prototype.write = function (str) { - return this.encoder.write(str) -} +module.exports = function (iterator, kind, value) { + var innerResult, innerError; + anObject(iterator); + try { + innerResult = getMethod(iterator, 'return'); + if (!innerResult) { + if (kind === 'throw') throw value; + return value; + } + innerResult = call(innerResult, iterator); + } catch (error) { + innerError = true; + innerResult = error; + } + if (kind === 'throw') throw value; + if (innerError) throw innerResult; + anObject(innerResult); + return value; +}; -Utf32AutoEncoder.prototype.end = function () { - return this.encoder.end() -} -// -- Decoding +/***/ }), -function Utf32AutoDecoder (options, codec) { - this.decoder = null - this.initialBufs = [] - this.initialBufsLen = 0 - this.options = options || {} - this.iconv = codec.iconv -} +/***/ 5844: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -Utf32AutoDecoder.prototype.write = function (buf) { - if (!this.decoder) { - // Codec is not chosen yet. Accumulate initial bytes. - this.initialBufs.push(buf) - this.initialBufsLen += buf.length +"use strict"; - if (this.initialBufsLen < 32) // We need more bytes to use space heuristic (see below) - { return "" } +var fails = __webpack_require__(47044); +var isCallable = __webpack_require__(94578); +var create = __webpack_require__(10819); +var getPrototypeOf = __webpack_require__(69548); +var redefine = __webpack_require__(13711); +var wellKnownSymbol = __webpack_require__(38688); +var IS_PURE = __webpack_require__(63432); - // We have enough bytes -> detect endianness. - var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding) - this.decoder = this.iconv.getDecoder(encoding, this.options) +var ITERATOR = wellKnownSymbol('iterator'); +var BUGGY_SAFARI_ITERATORS = false; - var resStr = "" - for (var i = 0; i < this.initialBufs.length; i++) { resStr += this.decoder.write(this.initialBufs[i]) } +// `%IteratorPrototype%` object +// https://tc39.es/ecma262/#sec-%iteratorprototype%-object +var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; - this.initialBufs.length = this.initialBufsLen = 0 - return resStr +/* eslint-disable es/no-array-prototype-keys -- safe */ +if ([].keys) { + arrayIterator = [].keys(); + // Safari 8 has buggy iterators w/o `next` + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; + else { + PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator)); + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; } - - return this.decoder.write(buf) } -Utf32AutoDecoder.prototype.end = function () { - if (!this.decoder) { - var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding) - this.decoder = this.iconv.getDecoder(encoding, this.options) +var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () { + var test = {}; + // FF44- legacy iterators case + return IteratorPrototype[ITERATOR].call(test) !== test; +}); - var resStr = "" - for (var i = 0; i < this.initialBufs.length; i++) { resStr += this.decoder.write(this.initialBufs[i]) } +if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {}; +else if (IS_PURE) IteratorPrototype = create(IteratorPrototype); - var trail = this.decoder.end() - if (trail) { resStr += trail } +// `%IteratorPrototype%[@@iterator]()` method +// https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator +if (!isCallable(IteratorPrototype[ITERATOR])) { + redefine(IteratorPrototype, ITERATOR, function () { + return this; + }); +} - this.initialBufs.length = this.initialBufsLen = 0 - return resStr - } +module.exports = { + IteratorPrototype: IteratorPrototype, + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS +}; - return this.decoder.end() -} -function detectEncoding (bufs, defaultEncoding) { - var b = [] - var charsProcessed = 0 - var invalidLE = 0; var invalidBE = 0 // Number of invalid chars when decoded as LE or BE. - var bmpCharsLE = 0; var bmpCharsBE = 0 // Number of BMP chars when decoded as LE or BE. +/***/ }), - outerLoop: - 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" - } - } +/***/ 15366: +/***/ (function(module) { - if (b[0] !== 0 || b[1] > 0x10) invalidBE++ - if (b[3] !== 0 || b[2] > 0x10) invalidLE++ +module.exports = {}; - 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++ - b.length = 0 - charsProcessed++ +/***/ }), - if (charsProcessed >= 100) { - break outerLoop - } - } - } - } +/***/ 45495: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Make decisions. - if (bmpCharsBE - invalidBE > bmpCharsLE - invalidLE) return "utf-32be" - if (bmpCharsBE - invalidBE < bmpCharsLE - invalidLE) return "utf-32le" +var toLength = __webpack_require__(23417); - // Couldn't decide (likely all zeros or not enough data). - return defaultEncoding || "utf-32le" -} +// `LengthOfArrayLike` abstract operation +// https://tc39.es/ecma262/#sec-lengthofarraylike +module.exports = function (obj) { + return toLength(obj.length); +}; /***/ }), -/***/ 24433: +/***/ 59804: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; - +var global = __webpack_require__(32010); +var bind = __webpack_require__(25567); +var getOwnPropertyDescriptor = (__webpack_require__(72062).f); +var macrotask = (__webpack_require__(6616).set); +var IS_IOS = __webpack_require__(17716); +var IS_IOS_PEBBLE = __webpack_require__(70573); +var IS_WEBOS_WEBKIT = __webpack_require__(664); +var IS_NODE = __webpack_require__(95053); -__webpack_require__(65292); -__webpack_require__(5597); -__webpack_require__(49063); -__webpack_require__(20731); -__webpack_require__(7585); -__webpack_require__(7283); -__webpack_require__(57444); -__webpack_require__(28331); -__webpack_require__(37309); -__webpack_require__(14032); -__webpack_require__(42437); -function ownKeys(object, enumerableOnly) { - var keys = Object.keys(object); - if (Object.getOwnPropertySymbols) { - var symbols = Object.getOwnPropertySymbols(object); - 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 = null != arguments[i] ? arguments[i] : {}; - i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { - _defineProperty(target, key, source[key]); - }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { - Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); - }); - } - return target; -} -function _defineProperty(obj, key, value) { - key = _toPropertyKey(key); - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } - return obj; -} -function _classCallCheck(instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError("Cannot call a class as a function"); - } -} -function _defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); - } -} -function _createClass(Constructor, protoProps, staticProps) { - if (protoProps) _defineProperties(Constructor.prototype, protoProps); - if (staticProps) _defineProperties(Constructor, staticProps); - Object.defineProperty(Constructor, "prototype", { - writable: false - }); - return Constructor; -} -function _toPropertyKey(arg) { - var key = _toPrimitive(arg, "string"); - return typeof key === "symbol" ? key : String(key); -} -function _toPrimitive(input, hint) { - if (typeof input !== "object" || input === null) return input; - var prim = input[Symbol.toPrimitive]; - if (prim !== undefined) { - var res = prim.call(input, hint || "default"); - if (typeof res !== "object") return res; - throw new TypeError("@@toPrimitive must return a primitive value."); - } - return (hint === "string" ? String : Number)(input); -} -var _require = __webpack_require__(14598), - Buffer = _require.Buffer; -var _require2 = __webpack_require__(63779), - inspect = _require2.inspect; -var custom = inspect && inspect.custom || 'inspect'; -function copyBuffer(src, target, offset) { - Buffer.prototype.copy.call(src, target, offset); -} -module.exports = /*#__PURE__*/function () { - function BufferList() { - _classCallCheck(this, BufferList); - this.head = null; - this.tail = null; - this.length = 0; - } - _createClass(BufferList, [{ - key: "push", - value: function push(v) { - var entry = { - data: v, - next: null - }; - if (this.length > 0) this.tail.next = entry;else this.head = entry; - this.tail = entry; - ++this.length; - } - }, { - key: "unshift", - value: function unshift(v) { - var entry = { - data: v, - next: this.head - }; - if (this.length === 0) this.tail = entry; - this.head = entry; - ++this.length; - } - }, { - key: "shift", - value: function shift() { - if (this.length === 0) return; - var ret = this.head.data; - if (this.length === 1) this.head = this.tail = null;else this.head = this.head.next; - --this.length; - return ret; - } - }, { - key: "clear", - value: function clear() { - this.head = this.tail = null; - this.length = 0; - } - }, { - key: "join", - value: function join(s) { - if (this.length === 0) return ''; - var p = this.head; - var ret = '' + p.data; - while (p = p.next) ret += s + p.data; - return ret; - } - }, { - key: "concat", - value: function concat(n) { - if (this.length === 0) return Buffer.alloc(0); - var ret = Buffer.allocUnsafe(n >>> 0); - var p = this.head; - var i = 0; - while (p) { - copyBuffer(p.data, ret, i); - i += p.data.length; - p = p.next; - } - return ret; - } +var MutationObserver = global.MutationObserver || global.WebKitMutationObserver; +var document = global.document; +var process = global.process; +var Promise = global.Promise; +// Node.js 11 shows ExperimentalWarning on getting `queueMicrotask` +var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask'); +var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value; - // Consumes a specified amount of bytes or characters from the buffered data. - }, { - key: "consume", - value: function consume(n, hasStrings) { - var ret; - if (n < this.head.data.length) { - // `slice` is the same for buffers and strings. - ret = this.head.data.slice(0, n); - this.head.data = this.head.data.slice(n); - } else if (n === this.head.data.length) { - // First chunk is a perfect match. - ret = this.shift(); - } else { - // Result spans more than one buffer. - ret = hasStrings ? this._getString(n) : this._getBuffer(n); - } - return ret; - } - }, { - key: "first", - value: function first() { - return this.head.data; - } +var flush, head, last, notify, toggle, node, promise, then; - // Consumes a specified amount of characters from the buffered data. - }, { - key: "_getString", - value: function _getString(n) { - var p = this.head; - var c = 1; - var ret = p.data; - n -= ret.length; - while (p = p.next) { - var str = p.data; - var nb = n > str.length ? str.length : n; - if (nb === str.length) ret += str;else ret += str.slice(0, n); - n -= nb; - if (n === 0) { - if (nb === str.length) { - ++c; - if (p.next) this.head = p.next;else this.head = this.tail = null; - } else { - this.head = p; - p.data = str.slice(nb); - } - break; - } - ++c; +// modern engines have queueMicrotask method +if (!queueMicrotask) { + flush = function () { + var parent, fn; + if (IS_NODE && (parent = process.domain)) parent.exit(); + while (head) { + fn = head.fn; + head = head.next; + try { + fn(); + } catch (error) { + if (head) notify(); + else last = undefined; + throw error; } - this.length -= c; - return ret; - } + } last = undefined; + if (parent) parent.enter(); + }; - // Consumes a specified amount of bytes from the buffered data. - }, { - key: "_getBuffer", - value: function _getBuffer(n) { - var ret = Buffer.allocUnsafe(n); - var p = this.head; - var c = 1; - p.data.copy(ret); - n -= p.data.length; - while (p = p.next) { - var buf = p.data; - var nb = n > buf.length ? buf.length : n; - buf.copy(ret, ret.length - n, 0, nb); - n -= nb; - if (n === 0) { - if (nb === buf.length) { - ++c; - if (p.next) this.head = p.next;else this.head = this.tail = null; - } else { - this.head = p; - p.data = buf.slice(nb); - } - break; - } - ++c; - } - this.length -= c; - return ret; - } + // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339 + // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898 + if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) { + toggle = true; + node = document.createTextNode(''); + new MutationObserver(flush).observe(node, { characterData: true }); + notify = function () { + node.data = toggle = !toggle; + }; + // environments with maybe non-completely correct, but existent Promise + } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) { + // Promise.resolve without an argument throws an error in LG WebOS 2 + promise = Promise.resolve(undefined); + // workaround of WebKit ~ iOS Safari 10.1 bug + promise.constructor = Promise; + then = bind(promise.then, promise); + notify = function () { + then(flush); + }; + // Node.js without promises + } else if (IS_NODE) { + notify = function () { + process.nextTick(flush); + }; + // for other environments - macrotask based on: + // - setImmediate + // - MessageChannel + // - window.postMessag + // - onreadystatechange + // - setTimeout + } else { + // strange IE + webpack dev server bug - use .bind(global) + macrotask = bind(macrotask, global); + notify = function () { + macrotask(flush); + }; + } +} + +module.exports = queueMicrotask || function (fn) { + var task = { fn: fn, next: undefined }; + if (last) last.next = task; + if (!head) { + head = task; + notify(); + } last = task; +}; - // Make sure the linked list only shows the minimal necessary information. - }, { - key: custom, - value: function value(_, options) { - return inspect(this, _objectSpread(_objectSpread({}, options), {}, { - // Only inspect one level. - depth: 0, - // It should not recurse. - customInspect: false - })); - } - }]); - return BufferList; -}(); /***/ }), -/***/ 24517: +/***/ 5155: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); + +module.exports = global.Promise; + + +/***/ }), + +/***/ 46887: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +/* eslint-disable es/no-symbol -- required for testing */ +var V8_VERSION = __webpack_require__(70091); +var fails = __webpack_require__(47044); + +// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing +module.exports = !!Object.getOwnPropertySymbols && !fails(function () { + var symbol = Symbol(); + // Chrome 38 Symbol has incorrect toString conversion + // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances + return !String(symbol) || !(Object(symbol) instanceof Symbol) || + // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances + !Symbol.sham && V8_VERSION && V8_VERSION < 41; +}); + + +/***/ }), + +/***/ 26168: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { +var global = __webpack_require__(32010); var isCallable = __webpack_require__(94578); +var inspectSource = __webpack_require__(10447); -module.exports = function (it) { - return typeof it == 'object' ? it !== null : isCallable(it); -}; +var WeakMap = global.WeakMap; + +module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap)); /***/ }), -/***/ 24597: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 56614: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var ArrayBufferViewCore = __webpack_require__(59754); -var apply = __webpack_require__(58448); -var $lastIndexOf = __webpack_require__(84320); +var aCallable = __webpack_require__(32631); -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var PromiseCapability = function (C) { + var resolve, reject; + this.promise = new C(function ($$resolve, $$reject) { + if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor'); + resolve = $$resolve; + reject = $$reject; + }); + this.resolve = aCallable(resolve); + this.reject = aCallable(reject); +}; -// `%TypedArray%.prototype.lastIndexOf` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.lastindexof -exportTypedArrayMethod('lastIndexOf', function lastIndexOf(searchElement /* , fromIndex */) { - var length = arguments.length; - return apply($lastIndexOf, aTypedArray(this), length > 1 ? [searchElement, arguments[1]] : [searchElement]); -}); +// `NewPromiseCapability` abstract operation +// https://tc39.es/ecma262/#sec-newpromisecapability +module.exports.f = function (C) { + return new PromiseCapability(C); +}; /***/ }), -/***/ 24663: +/***/ 86392: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var wellKnownSymbol = __webpack_require__(38688); +var toString = __webpack_require__(25096); -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -var test = {}; +module.exports = function (argument, $default) { + return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument); +}; -test[TO_STRING_TAG] = 'z'; -module.exports = String(test) === '[object z]'; +/***/ }), + +/***/ 93666: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var isRegExp = __webpack_require__(28831); + +var TypeError = global.TypeError; + +module.exports = function (it) { + if (isRegExp(it)) { + throw TypeError("The method doesn't accept regular expressions"); + } return it; +}; /***/ }), -/***/ 24766: +/***/ 59805: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var $c5L0i$base64js = __webpack_require__(32504); -var $c5L0i$unicodetrie = __webpack_require__(59006); +var global = __webpack_require__(32010); -function $parcel$interopDefault(a) { - return a && a.__esModule ? a.default : a; -} -function $parcel$defineInteropFlag(a) { - Object.defineProperty(a, '__esModule', {value: true, configurable: true}); -} -function $parcel$export(e, n, v, s) { - Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true}); -} +var globalIsFinite = global.isFinite; -$parcel$defineInteropFlag(module.exports); +// `Number.isFinite` method +// https://tc39.es/ecma262/#sec-number.isfinite +// eslint-disable-next-line es/no-number-isfinite -- safe +module.exports = Number.isFinite || function isFinite(it) { + return typeof it == 'number' && globalIsFinite(it); +}; -$parcel$export(module.exports, "getCategory", () => $43d7963e56408b24$export$410364bbb673ddbc); -$parcel$export(module.exports, "getCombiningClass", () => $43d7963e56408b24$export$c03b919c6651ed55); -$parcel$export(module.exports, "getScript", () => $43d7963e56408b24$export$941569448d136665); -$parcel$export(module.exports, "getEastAsianWidth", () => $43d7963e56408b24$export$92f6187db8ca6d26); -$parcel$export(module.exports, "getNumericValue", () => $43d7963e56408b24$export$7d1258ebb7625a0d); -$parcel$export(module.exports, "isAlphabetic", () => $43d7963e56408b24$export$52c8ea63abd07594); -$parcel$export(module.exports, "isDigit", () => $43d7963e56408b24$export$727d9dbc4fbb948f); -$parcel$export(module.exports, "isPunctuation", () => $43d7963e56408b24$export$a5b49f4dc6a07d2c); -$parcel$export(module.exports, "isLowerCase", () => $43d7963e56408b24$export$7b6804e8df61fcf5); -$parcel$export(module.exports, "isUpperCase", () => $43d7963e56408b24$export$aebd617640818cda); -$parcel$export(module.exports, "isTitleCase", () => $43d7963e56408b24$export$de8b4ee23b2cf823); -$parcel$export(module.exports, "isWhiteSpace", () => $43d7963e56408b24$export$3c52dd84024ae72c); -$parcel$export(module.exports, "isBaseForm", () => $43d7963e56408b24$export$a11bdcffe109e74b); -$parcel$export(module.exports, "isMark", () => $43d7963e56408b24$export$e33ad6871e762338); -$parcel$export(module.exports, "default", () => $43d7963e56408b24$export$2e2bcd8739ae039); +/***/ }), -var $29668e65f2091c2c$exports = {}; -$29668e65f2091c2c$exports = JSON.parse('{"categories":["Cc","Zs","Po","Sc","Ps","Pe","Sm","Pd","Nd","Lu","Sk","Pc","Ll","So","Lo","Pi","Cf","No","Pf","Lt","Lm","Mn","Me","Mc","Nl","Zl","Zp","Cs","Co"],"combiningClasses":["Not_Reordered","Above","Above_Right","Below","Attached_Above_Right","Attached_Below","Overlay","Iota_Subscript","Double_Below","Double_Above","Below_Right","Above_Left","CCC10","CCC11","CCC12","CCC13","CCC14","CCC15","CCC16","CCC17","CCC18","CCC19","CCC20","CCC21","CCC22","CCC23","CCC24","CCC25","CCC30","CCC31","CCC32","CCC27","CCC28","CCC29","CCC33","CCC34","CCC35","CCC36","Nukta","Virama","CCC84","CCC91","CCC103","CCC107","CCC118","CCC122","CCC129","CCC130","CCC132","Attached_Above","Below_Left","Left","Kana_Voicing","CCC26","Right"],"scripts":["Common","Latin","Bopomofo","Inherited","Greek","Coptic","Cyrillic","Armenian","Hebrew","Arabic","Syriac","Thaana","Nko","Samaritan","Mandaic","Devanagari","Bengali","Gurmukhi","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","Hangul","Ethiopic","Cherokee","Canadian_Aboriginal","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","Limbu","Tai_Le","New_Tai_Lue","Buginese","Tai_Tham","Balinese","Sundanese","Batak","Lepcha","Ol_Chiki","Braille","Glagolitic","Tifinagh","Han","Hiragana","Katakana","Yi","Lisu","Vai","Bamum","Syloti_Nagri","Phags_Pa","Saurashtra","Kayah_Li","Rejang","Javanese","Cham","Tai_Viet","Meetei_Mayek","null","Linear_B","Lycian","Carian","Old_Italic","Gothic","Old_Permic","Ugaritic","Old_Persian","Deseret","Shavian","Osmanya","Osage","Elbasan","Caucasian_Albanian","Linear_A","Cypriot","Imperial_Aramaic","Palmyrene","Nabataean","Hatran","Phoenician","Lydian","Meroitic_Hieroglyphs","Meroitic_Cursive","Kharoshthi","Old_South_Arabian","Old_North_Arabian","Manichaean","Avestan","Inscriptional_Parthian","Inscriptional_Pahlavi","Psalter_Pahlavi","Old_Turkic","Old_Hungarian","Hanifi_Rohingya","Old_Sogdian","Sogdian","Elymaic","Brahmi","Kaithi","Sora_Sompeng","Chakma","Mahajani","Sharada","Khojki","Multani","Khudawadi","Grantha","Newa","Tirhuta","Siddham","Modi","Takri","Ahom","Dogra","Warang_Citi","Nandinagari","Zanabazar_Square","Soyombo","Pau_Cin_Hau","Bhaiksuki","Marchen","Masaram_Gondi","Gunjala_Gondi","Makasar","Cuneiform","Egyptian_Hieroglyphs","Anatolian_Hieroglyphs","Mro","Bassa_Vah","Pahawh_Hmong","Medefaidrin","Miao","Tangut","Nushu","Duployan","SignWriting","Nyiakeng_Puachue_Hmong","Wancho","Mende_Kikakui","Adlam"],"eaw":["N","Na","A","W","H","F"]}'); +/***/ 87146: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +"use strict"; -const $43d7963e56408b24$var$trie = new (0, ($parcel$interopDefault($c5L0i$unicodetrie)))((0, ($parcel$interopDefault($c5L0i$base64js))).toByteArray("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")); -const $43d7963e56408b24$var$log2 = Math.log2 || ((n)=>Math.log(n) / Math.LN2); -const $43d7963e56408b24$var$bits = (n)=>$43d7963e56408b24$var$log2(n) + 1 | 0; -// compute the number of bits stored for each field -const $43d7963e56408b24$var$CATEGORY_BITS = $43d7963e56408b24$var$bits((0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).categories.length - 1); -const $43d7963e56408b24$var$COMBINING_BITS = $43d7963e56408b24$var$bits((0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).combiningClasses.length - 1); -const $43d7963e56408b24$var$SCRIPT_BITS = $43d7963e56408b24$var$bits((0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).scripts.length - 1); -const $43d7963e56408b24$var$EAW_BITS = $43d7963e56408b24$var$bits((0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).eaw.length - 1); -const $43d7963e56408b24$var$NUMBER_BITS = 10; -// compute shift and mask values for each field -const $43d7963e56408b24$var$CATEGORY_SHIFT = $43d7963e56408b24$var$COMBINING_BITS + $43d7963e56408b24$var$SCRIPT_BITS + $43d7963e56408b24$var$EAW_BITS + $43d7963e56408b24$var$NUMBER_BITS; -const $43d7963e56408b24$var$COMBINING_SHIFT = $43d7963e56408b24$var$SCRIPT_BITS + $43d7963e56408b24$var$EAW_BITS + $43d7963e56408b24$var$NUMBER_BITS; -const $43d7963e56408b24$var$SCRIPT_SHIFT = $43d7963e56408b24$var$EAW_BITS + $43d7963e56408b24$var$NUMBER_BITS; -const $43d7963e56408b24$var$EAW_SHIFT = $43d7963e56408b24$var$NUMBER_BITS; -const $43d7963e56408b24$var$CATEGORY_MASK = (1 << $43d7963e56408b24$var$CATEGORY_BITS) - 1; -const $43d7963e56408b24$var$COMBINING_MASK = (1 << $43d7963e56408b24$var$COMBINING_BITS) - 1; -const $43d7963e56408b24$var$SCRIPT_MASK = (1 << $43d7963e56408b24$var$SCRIPT_BITS) - 1; -const $43d7963e56408b24$var$EAW_MASK = (1 << $43d7963e56408b24$var$EAW_BITS) - 1; -const $43d7963e56408b24$var$NUMBER_MASK = (1 << $43d7963e56408b24$var$NUMBER_BITS) - 1; -function $43d7963e56408b24$export$410364bbb673ddbc(codePoint) { - const val = $43d7963e56408b24$var$trie.get(codePoint); - return (0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).categories[val >> $43d7963e56408b24$var$CATEGORY_SHIFT & $43d7963e56408b24$var$CATEGORY_MASK]; -} -function $43d7963e56408b24$export$c03b919c6651ed55(codePoint) { - const val = $43d7963e56408b24$var$trie.get(codePoint); - return (0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).combiningClasses[val >> $43d7963e56408b24$var$COMBINING_SHIFT & $43d7963e56408b24$var$COMBINING_MASK]; -} -function $43d7963e56408b24$export$941569448d136665(codePoint) { - const val = $43d7963e56408b24$var$trie.get(codePoint); - return (0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).scripts[val >> $43d7963e56408b24$var$SCRIPT_SHIFT & $43d7963e56408b24$var$SCRIPT_MASK]; -} -function $43d7963e56408b24$export$92f6187db8ca6d26(codePoint) { - const val = $43d7963e56408b24$var$trie.get(codePoint); - return (0, (/*@__PURE__*/$parcel$interopDefault($29668e65f2091c2c$exports))).eaw[val >> $43d7963e56408b24$var$EAW_SHIFT & $43d7963e56408b24$var$EAW_MASK]; -} -function $43d7963e56408b24$export$7d1258ebb7625a0d(codePoint) { - let val = $43d7963e56408b24$var$trie.get(codePoint); - let num = val & $43d7963e56408b24$var$NUMBER_MASK; - if (num === 0) return null; - else if (num <= 50) return num - 1; - else if (num < 0x1e0) { - const numerator = (num >> 4) - 12; - const denominator = (num & 0xf) + 1; - return numerator / denominator; - } else if (num < 0x300) { - val = (num >> 5) - 14; - let exp = (num & 0x1f) + 2; - while(exp > 0){ - val *= 10; - exp--; - } - return val; - } else { - val = (num >> 2) - 0xbf; - let exp = (num & 3) + 1; - while(exp > 0){ - val *= 60; - exp--; - } - return val; +var DESCRIPTORS = __webpack_require__(15567); +var uncurryThis = __webpack_require__(38347); +var call = __webpack_require__(2834); +var fails = __webpack_require__(47044); +var objectKeys = __webpack_require__(84675); +var getOwnPropertySymbolsModule = __webpack_require__(61146); +var propertyIsEnumerableModule = __webpack_require__(55574); +var toObject = __webpack_require__(43162); +var IndexedObject = __webpack_require__(7514); + +// eslint-disable-next-line es/no-object-assign -- safe +var $assign = Object.assign; +// eslint-disable-next-line es/no-object-defineproperty -- required for testing +var defineProperty = Object.defineProperty; +var concat = uncurryThis([].concat); + +// `Object.assign` method +// https://tc39.es/ecma262/#sec-object.assign +module.exports = !$assign || fails(function () { + // should have correct order of operations (Edge bug) + if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', { + enumerable: true, + get: function () { + defineProperty(this, 'b', { + value: 3, + enumerable: false + }); } -} -function $43d7963e56408b24$export$52c8ea63abd07594(codePoint) { - const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint); - return category === "Lu" || category === "Ll" || category === "Lt" || category === "Lm" || category === "Lo" || category === "Nl"; -} -function $43d7963e56408b24$export$727d9dbc4fbb948f(codePoint) { - return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Nd"; -} -function $43d7963e56408b24$export$a5b49f4dc6a07d2c(codePoint) { - const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint); - return category === "Pc" || category === "Pd" || category === "Pe" || category === "Pf" || category === "Pi" || category === "Po" || category === "Ps"; -} -function $43d7963e56408b24$export$7b6804e8df61fcf5(codePoint) { - return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Ll"; -} -function $43d7963e56408b24$export$aebd617640818cda(codePoint) { - return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Lu"; -} -function $43d7963e56408b24$export$de8b4ee23b2cf823(codePoint) { - return $43d7963e56408b24$export$410364bbb673ddbc(codePoint) === "Lt"; -} -function $43d7963e56408b24$export$3c52dd84024ae72c(codePoint) { - const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint); - return category === "Zs" || category === "Zl" || category === "Zp"; -} -function $43d7963e56408b24$export$a11bdcffe109e74b(codePoint) { - const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint); - return category === "Nd" || category === "No" || category === "Nl" || category === "Lu" || category === "Ll" || category === "Lt" || category === "Lm" || category === "Lo" || category === "Me" || category === "Mc"; -} -function $43d7963e56408b24$export$e33ad6871e762338(codePoint) { - const category = $43d7963e56408b24$export$410364bbb673ddbc(codePoint); - return category === "Mn" || category === "Me" || category === "Mc"; -} -var // Backwards compatibility. -$43d7963e56408b24$export$2e2bcd8739ae039 = { - getCategory: $43d7963e56408b24$export$410364bbb673ddbc, - getCombiningClass: $43d7963e56408b24$export$c03b919c6651ed55, - getScript: $43d7963e56408b24$export$941569448d136665, - getEastAsianWidth: $43d7963e56408b24$export$92f6187db8ca6d26, - getNumericValue: $43d7963e56408b24$export$7d1258ebb7625a0d, - isAlphabetic: $43d7963e56408b24$export$52c8ea63abd07594, - isDigit: $43d7963e56408b24$export$727d9dbc4fbb948f, - isPunctuation: $43d7963e56408b24$export$a5b49f4dc6a07d2c, - isLowerCase: $43d7963e56408b24$export$7b6804e8df61fcf5, - isUpperCase: $43d7963e56408b24$export$aebd617640818cda, - isTitleCase: $43d7963e56408b24$export$de8b4ee23b2cf823, - isWhiteSpace: $43d7963e56408b24$export$3c52dd84024ae72c, - isBaseForm: $43d7963e56408b24$export$a11bdcffe109e74b, - isMark: $43d7963e56408b24$export$e33ad6871e762338 + }), { b: 2 })).b !== 1) return true; + // should work with symbols and should have deterministic property order (V8 bug) + var A = {}; + var B = {}; + // eslint-disable-next-line es/no-symbol -- safe + var symbol = Symbol(); + var alphabet = 'abcdefghijklmnopqrst'; + A[symbol] = 7; + alphabet.split('').forEach(function (chr) { B[chr] = chr; }); + return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet; +}) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length` + var T = toObject(target); + var argumentsLength = arguments.length; + var index = 1; + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + var propertyIsEnumerable = propertyIsEnumerableModule.f; + while (argumentsLength > index) { + var S = IndexedObject(arguments[index++]); + var keys = getOwnPropertySymbols ? concat(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S); + var length = keys.length; + var j = 0; + var key; + while (length > j) { + key = keys[j++]; + if (!DESCRIPTORS || call(propertyIsEnumerable, S, key)) T[key] = S[key]; + } + } return T; +} : $assign; + + +/***/ }), + +/***/ 10819: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +/* global ActiveXObject -- old IE, WSH */ +var anObject = __webpack_require__(34984); +var defineProperties = __webpack_require__(10196); +var enumBugKeys = __webpack_require__(2416); +var hiddenKeys = __webpack_require__(90682); +var html = __webpack_require__(520); +var documentCreateElement = __webpack_require__(12072); +var sharedKey = __webpack_require__(82194); + +var GT = '>'; +var LT = '<'; +var PROTOTYPE = 'prototype'; +var SCRIPT = 'script'; +var IE_PROTO = sharedKey('IE_PROTO'); + +var EmptyConstructor = function () { /* empty */ }; + +var scriptTag = function (content) { + return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT; +}; + +// Create object with fake `null` prototype: use ActiveX Object with cleared prototype +var NullProtoObjectViaActiveX = function (activeXDocument) { + activeXDocument.write(scriptTag('')); + activeXDocument.close(); + var temp = activeXDocument.parentWindow.Object; + activeXDocument = null; // avoid memory leak + return temp; +}; + +// Create object with fake `null` prototype: use iframe Object with cleared prototype +var NullProtoObjectViaIFrame = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var JS = 'java' + SCRIPT + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + // https://github.com/zloirock/core-js/issues/475 + iframe.src = String(JS); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(scriptTag('document.F=Object')); + iframeDocument.close(); + return iframeDocument.F; +}; + +// Check for document.domain and active x support +// No need to use active x approach when document.domain is not set +// see https://github.com/es-shims/es5-shim/issues/150 +// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346 +// avoid IE GC bug +var activeXDocument; +var NullProtoObject = function () { + try { + activeXDocument = new ActiveXObject('htmlfile'); + } catch (error) { /* ignore */ } + NullProtoObject = typeof document != 'undefined' + ? document.domain && activeXDocument + ? NullProtoObjectViaActiveX(activeXDocument) // old IE + : NullProtoObjectViaIFrame() + : NullProtoObjectViaActiveX(activeXDocument); // WSH + var length = enumBugKeys.length; + while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]]; + return NullProtoObject(); }; +hiddenKeys[IE_PROTO] = true; +// `Object.create` method +// https://tc39.es/ecma262/#sec-object.create +module.exports = Object.create || function create(O, Properties) { + var result; + if (O !== null) { + EmptyConstructor[PROTOTYPE] = anObject(O); + result = new EmptyConstructor(); + EmptyConstructor[PROTOTYPE] = null; + // add "__proto__" for Object.getPrototypeOf polyfill + result[IE_PROTO] = O; + } else result = NullProtoObject(); + return Properties === undefined ? result : defineProperties(result, Properties); +}; /***/ }), -/***/ 24863: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 10196: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { var DESCRIPTORS = __webpack_require__(15567); -var FUNCTION_NAME_EXISTS = (__webpack_require__(7081).EXISTS); -var uncurryThis = __webpack_require__(38347); -var defineProperty = (__webpack_require__(95892).f); - -var FunctionPrototype = Function.prototype; -var functionToString = uncurryThis(FunctionPrototype.toString); -var nameRE = /^\s*function ([^ (]*)/; -var regExpExec = uncurryThis(nameRE.exec); -var NAME = 'name'; +var definePropertyModule = __webpack_require__(95892); +var anObject = __webpack_require__(34984); +var toIndexedObject = __webpack_require__(98086); +var objectKeys = __webpack_require__(84675); -// Function instances `.name` property -// https://tc39.es/ecma262/#sec-function-instances-name -if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) { - defineProperty(FunctionPrototype, NAME, { - configurable: true, - get: function () { - try { - return regExpExec(nameRE, functionToString(this))[1]; - } catch (error) { - return ''; - } - } - }); -} +// `Object.defineProperties` method +// https://tc39.es/ecma262/#sec-object.defineproperties +// eslint-disable-next-line es/no-object-defineproperties -- safe +module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + var props = toIndexedObject(Properties); + var keys = objectKeys(Properties); + var length = keys.length; + var index = 0; + var key; + while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]); + return O; +}; /***/ }), -/***/ 25096: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 95892: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { var global = __webpack_require__(32010); -var classof = __webpack_require__(52564); +var DESCRIPTORS = __webpack_require__(15567); +var IE8_DOM_DEFINE = __webpack_require__(18904); +var anObject = __webpack_require__(34984); +var toPropertyKey = __webpack_require__(63918); -var String = global.String; +var TypeError = global.TypeError; +// eslint-disable-next-line es/no-object-defineproperty -- safe +var $defineProperty = Object.defineProperty; -module.exports = function (argument) { - if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string'); - return String(argument); +// `Object.defineProperty` method +// https://tc39.es/ecma262/#sec-object.defineproperty +exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPropertyKey(P); + anObject(Attributes); + if (IE8_DOM_DEFINE) try { + return $defineProperty(O, P, Attributes); + } catch (error) { /* empty */ } + if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; }; /***/ }), -/***/ 25567: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 72062: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { -var uncurryThis = __webpack_require__(38347); -var aCallable = __webpack_require__(32631); +var DESCRIPTORS = __webpack_require__(15567); +var call = __webpack_require__(2834); +var propertyIsEnumerableModule = __webpack_require__(55574); +var createPropertyDescriptor = __webpack_require__(97841); +var toIndexedObject = __webpack_require__(98086); +var toPropertyKey = __webpack_require__(63918); +var hasOwn = __webpack_require__(20340); +var IE8_DOM_DEFINE = __webpack_require__(18904); -var bind = uncurryThis(uncurryThis.bind); +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; -// optional / simple context binding -module.exports = function (fn, that) { - aCallable(fn); - return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) { - return fn.apply(that, arguments); - }; +// `Object.getOwnPropertyDescriptor` method +// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor +exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPropertyKey(P); + if (IE8_DOM_DEFINE) try { + return $getOwnPropertyDescriptor(O, P); + } catch (error) { /* empty */ } + if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]); }; /***/ }), -/***/ 26168: +/***/ 8807: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); -var inspectSource = __webpack_require__(10447); +/* eslint-disable es/no-object-getownpropertynames -- safe */ +var classof = __webpack_require__(93975); +var toIndexedObject = __webpack_require__(98086); +var $getOwnPropertyNames = (__webpack_require__(6611).f); +var arraySlice = __webpack_require__(73163); -var WeakMap = global.WeakMap; +var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames + ? Object.getOwnPropertyNames(window) : []; -module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap)); +var getWindowNames = function (it) { + try { + return $getOwnPropertyNames(it); + } catch (error) { + return arraySlice(windowNames); + } +}; + +// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window +module.exports.f = function getOwnPropertyNames(it) { + return windowNames && classof(it) == 'Window' + ? getWindowNames(it) + : $getOwnPropertyNames(toIndexedObject(it)); +}; /***/ }), -/***/ 26326: +/***/ 6611: /***/ (function(__unused_webpack_module, exports, __webpack_require__) { -"use strict"; - - -var mergeModules = __webpack_require__(3919) +var internalObjectKeys = __webpack_require__(64429); +var enumBugKeys = __webpack_require__(2416); -// 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__(16793), - __webpack_require__(24162), - __webpack_require__(17100), - __webpack_require__(11326), - __webpack_require__(99948), - __webpack_require__(99900), - __webpack_require__(81492), - __webpack_require__(35143), - __webpack_require__(90481) -] +var hiddenKeys = enumBugKeys.concat('length', 'prototype'); -// Put all encoding/alias/codec definitions to single object and export it. -for (var i = 0; i < modules.length; i++) { - var module = modules[i] - mergeModules(exports, module) -} +// `Object.getOwnPropertyNames` method +// https://tc39.es/ecma262/#sec-object.getownpropertynames +// eslint-disable-next-line es/no-object-getownpropertynames -- safe +exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return internalObjectKeys(O, hiddenKeys); +}; /***/ }), -/***/ 26601: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var setFunctionLength = __webpack_require__(86255); - -var $defineProperty = __webpack_require__(56649); - -var callBindBasic = __webpack_require__(36688); -var applyBind = __webpack_require__(28619); - -module.exports = function callBind(originalFunction) { - var func = callBindBasic(arguments); - var adjustedLength = originalFunction.length - (arguments.length - 1); - return setFunctionLength( - func, - 1 + (adjustedLength > 0 ? adjustedLength : 0), - true - ); -}; +/***/ 61146: +/***/ (function(__unused_webpack_module, exports) { -if ($defineProperty) { - $defineProperty(module.exports, 'apply', { value: applyBind }); -} else { - module.exports.apply = applyBind; -} +// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe +exports.f = Object.getOwnPropertySymbols; /***/ }), -/***/ 26626: +/***/ 69548: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; - +var global = __webpack_require__(32010); +var hasOwn = __webpack_require__(20340); +var isCallable = __webpack_require__(94578); +var toObject = __webpack_require__(43162); +var sharedKey = __webpack_require__(82194); +var CORRECT_PROTOTYPE_GETTER = __webpack_require__(68494); -var hasSymbols = __webpack_require__(12843); +var IE_PROTO = sharedKey('IE_PROTO'); +var Object = global.Object; +var ObjectPrototype = Object.prototype; -/** @type {import('.')} */ -module.exports = function hasToStringTagShams() { - return hasSymbols() && !!Symbol.toStringTag; +// `Object.getPrototypeOf` method +// https://tc39.es/ecma262/#sec-object.getprototypeof +module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) { + var object = toObject(O); + if (hasOwn(object, IE_PROTO)) return object[IE_PROTO]; + var constructor = object.constructor; + if (isCallable(constructor) && object instanceof constructor) { + return constructor.prototype; + } return object instanceof Object ? ObjectPrototype : null; }; /***/ }), -/***/ 26663: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; +/***/ 70176: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var $ = __webpack_require__(56475); -var codeAt = (__webpack_require__(69510).codeAt); +var uncurryThis = __webpack_require__(38347); -// `String.prototype.codePointAt` method -// https://tc39.es/ecma262/#sec-string.prototype.codepointat -$({ target: 'String', proto: true }, { - codePointAt: function codePointAt(pos) { - return codeAt(this, pos); - } -}); +module.exports = uncurryThis({}.isPrototypeOf); /***/ }), -/***/ 26882: -/***/ (function(module) { +/***/ 64429: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var ceil = Math.ceil; -var floor = Math.floor; +var uncurryThis = __webpack_require__(38347); +var hasOwn = __webpack_require__(20340); +var toIndexedObject = __webpack_require__(98086); +var indexOf = (__webpack_require__(12636).indexOf); +var hiddenKeys = __webpack_require__(90682); -// `ToIntegerOrInfinity` abstract operation -// https://tc39.es/ecma262/#sec-tointegerorinfinity -module.exports = function (argument) { - var number = +argument; - // eslint-disable-next-line no-self-compare -- safe - return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number); +var push = uncurryThis([].push); + +module.exports = function (object, names) { + var O = toIndexedObject(object); + var i = 0; + var result = []; + var key; + for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key); + // Don't enum bug & hidden keys + while (names.length > i) if (hasOwn(O, key = names[i++])) { + ~indexOf(result, key) || push(result, key); + } + return result; }; /***/ }), -/***/ 27754: +/***/ 84675: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var anObject = __webpack_require__(34984); -var aConstructor = __webpack_require__(69075); -var wellKnownSymbol = __webpack_require__(38688); - -var SPECIES = wellKnownSymbol('species'); +var internalObjectKeys = __webpack_require__(64429); +var enumBugKeys = __webpack_require__(2416); -// `SpeciesConstructor` abstract operation -// https://tc39.es/ecma262/#sec-speciesconstructor -module.exports = function (O, defaultConstructor) { - var C = anObject(O).constructor; - var S; - return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S); +// `Object.keys` method +// https://tc39.es/ecma262/#sec-object.keys +// eslint-disable-next-line es/no-object-keys -- safe +module.exports = Object.keys || function keys(O) { + return internalObjectKeys(O, enumBugKeys); }; /***/ }), -/***/ 27772: -/***/ (function(module, exports, __webpack_require__) { +/***/ 55574: +/***/ (function(__unused_webpack_module, exports) { "use strict"; +var $propertyIsEnumerable = {}.propertyIsEnumerable; +// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe +var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909), __webpack_require__(51965)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - var SHA512 = C_algo.SHA512; - - /** - * SHA-384 hash algorithm. - */ - var SHA384 = C_algo.SHA384 = SHA512.extend({ - _doReset: function _doReset() { - this._hash = new X64WordArray.init([new X64Word.init(0xcbbb9d5d, 0xc1059ed8), new X64Word.init(0x629a292a, 0x367cd507), new X64Word.init(0x9159015a, 0x3070dd17), new X64Word.init(0x152fecd8, 0xf70e5939), new X64Word.init(0x67332667, 0xffc00b31), new X64Word.init(0x8eb44a87, 0x68581511), new X64Word.init(0xdb0c2e0d, 0x64f98fa7), new X64Word.init(0x47b5481d, 0xbefa4fa4)]); - }, - _doFinalize: function _doFinalize() { - var hash = SHA512._doFinalize.call(this); - hash.sigBytes -= 16; - return hash; - } - }); +// Nashorn ~ JDK8 bug +var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1); - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA384('message'); - * var hash = CryptoJS.SHA384(wordArray); - */ - C.SHA384 = SHA512._createHelper(SHA384); +// `Object.prototype.propertyIsEnumerable` method implementation +// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable +exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { + var descriptor = getOwnPropertyDescriptor(this, V); + return !!descriptor && descriptor.enumerable; +} : $propertyIsEnumerable; - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA384(message, key); - */ - C.HmacSHA384 = SHA512._createHmacHelper(SHA384); - })(); - return CryptoJS.SHA384; -}); /***/ }), -/***/ 28164: -/***/ (function(module, exports, __webpack_require__) { +/***/ 3840: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +/* eslint-disable no-proto -- safe */ +var uncurryThis = __webpack_require__(38347); +var anObject = __webpack_require__(34984); +var aPossiblePrototype = __webpack_require__(58659); +// `Object.setPrototypeOf` method +// https://tc39.es/ecma262/#sec-object.setprototypeof +// Works with __proto__ only. Old v8 can't work with null proto objects. +// eslint-disable-next-line es/no-object-setprototypeof -- safe +module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () { + var CORRECT_SETTER = false; + var test = {}; + var setter; + try { + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe + setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set); + setter(test, []); + CORRECT_SETTER = test instanceof Array; + } catch (error) { /* empty */ } + return function setPrototypeOf(O, proto) { + anObject(O); + aPossiblePrototype(proto); + if (CORRECT_SETTER) setter(O, proto); + else O.__proto__ = proto; + return O; + }; +}() : undefined); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** - * ANSI X.923 padding strategy. - */ - CryptoJS.pad.AnsiX923 = { - pad: function pad(data, blockSize) { - // Shortcuts - var dataSigBytes = data.sigBytes; - var blockSizeBytes = blockSize * 4; - // Count padding bytes - var nPaddingBytes = blockSizeBytes - dataSigBytes % blockSizeBytes; +/***/ }), - // Compute last byte position - var lastBytePos = dataSigBytes + nPaddingBytes - 1; +/***/ 80754: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Pad - data.clamp(); - data.words[lastBytePos >>> 2] |= nPaddingBytes << 24 - lastBytePos % 4 * 8; - data.sigBytes += nPaddingBytes; - }, - unpad: function unpad(data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[data.sigBytes - 1 >>> 2] & 0xff; +var DESCRIPTORS = __webpack_require__(15567); +var uncurryThis = __webpack_require__(38347); +var objectKeys = __webpack_require__(84675); +var toIndexedObject = __webpack_require__(98086); +var $propertyIsEnumerable = (__webpack_require__(55574).f); - // Remove padding - data.sigBytes -= nPaddingBytes; +var propertyIsEnumerable = uncurryThis($propertyIsEnumerable); +var push = uncurryThis([].push); + +// `Object.{ entries, values }` methods implementation +var createMethod = function (TO_ENTRIES) { + return function (it) { + var O = toIndexedObject(it); + var keys = objectKeys(O); + var length = keys.length; + var i = 0; + var result = []; + var key; + while (length > i) { + key = keys[i++]; + if (!DESCRIPTORS || propertyIsEnumerable(O, key)) { + push(result, TO_ENTRIES ? [key, O[key]] : O[key]); + } } + return result; }; - return CryptoJS.pad.Ansix923; -}); - -/***/ }), - -/***/ 28264: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var $ = __webpack_require__(56475); -var repeat = __webpack_require__(34858); +}; -// `String.prototype.repeat` method -// https://tc39.es/ecma262/#sec-string.prototype.repeat -$({ target: 'String', proto: true }, { - repeat: repeat -}); +module.exports = { + // `Object.entries` method + // https://tc39.es/ecma262/#sec-object.entries + entries: createMethod(true), + // `Object.values` method + // https://tc39.es/ecma262/#sec-object.values + values: createMethod(false) +}; /***/ }), -/***/ 28284: +/***/ 52598: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); +var classof = __webpack_require__(52564); -var isArray = (__webpack_require__(91867).isArray); +// `Object.prototype.toString` method implementation +// https://tc39.es/ecma262/#sec-object.prototype.tostring +module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { + return '[object ' + classof(this) + ']'; +}; -function typeName(bold, italics) { - var type = 'normal'; - if (bold && italics) { - type = 'bolditalics'; - } else if (bold) { - type = 'bold'; - } else if (italics) { - type = 'italics'; - } - return type; -} -function FontProvider(fontDescriptors, pdfKitDoc) { - this.fonts = {}; - this.pdfKitDoc = pdfKitDoc; - this.fontCache = {}; +/***/ }), - for (var font in fontDescriptors) { - if (fontDescriptors.hasOwnProperty(font)) { - var fontDef = fontDescriptors[font]; +/***/ 39629: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - this.fonts[font] = { - normal: fontDef.normal, - bold: fontDef.bold, - italics: fontDef.italics, - bolditalics: fontDef.bolditalics - }; - } - } -} +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); -FontProvider.prototype.getFontType = function (bold, italics) { - return typeName(bold, italics); +var TypeError = global.TypeError; + +// `OrdinaryToPrimitive` abstract operation +// https://tc39.es/ecma262/#sec-ordinarytoprimitive +module.exports = function (input, pref) { + var fn, val; + if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; + if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val; + if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; + throw TypeError("Can't convert object to primitive value"); }; -FontProvider.prototype.getFontFile = function (familyName, bold, italics) { - var type = this.getFontType(bold, italics); - if (!this.fonts[familyName] || !this.fonts[familyName][type]) { - return null; - } - return this.fonts[familyName][type]; -}; +/***/ }), -FontProvider.prototype.provideFont = function (familyName, bold, italics) { - var type = this.getFontType(bold, italics); - if (this.getFontFile(familyName, bold, italics) === null) { - throw new Error('Font \'' + familyName + '\' in style \'' + type + '\' is not defined in the font section of the document definition.'); - } +/***/ 21594: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - this.fontCache[familyName] = this.fontCache[familyName] || {}; +var getBuiltIn = __webpack_require__(38486); +var uncurryThis = __webpack_require__(38347); +var getOwnPropertyNamesModule = __webpack_require__(6611); +var getOwnPropertySymbolsModule = __webpack_require__(61146); +var anObject = __webpack_require__(34984); - if (!this.fontCache[familyName][type]) { - var def = this.fonts[familyName][type]; - if (!isArray(def)) { - def = [def]; - } - this.fontCache[familyName][type] = this.pdfKitDoc.font.apply(this.pdfKitDoc, def)._font; - } +var concat = uncurryThis([].concat); - return this.fontCache[familyName][type]; +// all object keys, includes non-enumerable and symbols +module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) { + var keys = getOwnPropertyNamesModule.f(anObject(it)); + var getOwnPropertySymbols = getOwnPropertySymbolsModule.f; + return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys; }; -module.exports = FontProvider; - /***/ }), -/***/ 28331: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 11206: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var $ = __webpack_require__(56475); -var DESCRIPTORS = __webpack_require__(15567); -var ownKeys = __webpack_require__(21594); -var toIndexedObject = __webpack_require__(98086); -var getOwnPropertyDescriptorModule = __webpack_require__(72062); -var createProperty = __webpack_require__(38639); +var global = __webpack_require__(32010); -// `Object.getOwnPropertyDescriptors` method -// https://tc39.es/ecma262/#sec-object.getownpropertydescriptors -$({ target: 'Object', stat: true, sham: !DESCRIPTORS }, { - getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) { - var O = toIndexedObject(object); - var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; - var keys = ownKeys(O); - var result = {}; - var index = 0; - var key, descriptor; - while (keys.length > index) { - descriptor = getOwnPropertyDescriptor(O, key = keys[index++]); - if (descriptor !== undefined) createProperty(result, key, descriptor); - } - return result; - } -}); +module.exports = global; /***/ }), -/***/ 28356: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var $ = __webpack_require__(56475); -var createHTML = __webpack_require__(91159); -var forcedStringHTMLMethod = __webpack_require__(7452); +/***/ 61900: +/***/ (function(module) { -// `String.prototype.bold` method -// https://tc39.es/ecma262/#sec-string.prototype.bold -$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('bold') }, { - bold: function bold() { - return createHTML(this, 'b', '', ''); +module.exports = function (exec) { + try { + return { error: false, value: exec() }; + } catch (error) { + return { error: true, value: error }; } -}); +}; /***/ }), @@ -37871,3424 +31374,2502 @@ module.exports = function (C, x) { /***/ }), -/***/ 28619: +/***/ 15341: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; - - -var bind = __webpack_require__(5049); -var $apply = __webpack_require__(73036); -var actualApply = __webpack_require__(17802); +var redefine = __webpack_require__(13711); -/** @type {import('./applyBind')} */ -module.exports = function applyBind() { - return actualApply(bind, $apply, arguments); +module.exports = function (target, src, options) { + for (var key in src) redefine(target, key, src[key], options); + return target; }; /***/ }), -/***/ 28651: +/***/ 13711: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; - +var global = __webpack_require__(32010); +var isCallable = __webpack_require__(94578); +var hasOwn = __webpack_require__(20340); +var createNonEnumerableProperty = __webpack_require__(48914); +var setGlobal = __webpack_require__(7421); +var inspectSource = __webpack_require__(10447); +var InternalStateModule = __webpack_require__(70172); +var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(7081).CONFIGURABLE); -var undefined; +var getInternalState = InternalStateModule.get; +var enforceInternalState = InternalStateModule.enforce; +var TEMPLATE = String(String).split('String'); -var $Object = __webpack_require__(75846); +(module.exports = function (O, key, value, options) { + var unsafe = options ? !!options.unsafe : false; + var simple = options ? !!options.enumerable : false; + var noTargetGet = options ? !!options.noTargetGet : false; + var name = options && options.name !== undefined ? options.name : key; + var state; + if (isCallable(value)) { + if (String(name).slice(0, 7) === 'Symbol(') { + name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']'; + } + if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) { + createNonEnumerableProperty(value, 'name', name); + } + state = enforceInternalState(value); + if (!state.source) { + state.source = TEMPLATE.join(typeof name == 'string' ? name : ''); + } + } + if (O === global) { + if (simple) O[key] = value; + else setGlobal(key, value); + return; + } else if (!unsafe) { + delete O[key]; + } else if (!noTargetGet && O[key]) { + simple = true; + } + if (simple) O[key] = value; + else createNonEnumerableProperty(O, key, value); +// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative +})(Function.prototype, 'toString', function toString() { + return isCallable(this) && getInternalState(this).source || inspectSource(this); +}); -var $Error = __webpack_require__(15293); -var $EvalError = __webpack_require__(29055); -var $RangeError = __webpack_require__(18888); -var $ReferenceError = __webpack_require__(47900); -var $SyntaxError = __webpack_require__(57770); -var $TypeError = __webpack_require__(96785); -var $URIError = __webpack_require__(54055); -var abs = __webpack_require__(50716); -var floor = __webpack_require__(77450); -var max = __webpack_require__(3774); -var min = __webpack_require__(47552); -var pow = __webpack_require__(75874); -var round = __webpack_require__(19292); -var sign = __webpack_require__(46071); +/***/ }), -var $Function = Function; +/***/ 66723: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -// eslint-disable-next-line consistent-return -var getEvalledConstructor = function (expressionSyntax) { - try { - return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); - } catch (e) {} -}; +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var anObject = __webpack_require__(34984); +var isCallable = __webpack_require__(94578); +var classof = __webpack_require__(93975); +var regexpExec = __webpack_require__(49820); -var $gOPD = __webpack_require__(68109); -var $defineProperty = __webpack_require__(56649); +var TypeError = global.TypeError; -var throwTypeError = function () { - throw new $TypeError(); +// `RegExpExec` abstract operation +// https://tc39.es/ecma262/#sec-regexpexec +module.exports = function (R, S) { + var exec = R.exec; + if (isCallable(exec)) { + var result = call(exec, R, S); + if (result !== null) anObject(result); + return result; + } + if (classof(R) === 'RegExp') return call(regexpExec, R, S); + throw TypeError('RegExp#exec called on incompatible receiver'); }; -var ThrowTypeError = $gOPD - ? (function () { - try { - // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties - arguments.callee; // IE 8 does not throw here - return throwTypeError; - } catch (calleeThrows) { - try { - // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') - return $gOPD(arguments, 'callee').get; - } catch (gOPDthrows) { - return throwTypeError; - } - } - }()) - : throwTypeError; - -var hasSymbols = __webpack_require__(73257)(); - -var getProto = __webpack_require__(87106); -var $ObjectGPO = __webpack_require__(33766); -var $ReflectGPO = __webpack_require__(86822); -var $apply = __webpack_require__(73036); -var $call = __webpack_require__(10078); - -var needsEval = {}; - -var TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array); - -var INTRINSICS = { - __proto__: null, - '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError, - '%Array%': Array, - '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer, - '%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined, - '%AsyncFromSyncIteratorPrototype%': undefined, - '%AsyncFunction%': needsEval, - '%AsyncGenerator%': needsEval, - '%AsyncGeneratorFunction%': needsEval, - '%AsyncIteratorPrototype%': needsEval, - '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics, - '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt, - '%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array, - '%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array, - '%Boolean%': Boolean, - '%DataView%': typeof DataView === 'undefined' ? undefined : DataView, - '%Date%': Date, - '%decodeURI%': decodeURI, - '%decodeURIComponent%': decodeURIComponent, - '%encodeURI%': encodeURI, - '%encodeURIComponent%': encodeURIComponent, - '%Error%': $Error, - '%eval%': eval, // eslint-disable-line no-eval - '%EvalError%': $EvalError, - '%Float16Array%': typeof Float16Array === 'undefined' ? undefined : Float16Array, - '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array, - '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array, - '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry, - '%Function%': $Function, - '%GeneratorFunction%': needsEval, - '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array, - '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array, - '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array, - '%isFinite%': isFinite, - '%isNaN%': isNaN, - '%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined, - '%JSON%': typeof JSON === 'object' ? JSON : undefined, - '%Map%': typeof Map === 'undefined' ? undefined : Map, - '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()), - '%Math%': Math, - '%Number%': Number, - '%Object%': $Object, - '%Object.getOwnPropertyDescriptor%': $gOPD, - '%parseFloat%': parseFloat, - '%parseInt%': parseInt, - '%Promise%': typeof Promise === 'undefined' ? undefined : Promise, - '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy, - '%RangeError%': $RangeError, - '%ReferenceError%': $ReferenceError, - '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect, - '%RegExp%': RegExp, - '%Set%': typeof Set === 'undefined' ? undefined : Set, - '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()), - '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer, - '%String%': String, - '%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined, - '%Symbol%': hasSymbols ? Symbol : undefined, - '%SyntaxError%': $SyntaxError, - '%ThrowTypeError%': ThrowTypeError, - '%TypedArray%': TypedArray, - '%TypeError%': $TypeError, - '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array, - '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray, - '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array, - '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array, - '%URIError%': $URIError, - '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, - '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, - '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet, - - '%Function.prototype.call%': $call, - '%Function.prototype.apply%': $apply, - '%Object.defineProperty%': $defineProperty, - '%Object.getPrototypeOf%': $ObjectGPO, - '%Math.abs%': abs, - '%Math.floor%': floor, - '%Math.max%': max, - '%Math.min%': min, - '%Math.pow%': pow, - '%Math.round%': round, - '%Math.sign%': sign, - '%Reflect.getPrototypeOf%': $ReflectGPO -}; -if (getProto) { - try { - null.error; // eslint-disable-line no-unused-expressions - } catch (e) { - // https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229 - var errorProto = getProto(getProto(e)); - INTRINSICS['%Error.prototype%'] = errorProto; - } -} +/***/ }), -var doEval = function doEval(name) { - var value; - if (name === '%AsyncFunction%') { - value = getEvalledConstructor('async function () {}'); - } else if (name === '%GeneratorFunction%') { - value = getEvalledConstructor('function* () {}'); - } else if (name === '%AsyncGeneratorFunction%') { - value = getEvalledConstructor('async function* () {}'); - } else if (name === '%AsyncGenerator%') { - var fn = doEval('%AsyncGeneratorFunction%'); - if (fn) { - value = fn.prototype; - } - } else if (name === '%AsyncIteratorPrototype%') { - var gen = doEval('%AsyncGenerator%'); - if (gen && getProto) { - value = getProto(gen.prototype); - } - } +/***/ 49820: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - INTRINSICS[name] = value; +"use strict"; - return value; -}; +/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */ +/* eslint-disable regexp/no-useless-quantifier -- testing */ +var call = __webpack_require__(2834); +var uncurryThis = __webpack_require__(38347); +var toString = __webpack_require__(25096); +var regexpFlags = __webpack_require__(21182); +var stickyHelpers = __webpack_require__(74846); +var shared = __webpack_require__(464); +var create = __webpack_require__(10819); +var getInternalState = (__webpack_require__(70172).get); +var UNSUPPORTED_DOT_ALL = __webpack_require__(84030); +var UNSUPPORTED_NCG = __webpack_require__(97739); -var LEGACY_ALIASES = { - __proto__: null, - '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], - '%ArrayPrototype%': ['Array', 'prototype'], - '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], - '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], - '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], - '%ArrayProto_values%': ['Array', 'prototype', 'values'], - '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], - '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], - '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], - '%BooleanPrototype%': ['Boolean', 'prototype'], - '%DataViewPrototype%': ['DataView', 'prototype'], - '%DatePrototype%': ['Date', 'prototype'], - '%ErrorPrototype%': ['Error', 'prototype'], - '%EvalErrorPrototype%': ['EvalError', 'prototype'], - '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], - '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], - '%FunctionPrototype%': ['Function', 'prototype'], - '%Generator%': ['GeneratorFunction', 'prototype'], - '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], - '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], - '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], - '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], - '%JSONParse%': ['JSON', 'parse'], - '%JSONStringify%': ['JSON', 'stringify'], - '%MapPrototype%': ['Map', 'prototype'], - '%NumberPrototype%': ['Number', 'prototype'], - '%ObjectPrototype%': ['Object', 'prototype'], - '%ObjProto_toString%': ['Object', 'prototype', 'toString'], - '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], - '%PromisePrototype%': ['Promise', 'prototype'], - '%PromiseProto_then%': ['Promise', 'prototype', 'then'], - '%Promise_all%': ['Promise', 'all'], - '%Promise_reject%': ['Promise', 'reject'], - '%Promise_resolve%': ['Promise', 'resolve'], - '%RangeErrorPrototype%': ['RangeError', 'prototype'], - '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], - '%RegExpPrototype%': ['RegExp', 'prototype'], - '%SetPrototype%': ['Set', 'prototype'], - '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], - '%StringPrototype%': ['String', 'prototype'], - '%SymbolPrototype%': ['Symbol', 'prototype'], - '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], - '%TypedArrayPrototype%': ['TypedArray', 'prototype'], - '%TypeErrorPrototype%': ['TypeError', 'prototype'], - '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], - '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], - '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], - '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], - '%URIErrorPrototype%': ['URIError', 'prototype'], - '%WeakMapPrototype%': ['WeakMap', 'prototype'], - '%WeakSetPrototype%': ['WeakSet', 'prototype'] -}; +var nativeReplace = shared('native-string-replace', String.prototype.replace); +var nativeExec = RegExp.prototype.exec; +var patchedExec = nativeExec; +var charAt = uncurryThis(''.charAt); +var indexOf = uncurryThis(''.indexOf); +var replace = uncurryThis(''.replace); +var stringSlice = uncurryThis(''.slice); -var bind = __webpack_require__(5049); -var hasOwn = __webpack_require__(55215); -var $concat = bind.call($call, Array.prototype.concat); -var $spliceApply = bind.call($apply, Array.prototype.splice); -var $replace = bind.call($call, String.prototype.replace); -var $strSlice = bind.call($call, String.prototype.slice); -var $exec = bind.call($call, RegExp.prototype.exec); +var UPDATES_LAST_INDEX_WRONG = (function () { + var re1 = /a/; + var re2 = /b*/g; + call(nativeExec, re1, 'a'); + call(nativeExec, re2, 'a'); + return re1.lastIndex !== 0 || re2.lastIndex !== 0; +})(); -/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ -var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; -var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ -var stringToPath = function stringToPath(string) { - var first = $strSlice(string, 0, 1); - var last = $strSlice(string, -1); - if (first === '%' && last !== '%') { - throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`'); - } else if (last === '%' && first !== '%') { - throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`'); - } - var result = []; - $replace(string, rePropName, function (match, number, quote, subString) { - result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match; - }); - return result; -}; -/* end adaptation */ +var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET; -var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { - var intrinsicName = name; - var alias; - if (hasOwn(LEGACY_ALIASES, intrinsicName)) { - alias = LEGACY_ALIASES[intrinsicName]; - intrinsicName = '%' + alias[0] + '%'; - } +// nonparticipating capturing group, copied from es5-shim's String#split patch. +var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined; - if (hasOwn(INTRINSICS, intrinsicName)) { - var value = INTRINSICS[intrinsicName]; - if (value === needsEval) { - value = doEval(intrinsicName); - } - if (typeof value === 'undefined' && !allowMissing) { - throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); - } +var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG; - return { - alias: alias, - name: intrinsicName, - value: value - }; - } +if (PATCH) { + // eslint-disable-next-line max-statements -- TODO + patchedExec = function exec(string) { + var re = this; + var state = getInternalState(re); + var str = toString(string); + var raw = state.raw; + var result, reCopy, lastIndex, match, i, object, group; - throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); -}; + if (raw) { + raw.lastIndex = re.lastIndex; + result = call(patchedExec, raw, str); + re.lastIndex = raw.lastIndex; + return result; + } -module.exports = function GetIntrinsic(name, allowMissing) { - if (typeof name !== 'string' || name.length === 0) { - throw new $TypeError('intrinsic name must be a non-empty string'); - } - if (arguments.length > 1 && typeof allowMissing !== 'boolean') { - throw new $TypeError('"allowMissing" argument must be a boolean'); - } + var groups = state.groups; + var sticky = UNSUPPORTED_Y && re.sticky; + var flags = call(regexpFlags, re); + var source = re.source; + var charsAdded = 0; + var strCopy = str; - if ($exec(/^%?[^%]*%?$/, name) === null) { - throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name'); - } - var parts = stringToPath(name); - var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; + if (sticky) { + flags = replace(flags, 'y', ''); + if (indexOf(flags, 'g') === -1) { + flags += 'g'; + } - var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); - var intrinsicRealName = intrinsic.name; - var value = intrinsic.value; - var skipFurtherCaching = false; + strCopy = stringSlice(str, re.lastIndex); + // Support anchored sticky behavior. + if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\n')) { + source = '(?: ' + source + ')'; + strCopy = ' ' + strCopy; + charsAdded++; + } + // ^(? + rx + ) is needed, in combination with some str slicing, to + // simulate the 'y' flag. + reCopy = new RegExp('^(?:' + source + ')', flags); + } - var alias = intrinsic.alias; - if (alias) { - intrinsicBaseName = alias[0]; - $spliceApply(parts, $concat([0, 1], alias)); - } + if (NPCG_INCLUDED) { + reCopy = new RegExp('^' + source + '$(?!\\s)', flags); + } + if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex; - for (var i = 1, isOwn = true; i < parts.length; i += 1) { - var part = parts[i]; - var first = $strSlice(part, 0, 1); - var last = $strSlice(part, -1); - if ( - ( - (first === '"' || first === "'" || first === '`') - || (last === '"' || last === "'" || last === '`') - ) - && first !== last - ) { - throw new $SyntaxError('property names with quotes must have matching quotes'); - } - if (part === 'constructor' || !isOwn) { - skipFurtherCaching = true; - } + match = call(nativeExec, sticky ? reCopy : re, strCopy); - intrinsicBaseName += '.' + part; - intrinsicRealName = '%' + intrinsicBaseName + '%'; + if (sticky) { + if (match) { + match.input = stringSlice(match.input, charsAdded); + match[0] = stringSlice(match[0], charsAdded); + match.index = re.lastIndex; + re.lastIndex += match[0].length; + } else re.lastIndex = 0; + } else if (UPDATES_LAST_INDEX_WRONG && match) { + re.lastIndex = re.global ? match.index + match[0].length : lastIndex; + } + if (NPCG_INCLUDED && match && match.length > 1) { + // Fix browsers whose `exec` methods don't consistently return `undefined` + // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/ + call(nativeReplace, match[0], reCopy, function () { + for (i = 1; i < arguments.length - 2; i++) { + if (arguments[i] === undefined) match[i] = undefined; + } + }); + } - if (hasOwn(INTRINSICS, intrinsicRealName)) { - value = INTRINSICS[intrinsicRealName]; - } else if (value != null) { - if (!(part in value)) { - if (!allowMissing) { - throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.'); - } - return void undefined; - } - if ($gOPD && (i + 1) >= parts.length) { - var desc = $gOPD(value, part); - isOwn = !!desc; + if (match && groups) { + match.groups = object = create(null); + for (i = 0; i < groups.length; i++) { + group = groups[i]; + object[group[0]] = match[group[1]]; + } + } - // By convention, when a data property is converted to an accessor - // property to emulate a data property that does not suffer from - // the override mistake, that accessor's getter is marked with - // an `originalValue` property. Here, when we detect this, we - // uphold the illusion by pretending to see that original data - // property, i.e., returning the value rather than the getter - // itself. - if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { - value = desc.get; - } else { - value = value[part]; - } - } else { - isOwn = hasOwn(value, part); - value = value[part]; - } + return match; + }; +} - if (isOwn && !skipFurtherCaching) { - INTRINSICS[intrinsicRealName] = value; - } - } - } - return value; -}; +module.exports = patchedExec; /***/ }), -/***/ 28831: +/***/ 21182: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var isObject = __webpack_require__(24517); -var classof = __webpack_require__(93975); -var wellKnownSymbol = __webpack_require__(38688); +"use strict"; -var MATCH = wellKnownSymbol('match'); +var anObject = __webpack_require__(34984); -// `IsRegExp` abstract operation -// https://tc39.es/ecma262/#sec-isregexp -module.exports = function (it) { - var isRegExp; - return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp'); +// `RegExp.prototype.flags` getter implementation +// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags +module.exports = function () { + var that = anObject(this); + var result = ''; + if (that.global) result += 'g'; + if (that.ignoreCase) result += 'i'; + if (that.multiline) result += 'm'; + if (that.dotAll) result += 's'; + if (that.unicode) result += 'u'; + if (that.sticky) result += 'y'; + return result; }; /***/ }), -/***/ 28834: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 74846: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { -/* eslint-disable no-new -- required for testing */ -var global = __webpack_require__(32010); var fails = __webpack_require__(47044); -var checkCorrectnessOfIteration = __webpack_require__(46769); -var NATIVE_ARRAY_BUFFER_VIEWS = (__webpack_require__(59754).NATIVE_ARRAY_BUFFER_VIEWS); +var global = __webpack_require__(32010); -var ArrayBuffer = global.ArrayBuffer; -var Int8Array = global.Int8Array; +// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError +var $RegExp = global.RegExp; -module.exports = !NATIVE_ARRAY_BUFFER_VIEWS || !fails(function () { - Int8Array(1); -}) || !fails(function () { - new Int8Array(-1); -}) || !checkCorrectnessOfIteration(function (iterable) { - new Int8Array(); - new Int8Array(null); - new Int8Array(1.5); - new Int8Array(iterable); -}, true) || fails(function () { - // Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill - return new Int8Array(new ArrayBuffer(2), 1, undefined).length !== 1; +exports.UNSUPPORTED_Y = fails(function () { + var re = $RegExp('a', 'y'); + re.lastIndex = 2; + return re.exec('abcd') != null; +}); + +exports.BROKEN_CARET = fails(function () { + // https://bugzilla.mozilla.org/show_bug.cgi?id=773687 + var re = $RegExp('^r', 'gy'); + re.lastIndex = 2; + return re.exec('str') != null; }); /***/ }), -/***/ 29055: -/***/ (function(module) { +/***/ 84030: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var fails = __webpack_require__(47044); +var global = __webpack_require__(32010); +// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError +var $RegExp = global.RegExp; -/** @type {import('./eval')} */ -module.exports = EvalError; +module.exports = fails(function () { + var re = $RegExp('.', 's'); + return !(re.dotAll && re.exec('\n') && re.flags === 's'); +}); /***/ }), -/***/ 29490: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 97739: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; -// Currently in sync with Node.js lib/internal/util/types.js -// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9 +var fails = __webpack_require__(47044); +var global = __webpack_require__(32010); +// babel-minify and Closure Compiler transpiles RegExp('(?b)', 'g') -> /(?b)/g and it causes SyntaxError +var $RegExp = global.RegExp; +module.exports = fails(function () { + var re = $RegExp('(?b)', 'g'); + return re.exec('b').groups.a !== 'b' || + 'b'.replace(re, '$c') !== 'bc'; +}); -var isArgumentsObject = __webpack_require__(67906); -var isGeneratorFunction = __webpack_require__(44610); -var whichTypedArray = __webpack_require__(43381); -var isTypedArray = __webpack_require__(46094); -function uncurryThis(f) { - return f.call.bind(f); -} +/***/ }), -var BigIntSupported = typeof BigInt !== 'undefined'; -var SymbolSupported = typeof Symbol !== 'undefined'; +/***/ 83943: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var ObjectToString = uncurryThis(Object.prototype.toString); +var global = __webpack_require__(32010); -var numberValue = uncurryThis(Number.prototype.valueOf); -var stringValue = uncurryThis(String.prototype.valueOf); -var booleanValue = uncurryThis(Boolean.prototype.valueOf); +var TypeError = global.TypeError; -if (BigIntSupported) { - var bigIntValue = uncurryThis(BigInt.prototype.valueOf); -} +// `RequireObjectCoercible` abstract operation +// https://tc39.es/ecma262/#sec-requireobjectcoercible +module.exports = function (it) { + if (it == undefined) throw TypeError("Can't call method on " + it); + return it; +}; -if (SymbolSupported) { - var symbolValue = uncurryThis(Symbol.prototype.valueOf); -} -function checkBoxedPrimitive(value, prototypeValueOf) { - if (typeof value !== 'object') { - return false; - } - try { - prototypeValueOf(value); - return true; - } catch(e) { - return false; - } -} +/***/ }), -exports.isArgumentsObject = isArgumentsObject; -exports.isGeneratorFunction = isGeneratorFunction; -exports.isTypedArray = isTypedArray; +/***/ 7421: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -// Taken from here and modified for better browser support -// https://github.com/sindresorhus/p-is-promise/blob/cda35a513bda03f977ad5cde3a079d237e82d7ef/index.js -function isPromise(input) { - return ( - ( - typeof Promise !== 'undefined' && - input instanceof Promise - ) || - ( - input !== null && - typeof input === 'object' && - typeof input.then === 'function' && - typeof input.catch === 'function' - ) - ); -} -exports.isPromise = isPromise; +var global = __webpack_require__(32010); -function isArrayBufferView(value) { - if (typeof ArrayBuffer !== 'undefined' && ArrayBuffer.isView) { - return ArrayBuffer.isView(value); - } +// eslint-disable-next-line es/no-object-defineproperty -- safe +var defineProperty = Object.defineProperty; - return ( - isTypedArray(value) || - isDataView(value) - ); -} -exports.isArrayBufferView = isArrayBufferView; +module.exports = function (key, value) { + try { + defineProperty(global, key, { value: value, configurable: true, writable: true }); + } catch (error) { + global[key] = value; + } return value; +}; -function isUint8Array(value) { - return whichTypedArray(value) === 'Uint8Array'; -} -exports.isUint8Array = isUint8Array; +/***/ }), -function isUint8ClampedArray(value) { - return whichTypedArray(value) === 'Uint8ClampedArray'; -} -exports.isUint8ClampedArray = isUint8ClampedArray; +/***/ 51334: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function isUint16Array(value) { - return whichTypedArray(value) === 'Uint16Array'; -} -exports.isUint16Array = isUint16Array; +"use strict"; -function isUint32Array(value) { - return whichTypedArray(value) === 'Uint32Array'; -} -exports.isUint32Array = isUint32Array; +var getBuiltIn = __webpack_require__(38486); +var definePropertyModule = __webpack_require__(95892); +var wellKnownSymbol = __webpack_require__(38688); +var DESCRIPTORS = __webpack_require__(15567); -function isInt8Array(value) { - return whichTypedArray(value) === 'Int8Array'; -} -exports.isInt8Array = isInt8Array; +var SPECIES = wellKnownSymbol('species'); -function isInt16Array(value) { - return whichTypedArray(value) === 'Int16Array'; -} -exports.isInt16Array = isInt16Array; +module.exports = function (CONSTRUCTOR_NAME) { + var Constructor = getBuiltIn(CONSTRUCTOR_NAME); + var defineProperty = definePropertyModule.f; -function isInt32Array(value) { - return whichTypedArray(value) === 'Int32Array'; -} -exports.isInt32Array = isInt32Array; + if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) { + defineProperty(Constructor, SPECIES, { + configurable: true, + get: function () { return this; } + }); + } +}; -function isFloat32Array(value) { - return whichTypedArray(value) === 'Float32Array'; -} -exports.isFloat32Array = isFloat32Array; -function isFloat64Array(value) { - return whichTypedArray(value) === 'Float64Array'; -} -exports.isFloat64Array = isFloat64Array; +/***/ }), -function isBigInt64Array(value) { - return whichTypedArray(value) === 'BigInt64Array'; -} -exports.isBigInt64Array = isBigInt64Array; +/***/ 15216: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function isBigUint64Array(value) { - return whichTypedArray(value) === 'BigUint64Array'; -} -exports.isBigUint64Array = isBigUint64Array; +var defineProperty = (__webpack_require__(95892).f); +var hasOwn = __webpack_require__(20340); +var wellKnownSymbol = __webpack_require__(38688); -function isMapToString(value) { - return ObjectToString(value) === '[object Map]'; -} -isMapToString.working = ( - typeof Map !== 'undefined' && - isMapToString(new Map()) -); +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -function isMap(value) { - if (typeof Map === 'undefined') { - return false; +module.exports = function (it, TAG, STATIC) { + if (it && !hasOwn(it = STATIC ? it : it.prototype, TO_STRING_TAG)) { + defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG }); } +}; - return isMapToString.working - ? isMapToString(value) - : value instanceof Map; -} -exports.isMap = isMap; -function isSetToString(value) { - return ObjectToString(value) === '[object Set]'; -} -isSetToString.working = ( - typeof Set !== 'undefined' && - isSetToString(new Set()) -); -function isSet(value) { - if (typeof Set === 'undefined') { - return false; - } +/***/ }), - return isSetToString.working - ? isSetToString(value) - : value instanceof Set; -} -exports.isSet = isSet; +/***/ 82194: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function isWeakMapToString(value) { - return ObjectToString(value) === '[object WeakMap]'; -} -isWeakMapToString.working = ( - typeof WeakMap !== 'undefined' && - isWeakMapToString(new WeakMap()) -); -function isWeakMap(value) { - if (typeof WeakMap === 'undefined') { - return false; - } +var shared = __webpack_require__(464); +var uid = __webpack_require__(46859); - return isWeakMapToString.working - ? isWeakMapToString(value) - : value instanceof WeakMap; -} -exports.isWeakMap = isWeakMap; +var keys = shared('keys'); -function isWeakSetToString(value) { - return ObjectToString(value) === '[object WeakSet]'; -} -isWeakSetToString.working = ( - typeof WeakSet !== 'undefined' && - isWeakSetToString(new WeakSet()) -); -function isWeakSet(value) { - return isWeakSetToString(value); -} -exports.isWeakSet = isWeakSet; +module.exports = function (key) { + return keys[key] || (keys[key] = uid(key)); +}; -function isArrayBufferToString(value) { - return ObjectToString(value) === '[object ArrayBuffer]'; -} -isArrayBufferToString.working = ( - typeof ArrayBuffer !== 'undefined' && - isArrayBufferToString(new ArrayBuffer()) -); -function isArrayBuffer(value) { - if (typeof ArrayBuffer === 'undefined') { - return false; - } - return isArrayBufferToString.working - ? isArrayBufferToString(value) - : value instanceof ArrayBuffer; -} -exports.isArrayBuffer = isArrayBuffer; +/***/ }), -function isDataViewToString(value) { - return ObjectToString(value) === '[object DataView]'; -} -isDataViewToString.working = ( - typeof ArrayBuffer !== 'undefined' && - typeof DataView !== 'undefined' && - isDataViewToString(new DataView(new ArrayBuffer(1), 0, 1)) -); -function isDataView(value) { - if (typeof DataView === 'undefined') { - return false; - } +/***/ 55480: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - return isDataViewToString.working - ? isDataViewToString(value) - : value instanceof DataView; -} -exports.isDataView = isDataView; +var global = __webpack_require__(32010); +var setGlobal = __webpack_require__(7421); -// Store a copy of SharedArrayBuffer in case it's deleted elsewhere -var SharedArrayBufferCopy = typeof SharedArrayBuffer !== 'undefined' ? SharedArrayBuffer : undefined; -function isSharedArrayBufferToString(value) { - return ObjectToString(value) === '[object SharedArrayBuffer]'; -} -function isSharedArrayBuffer(value) { - if (typeof SharedArrayBufferCopy === 'undefined') { - return false; - } +var SHARED = '__core-js_shared__'; +var store = global[SHARED] || setGlobal(SHARED, {}); - if (typeof isSharedArrayBufferToString.working === 'undefined') { - isSharedArrayBufferToString.working = isSharedArrayBufferToString(new SharedArrayBufferCopy()); - } +module.exports = store; - return isSharedArrayBufferToString.working - ? isSharedArrayBufferToString(value) - : value instanceof SharedArrayBufferCopy; -} -exports.isSharedArrayBuffer = isSharedArrayBuffer; -function isAsyncFunction(value) { - return ObjectToString(value) === '[object AsyncFunction]'; -} -exports.isAsyncFunction = isAsyncFunction; +/***/ }), -function isMapIterator(value) { - return ObjectToString(value) === '[object Map Iterator]'; -} -exports.isMapIterator = isMapIterator; +/***/ 464: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function isSetIterator(value) { - return ObjectToString(value) === '[object Set Iterator]'; -} -exports.isSetIterator = isSetIterator; +var IS_PURE = __webpack_require__(63432); +var store = __webpack_require__(55480); -function isGeneratorObject(value) { - return ObjectToString(value) === '[object Generator]'; -} -exports.isGeneratorObject = isGeneratorObject; +(module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); +})('versions', []).push({ + version: '3.19.0', + mode: IS_PURE ? 'pure' : 'global', + copyright: '© 2021 Denis Pushkarev (zloirock.ru)' +}); -function isWebAssemblyCompiledModule(value) { - return ObjectToString(value) === '[object WebAssembly.Module]'; -} -exports.isWebAssemblyCompiledModule = isWebAssemblyCompiledModule; -function isNumberObject(value) { - return checkBoxedPrimitive(value, numberValue); -} -exports.isNumberObject = isNumberObject; +/***/ }), -function isStringObject(value) { - return checkBoxedPrimitive(value, stringValue); -} -exports.isStringObject = isStringObject; +/***/ 27754: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function isBooleanObject(value) { - return checkBoxedPrimitive(value, booleanValue); -} -exports.isBooleanObject = isBooleanObject; +var anObject = __webpack_require__(34984); +var aConstructor = __webpack_require__(69075); +var wellKnownSymbol = __webpack_require__(38688); -function isBigIntObject(value) { - return BigIntSupported && checkBoxedPrimitive(value, bigIntValue); -} -exports.isBigIntObject = isBigIntObject; +var SPECIES = wellKnownSymbol('species'); -function isSymbolObject(value) { - return SymbolSupported && checkBoxedPrimitive(value, symbolValue); -} -exports.isSymbolObject = isSymbolObject; +// `SpeciesConstructor` abstract operation +// https://tc39.es/ecma262/#sec-speciesconstructor +module.exports = function (O, defaultConstructor) { + var C = anObject(O).constructor; + var S; + return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S); +}; -function isBoxedPrimitive(value) { - return ( - isNumberObject(value) || - isStringObject(value) || - isBooleanObject(value) || - isBigIntObject(value) || - isSymbolObject(value) - ); -} -exports.isBoxedPrimitive = isBoxedPrimitive; -function isAnyArrayBuffer(value) { - return typeof Uint8Array !== 'undefined' && ( - isArrayBuffer(value) || - isSharedArrayBuffer(value) - ); -} -exports.isAnyArrayBuffer = isAnyArrayBuffer; +/***/ }), -['isProxy', 'isExternal', 'isModuleNamespaceObject'].forEach(function(method) { - Object.defineProperty(exports, method, { - enumerable: false, - value: function() { - throw new Error(method + ' is not supported in userland'); - } +/***/ 7452: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var fails = __webpack_require__(47044); + +// check the existence of a method, lowercase +// of a tag and escaping quotes in arguments +module.exports = function (METHOD_NAME) { + return fails(function () { + var test = ''[METHOD_NAME]('"'); + return test !== test.toLowerCase() || test.split('"').length > 3; }); -}); +}; /***/ }), -/***/ 29519: +/***/ 69510: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { var uncurryThis = __webpack_require__(38347); -var toObject = __webpack_require__(43162); +var toIntegerOrInfinity = __webpack_require__(26882); +var toString = __webpack_require__(25096); +var requireObjectCoercible = __webpack_require__(83943); -var floor = Math.floor; var charAt = uncurryThis(''.charAt); -var replace = uncurryThis(''.replace); +var charCodeAt = uncurryThis(''.charCodeAt); var stringSlice = uncurryThis(''.slice); -var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g; -var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g; -// `GetSubstitution` abstract operation -// https://tc39.es/ecma262/#sec-getsubstitution -module.exports = function (matched, str, position, captures, namedCaptures, replacement) { - var tailPos = position + matched.length; - var m = captures.length; - var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; - if (namedCaptures !== undefined) { - namedCaptures = toObject(namedCaptures); - symbols = SUBSTITUTION_SYMBOLS; - } - return replace(replacement, symbols, function (match, ch) { - var capture; - switch (charAt(ch, 0)) { - case '$': return '$'; - case '&': return matched; - case '`': return stringSlice(str, 0, position); - case "'": return stringSlice(str, tailPos); - case '<': - capture = namedCaptures[stringSlice(ch, 1, -1)]; - break; - default: // \d\d? - var n = +ch; - if (n === 0) return match; - if (n > m) { - var f = floor(n / 10); - if (f === 0) return match; - if (f <= m) return captures[f - 1] === undefined ? charAt(ch, 1) : captures[f - 1] + charAt(ch, 1); - return match; - } - capture = captures[n - 1]; - } - return capture === undefined ? '' : capture; - }); +var createMethod = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = toString(requireObjectCoercible($this)); + var position = toIntegerOrInfinity(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = charCodeAt(S, position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size + || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING + ? charAt(S, position) + : first + : CONVERT_TO_STRING + ? stringSlice(S, position, position + 2) + : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; +}; + +module.exports = { + // `String.prototype.codePointAt` method + // https://tc39.es/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod(true) }; /***/ }), -/***/ 29781: +/***/ 34858: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -/* provided dependency */ var process = __webpack_require__(9964); -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. -// A bit simpler than readable streams. -// Implement an async ._write(chunk, encoding, cb), and it'll handle all -// the drain event emission and buffering. +var global = __webpack_require__(32010); +var toIntegerOrInfinity = __webpack_require__(26882); +var toString = __webpack_require__(25096); +var requireObjectCoercible = __webpack_require__(83943); + +var RangeError = global.RangeError; + +// `String.prototype.repeat` method implementation +// https://tc39.es/ecma262/#sec-string.prototype.repeat +module.exports = function repeat(count) { + var str = toString(requireObjectCoercible(this)); + var result = ''; + var n = toIntegerOrInfinity(count); + if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions'); + for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str; + return result; +}; +/***/ }), -module.exports = Writable; +/***/ 68899: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -/* */ -function WriteReq(chunk, encoding, cb) { - this.chunk = chunk; - this.encoding = encoding; - this.callback = cb; - this.next = null; -} +var PROPER_FUNCTION_NAME = (__webpack_require__(7081).PROPER); +var fails = __webpack_require__(47044); +var whitespaces = __webpack_require__(43187); -// It seems a linked list but it is not -// there will be only 2 of these for each stream -function CorkedRequest(state) { - var _this = this; - this.next = null; - this.entry = null; - this.finish = function () { - onCorkedFinish(_this, state); +var non = '\u200B\u0085\u180E'; + +// check that a method works with the correct list +// of whitespaces and has a correct name +module.exports = function (METHOD_NAME) { + return fails(function () { + return !!whitespaces[METHOD_NAME]() + || non[METHOD_NAME]() !== non + || (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME); + }); +}; + + +/***/ }), + +/***/ 29841: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var uncurryThis = __webpack_require__(38347); +var requireObjectCoercible = __webpack_require__(83943); +var toString = __webpack_require__(25096); +var whitespaces = __webpack_require__(43187); + +var replace = uncurryThis(''.replace); +var whitespace = '[' + whitespaces + ']'; +var ltrim = RegExp('^' + whitespace + whitespace + '*'); +var rtrim = RegExp(whitespace + whitespace + '*$'); + +// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation +var createMethod = function (TYPE) { + return function ($this) { + var string = toString(requireObjectCoercible($this)); + if (TYPE & 1) string = replace(string, ltrim, ''); + if (TYPE & 2) string = replace(string, rtrim, ''); + return string; }; -} -/* */ +}; -/**/ -var Duplex; -/**/ +module.exports = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.es/ecma262/#sec-string.prototype.trimstart + start: createMethod(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.es/ecma262/#sec-string.prototype.trimend + end: createMethod(2), + // `String.prototype.trim` method + // https://tc39.es/ecma262/#sec-string.prototype.trim + trim: createMethod(3) +}; -Writable.WritableState = WritableState; -/**/ -var internalUtil = { - deprecate: __webpack_require__(16465) +/***/ }), + +/***/ 6616: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var apply = __webpack_require__(58448); +var bind = __webpack_require__(25567); +var isCallable = __webpack_require__(94578); +var hasOwn = __webpack_require__(20340); +var fails = __webpack_require__(47044); +var html = __webpack_require__(520); +var arraySlice = __webpack_require__(73163); +var createElement = __webpack_require__(12072); +var IS_IOS = __webpack_require__(17716); +var IS_NODE = __webpack_require__(95053); + +var set = global.setImmediate; +var clear = global.clearImmediate; +var process = global.process; +var Dispatch = global.Dispatch; +var Function = global.Function; +var MessageChannel = global.MessageChannel; +var String = global.String; +var counter = 0; +var queue = {}; +var ONREADYSTATECHANGE = 'onreadystatechange'; +var location, defer, channel, port; + +try { + // Deno throws a ReferenceError on `location` access without `--location` flag + location = global.location; +} catch (error) { /* empty */ } + +var run = function (id) { + if (hasOwn(queue, id)) { + var fn = queue[id]; + delete queue[id]; + fn(); + } }; -/**/ -/**/ -var Stream = __webpack_require__(99018); -/**/ +var runner = function (id) { + return function () { + run(id); + }; +}; -var Buffer = (__webpack_require__(14598).Buffer); -var OurUint8Array = (typeof __webpack_require__.g !== 'undefined' ? __webpack_require__.g : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {}; -function _uint8ArrayToBuffer(chunk) { - return Buffer.from(chunk); -} -function _isUint8Array(obj) { - return Buffer.isBuffer(obj) || obj instanceof OurUint8Array; +var listener = function (event) { + run(event.data); +}; + +var post = function (id) { + // old engines have not location.origin + global.postMessage(String(id), location.protocol + '//' + location.host); +}; + +// Node.js 0.9+ & IE10+ has setImmediate, otherwise: +if (!set || !clear) { + set = function setImmediate(fn) { + var args = arraySlice(arguments, 1); + queue[++counter] = function () { + apply(isCallable(fn) ? fn : Function(fn), undefined, args); + }; + defer(counter); + return counter; + }; + clear = function clearImmediate(id) { + delete queue[id]; + }; + // Node.js 0.8- + if (IS_NODE) { + defer = function (id) { + process.nextTick(runner(id)); + }; + // Sphere (JS game engine) Dispatch API + } else if (Dispatch && Dispatch.now) { + defer = function (id) { + Dispatch.now(runner(id)); + }; + // Browsers with MessageChannel, includes WebWorkers + // except iOS - https://github.com/zloirock/core-js/issues/624 + } else if (MessageChannel && !IS_IOS) { + channel = new MessageChannel(); + port = channel.port2; + channel.port1.onmessage = listener; + defer = bind(port.postMessage, port); + // Browsers with postMessage, skip WebWorkers + // IE8 has postMessage, but it's sync & typeof its postMessage is 'object' + } else if ( + global.addEventListener && + isCallable(global.postMessage) && + !global.importScripts && + location && location.protocol !== 'file:' && + !fails(post) + ) { + defer = post; + global.addEventListener('message', listener, false); + // IE8- + } else if (ONREADYSTATECHANGE in createElement('script')) { + defer = function (id) { + html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () { + html.removeChild(this); + run(id); + }; + }; + // Rest old browsers + } else { + defer = function (id) { + setTimeout(runner(id), 0); + }; + } } -var destroyImpl = __webpack_require__(37385); -var _require = __webpack_require__(68130), - getHighWaterMark = _require.getHighWaterMark; -var _require$codes = (__webpack_require__(83797)/* .codes */ .F), - ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, - ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, - ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, - ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE, - ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED, - ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES, - ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END, - ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING; -var errorOrDestroy = destroyImpl.errorOrDestroy; -__webpack_require__(89784)(Writable, Stream); -function nop() {} -function WritableState(options, stream, isDuplex) { - Duplex = Duplex || __webpack_require__(14903); - options = options || {}; - // Duplex streams are both readable and writable, but share - // the same options object. - // However, some cases require setting options to different - // values for the readable and the writable sides of the duplex stream, - // e.g. options.readableObjectMode vs. options.writableObjectMode, etc. - if (typeof isDuplex !== 'boolean') isDuplex = stream instanceof Duplex; +module.exports = { + set: set, + clear: clear +}; - // object stream flag to indicate whether or not this stream - // contains buffers or objects. - this.objectMode = !!options.objectMode; - if (isDuplex) this.objectMode = this.objectMode || !!options.writableObjectMode; - // the point at which write() starts returning false - // Note: 0 is a valid value, means that we always return false if - // the entire buffer is not flushed immediately on write() - this.highWaterMark = getHighWaterMark(this, options, 'writableHighWaterMark', isDuplex); +/***/ }), - // if _final has been called - this.finalCalled = false; +/***/ 16679: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // drain event flag. - this.needDrain = false; - // at the start of calling end() - this.ending = false; - // when end() has been called, and returned - this.ended = false; - // when 'finish' is emitted - this.finished = false; +var uncurryThis = __webpack_require__(38347); - // has it been destroyed - this.destroyed = false; +// `thisNumberValue` abstract operation +// https://tc39.es/ecma262/#sec-thisnumbervalue +module.exports = uncurryThis(1.0.valueOf); - // should we decode strings into buffers before passing to _write? - // this is here so that some node-core streams can optimize string - // handling at a lower level. - var noDecode = options.decodeStrings === false; - this.decodeStrings = !noDecode; - // Crypto is kind of old and crusty. Historically, its default string - // encoding is 'binary' so we have to make this configurable. - // Everything else in the universe uses 'utf8', though. - this.defaultEncoding = options.defaultEncoding || 'utf8'; +/***/ }), - // not an actual buffer we keep track of, but a measurement - // of how much we're waiting to get pushed to some underlying - // socket or file. - this.length = 0; +/***/ 74841: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // a flag to see when we're in the middle of a write. - this.writing = false; +var toIntegerOrInfinity = __webpack_require__(26882); - // when true all writes will be buffered until .uncork() call - this.corked = 0; +var max = Math.max; +var min = Math.min; - // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, because any - // actions that shouldn't happen until "later" should generally also - // not happen before the first write call. - this.sync = true; +// Helper for a popular repeating case of the spec: +// Let integer be ? ToInteger(index). +// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length). +module.exports = function (index, length) { + var integer = toIntegerOrInfinity(index); + return integer < 0 ? max(integer + length, 0) : min(integer, length); +}; - // a flag to know if we're processing previously buffered items, which - // may call the _write() callback in the same tick, so that we don't - // end up in an overlapped onwrite situation. - this.bufferProcessing = false; - // the callback that's passed to _write(chunk,cb) - this.onwrite = function (er) { - onwrite(stream, er); - }; +/***/ }), - // the callback that the user supplies to write(chunk,encoding,cb) - this.writecb = null; +/***/ 71265: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // the amount that is being written when _write is called. - this.writelen = 0; - this.bufferedRequest = null; - this.lastBufferedRequest = null; +var global = __webpack_require__(32010); +var toIntegerOrInfinity = __webpack_require__(26882); +var toLength = __webpack_require__(23417); - // number of pending user-supplied write callbacks - // this must be 0 before 'finish' can be emitted - this.pendingcb = 0; +var RangeError = global.RangeError; - // emit prefinish if the only thing we're waiting for is _write cbs - // This is relevant for synchronous Transform streams - this.prefinished = false; +// `ToIndex` abstract operation +// https://tc39.es/ecma262/#sec-toindex +module.exports = function (it) { + if (it === undefined) return 0; + var number = toIntegerOrInfinity(it); + var length = toLength(number); + if (number !== length) throw RangeError('Wrong length or index'); + return length; +}; - // True if the error was already emitted and should not be thrown again - this.errorEmitted = false; - // Should close be emitted on destroy. Defaults to true. - this.emitClose = options.emitClose !== false; +/***/ }), - // Should .destroy() be called after 'finish' (and potentially 'end') - this.autoDestroy = !!options.autoDestroy; +/***/ 98086: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // count buffered requests - this.bufferedRequestCount = 0; +// toObject with fallback for non-array-like ES3 strings +var IndexedObject = __webpack_require__(7514); +var requireObjectCoercible = __webpack_require__(83943); - // allocate the first CorkedRequest, there is always - // one allocated and free to use, and we maintain at most two - this.corkedRequestsFree = new CorkedRequest(this); -} -WritableState.prototype.getBuffer = function getBuffer() { - var current = this.bufferedRequest; - var out = []; - while (current) { - out.push(current); - current = current.next; - } - return out; +module.exports = function (it) { + return IndexedObject(requireObjectCoercible(it)); }; -(function () { - try { - Object.defineProperty(WritableState.prototype, 'buffer', { - get: internalUtil.deprecate(function writableStateBufferGetter() { - return this.getBuffer(); - }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003') - }); - } catch (_) {} -})(); - -// Test _writableState for inheritance to account for Duplex streams, -// whose prototype chain only points to Readable. -var realHasInstance; -if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.prototype[Symbol.hasInstance] === 'function') { - realHasInstance = Function.prototype[Symbol.hasInstance]; - Object.defineProperty(Writable, Symbol.hasInstance, { - value: function value(object) { - if (realHasInstance.call(this, object)) return true; - if (this !== Writable) return false; - return object && object._writableState instanceof WritableState; - } - }); -} else { - realHasInstance = function realHasInstance(object) { - return object instanceof this; - }; -} -function Writable(options) { - Duplex = Duplex || __webpack_require__(14903); - - // Writable ctor is applied to Duplexes, too. - // `realHasInstance` is necessary because using plain `instanceof` - // would return false, as no `_writableState` property is attached. - // Trying to use the custom `instanceof` for Writable here will also break the - // Node.js LazyTransform implementation, which has a non-trivial getter for - // `_writableState` that would lead to infinite recursion. - // Checking for a Stream.Duplex instance is faster here instead of inside - // the WritableState constructor, at least with V8 6.5 - var isDuplex = this instanceof Duplex; - if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options); - this._writableState = new WritableState(options, this, isDuplex); +/***/ }), - // legacy. - this.writable = true; - if (options) { - if (typeof options.write === 'function') this._write = options.write; - if (typeof options.writev === 'function') this._writev = options.writev; - if (typeof options.destroy === 'function') this._destroy = options.destroy; - if (typeof options.final === 'function') this._final = options.final; - } - Stream.call(this); -} +/***/ 26882: +/***/ (function(module) { -// Otherwise people can pipe Writable streams, which is just wrong. -Writable.prototype.pipe = function () { - errorOrDestroy(this, new ERR_STREAM_CANNOT_PIPE()); -}; -function writeAfterEnd(stream, cb) { - var er = new ERR_STREAM_WRITE_AFTER_END(); - // TODO: defer error events consistently everywhere, not just the cb - errorOrDestroy(stream, er); - process.nextTick(cb, er); -} +var ceil = Math.ceil; +var floor = Math.floor; -// Checks that a user-supplied chunk is valid, especially for the particular -// mode the stream is in. Currently this means that `null` is never accepted -// and undefined/non-string values are only allowed in object mode. -function validChunk(stream, state, chunk, cb) { - var er; - if (chunk === null) { - er = new ERR_STREAM_NULL_VALUES(); - } else if (typeof chunk !== 'string' && !state.objectMode) { - er = new ERR_INVALID_ARG_TYPE('chunk', ['string', 'Buffer'], chunk); - } - if (er) { - errorOrDestroy(stream, er); - process.nextTick(cb, er); - return false; - } - return true; -} -Writable.prototype.write = function (chunk, encoding, cb) { - var state = this._writableState; - var ret = false; - var isBuf = !state.objectMode && _isUint8Array(chunk); - if (isBuf && !Buffer.isBuffer(chunk)) { - chunk = _uint8ArrayToBuffer(chunk); - } - if (typeof encoding === 'function') { - cb = encoding; - encoding = null; - } - if (isBuf) encoding = 'buffer';else if (!encoding) encoding = state.defaultEncoding; - if (typeof cb !== 'function') cb = nop; - if (state.ending) writeAfterEnd(this, cb);else if (isBuf || validChunk(this, state, chunk, cb)) { - state.pendingcb++; - ret = writeOrBuffer(this, state, isBuf, chunk, encoding, cb); - } - return ret; -}; -Writable.prototype.cork = function () { - this._writableState.corked++; -}; -Writable.prototype.uncork = function () { - var state = this._writableState; - if (state.corked) { - state.corked--; - if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state); - } -}; -Writable.prototype.setDefaultEncoding = function setDefaultEncoding(encoding) { - // node::ParseEncoding() requires lower case. - if (typeof encoding === 'string') encoding = encoding.toLowerCase(); - if (!(['hex', 'utf8', 'utf-8', 'ascii', 'binary', 'base64', 'ucs2', 'ucs-2', 'utf16le', 'utf-16le', 'raw'].indexOf((encoding + '').toLowerCase()) > -1)) throw new ERR_UNKNOWN_ENCODING(encoding); - this._writableState.defaultEncoding = encoding; - return this; +// `ToIntegerOrInfinity` abstract operation +// https://tc39.es/ecma262/#sec-tointegerorinfinity +module.exports = function (argument) { + var number = +argument; + // eslint-disable-next-line no-self-compare -- safe + return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number); }; -Object.defineProperty(Writable.prototype, 'writableBuffer', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState && this._writableState.getBuffer(); - } -}); -function decodeChunk(state, chunk, encoding) { - if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') { - chunk = Buffer.from(chunk, encoding); - } - return chunk; -} -Object.defineProperty(Writable.prototype, 'writableHighWaterMark', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState.highWaterMark; - } -}); -// if we're already writing something, then just put this -// in the queue, and wait our turn. Otherwise, call _write -// If we return false, then we need a drain event, so set that flag. -function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { - if (!isBuf) { - var newChunk = decodeChunk(state, chunk, encoding); - if (chunk !== newChunk) { - isBuf = true; - encoding = 'buffer'; - chunk = newChunk; - } - } - var len = state.objectMode ? 1 : chunk.length; - state.length += len; - var ret = state.length < state.highWaterMark; - // we must ensure that previous needDrain will not be reset to false. - if (!ret) state.needDrain = true; - if (state.writing || state.corked) { - var last = state.lastBufferedRequest; - state.lastBufferedRequest = { - chunk: chunk, - encoding: encoding, - isBuf: isBuf, - callback: cb, - next: null - }; - if (last) { - last.next = state.lastBufferedRequest; - } else { - state.bufferedRequest = state.lastBufferedRequest; - } - state.bufferedRequestCount += 1; - } else { - doWrite(stream, state, false, len, chunk, encoding, cb); - } - return ret; -} -function doWrite(stream, state, writev, len, chunk, encoding, cb) { - state.writelen = len; - state.writecb = cb; - state.writing = true; - state.sync = true; - if (state.destroyed) state.onwrite(new ERR_STREAM_DESTROYED('write'));else if (writev) stream._writev(chunk, state.onwrite);else stream._write(chunk, encoding, state.onwrite); - state.sync = false; -} -function onwriteError(stream, state, sync, er, cb) { - --state.pendingcb; - if (sync) { - // defer the callback if we are being called synchronously - // to avoid piling up things on the stack - process.nextTick(cb, er); - // this can emit finish, and it will always happen - // after error - process.nextTick(finishMaybe, stream, state); - stream._writableState.errorEmitted = true; - errorOrDestroy(stream, er); - } else { - // the caller expect this to happen before if - // it is async - cb(er); - stream._writableState.errorEmitted = true; - errorOrDestroy(stream, er); - // this can emit finish, but finish must - // always follow error - finishMaybe(stream, state); - } -} -function onwriteStateUpdate(state) { - state.writing = false; - state.writecb = null; - state.length -= state.writelen; - state.writelen = 0; -} -function onwrite(stream, er) { - var state = stream._writableState; - var sync = state.sync; - var cb = state.writecb; - if (typeof cb !== 'function') throw new ERR_MULTIPLE_CALLBACK(); - onwriteStateUpdate(state); - if (er) onwriteError(stream, state, sync, er, cb);else { - // Check if we're actually ready to finish, but don't emit yet - var finished = needFinish(state) || stream.destroyed; - if (!finished && !state.corked && !state.bufferProcessing && state.bufferedRequest) { - clearBuffer(stream, state); - } - if (sync) { - process.nextTick(afterWrite, stream, state, finished, cb); - } else { - afterWrite(stream, state, finished, cb); - } - } -} -function afterWrite(stream, state, finished, cb) { - if (!finished) onwriteDrain(stream, state); - state.pendingcb--; - cb(); - finishMaybe(stream, state); -} -// Must force callback to be called on nextTick, so that we don't -// emit 'drain' before the write() consumer gets the 'false' return -// value, and has a chance to attach a 'drain' listener. -function onwriteDrain(stream, state) { - if (state.length === 0 && state.needDrain) { - state.needDrain = false; - stream.emit('drain'); - } -} +/***/ }), -// if there's something in the buffer waiting, then process it -function clearBuffer(stream, state) { - state.bufferProcessing = true; - var entry = state.bufferedRequest; - if (stream._writev && entry && entry.next) { - // Fast case, write everything using _writev() - var l = state.bufferedRequestCount; - var buffer = new Array(l); - var holder = state.corkedRequestsFree; - holder.entry = entry; - var count = 0; - var allBuffers = true; - while (entry) { - buffer[count] = entry; - if (!entry.isBuf) allBuffers = false; - entry = entry.next; - count += 1; - } - buffer.allBuffers = allBuffers; - doWrite(stream, state, true, state.length, buffer, '', holder.finish); +/***/ 23417: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // doWrite is almost always async, defer these to save a bit of time - // as the hot path ends with doWrite - state.pendingcb++; - state.lastBufferedRequest = null; - if (holder.next) { - state.corkedRequestsFree = holder.next; - holder.next = null; - } else { - state.corkedRequestsFree = new CorkedRequest(state); - } - state.bufferedRequestCount = 0; - } else { - // Slow case, write chunks one-by-one - while (entry) { - var chunk = entry.chunk; - var encoding = entry.encoding; - var cb = entry.callback; - var len = state.objectMode ? 1 : chunk.length; - doWrite(stream, state, false, len, chunk, encoding, cb); - entry = entry.next; - state.bufferedRequestCount--; - // if we didn't call the onwrite immediately, then - // it means that we need to wait until it does. - // also, that means that the chunk and cb are currently - // being processed, so move the buffer counter past them. - if (state.writing) { - break; - } - } - if (entry === null) state.lastBufferedRequest = null; - } - state.bufferedRequest = entry; - state.bufferProcessing = false; -} -Writable.prototype._write = function (chunk, encoding, cb) { - cb(new ERR_METHOD_NOT_IMPLEMENTED('_write()')); -}; -Writable.prototype._writev = null; -Writable.prototype.end = function (chunk, encoding, cb) { - var state = this._writableState; - if (typeof chunk === 'function') { - cb = chunk; - chunk = null; - encoding = null; - } else if (typeof encoding === 'function') { - cb = encoding; - encoding = null; - } - if (chunk !== null && chunk !== undefined) this.write(chunk, encoding); +var toIntegerOrInfinity = __webpack_require__(26882); - // .end() fully uncorks - if (state.corked) { - state.corked = 1; - this.uncork(); - } +var min = Math.min; - // ignore unnecessary end() calls. - if (!state.ending) endWritable(this, state, cb); - return this; +// `ToLength` abstract operation +// https://tc39.es/ecma262/#sec-tolength +module.exports = function (argument) { + return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 }; -Object.defineProperty(Writable.prototype, 'writableLength', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - return this._writableState.length; - } -}); -function needFinish(state) { - return state.ending && state.length === 0 && state.bufferedRequest === null && !state.finished && !state.writing; -} -function callFinal(stream, state) { - stream._final(function (err) { - state.pendingcb--; - if (err) { - errorOrDestroy(stream, err); - } - state.prefinished = true; - stream.emit('prefinish'); - finishMaybe(stream, state); - }); -} -function prefinish(stream, state) { - if (!state.prefinished && !state.finalCalled) { - if (typeof stream._final === 'function' && !state.destroyed) { - state.pendingcb++; - state.finalCalled = true; - process.nextTick(callFinal, stream, state); - } else { - state.prefinished = true; - stream.emit('prefinish'); - } - } -} -function finishMaybe(stream, state) { - var need = needFinish(state); - if (need) { - prefinish(stream, state); - if (state.pendingcb === 0) { - state.finished = true; - stream.emit('finish'); - if (state.autoDestroy) { - // In case of duplex streams we need a way to detect - // if the readable side is ready for autoDestroy as well - var rState = stream._readableState; - if (!rState || rState.autoDestroy && rState.endEmitted) { - stream.destroy(); - } - } - } - } - return need; -} -function endWritable(stream, state, cb) { - state.ending = true; - finishMaybe(stream, state); - if (cb) { - if (state.finished) process.nextTick(cb);else stream.once('finish', cb); - } - state.ended = true; - stream.writable = false; -} -function onCorkedFinish(corkReq, state, err) { - var entry = corkReq.entry; - corkReq.entry = null; - while (entry) { - var cb = entry.callback; - state.pendingcb--; - cb(err); - entry = entry.next; - } - // reuse the free corkReq. - state.corkedRequestsFree.next = corkReq; -} -Object.defineProperty(Writable.prototype, 'destroyed', { - // making it explicit this property is not enumerable - // because otherwise some prototype manipulation in - // userland will fail - enumerable: false, - get: function get() { - if (this._writableState === undefined) { - return false; - } - return this._writableState.destroyed; - }, - set: function set(value) { - // we ignore the value if the stream - // has not been initialized yet - if (!this._writableState) { - return; - } - // backward compatibility, the user is explicitly - // managing destroyed - this._writableState.destroyed = value; - } -}); -Writable.prototype.destroy = destroyImpl.destroy; -Writable.prototype._undestroy = destroyImpl.undestroy; -Writable.prototype._destroy = function (err, cb) { - cb(err); +/***/ }), + +/***/ 43162: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +var global = __webpack_require__(32010); +var requireObjectCoercible = __webpack_require__(83943); + +var Object = global.Object; + +// `ToObject` abstract operation +// https://tc39.es/ecma262/#sec-toobject +module.exports = function (argument) { + return Object(requireObjectCoercible(argument)); }; + /***/ }), -/***/ 29819: -/***/ (function(module, exports, __webpack_require__) { +/***/ 80670: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var global = __webpack_require__(32010); +var toPositiveInteger = __webpack_require__(64913); +var RangeError = global.RangeError; + +module.exports = function (it, BYTES) { + var offset = toPositiveInteger(it); + if (offset % BYTES) throw RangeError('Wrong offset'); + return offset; +}; -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** - * Electronic Codebook block mode. - */ - CryptoJS.mode.ECB = function () { - var ECB = CryptoJS.lib.BlockCipherMode.extend(); - ECB.Encryptor = ECB.extend({ - processBlock: function processBlock(words, offset) { - this._cipher.encryptBlock(words, offset); - } - }); - ECB.Decryptor = ECB.extend({ - processBlock: function processBlock(words, offset) { - this._cipher.decryptBlock(words, offset); - } - }); - return ECB; - }(); - return CryptoJS.mode.ECB; -}); /***/ }), -/***/ 29841: +/***/ 64913: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var uncurryThis = __webpack_require__(38347); -var requireObjectCoercible = __webpack_require__(83943); -var toString = __webpack_require__(25096); -var whitespaces = __webpack_require__(43187); - -var replace = uncurryThis(''.replace); -var whitespace = '[' + whitespaces + ']'; -var ltrim = RegExp('^' + whitespace + whitespace + '*'); -var rtrim = RegExp(whitespace + whitespace + '*$'); +var global = __webpack_require__(32010); +var toIntegerOrInfinity = __webpack_require__(26882); -// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation -var createMethod = function (TYPE) { - return function ($this) { - var string = toString(requireObjectCoercible($this)); - if (TYPE & 1) string = replace(string, ltrim, ''); - if (TYPE & 2) string = replace(string, rtrim, ''); - return string; - }; -}; +var RangeError = global.RangeError; -module.exports = { - // `String.prototype.{ trimLeft, trimStart }` methods - // https://tc39.es/ecma262/#sec-string.prototype.trimstart - start: createMethod(1), - // `String.prototype.{ trimRight, trimEnd }` methods - // https://tc39.es/ecma262/#sec-string.prototype.trimend - end: createMethod(2), - // `String.prototype.trim` method - // https://tc39.es/ecma262/#sec-string.prototype.trim - trim: createMethod(3) +module.exports = function (it) { + var result = toIntegerOrInfinity(it); + if (result < 0) throw RangeError("The argument can't be less than 0"); + return result; }; /***/ }), -/***/ 29883: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; +/***/ 2644: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var ArrayBufferViewCore = __webpack_require__(59754); -var $every = (__webpack_require__(91102).every); +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var isObject = __webpack_require__(24517); +var isSymbol = __webpack_require__(46290); +var getMethod = __webpack_require__(51839); +var ordinaryToPrimitive = __webpack_require__(39629); +var wellKnownSymbol = __webpack_require__(38688); -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var TypeError = global.TypeError; +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); -// `%TypedArray%.prototype.every` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.every -exportTypedArrayMethod('every', function every(callbackfn /* , thisArg */) { - return $every(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); -}); +// `ToPrimitive` abstract operation +// https://tc39.es/ecma262/#sec-toprimitive +module.exports = function (input, pref) { + if (!isObject(input) || isSymbol(input)) return input; + var exoticToPrim = getMethod(input, TO_PRIMITIVE); + var result; + if (exoticToPrim) { + if (pref === undefined) pref = 'default'; + result = call(exoticToPrim, input, pref); + if (!isObject(result) || isSymbol(result)) return result; + throw TypeError("Can't convert object to primitive value"); + } + if (pref === undefined) pref = 'number'; + return ordinaryToPrimitive(input, pref); +}; /***/ }), -/***/ 30450: +/***/ 63918: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var toPrimitive = __webpack_require__(2644); +var isSymbol = __webpack_require__(46290); +// `ToPropertyKey` abstract operation +// https://tc39.es/ecma262/#sec-topropertykey +module.exports = function (argument) { + var key = toPrimitive(argument, 'string'); + return isSymbol(key) ? key : key + ''; +}; -__webpack_require__(8953); -__webpack_require__(14032); -// eslint-disable-next-line es/no-typed-arrays -- safe -module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined'; /***/ }), -/***/ 32010: +/***/ 24663: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var check = function (it) { - return it && it.Math == Math && it; -}; - -// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 -module.exports = - // eslint-disable-next-line es/no-global-this -- safe - check(typeof globalThis == 'object' && globalThis) || - check(typeof window == 'object' && window) || - // eslint-disable-next-line no-restricted-globals -- safe - check(typeof self == 'object' && self) || - check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) || - // eslint-disable-next-line no-new-func -- fallback - (function () { return this; })() || Function('return this')(); +var wellKnownSymbol = __webpack_require__(38688); +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var test = {}; -/***/ }), +test[TO_STRING_TAG] = 'z'; -/***/ 32504: -/***/ (function(__unused_webpack_module, exports) { +module.exports = String(test) === '[object z]'; -"use strict"; +/***/ }), -exports.byteLength = byteLength -exports.toByteArray = toByteArray -exports.fromByteArray = fromByteArray +/***/ 25096: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var lookup = [] -var revLookup = [] -var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array +var global = __webpack_require__(32010); +var classof = __webpack_require__(52564); -var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' -for (var i = 0, len = code.length; i < len; ++i) { - lookup[i] = code[i] - revLookup[code.charCodeAt(i)] = i -} +var String = global.String; -// Support decoding URL-safe base64 strings, as Node.js does. -// See: https://en.wikipedia.org/wiki/Base64#URL_applications -revLookup['-'.charCodeAt(0)] = 62 -revLookup['_'.charCodeAt(0)] = 63 +module.exports = function (argument) { + if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string'); + return String(argument); +}; -function getLens (b64) { - var len = b64.length - if (len % 4 > 0) { - throw new Error('Invalid string. Length must be a multiple of 4') - } +/***/ }), - // Trim off extra bytes after placeholder bytes are found - // See: https://github.com/beatgammit/base64-js/issues/42 - var validLen = b64.indexOf('=') - if (validLen === -1) validLen = len +/***/ 68664: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - var placeHoldersLen = validLen === len - ? 0 - : 4 - (validLen % 4) +var global = __webpack_require__(32010); - return [validLen, placeHoldersLen] -} +var String = global.String; -// base64 is 4/3 + up to two characters of the original data -function byteLength (b64) { - var lens = getLens(b64) - var validLen = lens[0] - var placeHoldersLen = lens[1] - return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen -} +module.exports = function (argument) { + try { + return String(argument); + } catch (error) { + return 'Object'; + } +}; -function _byteLength (b64, validLen, placeHoldersLen) { - return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen -} -function toByteArray (b64) { - var tmp - var lens = getLens(b64) - var validLen = lens[0] - var placeHoldersLen = lens[1] +/***/ }), - var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen)) +/***/ 98828: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - var curByte = 0 +"use strict"; - // if there are placeholders, only get up to the last complete 4 chars - var len = placeHoldersLen > 0 - ? validLen - 4 - : validLen +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var DESCRIPTORS = __webpack_require__(15567); +var TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS = __webpack_require__(28834); +var ArrayBufferViewCore = __webpack_require__(59754); +var ArrayBufferModule = __webpack_require__(83124); +var anInstance = __webpack_require__(2868); +var createPropertyDescriptor = __webpack_require__(97841); +var createNonEnumerableProperty = __webpack_require__(48914); +var isIntegralNumber = __webpack_require__(17506); +var toLength = __webpack_require__(23417); +var toIndex = __webpack_require__(71265); +var toOffset = __webpack_require__(80670); +var toPropertyKey = __webpack_require__(63918); +var hasOwn = __webpack_require__(20340); +var classof = __webpack_require__(52564); +var isObject = __webpack_require__(24517); +var isSymbol = __webpack_require__(46290); +var create = __webpack_require__(10819); +var isPrototypeOf = __webpack_require__(70176); +var setPrototypeOf = __webpack_require__(3840); +var getOwnPropertyNames = (__webpack_require__(6611).f); +var typedArrayFrom = __webpack_require__(83590); +var forEach = (__webpack_require__(91102).forEach); +var setSpecies = __webpack_require__(51334); +var definePropertyModule = __webpack_require__(95892); +var getOwnPropertyDescriptorModule = __webpack_require__(72062); +var InternalStateModule = __webpack_require__(70172); +var inheritIfRequired = __webpack_require__(51868); - var i - for (i = 0; i < len; i += 4) { - tmp = - (revLookup[b64.charCodeAt(i)] << 18) | - (revLookup[b64.charCodeAt(i + 1)] << 12) | - (revLookup[b64.charCodeAt(i + 2)] << 6) | - revLookup[b64.charCodeAt(i + 3)] - arr[curByte++] = (tmp >> 16) & 0xFF - arr[curByte++] = (tmp >> 8) & 0xFF - arr[curByte++] = tmp & 0xFF - } +var getInternalState = InternalStateModule.get; +var setInternalState = InternalStateModule.set; +var nativeDefineProperty = definePropertyModule.f; +var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; +var round = Math.round; +var RangeError = global.RangeError; +var ArrayBuffer = ArrayBufferModule.ArrayBuffer; +var ArrayBufferPrototype = ArrayBuffer.prototype; +var DataView = ArrayBufferModule.DataView; +var NATIVE_ARRAY_BUFFER_VIEWS = ArrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; +var TYPED_ARRAY_CONSTRUCTOR = ArrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR; +var TYPED_ARRAY_TAG = ArrayBufferViewCore.TYPED_ARRAY_TAG; +var TypedArray = ArrayBufferViewCore.TypedArray; +var TypedArrayPrototype = ArrayBufferViewCore.TypedArrayPrototype; +var aTypedArrayConstructor = ArrayBufferViewCore.aTypedArrayConstructor; +var isTypedArray = ArrayBufferViewCore.isTypedArray; +var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT'; +var WRONG_LENGTH = 'Wrong length'; - if (placeHoldersLen === 2) { - tmp = - (revLookup[b64.charCodeAt(i)] << 2) | - (revLookup[b64.charCodeAt(i + 1)] >> 4) - arr[curByte++] = tmp & 0xFF - } +var fromList = function (C, list) { + aTypedArrayConstructor(C); + var index = 0; + var length = list.length; + var result = new C(length); + while (length > index) result[index] = list[index++]; + return result; +}; - if (placeHoldersLen === 1) { - tmp = - (revLookup[b64.charCodeAt(i)] << 10) | - (revLookup[b64.charCodeAt(i + 1)] << 4) | - (revLookup[b64.charCodeAt(i + 2)] >> 2) - arr[curByte++] = (tmp >> 8) & 0xFF - arr[curByte++] = tmp & 0xFF - } +var addGetter = function (it, key) { + nativeDefineProperty(it, key, { get: function () { + return getInternalState(this)[key]; + } }); +}; - return arr -} +var isArrayBuffer = function (it) { + var klass; + return isPrototypeOf(ArrayBufferPrototype, it) || (klass = classof(it)) == 'ArrayBuffer' || klass == 'SharedArrayBuffer'; +}; -function tripletToBase64 (num) { - return lookup[num >> 18 & 0x3F] + - lookup[num >> 12 & 0x3F] + - lookup[num >> 6 & 0x3F] + - lookup[num & 0x3F] -} +var isTypedArrayIndex = function (target, key) { + return isTypedArray(target) + && !isSymbol(key) + && key in target + && isIntegralNumber(+key) + && key >= 0; +}; -function encodeChunk (uint8, start, end) { - var tmp - var output = [] - for (var i = start; i < end; i += 3) { - tmp = - ((uint8[i] << 16) & 0xFF0000) + - ((uint8[i + 1] << 8) & 0xFF00) + - (uint8[i + 2] & 0xFF) - output.push(tripletToBase64(tmp)) - } - return output.join('') -} +var wrappedGetOwnPropertyDescriptor = function getOwnPropertyDescriptor(target, key) { + key = toPropertyKey(key); + return isTypedArrayIndex(target, key) + ? createPropertyDescriptor(2, target[key]) + : nativeGetOwnPropertyDescriptor(target, key); +}; -function fromByteArray (uint8) { - var tmp - var len = uint8.length - var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes - var parts = [] - var maxChunkLength = 16383 // must be multiple of 3 +var wrappedDefineProperty = function defineProperty(target, key, descriptor) { + key = toPropertyKey(key); + if (isTypedArrayIndex(target, key) + && isObject(descriptor) + && hasOwn(descriptor, 'value') + && !hasOwn(descriptor, 'get') + && !hasOwn(descriptor, 'set') + // TODO: add validation descriptor w/o calling accessors + && !descriptor.configurable + && (!hasOwn(descriptor, 'writable') || descriptor.writable) + && (!hasOwn(descriptor, 'enumerable') || descriptor.enumerable) + ) { + target[key] = descriptor.value; + return target; + } return nativeDefineProperty(target, key, descriptor); +}; - // go through the array every three bytes, we'll deal with trailing stuff later - for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) { - parts.push(encodeChunk( - uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength) - )) +if (DESCRIPTORS) { + if (!NATIVE_ARRAY_BUFFER_VIEWS) { + getOwnPropertyDescriptorModule.f = wrappedGetOwnPropertyDescriptor; + definePropertyModule.f = wrappedDefineProperty; + addGetter(TypedArrayPrototype, 'buffer'); + addGetter(TypedArrayPrototype, 'byteOffset'); + addGetter(TypedArrayPrototype, 'byteLength'); + addGetter(TypedArrayPrototype, 'length'); } - // pad the end with zeros, but make sure to not forget the extra bytes - if (extraBytes === 1) { - tmp = uint8[len - 1] - parts.push( - lookup[tmp >> 2] + - lookup[(tmp << 4) & 0x3F] + - '==' - ) - } else if (extraBytes === 2) { - tmp = (uint8[len - 2] << 8) + uint8[len - 1] - parts.push( - lookup[tmp >> 10] + - lookup[(tmp >> 4) & 0x3F] + - lookup[(tmp << 2) & 0x3F] + - '=' - ) - } + $({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, { + getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor, + defineProperty: wrappedDefineProperty + }); - return parts.join('') -} + module.exports = function (TYPE, wrapper, CLAMPED) { + var BYTES = TYPE.match(/\d+$/)[0] / 8; + var CONSTRUCTOR_NAME = TYPE + (CLAMPED ? 'Clamped' : '') + 'Array'; + var GETTER = 'get' + TYPE; + var SETTER = 'set' + TYPE; + var NativeTypedArrayConstructor = global[CONSTRUCTOR_NAME]; + var TypedArrayConstructor = NativeTypedArrayConstructor; + var TypedArrayConstructorPrototype = TypedArrayConstructor && TypedArrayConstructor.prototype; + var exported = {}; + var getter = function (that, index) { + var data = getInternalState(that); + return data.view[GETTER](index * BYTES + data.byteOffset, true); + }; -/***/ }), + var setter = function (that, index, value) { + var data = getInternalState(that); + if (CLAMPED) value = (value = round(value)) < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF; + data.view[SETTER](index * BYTES + data.byteOffset, value, true); + }; -/***/ 32631: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + var addElement = function (that, index) { + nativeDefineProperty(that, index, { + get: function () { + return getter(this, index); + }, + set: function (value) { + return setter(this, index, value); + }, + enumerable: true + }); + }; -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); -var tryToString = __webpack_require__(68664); + if (!NATIVE_ARRAY_BUFFER_VIEWS) { + TypedArrayConstructor = wrapper(function (that, data, offset, $length) { + anInstance(that, TypedArrayConstructorPrototype); + var index = 0; + var byteOffset = 0; + var buffer, byteLength, length; + if (!isObject(data)) { + length = toIndex(data); + byteLength = length * BYTES; + buffer = new ArrayBuffer(byteLength); + } else if (isArrayBuffer(data)) { + buffer = data; + byteOffset = toOffset(offset, BYTES); + var $len = data.byteLength; + if ($length === undefined) { + if ($len % BYTES) throw RangeError(WRONG_LENGTH); + byteLength = $len - byteOffset; + if (byteLength < 0) throw RangeError(WRONG_LENGTH); + } else { + byteLength = toLength($length) * BYTES; + if (byteLength + byteOffset > $len) throw RangeError(WRONG_LENGTH); + } + length = byteLength / BYTES; + } else if (isTypedArray(data)) { + return fromList(TypedArrayConstructor, data); + } else { + return call(typedArrayFrom, TypedArrayConstructor, data); + } + setInternalState(that, { + buffer: buffer, + byteOffset: byteOffset, + byteLength: byteLength, + length: length, + view: new DataView(buffer) + }); + while (index < length) addElement(that, index++); + }); -var TypeError = global.TypeError; + if (setPrototypeOf) setPrototypeOf(TypedArrayConstructor, TypedArray); + TypedArrayConstructorPrototype = TypedArrayConstructor.prototype = create(TypedArrayPrototype); + } else if (TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS) { + TypedArrayConstructor = wrapper(function (dummy, data, typedArrayOffset, $length) { + anInstance(dummy, TypedArrayConstructorPrototype); + return inheritIfRequired(function () { + if (!isObject(data)) return new NativeTypedArrayConstructor(toIndex(data)); + if (isArrayBuffer(data)) return $length !== undefined + ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES), $length) + : typedArrayOffset !== undefined + ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES)) + : new NativeTypedArrayConstructor(data); + if (isTypedArray(data)) return fromList(TypedArrayConstructor, data); + return call(typedArrayFrom, TypedArrayConstructor, data); + }(), dummy, TypedArrayConstructor); + }); -// `Assert: IsCallable(argument) is true` -module.exports = function (argument) { - if (isCallable(argument)) return argument; - throw TypeError(tryToString(argument) + ' is not a function'); -}; + if (setPrototypeOf) setPrototypeOf(TypedArrayConstructor, TypedArray); + forEach(getOwnPropertyNames(NativeTypedArrayConstructor), function (key) { + if (!(key in TypedArrayConstructor)) { + createNonEnumerableProperty(TypedArrayConstructor, key, NativeTypedArrayConstructor[key]); + } + }); + TypedArrayConstructor.prototype = TypedArrayConstructorPrototype; + } + if (TypedArrayConstructorPrototype.constructor !== TypedArrayConstructor) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, 'constructor', TypedArrayConstructor); + } -/***/ }), + createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_CONSTRUCTOR, TypedArrayConstructor); -/***/ 32843: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + if (TYPED_ARRAY_TAG) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_TAG, CONSTRUCTOR_NAME); + } -var global = __webpack_require__(32010); -var aCallable = __webpack_require__(32631); -var toObject = __webpack_require__(43162); -var IndexedObject = __webpack_require__(7514); -var lengthOfArrayLike = __webpack_require__(45495); + exported[CONSTRUCTOR_NAME] = TypedArrayConstructor; -var TypeError = global.TypeError; + $({ + global: true, forced: TypedArrayConstructor != NativeTypedArrayConstructor, sham: !NATIVE_ARRAY_BUFFER_VIEWS + }, exported); -// `Array.prototype.{ reduce, reduceRight }` methods implementation -var createMethod = function (IS_RIGHT) { - return function (that, callbackfn, argumentsLength, memo) { - aCallable(callbackfn); - var O = toObject(that); - var self = IndexedObject(O); - var length = lengthOfArrayLike(O); - var index = IS_RIGHT ? length - 1 : 0; - var i = IS_RIGHT ? -1 : 1; - if (argumentsLength < 2) while (true) { - if (index in self) { - memo = self[index]; - index += i; - break; - } - index += i; - if (IS_RIGHT ? index < 0 : length <= index) { - throw TypeError('Reduce of empty array with no initial value'); - } + if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) { + createNonEnumerableProperty(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES); } - for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) { - memo = callbackfn(memo, self[index], index, O); + + if (!(BYTES_PER_ELEMENT in TypedArrayConstructorPrototype)) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, BYTES_PER_ELEMENT, BYTES); } - return memo; - }; -}; -module.exports = { - // `Array.prototype.reduce` method - // https://tc39.es/ecma262/#sec-array.prototype.reduce - left: createMethod(false), - // `Array.prototype.reduceRight` method - // https://tc39.es/ecma262/#sec-array.prototype.reduceright - right: createMethod(true) -}; + setSpecies(CONSTRUCTOR_NAME); + }; +} else module.exports = function () { /* empty */ }; /***/ }), -/***/ 33766: +/***/ 28834: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; - +/* eslint-disable no-new -- required for testing */ +var global = __webpack_require__(32010); +var fails = __webpack_require__(47044); +var checkCorrectnessOfIteration = __webpack_require__(46769); +var NATIVE_ARRAY_BUFFER_VIEWS = (__webpack_require__(59754).NATIVE_ARRAY_BUFFER_VIEWS); -var $Object = __webpack_require__(75846); +var ArrayBuffer = global.ArrayBuffer; +var Int8Array = global.Int8Array; -/** @type {import('./Object.getPrototypeOf')} */ -module.exports = $Object.getPrototypeOf || null; +module.exports = !NATIVE_ARRAY_BUFFER_VIEWS || !fails(function () { + Int8Array(1); +}) || !fails(function () { + new Int8Array(-1); +}) || !checkCorrectnessOfIteration(function (iterable) { + new Int8Array(); + new Int8Array(null); + new Int8Array(1.5); + new Int8Array(iterable); +}, true) || fails(function () { + // Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill + return new Int8Array(new ArrayBuffer(2), 1, undefined).length !== 1; +}); /***/ }), -/***/ 34074: +/***/ 59610: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var uncurryThis = __webpack_require__(38347); -var arraySlice = __webpack_require__(73163); - -var replace = uncurryThis(''.replace); -var split = uncurryThis(''.split); -var join = uncurryThis([].join); - -var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd'); -var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/; -var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST); -var IS_FIREFOX_OR_SAFARI_STACK = /@[^\n]*\n/.test(TEST) && !/zxcasd/.test(TEST); +var arrayFromConstructorAndList = __webpack_require__(34269); +var typedArraySpeciesConstructor = __webpack_require__(34815); -module.exports = function (stack, dropEntries) { - if (typeof stack != 'string') return stack; - if (IS_V8_OR_CHAKRA_STACK) { - while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, ''); - } else if (IS_FIREFOX_OR_SAFARI_STACK) { - return join(arraySlice(split(stack, '\n'), dropEntries), '\n'); - } return stack; +module.exports = function (instance, list) { + return arrayFromConstructorAndList(typedArraySpeciesConstructor(instance), list); }; /***/ }), -/***/ 34097: -/***/ (function(module) { - -/* Copyright 2013 Google Inc. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - 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. - - Bit reading helpers -*/ - -var BROTLI_READ_SIZE = 4096; -var BROTLI_IBUF_SIZE = (2 * BROTLI_READ_SIZE + 32); -var BROTLI_IBUF_MASK = (2 * BROTLI_READ_SIZE - 1); - -var kBitMask = new Uint32Array([ - 0, 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, - 65535, 131071, 262143, 524287, 1048575, 2097151, 4194303, 8388607, 16777215 -]); - -/* Input byte buffer, consist of a ringbuffer and a "slack" region where */ -/* bytes from the start of the ringbuffer are copied. */ -function BrotliBitReader(input) { - this.buf_ = new Uint8Array(BROTLI_IBUF_SIZE); - this.input_ = input; /* input callback */ - - this.reset(); -} - -BrotliBitReader.READ_SIZE = BROTLI_READ_SIZE; -BrotliBitReader.IBUF_MASK = BROTLI_IBUF_MASK; - -BrotliBitReader.prototype.reset = function() { - this.buf_ptr_ = 0; /* next input will write here */ - this.val_ = 0; /* pre-fetched bits */ - this.pos_ = 0; /* byte position in stream */ - this.bit_pos_ = 0; /* current bit-reading position in val_ */ - this.bit_end_pos_ = 0; /* bit-reading end position from LSB of val_ */ - this.eos_ = 0; /* input stream is finished */ - - this.readMoreInput(); - for (var i = 0; i < 4; i++) { - this.val_ |= this.buf_[this.pos_] << (8 * i); - ++this.pos_; - } - - return this.bit_end_pos_ > 0; -}; - -/* Fills up the input ringbuffer by calling the input callback. - - Does nothing if there are at least 32 bytes present after current position. - - Returns 0 if either: - - the input callback returned an error, or - - there is no more input and the position is past the end of the stream. +/***/ 83590: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - After encountering the end of the input stream, 32 additional zero bytes are - copied to the ringbuffer, therefore it is safe to call this function after - every 32 bytes of input is read. -*/ -BrotliBitReader.prototype.readMoreInput = function() { - if (this.bit_end_pos_ > 256) { - return; - } else if (this.eos_) { - if (this.bit_pos_ > this.bit_end_pos_) - throw new Error('Unexpected end of input ' + this.bit_pos_ + ' ' + this.bit_end_pos_); - } else { - var dst = this.buf_ptr_; - var bytes_read = this.input_.read(this.buf_, dst, BROTLI_READ_SIZE); - if (bytes_read < 0) { - throw new Error('Unexpected end of input'); - } - - if (bytes_read < BROTLI_READ_SIZE) { - this.eos_ = 1; - /* Store 32 bytes of zero after the stream end. */ - for (var p = 0; p < 32; p++) - this.buf_[dst + bytes_read + p] = 0; - } - - if (dst === 0) { - /* Copy the head of the ringbuffer to the slack region. */ - for (var p = 0; p < 32; p++) - this.buf_[(BROTLI_READ_SIZE << 1) + p] = this.buf_[p]; +var bind = __webpack_require__(25567); +var call = __webpack_require__(2834); +var aConstructor = __webpack_require__(69075); +var toObject = __webpack_require__(43162); +var lengthOfArrayLike = __webpack_require__(45495); +var getIterator = __webpack_require__(15892); +var getIteratorMethod = __webpack_require__(13872); +var isArrayIteratorMethod = __webpack_require__(89564); +var aTypedArrayConstructor = (__webpack_require__(59754).aTypedArrayConstructor); - this.buf_ptr_ = BROTLI_READ_SIZE; - } else { - this.buf_ptr_ = 0; +module.exports = function from(source /* , mapfn, thisArg */) { + var C = aConstructor(this); + var O = toObject(source); + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + var iteratorMethod = getIteratorMethod(O); + var i, length, result, step, iterator, next; + if (iteratorMethod && !isArrayIteratorMethod(iteratorMethod)) { + iterator = getIterator(O, iteratorMethod); + next = iterator.next; + O = []; + while (!(step = call(next, iterator)).done) { + O.push(step.value); } - - this.bit_end_pos_ += bytes_read << 3; } -}; - -/* Guarantees that there are at least 24 bits in the buffer. */ -BrotliBitReader.prototype.fillBitWindow = function() { - while (this.bit_pos_ >= 8) { - this.val_ >>>= 8; - this.val_ |= this.buf_[this.pos_ & BROTLI_IBUF_MASK] << 24; - ++this.pos_; - this.bit_pos_ = this.bit_pos_ - 8 >>> 0; - this.bit_end_pos_ = this.bit_end_pos_ - 8 >>> 0; + if (mapping && argumentsLength > 2) { + mapfn = bind(mapfn, arguments[2]); } -}; - -/* Reads the specified number of bits from Read Buffer. */ -BrotliBitReader.prototype.readBits = function(n_bits) { - if (32 - this.bit_pos_ < n_bits) { - this.fillBitWindow(); + length = lengthOfArrayLike(O); + result = new (aTypedArrayConstructor(C))(length); + for (i = 0; length > i; i++) { + result[i] = mapping ? mapfn(O[i], i) : O[i]; } - - var val = ((this.val_ >>> this.bit_pos_) & kBitMask[n_bits]); - this.bit_pos_ += n_bits; - return val; + return result; }; -module.exports = BrotliBitReader; - /***/ }), -/***/ 34269: -/***/ (function(module) { +/***/ 34815: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -module.exports = function (Constructor, list) { - var index = 0; - var length = list.length; - var result = new Constructor(length); - while (length > index) result[index] = list[index++]; - return result; +var ArrayBufferViewCore = __webpack_require__(59754); +var speciesConstructor = __webpack_require__(27754); + +var TYPED_ARRAY_CONSTRUCTOR = ArrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR; +var aTypedArrayConstructor = ArrayBufferViewCore.aTypedArrayConstructor; + +// a part of `TypedArraySpeciesCreate` abstract operation +// https://tc39.es/ecma262/#typedarray-species-create +module.exports = function (originalArray) { + return aTypedArrayConstructor(speciesConstructor(originalArray, originalArray[TYPED_ARRAY_CONSTRUCTOR])); }; /***/ }), -/***/ 34460: +/***/ 46859: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -module.exports = __webpack_require__(20980).BrotliDecompressBuffer; - +var uncurryThis = __webpack_require__(38347); -/***/ }), +var id = 0; +var postfix = Math.random(); +var toString = uncurryThis(1.0.toString); -/***/ 34506: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +module.exports = function (key) { + return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36); +}; -"use strict"; +/***/ }), -var Buffer = (__webpack_require__(93143).Buffer) +/***/ 9567: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -// 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 (streamModule) { - var Transform = streamModule.Transform +/* eslint-disable es/no-symbol -- required for testing */ +var NATIVE_SYMBOL = __webpack_require__(46887); - // == Encoder stream ======================================================= +module.exports = NATIVE_SYMBOL + && !Symbol.sham + && typeof Symbol.iterator == 'symbol'; - 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) - } - IconvLiteEncoderStream.prototype = Object.create(Transform.prototype, { - constructor: { value: IconvLiteEncoderStream } - }) +/***/ }), - IconvLiteEncoderStream.prototype._transform = function (chunk, encoding, done) { - if (typeof chunk !== "string") { - return done(new Error("Iconv encoding stream needs strings as its input.")) - } +/***/ 75960: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - try { - var res = this.conv.write(chunk) - if (res && res.length) this.push(res) - done() - } catch (e) { - done(e) - } - } +var wellKnownSymbol = __webpack_require__(38688); - IconvLiteEncoderStream.prototype._flush = function (done) { - try { - var res = this.conv.end() - if (res && res.length) this.push(res) - done() - } catch (e) { - done(e) - } - } +exports.f = wellKnownSymbol; - 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 - } - // == Decoder stream ======================================================= +/***/ }), - function IconvLiteDecoderStream (conv, options) { - this.conv = conv - options = options || {} - options.encoding = this.encoding = "utf8" // We output strings. - Transform.call(this, options) - } +/***/ 38688: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - IconvLiteDecoderStream.prototype = Object.create(Transform.prototype, { - constructor: { value: IconvLiteDecoderStream } - }) +var global = __webpack_require__(32010); +var shared = __webpack_require__(464); +var hasOwn = __webpack_require__(20340); +var uid = __webpack_require__(46859); +var NATIVE_SYMBOL = __webpack_require__(46887); +var USE_SYMBOL_AS_UID = __webpack_require__(9567); - 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) - } - } +var WellKnownSymbolsStore = shared('wks'); +var Symbol = global.Symbol; +var symbolFor = Symbol && Symbol['for']; +var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid; - 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) +module.exports = function (name) { + if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) { + var description = 'Symbol.' + name; + if (NATIVE_SYMBOL && hasOwn(Symbol, name)) { + WellKnownSymbolsStore[name] = Symbol[name]; + } else if (USE_SYMBOL_AS_UID && symbolFor) { + WellKnownSymbolsStore[name] = symbolFor(description); + } else { + WellKnownSymbolsStore[name] = createWellKnownSymbol(description); } - } - - 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 - } - - return { - IconvLiteEncoderStream: IconvLiteEncoderStream, - IconvLiteDecoderStream: IconvLiteDecoderStream - } -} + } return WellKnownSymbolsStore[name]; +}; /***/ }), -/***/ 34815: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var ArrayBufferViewCore = __webpack_require__(59754); -var speciesConstructor = __webpack_require__(27754); - -var TYPED_ARRAY_CONSTRUCTOR = ArrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR; -var aTypedArrayConstructor = ArrayBufferViewCore.aTypedArrayConstructor; +/***/ 43187: +/***/ (function(module) { -// a part of `TypedArraySpeciesCreate` abstract operation -// https://tc39.es/ecma262/#typedarray-species-create -module.exports = function (originalArray) { - return aTypedArrayConstructor(speciesConstructor(originalArray, originalArray[TYPED_ARRAY_CONSTRUCTOR])); -}; +// a string of all valid unicode whitespaces +module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + + '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; /***/ }), -/***/ 34858: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 94910: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var $ = __webpack_require__(56475); var global = __webpack_require__(32010); -var toIntegerOrInfinity = __webpack_require__(26882); -var toString = __webpack_require__(25096); -var requireObjectCoercible = __webpack_require__(83943); +var isPrototypeOf = __webpack_require__(70176); +var getPrototypeOf = __webpack_require__(69548); +var setPrototypeOf = __webpack_require__(3840); +var copyConstructorProperties = __webpack_require__(2675); +var create = __webpack_require__(10819); +var createNonEnumerableProperty = __webpack_require__(48914); +var createPropertyDescriptor = __webpack_require__(97841); +var clearErrorStack = __webpack_require__(34074); +var installErrorCause = __webpack_require__(87811); +var iterate = __webpack_require__(80383); +var normalizeStringArgument = __webpack_require__(86392); +var ERROR_STACK_INSTALLABLE = __webpack_require__(45144); -var RangeError = global.RangeError; +var Error = global.Error; +var push = [].push; -// `String.prototype.repeat` method implementation -// https://tc39.es/ecma262/#sec-string.prototype.repeat -module.exports = function repeat(count) { - var str = toString(requireObjectCoercible(this)); - var result = ''; - var n = toIntegerOrInfinity(count); - if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions'); - for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str; - return result; +var $AggregateError = function AggregateError(errors, message /* , options */) { + var that = isPrototypeOf(AggregateErrorPrototype, this) ? this : create(AggregateErrorPrototype); + var options = arguments.length > 2 ? arguments[2] : undefined; + if (setPrototypeOf) { + that = setPrototypeOf(new Error(undefined), getPrototypeOf(that)); + } + createNonEnumerableProperty(that, 'message', normalizeStringArgument(message, '')); + if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(that, 'stack', clearErrorStack(that.stack, 1)); + installErrorCause(that, options); + var errorsArray = []; + iterate(errors, push, { that: errorsArray }); + createNonEnumerableProperty(that, 'errors', errorsArray); + return that; }; +if (setPrototypeOf) setPrototypeOf($AggregateError, Error); +else copyConstructorProperties($AggregateError, Error); + +var AggregateErrorPrototype = $AggregateError.prototype = create(Error.prototype, { + constructor: createPropertyDescriptor(1, $AggregateError), + message: createPropertyDescriptor(1, ''), + name: createPropertyDescriptor(1, 'AggregateError') +}); + +// `AggregateError` constructor +// https://tc39.es/ecma262/#sec-aggregate-error-constructor +$({ global: true }, { + AggregateError: $AggregateError +}); + /***/ }), -/***/ 34984: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 39081: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; +var $ = __webpack_require__(56475); var global = __webpack_require__(32010); +var fails = __webpack_require__(47044); +var isArray = __webpack_require__(59113); var isObject = __webpack_require__(24517); +var toObject = __webpack_require__(43162); +var lengthOfArrayLike = __webpack_require__(45495); +var createProperty = __webpack_require__(38639); +var arraySpeciesCreate = __webpack_require__(45744); +var arrayMethodHasSpeciesSupport = __webpack_require__(56280); +var wellKnownSymbol = __webpack_require__(38688); +var V8_VERSION = __webpack_require__(70091); -var String = global.String; +var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable'); +var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; +var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; var TypeError = global.TypeError; -// `Assert: Type(argument) is Object` -module.exports = function (argument) { - if (isObject(argument)) return argument; - throw TypeError(String(argument) + ' is not an object'); +// We can't use this feature detection in V8 since it causes +// deoptimization and serious performance degradation +// https://github.com/zloirock/core-js/issues/679 +var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () { + var array = []; + array[IS_CONCAT_SPREADABLE] = false; + return array.concat()[0] !== array; +}); + +var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat'); + +var isConcatSpreadable = function (O) { + if (!isObject(O)) return false; + var spreadable = O[IS_CONCAT_SPREADABLE]; + return spreadable !== undefined ? !!spreadable : isArray(O); }; +var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; -/***/ }), +// `Array.prototype.concat` method +// https://tc39.es/ecma262/#sec-array.prototype.concat +// with adding support of @@isConcatSpreadable and @@species +$({ target: 'Array', proto: true, forced: FORCED }, { + // eslint-disable-next-line no-unused-vars -- required for `.length` + concat: function concat(arg) { + var O = toObject(this); + var A = arraySpeciesCreate(O, 0); + var n = 0; + var i, k, length, len, E; + for (i = -1, length = arguments.length; i < length; i++) { + E = i === -1 ? O : arguments[i]; + if (isConcatSpreadable(E)) { + len = lengthOfArrayLike(E); + if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); + } else { + if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + createProperty(A, n++, E); + } + } + A.length = n; + return A; + } +}); -/***/ 35074: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +/***/ }), +/***/ 68626: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var define = __webpack_require__(77802); -var getPolyfill = __webpack_require__(61320); +var $ = __webpack_require__(56475); +var copyWithin = __webpack_require__(92642); +var addToUnscopables = __webpack_require__(71156); -/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */ +// `Array.prototype.copyWithin` method +// https://tc39.es/ecma262/#sec-array.prototype.copywithin +$({ target: 'Array', proto: true }, { + copyWithin: copyWithin +}); -module.exports = function shimNumberIsNaN() { - var polyfill = getPolyfill(); - define(Number, { isNaN: polyfill }, { - isNaN: function testIsNaN() { - return Number.isNaN !== polyfill; - } - }); - return polyfill; -}; +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('copyWithin'); /***/ }), -/***/ 35143: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 41584: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var $ = __webpack_require__(56475); +var fill = __webpack_require__(72864); +var addToUnscopables = __webpack_require__(71156); -var Buffer = (__webpack_require__(93143).Buffer) +// `Array.prototype.fill` method +// https://tc39.es/ecma262/#sec-array.prototype.fill +$({ target: 'Array', proto: true }, { + fill: fill +}); -// 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. +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('fill'); -exports._dbcs = DBCSCodec -var UNASSIGNED = -1 -var GB18030_CODE = -2 -var SEQ_START = -10 -var NODE_START = -1000 -var UNASSIGNED_NODE = new Array(0x100) -var DEF_CHAR = -1 +/***/ }), -for (var i = 0; i < 0x100; i++) { UNASSIGNED_NODE[i] = UNASSIGNED } +/***/ 49063: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// 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.") } +"use strict"; - // Load tables. - var mappingTable = codecOptions.table() +var $ = __webpack_require__(56475); +var $filter = (__webpack_require__(91102).filter); +var arrayMethodHasSpeciesSupport = __webpack_require__(56280); - // Decode tables: MBCS -> Unicode. +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter'); - // 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. +// `Array.prototype.filter` method +// https://tc39.es/ecma262/#sec-array.prototype.filter +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { + filter: function filter(callbackfn /* , thisArg */) { + return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); - // 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. +/***/ 97514: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // Add GB18030 common decode nodes. - var commonThirdByteNodeIdx = this.decodeTables.length - this.decodeTables.push(UNASSIGNED_NODE.slice(0)) +"use strict"; - var commonFourthByteNodeIdx = this.decodeTables.length - this.decodeTables.push(UNASSIGNED_NODE.slice(0)) +var $ = __webpack_require__(56475); +var $find = (__webpack_require__(91102).find); +var addToUnscopables = __webpack_require__(71156); - // 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 FIND = 'find'; +var SKIPS_HOLES = true; - 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") - } +// Shouldn't skip holes +if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; }); - var fourthByteNode = this.decodeTables[NODE_START - thirdByteNode[k]] - for (var l = 0x30; l <= 0x39; l++) { - if (fourthByteNode[l] === UNASSIGNED) { fourthByteNode[l] = GB18030_CODE } - } - } - } - } +// `Array.prototype.find` method +// https://tc39.es/ecma262/#sec-array.prototype.find +$({ target: 'Array', proto: true, forced: SKIPS_HOLES }, { + find: function find(callbackfn /* , that = undefined */) { + return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } +}); - this.defaultCharUnicode = iconv.defaultCharUnicode +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables(FIND); - // 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 = [] +/***/ 11765: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // 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 } - } - } - } +var $ = __webpack_require__(56475); +var from = __webpack_require__(95717); +var checkCorrectnessOfIteration = __webpack_require__(46769); - // Use decode trie to recursively fill out encode tables. - this._fillEncodeTable(0, 0, skipEncodeChars) +var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { + // eslint-disable-next-line es/no-array-from -- required for testing + Array.from(iterable); +}); - // 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]) } - } - } +// `Array.from` method +// https://tc39.es/ecma262/#sec-array.from +$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, { + from: from +}); - 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) -} -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) } +/***/ 58028: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - 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]] +"use strict"; - 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)) } +var $ = __webpack_require__(56475); +var $includes = (__webpack_require__(12636).includes); +var addToUnscopables = __webpack_require__(71156); + +// `Array.prototype.includes` method +// https://tc39.es/ecma262/#sec-array.prototype.includes +$({ target: 'Array', proto: true }, { + includes: function includes(el /* , fromIndex = 0 */) { + return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined); } - return node -} +}); -DBCSCodec.prototype._addDecodeChunk = function (chunk) { - // First element of chunk is the hex mbcs code where we start. - var curAddr = parseInt(chunk[0], 16) +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('includes'); - // Choose the decoding node where we'll write our chars. - var writeTable = this._getDecodeTrieNode(curAddr) - curAddr = curAddr & 0xFF - // 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 (code >= 0xD800 && code < 0xDC00) { // Decode surrogate - var codeTrail = part.charCodeAt(l++) - if (codeTrail >= 0xDC00 && 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 (code > 0x0FF0 && 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. +/***/ }), - 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) } -} +/***/ 81755: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -// 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] -} +"use strict"; -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 } -} +var toIndexedObject = __webpack_require__(98086); +var addToUnscopables = __webpack_require__(71156); +var Iterators = __webpack_require__(15366); +var InternalStateModule = __webpack_require__(70172); +var defineIterator = __webpack_require__(97001); -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 ARRAY_ITERATOR = 'Array Iterator'; +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR); - 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) +// `Array.prototype.entries` method +// https://tc39.es/ecma262/#sec-array.prototype.entries +// `Array.prototype.keys` method +// https://tc39.es/ecma262/#sec-array.prototype.keys +// `Array.prototype.values` method +// https://tc39.es/ecma262/#sec-array.prototype.values +// `Array.prototype[@@iterator]` method +// https://tc39.es/ecma262/#sec-array.prototype-@@iterator +// `CreateArrayIterator` internal method +// https://tc39.es/ecma262/#sec-createarrayiterator +module.exports = defineIterator(Array, 'Array', function (iterated, kind) { + setInternalState(this, { + type: ARRAY_ITERATOR, + target: toIndexedObject(iterated), // target + index: 0, // next index + kind: kind // kind + }); +// `%ArrayIteratorPrototype%.next` method +// https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next +}, function () { + var state = getInternalState(this); + var target = state.target; + var kind = state.kind; + var index = state.index++; + if (!target || index >= target.length) { + state.target = undefined; + return { value: undefined, done: true }; } + if (kind == 'keys') return { value: index, done: false }; + if (kind == 'values') return { value: target[index], done: false }; + return { value: [index, target[index]], done: false }; +}, 'values'); - // 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 } - } - } +// argumentsList[@@iterator] is %ArrayProto_values% +// https://tc39.es/ecma262/#sec-createunmappedargumentsobject +// https://tc39.es/ecma262/#sec-createmappedargumentsobject +Iterators.Arguments = Iterators.Array; - // Set the leaf to given dbcsCode. - uCode = seq[seq.length - 1] - node[uCode] = dbcsCode -} +// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables +addToUnscopables('keys'); +addToUnscopables('values'); +addToUnscopables('entries'); -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 } - 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 -} +/***/ }), -// == Encoder ================================================================== +/***/ 94845: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -function DBCSEncoder (options, codec) { - // Encoder state - this.leadSurrogate = -1 - this.seqObj = undefined +"use strict"; - // Static data - this.encodeTable = codec.encodeTable - this.encodeTableSeq = codec.encodeTableSeq - this.defaultCharSingleByte = codec.defCharSB - this.gb18030 = codec.gb18030 -} +var $ = __webpack_require__(56475); +var uncurryThis = __webpack_require__(38347); +var IndexedObject = __webpack_require__(7514); +var toIndexedObject = __webpack_require__(98086); +var arrayMethodIsStrict = __webpack_require__(81007); -DBCSEncoder.prototype.write = function (str) { - var newBuf = Buffer.alloc(str.length * (this.gb18030 ? 4 : 3)) - var leadSurrogate = this.leadSurrogate - var seqObj = this.seqObj - var nextChar = -1 - var i = 0; var j = 0 +var un$Join = uncurryThis([].join); - 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 - } +var ES3_STRINGS = IndexedObject != Object; +var STRICT_METHOD = arrayMethodIsStrict('join', ','); - // 1. Handle surrogates. - if (uCode >= 0xD800 && 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 - } +// `Array.prototype.join` method +// https://tc39.es/ecma262/#sec-array.prototype.join +$({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, { + join: function join(separator) { + return un$Join(toIndexedObject(this), separator === undefined ? ',' : separator); + } +}); - // 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 - } else if (typeof resCode === "number") { // Sequence finished. Write it. - dbcsCode = resCode - } 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. - } 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 - } +/***/ }), - 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 - } - } - } +/***/ 80055: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // 3. Write dbcsCode character. - if (dbcsCode === UNASSIGNED) { dbcsCode = this.defaultCharSingleByte } +"use strict"; - 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 - } +var $ = __webpack_require__(56475); +var $map = (__webpack_require__(91102).map); +var arrayMethodHasSpeciesSupport = __webpack_require__(56280); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map'); + +// `Array.prototype.map` method +// https://tc39.es/ecma262/#sec-array.prototype.map +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { + map: function map(callbackfn /* , thisArg */) { + return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } +}); - this.seqObj = seqObj - this.leadSurrogate = leadSurrogate - return newBuf.slice(0, j) -} -DBCSEncoder.prototype.end = function () { - if (this.leadSurrogate === -1 && this.seqObj === undefined) { return } // All clean. Most often case. +/***/ }), - var newBuf = Buffer.alloc(10); var j = 0 +/***/ 20731: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - 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 +"use strict"; + +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var isArray = __webpack_require__(59113); +var isConstructor = __webpack_require__(20884); +var isObject = __webpack_require__(24517); +var toAbsoluteIndex = __webpack_require__(74841); +var lengthOfArrayLike = __webpack_require__(45495); +var toIndexedObject = __webpack_require__(98086); +var createProperty = __webpack_require__(38639); +var wellKnownSymbol = __webpack_require__(38688); +var arrayMethodHasSpeciesSupport = __webpack_require__(56280); +var un$Slice = __webpack_require__(73163); + +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice'); + +var SPECIES = wellKnownSymbol('species'); +var Array = global.Array; +var max = Math.max; + +// `Array.prototype.slice` method +// https://tc39.es/ecma262/#sec-array.prototype.slice +// fallback for not array-like ES3 strings and DOM objects +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { + slice: function slice(start, end) { + var O = toIndexedObject(this); + var length = lengthOfArrayLike(O); + var k = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); + // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible + var Constructor, result, n; + if (isArray(O)) { + Constructor = O.constructor; + // cross-realm fallback + if (isConstructor(Constructor) && (Constructor === Array || isArray(Constructor.prototype))) { + Constructor = undefined; + } else if (isObject(Constructor)) { + Constructor = Constructor[SPECIES]; + if (Constructor === null) Constructor = undefined; + } + if (Constructor === Array || Constructor === undefined) { + return un$Slice(O, k, fin); } - } else { - // See todo above. } - this.seqObj = undefined + result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0)); + for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); + result.length = n; + return result; } +}); - if (this.leadSurrogate !== -1) { - // Incomplete surrogate pair - only lead surrogate found. - newBuf[j++] = this.defaultCharSingleByte - this.leadSurrogate = -1 - } - return newBuf.slice(0, j) -} +/***/ }), -// Export for testing -DBCSEncoder.prototype.findIdx = findIdx +/***/ 45337: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// == Decoder ================================================================== +"use strict"; -function DBCSDecoder (options, codec) { - // Decoder state - this.nodeIdx = 0 - this.prevBytes = [] +var $ = __webpack_require__(56475); +var uncurryThis = __webpack_require__(38347); +var aCallable = __webpack_require__(32631); +var toObject = __webpack_require__(43162); +var lengthOfArrayLike = __webpack_require__(45495); +var toString = __webpack_require__(25096); +var fails = __webpack_require__(47044); +var internalSort = __webpack_require__(43977); +var arrayMethodIsStrict = __webpack_require__(81007); +var FF = __webpack_require__(3809); +var IE_OR_EDGE = __webpack_require__(21983); +var V8 = __webpack_require__(70091); +var WEBKIT = __webpack_require__(41731); - // Static data - this.decodeTables = codec.decodeTables - this.decodeTableSeq = codec.decodeTableSeq - this.defaultCharUnicode = codec.defaultCharUnicode - this.gb18030 = codec.gb18030 -} +var test = []; +var un$Sort = uncurryThis(test.sort); +var push = uncurryThis(test.push); -DBCSDecoder.prototype.write = function (buf) { - var newBuf = Buffer.alloc(buf.length * 2) - var nodeIdx = this.nodeIdx - var prevBytes = this.prevBytes; var prevOffset = this.prevBytes.length - var seqStart = -this.prevBytes.length // idx of the start of current parsed sequence. - var uCode +// IE8- +var FAILS_ON_UNDEFINED = fails(function () { + test.sort(undefined); +}); +// V8 bug +var FAILS_ON_NULL = fails(function () { + test.sort(null); +}); +// Old WebKit +var STRICT_METHOD = arrayMethodIsStrict('sort'); - for (var i = 0, j = 0; i < buf.length; i++) { - var curByte = (i >= 0) ? buf[i] : prevBytes[i + prevOffset] +var STABLE_SORT = !fails(function () { + // feature detection can be too slow, so check engines versions + if (V8) return V8 < 70; + if (FF && FF > 3) return; + if (IE_OR_EDGE) return true; + if (WEBKIT) return WEBKIT < 603; - // Lookup in current trie node. - var uCode = this.decodeTables[nodeIdx][curByte] + var result = ''; + var code, chr, value, index; - 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) } + // generate an array with more 512 elements (Chakra and old V8 fails only in this case) + for (code = 65; code < 76; code++) { + chr = String.fromCharCode(code); - // 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 + switch (code) { + case 66: case 69: case 70: case 72: value = 3; break; + case 68: case 71: value = 4; break; + default: value = 2; + } - uCode = 0xDC00 | (uCode & 0x3FF) + for (index = 0; index < 47; index++) { + test.push({ k: chr + index, v: value }); } - newBuf[j++] = uCode & 0xFF - newBuf[j++] = uCode >> 8 + } - // Reset trie node. - nodeIdx = 0; seqStart = i + 1 + test.sort(function (a, b) { return b.v - a.v; }); + + for (index = 0; index < test.length; index++) { + chr = test[index].k.charAt(0); + if (result.charAt(result.length - 1) !== chr) result += chr; } - this.nodeIdx = nodeIdx - this.prevBytes = (seqStart >= 0) - ? Array.prototype.slice.call(buf, seqStart) - : prevBytes.slice(seqStart + prevOffset).concat(Array.prototype.slice.call(buf)) + return result !== 'DGBEFHACIJK'; +}); - return newBuf.slice(0, j).toString("ucs2") -} +var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT; -DBCSDecoder.prototype.end = function () { - var ret = "" +var getSortCompare = function (comparefn) { + return function (x, y) { + if (y === undefined) return -1; + if (x === undefined) return 1; + if (comparefn !== undefined) return +comparefn(x, y) || 0; + return toString(x) > toString(y) ? 1 : -1; + }; +}; - // 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) +// `Array.prototype.sort` method +// https://tc39.es/ecma262/#sec-array.prototype.sort +$({ target: 'Array', proto: true, forced: FORCED }, { + sort: function sort(comparefn) { + if (comparefn !== undefined) aCallable(comparefn); - // Parse remaining as usual. - this.prevBytes = [] - this.nodeIdx = 0 - if (bytesArr.length > 0) { ret += this.write(bytesArr) } - } + var array = toObject(this); - this.prevBytes = [] - this.nodeIdx = 0 - return ret -} + if (STABLE_SORT) return comparefn === undefined ? un$Sort(array) : un$Sort(array, comparefn); -// Binary search for GB18030. Returns largest i such that table[i] <= val. -function findIdx (table, val) { - if (table[0] > val) { return -1 } + var items = []; + var arrayLength = lengthOfArrayLike(array); + var itemsLength, index; - var l = 0; var 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 } + for (index = 0; index < arrayLength; index++) { + if (index in array) push(items, array[index]); + } + + internalSort(items, getSortCompare(comparefn)); + + itemsLength = items.length; + index = 0; + + while (index < itemsLength) array[index] = items[index++]; + while (index < arrayLength) delete array[index++]; + + return array; } - return l -} +}); /***/ }), -/***/ 35403: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 23913: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -// Currently in sync with Node.js lib/internal/errors.js -// https://github.com/nodejs/node/commit/3b044962c48fe313905877a96b5d0894a5404f6f - -/* eslint node-core/documented-errors: "error" */ -/* eslint node-core/alphabetize-errors: "error" */ -/* eslint node-core/prefer-util-format-errors: "error" */ +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var toAbsoluteIndex = __webpack_require__(74841); +var toIntegerOrInfinity = __webpack_require__(26882); +var lengthOfArrayLike = __webpack_require__(45495); +var toObject = __webpack_require__(43162); +var arraySpeciesCreate = __webpack_require__(45744); +var createProperty = __webpack_require__(38639); +var arrayMethodHasSpeciesSupport = __webpack_require__(56280); +var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('splice'); -// The whole point behind this internal module is to allow Node.js to no -// longer be forced to treat every error message change as a semver-major -// change. The NodeError classes here all expose a `code` property whose -// value statically and permanently identifies the error. While the error -// message may change, the code should not. -function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } -function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } -function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } -function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } -function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } -function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } -function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } -function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } -function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } -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; } } -function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } -var codes = {}; +var TypeError = global.TypeError; +var max = Math.max; +var min = Math.min; +var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; +var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded'; -// Lazy loaded -var assert; -var util; -function createErrorType(code, message, Base) { - if (!Base) { - Base = Error; - } - function getMessage(arg1, arg2, arg3) { - if (typeof message === 'string') { - return message; +// `Array.prototype.splice` method +// https://tc39.es/ecma262/#sec-array.prototype.splice +// with adding support of @@species +$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { + splice: function splice(start, deleteCount /* , ...items */) { + var O = toObject(this); + var len = lengthOfArrayLike(O); + var actualStart = toAbsoluteIndex(start, len); + var argumentsLength = arguments.length; + var insertCount, actualDeleteCount, A, k, from, to; + if (argumentsLength === 0) { + insertCount = actualDeleteCount = 0; + } else if (argumentsLength === 1) { + insertCount = 0; + actualDeleteCount = len - actualStart; } else { - return message(arg1, arg2, arg3); + insertCount = argumentsLength - 2; + actualDeleteCount = min(max(toIntegerOrInfinity(deleteCount), 0), len - actualStart); } - } - var NodeError = /*#__PURE__*/function (_Base) { - _inherits(NodeError, _Base); - var _super = _createSuper(NodeError); - function NodeError(arg1, arg2, arg3) { - var _this; - _classCallCheck(this, NodeError); - _this = _super.call(this, getMessage(arg1, arg2, arg3)); - _this.code = code; - return _this; + if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) { + throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED); } - return _createClass(NodeError); - }(Base); - codes[code] = NodeError; -} - -// https://github.com/nodejs/node/blob/v10.8.0/lib/internal/errors.js -function oneOf(expected, thing) { - if (Array.isArray(expected)) { - var len = expected.length; - expected = expected.map(function (i) { - return String(i); - }); - if (len > 2) { - return "one of ".concat(thing, " ").concat(expected.slice(0, len - 1).join(', '), ", or ") + expected[len - 1]; - } else if (len === 2) { - return "one of ".concat(thing, " ").concat(expected[0], " or ").concat(expected[1]); - } else { - return "of ".concat(thing, " ").concat(expected[0]); + A = arraySpeciesCreate(O, actualDeleteCount); + for (k = 0; k < actualDeleteCount; k++) { + from = actualStart + k; + if (from in O) createProperty(A, k, O[from]); } - } else { - return "of ".concat(thing, " ").concat(String(expected)); - } -} - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith -function startsWith(str, search, pos) { - return str.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search; -} - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith -function endsWith(str, search, this_len) { - if (this_len === undefined || this_len > str.length) { - this_len = str.length; - } - return str.substring(this_len - search.length, this_len) === search; -} - -// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes -function includes(str, search, start) { - if (typeof start !== 'number') { - start = 0; - } - if (start + search.length > str.length) { - return false; - } else { - return str.indexOf(search, start) !== -1; - } -} -createErrorType('ERR_AMBIGUOUS_ARGUMENT', 'The "%s" argument is ambiguous. %s', TypeError); -createErrorType('ERR_INVALID_ARG_TYPE', function (name, expected, actual) { - if (assert === undefined) assert = __webpack_require__(80182); - assert(typeof name === 'string', "'name' must be a string"); - - // determiner: 'must be' or 'must not be' - var determiner; - if (typeof expected === 'string' && startsWith(expected, 'not ')) { - determiner = 'must not be'; - expected = expected.replace(/^not /, ''); - } else { - determiner = 'must be'; - } - var msg; - if (endsWith(name, ' argument')) { - // For cases like 'first argument' - msg = "The ".concat(name, " ").concat(determiner, " ").concat(oneOf(expected, 'type')); - } else { - var type = includes(name, '.') ? 'property' : 'argument'; - msg = "The \"".concat(name, "\" ").concat(type, " ").concat(determiner, " ").concat(oneOf(expected, 'type')); + A.length = actualDeleteCount; + if (insertCount < actualDeleteCount) { + for (k = actualStart; k < len - actualDeleteCount; k++) { + from = k + actualDeleteCount; + to = k + insertCount; + if (from in O) O[to] = O[from]; + else delete O[to]; + } + for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1]; + } else if (insertCount > actualDeleteCount) { + for (k = len - actualDeleteCount; k > actualStart; k--) { + from = k + actualDeleteCount - 1; + to = k + insertCount - 1; + if (from in O) O[to] = O[from]; + else delete O[to]; + } + } + for (k = 0; k < insertCount; k++) { + O[k + actualStart] = arguments[k + 2]; + } + O.length = len - actualDeleteCount + insertCount; + return A; } +}); - // TODO(BridgeAR): Improve the output by showing `null` and similar. - msg += ". Received type ".concat(_typeof(actual)); - return msg; -}, TypeError); -createErrorType('ERR_INVALID_ARG_VALUE', function (name, value) { - var reason = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'is invalid'; - if (util === undefined) util = __webpack_require__(7187); - var inspected = util.inspect(value); - if (inspected.length > 128) { - inspected = "".concat(inspected.slice(0, 128), "..."); - } - return "The argument '".concat(name, "' ").concat(reason, ". Received ").concat(inspected); -}, TypeError, RangeError); -createErrorType('ERR_INVALID_RETURN_VALUE', function (input, name, value) { - var type; - if (value && value.constructor && value.constructor.name) { - type = "instance of ".concat(value.constructor.name); - } else { - type = "type ".concat(_typeof(value)); - } - return "Expected ".concat(input, " to be returned from the \"").concat(name, "\"") + " function but got ".concat(type, "."); -}, TypeError); -createErrorType('ERR_MISSING_ARGS', function () { - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - if (assert === undefined) assert = __webpack_require__(80182); - assert(args.length > 0, 'At least one arg needs to be specified'); - var msg = 'The '; - var len = args.length; - args = args.map(function (a) { - return "\"".concat(a, "\""); - }); - switch (len) { - case 1: - msg += "".concat(args[0], " argument"); - break; - case 2: - msg += "".concat(args[0], " and ").concat(args[1], " arguments"); - break; - default: - msg += args.slice(0, len - 1).join(', '); - msg += ", and ".concat(args[len - 1], " arguments"); - break; - } - return "".concat(msg, " must be specified"); -}, TypeError); -module.exports.codes = codes; /***/ }), -/***/ 35471: +/***/ 7585: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var hasOwn = __webpack_require__(20340); +var redefine = __webpack_require__(13711); +var dateToPrimitive = __webpack_require__(53087); +var wellKnownSymbol = __webpack_require__(38688); -var ArrayBufferViewCore = __webpack_require__(59754); -var call = __webpack_require__(2834); -var $fill = __webpack_require__(72864); +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); +var DatePrototype = Date.prototype; -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +// `Date.prototype[@@toPrimitive]` method +// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive +if (!hasOwn(DatePrototype, TO_PRIMITIVE)) { + redefine(DatePrototype, TO_PRIMITIVE, dateToPrimitive); +} -// `%TypedArray%.prototype.fill` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.fill -exportTypedArrayMethod('fill', function fill(value /* , start, end */) { - var length = arguments.length; - return call( - $fill, - aTypedArray(this), - value, - length > 1 ? arguments[1] : undefined, - length > 2 ? arguments[2] : undefined - ); -}); + +/***/ }), + +/***/ 24863: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +var DESCRIPTORS = __webpack_require__(15567); +var FUNCTION_NAME_EXISTS = (__webpack_require__(7081).EXISTS); +var uncurryThis = __webpack_require__(38347); +var defineProperty = (__webpack_require__(95892).f); + +var FunctionPrototype = Function.prototype; +var functionToString = uncurryThis(FunctionPrototype.toString); +var nameRE = /^\s*function ([^ (]*)/; +var regExpExec = uncurryThis(nameRE.exec); +var NAME = 'name'; + +// Function instances `.name` property +// https://tc39.es/ecma262/#sec-function-instances-name +if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) { + defineProperty(FunctionPrototype, NAME, { + configurable: true, + get: function () { + try { + return regExpExec(nameRE, functionToString(this))[1]; + } catch (error) { + return ''; + } + } + }); +} /***/ }), -/***/ 35643: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 64384: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); + +// `globalThis` object +// https://tc39.es/ecma262/#sec-globalthis +$({ global: true }, { + globalThis: global +}); -var slice = Array.prototype.slice; -var isArgs = __webpack_require__(76515); +/***/ }), -var origKeys = Object.keys; -var keysShim = origKeys ? function keys(o) { return origKeys(o); } : __webpack_require__(48461); +/***/ 18828: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var originalKeys = Object.keys; +"use strict"; -keysShim.shim = function shimObjectKeys() { - if (Object.keys) { - var keysWorksWithArguments = (function () { - // Safari 5.0 bug - var args = Object.keys(arguments); - return args && args.length === arguments.length; - }(1, 2)); - if (!keysWorksWithArguments) { - Object.keys = function keys(object) { // eslint-disable-line func-name-matching - if (isArgs(object)) { - return originalKeys(slice.call(object)); - } - return originalKeys(object); - }; - } - } else { - Object.keys = keysShim; - } - return Object.keys || keysShim; -}; +var collection = __webpack_require__(36673); +var collectionStrong = __webpack_require__(9649); -module.exports = keysShim; +// `Map` constructor +// https://tc39.es/ecma262/#sec-map-objects +collection('Map', function (init) { + return function Map() { return init(this, arguments.length ? arguments[0] : undefined); }; +}, collectionStrong); /***/ }), -/***/ 36316: -/***/ (function(module) { +/***/ 7283: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var DESCRIPTORS = __webpack_require__(15567); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var isForced = __webpack_require__(39599); +var redefine = __webpack_require__(13711); +var hasOwn = __webpack_require__(20340); +var inheritIfRequired = __webpack_require__(51868); +var isPrototypeOf = __webpack_require__(70176); +var isSymbol = __webpack_require__(46290); +var toPrimitive = __webpack_require__(2644); +var fails = __webpack_require__(47044); +var getOwnPropertyNames = (__webpack_require__(6611).f); +var getOwnPropertyDescriptor = (__webpack_require__(72062).f); +var defineProperty = (__webpack_require__(95892).f); +var thisNumberValue = __webpack_require__(16679); +var trim = (__webpack_require__(29841).trim); -var Enum = /*#__PURE__*/function () { - function Enum(type, options) { - if (options === void 0) { - options = []; +var NUMBER = 'Number'; +var NativeNumber = global[NUMBER]; +var NumberPrototype = NativeNumber.prototype; +var TypeError = global.TypeError; +var arraySlice = uncurryThis(''.slice); +var charCodeAt = uncurryThis(''.charCodeAt); + +// `ToNumeric` abstract operation +// https://tc39.es/ecma262/#sec-tonumeric +var toNumeric = function (value) { + var primValue = toPrimitive(value, 'number'); + return typeof primValue == 'bigint' ? primValue : toNumber(primValue); +}; + +// `ToNumber` abstract operation +// https://tc39.es/ecma262/#sec-tonumber +var toNumber = function (argument) { + var it = toPrimitive(argument, 'number'); + var first, third, radix, maxCode, digits, length, index, code; + if (isSymbol(it)) throw TypeError('Cannot convert a Symbol value to a number'); + if (typeof it == 'string' && it.length > 2) { + it = trim(it); + first = charCodeAt(it, 0); + if (first === 43 || first === 45) { + third = charCodeAt(it, 2); + if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix + } else if (first === 48) { + switch (charCodeAt(it, 1)) { + case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i + case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i + default: return +it; + } + digits = arraySlice(it, 2); + length = digits.length; + for (index = 0; index < length; index++) { + code = charCodeAt(digits, index); + // parseInt parses a string to a first unavailable symbol + // but ToNumber should return NaN if a string contains unavailable symbols + if (code < 48 || code > maxCode) return NaN; + } return parseInt(digits, radix); } - this.type = type; - this.options = options; - } - var _proto = Enum.prototype; - _proto.decode = function decode(stream) { - var index = this.type.decode(stream); - return this.options[index] || index; - }; - _proto.size = function size() { - return this.type.size(); + } return +it; +}; + +// `Number` constructor +// https://tc39.es/ecma262/#sec-number-constructor +if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) { + var NumberWrapper = function Number(value) { + var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value)); + var dummy = this; + // check on 1..constructor(foo) case + return isPrototypeOf(NumberPrototype, dummy) && fails(function () { thisNumberValue(dummy); }) + ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n; }; - _proto.encode = function encode(stream, val) { - var index = this.options.indexOf(val); - if (index === -1) { - throw new Error("Unknown option in enum: " + val); + for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : ( + // ES3: + 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + + // ES2015 (in case, if modules with ES2015 Number statics required before): + 'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' + + // ESNext + 'fromString,range' + ).split(','), j = 0, key; keys.length > j; j++) { + if (hasOwn(NativeNumber, key = keys[j]) && !hasOwn(NumberWrapper, key)) { + defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key)); } - return this.type.encode(stream, index); - }; - return Enum; -}(); -module.exports = Enum; + } + NumberWrapper.prototype = NumberPrototype; + NumberPrototype.constructor = NumberWrapper; + redefine(global, NUMBER, NumberWrapper); +} -/***/ }), -/***/ 36352: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ }), -"use strict"; +/***/ 58549: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var charAt = (__webpack_require__(69510).charAt); +var $ = __webpack_require__(56475); -// `AdvanceStringIndex` abstract operation -// https://tc39.es/ecma262/#sec-advancestringindex -module.exports = function (S, index, unicode) { - return index + (unicode ? charAt(S, index).length : 1); -}; +// `Number.EPSILON` constant +// https://tc39.es/ecma262/#sec-number.epsilon +$({ target: 'Number', stat: true }, { + EPSILON: Math.pow(2, -52) +}); /***/ }), -/***/ 36521: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 70095: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var $ = __webpack_require__(56475); +var numberIsFinite = __webpack_require__(59805); +// `Number.isFinite` method +// https://tc39.es/ecma262/#sec-number.isfinite +$({ target: 'Number', stat: true }, { isFinite: numberIsFinite }); -// modified from https://github.com/es-shims/es6-shim -var objectKeys = __webpack_require__(35643); -var hasSymbols = __webpack_require__(12843)(); -var callBound = __webpack_require__(22774); -var $Object = __webpack_require__(75846); -var $push = callBound('Array.prototype.push'); -var $propIsEnumerable = callBound('Object.prototype.propertyIsEnumerable'); -var originalGetSymbols = hasSymbols ? $Object.getOwnPropertySymbols : null; -// eslint-disable-next-line no-unused-vars -module.exports = function assign(target, source1) { - if (target == null) { throw new TypeError('target must be an object'); } - var to = $Object(target); // step 1 - if (arguments.length === 1) { - return to; // step 2 - } - for (var s = 1; s < arguments.length; ++s) { - var from = $Object(arguments[s]); // step 3.a.i +/***/ }), - // step 3.a.ii: - var keys = objectKeys(from); - var getSymbols = hasSymbols && ($Object.getOwnPropertySymbols || originalGetSymbols); - if (getSymbols) { - var syms = getSymbols(from); - for (var j = 0; j < syms.length; ++j) { - var key = syms[j]; - if ($propIsEnumerable(from, key)) { - $push(keys, key); - } - } - } +/***/ 2876: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // step 3.a.iii: - for (var i = 0; i < keys.length; ++i) { - var nextKey = keys[i]; - if ($propIsEnumerable(from, nextKey)) { // step 3.a.iii.2 - var propValue = from[nextKey]; // step 3.a.iii.2.a - to[nextKey] = propValue; // step 3.a.iii.2.b - } - } - } +var $ = __webpack_require__(56475); +var isIntegralNumber = __webpack_require__(17506); - return to; // step 4 -}; +// `Number.isInteger` method +// https://tc39.es/ecma262/#sec-number.isinteger +$({ target: 'Number', stat: true }, { + isInteger: isIntegralNumber +}); /***/ }), -/***/ 36673: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 10849: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; var $ = __webpack_require__(56475); var global = __webpack_require__(32010); var uncurryThis = __webpack_require__(38347); -var isForced = __webpack_require__(39599); -var redefine = __webpack_require__(13711); -var InternalMetadataModule = __webpack_require__(62148); -var iterate = __webpack_require__(80383); -var anInstance = __webpack_require__(2868); -var isCallable = __webpack_require__(94578); -var isObject = __webpack_require__(24517); +var toIntegerOrInfinity = __webpack_require__(26882); +var thisNumberValue = __webpack_require__(16679); +var $repeat = __webpack_require__(34858); var fails = __webpack_require__(47044); -var checkCorrectnessOfIteration = __webpack_require__(46769); -var setToStringTag = __webpack_require__(15216); -var inheritIfRequired = __webpack_require__(51868); -module.exports = function (CONSTRUCTOR_NAME, wrapper, common) { - var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1; - var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1; - var ADDER = IS_MAP ? 'set' : 'add'; - var NativeConstructor = global[CONSTRUCTOR_NAME]; - var NativePrototype = NativeConstructor && NativeConstructor.prototype; - var Constructor = NativeConstructor; - var exported = {}; +var RangeError = global.RangeError; +var String = global.String; +var floor = Math.floor; +var repeat = uncurryThis($repeat); +var stringSlice = uncurryThis(''.slice); +var un$ToFixed = uncurryThis(1.0.toFixed); - var fixMethod = function (KEY) { - var uncurriedNativeMethod = uncurryThis(NativePrototype[KEY]); - redefine(NativePrototype, KEY, - KEY == 'add' ? function add(value) { - uncurriedNativeMethod(this, value === 0 ? 0 : value); - return this; - } : KEY == 'delete' ? function (key) { - return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key); - } : KEY == 'get' ? function get(key) { - return IS_WEAK && !isObject(key) ? undefined : uncurriedNativeMethod(this, key === 0 ? 0 : key); - } : KEY == 'has' ? function has(key) { - return IS_WEAK && !isObject(key) ? false : uncurriedNativeMethod(this, key === 0 ? 0 : key); - } : function set(key, value) { - uncurriedNativeMethod(this, key === 0 ? 0 : key, value); - return this; - } - ); - }; +var pow = function (x, n, acc) { + return n === 0 ? acc : n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc); +}; - var REPLACE = isForced( - CONSTRUCTOR_NAME, - !isCallable(NativeConstructor) || !(IS_WEAK || NativePrototype.forEach && !fails(function () { - new NativeConstructor().entries().next(); - })) - ); +var log = function (x) { + var n = 0; + var x2 = x; + while (x2 >= 4096) { + n += 12; + x2 /= 4096; + } + while (x2 >= 2) { + n += 1; + x2 /= 2; + } return n; +}; - if (REPLACE) { - // create collection constructor - Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER); - InternalMetadataModule.enable(); - } else if (isForced(CONSTRUCTOR_NAME, true)) { - var instance = new Constructor(); - // early implementations not supports chaining - var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance; - // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false - var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); }); - // most early implementations doesn't supports iterables, most modern - not close it correctly - // eslint-disable-next-line no-new -- required for testing - var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); }); - // for early implementations -0 and +0 not the same - var BUGGY_ZERO = !IS_WEAK && fails(function () { - // V8 ~ Chromium 42- fails only with 5+ elements - var $instance = new NativeConstructor(); - var index = 5; - while (index--) $instance[ADDER](index, index); - return !$instance.has(-0); - }); +var multiply = function (data, n, c) { + var index = -1; + var c2 = c; + while (++index < 6) { + c2 += n * data[index]; + data[index] = c2 % 1e7; + c2 = floor(c2 / 1e7); + } +}; - if (!ACCEPT_ITERABLES) { - Constructor = wrapper(function (dummy, iterable) { - anInstance(dummy, NativePrototype); - var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor); - if (iterable != undefined) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP }); - return that; - }); - Constructor.prototype = NativePrototype; - NativePrototype.constructor = Constructor; +var divide = function (data, n) { + var index = 6; + var c = 0; + while (--index >= 0) { + c += data[index]; + data[index] = floor(c / n); + c = (c % n) * 1e7; + } +}; + +var dataToString = function (data) { + var index = 6; + var s = ''; + while (--index >= 0) { + if (s !== '' || index === 0 || data[index] !== 0) { + var t = String(data[index]); + s = s === '' ? t : s + repeat('0', 7 - t.length) + t; + } + } return s; +}; + +var FORCED = fails(function () { + return un$ToFixed(0.00008, 3) !== '0.000' || + un$ToFixed(0.9, 0) !== '1' || + un$ToFixed(1.255, 2) !== '1.25' || + un$ToFixed(1000000000000000128.0, 0) !== '1000000000000000128'; +}) || !fails(function () { + // V8 ~ Android 4.3- + un$ToFixed({}); +}); + +// `Number.prototype.toFixed` method +// https://tc39.es/ecma262/#sec-number.prototype.tofixed +$({ target: 'Number', proto: true, forced: FORCED }, { + toFixed: function toFixed(fractionDigits) { + var number = thisNumberValue(this); + var fractDigits = toIntegerOrInfinity(fractionDigits); + var data = [0, 0, 0, 0, 0, 0]; + var sign = ''; + var result = '0'; + var e, z, j, k; + + if (fractDigits < 0 || fractDigits > 20) throw RangeError('Incorrect fraction digits'); + // eslint-disable-next-line no-self-compare -- NaN check + if (number != number) return 'NaN'; + if (number <= -1e21 || number >= 1e21) return String(number); + if (number < 0) { + sign = '-'; + number = -number; } - - if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) { - fixMethod('delete'); - fixMethod('has'); - IS_MAP && fixMethod('get'); + if (number > 1e-21) { + e = log(number * pow(2, 69, 1)) - 69; + z = e < 0 ? number * pow(2, -e, 1) : number / pow(2, e, 1); + z *= 0x10000000000000; + e = 52 - e; + if (e > 0) { + multiply(data, 0, z); + j = fractDigits; + while (j >= 7) { + multiply(data, 1e7, 0); + j -= 7; + } + multiply(data, pow(10, j, 1), 0); + j = e - 1; + while (j >= 23) { + divide(data, 1 << 23); + j -= 23; + } + divide(data, 1 << j); + multiply(data, 1, 1); + divide(data, 2); + result = dataToString(data); + } else { + multiply(data, 0, z); + multiply(data, 1 << -e, 0); + result = dataToString(data) + repeat('0', fractDigits); + } } - - if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER); - - // weak collections should not contains .clear method - if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear; + if (fractDigits > 0) { + k = result.length; + result = sign + (k <= fractDigits + ? '0.' + repeat('0', fractDigits - k) + result + : stringSlice(result, 0, k - fractDigits) + '.' + stringSlice(result, k - fractDigits)); + } else { + result = sign + result; + } return result; } +}); - exported[CONSTRUCTOR_NAME] = Constructor; - $({ global: true, forced: Constructor != NativeConstructor }, exported); - - setToStringTag(Constructor, CONSTRUCTOR_NAME); - if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP); +/***/ }), - return Constructor; -}; +/***/ 18756: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +var $ = __webpack_require__(56475); +var assign = __webpack_require__(87146); -/***/ }), +// `Object.assign` method +// https://tc39.es/ecma262/#sec-object.assign +// eslint-disable-next-line es/no-object-assign -- required for testing +$({ target: 'Object', stat: true, forced: Object.assign !== assign }, { + assign: assign +}); -/***/ 36688: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +/***/ }), +/***/ 75174: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var bind = __webpack_require__(5049); -var $TypeError = __webpack_require__(96785); +var $ = __webpack_require__(56475); +var FREEZING = __webpack_require__(55481); +var fails = __webpack_require__(47044); +var isObject = __webpack_require__(24517); +var onFreeze = (__webpack_require__(62148).onFreeze); -var $call = __webpack_require__(10078); -var $actualApply = __webpack_require__(17802); +// eslint-disable-next-line es/no-object-freeze -- safe +var $freeze = Object.freeze; +var FAILS_ON_PRIMITIVES = fails(function () { $freeze(1); }); -/** @type {(args: [Function, thisArg?: unknown, ...args: unknown[]]) => Function} TODO FIXME, find a way to use import('.') */ -module.exports = function callBindBasic(args) { - if (args.length < 1 || typeof args[0] !== 'function') { - throw new $TypeError('a function is required'); - } - return $actualApply(bind, $call, args); -}; +// `Object.freeze` method +// https://tc39.es/ecma262/#sec-object.freeze +$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !FREEZING }, { + freeze: function freeze(it) { + return $freeze && isObject(it) ? $freeze(onFreeze(it)) : it; + } +}); /***/ }), -/***/ 37146: -/***/ (function(module, exports, __webpack_require__) { +/***/ 57444: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; +var $ = __webpack_require__(56475); +var fails = __webpack_require__(47044); +var toIndexedObject = __webpack_require__(98086); +var nativeGetOwnPropertyDescriptor = (__webpack_require__(72062).f); +var DESCRIPTORS = __webpack_require__(15567); +var FAILS_ON_PRIMITIVES = fails(function () { nativeGetOwnPropertyDescriptor(1); }); +var FORCED = !DESCRIPTORS || FAILS_ON_PRIMITIVES; -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var WordArray = C_lib.WordArray; - var Hasher = C_lib.Hasher; - var C_algo = C.algo; +// `Object.getOwnPropertyDescriptor` method +// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor +$({ target: 'Object', stat: true, forced: FORCED, sham: !DESCRIPTORS }, { + getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) { + return nativeGetOwnPropertyDescriptor(toIndexedObject(it), key); + } +}); - // Reusable object - var W = []; - /** - * SHA-1 hash algorithm. - */ - var SHA1 = C_algo.SHA1 = Hasher.extend({ - _doReset: function _doReset() { - this._hash = new WordArray.init([0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0]); - }, - _doProcessBlock: function _doProcessBlock(M, offset) { - // Shortcut - var H = this._hash.words; +/***/ }), - // Working variables - var a = H[0]; - var b = H[1]; - var c = H[2]; - var d = H[3]; - var e = H[4]; +/***/ 28331: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // Computation - for (var i = 0; i < 80; i++) { - if (i < 16) { - W[i] = M[offset + i] | 0; - } else { - var n = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]; - W[i] = n << 1 | n >>> 31; - } - var t = (a << 5 | a >>> 27) + e + W[i]; - if (i < 20) { - t += (b & c | ~b & d) + 0x5a827999; - } else if (i < 40) { - t += (b ^ c ^ d) + 0x6ed9eba1; - } else if (i < 60) { - t += (b & c | b & d | c & d) - 0x70e44324; - } else /* if (i < 80) */{ - t += (b ^ c ^ d) - 0x359d3e2a; - } - e = d; - d = c; - c = b << 30 | b >>> 2; - b = a; - a = t; - } +var $ = __webpack_require__(56475); +var DESCRIPTORS = __webpack_require__(15567); +var ownKeys = __webpack_require__(21594); +var toIndexedObject = __webpack_require__(98086); +var getOwnPropertyDescriptorModule = __webpack_require__(72062); +var createProperty = __webpack_require__(38639); - // Intermediate hash value - H[0] = H[0] + a | 0; - H[1] = H[1] + b | 0; - H[2] = H[2] + c | 0; - H[3] = H[3] + d | 0; - H[4] = H[4] + e | 0; - }, - _doFinalize: function _doFinalize() { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; +// `Object.getOwnPropertyDescriptors` method +// https://tc39.es/ecma262/#sec-object.getownpropertydescriptors +$({ target: 'Object', stat: true, sham: !DESCRIPTORS }, { + getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) { + var O = toIndexedObject(object); + var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; + var keys = ownKeys(O); + var result = {}; + var index = 0; + var key, descriptor; + while (keys.length > index) { + descriptor = getOwnPropertyDescriptor(O, key = keys[index++]); + if (descriptor !== undefined) createProperty(result, key, descriptor); + } + return result; + } +}); - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; - dataWords[(nBitsLeft + 64 >>> 9 << 4) + 14] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(nBitsLeft + 64 >>> 9 << 4) + 15] = nBitsTotal; - data.sigBytes = dataWords.length * 4; - // Hash final blocks - this._process(); +/***/ }), - // Return final computed hash - return this._hash; - }, - clone: function clone() { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - return clone; - } - }); +/***/ 71950: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA1('message'); - * var hash = CryptoJS.SHA1(wordArray); - */ - C.SHA1 = Hasher._createHelper(SHA1); +var $ = __webpack_require__(56475); +var fails = __webpack_require__(47044); +var toObject = __webpack_require__(43162); +var nativeGetPrototypeOf = __webpack_require__(69548); +var CORRECT_PROTOTYPE_GETTER = __webpack_require__(68494); - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA1(message, key); - */ - C.HmacSHA1 = Hasher._createHmacHelper(SHA1); - })(); - return CryptoJS.SHA1; +var FAILS_ON_PRIMITIVES = fails(function () { nativeGetPrototypeOf(1); }); + +// `Object.getPrototypeOf` method +// https://tc39.es/ecma262/#sec-object.getprototypeof +$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !CORRECT_PROTOTYPE_GETTER }, { + getPrototypeOf: function getPrototypeOf(it) { + return nativeGetPrototypeOf(toObject(it)); + } }); + + /***/ }), /***/ 37309: @@ -41312,3377 +33893,2883 @@ $({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, { /***/ }), -/***/ 37385: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 14032: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; -/* provided dependency */ var process = __webpack_require__(9964); +var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); +var redefine = __webpack_require__(13711); +var toString = __webpack_require__(52598); +// `Object.prototype.toString` method +// https://tc39.es/ecma262/#sec-object.prototype.tostring +if (!TO_STRING_TAG_SUPPORT) { + redefine(Object.prototype, 'toString', toString, { unsafe: true }); +} -// undocumented cb() API, needed for core, not for public API -function destroy(err, cb) { - var _this = this; - var readableDestroyed = this._readableState && this._readableState.destroyed; - var writableDestroyed = this._writableState && this._writableState.destroyed; - if (readableDestroyed || writableDestroyed) { - if (cb) { - cb(err); - } else if (err) { - if (!this._writableState) { - process.nextTick(emitErrorNT, this, err); - } else if (!this._writableState.errorEmitted) { - this._writableState.errorEmitted = true; - process.nextTick(emitErrorNT, this, err); - } - } - return this; - } - // we set destroyed to true before firing error callbacks in order - // to make it re-entrance safe in case destroy() is called within callbacks +/***/ }), - if (this._readableState) { - this._readableState.destroyed = true; +/***/ 59883: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +var $ = __webpack_require__(56475); +var $values = (__webpack_require__(80754).values); + +// `Object.values` method +// https://tc39.es/ecma262/#sec-object.values +$({ target: 'Object', stat: true }, { + values: function values(O) { + return $values(O); } +}); - // if this is a duplex stream mark the writable part as destroyed as well - if (this._writableState) { - this._writableState.destroyed = true; + +/***/ }), + +/***/ 77074: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var call = __webpack_require__(2834); +var aCallable = __webpack_require__(32631); +var newPromiseCapabilityModule = __webpack_require__(56614); +var perform = __webpack_require__(61900); +var iterate = __webpack_require__(80383); + +// `Promise.allSettled` method +// https://tc39.es/ecma262/#sec-promise.allsettled +$({ target: 'Promise', stat: true }, { + allSettled: function allSettled(iterable) { + var C = this; + var capability = newPromiseCapabilityModule.f(C); + var resolve = capability.resolve; + var reject = capability.reject; + var result = perform(function () { + var promiseResolve = aCallable(C.resolve); + var values = []; + var counter = 0; + var remaining = 1; + iterate(iterable, function (promise) { + var index = counter++; + var alreadyCalled = false; + remaining++; + call(promiseResolve, C, promise).then(function (value) { + if (alreadyCalled) return; + alreadyCalled = true; + values[index] = { status: 'fulfilled', value: value }; + --remaining || resolve(values); + }, function (error) { + if (alreadyCalled) return; + alreadyCalled = true; + values[index] = { status: 'rejected', reason: error }; + --remaining || resolve(values); + }); + }); + --remaining || resolve(values); + }); + if (result.error) reject(result.value); + return capability.promise; } - this._destroy(err || null, function (err) { - if (!cb && err) { - if (!_this._writableState) { - process.nextTick(emitErrorAndCloseNT, _this, err); - } else if (!_this._writableState.errorEmitted) { - _this._writableState.errorEmitted = true; - process.nextTick(emitErrorAndCloseNT, _this, err); - } else { - process.nextTick(emitCloseNT, _this); - } - } else if (cb) { - process.nextTick(emitCloseNT, _this); - cb(err); - } else { - process.nextTick(emitCloseNT, _this); - } - }); - return this; -} -function emitErrorAndCloseNT(self, err) { - emitErrorNT(self, err); - emitCloseNT(self); -} -function emitCloseNT(self) { - if (self._writableState && !self._writableState.emitClose) return; - if (self._readableState && !self._readableState.emitClose) return; - self.emit('close'); -} -function undestroy() { - if (this._readableState) { - this._readableState.destroyed = false; - this._readableState.reading = false; - this._readableState.ended = false; - this._readableState.endEmitted = false; +}); + + +/***/ }), + +/***/ 44455: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var aCallable = __webpack_require__(32631); +var getBuiltIn = __webpack_require__(38486); +var call = __webpack_require__(2834); +var newPromiseCapabilityModule = __webpack_require__(56614); +var perform = __webpack_require__(61900); +var iterate = __webpack_require__(80383); + +var PROMISE_ANY_ERROR = 'No one promise resolved'; + +// `Promise.any` method +// https://tc39.es/ecma262/#sec-promise.any +$({ target: 'Promise', stat: true }, { + any: function any(iterable) { + var C = this; + var AggregateError = getBuiltIn('AggregateError'); + var capability = newPromiseCapabilityModule.f(C); + var resolve = capability.resolve; + var reject = capability.reject; + var result = perform(function () { + var promiseResolve = aCallable(C.resolve); + var errors = []; + var counter = 0; + var remaining = 1; + var alreadyResolved = false; + iterate(iterable, function (promise) { + var index = counter++; + var alreadyRejected = false; + remaining++; + call(promiseResolve, C, promise).then(function (value) { + if (alreadyRejected || alreadyResolved) return; + alreadyResolved = true; + resolve(value); + }, function (error) { + if (alreadyRejected || alreadyResolved) return; + alreadyRejected = true; + errors[index] = error; + --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR)); + }); + }); + --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR)); + }); + if (result.error) reject(result.value); + return capability.promise; } - if (this._writableState) { - this._writableState.destroyed = false; - this._writableState.ended = false; - this._writableState.ending = false; - this._writableState.finalCalled = false; - this._writableState.prefinished = false; - this._writableState.finished = false; - this._writableState.errorEmitted = false; +}); + + +/***/ }), + +/***/ 80986: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var IS_PURE = __webpack_require__(63432); +var NativePromise = __webpack_require__(5155); +var fails = __webpack_require__(47044); +var getBuiltIn = __webpack_require__(38486); +var isCallable = __webpack_require__(94578); +var speciesConstructor = __webpack_require__(27754); +var promiseResolve = __webpack_require__(28617); +var redefine = __webpack_require__(13711); + +// Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829 +var NON_GENERIC = !!NativePromise && fails(function () { + NativePromise.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ }); +}); + +// `Promise.prototype.finally` method +// https://tc39.es/ecma262/#sec-promise.prototype.finally +$({ target: 'Promise', proto: true, real: true, forced: NON_GENERIC }, { + 'finally': function (onFinally) { + var C = speciesConstructor(this, getBuiltIn('Promise')); + var isFunction = isCallable(onFinally); + return this.then( + isFunction ? function (x) { + return promiseResolve(C, onFinally()).then(function () { return x; }); + } : onFinally, + isFunction ? function (e) { + return promiseResolve(C, onFinally()).then(function () { throw e; }); + } : onFinally + ); } -} -function emitErrorNT(self, err) { - self.emit('error', err); -} -function errorOrDestroy(stream, err) { - // We have tests that rely on errors being emitted - // in the same tick, so changing this is semver major. - // For now when you opt-in to autoDestroy we allow - // the error to be emitted nextTick. In a future - // semver major update we should change the default to this. +}); - var rState = stream._readableState; - var wState = stream._writableState; - if (rState && rState.autoDestroy || wState && wState.autoDestroy) stream.destroy(err);else stream.emit('error', err); +// makes sure that native promise-based APIs `Promise#finally` properly works with patched `Promise#then` +if (!IS_PURE && isCallable(NativePromise)) { + var method = getBuiltIn('Promise').prototype['finally']; + if (NativePromise.prototype['finally'] !== method) { + redefine(NativePromise.prototype, 'finally', method, { unsafe: true }); + } } -module.exports = { - destroy: destroy, - undestroy: undestroy, - errorOrDestroy: errorOrDestroy -}; + /***/ }), -/***/ 37468: -/***/ (function(module) { +/***/ 68067: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var $ = __webpack_require__(56475); +var IS_PURE = __webpack_require__(63432); +var global = __webpack_require__(32010); +var getBuiltIn = __webpack_require__(38486); +var call = __webpack_require__(2834); +var NativePromise = __webpack_require__(5155); +var redefine = __webpack_require__(13711); +var redefineAll = __webpack_require__(15341); +var setPrototypeOf = __webpack_require__(3840); +var setToStringTag = __webpack_require__(15216); +var setSpecies = __webpack_require__(51334); +var aCallable = __webpack_require__(32631); +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); +var anInstance = __webpack_require__(2868); +var inspectSource = __webpack_require__(10447); +var iterate = __webpack_require__(80383); +var checkCorrectnessOfIteration = __webpack_require__(46769); +var speciesConstructor = __webpack_require__(27754); +var task = (__webpack_require__(6616).set); +var microtask = __webpack_require__(59804); +var promiseResolve = __webpack_require__(28617); +var hostReportErrors = __webpack_require__(61144); +var newPromiseCapabilityModule = __webpack_require__(56614); +var perform = __webpack_require__(61900); +var InternalStateModule = __webpack_require__(70172); +var isForced = __webpack_require__(39599); +var wellKnownSymbol = __webpack_require__(38688); +var IS_BROWSER = __webpack_require__(3157); +var IS_NODE = __webpack_require__(95053); +var V8_VERSION = __webpack_require__(70091); -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. - -function ZStream() { - /* next input byte */ - this.input = null; // JS specific, because we have no pointers - this.next_in = 0; - /* number of bytes available at input */ - this.avail_in = 0; - /* total number of input bytes read so far */ - this.total_in = 0; - /* next output byte should be put there */ - this.output = null; // JS specific, because we have no pointers - this.next_out = 0; - /* remaining free space at output */ - this.avail_out = 0; - /* total number of bytes output so far */ - this.total_out = 0; - /* last error message, NULL if no error */ - this.msg = ''/*Z_NULL*/; - /* not visible by applications */ - this.state = null; - /* best guess about the data type: binary or text */ - this.data_type = 2/*Z_UNKNOWN*/; - /* adler32 value of the uncompressed data */ - this.adler = 0; -} +var SPECIES = wellKnownSymbol('species'); +var PROMISE = 'Promise'; -module.exports = ZStream; +var getInternalState = InternalStateModule.get; +var setInternalState = InternalStateModule.set; +var getInternalPromiseState = InternalStateModule.getterFor(PROMISE); +var NativePromisePrototype = NativePromise && NativePromise.prototype; +var PromiseConstructor = NativePromise; +var PromisePrototype = NativePromisePrototype; +var TypeError = global.TypeError; +var document = global.document; +var process = global.process; +var newPromiseCapability = newPromiseCapabilityModule.f; +var newGenericPromiseCapability = newPromiseCapability; +var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent); +var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent); +var UNHANDLED_REJECTION = 'unhandledrejection'; +var REJECTION_HANDLED = 'rejectionhandled'; +var PENDING = 0; +var FULFILLED = 1; +var REJECTED = 2; +var HANDLED = 1; +var UNHANDLED = 2; +var SUBCLASSING = false; -/***/ }), +var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen; -/***/ 37596: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +var FORCED = isForced(PROMISE, function () { + var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor); + var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor); + // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables + // https://bugs.chromium.org/p/chromium/issues/detail?id=830565 + // We can't detect it synchronously, so just check versions + if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true; + // We need Promise#finally in the pure version for preventing prototype pollution + if (IS_PURE && !PromisePrototype['finally']) return true; + // We can't use @@species feature detection in V8 since it causes + // deoptimization and performance degradation + // https://github.com/zloirock/core-js/issues/679 + if (V8_VERSION >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) return false; + // Detect correctness of subclassing with @@species support + var promise = new PromiseConstructor(function (resolve) { resolve(1); }); + var FakePromise = function (exec) { + exec(function () { /* empty */ }, function () { /* empty */ }); + }; + var constructor = promise.constructor = {}; + constructor[SPECIES] = FakePromise; + SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise; + if (!SUBCLASSING) return true; + // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test + return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_REJECTION_EVENT; +}); -"use strict"; +var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) { + PromiseConstructor.all(iterable)['catch'](function () { /* empty */ }); +}); +// helpers +var isThenable = function (it) { + var then; + return isObject(it) && isCallable(then = it.then) ? then : false; +}; -var implementation = __webpack_require__(36521); +var notify = function (state, isReject) { + if (state.notified) return; + state.notified = true; + var chain = state.reactions; + microtask(function () { + var value = state.value; + var ok = state.state == FULFILLED; + var index = 0; + // variable length - can't use forEach + while (chain.length > index) { + var reaction = chain[index++]; + var handler = ok ? reaction.ok : reaction.fail; + var resolve = reaction.resolve; + var reject = reaction.reject; + var domain = reaction.domain; + var result, then, exited; + try { + if (handler) { + if (!ok) { + if (state.rejection === UNHANDLED) onHandleUnhandled(state); + state.rejection = HANDLED; + } + if (handler === true) result = value; + else { + if (domain) domain.enter(); + result = handler(value); // can throw + if (domain) { + domain.exit(); + exited = true; + } + } + if (result === reaction.promise) { + reject(TypeError('Promise-chain cycle')); + } else if (then = isThenable(result)) { + call(then, result, resolve, reject); + } else resolve(result); + } else reject(value); + } catch (error) { + if (domain && !exited) domain.exit(); + reject(error); + } + } + state.reactions = []; + state.notified = false; + if (isReject && !state.rejection) onUnhandled(state); + }); +}; -var lacksProperEnumerationOrder = function () { - if (!Object.assign) { - return false; - } - /* - * v8, specifically in node 4.x, has a bug with incorrect property enumeration order - * note: this does not detect the bug unless there's 20 characters - */ - var str = 'abcdefghijklmnopqrst'; - var letters = str.split(''); - var map = {}; - for (var i = 0; i < letters.length; ++i) { - map[letters[i]] = letters[i]; - } - var obj = Object.assign({}, map); - var actual = ''; - for (var k in obj) { - actual += k; - } - return str !== actual; +var dispatchEvent = function (name, promise, reason) { + var event, handler; + if (DISPATCH_EVENT) { + event = document.createEvent('Event'); + event.promise = promise; + event.reason = reason; + event.initEvent(name, false, true); + global.dispatchEvent(event); + } else event = { promise: promise, reason: reason }; + if (!NATIVE_REJECTION_EVENT && (handler = global['on' + name])) handler(event); + else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason); }; -var assignHasPendingExceptions = function () { - if (!Object.assign || !Object.preventExtensions) { - return false; - } - /* - * Firefox 37 still has "pending exception" logic in its Object.assign implementation, - * which is 72% slower than our shim, and Firefox 40's native implementation. - */ - var thrower = Object.preventExtensions({ 1: 2 }); - try { - Object.assign(thrower, 'xy'); - } catch (e) { - return thrower[1] === 'y'; - } - return false; +var onUnhandled = function (state) { + call(task, global, function () { + var promise = state.facade; + var value = state.value; + var IS_UNHANDLED = isUnhandled(state); + var result; + if (IS_UNHANDLED) { + result = perform(function () { + if (IS_NODE) { + process.emit('unhandledRejection', value, promise); + } else dispatchEvent(UNHANDLED_REJECTION, promise, value); + }); + // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should + state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED; + if (result.error) throw result.value; + } + }); }; -module.exports = function getPolyfill() { - if (!Object.assign) { - return implementation; - } - if (lacksProperEnumerationOrder()) { - return implementation; - } - if (assignHasPendingExceptions()) { - return implementation; - } - return Object.assign; +var isUnhandled = function (state) { + return state.rejection !== HANDLED && !state.parent; }; +var onHandleUnhandled = function (state) { + call(task, global, function () { + var promise = state.facade; + if (IS_NODE) { + process.emit('rejectionHandled', promise); + } else dispatchEvent(REJECTION_HANDLED, promise, state.value); + }); +}; -/***/ }), +var bind = function (fn, state, unwrap) { + return function (value) { + fn(state, value, unwrap); + }; +}; -/***/ 38347: -/***/ (function(module) { +var internalReject = function (state, value, unwrap) { + if (state.done) return; + state.done = true; + if (unwrap) state = unwrap; + state.value = value; + state.state = REJECTED; + notify(state, true); +}; -var FunctionPrototype = Function.prototype; -var bind = FunctionPrototype.bind; -var call = FunctionPrototype.call; -var callBind = bind && bind.bind(call); +var internalResolve = function (state, value, unwrap) { + if (state.done) return; + state.done = true; + if (unwrap) state = unwrap; + try { + if (state.facade === value) throw TypeError("Promise can't be resolved itself"); + var then = isThenable(value); + if (then) { + microtask(function () { + var wrapper = { done: false }; + try { + call(then, value, + bind(internalResolve, wrapper, state), + bind(internalReject, wrapper, state) + ); + } catch (error) { + internalReject(wrapper, error, state); + } + }); + } else { + state.value = value; + state.state = FULFILLED; + notify(state, false); + } + } catch (error) { + internalReject({ done: false }, error, state); + } +}; -module.exports = bind ? function (fn) { - return fn && callBind(call, fn); -} : function (fn) { - return fn && function () { - return call.apply(fn, arguments); +// constructor polyfill +if (FORCED) { + // 25.4.3.1 Promise(executor) + PromiseConstructor = function Promise(executor) { + anInstance(this, PromisePrototype); + aCallable(executor); + call(Internal, this); + var state = getInternalState(this); + try { + executor(bind(internalResolve, state), bind(internalReject, state)); + } catch (error) { + internalReject(state, error); + } + }; + PromisePrototype = PromiseConstructor.prototype; + // eslint-disable-next-line no-unused-vars -- required for `.length` + Internal = function Promise(executor) { + setInternalState(this, { + type: PROMISE, + done: false, + notified: false, + parent: false, + reactions: [], + rejection: false, + state: PENDING, + value: undefined + }); + }; + Internal.prototype = redefineAll(PromisePrototype, { + // `Promise.prototype.then` method + // https://tc39.es/ecma262/#sec-promise.prototype.then + then: function then(onFulfilled, onRejected) { + var state = getInternalPromiseState(this); + var reactions = state.reactions; + var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor)); + reaction.ok = isCallable(onFulfilled) ? onFulfilled : true; + reaction.fail = isCallable(onRejected) && onRejected; + reaction.domain = IS_NODE ? process.domain : undefined; + state.parent = true; + reactions[reactions.length] = reaction; + if (state.state != PENDING) notify(state, false); + return reaction.promise; + }, + // `Promise.prototype.catch` method + // https://tc39.es/ecma262/#sec-promise.prototype.catch + 'catch': function (onRejected) { + return this.then(undefined, onRejected); + } + }); + OwnPromiseCapability = function () { + var promise = new Internal(); + var state = getInternalState(promise); + this.promise = promise; + this.resolve = bind(internalResolve, state); + this.reject = bind(internalReject, state); + }; + newPromiseCapabilityModule.f = newPromiseCapability = function (C) { + return C === PromiseConstructor || C === PromiseWrapper + ? new OwnPromiseCapability(C) + : newGenericPromiseCapability(C); }; -}; + if (!IS_PURE && isCallable(NativePromise) && NativePromisePrototype !== Object.prototype) { + nativeThen = NativePromisePrototype.then; -/***/ }), + if (!SUBCLASSING) { + // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs + redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) { + var that = this; + return new PromiseConstructor(function (resolve, reject) { + call(nativeThen, that, resolve, reject); + }).then(onFulfilled, onRejected); + // https://github.com/zloirock/core-js/issues/640 + }, { unsafe: true }); -/***/ 38486: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then` + redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true }); + } -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); + // make `.constructor === Promise` work for native promise-based APIs + try { + delete NativePromisePrototype.constructor; + } catch (error) { /* empty */ } -var aFunction = function (argument) { - return isCallable(argument) ? argument : undefined; -}; + // make `instanceof Promise` work for native promise-based APIs + if (setPrototypeOf) { + setPrototypeOf(NativePromisePrototype, PromisePrototype); + } + } +} -module.exports = function (namespace, method) { - return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method]; -}; +$({ global: true, wrap: true, forced: FORCED }, { + Promise: PromiseConstructor +}); + +setToStringTag(PromiseConstructor, PROMISE, false, true); +setSpecies(PROMISE); + +PromiseWrapper = getBuiltIn(PROMISE); + +// statics +$({ target: PROMISE, stat: true, forced: FORCED }, { + // `Promise.reject` method + // https://tc39.es/ecma262/#sec-promise.reject + reject: function reject(r) { + var capability = newPromiseCapability(this); + call(capability.reject, undefined, r); + return capability.promise; + } +}); + +$({ target: PROMISE, stat: true, forced: IS_PURE || FORCED }, { + // `Promise.resolve` method + // https://tc39.es/ecma262/#sec-promise.resolve + resolve: function resolve(x) { + return promiseResolve(IS_PURE && this === PromiseWrapper ? PromiseConstructor : this, x); + } +}); + +$({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, { + // `Promise.all` method + // https://tc39.es/ecma262/#sec-promise.all + all: function all(iterable) { + var C = this; + var capability = newPromiseCapability(C); + var resolve = capability.resolve; + var reject = capability.reject; + var result = perform(function () { + var $promiseResolve = aCallable(C.resolve); + var values = []; + var counter = 0; + var remaining = 1; + iterate(iterable, function (promise) { + var index = counter++; + var alreadyCalled = false; + remaining++; + call($promiseResolve, C, promise).then(function (value) { + if (alreadyCalled) return; + alreadyCalled = true; + values[index] = value; + --remaining || resolve(values); + }, reject); + }); + --remaining || resolve(values); + }); + if (result.error) reject(result.value); + return capability.promise; + }, + // `Promise.race` method + // https://tc39.es/ecma262/#sec-promise.race + race: function race(iterable) { + var C = this; + var capability = newPromiseCapability(C); + var reject = capability.reject; + var result = perform(function () { + var $promiseResolve = aCallable(C.resolve); + iterate(iterable, function (promise) { + call($promiseResolve, C, promise).then(capability.resolve, reject); + }); + }); + if (result.error) reject(result.value); + return capability.promise; + } +}); /***/ }), -/***/ 38639: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 61726: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var toPropertyKey = __webpack_require__(63918); -var definePropertyModule = __webpack_require__(95892); -var createPropertyDescriptor = __webpack_require__(97841); +var $ = __webpack_require__(56475); +var exec = __webpack_require__(49820); -module.exports = function (object, key, value) { - var propertyKey = toPropertyKey(key); - if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value)); - else object[propertyKey] = value; -}; +// `RegExp.prototype.exec` method +// https://tc39.es/ecma262/#sec-regexp.prototype.exec +$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, { + exec: exec +}); /***/ }), -/***/ 38688: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 74516: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); -var shared = __webpack_require__(464); -var hasOwn = __webpack_require__(20340); -var uid = __webpack_require__(46859); -var NATIVE_SYMBOL = __webpack_require__(46887); -var USE_SYMBOL_AS_UID = __webpack_require__(9567); +var DESCRIPTORS = __webpack_require__(15567); +var objectDefinePropertyModule = __webpack_require__(95892); +var regExpFlags = __webpack_require__(21182); +var fails = __webpack_require__(47044); -var WellKnownSymbolsStore = shared('wks'); -var Symbol = global.Symbol; -var symbolFor = Symbol && Symbol['for']; -var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid; +var RegExpPrototype = RegExp.prototype; -module.exports = function (name) { - if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) { - var description = 'Symbol.' + name; - if (NATIVE_SYMBOL && hasOwn(Symbol, name)) { - WellKnownSymbolsStore[name] = Symbol[name]; - } else if (USE_SYMBOL_AS_UID && symbolFor) { - WellKnownSymbolsStore[name] = symbolFor(description); - } else { - WellKnownSymbolsStore[name] = createWellKnownSymbol(description); - } - } return WellKnownSymbolsStore[name]; -}; +var FORCED = DESCRIPTORS && fails(function () { + // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe + return Object.getOwnPropertyDescriptor(RegExpPrototype, 'flags').get.call({ dotAll: true, sticky: true }) !== 'sy'; +}); + +// `RegExp.prototype.flags` getter +// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags +if (FORCED) objectDefinePropertyModule.f(RegExpPrototype, 'flags', { + configurable: true, + get: regExpFlags +}); /***/ }), -/***/ 38834: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 57114: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var uncurryThis = __webpack_require__(38347); +var PROPER_FUNCTION_NAME = (__webpack_require__(7081).PROPER); +var redefine = __webpack_require__(13711); +var anObject = __webpack_require__(34984); +var isPrototypeOf = __webpack_require__(70176); +var $toString = __webpack_require__(25096); +var fails = __webpack_require__(47044); +var regExpFlags = __webpack_require__(21182); -var _fs = __webpack_require__(48181); - -var _fs2 = _interopRequireDefault(_fs); - -function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - -var tags = __webpack_require__(9240); - -/* - unsignedByte, - asciiStrings, - unsignedShort, - unsignedLong, - unsignedRational, - signedByte, - undefined, - signedShort, - signedLong, - signedRational, - singleFloat, - doubleFloat - */ -var bytes = [0, 1, 1, 2, 4, 8, 1, 1, 2, 4, 8, 4, 8]; -var SOIMarkerLength = 2; -var JPEGSOIMarker = 0xffd8; -var TIFFINTEL = 0x4949; -var TIFFMOTOROLA = 0x4d4d; -var APPMarkerLength = 2; -var APPMarkerBegin = 0xffe0; -var APPMarkerEnd = 0xffef; -var data = void 0; -/** - * @param buffer {Buffer} - * @returns {Boolean} - * @example - * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); - * var isImage = isValid(content); - * console.log(isImage); - */ -var isValid = function isValid(buffer) { - try { - var SOIMarker = buffer.readUInt16BE(0); - return SOIMarker === JPEGSOIMarker; - } catch (e) { - throw new Error('Unsupport file format.'); - } -}; -/** - * @param buffer {Buffer} - * @returns {Boolean} - * @example - */ -var isTiff = function isTiff(buffer) { - try { - var SOIMarker = buffer.readUInt16BE(0); - return SOIMarker === TIFFINTEL || SOIMarker === TIFFMOTOROLA; - } catch (e) { - throw new Error('Unsupport file format.'); - } -}; -/** - * @param buffer {Buffer} - * @returns {Number} - * @example - * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); - * var APPNumber = checkAPPn(content); - * console.log(APPNumber); - */ -var checkAPPn = function checkAPPn(buffer) { - try { - var APPMarkerTag = buffer.readUInt16BE(0); - var isInRange = APPMarkerTag >= APPMarkerBegin && APPMarkerTag <= APPMarkerEnd; - return isInRange ? APPMarkerTag - APPMarkerBegin : false; - } catch (e) { - throw new Error('Invalid APP Tag.'); - } -}; -/** - * @param buffer {Buffer} - * @param tagCollection {Object} - * @param order {Boolean} - * @param offset {Number} - * @returns {Object} - * @example - * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); - * var exifFragments = IFDHandler(content, 0, true, 8); - * console.log(exifFragments.value); - */ -var IFDHandler = function IFDHandler(buffer, tagCollection, order, offset) { - var entriesNumber = order ? buffer.readUInt16BE(0) : buffer.readUInt16LE(0); - - if (entriesNumber === 0) { - return {}; - } - - var entriesNumberLength = 2; - var entries = buffer.slice(entriesNumberLength); - var entryLength = 12; - // let nextIFDPointerBegin = entriesNumberLength + entryLength * entriesNumber; - // let bigNextIFDPointer= buffer.readUInt32BE(nextIFDPointerBegin) ; - // let littleNextIFDPointer= buffer.readUInt32LE(nextIFDPointerBegin); - // let nextIFDPointer = order ?bigNextIFDPointer:littleNextIFDPointer; - var exif = {}; - var entryCount = 0; +var TO_STRING = 'toString'; +var RegExpPrototype = RegExp.prototype; +var n$ToString = RegExpPrototype[TO_STRING]; +var getFlags = uncurryThis(regExpFlags); - for (entryCount; entryCount < entriesNumber; entryCount += 1) { - var entryBegin = entryCount * entryLength; - var entry = entries.slice(entryBegin, entryBegin + entryLength); - var tagBegin = 0; - var tagLength = 2; - var dataFormatBegin = tagBegin + tagLength; - var dataFormatLength = 2; - var componentsBegin = dataFormatBegin + dataFormatLength; - var componentsNumberLength = 4; - var dataValueBegin = componentsBegin + componentsNumberLength; - var dataValueLength = 4; - var tagAddress = entry.slice(tagBegin, dataFormatBegin); - var tagNumber = order ? tagAddress.toString('hex') : tagAddress.reverse().toString('hex'); - var tagName = tagCollection[tagNumber]; - var bigDataFormat = entry.readUInt16BE(dataFormatBegin); - var littleDataFormat = entry.readUInt16LE(dataFormatBegin); - var dataFormat = order ? bigDataFormat : littleDataFormat; - var componentsByte = bytes[dataFormat]; - var bigComponentsNumber = entry.readUInt32BE(componentsBegin); - var littleComponentNumber = entry.readUInt32LE(componentsBegin); - var componentsNumber = order ? bigComponentsNumber : littleComponentNumber; - var dataLength = componentsNumber * componentsByte; - var dataValue = entry.slice(dataValueBegin, dataValueBegin + dataValueLength); +var NOT_GENERIC = fails(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; }); +// FF44- RegExp#toString has a wrong name +var INCORRECT_NAME = PROPER_FUNCTION_NAME && n$ToString.name != TO_STRING; - if (dataLength > 4) { - var dataOffset = (order ? dataValue.readUInt32BE(0) : dataValue.readUInt32LE(0)) - offset; - dataValue = buffer.slice(dataOffset, dataOffset + dataLength); - } +// `RegExp.prototype.toString` method +// https://tc39.es/ecma262/#sec-regexp.prototype.tostring +if (NOT_GENERIC || INCORRECT_NAME) { + redefine(RegExp.prototype, TO_STRING, function toString() { + var R = anObject(this); + var p = $toString(R.source); + var rf = R.flags; + var f = $toString(rf === undefined && isPrototypeOf(RegExpPrototype, R) && !('flags' in RegExpPrototype) ? getFlags(R) : rf); + return '/' + p + '/' + f; + }, { unsafe: true }); +} - var tagValue = void 0; - if (tagName) { - switch (dataFormat) { - case 1: - tagValue = dataValue.readUInt8(0); - break; - case 2: - tagValue = dataValue.toString('ascii').replace(/\0+$/, ''); - break; - case 3: - tagValue = order ? dataValue.readUInt16BE(0) : dataValue.readUInt16LE(0); - break; - case 4: - tagValue = order ? dataValue.readUInt32BE(0) : dataValue.readUInt32LE(0); - break; - case 5: - tagValue = []; +/***/ }), - for (var i = 0; i < dataValue.length; i += 8) { - var bigTagValue = dataValue.readUInt32BE(i) / dataValue.readUInt32BE(i + 4); - var littleTagValue = dataValue.readUInt32LE(i) / dataValue.readUInt32LE(i + 4); - tagValue.push(order ? bigTagValue : littleTagValue); - } +/***/ 76014: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - break; - case 7: - switch (tagName) { - case 'ExifVersion': - tagValue = dataValue.toString(); - break; - case 'FlashPixVersion': - tagValue = dataValue.toString(); - break; - case 'SceneType': - tagValue = dataValue.readUInt8(0); - break; - default: - tagValue = '0x' + dataValue.toString('hex', 0, 15); - break; - } - break; - case 10: - { - var bigOrder = dataValue.readInt32BE(0) / dataValue.readInt32BE(4); - var littleOrder = dataValue.readInt32LE(0) / dataValue.readInt32LE(4); - tagValue = order ? bigOrder : littleOrder; - break; - } - default: - tagValue = '0x' + dataValue.toString('hex'); - break; - } - exif[tagName] = tagValue; - } - /* - else { - console.log(`Unkown Tag [0x${tagNumber}].`); - } - */ - } - return exif; -}; +"use strict"; -/** - * @param buf {Buffer} - * @returns {Undefined} - * @example - * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); - * var exifFragments = EXIFHandler(content); - */ -var EXIFHandler = function EXIFHandler(buf) { - var pad = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; +var collection = __webpack_require__(36673); +var collectionStrong = __webpack_require__(9649); - var buffer = buf; +// `Set` constructor +// https://tc39.es/ecma262/#sec-set-objects +collection('Set', function (init) { + return function Set() { return init(this, arguments.length ? arguments[0] : undefined); }; +}, collectionStrong); - if (pad) { - buffer = buf.slice(APPMarkerLength); - var length = buffer.readUInt16BE(0); - buffer = buffer.slice(0, length); - var lengthLength = 2; - buffer = buffer.slice(lengthLength); - var identifierLength = 5; - buffer = buffer.slice(identifierLength); - var padLength = 1; - buffer = buffer.slice(padLength); - } - var byteOrderLength = 2; - var byteOrder = buffer.toString('ascii', 0, byteOrderLength) === 'MM'; - var fortyTwoLength = 2; - var fortyTwoEnd = byteOrderLength + fortyTwoLength; - var big42 = buffer.readUInt32BE(fortyTwoEnd); - var little42 = buffer.readUInt32LE(fortyTwoEnd); - var offsetOfIFD = byteOrder ? big42 : little42; +/***/ }), - buffer = buffer.slice(offsetOfIFD); +/***/ 28356: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (buffer.length > 0) { - data = IFDHandler(buffer, tags.ifd, byteOrder, offsetOfIFD); +"use strict"; - if (data.ExifIFDPointer) { - buffer = buffer.slice(data.ExifIFDPointer - offsetOfIFD); - data.SubExif = IFDHandler(buffer, tags.ifd, byteOrder, data.ExifIFDPointer); - } +var $ = __webpack_require__(56475); +var createHTML = __webpack_require__(91159); +var forcedStringHTMLMethod = __webpack_require__(7452); - if (data.GPSInfoIFDPointer) { - var gps = data.GPSInfoIFDPointer; - buffer = buffer.slice(data.ExifIFDPointer ? gps - data.ExifIFDPointer : gps - offsetOfIFD); - data.GPSInfo = IFDHandler(buffer, tags.gps, byteOrder, gps); - } +// `String.prototype.bold` method +// https://tc39.es/ecma262/#sec-string.prototype.bold +$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('bold') }, { + bold: function bold() { + return createHTML(this, 'b', '', ''); } -}; - -/** - * @param buffer {Buffer} - * @returns {Undefined} - * @example - * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); - * var exifFragments = APPnHandler(content); - */ -var APPnHandler = function APPnHandler(buffer) { - var APPMarkerTag = checkAPPn(buffer); - - if (APPMarkerTag !== false) { - // APP0 is 0, and 0==false - var length = buffer.readUInt16BE(APPMarkerLength); +}); - switch (APPMarkerTag) { - case 1: - // EXIF - EXIFHandler(buffer); - break; - default: - APPnHandler(buffer.slice(APPMarkerLength + length)); - break; - } - } -}; -/** - * @param buffer {Buffer} - * @returns {Object} - * @example - */ -var fromBuffer = function fromBuffer(buffer) { - if (!buffer) { - throw new Error('buffer not found'); - } +/***/ }), - data = undefined; +/***/ 26663: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (isValid(buffer)) { - buffer = buffer.slice(SOIMarkerLength); - data = {}; - APPnHandler(buffer); - } else if (isTiff(buffer)) { - data = {}; - EXIFHandler(buffer, false); - } +"use strict"; - return data; -}; +var $ = __webpack_require__(56475); +var codeAt = (__webpack_require__(69510).codeAt); -/** - * @param file {String} - * @returns {Object} - * @example - * var exif = sync("~/Picture/IMG_1981.JPG"); - * console.log(exif.createTime); - */ -var sync = function sync(file) { - if (!file) { - throw new Error('File not found'); +// `String.prototype.codePointAt` method +// https://tc39.es/ecma262/#sec-string.prototype.codepointat +$({ target: 'String', proto: true }, { + codePointAt: function codePointAt(pos) { + return codeAt(this, pos); } +}); - var buffer = _fs2.default.readFileSync(file); - - return fromBuffer(buffer); -}; - -/** - * @param file {String} - * @param callback {Function} - * @example - * async("~/Picture/IMG_0707.JPG", (err, data) => { - * if(err) { - * console.log(err); - * } - * if(data) { - * console.log(data.ExifOffset.createTime); - * } - * } - */ -var async = function async(file, callback) { - data = undefined; - new Promise(function (resolve, reject) { - if (!file) { - reject(new Error('❓File not found.')); - } +/***/ }), - _fs2.default.readFile(file, function (err, buffer) { - if (err) { - reject(err); - } else { - try { - if (isValid(buffer)) { - var buf = buffer.slice(SOIMarkerLength); +/***/ 65578: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - data = {}; +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var toAbsoluteIndex = __webpack_require__(74841); - APPnHandler(buf); - resolve(data); - } else if (isTiff(buffer)) { - data = {}; +var RangeError = global.RangeError; +var fromCharCode = String.fromCharCode; +// eslint-disable-next-line es/no-string-fromcodepoint -- required for testing +var $fromCodePoint = String.fromCodePoint; +var join = uncurryThis([].join); - EXIFHandler(buffer, false); - resolve(data); - } else { - reject(new Error('😱Unsupport file type.')); - } - } catch (e) { - reject(e); - } - } - }); - }, function (error) { - callback(error, undefined); - }).then(function (d) { - callback(undefined, d); - }).catch(function (error) { - callback(error, undefined); - }); -}; +// length should be 1, old FF problem +var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1; -exports.fromBuffer = fromBuffer; -exports.parse = async; -exports.parseSync = sync; +// `String.fromCodePoint` method +// https://tc39.es/ecma262/#sec-string.fromcodepoint +$({ target: 'String', stat: true, forced: INCORRECT_LENGTH }, { + // eslint-disable-next-line no-unused-vars -- required for `.length` + fromCodePoint: function fromCodePoint(x) { + var elements = []; + var length = arguments.length; + var i = 0; + var code; + while (length > i) { + code = +arguments[i++]; + if (toAbsoluteIndex(code, 0x10FFFF) !== code) throw RangeError(code + ' is not a valid code point'); + elements[i] = code < 0x10000 + ? fromCharCode(code) + : fromCharCode(((code -= 0x10000) >> 10) + 0xD800, code % 0x400 + 0xDC00); + } return join(elements, ''); + } +}); /***/ }), -/***/ 39081: +/***/ 47458: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; var $ = __webpack_require__(56475); -var global = __webpack_require__(32010); -var fails = __webpack_require__(47044); -var isArray = __webpack_require__(59113); -var isObject = __webpack_require__(24517); -var toObject = __webpack_require__(43162); -var lengthOfArrayLike = __webpack_require__(45495); -var createProperty = __webpack_require__(38639); -var arraySpeciesCreate = __webpack_require__(45744); -var arrayMethodHasSpeciesSupport = __webpack_require__(56280); -var wellKnownSymbol = __webpack_require__(38688); -var V8_VERSION = __webpack_require__(70091); +var uncurryThis = __webpack_require__(38347); +var notARegExp = __webpack_require__(93666); +var requireObjectCoercible = __webpack_require__(83943); +var toString = __webpack_require__(25096); +var correctIsRegExpLogic = __webpack_require__(91151); -var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable'); -var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; -var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; -var TypeError = global.TypeError; +var stringIndexOf = uncurryThis(''.indexOf); -// We can't use this feature detection in V8 since it causes -// deoptimization and serious performance degradation -// https://github.com/zloirock/core-js/issues/679 -var IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () { - var array = []; - array[IS_CONCAT_SPREADABLE] = false; - return array.concat()[0] !== array; +// `String.prototype.includes` method +// https://tc39.es/ecma262/#sec-string.prototype.includes +$({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, { + includes: function includes(searchString /* , position = 0 */) { + return !!~stringIndexOf( + toString(requireObjectCoercible(this)), + toString(notARegExp(searchString)), + arguments.length > 1 ? arguments[1] : undefined + ); + } }); -var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat'); -var isConcatSpreadable = function (O) { - if (!isObject(O)) return false; - var spreadable = O[IS_CONCAT_SPREADABLE]; - return spreadable !== undefined ? !!spreadable : isArray(O); -}; +/***/ }), -var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; +/***/ 62046: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// `Array.prototype.concat` method -// https://tc39.es/ecma262/#sec-array.prototype.concat -// with adding support of @@isConcatSpreadable and @@species -$({ target: 'Array', proto: true, forced: FORCED }, { - // eslint-disable-next-line no-unused-vars -- required for `.length` - concat: function concat(arg) { - var O = toObject(this); - var A = arraySpeciesCreate(O, 0); - var n = 0; - var i, k, length, len, E; - for (i = -1, length = arguments.length; i < length; i++) { - E = i === -1 ? O : arguments[i]; - if (isConcatSpreadable(E)) { - len = lengthOfArrayLike(E); - if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); - for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); - } else { - if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); - createProperty(A, n++, E); - } - } - A.length = n; - return A; +"use strict"; + +var $ = __webpack_require__(56475); +var createHTML = __webpack_require__(91159); +var forcedStringHTMLMethod = __webpack_require__(7452); + +// `String.prototype.italics` method +// https://tc39.es/ecma262/#sec-string.prototype.italics +$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('italics') }, { + italics: function italics() { + return createHTML(this, 'i', '', ''); } }); /***/ }), -/***/ 39599: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 58281: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var fails = __webpack_require__(47044); -var isCallable = __webpack_require__(94578); +"use strict"; -var replacement = /#|\.prototype\./; +var charAt = (__webpack_require__(69510).charAt); +var toString = __webpack_require__(25096); +var InternalStateModule = __webpack_require__(70172); +var defineIterator = __webpack_require__(97001); -var isForced = function (feature, detection) { - var value = data[normalize(feature)]; - return value == POLYFILL ? true - : value == NATIVE ? false - : isCallable(detection) ? fails(detection) - : !!detection; -}; +var STRING_ITERATOR = 'String Iterator'; +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); -var normalize = isForced.normalize = function (string) { - return String(string).replace(replacement, '.').toLowerCase(); -}; +// `String.prototype[@@iterator]` method +// https://tc39.es/ecma262/#sec-string.prototype-@@iterator +defineIterator(String, 'String', function (iterated) { + setInternalState(this, { + type: STRING_ITERATOR, + string: toString(iterated), + index: 0 + }); +// `%StringIteratorPrototype%.next` method +// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next +}, function next() { + var state = getInternalState(this); + var string = state.string; + var index = state.index; + var point; + if (index >= string.length) return { value: undefined, done: true }; + point = charAt(string, index); + state.index += point.length; + return { value: point, done: false }; +}); -var data = isForced.data = {}; -var NATIVE = isForced.NATIVE = 'N'; -var POLYFILL = isForced.POLYFILL = 'P'; -module.exports = isForced; +/***/ }), + +/***/ 47259: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + +var $ = __webpack_require__(56475); +var createHTML = __webpack_require__(91159); +var forcedStringHTMLMethod = __webpack_require__(7452); + +// `String.prototype.link` method +// https://tc39.es/ecma262/#sec-string.prototype.link +$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('link') }, { + link: function link(url) { + return createHTML(this, 'a', 'href', url); + } +}); /***/ }), -/***/ 39629: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 71768: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +"use strict"; + +/* eslint-disable es/no-string-prototype-matchall -- safe */ +var $ = __webpack_require__(56475); var global = __webpack_require__(32010); var call = __webpack_require__(2834); -var isCallable = __webpack_require__(94578); -var isObject = __webpack_require__(24517); +var uncurryThis = __webpack_require__(38347); +var createIteratorConstructor = __webpack_require__(13945); +var requireObjectCoercible = __webpack_require__(83943); +var toLength = __webpack_require__(23417); +var toString = __webpack_require__(25096); +var anObject = __webpack_require__(34984); +var classof = __webpack_require__(93975); +var isPrototypeOf = __webpack_require__(70176); +var isRegExp = __webpack_require__(28831); +var regExpFlags = __webpack_require__(21182); +var getMethod = __webpack_require__(51839); +var redefine = __webpack_require__(13711); +var fails = __webpack_require__(47044); +var wellKnownSymbol = __webpack_require__(38688); +var speciesConstructor = __webpack_require__(27754); +var advanceStringIndex = __webpack_require__(36352); +var regExpExec = __webpack_require__(66723); +var InternalStateModule = __webpack_require__(70172); +var IS_PURE = __webpack_require__(63432); +var MATCH_ALL = wellKnownSymbol('matchAll'); +var REGEXP_STRING = 'RegExp String'; +var REGEXP_STRING_ITERATOR = REGEXP_STRING + ' Iterator'; +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(REGEXP_STRING_ITERATOR); +var RegExpPrototype = RegExp.prototype; var TypeError = global.TypeError; +var getFlags = uncurryThis(regExpFlags); +var stringIndexOf = uncurryThis(''.indexOf); +var un$MatchAll = uncurryThis(''.matchAll); -// `OrdinaryToPrimitive` abstract operation -// https://tc39.es/ecma262/#sec-ordinarytoprimitive -module.exports = function (input, pref) { - var fn, val; - if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; - if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val; - if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; - throw TypeError("Can't convert object to primitive value"); -}; +var WORKS_WITH_NON_GLOBAL_REGEX = !!un$MatchAll && !fails(function () { + un$MatchAll('a', /./); +}); +var $RegExpStringIterator = createIteratorConstructor(function RegExpStringIterator(regexp, string, $global, fullUnicode) { + setInternalState(this, { + type: REGEXP_STRING_ITERATOR, + regexp: regexp, + string: string, + global: $global, + unicode: fullUnicode, + done: false + }); +}, REGEXP_STRING, function next() { + var state = getInternalState(this); + if (state.done) return { value: undefined, done: true }; + var R = state.regexp; + var S = state.string; + var match = regExpExec(R, S); + if (match === null) return { value: undefined, done: state.done = true }; + if (state.global) { + if (toString(match[0]) === '') R.lastIndex = advanceStringIndex(S, toLength(R.lastIndex), state.unicode); + return { value: match, done: false }; + } + state.done = true; + return { value: match, done: false }; +}); -/***/ }), +var $matchAll = function (string) { + var R = anObject(this); + var S = toString(string); + var C, flagsValue, flags, matcher, $global, fullUnicode; + C = speciesConstructor(R, RegExp); + flagsValue = R.flags; + if (flagsValue === undefined && isPrototypeOf(RegExpPrototype, R) && !('flags' in RegExpPrototype)) { + flagsValue = getFlags(R); + } + flags = flagsValue === undefined ? '' : toString(flagsValue); + matcher = new C(C === RegExp ? R.source : R, flags); + $global = !!~stringIndexOf(flags, 'g'); + fullUnicode = !!~stringIndexOf(flags, 'u'); + matcher.lastIndex = toLength(R.lastIndex); + return new $RegExpStringIterator(matcher, S, $global, fullUnicode); +}; -/***/ 40679: -/***/ (function(module) { +// `String.prototype.matchAll` method +// https://tc39.es/ecma262/#sec-string.prototype.matchall +$({ target: 'String', proto: true, forced: WORKS_WITH_NON_GLOBAL_REGEX }, { + matchAll: function matchAll(regexp) { + var O = requireObjectCoercible(this); + var flags, S, matcher, rx; + if (regexp != null) { + if (isRegExp(regexp)) { + flags = toString(requireObjectCoercible('flags' in RegExpPrototype + ? regexp.flags + : getFlags(regexp) + )); + if (!~stringIndexOf(flags, 'g')) throw TypeError('`.matchAll` does not allow non-global regexes'); + } + if (WORKS_WITH_NON_GLOBAL_REGEX) return un$MatchAll(O, regexp); + matcher = getMethod(regexp, MATCH_ALL); + if (matcher === undefined && IS_PURE && classof(regexp) == 'RegExp') matcher = $matchAll; + if (matcher) return call(matcher, regexp, O); + } else if (WORKS_WITH_NON_GLOBAL_REGEX) return un$MatchAll(O, regexp); + S = toString(O); + rx = new RegExp(regexp, 'g'); + return IS_PURE ? call($matchAll, rx, S) : rx[MATCH_ALL](S); + } +}); + +IS_PURE || MATCH_ALL in RegExpPrototype || redefine(RegExpPrototype, MATCH_ALL, $matchAll); -"use strict"; -module.exports = /*#__PURE__*/JSON.parse('[["0","\\u0000",128],["a1","。",62],["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"],["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"],["81b8","∈∋⊆⊇⊂⊃∪∩"],["81c8","∧∨¬⇒⇔∀∃"],["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["81f0","ʼn♯♭♪†‡¶"],["81fc","◯"],["824f","0",9],["8260","A",25],["8281","a",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","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"]]'); /***/ }), -/***/ 40715: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 6422: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var getBuiltIn = __webpack_require__(38486); +"use strict"; -module.exports = getBuiltIn('navigator', 'userAgent') || ''; +var call = __webpack_require__(2834); +var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); +var anObject = __webpack_require__(34984); +var toLength = __webpack_require__(23417); +var toString = __webpack_require__(25096); +var requireObjectCoercible = __webpack_require__(83943); +var getMethod = __webpack_require__(51839); +var advanceStringIndex = __webpack_require__(36352); +var regExpExec = __webpack_require__(66723); +// @@match logic +fixRegExpWellKnownSymbolLogic('match', function (MATCH, nativeMatch, maybeCallNative) { + return [ + // `String.prototype.match` method + // https://tc39.es/ecma262/#sec-string.prototype.match + function match(regexp) { + var O = requireObjectCoercible(this); + var matcher = regexp == undefined ? undefined : getMethod(regexp, MATCH); + return matcher ? call(matcher, regexp, O) : new RegExp(regexp)[MATCH](toString(O)); + }, + // `RegExp.prototype[@@match]` method + // https://tc39.es/ecma262/#sec-regexp.prototype-@@match + function (string) { + var rx = anObject(this); + var S = toString(string); + var res = maybeCallNative(nativeMatch, rx, S); -/***/ }), + if (res.done) return res.value; -/***/ 41201: -/***/ (function(module) { + if (!rx.global) return regExpExec(rx, S); + + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + var A = []; + var n = 0; + var result; + while ((result = regExpExec(rx, S)) !== null) { + var matchStr = toString(result[0]); + A[n] = matchStr; + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + n++; + } + return n === 0 ? null : A; + } + ]; +}); -module.exports = function isBuffer(arg) { - return arg && typeof arg === 'object' - && typeof arg.copy === 'function' - && typeof arg.fill === 'function' - && typeof arg.readUInt8 === 'function'; -} /***/ }), -/***/ 41584: +/***/ 28264: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { var $ = __webpack_require__(56475); -var fill = __webpack_require__(72864); -var addToUnscopables = __webpack_require__(71156); +var repeat = __webpack_require__(34858); -// `Array.prototype.fill` method -// https://tc39.es/ecma262/#sec-array.prototype.fill -$({ target: 'Array', proto: true }, { - fill: fill +// `String.prototype.repeat` method +// https://tc39.es/ecma262/#sec-string.prototype.repeat +$({ target: 'String', proto: true }, { + repeat: repeat }); -// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables -addToUnscopables('fill'); - /***/ }), -/***/ 41613: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; -var clone = (function() { -'use strict'; - -/** - * Clones (copies) an Object using deep copying. - * - * This function supports circular references by default, but if you are certain - * there are no circular references in your object, you can save some CPU time - * by calling clone(obj, false). - * - * Caution: if `circular` is false and `parent` contains circular references, - * your program may enter an infinite loop and crash. - * - * @param `parent` - the object to be cloned - * @param `circular` - set to true if the object to be cloned may contain - * circular references. (optional - true by default) - * @param `depth` - set to a number if the object is only to be cloned to - * a particular depth. (optional - defaults to Infinity) - * @param `prototype` - sets the prototype to be used when cloning an object. - * (optional - defaults to parent prototype). -*/ -function clone(parent, circular, depth, prototype) { - var filter; - if (typeof circular === 'object') { - depth = circular.depth; - prototype = circular.prototype; - filter = circular.filter; - circular = circular.circular - } - // maintain two arrays for circular references, where corresponding parents - // and children have the same index - var allParents = []; - var allChildren = []; - - var useBuffer = typeof Buffer != 'undefined'; - - if (typeof circular == 'undefined') - circular = true; +/***/ 1593: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (typeof depth == 'undefined') - depth = Infinity; +"use strict"; - // recurse this function so we don't reset allParents and allChildren - function _clone(parent, depth) { - // cloning null always returns null - if (parent === null) - return null; +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var call = __webpack_require__(2834); +var uncurryThis = __webpack_require__(38347); +var requireObjectCoercible = __webpack_require__(83943); +var isCallable = __webpack_require__(94578); +var isRegExp = __webpack_require__(28831); +var toString = __webpack_require__(25096); +var getMethod = __webpack_require__(51839); +var regExpFlags = __webpack_require__(21182); +var getSubstitution = __webpack_require__(29519); +var wellKnownSymbol = __webpack_require__(38688); +var IS_PURE = __webpack_require__(63432); - if (depth == 0) - return parent; +var REPLACE = wellKnownSymbol('replace'); +var RegExpPrototype = RegExp.prototype; +var TypeError = global.TypeError; +var getFlags = uncurryThis(regExpFlags); +var indexOf = uncurryThis(''.indexOf); +var replace = uncurryThis(''.replace); +var stringSlice = uncurryThis(''.slice); +var max = Math.max; - var child; - var proto; - if (typeof parent != 'object') { - return parent; - } +var stringIndexOf = function (string, searchValue, fromIndex) { + if (fromIndex > string.length) return -1; + if (searchValue === '') return fromIndex; + return indexOf(string, searchValue, fromIndex); +}; - if (clone.__isArray(parent)) { - child = []; - } else if (clone.__isRegExp(parent)) { - child = new RegExp(parent.source, __getRegExpFlags(parent)); - if (parent.lastIndex) child.lastIndex = parent.lastIndex; - } else if (clone.__isDate(parent)) { - child = new Date(parent.getTime()); - } else if (useBuffer && Buffer.isBuffer(parent)) { - if (Buffer.allocUnsafe) { - // Node.js >= 4.5.0 - child = Buffer.allocUnsafe(parent.length); - } else { - // Older Node.js versions - child = new Buffer(parent.length); - } - parent.copy(child); - return child; - } else { - if (typeof prototype == 'undefined') { - proto = Object.getPrototypeOf(parent); - child = Object.create(proto); +// `String.prototype.replaceAll` method +// https://tc39.es/ecma262/#sec-string.prototype.replaceall +$({ target: 'String', proto: true }, { + replaceAll: function replaceAll(searchValue, replaceValue) { + var O = requireObjectCoercible(this); + var IS_REG_EXP, flags, replacer, string, searchString, functionalReplace, searchLength, advanceBy, replacement; + var position = 0; + var endOfLastMatch = 0; + var result = ''; + if (searchValue != null) { + IS_REG_EXP = isRegExp(searchValue); + if (IS_REG_EXP) { + flags = toString(requireObjectCoercible('flags' in RegExpPrototype + ? searchValue.flags + : getFlags(searchValue) + )); + if (!~indexOf(flags, 'g')) throw TypeError('`.replaceAll` does not allow non-global regexes'); } - else { - child = Object.create(prototype); - proto = prototype; + replacer = getMethod(searchValue, REPLACE); + if (replacer) { + return call(replacer, searchValue, O, replaceValue); + } else if (IS_PURE && IS_REG_EXP) { + return replace(toString(O), searchValue, replaceValue); } } - - if (circular) { - var index = allParents.indexOf(parent); - - if (index != -1) { - return allChildren[index]; - } - allParents.push(parent); - allChildren.push(child); + string = toString(O); + searchString = toString(searchValue); + functionalReplace = isCallable(replaceValue); + if (!functionalReplace) replaceValue = toString(replaceValue); + searchLength = searchString.length; + advanceBy = max(1, searchLength); + position = stringIndexOf(string, searchString, 0); + while (position !== -1) { + replacement = functionalReplace + ? toString(replaceValue(searchString, position, string)) + : getSubstitution(searchString, string, position, [], undefined, replaceValue); + result += stringSlice(string, endOfLastMatch, position) + replacement; + endOfLastMatch = position + searchLength; + position = stringIndexOf(string, searchString, position + advanceBy); } - - for (var i in parent) { - var attrs; - if (proto) { - attrs = Object.getOwnPropertyDescriptor(proto, i); - } - - if (attrs && attrs.set == null) { - continue; - } - child[i] = _clone(parent[i], depth - 1); + if (endOfLastMatch < string.length) { + result += stringSlice(string, endOfLastMatch); } - - return child; + return result; } +}); - return _clone(parent, depth); -} - -/** - * Simple flat clone using prototype, accepts only objects, usefull for property - * override on FLAT configuration object (no nested props). - * - * USE WITH CAUTION! This may not behave as you wish if you do not know how this - * works. - */ -clone.clonePrototype = function clonePrototype(parent) { - if (parent === null) - return null; - - var c = function () {}; - c.prototype = parent; - return new c(); -}; -// private utility functions +/***/ }), -function __objToStr(o) { - return Object.prototype.toString.call(o); -}; -clone.__objToStr = __objToStr; +/***/ 46467: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -function __isDate(o) { - return typeof o === 'object' && __objToStr(o) === '[object Date]'; -}; -clone.__isDate = __isDate; +"use strict"; -function __isArray(o) { - return typeof o === 'object' && __objToStr(o) === '[object Array]'; -}; -clone.__isArray = __isArray; +var apply = __webpack_require__(58448); +var call = __webpack_require__(2834); +var uncurryThis = __webpack_require__(38347); +var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); +var fails = __webpack_require__(47044); +var anObject = __webpack_require__(34984); +var isCallable = __webpack_require__(94578); +var toIntegerOrInfinity = __webpack_require__(26882); +var toLength = __webpack_require__(23417); +var toString = __webpack_require__(25096); +var requireObjectCoercible = __webpack_require__(83943); +var advanceStringIndex = __webpack_require__(36352); +var getMethod = __webpack_require__(51839); +var getSubstitution = __webpack_require__(29519); +var regExpExec = __webpack_require__(66723); +var wellKnownSymbol = __webpack_require__(38688); -function __isRegExp(o) { - return typeof o === 'object' && __objToStr(o) === '[object RegExp]'; -}; -clone.__isRegExp = __isRegExp; +var REPLACE = wellKnownSymbol('replace'); +var max = Math.max; +var min = Math.min; +var concat = uncurryThis([].concat); +var push = uncurryThis([].push); +var stringIndexOf = uncurryThis(''.indexOf); +var stringSlice = uncurryThis(''.slice); -function __getRegExpFlags(re) { - var flags = ''; - if (re.global) flags += 'g'; - if (re.ignoreCase) flags += 'i'; - if (re.multiline) flags += 'm'; - return flags; +var maybeToString = function (it) { + return it === undefined ? it : String(it); }; -clone.__getRegExpFlags = __getRegExpFlags; -return clone; +// IE <= 11 replaces $0 with the whole match, as if it was $& +// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0 +var REPLACE_KEEPS_$0 = (function () { + // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing + return 'a'.replace(/./, '$0') === '$0'; })(); -if ( true && module.exports) { - module.exports = clone; -} - +// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string +var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () { + if (/./[REPLACE]) { + return /./[REPLACE]('a', '$0') === ''; + } + return false; +})(); -/***/ }), +var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () { + var re = /./; + re.exec = function () { + var result = []; + result.groups = { a: '7' }; + return result; + }; + // eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive + return ''.replace(re, '$') !== '7'; +}); -/***/ 41731: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +// @@replace logic +fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) { + var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; -var userAgent = __webpack_require__(40715); + return [ + // `String.prototype.replace` method + // https://tc39.es/ecma262/#sec-string.prototype.replace + function replace(searchValue, replaceValue) { + var O = requireObjectCoercible(this); + var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE); + return replacer + ? call(replacer, searchValue, O, replaceValue) + : call(nativeReplace, toString(O), searchValue, replaceValue); + }, + // `RegExp.prototype[@@replace]` method + // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace + function (string, replaceValue) { + var rx = anObject(this); + var S = toString(string); -var webkit = userAgent.match(/AppleWebKit\/(\d+)\./); + if ( + typeof replaceValue == 'string' && + stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 && + stringIndexOf(replaceValue, '$<') === -1 + ) { + var res = maybeCallNative(nativeReplace, rx, S, replaceValue); + if (res.done) return res.value; + } -module.exports = !!webkit && +webkit[1]; + var functionalReplace = isCallable(replaceValue); + if (!functionalReplace) replaceValue = toString(replaceValue); + var global = rx.global; + if (global) { + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + } + var results = []; + while (true) { + var result = regExpExec(rx, S); + if (result === null) break; -/***/ }), + push(results, result); + if (!global) break; -/***/ 42075: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + var matchStr = toString(result[0]); + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + } -__webpack_require__(94910); -__webpack_require__(81755); -__webpack_require__(14032); -__webpack_require__(68067); -__webpack_require__(77074); -__webpack_require__(44455); -__webpack_require__(80986); -__webpack_require__(58281); -var path = __webpack_require__(11206); + var accumulatedResult = ''; + var nextSourcePosition = 0; + for (var i = 0; i < results.length; i++) { + result = results[i]; -module.exports = path.Promise; + var matched = toString(result[0]); + var position = max(min(toIntegerOrInfinity(result.index), S.length), 0); + var captures = []; + // NOTE: This is equivalent to + // captures = result.slice(1).map(maybeToString) + // but for some reason `nativeSlice.call(result, 1, result.length)` (called in + // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and + // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. + for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j])); + var namedCaptures = result.groups; + if (functionalReplace) { + var replacerArgs = concat([matched], captures, position, S); + if (namedCaptures !== undefined) push(replacerArgs, namedCaptures); + var replacement = toString(apply(replaceValue, undefined, replacerArgs)); + } else { + replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); + } + if (position >= nextSourcePosition) { + accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement; + nextSourcePosition = position + matched.length; + } + } + return accumulatedResult + stringSlice(S, nextSourcePosition); + } + ]; +}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE); /***/ }), -/***/ 42210: -/***/ (function(__unused_webpack_module, exports) { - -/* Copyright 2013 Google Inc. All Rights Reserved. +/***/ 7851: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - 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 +"use strict"; - http://www.apache.org/licenses/LICENSE-2.0 +var apply = __webpack_require__(58448); +var call = __webpack_require__(2834); +var uncurryThis = __webpack_require__(38347); +var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); +var isRegExp = __webpack_require__(28831); +var anObject = __webpack_require__(34984); +var requireObjectCoercible = __webpack_require__(83943); +var speciesConstructor = __webpack_require__(27754); +var advanceStringIndex = __webpack_require__(36352); +var toLength = __webpack_require__(23417); +var toString = __webpack_require__(25096); +var getMethod = __webpack_require__(51839); +var arraySlice = __webpack_require__(73163); +var callRegExpExec = __webpack_require__(66723); +var regexpExec = __webpack_require__(49820); +var stickyHelpers = __webpack_require__(74846); +var fails = __webpack_require__(47044); - 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. +var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y; +var MAX_UINT32 = 0xFFFFFFFF; +var min = Math.min; +var $push = [].push; +var exec = uncurryThis(/./.exec); +var push = uncurryThis($push); +var stringSlice = uncurryThis(''.slice); - Lookup tables to map prefix codes to value ranges. This is used during - decoding of the block lengths, literal insertion lengths and copy lengths. -*/ +// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec +// Weex JS has frozen built-in prototypes, so use try / catch wrapper +var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () { + // eslint-disable-next-line regexp/no-empty-group -- required for testing + var re = /(?:)/; + var originalExec = re.exec; + re.exec = function () { return originalExec.apply(this, arguments); }; + var result = 'ab'.split(re); + return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b'; +}); -/* Represents the range of values belonging to a prefix code: */ -/* [offset, offset + 2^nbits) */ -function PrefixCodeRange(offset, nbits) { - this.offset = offset; - this.nbits = nbits; -} +// @@split logic +fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) { + var internalSplit; + if ( + 'abbc'.split(/(b)*/)[1] == 'c' || + // eslint-disable-next-line regexp/no-empty-group -- required for testing + 'test'.split(/(?:)/, -1).length != 4 || + 'ab'.split(/(?:ab)*/).length != 2 || + '.'.split(/(.?)(.?)/).length != 4 || + // eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing + '.'.split(/()()/).length > 1 || + ''.split(/.?/).length + ) { + // based on es5-shim implementation, need to rework it + internalSplit = function (separator, limit) { + var string = toString(requireObjectCoercible(this)); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (separator === undefined) return [string]; + // If `separator` is not a regex, use native split + if (!isRegExp(separator)) { + return call(nativeSplit, string, separator, lim); + } + var output = []; + var flags = (separator.ignoreCase ? 'i' : '') + + (separator.multiline ? 'm' : '') + + (separator.unicode ? 'u' : '') + + (separator.sticky ? 'y' : ''); + var lastLastIndex = 0; + // Make `global` and avoid `lastIndex` issues by working with a copy + var separatorCopy = new RegExp(separator.source, flags + 'g'); + var match, lastIndex, lastLength; + while (match = call(regexpExec, separatorCopy, string)) { + lastIndex = separatorCopy.lastIndex; + if (lastIndex > lastLastIndex) { + push(output, stringSlice(string, lastLastIndex, match.index)); + if (match.length > 1 && match.index < string.length) apply($push, output, arraySlice(match, 1)); + lastLength = match[0].length; + lastLastIndex = lastIndex; + if (output.length >= lim) break; + } + if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop + } + if (lastLastIndex === string.length) { + if (lastLength || !exec(separatorCopy, '')) push(output, ''); + } else push(output, stringSlice(string, lastLastIndex)); + return output.length > lim ? arraySlice(output, 0, lim) : output; + }; + // Chakra, V8 + } else if ('0'.split(undefined, 0).length) { + internalSplit = function (separator, limit) { + return separator === undefined && limit === 0 ? [] : call(nativeSplit, this, separator, limit); + }; + } else internalSplit = nativeSplit; -exports.kBlockLengthPrefixCode = [ - new PrefixCodeRange(1, 2), new PrefixCodeRange(5, 2), new PrefixCodeRange(9, 2), new PrefixCodeRange(13, 2), - new PrefixCodeRange(17, 3), new PrefixCodeRange(25, 3), new PrefixCodeRange(33, 3), new PrefixCodeRange(41, 3), - new PrefixCodeRange(49, 4), new PrefixCodeRange(65, 4), new PrefixCodeRange(81, 4), new PrefixCodeRange(97, 4), - new PrefixCodeRange(113, 5), new PrefixCodeRange(145, 5), new PrefixCodeRange(177, 5), new PrefixCodeRange(209, 5), - new PrefixCodeRange(241, 6), new PrefixCodeRange(305, 6), new PrefixCodeRange(369, 7), new PrefixCodeRange(497, 8), - new PrefixCodeRange(753, 9), new PrefixCodeRange(1265, 10), new PrefixCodeRange(2289, 11), new PrefixCodeRange(4337, 12), - new PrefixCodeRange(8433, 13), new PrefixCodeRange(16625, 24) -]; + return [ + // `String.prototype.split` method + // https://tc39.es/ecma262/#sec-string.prototype.split + function split(separator, limit) { + var O = requireObjectCoercible(this); + var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT); + return splitter + ? call(splitter, separator, O, limit) + : call(internalSplit, toString(O), separator, limit); + }, + // `RegExp.prototype[@@split]` method + // https://tc39.es/ecma262/#sec-regexp.prototype-@@split + // + // NOTE: This cannot be properly polyfilled in engines that don't support + // the 'y' flag. + function (string, limit) { + var rx = anObject(this); + var S = toString(string); + var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit); -exports.kInsertLengthPrefixCode = [ - new PrefixCodeRange(0, 0), new PrefixCodeRange(1, 0), new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), - new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), new PrefixCodeRange(6, 1), new PrefixCodeRange(8, 1), - new PrefixCodeRange(10, 2), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 3), new PrefixCodeRange(26, 3), - new PrefixCodeRange(34, 4), new PrefixCodeRange(50, 4), new PrefixCodeRange(66, 5), new PrefixCodeRange(98, 5), - new PrefixCodeRange(130, 6), new PrefixCodeRange(194, 7), new PrefixCodeRange(322, 8), new PrefixCodeRange(578, 9), - new PrefixCodeRange(1090, 10), new PrefixCodeRange(2114, 12), new PrefixCodeRange(6210, 14), new PrefixCodeRange(22594, 24), -]; + if (res.done) return res.value; -exports.kCopyLengthPrefixCode = [ - new PrefixCodeRange(2, 0), new PrefixCodeRange(3, 0), new PrefixCodeRange(4, 0), new PrefixCodeRange(5, 0), - new PrefixCodeRange(6, 0), new PrefixCodeRange(7, 0), new PrefixCodeRange(8, 0), new PrefixCodeRange(9, 0), - new PrefixCodeRange(10, 1), new PrefixCodeRange(12, 1), new PrefixCodeRange(14, 2), new PrefixCodeRange(18, 2), - new PrefixCodeRange(22, 3), new PrefixCodeRange(30, 3), new PrefixCodeRange(38, 4), new PrefixCodeRange(54, 4), - new PrefixCodeRange(70, 5), new PrefixCodeRange(102, 5), new PrefixCodeRange(134, 6), new PrefixCodeRange(198, 7), - new PrefixCodeRange(326, 8), new PrefixCodeRange(582, 9), new PrefixCodeRange(1094, 10), new PrefixCodeRange(2118, 24), -]; + var C = speciesConstructor(rx, RegExp); -exports.kInsertRangeLut = [ - 0, 0, 8, 8, 0, 16, 8, 16, 16, -]; + var unicodeMatching = rx.unicode; + var flags = (rx.ignoreCase ? 'i' : '') + + (rx.multiline ? 'm' : '') + + (rx.unicode ? 'u' : '') + + (UNSUPPORTED_Y ? 'g' : 'y'); -exports.kCopyRangeLut = [ - 0, 8, 0, 8, 16, 0, 16, 8, 16, -]; + // ^(? + rx + ) is needed, in combination with some S slicing, to + // simulate the 'y' flag. + var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : []; + var p = 0; + var q = 0; + var A = []; + while (q < S.length) { + splitter.lastIndex = UNSUPPORTED_Y ? 0 : q; + var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice(S, q) : S); + var e; + if ( + z === null || + (e = min(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p + ) { + q = advanceStringIndex(S, q, unicodeMatching); + } else { + push(A, stringSlice(S, p, q)); + if (A.length === lim) return A; + for (var i = 1; i <= z.length - 1; i++) { + push(A, z[i]); + if (A.length === lim) return A; + } + q = p = e; + } + } + push(A, stringSlice(S, p)); + return A; + } + ]; +}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y); /***/ }), -/***/ 42437: +/***/ 18425: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); -var DOMIterables = __webpack_require__(23327); -var DOMTokenListPrototype = __webpack_require__(67797); -var forEach = __webpack_require__(82938); -var createNonEnumerableProperty = __webpack_require__(48914); +"use strict"; -var handlePrototype = function (CollectionPrototype) { - // some Chrome versions have non-configurable methods on DOMTokenList - if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try { - createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach); - } catch (error) { - CollectionPrototype.forEach = forEach; - } -}; +var $ = __webpack_require__(56475); +var createHTML = __webpack_require__(91159); +var forcedStringHTMLMethod = __webpack_require__(7452); -for (var COLLECTION_NAME in DOMIterables) { - if (DOMIterables[COLLECTION_NAME]) { - handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype); +// `String.prototype.strike` method +// https://tc39.es/ecma262/#sec-string.prototype.strike +$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('strike') }, { + strike: function strike() { + return createHTML(this, 'strike', '', ''); } -} - -handlePrototype(DOMTokenListPrototype); +}); /***/ }), -/***/ 42526: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 72095: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -/*eslint no-unused-vars: ["error", {"args": "none"}]*/ - - - -var TextTools = __webpack_require__(11548); -var StyleContextStack = __webpack_require__(76442); -var ColumnCalculator = __webpack_require__(77530); -var isString = (__webpack_require__(91867).isString); -var isNumber = (__webpack_require__(91867).isNumber); -var isObject = (__webpack_require__(91867).isObject); -var isArray = (__webpack_require__(91867).isArray); -var fontStringify = (__webpack_require__(91867).fontStringify); -var getNodeId = (__webpack_require__(91867).getNodeId); -var pack = (__webpack_require__(91867).pack); -var qrEncoder = __webpack_require__(72155); -/** - * @private - */ -function DocMeasure(fontProvider, styleDictionary, defaultStyle, imageMeasure, svgMeasure, tableLayouts, images) { - this.textTools = new TextTools(fontProvider); - this.styleStack = new StyleContextStack(styleDictionary, defaultStyle); - this.imageMeasure = imageMeasure; - this.svgMeasure = svgMeasure; - this.tableLayouts = tableLayouts; - this.images = images; - this.autoImageIndex = 1; -} - -/** - * Measures all nodes and sets min/max-width properties required for the second - * layout-pass. - * @param {Object} docStructure document-definition-object - * @return {Object} document-measurement-object - */ -DocMeasure.prototype.measureDocument = function (docStructure) { - return this.measureNode(docStructure); -}; - -DocMeasure.prototype.measureNode = function (node) { +var $ = __webpack_require__(56475); +var $trim = (__webpack_require__(29841).trim); +var forcedStringTrimMethod = __webpack_require__(68899); - var self = this; +// `String.prototype.trim` method +// https://tc39.es/ecma262/#sec-string.prototype.trim +$({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, { + trim: function trim() { + return $trim(this); + } +}); - return this.styleStack.auto(node, function () { - // TODO: refactor + rethink whether this is the proper way to handle margins - node._margin = getNodeMargin(node); - if (node.columns) { - return extendMargins(self.measureColumns(node)); - } else if (node.stack) { - return extendMargins(self.measureVerticalContainer(node)); - } else if (node.ul) { - return extendMargins(self.measureUnorderedList(node)); - } else if (node.ol) { - return extendMargins(self.measureOrderedList(node)); - } else if (node.table) { - return extendMargins(self.measureTable(node)); - } else if (node.text !== undefined) { - return extendMargins(self.measureLeaf(node)); - } else if (node.toc) { - return extendMargins(self.measureToc(node)); - } else if (node.image) { - return extendMargins(self.measureImage(node)); - } else if (node.svg) { - return extendMargins(self.measureSVG(node)); - } else if (node.canvas) { - return extendMargins(self.measureCanvas(node)); - } else if (node.qr) { - return extendMargins(self.measureQr(node)); - } else { - throw 'Unrecognized document structure: ' + JSON.stringify(node, fontStringify); - } - }); +/***/ }), - function extendMargins(node) { - var margin = node._margin; +/***/ 73844: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (margin) { - node._minWidth += margin[0] + margin[2]; - node._maxWidth += margin[0] + margin[2]; - } +"use strict"; +// `Symbol.prototype.description` getter +// https://tc39.es/ecma262/#sec-symbol.prototype.description - return node; - } +var $ = __webpack_require__(56475); +var DESCRIPTORS = __webpack_require__(15567); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var hasOwn = __webpack_require__(20340); +var isCallable = __webpack_require__(94578); +var isPrototypeOf = __webpack_require__(70176); +var toString = __webpack_require__(25096); +var defineProperty = (__webpack_require__(95892).f); +var copyConstructorProperties = __webpack_require__(2675); - function getNodeMargin() { +var NativeSymbol = global.Symbol; +var SymbolPrototype = NativeSymbol && NativeSymbol.prototype; - function processSingleMargins(node, currentMargin) { - if (node.marginLeft || node.marginTop || node.marginRight || node.marginBottom) { - return [ - node.marginLeft || currentMargin[0] || 0, - node.marginTop || currentMargin[1] || 0, - node.marginRight || currentMargin[2] || 0, - node.marginBottom || currentMargin[3] || 0 - ]; - } - return currentMargin; - } +if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) || + // Safari 12 bug + NativeSymbol().description !== undefined +)) { + var EmptyStringDescriptionStore = {}; + // wrap Symbol constructor for correct work with undefined description + var SymbolWrapper = function Symbol() { + var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]); + var result = isPrototypeOf(SymbolPrototype, this) + ? new NativeSymbol(description) + // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)' + : description === undefined ? NativeSymbol() : NativeSymbol(description); + if (description === '') EmptyStringDescriptionStore[result] = true; + return result; + }; - function flattenStyleArray(styleArray) { - var flattenedStyles = {}; - for (var i = styleArray.length - 1; i >= 0; i--) { - var styleName = styleArray[i]; - var style = self.styleStack.styleDictionary[styleName]; - for (var key in style) { - if (style.hasOwnProperty(key)) { - flattenedStyles[key] = style[key]; - } - } - } - return flattenedStyles; - } + copyConstructorProperties(SymbolWrapper, NativeSymbol); + SymbolWrapper.prototype = SymbolPrototype; + SymbolPrototype.constructor = SymbolWrapper; - function convertMargin(margin) { - if (isNumber(margin)) { - margin = [margin, margin, margin, margin]; - } else if (isArray(margin)) { - if (margin.length === 2) { - margin = [margin[0], margin[1], margin[0], margin[1]]; - } - } - return margin; - } + var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)'; + var symbolToString = uncurryThis(SymbolPrototype.toString); + var symbolValueOf = uncurryThis(SymbolPrototype.valueOf); + var regexp = /^Symbol\((.*)\)[^)]+$/; + var replace = uncurryThis(''.replace); + var stringSlice = uncurryThis(''.slice); - var margin = [undefined, undefined, undefined, undefined]; + defineProperty(SymbolPrototype, 'description', { + configurable: true, + get: function description() { + var symbol = symbolValueOf(this); + var string = symbolToString(symbol); + if (hasOwn(EmptyStringDescriptionStore, symbol)) return ''; + var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1'); + return desc === '' ? undefined : desc; + } + }); - if (node.style) { - var styleArray = isArray(node.style) ? node.style : [node.style]; - var flattenedStyleArray = flattenStyleArray(styleArray); + $({ global: true, forced: true }, { + Symbol: SymbolWrapper + }); +} - if (flattenedStyleArray) { - margin = processSingleMargins(flattenedStyleArray, margin); - } - if (flattenedStyleArray.margin) { - margin = convertMargin(flattenedStyleArray.margin); - } - } +/***/ }), - margin = processSingleMargins(node, margin); +/***/ 69330: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (node.margin) { - margin = convertMargin(node.margin); - } +var defineWellKnownSymbol = __webpack_require__(46042); - if (margin[0] === undefined && margin[1] === undefined && margin[2] === undefined && margin[3] === undefined) { - return null; - } else { - return margin; - } - } -}; +// `Symbol.iterator` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.iterator +defineWellKnownSymbol('iterator'); -DocMeasure.prototype.convertIfBase64Image = function (node) { - if (/^data:image\/(jpeg|jpg|png);base64,/.test(node.image)) { - var label = '$$pdfmake$$' + this.autoImageIndex++; - this.images[label] = node.image; - node.image = label; - } -}; -DocMeasure.prototype.measureImageWithDimensions = function (node, dimensions) { - if (node.fit) { - var factor = (dimensions.width / dimensions.height > node.fit[0] / node.fit[1]) ? node.fit[0] / dimensions.width : node.fit[1] / dimensions.height; - node._width = node._minWidth = node._maxWidth = dimensions.width * factor; - node._height = dimensions.height * factor; - } else if (node.cover) { - node._width = node._minWidth = node._maxWidth = node.cover.width; - node._height = node._minHeight = node._maxHeight = node.cover.height; - } else { - var ratio = dimensions.width / dimensions.height; +/***/ }), - node._width = node._minWidth = node._maxWidth = node.width || (node.height ? (node.height * ratio) : dimensions.width); - node._height = node.height || (node.width ? node.width / ratio : dimensions.height); +/***/ 65292: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (isNumber(node.maxWidth) && node.maxWidth < node._width) { - node._width = node._minWidth = node._maxWidth = node.maxWidth; - node._height = node._width * dimensions.height / dimensions.width; - } +"use strict"; - if (isNumber(node.maxHeight) && node.maxHeight < node._height) { - node._height = node.maxHeight; - node._width = node._minWidth = node._maxWidth = node._height * dimensions.width / dimensions.height; - } +var $ = __webpack_require__(56475); +var global = __webpack_require__(32010); +var getBuiltIn = __webpack_require__(38486); +var apply = __webpack_require__(58448); +var call = __webpack_require__(2834); +var uncurryThis = __webpack_require__(38347); +var IS_PURE = __webpack_require__(63432); +var DESCRIPTORS = __webpack_require__(15567); +var NATIVE_SYMBOL = __webpack_require__(46887); +var fails = __webpack_require__(47044); +var hasOwn = __webpack_require__(20340); +var isArray = __webpack_require__(59113); +var isCallable = __webpack_require__(94578); +var isObject = __webpack_require__(24517); +var isPrototypeOf = __webpack_require__(70176); +var isSymbol = __webpack_require__(46290); +var anObject = __webpack_require__(34984); +var toObject = __webpack_require__(43162); +var toIndexedObject = __webpack_require__(98086); +var toPropertyKey = __webpack_require__(63918); +var $toString = __webpack_require__(25096); +var createPropertyDescriptor = __webpack_require__(97841); +var nativeObjectCreate = __webpack_require__(10819); +var objectKeys = __webpack_require__(84675); +var getOwnPropertyNamesModule = __webpack_require__(6611); +var getOwnPropertyNamesExternal = __webpack_require__(8807); +var getOwnPropertySymbolsModule = __webpack_require__(61146); +var getOwnPropertyDescriptorModule = __webpack_require__(72062); +var definePropertyModule = __webpack_require__(95892); +var propertyIsEnumerableModule = __webpack_require__(55574); +var arraySlice = __webpack_require__(73163); +var redefine = __webpack_require__(13711); +var shared = __webpack_require__(464); +var sharedKey = __webpack_require__(82194); +var hiddenKeys = __webpack_require__(90682); +var uid = __webpack_require__(46859); +var wellKnownSymbol = __webpack_require__(38688); +var wrappedWellKnownSymbolModule = __webpack_require__(75960); +var defineWellKnownSymbol = __webpack_require__(46042); +var setToStringTag = __webpack_require__(15216); +var InternalStateModule = __webpack_require__(70172); +var $forEach = (__webpack_require__(91102).forEach); - if (isNumber(node.minWidth) && node.minWidth > node._width) { - node._width = node._minWidth = node._maxWidth = node.minWidth; - node._height = node._width * dimensions.height / dimensions.width; - } +var HIDDEN = sharedKey('hidden'); +var SYMBOL = 'Symbol'; +var PROTOTYPE = 'prototype'; +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); - if (isNumber(node.minHeight) && node.minHeight > node._height) { - node._height = node.minHeight; - node._width = node._minWidth = node._maxWidth = node._height * dimensions.width / dimensions.height; - } - } +var setInternalState = InternalStateModule.set; +var getInternalState = InternalStateModule.getterFor(SYMBOL); - node._alignment = this.styleStack.getProperty('alignment'); -}; +var ObjectPrototype = Object[PROTOTYPE]; +var $Symbol = global.Symbol; +var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE]; +var TypeError = global.TypeError; +var QObject = global.QObject; +var $stringify = getBuiltIn('JSON', 'stringify'); +var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f; +var nativeDefineProperty = definePropertyModule.f; +var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f; +var nativePropertyIsEnumerable = propertyIsEnumerableModule.f; +var push = uncurryThis([].push); -DocMeasure.prototype.measureImage = function (node) { - if (this.images) { - this.convertIfBase64Image(node); - } +var AllSymbols = shared('symbols'); +var ObjectPrototypeSymbols = shared('op-symbols'); +var StringToSymbolRegistry = shared('string-to-symbol-registry'); +var SymbolToStringRegistry = shared('symbol-to-string-registry'); +var WellKnownSymbolsStore = shared('wks'); - var dimensions = this.imageMeasure.measureImage(node.image); +// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173 +var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild; - this.measureImageWithDimensions(node, dimensions); +// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687 +var setSymbolDescriptor = DESCRIPTORS && fails(function () { + return nativeObjectCreate(nativeDefineProperty({}, 'a', { + get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; } + })).a != 7; +}) ? function (O, P, Attributes) { + var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P); + if (ObjectPrototypeDescriptor) delete ObjectPrototype[P]; + nativeDefineProperty(O, P, Attributes); + if (ObjectPrototypeDescriptor && O !== ObjectPrototype) { + nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor); + } +} : nativeDefineProperty; - return node; +var wrap = function (tag, description) { + var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype); + setInternalState(symbol, { + type: SYMBOL, + tag: tag, + description: description + }); + if (!DESCRIPTORS) symbol.description = description; + return symbol; }; -DocMeasure.prototype.measureSVG = function (node) { +var $defineProperty = function defineProperty(O, P, Attributes) { + if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes); + anObject(O); + var key = toPropertyKey(P); + anObject(Attributes); + if (hasOwn(AllSymbols, key)) { + if (!Attributes.enumerable) { + if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {})); + O[HIDDEN][key] = true; + } else { + if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false; + Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) }); + } return setSymbolDescriptor(O, key, Attributes); + } return nativeDefineProperty(O, key, Attributes); +}; - var dimensions = this.svgMeasure.measureSVG(node.svg); +var $defineProperties = function defineProperties(O, Properties) { + anObject(O); + var properties = toIndexedObject(Properties); + var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties)); + $forEach(keys, function (key) { + if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]); + }); + return O; +}; - this.measureImageWithDimensions(node, dimensions); +var $create = function create(O, Properties) { + return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties); +}; - node.font = this.styleStack.getProperty('font'); +var $propertyIsEnumerable = function propertyIsEnumerable(V) { + var P = toPropertyKey(V); + var enumerable = call(nativePropertyIsEnumerable, this, P); + if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false; + return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P] + ? enumerable : true; +}; - // SVG requires a defined width and height - if (!isNumber(node._width) && !isNumber(node._height)) { - throw new Error('SVG is missing defined width and height.'); - } else if (!isNumber(node._width)) { - throw new Error('SVG is missing defined width.'); - } else if (!isNumber(node._height)) { - throw new Error('SVG is missing defined height.'); - } +var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) { + var it = toIndexedObject(O); + var key = toPropertyKey(P); + if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return; + var descriptor = nativeGetOwnPropertyDescriptor(it, key); + if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) { + descriptor.enumerable = true; + } + return descriptor; +}; - // scale SVG based on final dimension - node.svg = this.svgMeasure.writeDimensions(node.svg, { - width: node._width, - height: node._height - }); +var $getOwnPropertyNames = function getOwnPropertyNames(O) { + var names = nativeGetOwnPropertyNames(toIndexedObject(O)); + var result = []; + $forEach(names, function (key) { + if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key); + }); + return result; +}; - return node; +var $getOwnPropertySymbols = function getOwnPropertySymbols(O) { + var IS_OBJECT_PROTOTYPE = O === ObjectPrototype; + var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O)); + var result = []; + $forEach(names, function (key) { + if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) { + push(result, AllSymbols[key]); + } + }); + return result; }; -DocMeasure.prototype.measureLeaf = function (node) { +// `Symbol` constructor +// https://tc39.es/ecma262/#sec-symbol-constructor +if (!NATIVE_SYMBOL) { + $Symbol = function Symbol() { + if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor'); + var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]); + var tag = uid(description); + var setter = function (value) { + if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value); + if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false; + setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value)); + }; + if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter }); + return wrap(tag, description); + }; - if (node._textRef && node._textRef._textNodeRef.text) { - node.text = node._textRef._textNodeRef.text; - } + SymbolPrototype = $Symbol[PROTOTYPE]; - // Make sure style properties of the node itself are considered when building inlines. - // We could also just pass [node] to buildInlines, but that fails for bullet points. - var styleStack = this.styleStack.clone(); - styleStack.push(node); + redefine(SymbolPrototype, 'toString', function toString() { + return getInternalState(this).tag; + }); - var data = this.textTools.buildInlines(node.text, styleStack); + redefine($Symbol, 'withoutSetter', function (description) { + return wrap(uid(description), description); + }); - node._inlines = data.items; - node._minWidth = data.minWidth; - node._maxWidth = data.maxWidth; + propertyIsEnumerableModule.f = $propertyIsEnumerable; + definePropertyModule.f = $defineProperty; + getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor; + getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames; + getOwnPropertySymbolsModule.f = $getOwnPropertySymbols; - return node; -}; + wrappedWellKnownSymbolModule.f = function (name) { + return wrap(wellKnownSymbol(name), name); + }; -DocMeasure.prototype.measureToc = function (node) { - if (node.toc.title) { - node.toc.title = this.measureNode(node.toc.title); - } + if (DESCRIPTORS) { + // https://github.com/tc39/proposal-Symbol-description + nativeDefineProperty(SymbolPrototype, 'description', { + configurable: true, + get: function description() { + return getInternalState(this).description; + } + }); + if (!IS_PURE) { + redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); + } + } +} - if (node.toc._items.length > 0) { - var body = []; - var textStyle = node.toc.textStyle || {}; - var numberStyle = node.toc.numberStyle || textStyle; - var textMargin = node.toc.textMargin || [0, 0, 0, 0]; - for (var i = 0, l = node.toc._items.length; i < l; i++) { - var item = node.toc._items[i]; - var lineStyle = item._textNodeRef.tocStyle || textStyle; - var lineMargin = item._textNodeRef.tocMargin || textMargin; - var lineNumberStyle = item._textNodeRef.tocNumberStyle || numberStyle; - var destination = getNodeId(item._nodeRef); - body.push([ - { text: item._textNodeRef.text, linkToDestination: destination, alignment: 'left', style: lineStyle, margin: lineMargin }, - { text: '00000', linkToDestination: destination, alignment: 'right', _tocItemRef: item._nodeRef, style: lineNumberStyle, margin: [0, lineMargin[1], 0, lineMargin[3]] } - ]); - } +$({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, { + Symbol: $Symbol +}); +$forEach(objectKeys(WellKnownSymbolsStore), function (name) { + defineWellKnownSymbol(name); +}); - node.toc._table = { - table: { - dontBreakRows: true, - widths: ['*', 'auto'], - body: body - }, - layout: 'noBorders' - }; +$({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, { + // `Symbol.for` method + // https://tc39.es/ecma262/#sec-symbol.for + 'for': function (key) { + var string = $toString(key); + if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; + var symbol = $Symbol(string); + StringToSymbolRegistry[string] = symbol; + SymbolToStringRegistry[symbol] = string; + return symbol; + }, + // `Symbol.keyFor` method + // https://tc39.es/ecma262/#sec-symbol.keyfor + keyFor: function keyFor(sym) { + if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol'); + if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; + }, + useSetter: function () { USE_SETTER = true; }, + useSimple: function () { USE_SETTER = false; } +}); + +$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, { + // `Object.create` method + // https://tc39.es/ecma262/#sec-object.create + create: $create, + // `Object.defineProperty` method + // https://tc39.es/ecma262/#sec-object.defineproperty + defineProperty: $defineProperty, + // `Object.defineProperties` method + // https://tc39.es/ecma262/#sec-object.defineproperties + defineProperties: $defineProperties, + // `Object.getOwnPropertyDescriptor` method + // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors + getOwnPropertyDescriptor: $getOwnPropertyDescriptor +}); + +$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, { + // `Object.getOwnPropertyNames` method + // https://tc39.es/ecma262/#sec-object.getownpropertynames + getOwnPropertyNames: $getOwnPropertyNames, + // `Object.getOwnPropertySymbols` method + // https://tc39.es/ecma262/#sec-object.getownpropertysymbols + getOwnPropertySymbols: $getOwnPropertySymbols +}); + +// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives +// https://bugs.chromium.org/p/v8/issues/detail?id=3443 +$({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, { + getOwnPropertySymbols: function getOwnPropertySymbols(it) { + return getOwnPropertySymbolsModule.f(toObject(it)); + } +}); + +// `JSON.stringify` method behavior with symbols +// https://tc39.es/ecma262/#sec-json.stringify +if ($stringify) { + var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () { + var symbol = $Symbol(); + // MS Edge converts symbol values to JSON as {} + return $stringify([symbol]) != '[null]' + // WebKit converts symbol values to JSON as null + || $stringify({ a: symbol }) != '{}' + // V8 throws on boxed symbols + || $stringify(Object(symbol)) != '{}'; + }); + + $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, { + // eslint-disable-next-line no-unused-vars -- required for `.length` + stringify: function stringify(it, replacer, space) { + var args = arraySlice(arguments); + var $replacer = replacer; + if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined + if (!isArray(replacer)) replacer = function (key, value) { + if (isCallable($replacer)) value = call($replacer, this, key, value); + if (!isSymbol(value)) return value; + }; + args[1] = replacer; + return apply($stringify, null, args); + } + }); +} - node.toc._table = this.measureNode(node.toc._table); - } +// `Symbol.prototype[@@toPrimitive]` method +// https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive +if (!SymbolPrototype[TO_PRIMITIVE]) { + var valueOf = SymbolPrototype.valueOf; + // eslint-disable-next-line no-unused-vars -- required for .length + redefine(SymbolPrototype, TO_PRIMITIVE, function (hint) { + // TODO: improve hint logic + return call(valueOf, this); + }); +} +// `Symbol.prototype[@@toStringTag]` property +// https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag +setToStringTag($Symbol, SYMBOL); - return node; -}; +hiddenKeys[HIDDEN] = true; -DocMeasure.prototype.measureVerticalContainer = function (node) { - var items = node.stack; - node._minWidth = 0; - node._maxWidth = 0; +/***/ }), - for (var i = 0, l = items.length; i < l; i++) { - items[i] = this.measureNode(items[i]); +/***/ 5597: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - node._minWidth = Math.max(node._minWidth, items[i]._minWidth); - node._maxWidth = Math.max(node._maxWidth, items[i]._maxWidth); - } +var defineWellKnownSymbol = __webpack_require__(46042); - return node; -}; +// `Symbol.toPrimitive` well-known symbol +// https://tc39.es/ecma262/#sec-symbol.toprimitive +defineWellKnownSymbol('toPrimitive'); -DocMeasure.prototype.gapSizeForList = function () { - return this.textTools.sizeOfString('9. ', this.styleStack); -}; -DocMeasure.prototype.buildUnorderedMarker = function (item, styleStack, gapSize, type) { - function buildDisc(gapSize, color) { - // TODO: ascender-based calculations - var radius = gapSize.fontSize / 6; - return { - canvas: [{ - x: radius, - y: (gapSize.height / gapSize.lineHeight) + gapSize.descender - gapSize.fontSize / 3, - r1: radius, - r2: radius, - type: 'ellipse', - color: color - }] - }; - } +/***/ }), - function buildSquare(gapSize, color) { - // TODO: ascender-based calculations - var size = gapSize.fontSize / 3; - return { - canvas: [{ - x: 0, - y: (gapSize.height / gapSize.lineHeight) + gapSize.descender - (gapSize.fontSize / 3) - (size / 2), - h: size, - w: size, - type: 'rect', - color: color - }] - }; - } +/***/ 73663: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - function buildCircle(gapSize, color) { - // TODO: ascender-based calculations - var radius = gapSize.fontSize / 6; - return { - canvas: [{ - x: radius, - y: (gapSize.height / gapSize.lineHeight) + gapSize.descender - gapSize.fontSize / 3, - r1: radius, - r2: radius, - type: 'ellipse', - lineColor: color - }] - }; - } +"use strict"; - var marker; - var color = TextTools.getStyleProperty(item, styleStack, 'markerColor', undefined) || styleStack.getProperty('color') || 'black'; +var uncurryThis = __webpack_require__(38347); +var ArrayBufferViewCore = __webpack_require__(59754); +var $ArrayCopyWithin = __webpack_require__(92642); - switch (type) { - case 'circle': - marker = buildCircle(gapSize, color); - break; +var u$ArrayCopyWithin = uncurryThis($ArrayCopyWithin); +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - case 'square': - marker = buildSquare(gapSize, color); - break; +// `%TypedArray%.prototype.copyWithin` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.copywithin +exportTypedArrayMethod('copyWithin', function copyWithin(target, start /* , end */) { + return u$ArrayCopyWithin(aTypedArray(this), target, start, arguments.length > 2 ? arguments[2] : undefined); +}); - case 'none': - marker = {}; - break; - case 'disc': - default: - marker = buildDisc(gapSize, color); - break; - } +/***/ }), - marker._minWidth = marker._maxWidth = gapSize.width; - marker._minHeight = marker._maxHeight = gapSize.height; +/***/ 29883: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return marker; -}; +"use strict"; -DocMeasure.prototype.buildOrderedMarker = function (item, counter, styleStack, type, separator) { - function prepareAlpha(counter) { - function toAlpha(num) { - return (num >= 26 ? toAlpha((num / 26 >> 0) - 1) : '') + 'abcdefghijklmnopqrstuvwxyz'[num % 26 >> 0]; - } +var ArrayBufferViewCore = __webpack_require__(59754); +var $every = (__webpack_require__(91102).every); - if (counter < 1) { - return counter.toString(); - } +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - return toAlpha(counter - 1); - } +// `%TypedArray%.prototype.every` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.every +exportTypedArrayMethod('every', function every(callbackfn /* , thisArg */) { + return $every(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); +}); - function prepareRoman(counter) { - if (counter < 1 || counter > 4999) { - return counter.toString(); - } - var num = counter; - var lookup = { M: 1000, CM: 900, D: 500, CD: 400, C: 100, XC: 90, L: 50, XL: 40, X: 10, IX: 9, V: 5, IV: 4, I: 1 }, roman = '', i; - for (i in lookup) { - while (num >= lookup[i]) { - roman += i; - num -= lookup[i]; - } - } - return roman; - } - function prepareDecimal(counter) { - return counter.toString(); - } +/***/ }), - var counterText; - switch (type) { - case 'none': - counterText = null; - break; +/***/ 35471: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - case 'upper-alpha': - counterText = prepareAlpha(counter).toUpperCase(); - break; +"use strict"; - case 'lower-alpha': - counterText = prepareAlpha(counter); - break; +var ArrayBufferViewCore = __webpack_require__(59754); +var call = __webpack_require__(2834); +var $fill = __webpack_require__(72864); - case 'upper-roman': - counterText = prepareRoman(counter); - break; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - case 'lower-roman': - counterText = prepareRoman(counter).toLowerCase(); - break; +// `%TypedArray%.prototype.fill` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.fill +exportTypedArrayMethod('fill', function fill(value /* , start, end */) { + var length = arguments.length; + return call( + $fill, + aTypedArray(this), + value, + length > 1 ? arguments[1] : undefined, + length > 2 ? arguments[2] : undefined + ); +}); - case 'decimal': - default: - counterText = prepareDecimal(counter); - break; - } - if (counterText === null) { - return {}; - } +/***/ }), - if (separator) { - if (isArray(separator)) { - if (separator[0]) { - counterText = separator[0] + counterText; - } +/***/ 21012: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (separator[1]) { - counterText += separator[1]; - } - counterText += ' '; - } else { - counterText += separator + ' '; - } - } +"use strict"; - var markerColor = TextTools.getStyleProperty(item, styleStack, 'markerColor', undefined) || styleStack.getProperty('color') || 'black'; - var textArray = { - text: counterText, - color: markerColor - }; +var ArrayBufferViewCore = __webpack_require__(59754); +var $filter = (__webpack_require__(91102).filter); +var fromSpeciesAndList = __webpack_require__(59610); - return { _inlines: this.textTools.buildInlines(textArray, styleStack).items }; -}; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -DocMeasure.prototype.measureUnorderedList = function (node) { - var style = this.styleStack.clone(); - var items = node.ul; - node.type = node.type || 'disc'; - node._gapSize = this.gapSizeForList(); - node._minWidth = 0; - node._maxWidth = 0; +// `%TypedArray%.prototype.filter` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.filter +exportTypedArrayMethod('filter', function filter(callbackfn /* , thisArg */) { + var list = $filter(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); + return fromSpeciesAndList(this, list); +}); - for (var i = 0, l = items.length; i < l; i++) { - var item = items[i] = this.measureNode(items[i]); - if (!item.ol && !item.ul) { - item.listMarker = this.buildUnorderedMarker(item, style, node._gapSize, item.listType || node.type); - } +/***/ }), - node._minWidth = Math.max(node._minWidth, items[i]._minWidth + node._gapSize.width); - node._maxWidth = Math.max(node._maxWidth, items[i]._maxWidth + node._gapSize.width); - } +/***/ 97464: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return node; -}; +"use strict"; -DocMeasure.prototype.measureOrderedList = function (node) { - var style = this.styleStack.clone(); - var items = node.ol; - node.type = node.type || 'decimal'; - node.separator = node.separator || '.'; - node.reversed = node.reversed || false; - if (!isNumber(node.start)) { - node.start = node.reversed ? items.length : 1; - } - node._gapSize = this.gapSizeForList(); - node._minWidth = 0; - node._maxWidth = 0; +var ArrayBufferViewCore = __webpack_require__(59754); +var $findIndex = (__webpack_require__(91102).findIndex); - var counter = node.start; - for (var i = 0, l = items.length; i < l; i++) { - var item = items[i] = this.measureNode(items[i]); +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - if (!item.ol && !item.ul) { - var counterValue = isNumber(item.counter) ? item.counter : counter; - item.listMarker = this.buildOrderedMarker(item, counterValue, style, item.listType || node.type, node.separator); - if (item.listMarker._inlines) { - node._gapSize.width = Math.max(node._gapSize.width, item.listMarker._inlines[0].width); - } +// `%TypedArray%.prototype.findIndex` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.findindex +exportTypedArrayMethod('findIndex', function findIndex(predicate /* , thisArg */) { + return $findIndex(aTypedArray(this), predicate, arguments.length > 1 ? arguments[1] : undefined); +}); - if (node.reversed) { - counter--; - } else { - counter++; - } - } - node._minWidth = Math.max(node._minWidth, items[i]._minWidth); - node._maxWidth = Math.max(node._maxWidth, items[i]._maxWidth); - } +/***/ }), - node._minWidth += node._gapSize.width; - node._maxWidth += node._gapSize.width; +/***/ 88997: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - for (var i = 0, l = items.length; i < l; i++) { - var item = items[i]; - if (!item.ol && !item.ul) { - item.listMarker._minWidth = item.listMarker._maxWidth = node._gapSize.width; - } - } +"use strict"; - return node; -}; +var ArrayBufferViewCore = __webpack_require__(59754); +var $find = (__webpack_require__(91102).find); -DocMeasure.prototype.measureColumns = function (node) { - var columns = node.columns; - node._gap = this.styleStack.getProperty('columnGap') || 0; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - for (var i = 0, l = columns.length; i < l; i++) { - columns[i] = this.measureNode(columns[i]); - } +// `%TypedArray%.prototype.find` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.find +exportTypedArrayMethod('find', function find(predicate /* , thisArg */) { + return $find(aTypedArray(this), predicate, arguments.length > 1 ? arguments[1] : undefined); +}); - var measures = ColumnCalculator.measureMinMax(columns); - var numGaps = (columns.length > 0) ? (columns.length - 1) : 0; - node._minWidth = measures.min + node._gap * numGaps; - node._maxWidth = measures.max + node._gap * numGaps; +/***/ }), - return node; -}; +/***/ 3131: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -DocMeasure.prototype.measureTable = function (node) { - extendTableWidths(node); - node._layout = getLayout(this.tableLayouts); - node._offsets = getOffsets(node._layout); +var createTypedArrayConstructor = __webpack_require__(98828); - var colSpans = []; - var col, row, cols, rows; +// `Float32Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Float32', function (init) { + return function Float32Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - for (col = 0, cols = node.table.body[0].length; col < cols; col++) { - var c = node.table.widths[col]; - c._minWidth = 0; - c._maxWidth = 0; - for (row = 0, rows = node.table.body.length; row < rows; row++) { - var rowData = node.table.body[row]; - var data = rowData[col]; - if (data === undefined) { - console.error('Malformed table row ', rowData, 'in node ', node); - throw 'Malformed table row, a cell is undefined.'; - } - if (data === null) { // transform to object - data = ''; - } +/***/ }), - if (!data._span) { - data = rowData[col] = this.styleStack.auto(data, measureCb(this, data)); +/***/ 90868: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (data.colSpan && data.colSpan > 1) { - markSpans(rowData, col, data.colSpan); - colSpans.push({ col: col, span: data.colSpan, minWidth: data._minWidth, maxWidth: data._maxWidth }); - } else { - c._minWidth = Math.max(c._minWidth, data._minWidth); - c._maxWidth = Math.max(c._maxWidth, data._maxWidth); - } - } +var createTypedArrayConstructor = __webpack_require__(98828); - if (data.rowSpan && data.rowSpan > 1) { - markVSpans(node.table, row, col, data.rowSpan); - } - } - } +// `Float64Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Float64', function (init) { + return function Float64Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - extendWidthsForColSpans(); - var measures = ColumnCalculator.measureMinMax(node.table.widths); +/***/ }), - node._minWidth = measures.min + node._offsets.total; - node._maxWidth = measures.max + node._offsets.total; +/***/ 2857: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return node; +"use strict"; - function measureCb(_this, data) { - return function () { - if (isObject(data)) { - data.fillColor = _this.styleStack.getProperty('fillColor'); - data.fillOpacity = _this.styleStack.getProperty('fillOpacity'); - } - return _this.measureNode(data); - }; - } +var ArrayBufferViewCore = __webpack_require__(59754); +var $forEach = (__webpack_require__(91102).forEach); - function getLayout(tableLayouts) { - var layout = node.layout; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - if (isString(layout)) { - layout = tableLayouts[layout]; - } +// `%TypedArray%.prototype.forEach` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.foreach +exportTypedArrayMethod('forEach', function forEach(callbackfn /* , thisArg */) { + $forEach(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); +}); - var defaultLayout = { - hLineWidth: function (i, node) { - return 1; - }, - vLineWidth: function (i, node) { - return 1; - }, - hLineColor: function (i, node) { - return 'black'; - }, - vLineColor: function (i, node) { - return 'black'; - }, - hLineStyle: function (i, node) { - return null; - }, - vLineStyle: function (i, node) { - return null; - }, - paddingLeft: function (i, node) { - return 4; - }, - paddingRight: function (i, node) { - return 4; - }, - paddingTop: function (i, node) { - return 2; - }, - paddingBottom: function (i, node) { - return 2; - }, - fillColor: function (i, node) { - return null; - }, - fillOpacity: function (i, node) { - return 1; - }, - defaultBorder: true - }; - return pack(defaultLayout, layout); - } +/***/ }), - function getOffsets(layout) { - var offsets = []; - var totalOffset = 0; - var prevRightPadding = 0; +/***/ 83326: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - for (var i = 0, l = node.table.widths.length; i < l; i++) { - var lOffset = prevRightPadding + layout.vLineWidth(i, node) + layout.paddingLeft(i, node); - offsets.push(lOffset); - totalOffset += lOffset; - prevRightPadding = layout.paddingRight(i, node); - } +"use strict"; - totalOffset += prevRightPadding + layout.vLineWidth(node.table.widths.length, node); +var TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS = __webpack_require__(28834); +var exportTypedArrayStaticMethod = (__webpack_require__(59754).exportTypedArrayStaticMethod); +var typedArrayFrom = __webpack_require__(83590); - return { - total: totalOffset, - offsets: offsets - }; - } +// `%TypedArray%.from` method +// https://tc39.es/ecma262/#sec-%typedarray%.from +exportTypedArrayStaticMethod('from', typedArrayFrom, TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS); - function extendWidthsForColSpans() { - var q, j; - for (var i = 0, l = colSpans.length; i < l; i++) { - var span = colSpans[i]; +/***/ }), - var currentMinMax = getMinMax(span.col, span.span, node._offsets); - var minDifference = span.minWidth - currentMinMax.minWidth; - var maxDifference = span.maxWidth - currentMinMax.maxWidth; +/***/ 94715: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (minDifference > 0) { - q = minDifference / span.span; +"use strict"; - for (j = 0; j < span.span; j++) { - node.table.widths[span.col + j]._minWidth += q; - } - } +var ArrayBufferViewCore = __webpack_require__(59754); +var $includes = (__webpack_require__(12636).includes); - if (maxDifference > 0) { - q = maxDifference / span.span; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - for (j = 0; j < span.span; j++) { - node.table.widths[span.col + j]._maxWidth += q; - } - } - } - } +// `%TypedArray%.prototype.includes` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.includes +exportTypedArrayMethod('includes', function includes(searchElement /* , fromIndex */) { + return $includes(aTypedArray(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); +}); - function getMinMax(col, span, offsets) { - var result = { minWidth: 0, maxWidth: 0 }; - for (var i = 0; i < span; i++) { - result.minWidth += node.table.widths[col + i]._minWidth + (i ? offsets.offsets[col + i] : 0); - result.maxWidth += node.table.widths[col + i]._maxWidth + (i ? offsets.offsets[col + i] : 0); - } +/***/ }), - return result; - } +/***/ 13624: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - function markSpans(rowData, col, span) { - for (var i = 1; i < span; i++) { - rowData[col + i] = { - _span: true, - _minWidth: 0, - _maxWidth: 0, - rowSpan: rowData[col].rowSpan - }; - } - } +"use strict"; - function markVSpans(table, row, col, span) { - for (var i = 1; i < span; i++) { - table.body[row + i][col] = { - _span: true, - _minWidth: 0, - _maxWidth: 0, - fillColor: table.body[row][col].fillColor, - fillOpacity: table.body[row][col].fillOpacity - }; - } - } +var ArrayBufferViewCore = __webpack_require__(59754); +var $indexOf = (__webpack_require__(12636).indexOf); - function extendTableWidths(node) { - if (!node.table.widths) { - node.table.widths = 'auto'; - } +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - if (isString(node.table.widths)) { - node.table.widths = [node.table.widths]; +// `%TypedArray%.prototype.indexOf` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.indexof +exportTypedArrayMethod('indexOf', function indexOf(searchElement /* , fromIndex */) { + return $indexOf(aTypedArray(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); +}); - while (node.table.widths.length < node.table.body[0].length) { - node.table.widths.push(node.table.widths[node.table.widths.length - 1]); - } - } - for (var i = 0, l = node.table.widths.length; i < l; i++) { - var w = node.table.widths[i]; - if (isNumber(w) || isString(w)) { - node.table.widths[i] = { width: w }; - } - } - } -}; +/***/ }), -DocMeasure.prototype.measureCanvas = function (node) { - var w = 0, h = 0; +/***/ 75626: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - for (var i = 0, l = node.canvas.length; i < l; i++) { - var vector = node.canvas[i]; +var createTypedArrayConstructor = __webpack_require__(98828); - switch (vector.type) { - case 'ellipse': - w = Math.max(w, vector.x + vector.r1); - h = Math.max(h, vector.y + vector.r2); - break; - case 'rect': - w = Math.max(w, vector.x + vector.w); - h = Math.max(h, vector.y + vector.h); - break; - case 'line': - w = Math.max(w, vector.x1, vector.x2); - h = Math.max(h, vector.y1, vector.y2); - break; - case 'polyline': - for (var i2 = 0, l2 = vector.points.length; i2 < l2; i2++) { - w = Math.max(w, vector.points[i2].x); - h = Math.max(h, vector.points[i2].y); - } - break; - } - } +// `Int16Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Int16', function (init) { + return function Int16Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - node._minWidth = node._maxWidth = w; - node._minHeight = node._maxHeight = h; - node._alignment = this.styleStack.getProperty('alignment'); - return node; -}; +/***/ }), -DocMeasure.prototype.measureQr = function (node) { - node = qrEncoder.measure(node); - node._alignment = this.styleStack.getProperty('alignment'); - return node; -}; +/***/ 95756: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -module.exports = DocMeasure; +var createTypedArrayConstructor = __webpack_require__(98828); + +// `Int32Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Int32', function (init) { + return function Int32Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); /***/ }), -/***/ 43143: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +/***/ 65553: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -"use strict"; -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. +var createTypedArrayConstructor = __webpack_require__(98828); +// `Int8Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Int8', function (init) { + return function Int8Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); -/**/ +/***/ }), -var Buffer = (__webpack_require__(11432).Buffer); -/**/ +/***/ 91132: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var isEncoding = Buffer.isEncoding || function (encoding) { - encoding = '' + encoding; - switch (encoding && encoding.toLowerCase()) { - case 'hex':case 'utf8':case 'utf-8':case 'ascii':case 'binary':case 'base64':case 'ucs2':case 'ucs-2':case 'utf16le':case 'utf-16le':case 'raw': - return true; - default: - return false; - } -}; +"use strict"; -function _normalizeEncoding(enc) { - if (!enc) return 'utf8'; - var retried; - while (true) { - switch (enc) { - case 'utf8': - case 'utf-8': - return 'utf8'; - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return 'utf16le'; - case 'latin1': - case 'binary': - return 'latin1'; - case 'base64': - case 'ascii': - case 'hex': - return enc; - default: - if (retried) return; // undefined - enc = ('' + enc).toLowerCase(); - retried = true; - } - } -}; +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var PROPER_FUNCTION_NAME = (__webpack_require__(7081).PROPER); +var ArrayBufferViewCore = __webpack_require__(59754); +var ArrayIterators = __webpack_require__(81755); +var wellKnownSymbol = __webpack_require__(38688); -// Do not cache `Buffer.isEncoding` when checking encoding names as some -// modules monkey-patch it to support additional encodings -function normalizeEncoding(enc) { - var nenc = _normalizeEncoding(enc); - if (typeof nenc !== 'string' && (Buffer.isEncoding === isEncoding || !isEncoding(enc))) throw new Error('Unknown encoding: ' + enc); - return nenc || enc; -} +var ITERATOR = wellKnownSymbol('iterator'); +var Uint8Array = global.Uint8Array; +var arrayValues = uncurryThis(ArrayIterators.values); +var arrayKeys = uncurryThis(ArrayIterators.keys); +var arrayEntries = uncurryThis(ArrayIterators.entries); +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var nativeTypedArrayIterator = Uint8Array && Uint8Array.prototype[ITERATOR]; -// StringDecoder provides an interface for efficiently splitting a series of -// buffers into a series of JS strings without breaking apart multi-byte -// characters. -exports.I = StringDecoder; -function StringDecoder(encoding) { - this.encoding = normalizeEncoding(encoding); - var nb; - switch (this.encoding) { - case 'utf16le': - this.text = utf16Text; - this.end = utf16End; - nb = 4; - break; - case 'utf8': - this.fillLast = utf8FillLast; - nb = 4; - break; - case 'base64': - this.text = base64Text; - this.end = base64End; - nb = 3; - break; - default: - this.write = simpleWrite; - this.end = simpleEnd; - return; - } - this.lastNeed = 0; - this.lastTotal = 0; - this.lastChar = Buffer.allocUnsafe(nb); -} +var PROPER_ARRAY_VALUES_NAME = !!nativeTypedArrayIterator && nativeTypedArrayIterator.name === 'values'; -StringDecoder.prototype.write = function (buf) { - if (buf.length === 0) return ''; - var r; - var i; - if (this.lastNeed) { - r = this.fillLast(buf); - if (r === undefined) return ''; - i = this.lastNeed; - this.lastNeed = 0; - } else { - i = 0; - } - if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i); - return r || ''; +var typedArrayValues = function values() { + return arrayValues(aTypedArray(this)); }; -StringDecoder.prototype.end = utf8End; +// `%TypedArray%.prototype.entries` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.entries +exportTypedArrayMethod('entries', function entries() { + return arrayEntries(aTypedArray(this)); +}); +// `%TypedArray%.prototype.keys` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.keys +exportTypedArrayMethod('keys', function keys() { + return arrayKeys(aTypedArray(this)); +}); +// `%TypedArray%.prototype.values` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.values +exportTypedArrayMethod('values', typedArrayValues, PROPER_FUNCTION_NAME && !PROPER_ARRAY_VALUES_NAME); +// `%TypedArray%.prototype[@@iterator]` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype-@@iterator +exportTypedArrayMethod(ITERATOR, typedArrayValues, PROPER_FUNCTION_NAME && !PROPER_ARRAY_VALUES_NAME); -// Returns only complete characters in a Buffer -StringDecoder.prototype.text = utf8Text; -// Attempts to complete a partial non-UTF-8 character using bytes from a Buffer -StringDecoder.prototype.fillLast = function (buf) { - if (this.lastNeed <= buf.length) { - buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed); - return this.lastChar.toString(this.encoding, 0, this.lastTotal); - } - buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length); - this.lastNeed -= buf.length; -}; +/***/ }), -// Checks the type of a UTF-8 byte, whether it's ASCII, a leading byte, or a -// continuation byte. If an invalid byte is detected, -2 is returned. -function utf8CheckByte(byte) { - if (byte <= 0x7F) return 0;else if (byte >> 5 === 0x06) return 2;else if (byte >> 4 === 0x0E) return 3;else if (byte >> 3 === 0x1E) return 4; - return byte >> 6 === 0x02 ? -1 : -2; -} +/***/ 62514: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// Checks at most 3 bytes at the end of a Buffer in order to detect an -// incomplete multi-byte UTF-8 character. The total number of bytes (2, 3, or 4) -// needed to complete the UTF-8 character (if applicable) are returned. -function utf8CheckIncomplete(self, buf, i) { - var j = buf.length - 1; - if (j < i) return 0; - var nb = utf8CheckByte(buf[j]); - if (nb >= 0) { - if (nb > 0) self.lastNeed = nb - 1; - return nb; - } - if (--j < i || nb === -2) return 0; - nb = utf8CheckByte(buf[j]); - if (nb >= 0) { - if (nb > 0) self.lastNeed = nb - 2; - return nb; - } - if (--j < i || nb === -2) return 0; - nb = utf8CheckByte(buf[j]); - if (nb >= 0) { - if (nb > 0) { - if (nb === 2) nb = 0;else self.lastNeed = nb - 3; - } - return nb; - } - return 0; -} +"use strict"; -// Validates as many continuation bytes for a multi-byte UTF-8 character as -// needed or are available. If we see a non-continuation byte where we expect -// one, we "replace" the validated continuation bytes we've seen so far with -// a single UTF-8 replacement character ('\ufffd'), to match v8's UTF-8 decoding -// behavior. The continuation byte check is included three times in the case -// where all of the continuation bytes for a character exist in the same buffer. -// It is also done this way as a slight performance increase instead of using a -// loop. -function utf8CheckExtraBytes(self, buf, p) { - if ((buf[0] & 0xC0) !== 0x80) { - self.lastNeed = 0; - return '\ufffd'; - } - if (self.lastNeed > 1 && buf.length > 1) { - if ((buf[1] & 0xC0) !== 0x80) { - self.lastNeed = 1; - return '\ufffd'; - } - if (self.lastNeed > 2 && buf.length > 2) { - if ((buf[2] & 0xC0) !== 0x80) { - self.lastNeed = 2; - return '\ufffd'; - } - } - } -} +var ArrayBufferViewCore = __webpack_require__(59754); +var uncurryThis = __webpack_require__(38347); -// Attempts to complete a multi-byte UTF-8 character using bytes from a Buffer. -function utf8FillLast(buf) { - var p = this.lastTotal - this.lastNeed; - var r = utf8CheckExtraBytes(this, buf, p); - if (r !== undefined) return r; - if (this.lastNeed <= buf.length) { - buf.copy(this.lastChar, p, 0, this.lastNeed); - return this.lastChar.toString(this.encoding, 0, this.lastTotal); - } - buf.copy(this.lastChar, p, 0, buf.length); - this.lastNeed -= buf.length; -} +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var $join = uncurryThis([].join); -// Returns all complete UTF-8 characters in a Buffer. If the Buffer ended on a -// partial character, the character's bytes are buffered until the required -// number of bytes are available. -function utf8Text(buf, i) { - var total = utf8CheckIncomplete(this, buf, i); - if (!this.lastNeed) return buf.toString('utf8', i); - this.lastTotal = total; - var end = buf.length - (total - this.lastNeed); - buf.copy(this.lastChar, 0, end); - return buf.toString('utf8', i, end); -} +// `%TypedArray%.prototype.join` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.join +exportTypedArrayMethod('join', function join(separator) { + return $join(aTypedArray(this), separator); +}); -// For UTF-8, a replacement character is added when ending on a partial -// character. -function utf8End(buf) { - var r = buf && buf.length ? this.write(buf) : ''; - if (this.lastNeed) return r + '\ufffd'; - return r; -} -// UTF-16LE typically needs two bytes per character, but even if we have an even -// number of bytes available, we need to check if we end on a leading/high -// surrogate. In that case, we need to wait for the next two bytes in order to -// decode the last character properly. -function utf16Text(buf, i) { - if ((buf.length - i) % 2 === 0) { - var r = buf.toString('utf16le', i); - if (r) { - var c = r.charCodeAt(r.length - 1); - if (c >= 0xD800 && c <= 0xDBFF) { - this.lastNeed = 2; - this.lastTotal = 4; - this.lastChar[0] = buf[buf.length - 2]; - this.lastChar[1] = buf[buf.length - 1]; - return r.slice(0, -1); - } - } - return r; - } - this.lastNeed = 1; - this.lastTotal = 2; - this.lastChar[0] = buf[buf.length - 1]; - return buf.toString('utf16le', i, buf.length - 1); -} +/***/ }), -// For UTF-16LE we do not explicitly append special replacement characters if we -// end on a partial character, we simply let v8 handle that. -function utf16End(buf) { - var r = buf && buf.length ? this.write(buf) : ''; - if (this.lastNeed) { - var end = this.lastTotal - this.lastNeed; - return r + this.lastChar.toString('utf16le', 0, end); - } - return r; -} +/***/ 24597: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -function base64Text(buf, i) { - var n = (buf.length - i) % 3; - if (n === 0) return buf.toString('base64', i); - this.lastNeed = 3 - n; - this.lastTotal = 3; - if (n === 1) { - this.lastChar[0] = buf[buf.length - 1]; - } else { - this.lastChar[0] = buf[buf.length - 2]; - this.lastChar[1] = buf[buf.length - 1]; - } - return buf.toString('base64', i, buf.length - n); -} +"use strict"; -function base64End(buf) { - var r = buf && buf.length ? this.write(buf) : ''; - if (this.lastNeed) return r + this.lastChar.toString('base64', 0, 3 - this.lastNeed); - return r; -} +var ArrayBufferViewCore = __webpack_require__(59754); +var apply = __webpack_require__(58448); +var $lastIndexOf = __webpack_require__(84320); -// Pass bytes on through for single-byte encodings (e.g. ascii, latin1, hex) -function simpleWrite(buf) { - return buf.toString(this.encoding); -} +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; + +// `%TypedArray%.prototype.lastIndexOf` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.lastindexof +exportTypedArrayMethod('lastIndexOf', function lastIndexOf(searchElement /* , fromIndex */) { + var length = arguments.length; + return apply($lastIndexOf, aTypedArray(this), length > 1 ? [searchElement, arguments[1]] : [searchElement]); +}); -function simpleEnd(buf) { - return buf && buf.length ? this.write(buf) : ''; -} /***/ }), -/***/ 43162: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 88042: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); -var requireObjectCoercible = __webpack_require__(83943); +"use strict"; -var Object = global.Object; +var ArrayBufferViewCore = __webpack_require__(59754); +var $map = (__webpack_require__(91102).map); +var typedArraySpeciesConstructor = __webpack_require__(34815); -// `ToObject` abstract operation -// https://tc39.es/ecma262/#sec-toobject -module.exports = function (argument) { - return Object(requireObjectCoercible(argument)); -}; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; + +// `%TypedArray%.prototype.map` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.map +exportTypedArrayMethod('map', function map(mapfn /* , thisArg */) { + return $map(aTypedArray(this), mapfn, arguments.length > 1 ? arguments[1] : undefined, function (O, length) { + return new (typedArraySpeciesConstructor(O))(length); + }); +}); /***/ }), -/***/ 43187: -/***/ (function(module) { +/***/ 92451: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -// a string of all valid unicode whitespaces -module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + - '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; +"use strict"; +var ArrayBufferViewCore = __webpack_require__(59754); +var $reduceRight = (__webpack_require__(32843).right); -/***/ }), +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -/***/ 43267: -/***/ (function(module) { +// `%TypedArray%.prototype.reduceRicht` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduceright +exportTypedArrayMethod('reduceRight', function reduceRight(callbackfn /* , initialValue */) { + var length = arguments.length; + return $reduceRight(aTypedArray(this), callbackfn, length, length > 1 ? arguments[1] : undefined); +}); -"use strict"; -module.exports = /*#__PURE__*/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","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"]]'); /***/ }), -/***/ 43381: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 4660: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var ArrayBufferViewCore = __webpack_require__(59754); +var $reduce = (__webpack_require__(32843).left); -var forEach = __webpack_require__(68404); -var availableTypedArrays = __webpack_require__(10821); -var callBind = __webpack_require__(26601); -var callBound = __webpack_require__(22774); -var gOPD = __webpack_require__(68109); -var getProto = __webpack_require__(87106); +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -var $toString = callBound('Object.prototype.toString'); -var hasToStringTag = __webpack_require__(26626)(); +// `%TypedArray%.prototype.reduce` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce +exportTypedArrayMethod('reduce', function reduce(callbackfn /* , initialValue */) { + var length = arguments.length; + return $reduce(aTypedArray(this), callbackfn, length, length > 1 ? arguments[1] : undefined); +}); -var g = typeof globalThis === 'undefined' ? __webpack_require__.g : globalThis; -var typedArrays = availableTypedArrays(); -var $slice = callBound('String.prototype.slice'); +/***/ }), -/** @type {(array: readonly T[], value: unknown) => number} */ -var $indexOf = callBound('Array.prototype.indexOf', true) || function indexOf(array, value) { - for (var i = 0; i < array.length; i += 1) { - if (array[i] === value) { - return i; - } - } - return -1; -}; +/***/ 44206: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -/** @typedef {import('./types').Getter} Getter */ -/** @type {import('./types').Cache} */ -var cache = { __proto__: null }; -if (hasToStringTag && gOPD && getProto) { - forEach(typedArrays, function (typedArray) { - var arr = new g[typedArray](); - if (Symbol.toStringTag in arr && getProto) { - var proto = getProto(arr); - // @ts-expect-error TS won't narrow inside a closure - var descriptor = gOPD(proto, Symbol.toStringTag); - if (!descriptor && proto) { - var superProto = getProto(proto); - // @ts-expect-error TS won't narrow inside a closure - descriptor = gOPD(superProto, Symbol.toStringTag); - } - // @ts-expect-error TODO: fix - cache['$' + typedArray] = callBind(descriptor.get); - } - }); -} else { - forEach(typedArrays, function (typedArray) { - var arr = new g[typedArray](); - var fn = arr.slice || arr.set; - if (fn) { - cache[ - /** @type {`$${import('.').TypedArrayName}`} */ ('$' + typedArray) - ] = /** @type {import('./types').BoundSlice | import('./types').BoundSet} */ ( - // @ts-expect-error TODO FIXME - callBind(fn) - ); - } - }); -} +"use strict"; -/** @type {(value: object) => false | import('.').TypedArrayName} */ -var tryTypedArrays = function tryAllTypedArrays(value) { - /** @type {ReturnType} */ var found = false; - forEach( - /** @type {Record<`\$${import('.').TypedArrayName}`, Getter>} */ (cache), - /** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */ - function (getter, typedArray) { - if (!found) { - try { - // @ts-expect-error a throw is fine here - if ('$' + getter(value) === typedArray) { - found = /** @type {import('.').TypedArrayName} */ ($slice(typedArray, 1)); - } - } catch (e) { /**/ } - } - } - ); - return found; -}; +var ArrayBufferViewCore = __webpack_require__(59754); -/** @type {(value: object) => false | import('.').TypedArrayName} */ -var trySlices = function tryAllSlices(value) { - /** @type {ReturnType} */ var found = false; - forEach( - /** @type {Record<`\$${import('.').TypedArrayName}`, Getter>} */(cache), - /** @type {(getter: Getter, name: `\$${import('.').TypedArrayName}`) => void} */ function (getter, name) { - if (!found) { - try { - // @ts-expect-error a throw is fine here - getter(value); - found = /** @type {import('.').TypedArrayName} */ ($slice(name, 1)); - } catch (e) { /**/ } - } - } - ); - return found; -}; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var floor = Math.floor; -/** @type {import('.')} */ -module.exports = function whichTypedArray(value) { - if (!value || typeof value !== 'object') { return false; } - if (!hasToStringTag) { - /** @type {string} */ - var tag = $slice($toString(value), 8, -1); - if ($indexOf(typedArrays, tag) > -1) { - return tag; - } - if (tag !== 'Object') { - return false; - } - // node < 0.6 hits here on real Typed Arrays - return trySlices(value); - } - if (!gOPD) { return null; } // unknown engine - return tryTypedArrays(value); -}; +// `%TypedArray%.prototype.reverse` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reverse +exportTypedArrayMethod('reverse', function reverse() { + var that = this; + var length = aTypedArray(that).length; + var middle = floor(length / 2); + var index = 0; + var value; + while (index < middle) { + value = that[index]; + that[index++] = that[--length]; + that[length] = value; + } return that; +}); /***/ }), -/***/ 43765: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 66288: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -// Ported from https://github.com/mafintosh/pump with -// permission from the author, Mathias Buus (@mafintosh). - +var global = __webpack_require__(32010); +var ArrayBufferViewCore = __webpack_require__(59754); +var lengthOfArrayLike = __webpack_require__(45495); +var toOffset = __webpack_require__(80670); +var toObject = __webpack_require__(43162); +var fails = __webpack_require__(47044); -var eos; -function once(callback) { - var called = false; - return function () { - if (called) return; - called = true; - callback.apply(void 0, arguments); - }; -} -var _require$codes = (__webpack_require__(83797)/* .codes */ .F), - ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, - ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED; -function noop(err) { - // Rethrow the error if it exists to avoid swallowing it - if (err) throw err; -} -function isRequest(stream) { - return stream.setHeader && typeof stream.abort === 'function'; -} -function destroyer(stream, reading, writing, callback) { - callback = once(callback); - var closed = false; - stream.on('close', function () { - closed = true; - }); - if (eos === undefined) eos = __webpack_require__(12167); - eos(stream, { - readable: reading, - writable: writing - }, function (err) { - if (err) return callback(err); - closed = true; - callback(); - }); - var destroyed = false; - return function (err) { - if (closed) return; - if (destroyed) return; - destroyed = true; - - // request.destroy just do .end - .abort is what we want - if (isRequest(stream)) return stream.abort(); - if (typeof stream.destroy === 'function') return stream.destroy(); - callback(err || new ERR_STREAM_DESTROYED('pipe')); - }; -} -function call(fn) { - fn(); -} -function pipe(from, to) { - return from.pipe(to); -} -function popCallback(streams) { - if (!streams.length) return noop; - if (typeof streams[streams.length - 1] !== 'function') return noop; - return streams.pop(); -} -function pipeline() { - for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) { - streams[_key] = arguments[_key]; - } - var callback = popCallback(streams); - if (Array.isArray(streams[0])) streams = streams[0]; - if (streams.length < 2) { - throw new ERR_MISSING_ARGS('streams'); - } - var error; - var destroys = streams.map(function (stream, i) { - var reading = i < streams.length - 1; - var writing = i > 0; - return destroyer(stream, reading, writing, function (err) { - if (!error) error = err; - if (err) destroys.forEach(call); - if (reading) return; - destroys.forEach(call); - callback(error); - }); - }); - return streams.reduce(pipe); -} -module.exports = pipeline; +var RangeError = global.RangeError; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -/***/ }), +var FORCED = fails(function () { + // eslint-disable-next-line es/no-typed-arrays -- required for testing + new Int8Array(1).set({}); +}); -/***/ 43977: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +// `%TypedArray%.prototype.set` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.set +exportTypedArrayMethod('set', function set(arrayLike /* , offset */) { + aTypedArray(this); + var offset = toOffset(arguments.length > 1 ? arguments[1] : undefined, 1); + var length = this.length; + var src = toObject(arrayLike); + var len = lengthOfArrayLike(src); + var index = 0; + if (len + offset > length) throw RangeError('Wrong length'); + while (index < len) this[offset + index] = src[index++]; +}, FORCED); -var arraySlice = __webpack_require__(73163); -var floor = Math.floor; +/***/ }), -var mergeSort = function (array, comparefn) { - var length = array.length; - var middle = floor(length / 2); - return length < 8 ? insertionSort(array, comparefn) : merge( - array, - mergeSort(arraySlice(array, 0, middle), comparefn), - mergeSort(arraySlice(array, middle), comparefn), - comparefn - ); -}; +/***/ 13250: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -var insertionSort = function (array, comparefn) { - var length = array.length; - var i = 1; - var element, j; +"use strict"; - while (i < length) { - j = i; - element = array[i]; - while (j && comparefn(array[j - 1], element) > 0) { - array[j] = array[--j]; - } - if (j !== i++) array[j] = element; - } return array; -}; +var ArrayBufferViewCore = __webpack_require__(59754); +var typedArraySpeciesConstructor = __webpack_require__(34815); +var fails = __webpack_require__(47044); +var arraySlice = __webpack_require__(73163); -var merge = function (array, left, right, comparefn) { - var llength = left.length; - var rlength = right.length; - var lindex = 0; - var rindex = 0; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - while (lindex < llength || rindex < rlength) { - array[lindex + rindex] = (lindex < llength && rindex < rlength) - ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++] - : lindex < llength ? left[lindex++] : right[rindex++]; - } return array; -}; +var FORCED = fails(function () { + // eslint-disable-next-line es/no-typed-arrays -- required for testing + new Int8Array(1).slice(); +}); -module.exports = mergeSort; +// `%TypedArray%.prototype.slice` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice +exportTypedArrayMethod('slice', function slice(start, end) { + var list = arraySlice(aTypedArray(this), start, end); + var C = typedArraySpeciesConstructor(this); + var index = 0; + var length = list.length; + var result = new C(length); + while (length > index) result[index] = list[index++]; + return result; +}, FORCED); /***/ }), -/***/ 44130: -/***/ (function(module, exports, __webpack_require__) { +/***/ 3858: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var ArrayBufferViewCore = __webpack_require__(59754); +var $some = (__webpack_require__(91102).some); -__webpack_require__(39081); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(66664), __webpack_require__(4420)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var C_algo = C.algo; - var SHA256 = C_algo.SHA256; - var HMAC = C_algo.HMAC; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; - /** - * Password-Based Key Derivation Function 2 algorithm. - */ - var PBKDF2 = C_algo.PBKDF2 = Base.extend({ - /** - * Configuration options. - * - * @property {number} keySize The key size in words to generate. Default: 4 (128 bits) - * @property {Hasher} hasher The hasher to use. Default: SHA256 - * @property {number} iterations The number of iterations to perform. Default: 250000 - */ - cfg: Base.extend({ - keySize: 128 / 32, - hasher: SHA256, - iterations: 250000 - }), - /** - * Initializes a newly created key derivation function. - * - * @param {Object} cfg (Optional) The configuration options to use for the derivation. - * - * @example - * - * var kdf = CryptoJS.algo.PBKDF2.create(); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 }); - * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 }); - */ - init: function init(cfg) { - this.cfg = this.cfg.extend(cfg); - }, - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * - * @return {WordArray} The derived key. - * - * @example - * - * var key = kdf.compute(password, salt); - */ - compute: function compute(password, salt) { - // Shortcut - var cfg = this.cfg; +// `%TypedArray%.prototype.some` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.some +exportTypedArrayMethod('some', function some(callbackfn /* , thisArg */) { + return $some(aTypedArray(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); +}); - // Init HMAC - var hmac = HMAC.create(cfg.hasher, password); - // Initial values - var derivedKey = WordArray.create(); - var blockIndex = WordArray.create([0x00000001]); +/***/ }), - // Shortcuts - var derivedKeyWords = derivedKey.words; - var blockIndexWords = blockIndex.words; - var keySize = cfg.keySize; - var iterations = cfg.iterations; +/***/ 84538: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - // Generate key - while (derivedKeyWords.length < keySize) { - var block = hmac.update(salt).finalize(blockIndex); - hmac.reset(); +"use strict"; - // Shortcuts - var blockWords = block.words; - var blockWordsLength = blockWords.length; +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); +var fails = __webpack_require__(47044); +var aCallable = __webpack_require__(32631); +var internalSort = __webpack_require__(43977); +var ArrayBufferViewCore = __webpack_require__(59754); +var FF = __webpack_require__(3809); +var IE_OR_EDGE = __webpack_require__(21983); +var V8 = __webpack_require__(70091); +var WEBKIT = __webpack_require__(41731); - // Iterations - var intermediate = block; - for (var i = 1; i < iterations; i++) { - intermediate = hmac.finalize(intermediate); - hmac.reset(); +var Array = global.Array; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var Uint16Array = global.Uint16Array; +var un$Sort = Uint16Array && uncurryThis(Uint16Array.prototype.sort); - // Shortcut - var intermediateWords = intermediate.words; +// WebKit +var ACCEPT_INCORRECT_ARGUMENTS = !!un$Sort && !(fails(function () { + un$Sort(new Uint16Array(2), null); +}) && fails(function () { + un$Sort(new Uint16Array(2), {}); +})); - // XOR intermediate with block - for (var j = 0; j < blockWordsLength; j++) { - blockWords[j] ^= intermediateWords[j]; - } - } - derivedKey.concat(block); - blockIndexWords[0]++; - } - derivedKey.sigBytes = keySize * 4; - return derivedKey; - } - }); +var STABLE_SORT = !!un$Sort && !fails(function () { + // feature detection can be too slow, so check engines versions + if (V8) return V8 < 74; + if (FF) return FF < 67; + if (IE_OR_EDGE) return true; + if (WEBKIT) return WEBKIT < 602; - /** - * Computes the Password-Based Key Derivation Function 2. - * - * @param {WordArray|string} password The password. - * @param {WordArray|string} salt A salt. - * @param {Object} cfg (Optional) The configuration options to use for this computation. - * - * @return {WordArray} The derived key. - * - * @static - * - * @example - * - * var key = CryptoJS.PBKDF2(password, salt); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8 }); - * var key = CryptoJS.PBKDF2(password, salt, { keySize: 8, iterations: 1000 }); - */ - C.PBKDF2 = function (password, salt, cfg) { - return PBKDF2.create(cfg).compute(password, salt); - }; - })(); - return CryptoJS.PBKDF2; -}); + var array = new Uint16Array(516); + var expected = Array(516); + var index, mod; -/***/ }), + for (index = 0; index < 516; index++) { + mod = index % 4; + array[index] = 515 - index; + expected[index] = index - 2 * mod + 3; + } -/***/ 44206: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + un$Sort(array, function (a, b) { + return (a / 4 | 0) - (b / 4 | 0); + }); -"use strict"; + for (index = 0; index < 516; index++) { + if (array[index] !== expected[index]) return true; + } +}); -var ArrayBufferViewCore = __webpack_require__(59754); +var getSortCompare = function (comparefn) { + return function (x, y) { + if (comparefn !== undefined) return +comparefn(x, y) || 0; + // eslint-disable-next-line no-self-compare -- NaN check + if (y !== y) return -1; + // eslint-disable-next-line no-self-compare -- NaN check + if (x !== x) return 1; + if (x === 0 && y === 0) return 1 / x > 0 && 1 / y < 0 ? 1 : -1; + return x > y; + }; +}; -var aTypedArray = ArrayBufferViewCore.aTypedArray; -var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -var floor = Math.floor; +// `%TypedArray%.prototype.sort` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort +exportTypedArrayMethod('sort', function sort(comparefn) { + if (comparefn !== undefined) aCallable(comparefn); + if (STABLE_SORT) return un$Sort(this, comparefn); -// `%TypedArray%.prototype.reverse` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.reverse -exportTypedArrayMethod('reverse', function reverse() { - var that = this; - var length = aTypedArray(that).length; - var middle = floor(length / 2); - var index = 0; - var value; - while (index < middle) { - value = that[index]; - that[index++] = that[--length]; - that[length] = value; - } return that; -}); + return internalSort(aTypedArray(this), getSortCompare(comparefn)); +}, !STABLE_SORT || ACCEPT_INCORRECT_ARGUMENTS); /***/ }), -/***/ 44455: +/***/ 64793: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var aCallable = __webpack_require__(32631); -var getBuiltIn = __webpack_require__(38486); -var call = __webpack_require__(2834); -var newPromiseCapabilityModule = __webpack_require__(56614); -var perform = __webpack_require__(61900); -var iterate = __webpack_require__(80383); +var ArrayBufferViewCore = __webpack_require__(59754); +var toLength = __webpack_require__(23417); +var toAbsoluteIndex = __webpack_require__(74841); +var typedArraySpeciesConstructor = __webpack_require__(34815); -var PROMISE_ANY_ERROR = 'No one promise resolved'; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; -// `Promise.any` method -// https://tc39.es/ecma262/#sec-promise.any -$({ target: 'Promise', stat: true }, { - any: function any(iterable) { - var C = this; - var AggregateError = getBuiltIn('AggregateError'); - var capability = newPromiseCapabilityModule.f(C); - var resolve = capability.resolve; - var reject = capability.reject; - var result = perform(function () { - var promiseResolve = aCallable(C.resolve); - var errors = []; - var counter = 0; - var remaining = 1; - var alreadyResolved = false; - iterate(iterable, function (promise) { - var index = counter++; - var alreadyRejected = false; - remaining++; - call(promiseResolve, C, promise).then(function (value) { - if (alreadyRejected || alreadyResolved) return; - alreadyResolved = true; - resolve(value); - }, function (error) { - if (alreadyRejected || alreadyResolved) return; - alreadyRejected = true; - errors[index] = error; - --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR)); - }); - }); - --remaining || reject(new AggregateError(errors, PROMISE_ANY_ERROR)); - }); - if (result.error) reject(result.value); - return capability.promise; - } +// `%TypedArray%.prototype.subarray` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.subarray +exportTypedArrayMethod('subarray', function subarray(begin, end) { + var O = aTypedArray(this); + var length = O.length; + var beginIndex = toAbsoluteIndex(begin, length); + var C = typedArraySpeciesConstructor(O); + return new C( + O.buffer, + O.byteOffset + beginIndex * O.BYTES_PER_ELEMENT, + toLength((end === undefined ? length : toAbsoluteIndex(end, length)) - beginIndex) + ); }); /***/ }), -/***/ 44610: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 74202: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; +var global = __webpack_require__(32010); +var apply = __webpack_require__(58448); +var ArrayBufferViewCore = __webpack_require__(59754); +var fails = __webpack_require__(47044); +var arraySlice = __webpack_require__(73163); -var callBound = __webpack_require__(22774); -var safeRegexTest = __webpack_require__(58843); -var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/); -var hasToStringTag = __webpack_require__(26626)(); -var getProto = __webpack_require__(87106); - -var toStr = callBound('Object.prototype.toString'); -var fnToStr = callBound('Function.prototype.toString'); - -var getGeneratorFunction = __webpack_require__(93011); - -/** @type {import('.')} */ -module.exports = function isGeneratorFunction(fn) { - if (typeof fn !== 'function') { - return false; - } - if (isFnRegex(fnToStr(fn))) { - return true; - } - if (!hasToStringTag) { - var str = toStr(fn); - return str === '[object GeneratorFunction]'; - } - if (!getProto) { - return false; - } - var GeneratorFunction = getGeneratorFunction(); - return GeneratorFunction && getProto(fn) === GeneratorFunction.prototype; -}; - - -/***/ }), - -/***/ 45144: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +var Int8Array = global.Int8Array; +var aTypedArray = ArrayBufferViewCore.aTypedArray; +var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod; +var $toLocaleString = [].toLocaleString; -var fails = __webpack_require__(47044); -var createPropertyDescriptor = __webpack_require__(97841); +// iOS Safari 6.x fails here +var TO_LOCALE_STRING_BUG = !!Int8Array && fails(function () { + $toLocaleString.call(new Int8Array(1)); +}); -module.exports = !fails(function () { - var error = Error('a'); - if (!('stack' in error)) return true; - // eslint-disable-next-line es/no-object-defineproperty -- safe - Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7)); - return error.stack !== 7; +var FORCED = fails(function () { + return [1, 2].toLocaleString() != new Int8Array([1, 2]).toLocaleString(); +}) || !fails(function () { + Int8Array.prototype.toLocaleString.call([1, 2]); }); +// `%TypedArray%.prototype.toLocaleString` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tolocalestring +exportTypedArrayMethod('toLocaleString', function toLocaleString() { + return apply( + $toLocaleString, + TO_LOCALE_STRING_BUG ? arraySlice(aTypedArray(this)) : aTypedArray(this), + arraySlice(arguments) + ); +}, FORCED); + /***/ }), -/***/ 45314: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 52529: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; - - -var isFunction = (__webpack_require__(91867).isFunction); -var isObject = (__webpack_require__(91867).isObject); -var isUndefined = (__webpack_require__(91867).isUndefined); -//var isNull = require('../helpers').isNull; -var pack = (__webpack_require__(91867).pack); -var FileSaver = __webpack_require__(11394); -var saveAs = FileSaver.saveAs; - -var defaultClientFonts = { - Roboto: { - normal: 'Roboto-Regular.ttf', - bold: 'Roboto-Medium.ttf', - italics: 'Roboto-Italic.ttf', - bolditalics: 'Roboto-MediumItalic.ttf' - } -}; -var globalVfs; -var globalFonts; -var globalTableLayouts; +var exportTypedArrayMethod = (__webpack_require__(59754).exportTypedArrayMethod); +var fails = __webpack_require__(47044); +var global = __webpack_require__(32010); +var uncurryThis = __webpack_require__(38347); -function Document(docDefinition, tableLayouts, fonts, vfs) { - this.docDefinition = docDefinition; - this.tableLayouts = tableLayouts || null; - this.fonts = fonts || defaultClientFonts; - this.vfs = vfs; -} +var Uint8Array = global.Uint8Array; +var Uint8ArrayPrototype = Uint8Array && Uint8Array.prototype || {}; +var arrayToString = [].toString; +var join = uncurryThis([].join); -function canCreatePdf() { - // Ensure the browser provides the level of support needed - try { - var arr = new Uint8Array(1); - var proto = { foo: function () { return 42; } }; - Object.setPrototypeOf(proto, Uint8Array.prototype); - Object.setPrototypeOf(arr, proto); - return arr.foo() === 42; - } catch (e) { - return false; - } +if (fails(function () { arrayToString.call({}); })) { + arrayToString = function toString() { + return join(this); + }; } -Document.prototype._createDoc = function (options, cb) { - var getExtendedUrl = function (url) { - if (typeof url === 'object') { - return { url: url.url, headers: url.headers }; - } - - return { url: url, headers: {} }; - }; - - options = options || {}; - if (this.tableLayouts) { - options.tableLayouts = this.tableLayouts; - } - - var PdfPrinter = __webpack_require__(81566); - - var printer = new PdfPrinter(this.fonts); - (__webpack_require__(48181).bindFS)(this.vfs); // bind virtual file system to file system +var IS_NOT_ARRAY_METHOD = Uint8ArrayPrototype.toString != arrayToString; - if (!isFunction(cb)) { - var doc = printer.createPdfKitDocument(this.docDefinition, options); +// `%TypedArray%.prototype.toString` method +// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tostring +exportTypedArrayMethod('toString', arrayToString, IS_NOT_ARRAY_METHOD); - return doc; - } - var URLBrowserResolver = __webpack_require__(7785); - var urlResolver = new URLBrowserResolver(__webpack_require__(48181)); +/***/ }), - for (var font in this.fonts) { - if (this.fonts.hasOwnProperty(font)) { - if (this.fonts[font].normal) { - if (Array.isArray(this.fonts[font].normal)) { // TrueType Collection - var url = getExtendedUrl(this.fonts[font].normal[0]); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].normal[0] = url.url; - } else { - var url = getExtendedUrl(this.fonts[font].normal); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].normal = url.url; - } - } - if (this.fonts[font].bold) { - if (Array.isArray(this.fonts[font].bold)) { // TrueType Collection - var url = getExtendedUrl(this.fonts[font].bold[0]); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].bold[0] = url.url; - } else { - var url = getExtendedUrl(this.fonts[font].bold); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].bold = url.url; - } - } - if (this.fonts[font].italics) { - if (Array.isArray(this.fonts[font].italics)) { // TrueType Collection - var url = getExtendedUrl(this.fonts[font].italics[0]); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].italics[0] = url.url; - } else { - var url = getExtendedUrl(this.fonts[font].italics); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].italics = url.url; - } - } - if (this.fonts[font].bolditalics) { - if (Array.isArray(this.fonts[font].bolditalics)) { // TrueType Collection - var url = getExtendedUrl(this.fonts[font].bolditalics[0]); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].bolditalics[0] = url.url; - } else { - var url = getExtendedUrl(this.fonts[font].bolditalics); - urlResolver.resolve(url.url, url.headers); - this.fonts[font].bolditalics = url.url; - } - } - } - } +/***/ 47969: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (this.docDefinition.images) { - for (var image in this.docDefinition.images) { - if (this.docDefinition.images.hasOwnProperty(image)) { - var url = getExtendedUrl(this.docDefinition.images[image]); - urlResolver.resolve(url.url, url.headers); - this.docDefinition.images[image] = url.url; - } - } - } +var createTypedArrayConstructor = __webpack_require__(98828); - var _this = this; +// `Uint16Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Uint16', function (init) { + return function Uint16Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - urlResolver.resolved().then(function () { - var doc = printer.createPdfKitDocument(_this.docDefinition, options); - cb(doc); - }, function (result) { - throw result; - }); -}; +/***/ }), -Document.prototype._flushDoc = function (doc, callback) { - var chunks = []; - var result; +/***/ 59735: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - doc.on('readable', function () { - var chunk; - while ((chunk = doc.read(9007199254740991)) !== null) { - chunks.push(chunk); - } - }); - doc.on('end', function () { - result = Buffer.concat(chunks); - callback(result, doc._pdfMakePages); - }); - doc.end(); -}; +var createTypedArrayConstructor = __webpack_require__(98828); -Document.prototype._getPages = function (options, cb) { - if (!cb) { - throw '_getPages is an async method and needs a callback argument'; - } - var _this = this; +// `Uint32Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Uint32', function (init) { + return function Uint32Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - this._createDoc(options, function (doc) { - _this._flushDoc(doc, function (ignoreBuffer, pages) { - cb(pages); - }); - }); -}; -Document.prototype._bufferToBlob = function (buffer) { - var blob; - try { - blob = new Blob([buffer], { type: 'application/pdf' }); - } catch (e) { - // Old browser which can't handle it without making it an byte array (ie10) - if (e.name === 'InvalidStateError') { - var byteArray = new Uint8Array(buffer); - blob = new Blob([byteArray.buffer], { type: 'application/pdf' }); - } - } +/***/ }), - if (!blob) { - throw 'Could not generate blob'; - } +/***/ 56912: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return blob; -}; +var createTypedArrayConstructor = __webpack_require__(98828); -Document.prototype._openWindow = function () { - // we have to open the window immediately and store the reference - // otherwise popup blockers will stop us - var win = window.open('', '_blank'); - if (win === null) { - throw 'Open PDF in new window blocked by browser'; - } +// `Uint8Array` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Uint8', function (init) { + return function Uint8Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}); - return win; -}; -Document.prototype._openPdf = function (options, win) { - if (!win) { - win = this._openWindow(); - } - try { - this.getBlob(function (result) { - var urlCreator = window.URL || window.webkitURL; - var pdfUrl = urlCreator.createObjectURL(result); - win.location.href = pdfUrl; +/***/ }), - /* temporarily disabled - if (win !== window) { - setTimeout(function () { - if (isNull(win.window)) { // is closed by AdBlock - window.location.href = pdfUrl; // open in actual window - } - }, 500); - } - */ - }, options); - } catch (e) { - win.close(); - throw e; - } -}; +/***/ 58099: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -Document.prototype.open = function (options, win) { - options = options || {}; - options.autoPrint = false; - win = win || null; +var createTypedArrayConstructor = __webpack_require__(98828); - this._openPdf(options, win); -}; +// `Uint8ClampedArray` constructor +// https://tc39.es/ecma262/#sec-typedarray-objects +createTypedArrayConstructor('Uint8', function (init) { + return function Uint8ClampedArray(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; +}, true); -Document.prototype.print = function (options, win) { - options = options || {}; - options.autoPrint = true; - win = win || null; +/***/ }), - this._openPdf(options, win); -}; +/***/ 84151: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -/** - * download(defaultFileName = 'file.pdf', cb = null, options = {}) - * or - * download(cb, options = {}) - */ -Document.prototype.download = function (defaultFileName, cb, options) { - if (isFunction(defaultFileName)) { - if (!isUndefined(cb)) { - options = cb; - } - cb = defaultFileName; - defaultFileName = null; - } +// TODO: Remove from `core-js@4` +__webpack_require__(94910); - defaultFileName = defaultFileName || 'file.pdf'; - this.getBlob(function (result) { - saveAs(result, defaultFileName); - if (isFunction(cb)) { - cb(); - } - }, options); -}; +/***/ }), -Document.prototype.getBase64 = function (cb, options) { - if (!cb) { - throw 'getBase64 is an async method and needs a callback argument'; - } - this.getBuffer(function (buffer) { - cb(buffer.toString('base64')); - }, options); -}; +/***/ 49109: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { -Document.prototype.getDataUrl = function (cb, options) { - if (!cb) { - throw 'getDataUrl is an async method and needs a callback argument'; - } - this.getBuffer(function (buffer) { - cb('data:application/pdf;base64,' + buffer.toString('base64')); - }, options); -}; +// TODO: Remove from `core-js@4` +__webpack_require__(64384); -Document.prototype.getBlob = function (cb, options) { - if (!cb) { - throw 'getBlob is an async method and needs a callback argument'; - } - var that = this; - this.getBuffer(function (result) { - var blob = that._bufferToBlob(result); - cb(blob); - }, options); -}; -Document.prototype.getBuffer = function (cb, options) { - if (!cb) { - throw 'getBuffer is an async method and needs a callback argument'; - } +/***/ }), - var _this = this; +/***/ 98443: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - this._createDoc(options, function (doc) { - _this._flushDoc(doc, function (buffer) { - cb(buffer); - }); - }); -}; +// TODO: Remove from `core-js@4` +__webpack_require__(77074); -Document.prototype.getStream = function (options, cb) { - if (!isFunction(cb)) { - var doc = this._createDoc(options); - return doc; - } - this._createDoc(options, function (doc) { - cb(doc); - }); -}; +/***/ }), -module.exports = { - createPdf: function (docDefinition, tableLayouts, fonts, vfs) { - if (!isObject(docDefinition)) { - throw new Error("Parameter 'docDefinition' has an invalid type. Object expected."); - } +/***/ 67858: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - if (!canCreatePdf()) { - throw 'Your browser does not provide the level of support needed'; - } - return new Document( - docDefinition, - tableLayouts || globalTableLayouts || __webpack_require__.g.pdfMake.tableLayouts, - fonts || globalFonts || __webpack_require__.g.pdfMake.fonts, - vfs || globalVfs || __webpack_require__.g.pdfMake.vfs - ); - }, - addVirtualFileSystem: function (vfs) { - globalVfs = vfs; - }, - addFonts: function (fonts) { - globalFonts = pack(globalFonts, fonts); - }, - setFonts: function (fonts) { - globalFonts = fonts; - }, - clearFonts: function () { - globalFonts = undefined; - }, - addTableLayouts: function (tableLayouts) { - globalTableLayouts = pack(globalTableLayouts, tableLayouts); - }, - setTableLayouts: function (tableLayouts) { - globalTableLayouts = tableLayouts; - }, - clearTableLayouts: function () { - globalTableLayouts = undefined; - } -}; +// TODO: Remove from `core-js@4` +__webpack_require__(44455); /***/ }), -/***/ 45337: +/***/ 49261: /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { "use strict"; var $ = __webpack_require__(56475); -var uncurryThis = __webpack_require__(38347); -var aCallable = __webpack_require__(32631); -var toObject = __webpack_require__(43162); -var lengthOfArrayLike = __webpack_require__(45495); -var toString = __webpack_require__(25096); -var fails = __webpack_require__(47044); -var internalSort = __webpack_require__(43977); -var arrayMethodIsStrict = __webpack_require__(81007); -var FF = __webpack_require__(3809); -var IE_OR_EDGE = __webpack_require__(21983); -var V8 = __webpack_require__(70091); -var WEBKIT = __webpack_require__(41731); - -var test = []; -var un$Sort = uncurryThis(test.sort); -var push = uncurryThis(test.push); +var newPromiseCapabilityModule = __webpack_require__(56614); +var perform = __webpack_require__(61900); -// IE8- -var FAILS_ON_UNDEFINED = fails(function () { - test.sort(undefined); -}); -// V8 bug -var FAILS_ON_NULL = fails(function () { - test.sort(null); +// `Promise.try` method +// https://github.com/tc39/proposal-promise-try +$({ target: 'Promise', stat: true }, { + 'try': function (callbackfn) { + var promiseCapability = newPromiseCapabilityModule.f(this); + var result = perform(callbackfn); + (result.error ? promiseCapability.reject : promiseCapability.resolve)(result.value); + return promiseCapability.promise; + } }); -// Old WebKit -var STRICT_METHOD = arrayMethodIsStrict('sort'); -var STABLE_SORT = !fails(function () { - // feature detection can be too slow, so check engines versions - if (V8) return V8 < 70; - if (FF && FF > 3) return; - if (IE_OR_EDGE) return true; - if (WEBKIT) return WEBKIT < 603; - var result = ''; - var code, chr, value, index; +/***/ }), - // generate an array with more 512 elements (Chakra and old V8 fails only in this case) - for (code = 65; code < 76; code++) { - chr = String.fromCharCode(code); +/***/ 1083: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - switch (code) { - case 66: case 69: case 70: case 72: value = 3; break; - case 68: case 71: value = 4; break; - default: value = 2; - } +// TODO: Remove from `core-js@4` +__webpack_require__(71768); - for (index = 0; index < 47; index++) { - test.push({ k: chr + index, v: value }); - } - } - test.sort(function (a, b) { return b.v - a.v; }); +/***/ }), - for (index = 0; index < test.length; index++) { - chr = test[index].k.charAt(0); - if (result.charAt(result.length - 1) !== chr) result += chr; - } +/***/ 64654: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return result !== 'DGBEFHACIJK'; -}); +// TODO: Remove from `core-js@4` +__webpack_require__(1593); -var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD || !STABLE_SORT; -var getSortCompare = function (comparefn) { - return function (x, y) { - if (y === undefined) return -1; - if (x === undefined) return 1; - if (comparefn !== undefined) return +comparefn(x, y) || 0; - return toString(x) > toString(y) ? 1 : -1; - }; -}; +/***/ }), -// `Array.prototype.sort` method -// https://tc39.es/ecma262/#sec-array.prototype.sort -$({ target: 'Array', proto: true, forced: FORCED }, { - sort: function sort(comparefn) { - if (comparefn !== undefined) aCallable(comparefn); +/***/ 42437: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - var array = toObject(this); +var global = __webpack_require__(32010); +var DOMIterables = __webpack_require__(23327); +var DOMTokenListPrototype = __webpack_require__(67797); +var forEach = __webpack_require__(82938); +var createNonEnumerableProperty = __webpack_require__(48914); - if (STABLE_SORT) return comparefn === undefined ? un$Sort(array) : un$Sort(array, comparefn); +var handlePrototype = function (CollectionPrototype) { + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try { + createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach); + } catch (error) { + CollectionPrototype.forEach = forEach; + } +}; - var items = []; - var arrayLength = lengthOfArrayLike(array); - var itemsLength, index; +for (var COLLECTION_NAME in DOMIterables) { + if (DOMIterables[COLLECTION_NAME]) { + handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype); + } +} - for (index = 0; index < arrayLength; index++) { - if (index in array) push(items, array[index]); - } +handlePrototype(DOMTokenListPrototype); - internalSort(items, getSortCompare(comparefn)); - itemsLength = items.length; - index = 0; +/***/ }), - while (index < itemsLength) array[index] = items[index++]; - while (index < arrayLength) delete array[index++]; +/***/ 94712: +/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - return array; +var global = __webpack_require__(32010); +var DOMIterables = __webpack_require__(23327); +var DOMTokenListPrototype = __webpack_require__(67797); +var ArrayIteratorMethods = __webpack_require__(81755); +var createNonEnumerableProperty = __webpack_require__(48914); +var wellKnownSymbol = __webpack_require__(38688); + +var ITERATOR = wellKnownSymbol('iterator'); +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); +var ArrayValues = ArrayIteratorMethods.values; + +var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) { + if (CollectionPrototype) { + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype[ITERATOR] !== ArrayValues) try { + createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues); + } catch (error) { + CollectionPrototype[ITERATOR] = ArrayValues; + } + if (!CollectionPrototype[TO_STRING_TAG]) { + createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME); + } + if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) { + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try { + createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]); + } catch (error) { + CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME]; + } + } } -}); +}; + +for (var COLLECTION_NAME in DOMIterables) { + handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME); +} + +handlePrototype(DOMTokenListPrototype, 'DOMTokenList'); /***/ }), -/***/ 45495: +/***/ 90780: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var toLength = __webpack_require__(23417); +var parent = __webpack_require__(42075); +__webpack_require__(94712); -// `LengthOfArrayLike` abstract operation -// https://tc39.es/ecma262/#sec-lengthofarraylike -module.exports = function (obj) { - return toLength(obj.length); -}; +module.exports = parent; /***/ }), @@ -44806,5229 +36893,4976 @@ module.exports = deepEqual; /***/ }), -/***/ 45744: +/***/ 89295: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var arraySpeciesConstructor = __webpack_require__(98578); +"use strict"; -// `ArraySpeciesCreate` abstract operation -// https://tc39.es/ecma262/#sec-arrayspeciescreate -module.exports = function (originalArray, length) { - return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length); + +var $defineProperty = __webpack_require__(56649); + +var $SyntaxError = __webpack_require__(57770); +var $TypeError = __webpack_require__(96785); + +var gopd = __webpack_require__(68109); + +/** @type {import('.')} */ +module.exports = function defineDataProperty( + obj, + property, + value +) { + if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) { + throw new $TypeError('`obj` must be an object or a function`'); + } + if (typeof property !== 'string' && typeof property !== 'symbol') { + throw new $TypeError('`property` must be a string or a symbol`'); + } + if (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) { + throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null'); + } + if (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) { + throw new $TypeError('`nonWritable`, if provided, must be a boolean or null'); + } + if (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) { + throw new $TypeError('`nonConfigurable`, if provided, must be a boolean or null'); + } + if (arguments.length > 6 && typeof arguments[6] !== 'boolean') { + throw new $TypeError('`loose`, if provided, must be a boolean'); + } + + var nonEnumerable = arguments.length > 3 ? arguments[3] : null; + var nonWritable = arguments.length > 4 ? arguments[4] : null; + var nonConfigurable = arguments.length > 5 ? arguments[5] : null; + var loose = arguments.length > 6 ? arguments[6] : false; + + /* @type {false | TypedPropertyDescriptor} */ + var desc = !!gopd && gopd(obj, property); + + if ($defineProperty) { + $defineProperty(obj, property, { + configurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable, + enumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable, + value: value, + writable: nonWritable === null && desc ? desc.writable : !nonWritable + }); + } else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) { + // must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable + obj[property] = value; // eslint-disable-line no-param-reassign + } else { + throw new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.'); + } +}; + + +/***/ }), + +/***/ 77802: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var keys = __webpack_require__(35643); +var hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol'; + +var toStr = Object.prototype.toString; +var concat = Array.prototype.concat; +var defineDataProperty = __webpack_require__(89295); + +var isFunction = function (fn) { + return typeof fn === 'function' && toStr.call(fn) === '[object Function]'; +}; + +var supportsDescriptors = __webpack_require__(18890)(); + +var defineProperty = function (object, name, value, predicate) { + if (name in object) { + if (predicate === true) { + if (object[name] === value) { + return; + } + } else if (!isFunction(predicate) || !predicate()) { + return; + } + } + + if (supportsDescriptors) { + defineDataProperty(object, name, value, true); + } else { + defineDataProperty(object, name, value); + } +}; + +var defineProperties = function (object, map) { + var predicates = arguments.length > 2 ? arguments[2] : {}; + var props = keys(map); + if (hasSymbols) { + props = concat.call(props, Object.getOwnPropertySymbols(map)); + } + for (var i = 0; i < props.length; i += 1) { + defineProperty(object, props[i], map[props[i]], predicates[props[i]]); + } }; +defineProperties.supportsDescriptors = !!supportsDescriptors; + +module.exports = defineProperties; + + +/***/ }), + +/***/ 89302: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var callBind = __webpack_require__(36688); +var gOPD = __webpack_require__(68109); + +var hasProtoAccessor; +try { + // eslint-disable-next-line no-extra-parens, no-proto + hasProtoAccessor = /** @type {{ __proto__?: typeof Array.prototype }} */ ([]).__proto__ === Array.prototype; +} catch (e) { + if (!e || typeof e !== 'object' || !('code' in e) || e.code !== 'ERR_PROTO_ACCESS') { + throw e; + } +} + +// eslint-disable-next-line no-extra-parens +var desc = !!hasProtoAccessor && gOPD && gOPD(Object.prototype, /** @type {keyof typeof Object.prototype} */ ('__proto__')); + +var $Object = Object; +var $getPrototypeOf = $Object.getPrototypeOf; + +/** @type {import('./get')} */ +module.exports = desc && typeof desc.get === 'function' + ? callBind([desc.get]) + : typeof $getPrototypeOf === 'function' + ? /** @type {import('./get')} */ function getDunder(value) { + // eslint-disable-next-line eqeqeq + return $getPrototypeOf(value == null ? value : $Object(value)); + } + : false; + + +/***/ }), + +/***/ 56649: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('.')} */ +var $defineProperty = Object.defineProperty || false; +if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + } catch (e) { + // IE 8 has a broken defineProperty + $defineProperty = false; + } +} + +module.exports = $defineProperty; + + +/***/ }), + +/***/ 29055: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./eval')} */ +module.exports = EvalError; + + +/***/ }), + +/***/ 15293: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('.')} */ +module.exports = Error; + + +/***/ }), + +/***/ 18888: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./range')} */ +module.exports = RangeError; + + +/***/ }), + +/***/ 47900: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./ref')} */ +module.exports = ReferenceError; + + +/***/ }), + +/***/ 57770: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./syntax')} */ +module.exports = SyntaxError; + + +/***/ }), + +/***/ 96785: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./type')} */ +module.exports = TypeError; + + +/***/ }), + +/***/ 54055: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./uri')} */ +module.exports = URIError; + /***/ }), -/***/ 46042: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 75846: +/***/ (function(module) { -var path = __webpack_require__(11206); -var hasOwn = __webpack_require__(20340); -var wrappedWellKnownSymbolModule = __webpack_require__(75960); -var defineProperty = (__webpack_require__(95892).f); +"use strict"; -module.exports = function (NAME) { - var Symbol = path.Symbol || (path.Symbol = {}); - if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, { - value: wrappedWellKnownSymbolModule.f(NAME) - }); -}; + +/** @type {import('.')} */ +module.exports = Object; /***/ }), -/***/ 46071: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 64785: +/***/ (function(module) { "use strict"; +// Copyright Joyent, Inc. and other Node contributors. +// +// Permission is hereby granted, free of charge, to any person obtaining a +// copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to permit +// persons to whom the Software is furnished to do so, subject to the +// following conditions: +// +// The above copyright notice and this permission notice shall be included +// in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +// USE OR OTHER DEALINGS IN THE SOFTWARE. -var $isNaN = __webpack_require__(10713); -/** @type {import('./sign')} */ -module.exports = function sign(number) { - if ($isNaN(number) || number === 0) { - return number; - } - return number < 0 ? -1 : +1; -}; +var R = typeof Reflect === 'object' ? Reflect : null +var ReflectApply = R && typeof R.apply === 'function' + ? R.apply + : function ReflectApply(target, receiver, args) { + return Function.prototype.apply.call(target, receiver, args); + } +var ReflectOwnKeys +if (R && typeof R.ownKeys === 'function') { + ReflectOwnKeys = R.ownKeys +} else if (Object.getOwnPropertySymbols) { + ReflectOwnKeys = function ReflectOwnKeys(target) { + return Object.getOwnPropertyNames(target) + .concat(Object.getOwnPropertySymbols(target)); + }; +} else { + ReflectOwnKeys = function ReflectOwnKeys(target) { + return Object.getOwnPropertyNames(target); + }; +} -/***/ }), +function ProcessEmitWarning(warning) { + if (console && console.warn) console.warn(warning); +} -/***/ 46094: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +var NumberIsNaN = Number.isNaN || function NumberIsNaN(value) { + return value !== value; +} -"use strict"; +function EventEmitter() { + EventEmitter.init.call(this); +} +module.exports = EventEmitter; +module.exports.once = once; +// Backwards-compat with node 0.10.x +EventEmitter.EventEmitter = EventEmitter; -var whichTypedArray = __webpack_require__(43381); +EventEmitter.prototype._events = undefined; +EventEmitter.prototype._eventsCount = 0; +EventEmitter.prototype._maxListeners = undefined; -/** @type {import('.')} */ -module.exports = function isTypedArray(value) { - return !!whichTypedArray(value); -}; +// By default EventEmitters will print a warning if more than 10 listeners are +// added to it. This is a useful default which helps finding memory leaks. +var defaultMaxListeners = 10; +function checkListener(listener) { + if (typeof listener !== 'function') { + throw new TypeError('The "listener" argument must be of type Function. Received type ' + typeof listener); + } +} -/***/ }), +Object.defineProperty(EventEmitter, 'defaultMaxListeners', { + enumerable: true, + get: function() { + return defaultMaxListeners; + }, + set: function(arg) { + if (typeof arg !== 'number' || arg < 0 || NumberIsNaN(arg)) { + throw new RangeError('The value of "defaultMaxListeners" is out of range. It must be a non-negative number. Received ' + arg + '.'); + } + defaultMaxListeners = arg; + } +}); -/***/ 46290: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +EventEmitter.init = function() { -var global = __webpack_require__(32010); -var getBuiltIn = __webpack_require__(38486); -var isCallable = __webpack_require__(94578); -var isPrototypeOf = __webpack_require__(70176); -var USE_SYMBOL_AS_UID = __webpack_require__(9567); + if (this._events === undefined || + this._events === Object.getPrototypeOf(this)._events) { + this._events = Object.create(null); + this._eventsCount = 0; + } -var Object = global.Object; + this._maxListeners = this._maxListeners || undefined; +}; -module.exports = USE_SYMBOL_AS_UID ? function (it) { - return typeof it == 'symbol'; -} : function (it) { - var $Symbol = getBuiltIn('Symbol'); - return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it)); +// Obviously not all Emitters should be limited to 10. This function allows +// that to be increased. Set to zero for unlimited. +EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) { + if (typeof n !== 'number' || n < 0 || NumberIsNaN(n)) { + throw new RangeError('The value of "n" is out of range. It must be a non-negative number. Received ' + n + '.'); + } + this._maxListeners = n; + return this; }; +function _getMaxListeners(that) { + if (that._maxListeners === undefined) + return EventEmitter.defaultMaxListeners; + return that._maxListeners; +} -/***/ }), +EventEmitter.prototype.getMaxListeners = function getMaxListeners() { + return _getMaxListeners(this); +}; -/***/ 46467: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +EventEmitter.prototype.emit = function emit(type) { + var args = []; + for (var i = 1; i < arguments.length; i++) args.push(arguments[i]); + var doError = (type === 'error'); -"use strict"; + var events = this._events; + if (events !== undefined) + doError = (doError && events.error === undefined); + else if (!doError) + return false; -var apply = __webpack_require__(58448); -var call = __webpack_require__(2834); -var uncurryThis = __webpack_require__(38347); -var fixRegExpWellKnownSymbolLogic = __webpack_require__(11813); -var fails = __webpack_require__(47044); -var anObject = __webpack_require__(34984); -var isCallable = __webpack_require__(94578); -var toIntegerOrInfinity = __webpack_require__(26882); -var toLength = __webpack_require__(23417); -var toString = __webpack_require__(25096); -var requireObjectCoercible = __webpack_require__(83943); -var advanceStringIndex = __webpack_require__(36352); -var getMethod = __webpack_require__(51839); -var getSubstitution = __webpack_require__(29519); -var regExpExec = __webpack_require__(66723); -var wellKnownSymbol = __webpack_require__(38688); + // If there is no 'error' event listener then throw. + if (doError) { + var er; + if (args.length > 0) + er = args[0]; + if (er instanceof Error) { + // Note: The comments on the `throw` lines are intentional, they show + // up in Node's output if this results in an unhandled exception. + throw er; // Unhandled 'error' event + } + // At least give some kind of context to the user + var err = new Error('Unhandled error.' + (er ? ' (' + er.message + ')' : '')); + err.context = er; + throw err; // Unhandled 'error' event + } -var REPLACE = wellKnownSymbol('replace'); -var max = Math.max; -var min = Math.min; -var concat = uncurryThis([].concat); -var push = uncurryThis([].push); -var stringIndexOf = uncurryThis(''.indexOf); -var stringSlice = uncurryThis(''.slice); + var handler = events[type]; -var maybeToString = function (it) { - return it === undefined ? it : String(it); + if (handler === undefined) + return false; + + if (typeof handler === 'function') { + ReflectApply(handler, this, args); + } else { + var len = handler.length; + var listeners = arrayClone(handler, len); + for (var i = 0; i < len; ++i) + ReflectApply(listeners[i], this, args); + } + + return true; }; -// IE <= 11 replaces $0 with the whole match, as if it was $& -// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0 -var REPLACE_KEEPS_$0 = (function () { - // eslint-disable-next-line regexp/prefer-escape-replacement-dollar-char -- required for testing - return 'a'.replace(/./, '$0') === '$0'; -})(); +function _addListener(target, type, listener, prepend) { + var m; + var events; + var existing; -// Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string -var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () { - if (/./[REPLACE]) { - return /./[REPLACE]('a', '$0') === ''; + checkListener(listener); + + events = target._events; + if (events === undefined) { + events = target._events = Object.create(null); + target._eventsCount = 0; + } else { + // To avoid recursion in the case that type === "newListener"! Before + // adding it to the listeners, first emit "newListener". + if (events.newListener !== undefined) { + target.emit('newListener', type, + listener.listener ? listener.listener : listener); + + // Re-assign `events` because a newListener handler could have caused the + // this._events to be assigned to a new object + events = target._events; + } + existing = events[type]; } - return false; -})(); -var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () { - var re = /./; - re.exec = function () { - var result = []; - result.groups = { a: '7' }; - return result; - }; - // eslint-disable-next-line regexp/no-useless-dollar-replacements -- false positive - return ''.replace(re, '$') !== '7'; -}); + if (existing === undefined) { + // Optimize the case of one listener. Don't need the extra array object. + existing = events[type] = listener; + ++target._eventsCount; + } else { + if (typeof existing === 'function') { + // Adding the second element, need to change to array. + existing = events[type] = + prepend ? [listener, existing] : [existing, listener]; + // If we've already got an array, just append. + } else if (prepend) { + existing.unshift(listener); + } else { + existing.push(listener); + } -// @@replace logic -fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) { - var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; + // Check for listener leak + m = _getMaxListeners(target); + if (m > 0 && existing.length > m && !existing.warned) { + existing.warned = true; + // No error code for this since it is a Warning + // eslint-disable-next-line no-restricted-syntax + var w = new Error('Possible EventEmitter memory leak detected. ' + + existing.length + ' ' + String(type) + ' listeners ' + + 'added. Use emitter.setMaxListeners() to ' + + 'increase limit'); + w.name = 'MaxListenersExceededWarning'; + w.emitter = target; + w.type = type; + w.count = existing.length; + ProcessEmitWarning(w); + } + } - return [ - // `String.prototype.replace` method - // https://tc39.es/ecma262/#sec-string.prototype.replace - function replace(searchValue, replaceValue) { - var O = requireObjectCoercible(this); - var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE); - return replacer - ? call(replacer, searchValue, O, replaceValue) - : call(nativeReplace, toString(O), searchValue, replaceValue); - }, - // `RegExp.prototype[@@replace]` method - // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace - function (string, replaceValue) { - var rx = anObject(this); - var S = toString(string); + return target; +} - if ( - typeof replaceValue == 'string' && - stringIndexOf(replaceValue, UNSAFE_SUBSTITUTE) === -1 && - stringIndexOf(replaceValue, '$<') === -1 - ) { - var res = maybeCallNative(nativeReplace, rx, S, replaceValue); - if (res.done) return res.value; - } +EventEmitter.prototype.addListener = function addListener(type, listener) { + return _addListener(this, type, listener, false); +}; - var functionalReplace = isCallable(replaceValue); - if (!functionalReplace) replaceValue = toString(replaceValue); +EventEmitter.prototype.on = EventEmitter.prototype.addListener; - var global = rx.global; - if (global) { - var fullUnicode = rx.unicode; - rx.lastIndex = 0; - } - var results = []; - while (true) { - var result = regExpExec(rx, S); - if (result === null) break; +EventEmitter.prototype.prependListener = + function prependListener(type, listener) { + return _addListener(this, type, listener, true); + }; - push(results, result); - if (!global) break; +function onceWrapper() { + if (!this.fired) { + this.target.removeListener(this.type, this.wrapFn); + this.fired = true; + if (arguments.length === 0) + return this.listener.call(this.target); + return this.listener.apply(this.target, arguments); + } +} - var matchStr = toString(result[0]); - if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); - } +function _onceWrap(target, type, listener) { + var state = { fired: false, wrapFn: undefined, target: target, type: type, listener: listener }; + var wrapped = onceWrapper.bind(state); + wrapped.listener = listener; + state.wrapFn = wrapped; + return wrapped; +} - var accumulatedResult = ''; - var nextSourcePosition = 0; - for (var i = 0; i < results.length; i++) { - result = results[i]; +EventEmitter.prototype.once = function once(type, listener) { + checkListener(listener); + this.on(type, _onceWrap(this, type, listener)); + return this; +}; - var matched = toString(result[0]); - var position = max(min(toIntegerOrInfinity(result.index), S.length), 0); - var captures = []; - // NOTE: This is equivalent to - // captures = result.slice(1).map(maybeToString) - // but for some reason `nativeSlice.call(result, 1, result.length)` (called in - // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and - // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. - for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j])); - var namedCaptures = result.groups; - if (functionalReplace) { - var replacerArgs = concat([matched], captures, position, S); - if (namedCaptures !== undefined) push(replacerArgs, namedCaptures); - var replacement = toString(apply(replaceValue, undefined, replacerArgs)); - } else { - replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); - } - if (position >= nextSourcePosition) { - accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement; - nextSourcePosition = position + matched.length; - } - } - return accumulatedResult + stringSlice(S, nextSourcePosition); - } - ]; -}, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE); +EventEmitter.prototype.prependOnceListener = + function prependOnceListener(type, listener) { + checkListener(listener); + this.prependListener(type, _onceWrap(this, type, listener)); + return this; + }; +// Emits a 'removeListener' event if and only if the listener was removed. +EventEmitter.prototype.removeListener = + function removeListener(type, listener) { + var list, events, position, i, originalListener; -/***/ }), + checkListener(listener); -/***/ 46769: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + events = this._events; + if (events === undefined) + return this; -var wellKnownSymbol = __webpack_require__(38688); + list = events[type]; + if (list === undefined) + return this; -var ITERATOR = wellKnownSymbol('iterator'); -var SAFE_CLOSING = false; + if (list === listener || list.listener === listener) { + if (--this._eventsCount === 0) + this._events = Object.create(null); + else { + delete events[type]; + if (events.removeListener) + this.emit('removeListener', type, list.listener || listener); + } + } else if (typeof list !== 'function') { + position = -1; -try { - var called = 0; - var iteratorWithReturn = { - next: function () { - return { done: !!called++ }; - }, - 'return': function () { - SAFE_CLOSING = true; - } - }; - iteratorWithReturn[ITERATOR] = function () { - return this; - }; - // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing - Array.from(iteratorWithReturn, function () { throw 2; }); -} catch (error) { /* empty */ } + for (i = list.length - 1; i >= 0; i--) { + if (list[i] === listener || list[i].listener === listener) { + originalListener = list[i].listener; + position = i; + break; + } + } -module.exports = function (exec, SKIP_CLOSING) { - if (!SKIP_CLOSING && !SAFE_CLOSING) return false; - var ITERATION_SUPPORT = false; - try { - var object = {}; - object[ITERATOR] = function () { - return { - next: function () { - return { done: ITERATION_SUPPORT = true }; + if (position < 0) + return this; + + if (position === 0) + list.shift(); + else { + spliceOne(list, position); } - }; + + if (list.length === 1) + events[type] = list[0]; + + if (events.removeListener !== undefined) + this.emit('removeListener', type, originalListener || listener); + } + + return this; }; - exec(object); - } catch (error) { /* empty */ } - return ITERATION_SUPPORT; -}; +EventEmitter.prototype.off = EventEmitter.prototype.removeListener; -/***/ }), +EventEmitter.prototype.removeAllListeners = + function removeAllListeners(type) { + var listeners, events, i; -/***/ 46859: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + events = this._events; + if (events === undefined) + return this; -var uncurryThis = __webpack_require__(38347); + // not listening for removeListener, no need to emit + if (events.removeListener === undefined) { + if (arguments.length === 0) { + this._events = Object.create(null); + this._eventsCount = 0; + } else if (events[type] !== undefined) { + if (--this._eventsCount === 0) + this._events = Object.create(null); + else + delete events[type]; + } + return this; + } -var id = 0; -var postfix = Math.random(); -var toString = uncurryThis(1.0.toString); + // emit removeListener for all listeners on all events + if (arguments.length === 0) { + var keys = Object.keys(events); + var key; + for (i = 0; i < keys.length; ++i) { + key = keys[i]; + if (key === 'removeListener') continue; + this.removeAllListeners(key); + } + this.removeAllListeners('removeListener'); + this._events = Object.create(null); + this._eventsCount = 0; + return this; + } -module.exports = function (key) { - return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36); -}; + listeners = events[type]; + if (typeof listeners === 'function') { + this.removeListener(type, listeners); + } else if (listeners !== undefined) { + // LIFO order + for (i = listeners.length - 1; i >= 0; i--) { + this.removeListener(type, listeners[i]); + } + } -/***/ }), + return this; + }; -/***/ 46887: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +function _listeners(target, type, unwrap) { + var events = target._events; -/* eslint-disable es/no-symbol -- required for testing */ -var V8_VERSION = __webpack_require__(70091); -var fails = __webpack_require__(47044); + if (events === undefined) + return []; -// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing -module.exports = !!Object.getOwnPropertySymbols && !fails(function () { - var symbol = Symbol(); - // Chrome 38 Symbol has incorrect toString conversion - // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances - return !String(symbol) || !(Object(symbol) instanceof Symbol) || - // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances - !Symbol.sham && V8_VERSION && V8_VERSION < 41; -}); + var evlistener = events[type]; + if (evlistener === undefined) + return []; + if (typeof evlistener === 'function') + return unwrap ? [evlistener.listener || evlistener] : [evlistener]; -/***/ }), + return unwrap ? + unwrapListeners(evlistener) : arrayClone(evlistener, evlistener.length); +} -/***/ 46911: -/***/ (function(module) { +EventEmitter.prototype.listeners = function listeners(type) { + return _listeners(this, type, true); +}; -"use strict"; +EventEmitter.prototype.rawListeners = function rawListeners(type) { + return _listeners(this, type, false); +}; +EventEmitter.listenerCount = function(emitter, type) { + if (typeof emitter.listenerCount === 'function') { + return emitter.listenerCount(type); + } else { + return listenerCount.call(emitter, type); + } +}; -// Note: adler32 takes 12% for level 0 and 2% for level 6. -// It isn't worth it to make additional optimizations as in original. -// Small size is preferable. +EventEmitter.prototype.listenerCount = listenerCount; +function listenerCount(type) { + var events = this._events; -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. + if (events !== undefined) { + var evlistener = events[type]; -function adler32(adler, buf, len, pos) { - var s1 = (adler & 0xffff) |0, - s2 = ((adler >>> 16) & 0xffff) |0, - n = 0; + if (typeof evlistener === 'function') { + return 1; + } else if (evlistener !== undefined) { + return evlistener.length; + } + } - while (len !== 0) { - // Set limit ~ twice less than 5552, to keep - // s2 in 31-bits, because we force signed ints. - // in other case %= will fail. - n = len > 2000 ? 2000 : len; - len -= n; + return 0; +} - do { - s1 = (s1 + buf[pos++]) |0; - s2 = (s2 + s1) |0; - } while (--n); +EventEmitter.prototype.eventNames = function eventNames() { + return this._eventsCount > 0 ? ReflectOwnKeys(this._events) : []; +}; - s1 %= 65521; - s2 %= 65521; - } +function arrayClone(arr, n) { + var copy = new Array(n); + for (var i = 0; i < n; ++i) + copy[i] = arr[i]; + return copy; +} - return (s1 | (s2 << 16)) |0; +function spliceOne(list, index) { + for (; index + 1 < list.length; index++) + list[index] = list[index + 1]; + list.pop(); } +function unwrapListeners(arr) { + var ret = new Array(arr.length); + for (var i = 0; i < ret.length; ++i) { + ret[i] = arr[i].listener || arr[i]; + } + return ret; +} -module.exports = adler32; +function once(emitter, name) { + return new Promise(function (resolve, reject) { + function errorListener(err) { + emitter.removeListener(name, resolver); + reject(err); + } + function resolver() { + if (typeof emitter.removeListener === 'function') { + emitter.removeListener('error', errorListener); + } + resolve([].slice.call(arguments)); + }; -/***/ }), + eventTargetAgnosticAddListener(emitter, name, resolver, { once: true }); + if (name !== 'error') { + addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true }); + } + }); +} -/***/ 47044: -/***/ (function(module) { +function addErrorHandlerIfEventEmitter(emitter, handler, flags) { + if (typeof emitter.on === 'function') { + eventTargetAgnosticAddListener(emitter, 'error', handler, flags); + } +} -module.exports = function (exec) { - try { - return !!exec(); - } catch (error) { - return true; +function eventTargetAgnosticAddListener(emitter, name, listener, flags) { + if (typeof emitter.on === 'function') { + if (flags.once) { + emitter.once(name, listener); + } else { + emitter.on(name, listener); + } + } else if (typeof emitter.addEventListener === 'function') { + // EventTarget does not have `error` event semantics like Node + // EventEmitters, we do not listen for `error` events here. + emitter.addEventListener(name, function wrapListener(arg) { + // IE does not have builtin `{ once: true }` support so we + // have to do it manually. + if (flags.once) { + emitter.removeEventListener(name, wrapListener); + } + listener(arg); + }); + } else { + throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type ' + typeof emitter); } -}; +} /***/ }), -/***/ 47259: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 72022: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var createHTML = __webpack_require__(91159); -var forcedStringHTMLMethod = __webpack_require__(7452); -// `String.prototype.link` method -// https://tc39.es/ecma262/#sec-string.prototype.link -$({ target: 'String', proto: true, forced: forcedStringHTMLMethod('link') }, { - link: function link(url) { - return createHTML(this, 'a', 'href', url); +// eslint-disable-next-line func-names +module.exports = function () { + if (typeof globalThis === "object") { + return globalThis; } -}); + var g; + try { + // This works if eval is allowed (see CSP) + // eslint-disable-next-line no-new-func + g = this || new Function("return this")(); + } catch (e) { + // This works if the window reference is available + if (typeof window === "object") { + return window; + } + + // This works if the self reference is available + if (typeof self === "object") { + return self; + } + // This works if the global reference is available + if (typeof __webpack_require__.g !== "undefined") { + return __webpack_require__.g; + } + } + return g; +}(); /***/ }), -/***/ 47458: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 68404: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var uncurryThis = __webpack_require__(38347); -var notARegExp = __webpack_require__(93666); -var requireObjectCoercible = __webpack_require__(83943); -var toString = __webpack_require__(25096); -var correctIsRegExpLogic = __webpack_require__(91151); -var stringIndexOf = uncurryThis(''.indexOf); +var isCallable = __webpack_require__(3746); -// `String.prototype.includes` method -// https://tc39.es/ecma262/#sec-string.prototype.includes -$({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, { - includes: function includes(searchString /* , position = 0 */) { - return !!~stringIndexOf( - toString(requireObjectCoercible(this)), - toString(notARegExp(searchString)), - arguments.length > 1 ? arguments[1] : undefined - ); - } -}); +var toStr = Object.prototype.toString; +var hasOwnProperty = Object.prototype.hasOwnProperty; +/** @type {(arr: A, iterator: (this: This | void, value: A[number], index: number, arr: A) => void, receiver: This | undefined) => void} */ +var forEachArray = function forEachArray(array, iterator, receiver) { + for (var i = 0, len = array.length; i < len; i++) { + if (hasOwnProperty.call(array, i)) { + if (receiver == null) { + iterator(array[i], i, array); + } else { + iterator.call(receiver, array[i], i, array); + } + } + } +}; -/***/ }), +/** @type {(string: S, iterator: (this: This | void, value: S[number], index: number, string: S) => void, receiver: This | undefined) => void} */ +var forEachString = function forEachString(string, iterator, receiver) { + for (var i = 0, len = string.length; i < len; i++) { + // no such thing as a sparse string. + if (receiver == null) { + iterator(string.charAt(i), i, string); + } else { + iterator.call(receiver, string.charAt(i), i, string); + } + } +}; -/***/ 47552: -/***/ (function(module) { +/** @type {(obj: O, iterator: (this: This | void, value: O[keyof O], index: keyof O, obj: O) => void, receiver: This | undefined) => void} */ +var forEachObject = function forEachObject(object, iterator, receiver) { + for (var k in object) { + if (hasOwnProperty.call(object, k)) { + if (receiver == null) { + iterator(object[k], k, object); + } else { + iterator.call(receiver, object[k], k, object); + } + } + } +}; -"use strict"; +/** @type {(x: unknown) => x is readonly unknown[]} */ +function isArray(x) { + return toStr.call(x) === '[object Array]'; +} + +/** @type {import('.')._internal} */ +module.exports = function forEach(list, iterator, thisArg) { + if (!isCallable(iterator)) { + throw new TypeError('iterator must be a function'); + } + var receiver; + if (arguments.length >= 3) { + receiver = thisArg; + } -/** @type {import('./min')} */ -module.exports = Math.min; + if (isArray(list)) { + forEachArray(list, iterator, receiver); + } else if (typeof list === 'string') { + forEachString(list, iterator, receiver); + } else { + forEachObject(list, iterator, receiver); + } +}; /***/ }), -/***/ 47900: +/***/ 12719: /***/ (function(module) { "use strict"; -/** @type {import('./ref')} */ -module.exports = ReferenceError; - - -/***/ }), - -/***/ 47969: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -var createTypedArrayConstructor = __webpack_require__(98828); +/* eslint no-invalid-this: 1 */ -// `Uint16Array` constructor -// https://tc39.es/ecma262/#sec-typedarray-objects -createTypedArrayConstructor('Uint16', function (init) { - return function Uint16Array(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; -}); +var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible '; +var toStr = Object.prototype.toString; +var max = Math.max; +var funcType = '[object Function]'; +var concatty = function concatty(a, b) { + var arr = []; -/***/ }), + for (var i = 0; i < a.length; i += 1) { + arr[i] = a[i]; + } + for (var j = 0; j < b.length; j += 1) { + arr[j + a.length] = b[j]; + } -/***/ 48181: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + return arr; +}; -"use strict"; -var __webpack_dirname__ = "/"; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; +var slicy = function slicy(arrLike, offset) { + var arr = []; + for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) { + arr[j] = arrLike[i]; + } + return arr; +}; +var joiny = function (arr, joiner) { + var str = ''; + for (var i = 0; i < arr.length; i += 1) { + str += arr[i]; + if (i + 1 < arr.length) { + str += joiner; + } + } + return str; +}; -function VirtualFileSystem() { - this.fileSystem = {}; - this.dataSystem = {}; -} +module.exports = function bind(that) { + var target = this; + if (typeof target !== 'function' || toStr.apply(target) !== funcType) { + throw new TypeError(ERROR_MESSAGE + target); + } + var args = slicy(arguments, 1); -VirtualFileSystem.prototype.existsSync = function (filename) { - filename = fixFilename(filename); - return typeof this.fileSystem[filename] !== 'undefined' - || typeof this.dataSystem[filename] !== 'undefined'; -}; + var bound; + var binder = function () { + if (this instanceof bound) { + var result = target.apply( + this, + concatty(args, arguments) + ); + if (Object(result) === result) { + return result; + } + return this; + } + return target.apply( + that, + concatty(args, arguments) + ); -VirtualFileSystem.prototype.readFileSync = function (filename, options) { - filename = fixFilename(filename); + }; - var dataContent = this.dataSystem[filename]; - if (typeof dataContent === 'string' && options === 'utf8') { - return dataContent; - } + var boundLength = max(0, target.length - args.length); + var boundArgs = []; + for (var i = 0; i < boundLength; i++) { + boundArgs[i] = '$' + i; + } - if (dataContent) { - return new Buffer(dataContent, typeof dataContent === 'string' ? 'base64' : undefined); - } + bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder); - var content = this.fileSystem[filename]; - if (content) { - return content; - } + if (target.prototype) { + var Empty = function Empty() {}; + Empty.prototype = target.prototype; + bound.prototype = new Empty(); + Empty.prototype = null; + } - throw 'File \'' + filename + '\' not found in virtual file system'; + return bound; }; -VirtualFileSystem.prototype.writeFileSync = function (filename, content) { - this.fileSystem[fixFilename(filename)] = content; -}; -VirtualFileSystem.prototype.bindFS = function (data) { - this.dataSystem = data || {}; -}; +/***/ }), +/***/ 5049: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -function fixFilename(filename) { - if (filename.indexOf(__webpack_dirname__) === 0) { - filename = filename.substring(__webpack_dirname__.length); - } +"use strict"; - if (filename.indexOf('/') === 0) { - filename = filename.substring(1); - } - return filename; -} +var implementation = __webpack_require__(12719); -module.exports = new VirtualFileSystem(); +module.exports = Function.prototype.bind || implementation; /***/ }), -/***/ 48306: -/***/ (function(module, exports, __webpack_require__) { +/***/ 61084: +/***/ (function(module) { "use strict"; -__webpack_require__(20731); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(51270)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** - * Counter block mode. - */ - CryptoJS.mode.CTR = function () { - var CTR = CryptoJS.lib.BlockCipherMode.extend(); - var Encryptor = CTR.Encryptor = CTR.extend({ - processBlock: function processBlock(words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; - var iv = this._iv; - var counter = this._counter; +var functionsHaveNames = function functionsHaveNames() { + return typeof function f() {}.name === 'string'; +}; + +var gOPD = Object.getOwnPropertyDescriptor; +if (gOPD) { + try { + gOPD([], 'length'); + } catch (e) { + // IE 8 has a broken gOPD + gOPD = null; + } +} + +functionsHaveNames.functionsHaveConfigurableNames = function functionsHaveConfigurableNames() { + if (!functionsHaveNames() || !gOPD) { + return false; + } + var desc = gOPD(function () {}, 'name'); + return !!desc && !!desc.configurable; +}; - // Generate keystream - if (iv) { - counter = this._counter = iv.slice(0); +var $bind = Function.prototype.bind; - // Remove IV for subsequent blocks - this._iv = undefined; - } - var keystream = counter.slice(0); - cipher.encryptBlock(keystream, 0); +functionsHaveNames.boundFunctionsHaveNames = function boundFunctionsHaveNames() { + return functionsHaveNames() && typeof $bind === 'function' && function f() {}.bind().name !== ''; +}; - // Increment counter - counter[blockSize - 1] = counter[blockSize - 1] + 1 | 0; +module.exports = functionsHaveNames; - // Encrypt - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= keystream[i]; - } - } - }); - CTR.Decryptor = Encryptor; - return CTR; - }(); - return CryptoJS.mode.CTR; -}); /***/ }), -/***/ 48352: -/***/ (function(module, exports, __webpack_require__) { +/***/ 28651: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -__webpack_require__(39081); -__webpack_require__(81755); -__webpack_require__(94845); -__webpack_require__(20731); -__webpack_require__(23913); -__webpack_require__(8953); -__webpack_require__(14032); -__webpack_require__(57114); -__webpack_require__(59735); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -__webpack_require__(49109); -; -(function (root, factory) { - if (true) { - // CommonJS - module.exports = exports = factory(); - } else // removed by dead control flow -{} -})(void 0, function () { - /*globals window, global, require*/ - - /** - * CryptoJS core components. - */ - var CryptoJS = CryptoJS || function (Math, undefined) { - var crypto; +var undefined; - // Native crypto from window (Browser) - if (typeof window !== 'undefined' && window.crypto) { - crypto = window.crypto; - } +var $Object = __webpack_require__(75846); - // Native crypto in web worker (Browser) - if (typeof self !== 'undefined' && self.crypto) { - crypto = self.crypto; - } +var $Error = __webpack_require__(15293); +var $EvalError = __webpack_require__(29055); +var $RangeError = __webpack_require__(18888); +var $ReferenceError = __webpack_require__(47900); +var $SyntaxError = __webpack_require__(57770); +var $TypeError = __webpack_require__(96785); +var $URIError = __webpack_require__(54055); - // Native crypto from worker - if (typeof globalThis !== 'undefined' && globalThis.crypto) { - crypto = globalThis.crypto; - } +var abs = __webpack_require__(50716); +var floor = __webpack_require__(77450); +var max = __webpack_require__(3774); +var min = __webpack_require__(47552); +var pow = __webpack_require__(75874); +var round = __webpack_require__(19292); +var sign = __webpack_require__(46071); - // Native (experimental IE 11) crypto from window (Browser) - if (!crypto && typeof window !== 'undefined' && window.msCrypto) { - crypto = window.msCrypto; - } +var $Function = Function; - // Native crypto from global (NodeJS) - if (!crypto && typeof __webpack_require__.g !== 'undefined' && __webpack_require__.g.crypto) { - crypto = __webpack_require__.g.crypto; - } +// eslint-disable-next-line consistent-return +var getEvalledConstructor = function (expressionSyntax) { + try { + return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); + } catch (e) {} +}; - // Native crypto import via require (NodeJS) - if (!crypto && "function" === 'function') { - try { - crypto = __webpack_require__(50477); - } catch (err) {} - } +var $gOPD = __webpack_require__(68109); +var $defineProperty = __webpack_require__(56649); - /* - * Cryptographically secure pseudorandom number generator - * - * As Math.random() is cryptographically not safe to use - */ - var cryptoSecureRandomInt = function cryptoSecureRandomInt() { - if (crypto) { - // Use getRandomValues method (Browser) - if (typeof crypto.getRandomValues === 'function') { - try { - return crypto.getRandomValues(new Uint32Array(1))[0]; - } catch (err) {} - } +var throwTypeError = function () { + throw new $TypeError(); +}; +var ThrowTypeError = $gOPD + ? (function () { + try { + // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties + arguments.callee; // IE 8 does not throw here + return throwTypeError; + } catch (calleeThrows) { + try { + // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') + return $gOPD(arguments, 'callee').get; + } catch (gOPDthrows) { + return throwTypeError; + } + } + }()) + : throwTypeError; - // Use randomBytes method (NodeJS) - if (typeof crypto.randomBytes === 'function') { - try { - return crypto.randomBytes(4).readInt32LE(); - } catch (err) {} - } - } - throw new Error('Native crypto module could not be used to get secure random number.'); - }; +var hasSymbols = __webpack_require__(73257)(); - /* - * Local polyfill of Object.create - */ - var create = Object.create || function () { - function F() {} - return function (obj) { - var subtype; - F.prototype = obj; - subtype = new F(); - F.prototype = null; - return subtype; - }; - }(); +var getProto = __webpack_require__(87106); +var $ObjectGPO = __webpack_require__(33766); +var $ReflectGPO = __webpack_require__(86822); - /** - * CryptoJS namespace. - */ - var C = {}; +var $apply = __webpack_require__(73036); +var $call = __webpack_require__(10078); - /** - * Library namespace. - */ - var C_lib = C.lib = {}; +var needsEval = {}; - /** - * Base object for prototypal inheritance. - */ - var Base = C_lib.Base = function () { - return { - /** - * Creates a new object that inherits from this object. - * - * @param {Object} overrides Properties to copy into the new object. - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * field: 'value', - * - * method: function () { - * } - * }); - */ - extend: function extend(overrides) { - // Spawn - var subtype = create(this); +var TypedArray = typeof Uint8Array === 'undefined' || !getProto ? undefined : getProto(Uint8Array); - // Augment - if (overrides) { - subtype.mixIn(overrides); - } +var INTRINSICS = { + __proto__: null, + '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError, + '%Array%': Array, + '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer, + '%ArrayIteratorPrototype%': hasSymbols && getProto ? getProto([][Symbol.iterator]()) : undefined, + '%AsyncFromSyncIteratorPrototype%': undefined, + '%AsyncFunction%': needsEval, + '%AsyncGenerator%': needsEval, + '%AsyncGeneratorFunction%': needsEval, + '%AsyncIteratorPrototype%': needsEval, + '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics, + '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt, + '%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array, + '%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array, + '%Boolean%': Boolean, + '%DataView%': typeof DataView === 'undefined' ? undefined : DataView, + '%Date%': Date, + '%decodeURI%': decodeURI, + '%decodeURIComponent%': decodeURIComponent, + '%encodeURI%': encodeURI, + '%encodeURIComponent%': encodeURIComponent, + '%Error%': $Error, + '%eval%': eval, // eslint-disable-line no-eval + '%EvalError%': $EvalError, + '%Float16Array%': typeof Float16Array === 'undefined' ? undefined : Float16Array, + '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array, + '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array, + '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry, + '%Function%': $Function, + '%GeneratorFunction%': needsEval, + '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array, + '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array, + '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array, + '%isFinite%': isFinite, + '%isNaN%': isNaN, + '%IteratorPrototype%': hasSymbols && getProto ? getProto(getProto([][Symbol.iterator]())) : undefined, + '%JSON%': typeof JSON === 'object' ? JSON : undefined, + '%Map%': typeof Map === 'undefined' ? undefined : Map, + '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Map()[Symbol.iterator]()), + '%Math%': Math, + '%Number%': Number, + '%Object%': $Object, + '%Object.getOwnPropertyDescriptor%': $gOPD, + '%parseFloat%': parseFloat, + '%parseInt%': parseInt, + '%Promise%': typeof Promise === 'undefined' ? undefined : Promise, + '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy, + '%RangeError%': $RangeError, + '%ReferenceError%': $ReferenceError, + '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect, + '%RegExp%': RegExp, + '%Set%': typeof Set === 'undefined' ? undefined : Set, + '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols || !getProto ? undefined : getProto(new Set()[Symbol.iterator]()), + '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer, + '%String%': String, + '%StringIteratorPrototype%': hasSymbols && getProto ? getProto(''[Symbol.iterator]()) : undefined, + '%Symbol%': hasSymbols ? Symbol : undefined, + '%SyntaxError%': $SyntaxError, + '%ThrowTypeError%': ThrowTypeError, + '%TypedArray%': TypedArray, + '%TypeError%': $TypeError, + '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array, + '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray, + '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array, + '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array, + '%URIError%': $URIError, + '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, + '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, + '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet, - // Create default initializer - if (!subtype.hasOwnProperty('init') || this.init === subtype.init) { - subtype.init = function () { - subtype.$super.init.apply(this, arguments); - }; - } + '%Function.prototype.call%': $call, + '%Function.prototype.apply%': $apply, + '%Object.defineProperty%': $defineProperty, + '%Object.getPrototypeOf%': $ObjectGPO, + '%Math.abs%': abs, + '%Math.floor%': floor, + '%Math.max%': max, + '%Math.min%': min, + '%Math.pow%': pow, + '%Math.round%': round, + '%Math.sign%': sign, + '%Reflect.getPrototypeOf%': $ReflectGPO +}; - // Initializer's prototype is the subtype object - subtype.init.prototype = subtype; +if (getProto) { + try { + null.error; // eslint-disable-line no-unused-expressions + } catch (e) { + // https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229 + var errorProto = getProto(getProto(e)); + INTRINSICS['%Error.prototype%'] = errorProto; + } +} - // Reference supertype - subtype.$super = this; - return subtype; - }, - /** - * Extends this object and runs the init method. - * Arguments to create() will be passed to init(). - * - * @return {Object} The new object. - * - * @static - * - * @example - * - * var instance = MyType.create(); - */ - create: function create() { - var instance = this.extend(); - instance.init.apply(instance, arguments); - return instance; - }, - /** - * Initializes a newly created object. - * Override this method to add some logic when your objects are created. - * - * @example - * - * var MyType = CryptoJS.lib.Base.extend({ - * init: function () { - * // ... - * } - * }); - */ - init: function init() {}, - /** - * Copies properties into this object. - * - * @param {Object} properties The properties to mix in. - * - * @example - * - * MyType.mixIn({ - * field: 'value' - * }); - */ - mixIn: function mixIn(properties) { - for (var propertyName in properties) { - if (properties.hasOwnProperty(propertyName)) { - this[propertyName] = properties[propertyName]; - } - } +var doEval = function doEval(name) { + var value; + if (name === '%AsyncFunction%') { + value = getEvalledConstructor('async function () {}'); + } else if (name === '%GeneratorFunction%') { + value = getEvalledConstructor('function* () {}'); + } else if (name === '%AsyncGeneratorFunction%') { + value = getEvalledConstructor('async function* () {}'); + } else if (name === '%AsyncGenerator%') { + var fn = doEval('%AsyncGeneratorFunction%'); + if (fn) { + value = fn.prototype; + } + } else if (name === '%AsyncIteratorPrototype%') { + var gen = doEval('%AsyncGenerator%'); + if (gen && getProto) { + value = getProto(gen.prototype); + } + } - // IE won't copy toString using the loop above - if (properties.hasOwnProperty('toString')) { - this.toString = properties.toString; - } - }, - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = instance.clone(); - */ - clone: function clone() { - return this.init.prototype.extend(this); - } - }; - }(); + INTRINSICS[name] = value; - /** - * An array of 32-bit words. - * - * @property {Array} words The array of 32-bit words. - * @property {number} sigBytes The number of significant bytes in this word array. - */ - var WordArray = C_lib.WordArray = Base.extend({ - /** - * Initializes a newly created word array. - * - * @param {Array} words (Optional) An array of 32-bit words. - * @param {number} sigBytes (Optional) The number of significant bytes in the words. - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.create(); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]); - * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6); - */ - init: function init(words, sigBytes) { - words = this.words = words || []; - if (sigBytes != undefined) { - this.sigBytes = sigBytes; - } else { - this.sigBytes = words.length * 4; - } - }, - /** - * Converts this word array to a string. - * - * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex - * - * @return {string} The stringified word array. - * - * @example - * - * var string = wordArray + ''; - * var string = wordArray.toString(); - * var string = wordArray.toString(CryptoJS.enc.Utf8); - */ - toString: function toString(encoder) { - return (encoder || Hex).stringify(this); - }, - /** - * Concatenates a word array to this word array. - * - * @param {WordArray} wordArray The word array to append. - * - * @return {WordArray} This word array. - * - * @example - * - * wordArray1.concat(wordArray2); - */ - concat: function concat(wordArray) { - // Shortcuts - var thisWords = this.words; - var thatWords = wordArray.words; - var thisSigBytes = this.sigBytes; - var thatSigBytes = wordArray.sigBytes; + return value; +}; - // Clamp excess bits - this.clamp(); +var LEGACY_ALIASES = { + __proto__: null, + '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], + '%ArrayPrototype%': ['Array', 'prototype'], + '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], + '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], + '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], + '%ArrayProto_values%': ['Array', 'prototype', 'values'], + '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], + '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], + '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], + '%BooleanPrototype%': ['Boolean', 'prototype'], + '%DataViewPrototype%': ['DataView', 'prototype'], + '%DatePrototype%': ['Date', 'prototype'], + '%ErrorPrototype%': ['Error', 'prototype'], + '%EvalErrorPrototype%': ['EvalError', 'prototype'], + '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], + '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], + '%FunctionPrototype%': ['Function', 'prototype'], + '%Generator%': ['GeneratorFunction', 'prototype'], + '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], + '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], + '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], + '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], + '%JSONParse%': ['JSON', 'parse'], + '%JSONStringify%': ['JSON', 'stringify'], + '%MapPrototype%': ['Map', 'prototype'], + '%NumberPrototype%': ['Number', 'prototype'], + '%ObjectPrototype%': ['Object', 'prototype'], + '%ObjProto_toString%': ['Object', 'prototype', 'toString'], + '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], + '%PromisePrototype%': ['Promise', 'prototype'], + '%PromiseProto_then%': ['Promise', 'prototype', 'then'], + '%Promise_all%': ['Promise', 'all'], + '%Promise_reject%': ['Promise', 'reject'], + '%Promise_resolve%': ['Promise', 'resolve'], + '%RangeErrorPrototype%': ['RangeError', 'prototype'], + '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], + '%RegExpPrototype%': ['RegExp', 'prototype'], + '%SetPrototype%': ['Set', 'prototype'], + '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], + '%StringPrototype%': ['String', 'prototype'], + '%SymbolPrototype%': ['Symbol', 'prototype'], + '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], + '%TypedArrayPrototype%': ['TypedArray', 'prototype'], + '%TypeErrorPrototype%': ['TypeError', 'prototype'], + '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], + '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], + '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], + '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], + '%URIErrorPrototype%': ['URIError', 'prototype'], + '%WeakMapPrototype%': ['WeakMap', 'prototype'], + '%WeakSetPrototype%': ['WeakSet', 'prototype'] +}; - // Concat - if (thisSigBytes % 4) { - // Copy one byte at a time - for (var i = 0; i < thatSigBytes; i++) { - var thatByte = thatWords[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; - thisWords[thisSigBytes + i >>> 2] |= thatByte << 24 - (thisSigBytes + i) % 4 * 8; - } - } else { - // Copy one word at a time - for (var j = 0; j < thatSigBytes; j += 4) { - thisWords[thisSigBytes + j >>> 2] = thatWords[j >>> 2]; - } - } - this.sigBytes += thatSigBytes; +var bind = __webpack_require__(5049); +var hasOwn = __webpack_require__(55215); +var $concat = bind.call($call, Array.prototype.concat); +var $spliceApply = bind.call($apply, Array.prototype.splice); +var $replace = bind.call($call, String.prototype.replace); +var $strSlice = bind.call($call, String.prototype.slice); +var $exec = bind.call($call, RegExp.prototype.exec); - // Chainable - return this; - }, - /** - * Removes insignificant bits. - * - * @example - * - * wordArray.clamp(); - */ - clamp: function clamp() { - // Shortcuts - var words = this.words; - var sigBytes = this.sigBytes; +/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ +var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; +var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ +var stringToPath = function stringToPath(string) { + var first = $strSlice(string, 0, 1); + var last = $strSlice(string, -1); + if (first === '%' && last !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`'); + } else if (last === '%' && first !== '%') { + throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`'); + } + var result = []; + $replace(string, rePropName, function (match, number, quote, subString) { + result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match; + }); + return result; +}; +/* end adaptation */ - // Clamp - words[sigBytes >>> 2] &= 0xffffffff << 32 - sigBytes % 4 * 8; - words.length = Math.ceil(sigBytes / 4); - }, - /** - * Creates a copy of this word array. - * - * @return {WordArray} The clone. - * - * @example - * - * var clone = wordArray.clone(); - */ - clone: function clone() { - var clone = Base.clone.call(this); - clone.words = this.words.slice(0); - return clone; - }, - /** - * Creates a word array filled with random bytes. - * - * @param {number} nBytes The number of random bytes to generate. - * - * @return {WordArray} The random word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.lib.WordArray.random(16); - */ - random: function random(nBytes) { - var words = []; - for (var i = 0; i < nBytes; i += 4) { - words.push(cryptoSecureRandomInt()); - } - return new WordArray.init(words, nBytes); - } - }); +var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { + var intrinsicName = name; + var alias; + if (hasOwn(LEGACY_ALIASES, intrinsicName)) { + alias = LEGACY_ALIASES[intrinsicName]; + intrinsicName = '%' + alias[0] + '%'; + } - /** - * Encoder namespace. - */ - var C_enc = C.enc = {}; + if (hasOwn(INTRINSICS, intrinsicName)) { + var value = INTRINSICS[intrinsicName]; + if (value === needsEval) { + value = doEval(intrinsicName); + } + if (typeof value === 'undefined' && !allowMissing) { + throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); + } - /** - * Hex encoding strategy. - */ - var Hex = C_enc.Hex = { - /** - * Converts a word array to a hex string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The hex string. - * - * @static - * - * @example - * - * var hexString = CryptoJS.enc.Hex.stringify(wordArray); - */ - stringify: function stringify(wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; + return { + alias: alias, + name: intrinsicName, + value: value + }; + } - // Convert - var hexChars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; - hexChars.push((bite >>> 4).toString(16)); - hexChars.push((bite & 0x0f).toString(16)); - } - return hexChars.join(''); - }, - /** - * Converts a hex string to a word array. - * - * @param {string} hexStr The hex string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Hex.parse(hexString); - */ - parse: function parse(hexStr) { - // Shortcut - var hexStrLength = hexStr.length; + throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); +}; - // Convert - var words = []; - for (var i = 0; i < hexStrLength; i += 2) { - words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << 24 - i % 8 * 4; - } - return new WordArray.init(words, hexStrLength / 2); - } - }; +module.exports = function GetIntrinsic(name, allowMissing) { + if (typeof name !== 'string' || name.length === 0) { + throw new $TypeError('intrinsic name must be a non-empty string'); + } + if (arguments.length > 1 && typeof allowMissing !== 'boolean') { + throw new $TypeError('"allowMissing" argument must be a boolean'); + } - /** - * Latin1 encoding strategy. - */ - var Latin1 = C_enc.Latin1 = { - /** - * Converts a word array to a Latin1 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The Latin1 string. - * - * @static - * - * @example - * - * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray); - */ - stringify: function stringify(wordArray) { - // Shortcuts - var words = wordArray.words; - var sigBytes = wordArray.sigBytes; + if ($exec(/^%?[^%]*%?$/, name) === null) { + throw new $SyntaxError('`%` may not be present anywhere but at the beginning and end of the intrinsic name'); + } + var parts = stringToPath(name); + var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; - // Convert - var latin1Chars = []; - for (var i = 0; i < sigBytes; i++) { - var bite = words[i >>> 2] >>> 24 - i % 4 * 8 & 0xff; - latin1Chars.push(String.fromCharCode(bite)); - } - return latin1Chars.join(''); - }, - /** - * Converts a Latin1 string to a word array. - * - * @param {string} latin1Str The Latin1 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Latin1.parse(latin1String); - */ - parse: function parse(latin1Str) { - // Shortcut - var latin1StrLength = latin1Str.length; + var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); + var intrinsicRealName = intrinsic.name; + var value = intrinsic.value; + var skipFurtherCaching = false; - // Convert - var words = []; - for (var i = 0; i < latin1StrLength; i++) { - words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << 24 - i % 4 * 8; - } - return new WordArray.init(words, latin1StrLength); - } - }; + var alias = intrinsic.alias; + if (alias) { + intrinsicBaseName = alias[0]; + $spliceApply(parts, $concat([0, 1], alias)); + } - /** - * UTF-8 encoding strategy. - */ - var Utf8 = C_enc.Utf8 = { - /** - * Converts a word array to a UTF-8 string. - * - * @param {WordArray} wordArray The word array. - * - * @return {string} The UTF-8 string. - * - * @static - * - * @example - * - * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray); - */ - stringify: function stringify(wordArray) { - try { - return decodeURIComponent(escape(Latin1.stringify(wordArray))); - } catch (e) { - throw new Error('Malformed UTF-8 data'); - } - }, - /** - * Converts a UTF-8 string to a word array. - * - * @param {string} utf8Str The UTF-8 string. - * - * @return {WordArray} The word array. - * - * @static - * - * @example - * - * var wordArray = CryptoJS.enc.Utf8.parse(utf8String); - */ - parse: function parse(utf8Str) { - return Latin1.parse(unescape(encodeURIComponent(utf8Str))); - } - }; + for (var i = 1, isOwn = true; i < parts.length; i += 1) { + var part = parts[i]; + var first = $strSlice(part, 0, 1); + var last = $strSlice(part, -1); + if ( + ( + (first === '"' || first === "'" || first === '`') + || (last === '"' || last === "'" || last === '`') + ) + && first !== last + ) { + throw new $SyntaxError('property names with quotes must have matching quotes'); + } + if (part === 'constructor' || !isOwn) { + skipFurtherCaching = true; + } - /** - * Abstract buffered block algorithm template. - * - * The property blockSize must be implemented in a concrete subtype. - * - * @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0 - */ - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({ - /** - * Resets this block algorithm's data buffer to its initial state. - * - * @example - * - * bufferedBlockAlgorithm.reset(); - */ - reset: function reset() { - // Initial values - this._data = new WordArray.init(); - this._nDataBytes = 0; - }, - /** - * Adds new data to this block algorithm's buffer. - * - * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8. - * - * @example - * - * bufferedBlockAlgorithm._append('data'); - * bufferedBlockAlgorithm._append(wordArray); - */ - _append: function _append(data) { - // Convert string to WordArray, else assume WordArray already - if (typeof data == 'string') { - data = Utf8.parse(data); - } + intrinsicBaseName += '.' + part; + intrinsicRealName = '%' + intrinsicBaseName + '%'; - // Append - this._data.concat(data); - this._nDataBytes += data.sigBytes; - }, - /** - * Processes available data blocks. - * - * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype. - * - * @param {boolean} doFlush Whether all blocks and partial blocks should be processed. - * - * @return {WordArray} The processed data. - * - * @example - * - * var processedData = bufferedBlockAlgorithm._process(); - * var processedData = bufferedBlockAlgorithm._process(!!'flush'); - */ - _process: function _process(doFlush) { - var processedWords; + if (hasOwn(INTRINSICS, intrinsicRealName)) { + value = INTRINSICS[intrinsicRealName]; + } else if (value != null) { + if (!(part in value)) { + if (!allowMissing) { + throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.'); + } + return void undefined; + } + if ($gOPD && (i + 1) >= parts.length) { + var desc = $gOPD(value, part); + isOwn = !!desc; - // Shortcuts - var data = this._data; - var dataWords = data.words; - var dataSigBytes = data.sigBytes; - var blockSize = this.blockSize; - var blockSizeBytes = blockSize * 4; + // By convention, when a data property is converted to an accessor + // property to emulate a data property that does not suffer from + // the override mistake, that accessor's getter is marked with + // an `originalValue` property. Here, when we detect this, we + // uphold the illusion by pretending to see that original data + // property, i.e., returning the value rather than the getter + // itself. + if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { + value = desc.get; + } else { + value = value[part]; + } + } else { + isOwn = hasOwn(value, part); + value = value[part]; + } - // Count blocks ready - var nBlocksReady = dataSigBytes / blockSizeBytes; - if (doFlush) { - // Round up to include partial blocks - nBlocksReady = Math.ceil(nBlocksReady); - } else { - // Round down to include only full blocks, - // less the number of blocks that must remain in the buffer - nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0); - } + if (isOwn && !skipFurtherCaching) { + INTRINSICS[intrinsicRealName] = value; + } + } + } + return value; +}; - // Count words ready - var nWordsReady = nBlocksReady * blockSize; - // Count bytes ready - var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes); +/***/ }), - // Process blocks - if (nWordsReady) { - for (var offset = 0; offset < nWordsReady; offset += blockSize) { - // Perform concrete-algorithm logic - this._doProcessBlock(dataWords, offset); - } +/***/ 33766: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Remove processed words - processedWords = dataWords.splice(0, nWordsReady); - data.sigBytes -= nBytesReady; - } +"use strict"; - // Return processed words - return new WordArray.init(processedWords, nBytesReady); - }, - /** - * Creates a copy of this object. - * - * @return {Object} The clone. - * - * @example - * - * var clone = bufferedBlockAlgorithm.clone(); - */ - clone: function clone() { - var clone = Base.clone.call(this); - clone._data = this._data.clone(); - return clone; - }, - _minBufferSize: 0 - }); - /** - * Abstract hasher template. - * - * @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits) - */ - var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - */ - cfg: Base.extend(), - /** - * Initializes a newly created hasher. - * - * @param {Object} cfg (Optional) The configuration options to use for this hash computation. - * - * @example - * - * var hasher = CryptoJS.algo.SHA256.create(); - */ - init: function init(cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); +var $Object = __webpack_require__(75846); - // Set initial values - this.reset(); - }, - /** - * Resets this hasher to its initial state. - * - * @example - * - * hasher.reset(); - */ - reset: function reset() { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); +/** @type {import('./Object.getPrototypeOf')} */ +module.exports = $Object.getPrototypeOf || null; - // Perform concrete-hasher logic - this._doReset(); - }, - /** - * Updates this hasher with a message. - * - * @param {WordArray|string} messageUpdate The message to append. - * - * @return {Hasher} This hasher. - * - * @example - * - * hasher.update('message'); - * hasher.update(wordArray); - */ - update: function update(messageUpdate) { - // Append - this._append(messageUpdate); - // Update the hash - this._process(); +/***/ }), - // Chainable - return this; - }, - /** - * Finalizes the hash computation. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} messageUpdate (Optional) A final message update. - * - * @return {WordArray} The hash. - * - * @example - * - * var hash = hasher.finalize(); - * var hash = hasher.finalize('message'); - * var hash = hasher.finalize(wordArray); - */ - finalize: function finalize(messageUpdate) { - // Final message update - if (messageUpdate) { - this._append(messageUpdate); - } +/***/ 86822: +/***/ (function(module) { - // Perform concrete-hasher logic - var hash = this._doFinalize(); - return hash; - }, - blockSize: 512 / 32, - /** - * Creates a shortcut function to a hasher's object interface. - * - * @param {Hasher} hasher The hasher to create a helper for. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256); - */ - _createHelper: function _createHelper(hasher) { - return function (message, cfg) { - return new hasher.init(cfg).finalize(message); - }; - }, - /** - * Creates a shortcut function to the HMAC's object interface. - * - * @param {Hasher} hasher The hasher to use in this HMAC helper. - * - * @return {Function} The shortcut function. - * - * @static - * - * @example - * - * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256); - */ - _createHmacHelper: function _createHmacHelper(hasher) { - return function (message, key) { - return new C_algo.HMAC.init(hasher, key).finalize(message); - }; - } - }); +"use strict"; + + +/** @type {import('./Reflect.getPrototypeOf')} */ +module.exports = (typeof Reflect !== 'undefined' && Reflect.getPrototypeOf) || null; - /** - * Algorithm namespace. - */ - var C_algo = C.algo = {}; - return C; - }(Math); - return CryptoJS; -}); /***/ }), -/***/ 48461: +/***/ 87106: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var keysShim; -if (!Object.keys) { - // modified from https://github.com/es-shims/es5-shim - var has = Object.prototype.hasOwnProperty; - var toStr = Object.prototype.toString; - var isArgs = __webpack_require__(76515); // eslint-disable-line global-require - var isEnumerable = Object.prototype.propertyIsEnumerable; - var hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString'); - var hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype'); - var dontEnums = [ - 'toString', - 'toLocaleString', - 'valueOf', - 'hasOwnProperty', - 'isPrototypeOf', - 'propertyIsEnumerable', - 'constructor' - ]; - var equalsConstructorPrototype = function (o) { - var ctor = o.constructor; - return ctor && ctor.prototype === o; - }; - var excludedKeys = { - $applicationCache: true, - $console: true, - $external: true, - $frame: true, - $frameElement: true, - $frames: true, - $innerHeight: true, - $innerWidth: true, - $onmozfullscreenchange: true, - $onmozfullscreenerror: true, - $outerHeight: true, - $outerWidth: true, - $pageXOffset: true, - $pageYOffset: true, - $parent: true, - $scrollLeft: true, - $scrollTop: true, - $scrollX: true, - $scrollY: true, - $self: true, - $webkitIndexedDB: true, - $webkitStorageInfo: true, - $window: true - }; - var hasAutomationEqualityBug = (function () { - /* global window */ - if (typeof window === 'undefined') { return false; } - for (var k in window) { - try { - if (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') { - try { - equalsConstructorPrototype(window[k]); - } catch (e) { - return true; - } - } - } catch (e) { - return true; +var reflectGetProto = __webpack_require__(86822); +var originalGetProto = __webpack_require__(33766); + +var getDunderProto = __webpack_require__(89302); + +/** @type {import('.')} */ +module.exports = reflectGetProto + ? function getProto(O) { + // @ts-expect-error TS can't narrow inside a closure, for some reason + return reflectGetProto(O); + } + : originalGetProto + ? function getProto(O) { + if (!O || (typeof O !== 'object' && typeof O !== 'function')) { + throw new TypeError('getProto: not an object'); } + // @ts-expect-error TS can't narrow inside a closure, for some reason + return originalGetProto(O); } - return false; - }()); - var equalsConstructorPrototypeIfNotBuggy = function (o) { - /* global window */ - if (typeof window === 'undefined' || !hasAutomationEqualityBug) { - return equalsConstructorPrototype(o); - } - try { - return equalsConstructorPrototype(o); - } catch (e) { - return false; - } - }; + : getDunderProto + ? function getProto(O) { + // @ts-expect-error TS can't narrow inside a closure, for some reason + return getDunderProto(O); + } + : null; - keysShim = function keys(object) { - var isObject = object !== null && typeof object === 'object'; - var isFunction = toStr.call(object) === '[object Function]'; - var isArguments = isArgs(object); - var isString = isObject && toStr.call(object) === '[object String]'; - var theKeys = []; - if (!isObject && !isFunction && !isArguments) { - throw new TypeError('Object.keys called on a non-object'); - } +/***/ }), - var skipProto = hasProtoEnumBug && isFunction; - if (isString && object.length > 0 && !has.call(object, 0)) { - for (var i = 0; i < object.length; ++i) { - theKeys.push(String(i)); - } - } +/***/ 85567: +/***/ (function(module) { - if (isArguments && object.length > 0) { - for (var j = 0; j < object.length; ++j) { - theKeys.push(String(j)); - } - } else { - for (var name in object) { - if (!(skipProto && name === 'prototype') && has.call(object, name)) { - theKeys.push(String(name)); - } - } - } +"use strict"; - if (hasDontEnumBug) { - var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object); - for (var k = 0; k < dontEnums.length; ++k) { - if (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) { - theKeys.push(dontEnums[k]); - } - } - } - return theKeys; - }; -} -module.exports = keysShim; +/** @type {import('./gOPD')} */ +module.exports = Object.getOwnPropertyDescriptor; /***/ }), -/***/ 48569: +/***/ 68109: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -// a transform stream is a readable/writable stream where you do -// something with the data. Sometimes it's called a "filter", -// but that's not a great name for it, since that implies a thing where -// some bits pass through, and others are simply ignored. (That would -// be a valid example of a transform, of course.) -// -// While the output is causally related to the input, it's not a -// necessarily symmetric or synchronous transformation. For example, -// a zlib stream might take multiple plain-text writes(), and then -// emit a single compressed chunk some time in the future. -// -// Here's how this works: -// -// The Transform stream has all the aspects of the readable and writable -// stream classes. When you write(chunk), that calls _write(chunk,cb) -// internally, and returns false if there's a lot of pending writes -// buffered up. When you call read(), that calls _read(n) until -// there's enough pending readable data buffered up. -// -// In a transform stream, the written data is placed in a buffer. When -// _read(n) is called, it transforms the queued up data, calling the -// buffered _write cb's as it consumes chunks. If consuming a single -// written chunk would result in multiple output chunks, then the first -// outputted bit calls the readcb, and subsequent chunks just go into -// the read buffer, and will cause it to emit 'readable' if necessary. -// -// This way, back-pressure is actually determined by the reading side, -// since _read has to be called to start processing a new chunk. However, -// a pathological inflate type of transform can cause excessive buffering -// here. For example, imagine a stream where every byte of input is -// interpreted as an integer from 0-255, and then results in that many -// bytes of output. Writing the 4 bytes {ff,ff,ff,ff} would result in -// 1kb of data being output. In this case, you could write a very small -// amount of input, and end up with a very large amount of output. In -// such a pathological inflating mechanism, there'd be no way to tell -// the system to stop doing the transform. A single 4MB write could -// cause the system to run out of memory. -// -// However, even in such a pathological case, only a single written chunk -// would be consumed, and then the rest would wait (un-transformed) until -// the results of the previous transformed chunk were consumed. +/** @type {import('.')} */ +var $gOPD = __webpack_require__(85567); -module.exports = Transform; -var _require$codes = (__webpack_require__(83797)/* .codes */ .F), - ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, - ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, - ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING, - ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0; -var Duplex = __webpack_require__(14903); -__webpack_require__(89784)(Transform, Duplex); -function afterTransform(er, data) { - var ts = this._transformState; - ts.transforming = false; - var cb = ts.writecb; - if (cb === null) { - return this.emit('error', new ERR_MULTIPLE_CALLBACK()); - } - ts.writechunk = null; - ts.writecb = null; - if (data != null) - // single equals check for both `null` and `undefined` - this.push(data); - cb(er); - var rs = this._readableState; - rs.reading = false; - if (rs.needReadable || rs.length < rs.highWaterMark) { - this._read(rs.highWaterMark); - } +if ($gOPD) { + try { + $gOPD([], 'length'); + } catch (e) { + // IE 8 has a broken gOPD + $gOPD = null; + } } -function Transform(options) { - if (!(this instanceof Transform)) return new Transform(options); - Duplex.call(this, options); - this._transformState = { - afterTransform: afterTransform.bind(this), - needTransform: false, - transforming: false, - writecb: null, - writechunk: null, - writeencoding: null - }; - // start out asking for a readable event once data is transformed. - this._readableState.needReadable = true; +module.exports = $gOPD; - // we have implemented the _read method, and done the other things - // that Readable wants before the first _read call, so unset the - // sync guard flag. - this._readableState.sync = false; - if (options) { - if (typeof options.transform === 'function') this._transform = options.transform; - if (typeof options.flush === 'function') this._flush = options.flush; - } - // When the writable side finishes, then flush out anything remaining. - this.on('prefinish', prefinish); -} -function prefinish() { - var _this = this; - if (typeof this._flush === 'function' && !this._readableState.destroyed) { - this._flush(function (er, data) { - done(_this, er, data); - }); - } else { - done(this, null, null); - } -} -Transform.prototype.push = function (chunk, encoding) { - this._transformState.needTransform = false; - return Duplex.prototype.push.call(this, chunk, encoding); -}; +/***/ }), -// This is the part where you do stuff! -// override this function in implementation classes. -// 'chunk' is an input chunk. -// -// Call `push(newChunk)` to pass along transformed output -// to the readable side. You may call 'push' zero or more times. -// -// Call `cb(err)` when you are done with this chunk. If you pass -// an error, then that'll put the hurt on the whole operation. If you -// never call cb(), then you'll never get another chunk. -Transform.prototype._transform = function (chunk, encoding, cb) { - cb(new ERR_METHOD_NOT_IMPLEMENTED('_transform()')); -}; -Transform.prototype._write = function (chunk, encoding, cb) { - var ts = this._transformState; - ts.writecb = cb; - ts.writechunk = chunk; - ts.writeencoding = encoding; - if (!ts.transforming) { - var rs = this._readableState; - if (ts.needTransform || rs.needReadable || rs.length < rs.highWaterMark) this._read(rs.highWaterMark); - } +/***/ 18890: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var $defineProperty = __webpack_require__(56649); + +var hasPropertyDescriptors = function hasPropertyDescriptors() { + return !!$defineProperty; }; -// Doesn't matter what the args are here. -// _transform does all the work. -// That we got here means that the readable side wants more data. -Transform.prototype._read = function (n) { - var ts = this._transformState; - if (ts.writechunk !== null && !ts.transforming) { - ts.transforming = true; - this._transform(ts.writechunk, ts.writeencoding, ts.afterTransform); - } else { - // mark that we need a transform, so that any data that comes in - // will get processed, now that we've asked for it. - ts.needTransform = true; - } +hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() { + // node v0.6 has a bug where array lengths can be Set but not Defined + if (!$defineProperty) { + return null; + } + try { + return $defineProperty([], 'length', { value: 1 }).length !== 1; + } catch (e) { + // In Firefox 4-22, defining length on an array throws an exception. + return true; + } }; -Transform.prototype._destroy = function (err, cb) { - Duplex.prototype._destroy.call(this, err, function (err2) { - cb(err2); - }); + +module.exports = hasPropertyDescriptors; + + +/***/ }), + +/***/ 73257: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + +"use strict"; + + +var origSymbol = typeof Symbol !== 'undefined' && Symbol; +var hasSymbolSham = __webpack_require__(12843); + +/** @type {import('.')} */ +module.exports = function hasNativeSymbols() { + if (typeof origSymbol !== 'function') { return false; } + if (typeof Symbol !== 'function') { return false; } + if (typeof origSymbol('foo') !== 'symbol') { return false; } + if (typeof Symbol('bar') !== 'symbol') { return false; } + + return hasSymbolSham(); }; -function done(stream, er, data) { - if (er) return stream.emit('error', er); - if (data != null) - // single equals check for both `null` and `undefined` - stream.push(data); - // TODO(BridgeAR): Write a test for these two error cases - // if there's nothing in the write buffer, then that means - // that nothing more will ever be provided - if (stream._writableState.length) throw new ERR_TRANSFORM_WITH_LENGTH_0(); - if (stream._transformState.transforming) throw new ERR_TRANSFORM_ALREADY_TRANSFORMING(); - return stream.push(null); -} -/***/ }), +/***/ }), + +/***/ 12843: +/***/ (function(module) { + +"use strict"; + + +/** @type {import('./shams')} */ +/* eslint complexity: [2, 18], max-statements: [2, 33] */ +module.exports = function hasSymbols() { + if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; } + if (typeof Symbol.iterator === 'symbol') { return true; } + + /** @type {{ [k in symbol]?: unknown }} */ + var obj = {}; + var sym = Symbol('test'); + var symObj = Object(sym); + if (typeof sym === 'string') { return false; } + + if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; } + if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; } + + // temp disabled per https://github.com/ljharb/object.assign/issues/17 + // if (sym instanceof Symbol) { return false; } + // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4 + // if (!(symObj instanceof Symbol)) { return false; } + + // if (typeof Symbol.prototype.toString !== 'function') { return false; } + // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; } + + var symVal = 42; + obj[sym] = symVal; + for (var _ in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop + if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; } + + if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; } -/***/ 48914: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + var syms = Object.getOwnPropertySymbols(obj); + if (syms.length !== 1 || syms[0] !== sym) { return false; } -var DESCRIPTORS = __webpack_require__(15567); -var definePropertyModule = __webpack_require__(95892); -var createPropertyDescriptor = __webpack_require__(97841); + if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; } -module.exports = DESCRIPTORS ? function (object, key, value) { - return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); -} : function (object, key, value) { - object[key] = value; - return object; + if (typeof Object.getOwnPropertyDescriptor === 'function') { + // eslint-disable-next-line no-extra-parens + var descriptor = /** @type {PropertyDescriptor} */ (Object.getOwnPropertyDescriptor(obj, sym)); + if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; } + } + + return true; }; /***/ }), -/***/ 49063: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 26626: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var $filter = (__webpack_require__(91102).filter); -var arrayMethodHasSpeciesSupport = __webpack_require__(56280); - -var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter'); - -// `Array.prototype.filter` method -// https://tc39.es/ecma262/#sec-array.prototype.filter -// with adding support of @@species -$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { - filter: function filter(callbackfn /* , thisArg */) { - return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); - } -}); - - -/***/ }), -/***/ 49109: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +var hasSymbols = __webpack_require__(12843); -// TODO: Remove from `core-js@4` -__webpack_require__(64384); +/** @type {import('.')} */ +module.exports = function hasToStringTagShams() { + return hasSymbols() && !!Symbol.toStringTag; +}; /***/ }), -/***/ 49261: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 55215: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var newPromiseCapabilityModule = __webpack_require__(56614); -var perform = __webpack_require__(61900); -// `Promise.try` method -// https://github.com/tc39/proposal-promise-try -$({ target: 'Promise', stat: true }, { - 'try': function (callbackfn) { - var promiseCapability = newPromiseCapabilityModule.f(this); - var result = perform(callbackfn); - (result.error ? promiseCapability.reject : promiseCapability.resolve)(result.value); - return promiseCapability.promise; - } -}); +var call = Function.prototype.call; +var $hasOwn = Object.prototype.hasOwnProperty; +var bind = __webpack_require__(5049); + +/** @type {import('.')} */ +module.exports = bind.call(call, $hasOwn); /***/ }), -/***/ 49820: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 35143: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { "use strict"; -/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */ -/* eslint-disable regexp/no-useless-quantifier -- testing */ -var call = __webpack_require__(2834); -var uncurryThis = __webpack_require__(38347); -var toString = __webpack_require__(25096); -var regexpFlags = __webpack_require__(21182); -var stickyHelpers = __webpack_require__(74846); -var shared = __webpack_require__(464); -var create = __webpack_require__(10819); -var getInternalState = (__webpack_require__(70172).get); -var UNSUPPORTED_DOT_ALL = __webpack_require__(84030); -var UNSUPPORTED_NCG = __webpack_require__(97739); +var Buffer = (__webpack_require__(93143).Buffer) -var nativeReplace = shared('native-string-replace', String.prototype.replace); -var nativeExec = RegExp.prototype.exec; -var patchedExec = nativeExec; -var charAt = uncurryThis(''.charAt); -var indexOf = uncurryThis(''.indexOf); -var replace = uncurryThis(''.replace); -var stringSlice = uncurryThis(''.slice); +// 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. -var UPDATES_LAST_INDEX_WRONG = (function () { - var re1 = /a/; - var re2 = /b*/g; - call(nativeExec, re1, 'a'); - call(nativeExec, re2, 'a'); - return re1.lastIndex !== 0 || re2.lastIndex !== 0; -})(); +exports._dbcs = DBCSCodec -var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET; +var UNASSIGNED = -1 +var GB18030_CODE = -2 +var SEQ_START = -10 +var NODE_START = -1000 +var UNASSIGNED_NODE = new Array(0x100) +var DEF_CHAR = -1 -// nonparticipating capturing group, copied from es5-shim's String#split patch. -var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined; +for (var i = 0; i < 0x100; i++) { UNASSIGNED_NODE[i] = UNASSIGNED } -var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG; +// 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.") } -if (PATCH) { - // eslint-disable-next-line max-statements -- TODO - patchedExec = function exec(string) { - var re = this; - var state = getInternalState(re); - var str = toString(string); - var raw = state.raw; - var result, reCopy, lastIndex, match, i, object, group; + // Load tables. + var mappingTable = codecOptions.table() - if (raw) { - raw.lastIndex = re.lastIndex; - result = call(patchedExec, raw, str); - re.lastIndex = raw.lastIndex; - return result; - } + // Decode tables: MBCS -> Unicode. - var groups = state.groups; - var sticky = UNSUPPORTED_Y && re.sticky; - var flags = call(regexpFlags, re); - var source = re.source; - var charsAdded = 0; - var strCopy = str; + // 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. - if (sticky) { - flags = replace(flags, 'y', ''); - if (indexOf(flags, 'g') === -1) { - flags += 'g'; - } + // Sometimes a MBCS char corresponds to a sequence of unicode chars. We store them as arrays of integers here. + this.decodeTableSeq = [] - strCopy = stringSlice(str, re.lastIndex); - // Support anchored sticky behavior. - if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\n')) { - source = '(?: ' + source + ')'; - strCopy = ' ' + strCopy; - charsAdded++; - } - // ^(? + rx + ) is needed, in combination with some str slicing, to - // simulate the 'y' flag. - reCopy = new RegExp('^(?:' + source + ')', flags); - } + // 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]) } - if (NPCG_INCLUDED) { - reCopy = new RegExp('^' + source + '$(?!\\s)', flags); - } - if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex; + // Load & create GB18030 tables when needed. + if (typeof codecOptions.gb18030 === "function") { + this.gb18030 = codecOptions.gb18030() // Load GB18030 ranges. - match = call(nativeExec, sticky ? reCopy : re, strCopy); + // Add GB18030 common decode nodes. + var commonThirdByteNodeIdx = this.decodeTables.length + this.decodeTables.push(UNASSIGNED_NODE.slice(0)) - if (sticky) { - if (match) { - match.input = stringSlice(match.input, charsAdded); - match[0] = stringSlice(match[0], charsAdded); - match.index = re.lastIndex; - re.lastIndex += match[0].length; - } else re.lastIndex = 0; - } else if (UPDATES_LAST_INDEX_WRONG && match) { - re.lastIndex = re.global ? match.index + match[0].length : lastIndex; - } - if (NPCG_INCLUDED && match && match.length > 1) { - // Fix browsers whose `exec` methods don't consistently return `undefined` - // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/ - call(nativeReplace, match[0], reCopy, function () { - for (i = 1; i < arguments.length - 2; i++) { - if (arguments[i] === undefined) match[i] = undefined; + 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") } - }); - } - if (match && groups) { - match.groups = object = create(null); - for (i = 0; i < groups.length; i++) { - group = groups[i]; - object[group[0]] = match[group[1]]; + 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 } + } + } } } + } - return match; - }; -} + this.defaultCharUnicode = iconv.defaultCharUnicode -module.exports = patchedExec; + // 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 = [] -/***/ 50194: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + // 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 } + } + } + } -var call = __webpack_require__(2834); -var anObject = __webpack_require__(34984); -var getMethod = __webpack_require__(51839); + // Use decode trie to recursively fill out encode tables. + this._fillEncodeTable(0, 0, skipEncodeChars) -module.exports = function (iterator, kind, value) { - var innerResult, innerError; - anObject(iterator); - try { - innerResult = getMethod(iterator, 'return'); - if (!innerResult) { - if (kind === 'throw') throw value; - return value; + // 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]) } } - innerResult = call(innerResult, iterator); - } catch (error) { - innerError = true; - innerResult = error; } - if (kind === 'throw') throw value; - if (innerError) throw innerResult; - anObject(innerResult); - return value; -}; + 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) +} -/***/ }), +DBCSCodec.prototype.encoder = DBCSEncoder +DBCSCodec.prototype.decoder = DBCSDecoder -/***/ 50477: -/***/ (function() { +// 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) } -/* (ignored) */ + 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 +} -/***/ 50716: -/***/ (function(module) { +DBCSCodec.prototype._addDecodeChunk = function (chunk) { + // First element of chunk is the hex mbcs code where we start. + var curAddr = parseInt(chunk[0], 16) -"use strict"; + // Choose the decoding node where we'll write our chars. + var writeTable = this._getDecodeTrieNode(curAddr) + curAddr = curAddr & 0xFF + // 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 (code >= 0xD800 && code < 0xDC00) { // Decode surrogate + var codeTrail = part.charCodeAt(l++) + if (codeTrail >= 0xDC00 && 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 (code > 0x0FF0 && 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. -/** @type {import('./abs')} */ -module.exports = Math.abs; + 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] +} -/***/ }), +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 } +} -/***/ 51270: -/***/ (function(module, exports, __webpack_require__) { +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 -"use strict"; + 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) + } + // 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 } + } + } -__webpack_require__(39081); -__webpack_require__(20731); -__webpack_require__(23913); -__webpack_require__(14032); -__webpack_require__(57114); -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(82747)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - /** - * Cipher core components. - */ - CryptoJS.lib.Cipher || function (undefined) { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Base = C_lib.Base; - var WordArray = C_lib.WordArray; - var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm; - var C_enc = C.enc; - var Utf8 = C_enc.Utf8; - var Base64 = C_enc.Base64; - var C_algo = C.algo; - var EvpKDF = C_algo.EvpKDF; + // Set the leaf to given dbcsCode. + uCode = seq[seq.length - 1] + node[uCode] = dbcsCode +} - /** - * Abstract base cipher template. - * - * @property {number} keySize This cipher's key size. Default: 4 (128 bits) - * @property {number} ivSize This cipher's IV size. Default: 4 (128 bits) - * @property {number} _ENC_XFORM_MODE A constant representing encryption mode. - * @property {number} _DEC_XFORM_MODE A constant representing decryption mode. - */ - var Cipher = C_lib.Cipher = BufferedBlockAlgorithm.extend({ - /** - * Configuration options. - * - * @property {WordArray} iv The IV to use for this operation. - */ - cfg: Base.extend(), - /** - * Creates this cipher in encryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray }); - */ - createEncryptor: function createEncryptor(key, cfg) { - return this.create(this._ENC_XFORM_MODE, key, cfg); - }, - /** - * Creates this cipher in decryption mode. - * - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {Cipher} A cipher instance. - * - * @static - * - * @example - * - * var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray }); - */ - createDecryptor: function createDecryptor(key, cfg) { - return this.create(this._DEC_XFORM_MODE, key, cfg); - }, - /** - * Initializes a newly created cipher. - * - * @param {number} xformMode Either the encryption or decryption transormation mode constant. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @example - * - * var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray }); - */ - init: function init(xformMode, key, cfg) { - // Apply config defaults - this.cfg = this.cfg.extend(cfg); +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 } + + 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 +} - // Store transform mode and key - this._xformMode = xformMode; - this._key = key; +// == Encoder ================================================================== - // Set initial values - this.reset(); - }, - /** - * Resets this cipher to its initial state. - * - * @example - * - * cipher.reset(); - */ - reset: function reset() { - // Reset data buffer - BufferedBlockAlgorithm.reset.call(this); +function DBCSEncoder (options, codec) { + // Encoder state + this.leadSurrogate = -1 + this.seqObj = undefined - // Perform concrete-cipher logic - this._doReset(); - }, - /** - * Adds data to be encrypted or decrypted. - * - * @param {WordArray|string} dataUpdate The data to encrypt or decrypt. - * - * @return {WordArray} The data after processing. - * - * @example - * - * var encrypted = cipher.process('data'); - * var encrypted = cipher.process(wordArray); - */ - process: function process(dataUpdate) { - // Append - this._append(dataUpdate); + // Static data + this.encodeTable = codec.encodeTable + this.encodeTableSeq = codec.encodeTableSeq + this.defaultCharSingleByte = codec.defCharSB + this.gb18030 = codec.gb18030 +} - // Process available blocks - return this._process(); - }, - /** - * Finalizes the encryption or decryption process. - * Note that the finalize operation is effectively a destructive, read-once operation. - * - * @param {WordArray|string} dataUpdate The final data to encrypt or decrypt. - * - * @return {WordArray} The data after final processing. - * - * @example - * - * var encrypted = cipher.finalize(); - * var encrypted = cipher.finalize('data'); - * var encrypted = cipher.finalize(wordArray); - */ - finalize: function finalize(dataUpdate) { - // Final data update - if (dataUpdate) { - this._append(dataUpdate); - } +DBCSEncoder.prototype.write = function (str) { + var newBuf = Buffer.alloc(str.length * (this.gb18030 ? 4 : 3)) + var leadSurrogate = this.leadSurrogate + var seqObj = this.seqObj + var nextChar = -1 + var i = 0; var j = 0 - // Perform concrete-cipher logic - var finalProcessedData = this._doFinalize(); - return finalProcessedData; - }, - keySize: 128 / 32, - ivSize: 128 / 32, - _ENC_XFORM_MODE: 1, - _DEC_XFORM_MODE: 2, - /** - * Creates shortcut functions to a cipher's object interface. - * - * @param {Cipher} cipher The cipher to create a helper for. - * - * @return {Object} An object with encrypt and decrypt shortcut functions. - * - * @static - * - * @example - * - * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES); - */ - _createHelper: function () { - function selectCipherStrategy(key) { - if (typeof key == 'string') { - return PasswordBasedCipher; - } else { - return SerializableCipher; - } + 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 + } + + // 1. Handle surrogates. + if (uCode >= 0xD800 && 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 } - return function (cipher) { - return { - encrypt: function encrypt(message, key, cfg) { - return selectCipherStrategy(key).encrypt(cipher, message, key, cfg); - }, - decrypt: function decrypt(ciphertext, key, cfg) { - return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg); - } - }; - }; - }() - }); + } 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 + } - /** - * Abstract base stream cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 1 (32 bits) - */ - var StreamCipher = C_lib.StreamCipher = Cipher.extend({ - _doFinalize: function _doFinalize() { - // Process partial blocks - var finalProcessedBlocks = this._process(!!'flush'); - return finalProcessedBlocks; - }, - blockSize: 1 - }); + // 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 + } else if (typeof resCode === "number") { // Sequence finished. Write it. + dbcsCode = resCode + } 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. + } 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] } - /** - * Mode namespace. - */ - var C_mode = C.mode = {}; + if (dbcsCode <= SEQ_START) { // Sequence start + seqObj = this.encodeTableSeq[SEQ_START - dbcsCode] + continue + } - /** - * Abstract base block cipher mode template. - */ - var BlockCipherMode = C_lib.BlockCipherMode = Base.extend({ - /** - * Creates this mode for encryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words); - */ - createEncryptor: function createEncryptor(cipher, iv) { - return this.Encryptor.create(cipher, iv); - }, - /** - * Creates this mode for decryption. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @static - * - * @example - * - * var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words); - */ - createDecryptor: function createDecryptor(cipher, iv) { - return this.Decryptor.create(cipher, iv); - }, - /** - * Initializes a newly created mode. - * - * @param {Cipher} cipher A block cipher instance. - * @param {Array} iv The IV words. - * - * @example - * - * var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words); - */ - init: function init(cipher, iv) { - this._cipher = cipher; - this._iv = iv; + 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 + } } - }); + } - /** - * Cipher Block Chaining mode. - */ - var CBC = C_mode.CBC = function () { - /** - * Abstract base CBC mode. - */ - var CBC = BlockCipherMode.extend(); + // 3. Write dbcsCode character. + if (dbcsCode === UNASSIGNED) { dbcsCode = this.defaultCharSingleByte } - /** - * CBC encryptor. - */ - CBC.Encryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function processBlock(words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; + 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 + } + } - // XOR and encrypt - xorBlock.call(this, words, offset, blockSize); - cipher.encryptBlock(words, offset); + this.seqObj = seqObj + this.leadSurrogate = leadSurrogate + return newBuf.slice(0, j) +} - // Remember this block to use with next block - this._prevBlock = words.slice(offset, offset + blockSize); - } - }); +DBCSEncoder.prototype.end = function () { + if (this.leadSurrogate === -1 && this.seqObj === undefined) { return } // All clean. Most often case. - /** - * CBC decryptor. - */ - CBC.Decryptor = CBC.extend({ - /** - * Processes the data block at offset. - * - * @param {Array} words The data words to operate on. - * @param {number} offset The offset where the block starts. - * - * @example - * - * mode.processBlock(data.words, offset); - */ - processBlock: function processBlock(words, offset) { - // Shortcuts - var cipher = this._cipher; - var blockSize = cipher.blockSize; + var newBuf = Buffer.alloc(10); var j = 0 - // Remember this block to use with next block - var thisBlock = words.slice(offset, offset + blockSize); + 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 + } - // Decrypt and XOR - cipher.decryptBlock(words, offset); - xorBlock.call(this, words, offset, blockSize); + if (this.leadSurrogate !== -1) { + // Incomplete surrogate pair - only lead surrogate found. + newBuf[j++] = this.defaultCharSingleByte + this.leadSurrogate = -1 + } - // This block becomes the previous block - this._prevBlock = thisBlock; - } - }); - function xorBlock(words, offset, blockSize) { - var block; + return newBuf.slice(0, j) +} - // Shortcut - var iv = this._iv; +// Export for testing +DBCSEncoder.prototype.findIdx = findIdx - // Choose mixing block - if (iv) { - block = iv; +// == Decoder ================================================================== - // Remove IV for subsequent blocks - this._iv = undefined; - } else { - block = this._prevBlock; - } +function DBCSDecoder (options, codec) { + // Decoder state + this.nodeIdx = 0 + this.prevBytes = [] - // XOR blocks - for (var i = 0; i < blockSize; i++) { - words[offset + i] ^= block[i]; - } + // Static data + this.decodeTables = codec.decodeTables + this.decodeTableSeq = codec.decodeTableSeq + this.defaultCharUnicode = codec.defaultCharUnicode + this.gb18030 = codec.gb18030 +} + +DBCSDecoder.prototype.write = function (buf) { + var newBuf = Buffer.alloc(buf.length * 2) + var nodeIdx = this.nodeIdx + var prevBytes = this.prevBytes; var prevOffset = this.prevBytes.length + var seqStart = -this.prevBytes.length // idx of the start of current parsed sequence. + var uCode + + for (var i = 0, j = 0; i < buf.length; i++) { + var curByte = (i >= 0) ? buf[i] : prevBytes[i + prevOffset] + + // Lookup in current trie node. + var uCode = this.decodeTables[nodeIdx][curByte] + + 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) } - return CBC; - }(); + 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) } - /** - * Padding namespace. - */ - var C_pad = C.pad = {}; + // 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 - /** - * PKCS #5/7 padding strategy. - */ - var Pkcs7 = C_pad.Pkcs7 = { - /** - * Pads data using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to pad. - * @param {number} blockSize The multiple that the data should be padded to. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.pad(wordArray, 4); - */ - pad: function pad(data, blockSize) { - // Shortcut - var blockSizeBytes = blockSize * 4; + uCode = 0xDC00 | (uCode & 0x3FF) + } + newBuf[j++] = uCode & 0xFF + newBuf[j++] = uCode >> 8 - // Count padding bytes - var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes; + // Reset trie node. + nodeIdx = 0; seqStart = i + 1 + } - // Create padding word - var paddingWord = nPaddingBytes << 24 | nPaddingBytes << 16 | nPaddingBytes << 8 | nPaddingBytes; + this.nodeIdx = nodeIdx + this.prevBytes = (seqStart >= 0) + ? Array.prototype.slice.call(buf, seqStart) + : prevBytes.slice(seqStart + prevOffset).concat(Array.prototype.slice.call(buf)) - // Create padding - var paddingWords = []; - for (var i = 0; i < nPaddingBytes; i += 4) { - paddingWords.push(paddingWord); - } - var padding = WordArray.create(paddingWords, nPaddingBytes); + return newBuf.slice(0, j).toString("ucs2") +} - // Add padding - data.concat(padding); - }, - /** - * Unpads data that had been padded using the algorithm defined in PKCS #5/7. - * - * @param {WordArray} data The data to unpad. - * - * @static - * - * @example - * - * CryptoJS.pad.Pkcs7.unpad(wordArray); - */ - unpad: function unpad(data) { - // Get number of padding bytes from last byte - var nPaddingBytes = data.words[data.sigBytes - 1 >>> 2] & 0xff; +DBCSDecoder.prototype.end = function () { + var ret = "" - // Remove padding - data.sigBytes -= nPaddingBytes; - } - }; + // 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) - /** - * Abstract base block cipher template. - * - * @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 4 (128 bits) - */ - var BlockCipher = C_lib.BlockCipher = Cipher.extend({ - /** - * Configuration options. - * - * @property {Mode} mode The block mode to use. Default: CBC - * @property {Padding} padding The padding strategy to use. Default: Pkcs7 - */ - cfg: Cipher.cfg.extend({ - mode: CBC, - padding: Pkcs7 - }), - reset: function reset() { - var modeCreator; + // Parse remaining as usual. + this.prevBytes = [] + this.nodeIdx = 0 + if (bytesArr.length > 0) { ret += this.write(bytesArr) } + } - // Reset cipher - Cipher.reset.call(this); + this.prevBytes = [] + this.nodeIdx = 0 + return ret +} - // Shortcuts - var cfg = this.cfg; - var iv = cfg.iv; - var mode = cfg.mode; +// Binary search for GB18030. Returns largest i such that table[i] <= val. +function findIdx (table, val) { + if (table[0] > val) { return -1 } - // Reset block mode - if (this._xformMode == this._ENC_XFORM_MODE) { - modeCreator = mode.createEncryptor; - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */{ - modeCreator = mode.createDecryptor; - // Keep at least one block in the buffer for unpadding - this._minBufferSize = 1; - } - if (this._mode && this._mode.__creator == modeCreator) { - this._mode.init(this, iv && iv.words); - } else { - this._mode = modeCreator.call(mode, this, iv && iv.words); - this._mode.__creator = modeCreator; - } - }, - _doProcessBlock: function _doProcessBlock(words, offset) { - this._mode.processBlock(words, offset); - }, - _doFinalize: function _doFinalize() { - var finalProcessedBlocks; + var l = 0; var 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 +} - // Shortcut - var padding = this.cfg.padding; - // Finalize - if (this._xformMode == this._ENC_XFORM_MODE) { - // Pad data - padding.pad(this._data, this.blockSize); +/***/ }), - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); - } else /* if (this._xformMode == this._DEC_XFORM_MODE) */{ - // Process final blocks - finalProcessedBlocks = this._process(!!'flush'); +/***/ 90481: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - // Unpad data - padding.unpad(finalProcessedBlocks); - } - return finalProcessedBlocks; - }, - blockSize: 128 / 32 - }); +"use strict"; - /** - * A collection of cipher parameters. - * - * @property {WordArray} ciphertext The raw ciphertext. - * @property {WordArray} key The key to this ciphertext. - * @property {WordArray} iv The IV used in the ciphering operation. - * @property {WordArray} salt The salt used with a key derivation function. - * @property {Cipher} algorithm The cipher algorithm. - * @property {Mode} mode The block mode used in the ciphering operation. - * @property {Padding} padding The padding scheme used in the ciphering operation. - * @property {number} blockSize The block size of the cipher. - * @property {Format} formatter The default formatting strategy to convert this cipher params object to a string. - */ - var CipherParams = C_lib.CipherParams = Base.extend({ - /** - * Initializes a newly created cipher params object. - * - * @param {Object} cipherParams An object with any of the possible cipher parameters. - * - * @example - * - * var cipherParams = CryptoJS.lib.CipherParams.create({ - * ciphertext: ciphertextWordArray, - * key: keyWordArray, - * iv: ivWordArray, - * salt: saltWordArray, - * algorithm: CryptoJS.algo.AES, - * mode: CryptoJS.mode.CBC, - * padding: CryptoJS.pad.PKCS7, - * blockSize: 4, - * formatter: CryptoJS.format.OpenSSL - * }); - */ - init: function init(cipherParams) { - this.mixIn(cipherParams); - }, - /** - * Converts this cipher params object to a string. - * - * @param {Format} formatter (Optional) The formatting strategy to use. - * - * @return {string} The stringified cipher params. - * - * @throws Error If neither the formatter nor the default formatter is set. - * - * @example - * - * var string = cipherParams + ''; - * var string = cipherParams.toString(); - * var string = cipherParams.toString(CryptoJS.format.OpenSSL); - */ - toString: function toString(formatter) { - return (formatter || this.formatter).stringify(this); - } - }); - /** - * Format namespace. - */ - var C_format = C.format = {}; +// 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. - /** - * OpenSSL formatting strategy. - */ - var OpenSSLFormatter = C_format.OpenSSL = { - /** - * Converts a cipher params object to an OpenSSL-compatible string. - * - * @param {CipherParams} cipherParams The cipher params object. - * - * @return {string} The OpenSSL-compatible string. - * - * @static - * - * @example - * - * var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams); - */ - stringify: function stringify(cipherParams) { - var wordArray; +module.exports = { - // Shortcuts - var ciphertext = cipherParams.ciphertext; - var salt = cipherParams.salt; + // == 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) - // Format - if (salt) { - wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext); - } else { - wordArray = ciphertext; - } - return wordArray.toString(Base64); - }, - /** - * Converts an OpenSSL-compatible string to a cipher params object. - * - * @param {string} openSSLStr The OpenSSL-compatible string. - * - * @return {CipherParams} The cipher params object. - * - * @static - * - * @example - * - * var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString); - */ - parse: function parse(openSSLStr) { - var salt; + // 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 - // Parse base64 - var ciphertext = Base64.parse(openSSLStr); + shiftjis: { + type: "_dbcs", + table: function () { return __webpack_require__(40679) }, + 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", - // Shortcut - var ciphertextWords = ciphertext.words; + eucjp: { + type: "_dbcs", + table: function () { return __webpack_require__(56406) }, + encodeAdd: { "\u00a5": 0x5C, "\u203E": 0x7E } + }, - // Test for salt - if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) { - // Extract salt - salt = WordArray.create(ciphertextWords.slice(2, 4)); + // 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. - // Remove salt from ciphertext - ciphertextWords.splice(0, 4); - ciphertext.sigBytes -= 16; - } - return CipherParams.create({ - ciphertext: ciphertext, - salt: salt - }); - } - }; + // == Chinese/GBK ========================================================== + // http://en.wikipedia.org/wiki/GBK + // We mostly implement W3C recommendation: https://www.w3.org/TR/encoding/#gbk-encoder - /** - * A cipher wrapper that returns ciphertext as a serializable cipher params object. - */ - var SerializableCipher = C_lib.SerializableCipher = Base.extend({ - /** - * Configuration options. - * - * @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL - */ - cfg: Base.extend({ - format: OpenSSLFormatter - }), - /** - * Encrypts a message. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv }); - * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - encrypt: function encrypt(cipher, message, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); + // Oldest GB2312 (1981, ~7600 chars) is a subset of CP936 + gb2312: "cp936", + gb231280: "cp936", + gb23121980: "cp936", + csgb2312: "cp936", + csiso58gb231280: "cp936", + euccn: "cp936", - // Encrypt - var encryptor = cipher.createEncryptor(key, cfg); - var ciphertext = encryptor.finalize(message); + // Microsoft's CP936 is a subset and approximation of GBK. + windows936: "cp936", + ms936: "cp936", + 936: "cp936", + cp936: { + type: "_dbcs", + table: function () { return __webpack_require__(74488) } + }, - // Shortcut - var cipherCfg = encryptor.cfg; + // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other. + gbk: { + type: "_dbcs", + table: function () { return (__webpack_require__(74488).concat)(__webpack_require__(55914)) } + }, + xgbk: "gbk", + isoir58: "gbk", - // Create and return serializable cipher params - return CipherParams.create({ - ciphertext: ciphertext, - key: key, - iv: cipherCfg.iv, - algorithm: cipher, - mode: cipherCfg.mode, - padding: cipherCfg.padding, - blockSize: cipher.blockSize, - formatter: cfg.format - }); - }, - /** - * Decrypts serialized ciphertext. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {WordArray} key The key. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL }); - */ - decrypt: function decrypt(cipher, ciphertext, key, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); + // 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__(74488).concat)(__webpack_require__(55914)) }, + gb18030: function () { return __webpack_require__(99129) }, + encodeSkipVals: [0x80], + encodeAdd: { "€": 0xA2E3 } + }, - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); + chinese: "gb18030", - // Decrypt - var plaintext = cipher.createDecryptor(key, cfg).finalize(ciphertext.ciphertext); - return plaintext; - }, - /** - * Converts serialized ciphertext to CipherParams, - * else assumed CipherParams already and returns ciphertext unchanged. - * - * @param {CipherParams|string} ciphertext The ciphertext. - * @param {Formatter} format The formatting strategy to use to parse serialized ciphertext. - * - * @return {CipherParams} The unserialized ciphertext. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format); - */ - _parse: function _parse(ciphertext, format) { - if (typeof ciphertext == 'string') { - return format.parse(ciphertext, this); - } else { - return ciphertext; - } - } - }); + // == 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__(21166) } + }, - /** - * Key derivation function namespace. - */ - var C_kdf = C.kdf = {}; + cseuckr: "cp949", + csksc56011987: "cp949", + euckr: "cp949", + isoir149: "cp949", + korean: "cp949", + ksc56011987: "cp949", + ksc56011989: "cp949", + ksc5601: "cp949", - /** - * OpenSSL key derivation function. - */ - var OpenSSLKdf = C_kdf.OpenSSL = { - /** - * Derives a key and IV from a password. - * - * @param {string} password The password to derive from. - * @param {number} keySize The size in words of the key to generate. - * @param {number} ivSize The size in words of the IV to generate. - * @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly. - * - * @return {CipherParams} A cipher params object with the key, IV, and salt. - * - * @static - * - * @example - * - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32); - * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt'); - */ - execute: function execute(password, keySize, ivSize, salt, hasher) { - // Generate random salt - if (!salt) { - salt = WordArray.random(64 / 8); - } + // == 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. - // Derive key and IV - if (!hasher) { - var key = EvpKDF.create({ - keySize: keySize + ivSize - }).compute(password, salt); - } else { - var key = EvpKDF.create({ - keySize: keySize + ivSize, - hasher: hasher - }).compute(password, salt); - } + windows950: "cp950", + ms950: "cp950", + 950: "cp950", + cp950: { + type: "_dbcs", + table: function () { return __webpack_require__(72324) } + }, + + // 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__(72324).concat)(__webpack_require__(43267)) }, + encodeSkipVals: [ + // Although Encoding Standard says we should avoid encoding to HKSCS area (See Step 1 of + // https://encoding.spec.whatwg.org/#index-big5-pointer), we still do it to increase compatibility with ICU. + // But if a single unicode point can be encoded both as HKSCS and regular Big5, we prefer the latter. + 0x8e69, 0x8e6f, 0x8e7e, 0x8eab, 0x8eb4, 0x8ecd, 0x8ed0, 0x8f57, 0x8f69, 0x8f6e, 0x8fcb, 0x8ffe, + 0x906d, 0x907a, 0x90c4, 0x90dc, 0x90f1, 0x91bf, 0x92af, 0x92b0, 0x92b1, 0x92b2, 0x92d1, 0x9447, 0x94ca, + 0x95d9, 0x96fc, 0x9975, 0x9b76, 0x9b78, 0x9b7b, 0x9bc6, 0x9bde, 0x9bec, 0x9bf6, 0x9c42, 0x9c53, 0x9c62, + 0x9c68, 0x9c6b, 0x9c77, 0x9cbc, 0x9cbd, 0x9cd0, 0x9d57, 0x9d5a, 0x9dc4, 0x9def, 0x9dfb, 0x9ea9, 0x9eef, + 0x9efd, 0x9f60, 0x9fcb, 0xa077, 0xa0dc, 0xa0df, 0x8fcc, 0x92c8, 0x9644, 0x96ed, - // Separate key and IV - var iv = WordArray.create(key.words.slice(keySize), ivSize * 4); - key.sigBytes = keySize * 4; + // Step 2 of https://encoding.spec.whatwg.org/#index-big5-pointer: Use last pointer for U+2550, U+255E, U+2561, U+256A, U+5341, or U+5345 + 0xa2a4, 0xa2a5, 0xa2a7, 0xa2a6, 0xa2cc, 0xa2ce + ] + }, - // Return params - return CipherParams.create({ - key: key, - iv: iv, - salt: salt - }); - } - }; + cnbig5: "big5hkscs", + csbig5: "big5hkscs", + xxbig5: "big5hkscs" +} - /** - * A serializable cipher wrapper that derives the key from a password, - * and returns ciphertext as a serializable cipher params object. - */ - var PasswordBasedCipher = C_lib.PasswordBasedCipher = SerializableCipher.extend({ - /** - * Configuration options. - * - * @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL - */ - cfg: SerializableCipher.cfg.extend({ - kdf: OpenSSLKdf - }), - /** - * Encrypts a message using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {WordArray|string} message The message to encrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {CipherParams} A cipher params object. - * - * @static - * - * @example - * - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password'); - * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL }); - */ - encrypt: function encrypt(cipher, message, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, cfg.salt, cfg.hasher); +/***/ }), - // Add IV to config - cfg.iv = derivedParams.iv; +/***/ 26326: +/***/ (function(__unused_webpack___webpack_module__, exports, __webpack_require__) { - // Encrypt - var ciphertext = SerializableCipher.encrypt.call(this, cipher, message, derivedParams.key, cfg); +"use strict"; - // Mix in derived params - ciphertext.mixIn(derivedParams); - return ciphertext; - }, - /** - * Decrypts serialized ciphertext using a password. - * - * @param {Cipher} cipher The cipher algorithm to use. - * @param {CipherParams|string} ciphertext The ciphertext to decrypt. - * @param {string} password The password. - * @param {Object} cfg (Optional) The configuration options to use for this operation. - * - * @return {WordArray} The plaintext. - * - * @static - * - * @example - * - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL }); - * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL }); - */ - decrypt: function decrypt(cipher, ciphertext, password, cfg) { - // Apply config defaults - cfg = this.cfg.extend(cfg); - // Convert string to CipherParams - ciphertext = this._parse(ciphertext, cfg.format); +var mergeModules = __webpack_require__(3919) - // Derive key and other params - var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, ciphertext.salt, cfg.hasher); +// 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__(16793), + __webpack_require__(24162), + __webpack_require__(17100), + __webpack_require__(11326), + __webpack_require__(99948), + __webpack_require__(99900), + __webpack_require__(81492), + __webpack_require__(35143), + __webpack_require__(90481) +] - // Add IV to config - cfg.iv = derivedParams.iv; +// Put all encoding/alias/codec definitions to single object and export it. +for (var i = 0; i < modules.length; i++) { + var module = modules[i] + mergeModules(exports, module) +} - // Decrypt - var plaintext = SerializableCipher.decrypt.call(this, cipher, ciphertext, derivedParams.key, cfg); - return plaintext; - } - }); - }(); -}); /***/ }), -/***/ 51334: +/***/ 16793: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var getBuiltIn = __webpack_require__(38486); -var definePropertyModule = __webpack_require__(95892); -var wellKnownSymbol = __webpack_require__(38688); -var DESCRIPTORS = __webpack_require__(15567); +var Buffer = (__webpack_require__(93143).Buffer) -var SPECIES = wellKnownSymbol('species'); +// Export Node.js internal encodings. -module.exports = function (CONSTRUCTOR_NAME) { - var Constructor = getBuiltIn(CONSTRUCTOR_NAME); - var defineProperty = definePropertyModule.f; +module.exports = { + // Encodings + utf8: { type: "_internal", bomAware: true }, + cesu8: { type: "_internal", bomAware: true }, + unicode11utf8: "utf8", - if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) { - defineProperty(Constructor, SPECIES, { - configurable: true, - get: function () { return this; } - }); - } -}; + ucs2: { type: "_internal", bomAware: true }, + utf16le: "ucs2", + binary: { type: "_internal" }, + base64: { type: "_internal" }, + hex: { type: "_internal" }, -/***/ }), + // Codec. + _internal: InternalCodec +} -/***/ 51374: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +// ------------------------------------------------------------------------------ -"use strict"; +function InternalCodec (codecOptions, iconv) { + this.enc = codecOptions.encodingName + this.bomAware = codecOptions.bomAware + if (this.enc === "base64") { this.encoder = InternalEncoderBase64 } else if (this.enc === "utf8") { this.encoder = InternalEncoderUtf8 } else if (this.enc === "cesu8") { + this.enc = "utf8" // Use utf8 for decoding. + this.encoder = InternalEncoderCesu8 -var supportsDescriptors = (__webpack_require__(77802).supportsDescriptors); -var getPolyfill = __webpack_require__(7844); -var gOPD = __webpack_require__(68109); -var defineProperty = Object.defineProperty; -var $TypeError = __webpack_require__(15293); -var getProto = __webpack_require__(87106); -var regex = /a/; + // Add decoder for versions of Node not supporting CESU-8 + if (Buffer.from("eda0bdedb2a9", "hex").toString() !== "💩") { + this.decoder = InternalDecoderCesu8 + this.defaultCharUnicode = iconv.defaultCharUnicode + } + } +} -module.exports = function shimFlags() { - if (!supportsDescriptors || !getProto) { - throw new $TypeError('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors'); - } - var polyfill = getPolyfill(); - var proto = getProto(regex); - var descriptor = gOPD(proto, 'flags'); - if (!descriptor || descriptor.get !== polyfill) { - defineProperty(proto, 'flags', { - configurable: true, - enumerable: false, - get: polyfill - }); - } - return polyfill; -}; +InternalCodec.prototype.encoder = InternalEncoder +InternalCodec.prototype.decoder = InternalDecoder +// ------------------------------------------------------------------------------ -/***/ }), +// We use node.js internal decoder. Its signature is the same as ours. +var StringDecoder = (__webpack_require__(43143)/* .StringDecoder */ .I) -/***/ 51839: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +function InternalDecoder (options, codec) { + this.decoder = new StringDecoder(codec.enc) +} -var aCallable = __webpack_require__(32631); +InternalDecoder.prototype.write = function (buf) { + if (!Buffer.isBuffer(buf)) { + buf = Buffer.from(buf) + } -// `GetMethod` abstract operation -// https://tc39.es/ecma262/#sec-getmethod -module.exports = function (V, P) { - var func = V[P]; - return func == null ? undefined : aCallable(func); -}; + return this.decoder.write(buf) +} +InternalDecoder.prototype.end = function () { + return this.decoder.end() +} -/***/ }), +// ------------------------------------------------------------------------------ +// Encoder is mostly trivial -/***/ 51868: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +function InternalEncoder (options, codec) { + this.enc = codec.enc +} -var isCallable = __webpack_require__(94578); -var isObject = __webpack_require__(24517); -var setPrototypeOf = __webpack_require__(3840); +InternalEncoder.prototype.write = function (str) { + return Buffer.from(str, this.enc) +} -// makes subclassing work correct for wrapped built-ins -module.exports = function ($this, dummy, Wrapper) { - var NewTarget, NewTargetPrototype; - if ( - // it can work only with native `setPrototypeOf` - setPrototypeOf && - // we haven't completely correct pre-ES6 way for getting `new.target`, so use this - isCallable(NewTarget = dummy.constructor) && - NewTarget !== Wrapper && - isObject(NewTargetPrototype = NewTarget.prototype) && - NewTargetPrototype !== Wrapper.prototype - ) setPrototypeOf($this, NewTargetPrototype); - return $this; -}; +InternalEncoder.prototype.end = function () { +} +// ------------------------------------------------------------------------------ +// Except base64 encoder, which must keep its state. -/***/ }), +function InternalEncoderBase64 (options, codec) { + this.prevStr = "" +} -/***/ 51965: -/***/ (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) -"use strict"; + return Buffer.from(str, "base64") +} +InternalEncoderBase64.prototype.end = function () { + return Buffer.from(this.prevStr, "base64") +} -; -(function (root, factory, undef) { - if (true) { - // CommonJS - module.exports = exports = factory(__webpack_require__(48352), __webpack_require__(18909)); - } else // removed by dead control flow -{} -})(void 0, function (CryptoJS) { - (function () { - // Shortcuts - var C = CryptoJS; - var C_lib = C.lib; - var Hasher = C_lib.Hasher; - var C_x64 = C.x64; - var X64Word = C_x64.Word; - var X64WordArray = C_x64.WordArray; - var C_algo = C.algo; - function X64Word_create() { - return X64Word.create.apply(X64Word, arguments); +// ------------------------------------------------------------------------------ +// CESU-8 encoder is also special. + +function InternalEncoderCesu8 (options, codec) { +} + +InternalEncoderCesu8.prototype.write = function (str) { + var buf = Buffer.alloc(str.length * 3); var 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 buf.slice(0, bufIdx) +} - // Constants - var K = [X64Word_create(0x428a2f98, 0xd728ae22), X64Word_create(0x71374491, 0x23ef65cd), X64Word_create(0xb5c0fbcf, 0xec4d3b2f), X64Word_create(0xe9b5dba5, 0x8189dbbc), X64Word_create(0x3956c25b, 0xf348b538), X64Word_create(0x59f111f1, 0xb605d019), X64Word_create(0x923f82a4, 0xaf194f9b), X64Word_create(0xab1c5ed5, 0xda6d8118), X64Word_create(0xd807aa98, 0xa3030242), X64Word_create(0x12835b01, 0x45706fbe), X64Word_create(0x243185be, 0x4ee4b28c), X64Word_create(0x550c7dc3, 0xd5ffb4e2), X64Word_create(0x72be5d74, 0xf27b896f), X64Word_create(0x80deb1fe, 0x3b1696b1), X64Word_create(0x9bdc06a7, 0x25c71235), X64Word_create(0xc19bf174, 0xcf692694), X64Word_create(0xe49b69c1, 0x9ef14ad2), X64Word_create(0xefbe4786, 0x384f25e3), X64Word_create(0x0fc19dc6, 0x8b8cd5b5), X64Word_create(0x240ca1cc, 0x77ac9c65), X64Word_create(0x2de92c6f, 0x592b0275), X64Word_create(0x4a7484aa, 0x6ea6e483), X64Word_create(0x5cb0a9dc, 0xbd41fbd4), X64Word_create(0x76f988da, 0x831153b5), X64Word_create(0x983e5152, 0xee66dfab), X64Word_create(0xa831c66d, 0x2db43210), X64Word_create(0xb00327c8, 0x98fb213f), X64Word_create(0xbf597fc7, 0xbeef0ee4), X64Word_create(0xc6e00bf3, 0x3da88fc2), X64Word_create(0xd5a79147, 0x930aa725), X64Word_create(0x06ca6351, 0xe003826f), X64Word_create(0x14292967, 0x0a0e6e70), X64Word_create(0x27b70a85, 0x46d22ffc), X64Word_create(0x2e1b2138, 0x5c26c926), X64Word_create(0x4d2c6dfc, 0x5ac42aed), X64Word_create(0x53380d13, 0x9d95b3df), X64Word_create(0x650a7354, 0x8baf63de), X64Word_create(0x766a0abb, 0x3c77b2a8), X64Word_create(0x81c2c92e, 0x47edaee6), X64Word_create(0x92722c85, 0x1482353b), X64Word_create(0xa2bfe8a1, 0x4cf10364), X64Word_create(0xa81a664b, 0xbc423001), X64Word_create(0xc24b8b70, 0xd0f89791), X64Word_create(0xc76c51a3, 0x0654be30), X64Word_create(0xd192e819, 0xd6ef5218), X64Word_create(0xd6990624, 0x5565a910), X64Word_create(0xf40e3585, 0x5771202a), X64Word_create(0x106aa070, 0x32bbd1b8), X64Word_create(0x19a4c116, 0xb8d2d0c8), X64Word_create(0x1e376c08, 0x5141ab53), X64Word_create(0x2748774c, 0xdf8eeb99), X64Word_create(0x34b0bcb5, 0xe19b48a8), X64Word_create(0x391c0cb3, 0xc5c95a63), X64Word_create(0x4ed8aa4a, 0xe3418acb), X64Word_create(0x5b9cca4f, 0x7763e373), X64Word_create(0x682e6ff3, 0xd6b2b8a3), X64Word_create(0x748f82ee, 0x5defb2fc), X64Word_create(0x78a5636f, 0x43172f60), X64Word_create(0x84c87814, 0xa1f0ab72), X64Word_create(0x8cc70208, 0x1a6439ec), X64Word_create(0x90befffa, 0x23631e28), X64Word_create(0xa4506ceb, 0xde82bde9), X64Word_create(0xbef9a3f7, 0xb2c67915), X64Word_create(0xc67178f2, 0xe372532b), X64Word_create(0xca273ece, 0xea26619c), X64Word_create(0xd186b8c7, 0x21c0c207), X64Word_create(0xeada7dd6, 0xcde0eb1e), X64Word_create(0xf57d4f7f, 0xee6ed178), X64Word_create(0x06f067aa, 0x72176fba), X64Word_create(0x0a637dc5, 0xa2c898a6), X64Word_create(0x113f9804, 0xbef90dae), X64Word_create(0x1b710b35, 0x131c471b), X64Word_create(0x28db77f5, 0x23047d84), X64Word_create(0x32caab7b, 0x40c72493), X64Word_create(0x3c9ebe0a, 0x15c9bebc), X64Word_create(0x431d67c4, 0x9c100d4c), X64Word_create(0x4cc5d4be, 0xcb3e42b6), X64Word_create(0x597f299c, 0xfc657e2a), X64Word_create(0x5fcb6fab, 0x3ad6faec), X64Word_create(0x6c44198c, 0x4a475817)]; +InternalEncoderCesu8.prototype.end = function () { +} - // Reusable objects - var W = []; - (function () { - for (var i = 0; i < 80; i++) { - W[i] = X64Word_create(); +// ------------------------------------------------------------------------------ +// 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 +} + +InternalDecoderCesu8.prototype.write = function (buf) { + var acc = this.acc; var contBytes = this.contBytes; var accBytes = this.accBytes + var 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 } - })(); - /** - * SHA-512 hash algorithm. - */ - var SHA512 = C_algo.SHA512 = Hasher.extend({ - _doReset: function _doReset() { - this._hash = new X64WordArray.init([new X64Word.init(0x6a09e667, 0xf3bcc908), new X64Word.init(0xbb67ae85, 0x84caa73b), new X64Word.init(0x3c6ef372, 0xfe94f82b), new X64Word.init(0xa54ff53a, 0x5f1d36f1), new X64Word.init(0x510e527f, 0xade682d1), new X64Word.init(0x9b05688c, 0x2b3e6c1f), new X64Word.init(0x1f83d9ab, 0xfb41bd6b), new X64Word.init(0x5be0cd19, 0x137e2179)]); - }, - _doProcessBlock: function _doProcessBlock(M, offset) { - // Shortcuts - var H = this._hash.words; - var H0 = H[0]; - var H1 = H[1]; - var H2 = H[2]; - var H3 = H[3]; - var H4 = H[4]; - var H5 = H[5]; - var H6 = H[6]; - var H7 = H[7]; - var H0h = H0.high; - var H0l = H0.low; - var H1h = H1.high; - var H1l = H1.low; - var H2h = H2.high; - var H2l = H2.low; - var H3h = H3.high; - var H3l = H3.low; - var H4h = H4.high; - var H4l = H4.low; - var H5h = H5.high; - var H5l = H5.low; - var H6h = H6.high; - var H6l = H6.low; - var H7h = H7.high; - var H7l = H7.low; + 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 +} - // Working variables - var ah = H0h; - var al = H0l; - var bh = H1h; - var bl = H1l; - var ch = H2h; - var cl = H2l; - var dh = H3h; - var dl = H3l; - var eh = H4h; - var el = H4l; - var fh = H5h; - var fl = H5l; - var gh = H6h; - var gl = H6l; - var hh = H7h; - var hl = H7l; +InternalDecoderCesu8.prototype.end = function () { + var res = 0 + if (this.contBytes > 0) { res += this.defaultCharUnicode } + return res +} - // Rounds - for (var i = 0; i < 80; i++) { - var Wil; - var Wih; +// ------------------------------------------------------------------------------ +// check the chunk boundaries for surrogate pair - // Shortcut - var Wi = W[i]; +function InternalEncoderUtf8 (options, codec) { + this.highSurrogate = "" +} - // Extend message - if (i < 16) { - Wih = Wi.high = M[offset + i * 2] | 0; - Wil = Wi.low = M[offset + i * 2 + 1] | 0; - } else { - // Gamma0 - var gamma0x = W[i - 15]; - var gamma0xh = gamma0x.high; - var gamma0xl = gamma0x.low; - var gamma0h = (gamma0xh >>> 1 | gamma0xl << 31) ^ (gamma0xh >>> 8 | gamma0xl << 24) ^ gamma0xh >>> 7; - var gamma0l = (gamma0xl >>> 1 | gamma0xh << 31) ^ (gamma0xl >>> 8 | gamma0xh << 24) ^ (gamma0xl >>> 7 | gamma0xh << 25); +InternalEncoderUtf8.prototype.write = function (str) { + if (this.highSurrogate) { + str = this.highSurrogate + str + this.highSurrogate = "" + } - // Gamma1 - var gamma1x = W[i - 2]; - var gamma1xh = gamma1x.high; - var gamma1xl = gamma1x.low; - var gamma1h = (gamma1xh >>> 19 | gamma1xl << 13) ^ (gamma1xh << 3 | gamma1xl >>> 29) ^ gamma1xh >>> 6; - var gamma1l = (gamma1xl >>> 19 | gamma1xh << 13) ^ (gamma1xl << 3 | gamma1xh >>> 29) ^ (gamma1xl >>> 6 | gamma1xh << 26); + if (str.length > 0) { + var charCode = str.charCodeAt(str.length - 1) + if (charCode >= 0xd800 && charCode < 0xdc00) { + this.highSurrogate = str[str.length - 1] + str = str.slice(0, str.length - 1) + } + } - // W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16] - var Wi7 = W[i - 7]; - var Wi7h = Wi7.high; - var Wi7l = Wi7.low; - var Wi16 = W[i - 16]; - var Wi16h = Wi16.high; - var Wi16l = Wi16.low; - Wil = gamma0l + Wi7l; - Wih = gamma0h + Wi7h + (Wil >>> 0 < gamma0l >>> 0 ? 1 : 0); - Wil = Wil + gamma1l; - Wih = Wih + gamma1h + (Wil >>> 0 < gamma1l >>> 0 ? 1 : 0); - Wil = Wil + Wi16l; - Wih = Wih + Wi16h + (Wil >>> 0 < Wi16l >>> 0 ? 1 : 0); - Wi.high = Wih; - Wi.low = Wil; - } - var chh = eh & fh ^ ~eh & gh; - var chl = el & fl ^ ~el & gl; - var majh = ah & bh ^ ah & ch ^ bh & ch; - var majl = al & bl ^ al & cl ^ bl & cl; - var sigma0h = (ah >>> 28 | al << 4) ^ (ah << 30 | al >>> 2) ^ (ah << 25 | al >>> 7); - var sigma0l = (al >>> 28 | ah << 4) ^ (al << 30 | ah >>> 2) ^ (al << 25 | ah >>> 7); - var sigma1h = (eh >>> 14 | el << 18) ^ (eh >>> 18 | el << 14) ^ (eh << 23 | el >>> 9); - var sigma1l = (el >>> 14 | eh << 18) ^ (el >>> 18 | eh << 14) ^ (el << 23 | eh >>> 9); + return Buffer.from(str, this.enc) +} - // t1 = h + sigma1 + ch + K[i] + W[i] - var Ki = K[i]; - var Kih = Ki.high; - var Kil = Ki.low; - var t1l = hl + sigma1l; - var t1h = hh + sigma1h + (t1l >>> 0 < hl >>> 0 ? 1 : 0); - var t1l = t1l + chl; - var t1h = t1h + chh + (t1l >>> 0 < chl >>> 0 ? 1 : 0); - var t1l = t1l + Kil; - var t1h = t1h + Kih + (t1l >>> 0 < Kil >>> 0 ? 1 : 0); - var t1l = t1l + Wil; - var t1h = t1h + Wih + (t1l >>> 0 < Wil >>> 0 ? 1 : 0); +InternalEncoderUtf8.prototype.end = function () { + if (this.highSurrogate) { + var str = this.highSurrogate + this.highSurrogate = "" + return Buffer.from(str, this.enc) + } +} - // t2 = sigma0 + maj - var t2l = sigma0l + majl; - var t2h = sigma0h + majh + (t2l >>> 0 < sigma0l >>> 0 ? 1 : 0); - // Update working variables - hh = gh; - hl = gl; - gh = fh; - gl = fl; - fh = eh; - fl = el; - el = dl + t1l | 0; - eh = dh + t1h + (el >>> 0 < dl >>> 0 ? 1 : 0) | 0; - dh = ch; - dl = cl; - ch = bh; - cl = bl; - bh = ah; - bl = al; - al = t1l + t2l | 0; - ah = t1h + t2h + (al >>> 0 < t1l >>> 0 ? 1 : 0) | 0; - } +/***/ }), - // Intermediate hash value - H0l = H0.low = H0l + al; - H0.high = H0h + ah + (H0l >>> 0 < al >>> 0 ? 1 : 0); - H1l = H1.low = H1l + bl; - H1.high = H1h + bh + (H1l >>> 0 < bl >>> 0 ? 1 : 0); - H2l = H2.low = H2l + cl; - H2.high = H2h + ch + (H2l >>> 0 < cl >>> 0 ? 1 : 0); - H3l = H3.low = H3l + dl; - H3.high = H3h + dh + (H3l >>> 0 < dl >>> 0 ? 1 : 0); - H4l = H4.low = H4l + el; - H4.high = H4h + eh + (H4l >>> 0 < el >>> 0 ? 1 : 0); - H5l = H5.low = H5l + fl; - H5.high = H5h + fh + (H5l >>> 0 < fl >>> 0 ? 1 : 0); - H6l = H6.low = H6l + gl; - H6.high = H6h + gh + (H6l >>> 0 < gl >>> 0 ? 1 : 0); - H7l = H7.low = H7l + hl; - H7.high = H7h + hh + (H7l >>> 0 < hl >>> 0 ? 1 : 0); - }, - _doFinalize: function _doFinalize() { - // Shortcuts - var data = this._data; - var dataWords = data.words; - var nBitsTotal = this._nDataBytes * 8; - var nBitsLeft = data.sigBytes * 8; +/***/ 99948: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - // Add padding - dataWords[nBitsLeft >>> 5] |= 0x80 << 24 - nBitsLeft % 32; - dataWords[(nBitsLeft + 128 >>> 10 << 5) + 30] = Math.floor(nBitsTotal / 0x100000000); - dataWords[(nBitsLeft + 128 >>> 10 << 5) + 31] = nBitsTotal; - data.sigBytes = dataWords.length * 4; +"use strict"; - // Hash final blocks - this._process(); +var Buffer = (__webpack_require__(93143).Buffer) - // Convert hash to 32-bit word array before returning - var hash = this._hash.toX32(); +// 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). - // Return final computed hash - return hash; - }, - clone: function clone() { - var clone = Hasher.clone.call(this); - clone._hash = this._hash.clone(); - return clone; - }, - blockSize: 1024 / 32 - }); +exports._sbcs = SBCSCodec +function SBCSCodec (codecOptions, iconv) { + if (!codecOptions) { + throw new Error("SBCS codec is called without the data.") + } - /** - * Shortcut function to the hasher's object interface. - * - * @param {WordArray|string} message The message to hash. - * - * @return {WordArray} The hash. - * - * @static - * - * @example - * - * var hash = CryptoJS.SHA512('message'); - * var hash = CryptoJS.SHA512(wordArray); - */ - C.SHA512 = Hasher._createHelper(SHA512); + // 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)") + } - /** - * Shortcut function to the HMAC's object interface. - * - * @param {WordArray|string} message The message to hash. - * @param {WordArray|string} key The secret key. - * - * @return {WordArray} The HMAC. - * - * @static - * - * @example - * - * var hmac = CryptoJS.HmacSHA512(message, key); - */ - C.HmacSHA512 = Hasher._createHmacHelper(SHA512); - })(); - return CryptoJS.SHA512; -}); + if (codecOptions.chars.length === 128) { + var asciiString = "" + for (var i = 0; i < 128; i++) { + asciiString += String.fromCharCode(i) + } + codecOptions.chars = asciiString + codecOptions.chars + } -/***/ }), + this.decodeBuf = Buffer.from(codecOptions.chars, "ucs2") -/***/ 52331: -/***/ (function(__unused_webpack_module, exports) { + // Encoding buffer. + var encodeBuf = Buffer.alloc(65536, iconv.defaultCharSingleByte.charCodeAt(0)) -"use strict"; + for (var i = 0; i < codecOptions.chars.length; i++) { + encodeBuf[codecOptions.chars.charCodeAt(i)] = i + } + this.encodeBuf = encodeBuf +} -var BOMChar = "\uFEFF" +SBCSCodec.prototype.encoder = SBCSEncoder +SBCSCodec.prototype.decoder = SBCSDecoder -exports.PrependBOM = PrependBOMWrapper -function PrependBOMWrapper (encoder, options) { - this.encoder = encoder - this.addBOM = true +function SBCSEncoder (options, codec) { + this.encodeBuf = codec.encodeBuf } -PrependBOMWrapper.prototype.write = function (str) { - if (this.addBOM) { - str = BOMChar + str - this.addBOM = false +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 this.encoder.write(str) + return buf } -PrependBOMWrapper.prototype.end = function () { - return this.encoder.end() +SBCSEncoder.prototype.end = function () { } -// ------------------------------------------------------------------------------ +function SBCSDecoder (options, codec) { + this.decodeBuf = codec.decodeBuf +} -exports.StripBOM = StripBOMWrapper -function StripBOMWrapper (decoder, options) { - this.decoder = decoder - this.pass = false - this.options = options || {} +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; var 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") } -StripBOMWrapper.prototype.write = function (buf) { - var res = this.decoder.write(buf) - if (this.pass || !res) { return res } +SBCSDecoder.prototype.end = function () { +} - if (res[0] === BOMChar) { - res = res.slice(1) - if (typeof this.options.stripBOM === "function") { this.options.stripBOM() } + +/***/ }), + +/***/ 81492: +/***/ (function(module) { + +"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": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "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": "ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ" + }, + "ascii": { + "type": "_sbcs", + "chars": "��������������������������������������������������������������������������������������������������������������������������������" + }, + "tis620": { + "type": "_sbcs", + "chars": "���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����" } - - this.pass = true - return res -} - -StripBOMWrapper.prototype.end = function () { - return this.decoder.end() -} - - -/***/ }), - -/***/ 52529: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var exportTypedArrayMethod = (__webpack_require__(59754).exportTypedArrayMethod); -var fails = __webpack_require__(47044); -var global = __webpack_require__(32010); -var uncurryThis = __webpack_require__(38347); - -var Uint8Array = global.Uint8Array; -var Uint8ArrayPrototype = Uint8Array && Uint8Array.prototype || {}; -var arrayToString = [].toString; -var join = uncurryThis([].join); - -if (fails(function () { arrayToString.call({}); })) { - arrayToString = function toString() { - return join(this); - }; } -var IS_NOT_ARRAY_METHOD = Uint8ArrayPrototype.toString != arrayToString; - -// `%TypedArray%.prototype.toString` method -// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tostring -exportTypedArrayMethod('toString', arrayToString, IS_NOT_ARRAY_METHOD); - - -/***/ }), - -/***/ 52564: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -var global = __webpack_require__(32010); -var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); -var isCallable = __webpack_require__(94578); -var classofRaw = __webpack_require__(93975); -var wellKnownSymbol = __webpack_require__(38688); - -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -var Object = global.Object; - -// ES3 wrong here -var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; - -// fallback for IE11 Script Access Denied error -var tryGet = function (it, key) { - try { - return it[key]; - } catch (error) { /* empty */ } -}; - -// getting tag from ES6+ `Object.prototype.toString` -module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) { - var O, tag, result; - return it === undefined ? 'Undefined' : it === null ? 'Null' - // @@toStringTag case - : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag - // builtinTag case - : CORRECT_ARGUMENTS ? classofRaw(O) - // ES3 arguments fallback - : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result; -}; - - -/***/ }), - -/***/ 52598: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var TO_STRING_TAG_SUPPORT = __webpack_require__(24663); -var classof = __webpack_require__(52564); - -// `Object.prototype.toString` method implementation -// https://tc39.es/ecma262/#sec-object.prototype.tostring -module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { - return '[object ' + classof(this) + ']'; -}; - - -/***/ }), - -/***/ 52676: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; - - -var _require = __webpack_require__(56128), - NumberT = _require.Number; -var utils = __webpack_require__(18128); -var StringT = /*#__PURE__*/function () { - function StringT(length, encoding) { - if (encoding === void 0) { - encoding = 'ascii'; - } - this.length = length; - this.encoding = encoding; - } - var _proto = StringT.prototype; - _proto.decode = function decode(stream, parent) { - var length, pos; - if (this.length != null) { - length = utils.resolveLength(this.length, stream, parent); - } else { - var buffer; - buffer = stream.buffer; - length = stream.length; - pos = stream.pos; - while (pos < length && buffer[pos] !== 0x00) { - ++pos; - } - length = pos - stream.pos; - } - var encoding = this.encoding; - if (typeof encoding === 'function') { - encoding = encoding.call(parent, parent) || 'ascii'; - } - var string = stream.readString(length, encoding); - if (this.length == null && stream.pos < stream.length) { - stream.pos++; - } - return string; - }; - _proto.size = function size(val, parent) { - // Use the defined value if no value was given - if (!val) { - return utils.resolveLength(this.length, null, parent); - } - var encoding = this.encoding; - if (typeof encoding === 'function') { - encoding = encoding.call(parent != null ? parent.val : undefined, parent != null ? parent.val : undefined) || 'ascii'; - } - if (encoding === 'utf16be') { - encoding = 'utf16le'; - } - var size = Buffer.byteLength(val, encoding); - if (this.length instanceof NumberT) { - size += this.length.size(); - } - if (this.length == null) { - size++; - } - return size; - }; - _proto.encode = function encode(stream, val, parent) { - var encoding = this.encoding; - if (typeof encoding === 'function') { - encoding = encoding.call(parent != null ? parent.val : undefined, parent != null ? parent.val : undefined) || 'ascii'; - } - if (this.length instanceof NumberT) { - this.length.encode(stream, Buffer.byteLength(val, encoding)); - } - stream.writeString(val, encoding); - if (this.length == null) { - return stream.writeUInt8(0x00); - } - }; - return StringT; -}(); -module.exports = StringT; - -/***/ }), - -/***/ 53087: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - -var global = __webpack_require__(32010); -var anObject = __webpack_require__(34984); -var ordinaryToPrimitive = __webpack_require__(39629); - -var TypeError = global.TypeError; - -// `Date.prototype[@@toPrimitive](hint)` method implementation -// https://tc39.es/ecma262/#sec-date.prototype-@@toprimitive -module.exports = function (hint) { - anObject(this); - if (hint === 'string' || hint === 'default') hint = 'string'; - else if (hint !== 'number') throw TypeError('Incorrect hint'); - return ordinaryToPrimitive(this, hint); -}; - - /***/ }), -/***/ 54055: +/***/ 99900: /***/ (function(module) { "use strict"; -/** @type {import('./uri')} */ -module.exports = URIError; - - -/***/ }), - -/***/ 54171: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - -"use strict"; - - -var Buffer = (__webpack_require__(93143).Buffer) - -var bomHandling = __webpack_require__(52331) -var mergeModules = __webpack_require__(3919) - -// All codecs and aliases are kept here, keyed by encoding name/alias. -// They are lazy loaded in `iconv.getCodec` from `encodings/index.js`. -// Cannot initialize with { __proto__: null } because Boolean({ __proto__: null }) === true -module.exports.encodings = null - -// Characters emitted in case of error. -module.exports.defaultCharUnicode = "�" -module.exports.defaultCharSingleByte = "?" - -// Public API. -module.exports.encode = function encode (str, encoding, options) { - str = "" + (str || "") // Ensure string. - - var encoder = module.exports.getEncoder(encoding, options) - - var res = encoder.write(str) - var trail = encoder.end() - - return (trail && trail.length > 0) ? Buffer.concat([res, trail]) : res -} - -module.exports.decode = function decode (buf, encoding, options) { - if (typeof buf === "string") { - if (!module.exports.skipDecodeWarning) { - console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding") - module.exports.skipDecodeWarning = true - } - - buf = Buffer.from("" + (buf || ""), "binary") // Ensure buffer. - } - - var decoder = module.exports.getDecoder(encoding, options) - - var res = decoder.write(buf) - var trail = decoder.end() - - return trail ? (res + trail) : res -} - -module.exports.encodingExists = function encodingExists (enc) { - try { - module.exports.getCodec(enc) - return true - } catch (e) { - return false - } -} - -// Legacy aliases to convert functions -module.exports.toEncoding = module.exports.encode -module.exports.fromEncoding = module.exports.decode - -// Search for a codec in iconv.encodings. Cache codec data in iconv._codecDataCache. -module.exports._codecDataCache = { __proto__: null } - -module.exports.getCodec = function getCodec (encoding) { - if (!module.exports.encodings) { - var raw = __webpack_require__(26326) - // TODO: In future versions when old nodejs support is removed can use object.assign - module.exports.encodings = { __proto__: null } // Initialize as empty object. - mergeModules(module.exports.encodings, raw) - } - - // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. - var enc = module.exports._canonicalizeEncoding(encoding) - - // Traverse iconv.encodings to find actual codec. - var codecOptions = {} - while (true) { - var codec = module.exports._codecDataCache[enc] - - if (codec) { return codec } - - var codecDef = module.exports.encodings[enc] - - switch (typeof codecDef) { - case "string": // Direct alias to other encoding. - enc = codecDef - break - - case "object": // Alias with options. Can be layered. - for (var key in codecDef) { codecOptions[key] = codecDef[key] } - - if (!codecOptions.encodingName) { codecOptions.encodingName = enc } - - enc = codecDef.type - break - - case "function": // Codec itself. - if (!codecOptions.encodingName) { codecOptions.encodingName = enc } - - // 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, module.exports) - - module.exports._codecDataCache[codecOptions.encodingName] = codec // Save it to be reused later. - return codec - - default: - throw new Error("Encoding not recognized: '" + encoding + "' (searched as: '" + enc + "')") - } - } -} - -module.exports._canonicalizeEncoding = function (encoding) { - // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. - return ("" + encoding).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g, "") -} - -module.exports.getEncoder = function getEncoder (encoding, options) { - var codec = module.exports.getCodec(encoding) - var encoder = new codec.encoder(options, codec) - - if (codec.bomAware && options && options.addBOM) { encoder = new bomHandling.PrependBOM(encoder, options) } - - return encoder -} - -module.exports.getDecoder = function getDecoder (encoding, options) { - var codec = module.exports.getCodec(encoding) - var decoder = new codec.decoder(options, codec) - - if (codec.bomAware && !(options && options.stripBOM === false)) { decoder = new bomHandling.StripBOM(decoder, options) } +// Manually added data to be used by sbcs codec in addition to generated one. - return decoder -} +module.exports = { + // Not supported by iconv, not sure why. + 10029: "maccenteuro", + maccenteuro: { + type: "_sbcs", + chars: "ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ" + }, -// 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')); -module.exports.enableStreamingAPI = function enableStreamingAPI (streamModule) { - if (module.exports.supportsStreams) { return } + 808: "cp808", + ibm808: "cp808", + cp808: { + type: "_sbcs", + chars: "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ " + }, - // Dependency-inject stream module to create IconvLite stream classes. - var streams = __webpack_require__(34506)(streamModule) + mik: { + type: "_sbcs", + chars: "АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ " + }, - // Not public API yet, but expose the stream classes. - module.exports.IconvLiteEncoderStream = streams.IconvLiteEncoderStream - module.exports.IconvLiteDecoderStream = streams.IconvLiteDecoderStream + cp720: { + type: "_sbcs", + chars: "\x80\x81éâ\x84à\x86çêëèïî\x8d\x8e\x8f\x90\u0651\u0652ô¤ـûùءآأؤ£إئابةتثجحخدذرزسشص«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ضطظعغفµقكلمنهوىي≡\u064b\u064c\u064d\u064e\u064f\u0650≈°∙·√ⁿ²■\u00a0" + }, - // Streaming API. - module.exports.encodeStream = function encodeStream (encoding, options) { - return new module.exports.IconvLiteEncoderStream(module.exports.getEncoder(encoding, options), options) - } + // 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", - module.exports.decodeStream = function decodeStream (encoding, options) { - return new module.exports.IconvLiteDecoderStream(module.exports.getDecoder(encoding, options), options) - } + latin1: "iso88591", + latin2: "iso88592", + latin3: "iso88593", + latin4: "iso88594", + latin5: "iso88599", + latin6: "iso885910", + latin7: "iso885913", + latin8: "iso885914", + latin9: "iso885915", + latin10: "iso885916", - module.exports.supportsStreams = true -} + csisolatin1: "iso88591", + csisolatin2: "iso88592", + csisolatin3: "iso88593", + csisolatin4: "iso88594", + csisolatincyrillic: "iso88595", + csisolatinarabic: "iso88596", + csisolatingreek: "iso88597", + csisolatinhebrew: "iso88598", + csisolatin5: "iso88599", + csisolatin6: "iso885910", -// Enable Streaming API automatically if 'stream' module is available and non-empty (the majority of environments). -var streamModule -try { - streamModule = __webpack_require__(16403) -} catch (e) {} + l1: "iso88591", + l2: "iso88592", + l3: "iso88593", + l4: "iso88594", + l5: "iso88599", + l6: "iso885910", + l7: "iso885913", + l8: "iso885914", + l9: "iso885915", + l10: "iso885916", -if (streamModule && streamModule.Transform) { - module.exports.enableStreamingAPI(streamModule) -} else { - // In rare cases where 'stream' module is not available by default, throw a helpful exception. - module.exports.encodeStream = module.exports.decodeStream = function () { - throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.") - } -} + 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", -// Some environments, such as browsers, may not load JavaScript files as UTF-8 -// eslint-disable-next-line no-constant-condition -if (false) // removed by dead control flow -{} + cp819: "iso88591", + ibm819: "iso88591", + cyrillic: "iso88595", -/***/ }), + arabic: "iso88596", + arabic8: "iso88596", + ecma114: "iso88596", + asmo708: "iso88596", -/***/ 54861: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + greek: "iso88597", + greek8: "iso88597", + ecma118: "iso88597", + elot928: "iso88597", -"use strict"; + hebrew: "iso88598", + hebrew8: "iso88598", + turkish: "iso88599", + turkish8: "iso88599", -var Line = __webpack_require__(70770); -var isNumber = (__webpack_require__(91867).isNumber); -var pack = (__webpack_require__(91867).pack); -var offsetVector = (__webpack_require__(91867).offsetVector); -var DocumentContext = __webpack_require__(79178); + thai: "iso885911", + thai8: "iso885911", -/** - * Creates an instance of ElementWriter - a line/vector writer, which adds - * elements to current page and sets their positions based on the context - */ -function ElementWriter(context, tracker) { - this.context = context; - this.contextStack = []; - this.tracker = tracker; -} + celtic: "iso885914", + celtic8: "iso885914", + isoceltic: "iso885914", -function addPageItem(page, item, index) { - if (index === null || index === undefined || index < 0 || index > page.items.length) { - page.items.push(item); - } else { - page.items.splice(index, 0, item); - } -} + tis6200: "tis620", + tis62025291: "tis620", + tis62025330: "tis620", -ElementWriter.prototype.addLine = function (line, dontUpdateContextPosition, index) { - var height = line.getHeight(); - var context = this.context; - var page = context.getCurrentPage(), - position = this.getCurrentPositionOnPage(); + 10000: "macroman", + 10006: "macgreek", + 10007: "maccyrillic", + 10079: "maciceland", + 10081: "macturkish", - if (context.availableHeight < height || !page) { - return false; - } + cspc8codepage437: "cp437", + cspc775baltic: "cp775", + cspc850multilingual: "cp850", + cspcp852: "cp852", + cspc862latinhebrew: "cp862", + cpgr: "cp869", - line.x = context.x + (line.x || 0); - line.y = context.y + (line.y || 0); + msee: "cp1250", + mscyrl: "cp1251", + msansi: "cp1252", + msgreek: "cp1253", + msturk: "cp1254", + mshebr: "cp1255", + msarab: "cp1256", + winbaltrim: "cp1257", - this.alignLine(line); + cp20866: "koi8r", + 20866: "koi8r", + ibm878: "koi8r", + cskoi8r: "koi8r", - addPageItem(page, { - type: 'line', - item: line - }, index); - this.tracker.emit('lineAdded', line); + cp21866: "koi8u", + 21866: "koi8u", + ibm1168: "koi8u", - if (!dontUpdateContextPosition) { - context.moveDown(height); - } + strk10482002: "rk1048", - return position; -}; + tcvn5712: "tcvn", + tcvn57121: "tcvn", -ElementWriter.prototype.alignLine = function (line) { - var width = this.context.availableWidth; - var lineWidth = line.getWidth(); + gb198880: "iso646cn", + cn: "iso646cn", - var alignment = line.inlines && line.inlines.length > 0 && line.inlines[0].alignment; + csiso14jisc6220ro: "iso646jp", + jisc62201969ro: "iso646jp", + jp: "iso646jp", - var offset = 0; - switch (alignment) { - case 'right': - offset = width - lineWidth; - break; - case 'center': - offset = (width - lineWidth) / 2; - break; - } + cshproman8: "hproman8", + r8: "hproman8", + roman8: "hproman8", + xroman8: "hproman8", + ibm1051: "hproman8", - if (offset) { - line.x = (line.x || 0) + offset; - } + mac: "macintosh", + csmacintosh: "macintosh" +} - if (alignment === 'justify' && - !line.newLineForced && - !line.lastLineInParagraph && - line.inlines.length > 1) { - var additionalSpacing = (width - lineWidth) / (line.inlines.length - 1); - for (var i = 1, l = line.inlines.length; i < l; i++) { - offset = i * additionalSpacing; +/***/ }), - line.inlines[i].x += offset; - line.inlines[i].justifyShift = additionalSpacing; - } - } -}; +/***/ 17100: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { -ElementWriter.prototype.addImage = function (image, index, type) { - var context = this.context; - var page = context.getCurrentPage(), - position = this.getCurrentPositionOnPage(); +"use strict"; - if (!page || (image.absolutePosition === undefined && context.availableHeight < image._height && page.items.length > 0)) { - return false; - } +var Buffer = (__webpack_require__(93143).Buffer) - if (image._x === undefined) { - image._x = image.x || 0; - } +// Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js - image.x = context.x + image._x; - image.y = context.y; +// == UTF16-BE codec. ========================================================== - this.alignImage(image); +exports.utf16be = Utf16BECodec +function Utf16BECodec () { +} - addPageItem(page, { - type: type || 'image', - item: image - }, index); +Utf16BECodec.prototype.encoder = Utf16BEEncoder +Utf16BECodec.prototype.decoder = Utf16BEDecoder +Utf16BECodec.prototype.bomAware = true - context.moveDown(image._height); +// -- Encoding - return position; -}; +function Utf16BEEncoder () { +} -ElementWriter.prototype.addSVG = function (image, index) { - return this.addImage(image, index, 'svg'); -}; +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 +} -ElementWriter.prototype.addQr = function (qr, index) { - var context = this.context; - var page = context.getCurrentPage(), - position = this.getCurrentPositionOnPage(); +Utf16BEEncoder.prototype.end = function () { +} - if (!page || (qr.absolutePosition === undefined && context.availableHeight < qr._height)) { - return false; - } +// -- Decoding - if (qr._x === undefined) { - qr._x = qr.x || 0; - } +function Utf16BEDecoder () { + this.overflowByte = -1 +} - qr.x = context.x + qr._x; - qr.y = context.y; +Utf16BEDecoder.prototype.write = function (buf) { + if (buf.length == 0) { return "" } - this.alignImage(qr); + var buf2 = Buffer.alloc(buf.length + 1) + var i = 0; var j = 0 - for (var i = 0, l = qr._canvas.length; i < l; i++) { - var vector = qr._canvas[i]; - vector.x += qr.x; - vector.y += qr.y; - this.addVector(vector, true, true, index); - } + if (this.overflowByte !== -1) { + buf2[0] = buf[0] + buf2[1] = this.overflowByte + i = 1; j = 2 + } - context.moveDown(qr._height); + for (; i < buf.length - 1; i += 2, j += 2) { + buf2[j] = buf[i + 1] + buf2[j + 1] = buf[i] + } - return position; -}; + this.overflowByte = (i == buf.length - 1) ? buf[buf.length - 1] : -1 -ElementWriter.prototype.alignImage = function (image) { - var width = this.context.availableWidth; - var imageWidth = image._minWidth; - var offset = 0; - switch (image._alignment) { - case 'right': - offset = width - imageWidth; - break; - case 'center': - offset = (width - imageWidth) / 2; - break; - } + return buf2.slice(0, j).toString("ucs2") +} - if (offset) { - image.x = (image.x || 0) + offset; - } -}; +Utf16BEDecoder.prototype.end = function () { + this.overflowByte = -1 +} -ElementWriter.prototype.alignCanvas = function (node) { - var width = this.context.availableWidth; - var canvasWidth = node._minWidth; - var offset = 0; - switch (node._alignment) { - case 'right': - offset = width - canvasWidth; - break; - case 'center': - offset = (width - canvasWidth) / 2; - break; - } - if (offset) { - node.canvas.forEach(function (vector) { - offsetVector(vector, offset, 0); - }); - } -}; +// == 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'}); -ElementWriter.prototype.addVector = function (vector, ignoreContextX, ignoreContextY, index, forcePage) { - var context = this.context; - var page = context.getCurrentPage(); - if (isNumber(forcePage)) { - page = context.pages[forcePage]; - } - var position = this.getCurrentPositionOnPage(); +// Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false). - if (page) { - offsetVector(vector, ignoreContextX ? 0 : context.x, ignoreContextY ? 0 : context.y); - addPageItem(page, { - type: 'vector', - item: vector - }, index); - return position; - } -}; +exports.utf16 = Utf16Codec +function Utf16Codec (codecOptions, iconv) { + this.iconv = iconv +} -ElementWriter.prototype.beginClip = function (width, height) { - var ctx = this.context; - var page = ctx.getCurrentPage(); - page.items.push({ - type: 'beginClip', - item: { x: ctx.x, y: ctx.y, width: width, height: height } - }); - return true; -}; +Utf16Codec.prototype.encoder = Utf16Encoder +Utf16Codec.prototype.decoder = Utf16Decoder -ElementWriter.prototype.endClip = function () { - var ctx = this.context; - var page = ctx.getCurrentPage(); - page.items.push({ - type: 'endClip' - }); - return true; -}; +// -- Encoding (pass-through) -function cloneLine(line) { - var result = new Line(line.maxWidth); +function Utf16Encoder (options, codec) { + options = options || {} + if (options.addBOM === undefined) { options.addBOM = true } + this.encoder = codec.iconv.getEncoder("utf-16le", options) +} - for (var key in line) { - if (line.hasOwnProperty(key)) { - result[key] = line[key]; - } - } +Utf16Encoder.prototype.write = function (str) { + return this.encoder.write(str) +} - return result; +Utf16Encoder.prototype.end = function () { + return this.encoder.end() } -ElementWriter.prototype.addFragment = function (block, useBlockXOffset, useBlockYOffset, dontUpdateContextPosition) { - var ctx = this.context; - var page = ctx.getCurrentPage(); +// -- Decoding - if (!useBlockXOffset && block.height > ctx.availableHeight) { - return false; - } +function Utf16Decoder (options, codec) { + this.decoder = null + this.initialBufs = [] + this.initialBufsLen = 0 - block.items.forEach(function (item) { - switch (item.type) { - case 'line': - var l = cloneLine(item.item); + this.options = options || {} + this.iconv = codec.iconv +} - if (l._node) { - l._node.positions[0].pageNumber = ctx.page + 1; - } - l.x = (l.x || 0) + (useBlockXOffset ? (block.xOffset || 0) : ctx.x); - l.y = (l.y || 0) + (useBlockYOffset ? (block.yOffset || 0) : ctx.y); +Utf16Decoder.prototype.write = function (buf) { + if (!this.decoder) { + // Codec is not chosen yet. Accumulate initial bytes. + this.initialBufs.push(buf) + this.initialBufsLen += buf.length - page.items.push({ - type: 'line', - item: l - }); - break; + if (this.initialBufsLen < 16) // We need more bytes to use space heuristic (see below) + { return "" } - case 'vector': - var v = pack(item.item); + // We have enough bytes -> detect endianness. + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding) + this.decoder = this.iconv.getDecoder(encoding, this.options) - offsetVector(v, useBlockXOffset ? (block.xOffset || 0) : ctx.x, useBlockYOffset ? (block.yOffset || 0) : ctx.y); - if (v._isFillColorFromUnbreakable) { - // If the item is a fillColor from an unbreakable block - // We have to add it at the beginning of the items body array of the page - delete v._isFillColorFromUnbreakable; - const endOfBackgroundItemsIndex = ctx.backgroundLength[ctx.page]; - page.items.splice(endOfBackgroundItemsIndex, 0, { - type: 'vector', - item: v - }); - } else { - page.items.push({ - type: 'vector', - item: v - }); - } - break; + var resStr = "" + for (var i = 0; i < this.initialBufs.length; i++) { resStr += this.decoder.write(this.initialBufs[i]) } - case 'image': - case 'svg': - var img = pack(item.item); + this.initialBufs.length = this.initialBufsLen = 0 + return resStr + } - img.x = (img.x || 0) + (useBlockXOffset ? (block.xOffset || 0) : ctx.x); - img.y = (img.y || 0) + (useBlockYOffset ? (block.yOffset || 0) : ctx.y); + return this.decoder.write(buf) +} - page.items.push({ - type: item.type, - item: img - }); - break; - } - }); +Utf16Decoder.prototype.end = function () { + if (!this.decoder) { + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding) + this.decoder = this.iconv.getDecoder(encoding, this.options) - if (!dontUpdateContextPosition) { - ctx.moveDown(block.height); - } + var resStr = "" + for (var i = 0; i < this.initialBufs.length; i++) { resStr += this.decoder.write(this.initialBufs[i]) } - return true; -}; + var trail = this.decoder.end() + if (trail) { resStr += trail } -/** - * Pushes the provided context onto the stack or creates a new one - * - * pushContext(context) - pushes the provided context and makes it current - * pushContext(width, height) - creates and pushes a new context with the specified width and height - * pushContext() - creates a new context for unbreakable blocks (with current availableWidth and full-page-height) - */ -ElementWriter.prototype.pushContext = function (contextOrWidth, height) { - if (contextOrWidth === undefined) { - height = this.context.getCurrentPage().height - this.context.pageMargins.top - this.context.pageMargins.bottom; - contextOrWidth = this.context.availableWidth; - } + this.initialBufs.length = this.initialBufsLen = 0 + return resStr + } + return this.decoder.end() +} - if (isNumber(contextOrWidth)) { - contextOrWidth = new DocumentContext({ width: contextOrWidth, height: height }, { left: 0, right: 0, top: 0, bottom: 0 }); - } +function detectEncoding (bufs, defaultEncoding) { + var b = [] + var charsProcessed = 0 + // Number of ASCII chars when decoded as LE or BE. + var asciiCharsLE = 0 + var asciiCharsBE = 0 - this.contextStack.push(this.context); - this.context = contextOrWidth; -}; + outerLoop: + 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" + } -ElementWriter.prototype.popContext = function () { - this.context = this.contextStack.pop(); -}; + if (b[0] === 0 && b[1] !== 0) asciiCharsBE++ + if (b[0] !== 0 && b[1] === 0) asciiCharsLE++ -ElementWriter.prototype.getCurrentPositionOnPage = function () { - return (this.contextStack[0] || this.context).getCurrentPosition(); -}; + b.length = 0 + charsProcessed++ + + if (charsProcessed >= 100) { + break outerLoop + } + } + } + } + // 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" -module.exports = ElementWriter; + // Couldn't decide (likely all zeros or not enough data). + return defaultEncoding || "utf-16le" +} /***/ }), -/***/ 55215: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 24162: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { "use strict"; -var call = Function.prototype.call; -var $hasOwn = Object.prototype.hasOwnProperty; -var bind = __webpack_require__(5049); +var Buffer = (__webpack_require__(93143).Buffer) -/** @type {import('.')} */ -module.exports = bind.call(call, $hasOwn); +// == UTF32-LE/BE codec. ========================================================== +exports._utf32 = Utf32Codec -/***/ }), +function Utf32Codec (codecOptions, iconv) { + this.iconv = iconv + this.bomAware = true + this.isLE = codecOptions.isLE +} -/***/ 55480: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +exports.utf32le = { type: "_utf32", isLE: true } +exports.utf32be = { type: "_utf32", isLE: false } -var global = __webpack_require__(32010); -var setGlobal = __webpack_require__(7421); +// Aliases +exports.ucs4le = "utf32le" +exports.ucs4be = "utf32be" -var SHARED = '__core-js_shared__'; -var store = global[SHARED] || setGlobal(SHARED, {}); +Utf32Codec.prototype.encoder = Utf32Encoder +Utf32Codec.prototype.decoder = Utf32Decoder -module.exports = store; +// -- Encoding +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 -/***/ 55481: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + for (var i = 0; i < src.length; i += 2) { + var code = src.readUInt16LE(i) + var isHighSurrogate = (code >= 0xD800 && code < 0xDC00) + var isLowSurrogate = (code >= 0xDC00 && code < 0xE000) -var fails = __webpack_require__(47044); + 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 -module.exports = !fails(function () { - // eslint-disable-next-line es/no-object-isextensible, es/no-object-preventextensions -- required for testing - return Object.isExtensible(Object.preventExtensions({})); -}); + write32.call(dst, codepoint, offset) + offset += 4 + this.highSurrogate = 0 + continue + } + } -/***/ }), + 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 + } + } -/***/ 55574: -/***/ (function(__unused_webpack_module, exports) { + if (offset < dst.length) { dst = dst.slice(0, offset) } -"use strict"; + return dst +} -var $propertyIsEnumerable = {}.propertyIsEnumerable; -// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe -var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; +Utf32Encoder.prototype.end = function () { + // Treat any leftover high surrogate as a semi-valid independent character. + if (!this.highSurrogate) { return } -// Nashorn ~ JDK8 bug -var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1); + var buf = Buffer.alloc(4) -// `Object.prototype.propertyIsEnumerable` method implementation -// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable -exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { - var descriptor = getOwnPropertyDescriptor(this, V); - return !!descriptor && descriptor.enumerable; -} : $propertyIsEnumerable; + if (this.isLE) { buf.writeUInt32LE(this.highSurrogate, 0) } else { buf.writeUInt32BE(this.highSurrogate, 0) } + this.highSurrogate = 0 -/***/ }), + return buf +} -/***/ 55914: -/***/ (function(module) { +// -- Decoding -"use strict"; -module.exports = /*#__PURE__*/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",""]]'); +function Utf32Decoder (options, codec) { + this.isLE = codec.isLE + this.badChar = codec.iconv.defaultCharUnicode.charCodeAt(0) + this.overflow = [] +} -/***/ }), +Utf32Decoder.prototype.write = function (src) { + if (src.length === 0) { return "" } -/***/ 56128: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { + 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 -"use strict"; + 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 -function _inheritsLoose(t, o) { t.prototype = Object.create(o.prototype), t.prototype.constructor = t, _setPrototypeOf(t, o); } -function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } -var DecodeStream = __webpack_require__(69591); -var NumberT = /*#__PURE__*/function () { - function NumberT(type, endian) { - if (endian === void 0) { - endian = 'BE'; - } - this.type = type; - this.endian = endian; - this.fn = this.type; - if (this.type[this.type.length - 1] !== '8') { - this.fn += this.endian; + offset = _writeCodepoint(dst, offset, codepoint, badChar) } } - var _proto = NumberT.prototype; - _proto.size = function size() { - return DecodeStream.TYPES[this.type]; - }; - _proto.decode = function decode(stream) { - return stream["read" + this.fn](); - }; - _proto.encode = function encode(stream, val) { - return stream["write" + this.fn](val); - }; - return NumberT; -}(); -exports.Number = NumberT; -exports.uint8 = new NumberT('UInt8'); -exports.uint16be = exports.uint16 = new NumberT('UInt16', 'BE'); -exports.uint16le = new NumberT('UInt16', 'LE'); -exports.uint24be = exports.uint24 = new NumberT('UInt24', 'BE'); -exports.uint24le = new NumberT('UInt24', 'LE'); -exports.uint32be = exports.uint32 = new NumberT('UInt32', 'BE'); -exports.uint32le = new NumberT('UInt32', 'LE'); -exports.int8 = new NumberT('Int8'); -exports.int16be = exports.int16 = new NumberT('Int16', 'BE'); -exports.int16le = new NumberT('Int16', 'LE'); -exports.int24be = exports.int24 = new NumberT('Int24', 'BE'); -exports.int24le = new NumberT('Int24', 'LE'); -exports.int32be = exports.int32 = new NumberT('Int32', 'BE'); -exports.int32le = new NumberT('Int32', 'LE'); -exports.floatbe = exports.float = new NumberT('Float', 'BE'); -exports.floatle = new NumberT('Float', 'LE'); -exports.doublebe = exports.double = new NumberT('Double', 'BE'); -exports.doublele = new NumberT('Double', 'LE'); -var Fixed = /*#__PURE__*/function (_NumberT) { - function Fixed(size, endian, fracBits) { - var _this; - if (fracBits === void 0) { - fracBits = size >> 1; + + // 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) } - _this = _NumberT.call(this, "Int" + size, endian) || this; - _this._point = 1 << fracBits; - return _this; + offset = _writeCodepoint(dst, offset, codepoint, badChar) } - _inheritsLoose(Fixed, _NumberT); - var _proto2 = Fixed.prototype; - _proto2.decode = function decode(stream) { - return _NumberT.prototype.decode.call(this, stream) / this._point; - }; - _proto2.encode = function encode(stream, val) { - return _NumberT.prototype.encode.call(this, stream, val * this._point | 0); - }; - return Fixed; -}(NumberT); -exports.Fixed = Fixed; -exports.fixed16be = exports.fixed16 = new Fixed(16, 'BE'); -exports.fixed16le = new Fixed(16, 'LE'); -exports.fixed32be = exports.fixed32 = new Fixed(32, 'BE'); -exports.fixed32le = new Fixed(32, 'LE'); -/***/ }), + // Keep overflowing bytes. + for (; i < src.length; i++) { + overflow.push(src[i]) + } -/***/ 56228: -/***/ (function(module) { + return dst.slice(0, offset).toString("ucs2") +} -"use strict"; +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 + } + // Ephemeral Planes: Write high surrogate. + if (codepoint >= 0x10000) { + codepoint -= 0x10000 -// (C) 1995-2013 Jean-loup Gailly and Mark Adler -// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin -// -// This software is provided 'as-is', without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. -// -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. If you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. + var high = 0xD800 | (codepoint >> 10) + dst[offset++] = high & 0xff + dst[offset++] = high >> 8 -module.exports = { - 2: 'need dictionary', /* Z_NEED_DICT 2 */ - 1: 'stream end', /* Z_STREAM_END 1 */ - 0: '', /* Z_OK 0 */ - '-1': 'file error', /* Z_ERRNO (-1) */ - '-2': 'stream error', /* Z_STREAM_ERROR (-2) */ - '-3': 'data error', /* Z_DATA_ERROR (-3) */ - '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */ - '-5': 'buffer error', /* Z_BUF_ERROR (-5) */ - '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */ + // Low surrogate is written below. + var codepoint = 0xDC00 | (codepoint & 0x3FF) + } + + // Write BMP char or low surrogate. + dst[offset++] = codepoint & 0xff + dst[offset++] = codepoint >> 8 + + return offset }; +Utf32Decoder.prototype.end = function () { + this.overflow.length = 0 +} -/***/ }), +// == 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'}); -/***/ 56280: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +// Encoder prepends BOM (which can be overridden with (addBOM: false}). -var fails = __webpack_require__(47044); -var wellKnownSymbol = __webpack_require__(38688); -var V8_VERSION = __webpack_require__(70091); +exports.utf32 = Utf32AutoCodec +exports.ucs4 = "utf32" -var SPECIES = wellKnownSymbol('species'); +function Utf32AutoCodec (options, iconv) { + this.iconv = iconv +} -module.exports = function (METHOD_NAME) { - // We can't use this feature detection in V8 since it causes - // deoptimization and serious performance degradation - // https://github.com/zloirock/core-js/issues/677 - return V8_VERSION >= 51 || !fails(function () { - var array = []; - var constructor = array.constructor = {}; - constructor[SPECIES] = function () { - return { foo: 1 }; - }; - return array[METHOD_NAME](Boolean).foo !== 1; - }); -}; +Utf32AutoCodec.prototype.encoder = Utf32AutoEncoder +Utf32AutoCodec.prototype.decoder = Utf32AutoDecoder +// -- Encoding -/***/ }), +function Utf32AutoEncoder (options, codec) { + options = options || {} -/***/ 56406: -/***/ (function(module) { + if (options.addBOM === undefined) { + options.addBOM = true + } -"use strict"; -module.exports = /*#__PURE__*/JSON.parse('[["0","\\u0000",127],["8ea1","。",62],["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"],["a2a1","◆□■△▲▽▼※〒→←↑↓〓"],["a2ba","∈∋⊆⊇⊂⊃∪∩"],["a2ca","∧∨¬⇒⇔∀∃"],["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["a2f2","ʼn♯♭♪†‡¶"],["a2fe","◯"],["a3b0","0",9],["a3c1","A",25],["a3e1","a",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,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"]]'); + this.encoder = codec.iconv.getEncoder(options.defaultEncoding || "utf-32le", options) +} -/***/ }), +Utf32AutoEncoder.prototype.write = function (str) { + return this.encoder.write(str) +} -/***/ 56475: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +Utf32AutoEncoder.prototype.end = function () { + return this.encoder.end() +} -var global = __webpack_require__(32010); -var getOwnPropertyDescriptor = (__webpack_require__(72062).f); -var createNonEnumerableProperty = __webpack_require__(48914); -var redefine = __webpack_require__(13711); -var setGlobal = __webpack_require__(7421); -var copyConstructorProperties = __webpack_require__(2675); -var isForced = __webpack_require__(39599); +// -- Decoding -/* - options.target - name of the target object - options.global - target is the global object - options.stat - export as static methods of target - options.proto - export as prototype methods of target - options.real - real prototype method for the `pure` version - options.forced - export even if the native feature is available - options.bind - bind methods to the target, required for the `pure` version - options.wrap - wrap constructors to preventing global pollution, required for the `pure` version - options.unsafe - use the simple assignment of property instead of delete + defineProperty - options.sham - add a flag to not completely full polyfills - options.enumerable - export as enumerable property - options.noTargetGet - prevent calling a getter on target - options.name - the .name of the function if it does not match the key -*/ -module.exports = function (options, source) { - var TARGET = options.target; - var GLOBAL = options.global; - var STATIC = options.stat; - var FORCED, target, key, targetProperty, sourceProperty, descriptor; - if (GLOBAL) { - target = global; - } else if (STATIC) { - target = global[TARGET] || setGlobal(TARGET, {}); - } else { - target = (global[TARGET] || {}).prototype; +function Utf32AutoDecoder (options, codec) { + this.decoder = null + this.initialBufs = [] + this.initialBufsLen = 0 + this.options = options || {} + this.iconv = codec.iconv +} + +Utf32AutoDecoder.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 < 32) // 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 } - if (target) for (key in source) { - sourceProperty = source[key]; - if (options.noTargetGet) { - descriptor = getOwnPropertyDescriptor(target, key); - targetProperty = descriptor && descriptor.value; - } else targetProperty = target[key]; - FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); - // contained in target - if (!FORCED && targetProperty !== undefined) { - if (typeof sourceProperty == typeof targetProperty) continue; - copyConstructorProperties(sourceProperty, targetProperty); - } - // add a flag to not completely full polyfills - if (options.sham || (targetProperty && targetProperty.sham)) { - createNonEnumerableProperty(sourceProperty, 'sham', true); + + return this.decoder.write(buf) +} + +Utf32AutoDecoder.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 trail = this.decoder.end() + if (trail) { resStr += trail } + + this.initialBufs.length = this.initialBufsLen = 0 + return resStr + } + + return this.decoder.end() +} + +function detectEncoding (bufs, defaultEncoding) { + var b = [] + var charsProcessed = 0 + var invalidLE = 0; var invalidBE = 0 // Number of invalid chars when decoded as LE or BE. + var bmpCharsLE = 0; var bmpCharsBE = 0 // Number of BMP chars when decoded as LE or BE. + + outerLoop: + 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" + } + } + + if (b[0] !== 0 || b[1] > 0x10) invalidBE++ + if (b[3] !== 0 || b[2] > 0x10) invalidLE++ + + 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++ + + b.length = 0 + charsProcessed++ + + if (charsProcessed >= 100) { + break outerLoop + } + } } - // extend global - redefine(target, key, sourceProperty, options); } -}; + + // 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" +} /***/ }), -/***/ 56614: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +/***/ 11326: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { "use strict"; -var aCallable = __webpack_require__(32631); +var Buffer = (__webpack_require__(93143).Buffer) -var PromiseCapability = function (C) { - var resolve, reject; - this.promise = new C(function ($$resolve, $$reject) { - if (resolve !== undefined || reject !== undefined) throw TypeError('Bad Promise constructor'); - resolve = $$resolve; - reject = $$reject; - }); - this.resolve = aCallable(resolve); - this.reject = aCallable(reject); -}; +// 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 -// `NewPromiseCapability` abstract operation -// https://tc39.es/ecma262/#sec-newpromisecapability -module.exports.f = function (C) { - return new PromiseCapability(C); +exports.utf7 = Utf7Codec +exports.unicode11utf7 = "utf7" // Alias UNICODE-1-1-UTF-7 +function Utf7Codec (codecOptions, iconv) { + this.iconv = iconv }; +Utf7Codec.prototype.encoder = Utf7Encoder +Utf7Codec.prototype.decoder = Utf7Decoder +Utf7Codec.prototype.bomAware = true -/***/ }), +// -- Encoding -/***/ 56649: -/***/ (function(module) { +// Why scape ()?./? +// eslint-disable-next-line no-useless-escape +var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g -"use strict"; +function Utf7Encoder (options, codec) { + this.iconv = codec.iconv +} +Utf7Encoder.prototype.write = function (str) { + // Naive implementation. + // Non-direct chars are encoded as "+-"; 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))) +} -/** @type {import('.')} */ -var $defineProperty = Object.defineProperty || false; -if ($defineProperty) { - try { - $defineProperty({}, 'a', { value: 1 }); - } catch (e) { - // IE 8 has a broken defineProperty - $defineProperty = false; - } +Utf7Encoder.prototype.end = function () { } -module.exports = $defineProperty; +// -- Decoding +function Utf7Decoder (options, codec) { + this.iconv = codec.iconv + this.inBase64 = false + this.base64Accum = "" +} -/***/ }), +// Why scape /? +// eslint-disable-next-line no-useless-escape +var base64Regex = /[A-Za-z0-9\/+]/ +var base64Chars = [] +for (var i = 0; i < 256; i++) { base64Chars[i] = base64Regex.test(String.fromCharCode(i)) } -/***/ 56711: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { +var plusChar = "+".charCodeAt(0) +var minusChar = "-".charCodeAt(0) +var andChar = "&".charCodeAt(0) -"use strict"; +Utf7Decoder.prototype.write = function (buf) { + var res = ""; var lastI = 0 + var inBase64 = this.inBase64 + var base64Accum = this.base64Accum + // The decoder is more involved as we must handle chunks in stream. -var utils = __webpack_require__(18128); -var _require = __webpack_require__(56128), - NumberT = _require.Number; -var BufferT = /*#__PURE__*/function () { - function BufferT(length) { - this.length = length; - } - var _proto = BufferT.prototype; - _proto.decode = function decode(stream, parent) { - var length = utils.resolveLength(this.length, stream, parent); - return stream.readBuffer(length); - }; - _proto.size = function size(val, parent) { - if (!val) { - return utils.resolveLength(this.length, null, parent); - } - return val.length; - }; - _proto.encode = function encode(stream, buf, parent) { - if (this.length instanceof NumberT) { - this.length.encode(stream, buf.length); + 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") + } + + if (buf[i] != minusChar) // Minus is absorbed after base64. + { i-- } + + lastI = i + 1 + inBase64 = false + base64Accum = "" + } } - return stream.writeBuffer(buf); - }; - return BufferT; -}(); -module.exports = BufferT; + } -/***/ }), + if (!inBase64) { + res += this.iconv.decode(buf.slice(lastI), "ascii") // Write direct chars. + } else { + var b64str = base64Accum + this.iconv.decode(buf.slice(lastI), "ascii") -/***/ 56912: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + 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) -var createTypedArrayConstructor = __webpack_require__(98828); + res += this.iconv.decode(Buffer.from(b64str, "base64"), "utf16-be") + } -// `Uint8Array` constructor -// https://tc39.es/ecma262/#sec-typedarray-objects -createTypedArrayConstructor('Uint8', function (init) { - return function Uint8Array(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; -}); + this.inBase64 = inBase64 + this.base64Accum = base64Accum + return res +} -/***/ }), +Utf7Decoder.prototype.end = function () { + var res = "" + if (this.inBase64 && this.base64Accum.length > 0) { res = this.iconv.decode(Buffer.from(this.base64Accum, "base64"), "utf16-be") } -/***/ 57114: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + this.inBase64 = false + this.base64Accum = "" + return res +} -"use strict"; +// 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. -var uncurryThis = __webpack_require__(38347); -var PROPER_FUNCTION_NAME = (__webpack_require__(7081).PROPER); -var redefine = __webpack_require__(13711); -var anObject = __webpack_require__(34984); -var isPrototypeOf = __webpack_require__(70176); -var $toString = __webpack_require__(25096); -var fails = __webpack_require__(47044); -var regExpFlags = __webpack_require__(21182); +exports.utf7imap = Utf7IMAPCodec +function Utf7IMAPCodec (codecOptions, iconv) { + this.iconv = iconv +}; -var TO_STRING = 'toString'; -var RegExpPrototype = RegExp.prototype; -var n$ToString = RegExpPrototype[TO_STRING]; -var getFlags = uncurryThis(regExpFlags); +Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder +Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder +Utf7IMAPCodec.prototype.bomAware = true -var NOT_GENERIC = fails(function () { return n$ToString.call({ source: 'a', flags: 'b' }) != '/a/b'; }); -// FF44- RegExp#toString has a wrong name -var INCORRECT_NAME = PROPER_FUNCTION_NAME && n$ToString.name != TO_STRING; +// -- Encoding -// `RegExp.prototype.toString` method -// https://tc39.es/ecma262/#sec-regexp.prototype.tostring -if (NOT_GENERIC || INCORRECT_NAME) { - redefine(RegExp.prototype, TO_STRING, function toString() { - var R = anObject(this); - var p = $toString(R.source); - var rf = R.flags; - var f = $toString(rf === undefined && isPrototypeOf(RegExpPrototype, R) && !('flags' in RegExpPrototype) ? getFlags(R) : rf); - return '/' + p + '/' + f; - }, { unsafe: true }); +function Utf7IMAPEncoder (options, codec) { + this.iconv = codec.iconv + this.inBase64 = false + this.base64Accum = Buffer.alloc(6) + this.base64AccumIdx = 0 } +Utf7IMAPEncoder.prototype.write = function (str) { + var inBase64 = this.inBase64 + var base64Accum = this.base64Accum + var base64AccumIdx = this.base64AccumIdx + var buf = Buffer.alloc(str.length * 5 + 10); var bufIdx = 0 -/***/ }), + for (var i = 0; i < str.length; i++) { + var uChar = str.charCodeAt(i) + if (uChar >= 0x20 && 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 + } -/***/ 57444: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + buf[bufIdx++] = minusChar // Write '-', then go to direct mode. + inBase64 = false + } -var $ = __webpack_require__(56475); -var fails = __webpack_require__(47044); -var toIndexedObject = __webpack_require__(98086); -var nativeGetOwnPropertyDescriptor = (__webpack_require__(72062).f); -var DESCRIPTORS = __webpack_require__(15567); + if (!inBase64) { + buf[bufIdx++] = uChar // Write direct character -var FAILS_ON_PRIMITIVES = fails(function () { nativeGetOwnPropertyDescriptor(1); }); -var FORCED = !DESCRIPTORS || FAILS_ON_PRIMITIVES; + if (uChar === andChar) // Ampersand -> '&-' + { buf[bufIdx++] = minusChar } + } + } 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 -// `Object.getOwnPropertyDescriptor` method -// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor -$({ target: 'Object', stat: true, forced: FORCED, sham: !DESCRIPTORS }, { - getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) { - return nativeGetOwnPropertyDescriptor(toIndexedObject(it), key); + if (base64AccumIdx == base64Accum.length) { + bufIdx += buf.write(base64Accum.toString("base64").replace(/\//g, ","), bufIdx) + base64AccumIdx = 0 + } + } + } } -}); + this.inBase64 = inBase64 + this.base64AccumIdx = base64AccumIdx -/***/ }), + return buf.slice(0, bufIdx) +} -/***/ 57770: -/***/ (function(module) { +Utf7IMAPEncoder.prototype.end = function () { + var buf = Buffer.alloc(10); var 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 + } -"use strict"; + buf[bufIdx++] = minusChar // Write '-', then go to direct mode. + this.inBase64 = false + } + return buf.slice(0, bufIdx) +} -/** @type {import('./syntax')} */ -module.exports = SyntaxError; +// -- Decoding +function Utf7IMAPDecoder (options, codec) { + this.iconv = codec.iconv + this.inBase64 = false + this.base64Accum = "" +} -/***/ }), +var base64IMAPChars = base64Chars.slice() +base64IMAPChars[",".charCodeAt(0)] = true -/***/ 58028: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +Utf7IMAPDecoder.prototype.write = function (buf) { + var res = ""; var lastI = 0 + var inBase64 = this.inBase64 + var base64Accum = this.base64Accum -"use strict"; + // 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). -var $ = __webpack_require__(56475); -var $includes = (__webpack_require__(12636).includes); -var addToUnscopables = __webpack_require__(71156); + 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") + } -// `Array.prototype.includes` method -// https://tc39.es/ecma262/#sec-array.prototype.includes -$({ target: 'Array', proto: true }, { - includes: function includes(el /* , fromIndex = 0 */) { - return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined); + if (buf[i] != minusChar) // Minus may be absorbed after base64. + { i-- } + + lastI = i + 1 + inBase64 = false + base64Accum = "" + } + } } -}); -// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables -addToUnscopables('includes'); + 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, "/") + 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) -/***/ }), + res += this.iconv.decode(Buffer.from(b64str, "base64"), "utf16-be") + } -/***/ 58099: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + this.inBase64 = inBase64 + this.base64Accum = base64Accum -var createTypedArrayConstructor = __webpack_require__(98828); + return res +} -// `Uint8ClampedArray` constructor -// https://tc39.es/ecma262/#sec-typedarray-objects -createTypedArrayConstructor('Uint8', function (init) { - return function Uint8ClampedArray(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; -}, true); +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 +} /***/ }), -/***/ 58281: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 52331: +/***/ (function(__unused_webpack_module, exports) { "use strict"; -var charAt = (__webpack_require__(69510).charAt); -var toString = __webpack_require__(25096); -var InternalStateModule = __webpack_require__(70172); -var defineIterator = __webpack_require__(97001); -var STRING_ITERATOR = 'String Iterator'; -var setInternalState = InternalStateModule.set; -var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); +var BOMChar = "\uFEFF" -// `String.prototype[@@iterator]` method -// https://tc39.es/ecma262/#sec-string.prototype-@@iterator -defineIterator(String, 'String', function (iterated) { - setInternalState(this, { - type: STRING_ITERATOR, - string: toString(iterated), - index: 0 - }); -// `%StringIteratorPrototype%.next` method -// https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next -}, function next() { - var state = getInternalState(this); - var string = state.string; - var index = state.index; - var point; - if (index >= string.length) return { value: undefined, done: true }; - point = charAt(string, index); - state.index += point.length; - return { value: point, done: false }; -}); +exports.PrependBOM = PrependBOMWrapper +function PrependBOMWrapper (encoder, options) { + this.encoder = encoder + this.addBOM = true +} + +PrependBOMWrapper.prototype.write = function (str) { + if (this.addBOM) { + str = BOMChar + str + this.addBOM = false + } + + return this.encoder.write(str) +} + +PrependBOMWrapper.prototype.end = function () { + return this.encoder.end() +} + +// ------------------------------------------------------------------------------ + +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() +} /***/ }), -/***/ 58448: +/***/ 3919: /***/ (function(module) { -var FunctionPrototype = Function.prototype; -var apply = FunctionPrototype.apply; -var bind = FunctionPrototype.bind; -var call = FunctionPrototype.call; +"use strict"; -// eslint-disable-next-line es/no-reflect -- safe -module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () { - return call.apply(apply, arguments); -}); + +var hasOwn = typeof Object.hasOwn === "undefined" ? Function.call.bind(Object.prototype.hasOwnProperty) : Object.hasOwn + +function mergeModules (target, module) { + for (var key in module) { + if (hasOwn(module, key)) { + target[key] = module[key] + } + } +} + +module.exports = mergeModules /***/ }), -/***/ 58549: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 54171: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var $ = __webpack_require__(56475); +"use strict"; -// `Number.EPSILON` constant -// https://tc39.es/ecma262/#sec-number.epsilon -$({ target: 'Number', stat: true }, { - EPSILON: Math.pow(2, -52) -}); +var Buffer = (__webpack_require__(93143).Buffer) + +var bomHandling = __webpack_require__(52331) +var mergeModules = __webpack_require__(3919) + +// All codecs and aliases are kept here, keyed by encoding name/alias. +// They are lazy loaded in `iconv.getCodec` from `encodings/index.js`. +// Cannot initialize with { __proto__: null } because Boolean({ __proto__: null }) === true +module.exports.encodings = null + +// Characters emitted in case of error. +module.exports.defaultCharUnicode = "�" +module.exports.defaultCharSingleByte = "?" + +// Public API. +module.exports.encode = function encode (str, encoding, options) { + str = "" + (str || "") // Ensure string. -/***/ }), + var encoder = module.exports.getEncoder(encoding, options) -/***/ 58659: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + var res = encoder.write(str) + var trail = encoder.end() -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); + return (trail && trail.length > 0) ? Buffer.concat([res, trail]) : res +} -var String = global.String; -var TypeError = global.TypeError; +module.exports.decode = function decode (buf, encoding, options) { + if (typeof buf === "string") { + if (!module.exports.skipDecodeWarning) { + console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding") + module.exports.skipDecodeWarning = true + } -module.exports = function (argument) { - if (typeof argument == 'object' || isCallable(argument)) return argument; - throw TypeError("Can't set " + String(argument) + ' as a prototype'); -}; + buf = Buffer.from("" + (buf || ""), "binary") // Ensure buffer. + } + var decoder = module.exports.getDecoder(encoding, options) -/***/ }), + var res = decoder.write(buf) + var trail = decoder.end() -/***/ 58843: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + return trail ? (res + trail) : res +} -"use strict"; +module.exports.encodingExists = function encodingExists (enc) { + try { + module.exports.getCodec(enc) + return true + } catch (e) { + return false + } +} +// Legacy aliases to convert functions +module.exports.toEncoding = module.exports.encode +module.exports.fromEncoding = module.exports.decode -var callBound = __webpack_require__(22774); -var isRegex = __webpack_require__(71689); +// Search for a codec in iconv.encodings. Cache codec data in iconv._codecDataCache. +module.exports._codecDataCache = { __proto__: null } -var $exec = callBound('RegExp.prototype.exec'); -var $TypeError = __webpack_require__(96785); +module.exports.getCodec = function getCodec (encoding) { + if (!module.exports.encodings) { + var raw = __webpack_require__(26326) + // TODO: In future versions when old nodejs support is removed can use object.assign + module.exports.encodings = { __proto__: null } // Initialize as empty object. + mergeModules(module.exports.encodings, raw) + } -/** @type {import('.')} */ -module.exports = function regexTester(regex) { - if (!isRegex(regex)) { - throw new $TypeError('`regex` must be a RegExp'); - } - return function test(s) { - return $exec(regex, s) !== null; - }; -}; + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + var enc = module.exports._canonicalizeEncoding(encoding) + // Traverse iconv.encodings to find actual codec. + var codecOptions = {} + while (true) { + var codec = module.exports._codecDataCache[enc] -/***/ }), + if (codec) { return codec } -/***/ 59006: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + var codecDef = module.exports.encodings[enc] -"use strict"; + switch (typeof codecDef) { + case "string": // Direct alias to other encoding. + enc = codecDef + break + case "object": // Alias with options. Can be layered. + for (var key in codecDef) { codecOptions[key] = codecDef[key] } -__webpack_require__(81755); -__webpack_require__(20731); -__webpack_require__(8953); -__webpack_require__(14032); -__webpack_require__(56912); -__webpack_require__(59735); -__webpack_require__(73663); -__webpack_require__(29883); -__webpack_require__(35471); -__webpack_require__(21012); -__webpack_require__(88997); -__webpack_require__(97464); -__webpack_require__(2857); -__webpack_require__(94715); -__webpack_require__(13624); -__webpack_require__(91132); -__webpack_require__(62514); -__webpack_require__(24597); -__webpack_require__(88042); -__webpack_require__(4660); -__webpack_require__(92451); -__webpack_require__(44206); -__webpack_require__(66288); -__webpack_require__(13250); -__webpack_require__(3858); -__webpack_require__(84538); -__webpack_require__(64793); -__webpack_require__(74202); -__webpack_require__(52529); -var inflate = __webpack_require__(3483); -var _require = __webpack_require__(84327), - swap32LE = _require.swap32LE; + if (!codecOptions.encodingName) { codecOptions.encodingName = enc } -// Shift size for getting the index-1 table offset. -var SHIFT_1 = 6 + 5; + enc = codecDef.type + break -// Shift size for getting the index-2 table offset. -var SHIFT_2 = 5; + case "function": // Codec itself. + if (!codecOptions.encodingName) { codecOptions.encodingName = enc } -// Difference between the two shift sizes, -// for getting an index-1 offset from an index-2 offset. 6=11-5 -var SHIFT_1_2 = SHIFT_1 - SHIFT_2; + // 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, module.exports) -// Number of index-1 entries for the BMP. 32=0x20 -// This part of the index-1 table is omitted from the serialized form. -var OMITTED_BMP_INDEX_1_LENGTH = 0x10000 >> SHIFT_1; + module.exports._codecDataCache[codecOptions.encodingName] = codec // Save it to be reused later. + return codec -// Number of entries in an index-2 block. 64=0x40 -var INDEX_2_BLOCK_LENGTH = 1 << SHIFT_1_2; + default: + throw new Error("Encoding not recognized: '" + encoding + "' (searched as: '" + enc + "')") + } + } +} -// Mask for getting the lower bits for the in-index-2-block offset. */ -var INDEX_2_MASK = INDEX_2_BLOCK_LENGTH - 1; +module.exports._canonicalizeEncoding = function (encoding) { + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + return ("" + encoding).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g, "") +} -// Shift size for shifting left the index array values. -// Increases possible data size with 16-bit index values at the cost -// of compactability. -// This requires data blocks to be aligned by DATA_GRANULARITY. -var INDEX_SHIFT = 2; +module.exports.getEncoder = function getEncoder (encoding, options) { + var codec = module.exports.getCodec(encoding) + var encoder = new codec.encoder(options, codec) -// Number of entries in a data block. 32=0x20 -var DATA_BLOCK_LENGTH = 1 << SHIFT_2; + if (codec.bomAware && options && options.addBOM) { encoder = new bomHandling.PrependBOM(encoder, options) } -// Mask for getting the lower bits for the in-data-block offset. -var DATA_MASK = DATA_BLOCK_LENGTH - 1; + return encoder +} -// The part of the index-2 table for U+D800..U+DBFF stores values for -// lead surrogate code _units_ not code _points_. -// Values for lead surrogate code _points_ are indexed with this portion of the table. -// Length=32=0x20=0x400>>SHIFT_2. (There are 1024=0x400 lead surrogates.) -var LSCP_INDEX_2_OFFSET = 0x10000 >> SHIFT_2; -var LSCP_INDEX_2_LENGTH = 0x400 >> SHIFT_2; +module.exports.getDecoder = function getDecoder (encoding, options) { + var codec = module.exports.getCodec(encoding) + var decoder = new codec.decoder(options, codec) -// Count the lengths of both BMP pieces. 2080=0x820 -var INDEX_2_BMP_LENGTH = LSCP_INDEX_2_OFFSET + LSCP_INDEX_2_LENGTH; + if (codec.bomAware && !(options && options.stripBOM === false)) { decoder = new bomHandling.StripBOM(decoder, options) } -// The 2-byte UTF-8 version of the index-2 table follows at offset 2080=0x820. -// Length 32=0x20 for lead bytes C0..DF, regardless of SHIFT_2. -var UTF8_2B_INDEX_2_OFFSET = INDEX_2_BMP_LENGTH; -var UTF8_2B_INDEX_2_LENGTH = 0x800 >> 6; // U+0800 is the first code point after 2-byte UTF-8 + return decoder +} -// The index-1 table, only used for supplementary code points, at offset 2112=0x840. -// Variable length, for code points up to highStart, where the last single-value range starts. -// Maximum length 512=0x200=0x100000>>SHIFT_1. -// (For 0x100000 supplementary code points U+10000..U+10ffff.) -// -// The part of the index-2 table for supplementary code points starts -// after this index-1 table. -// -// Both the index-1 table and the following part of the index-2 table -// are omitted completely if there is only BMP data. -var INDEX_1_OFFSET = UTF8_2B_INDEX_2_OFFSET + UTF8_2B_INDEX_2_LENGTH; +// 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')); +module.exports.enableStreamingAPI = function enableStreamingAPI (streamModule) { + if (module.exports.supportsStreams) { return } -// The alignment size of a data block. Also the granularity for compaction. -var DATA_GRANULARITY = 1 << INDEX_SHIFT; -var UnicodeTrie = /*#__PURE__*/function () { - function UnicodeTrie(data) { - var isBuffer = typeof data.readUInt32BE === 'function' && typeof data.slice === 'function'; - if (isBuffer || data instanceof Uint8Array) { - // read binary format - var uncompressedLength; - if (isBuffer) { - this.highStart = data.readUInt32LE(0); - this.errorValue = data.readUInt32LE(4); - uncompressedLength = data.readUInt32LE(8); - data = data.slice(12); - } else { - var view = new DataView(data.buffer); - this.highStart = view.getUint32(0, true); - this.errorValue = view.getUint32(4, true); - uncompressedLength = view.getUint32(8, true); - data = data.subarray(12); - } + // Dependency-inject stream module to create IconvLite stream classes. + var streams = __webpack_require__(34506)(streamModule) - // double inflate the actual trie data - data = inflate(data, new Uint8Array(uncompressedLength)); - data = inflate(data, new Uint8Array(uncompressedLength)); + // Not public API yet, but expose the stream classes. + module.exports.IconvLiteEncoderStream = streams.IconvLiteEncoderStream + module.exports.IconvLiteDecoderStream = streams.IconvLiteDecoderStream - // swap bytes from little-endian - swap32LE(data); - this.data = new Uint32Array(data.buffer); - } else { - // pre-parsed data - var _data = data; - this.data = _data.data; - this.highStart = _data.highStart; - this.errorValue = _data.errorValue; - } + // Streaming API. + module.exports.encodeStream = function encodeStream (encoding, options) { + return new module.exports.IconvLiteEncoderStream(module.exports.getEncoder(encoding, options), options) } - var _proto = UnicodeTrie.prototype; - _proto.get = function get(codePoint) { - var index; - if (codePoint < 0 || codePoint > 0x10ffff) { - return this.errorValue; - } - if (codePoint < 0xd800 || codePoint > 0xdbff && codePoint <= 0xffff) { - // Ordinary BMP code point, excluding leading surrogates. - // BMP uses a single level lookup. BMP index starts at offset 0 in the index. - // data is stored in the index array itself. - index = (this.data[codePoint >> SHIFT_2] << INDEX_SHIFT) + (codePoint & DATA_MASK); - return this.data[index]; - } - if (codePoint <= 0xffff) { - // Lead Surrogate Code Point. A Separate index section is stored for - // lead surrogate code units and code points. - // The main index has the code unit data. - // For this function, we need the code point data. - index = (this.data[LSCP_INDEX_2_OFFSET + (codePoint - 0xd800 >> SHIFT_2)] << INDEX_SHIFT) + (codePoint & DATA_MASK); - return this.data[index]; - } - if (codePoint < this.highStart) { - // Supplemental code point, use two-level lookup. - index = this.data[INDEX_1_OFFSET - OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> SHIFT_1)]; - index = this.data[index + (codePoint >> SHIFT_2 & INDEX_2_MASK)]; - index = (index << INDEX_SHIFT) + (codePoint & DATA_MASK); - return this.data[index]; - } - return this.data[this.data.length - DATA_GRANULARITY]; - }; - return UnicodeTrie; -}(); -module.exports = UnicodeTrie; -/***/ }), + module.exports.decodeStream = function decodeStream (encoding, options) { + return new module.exports.IconvLiteDecoderStream(module.exports.getDecoder(encoding, options), options) + } -/***/ 59113: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + module.exports.supportsStreams = true +} -var classof = __webpack_require__(93975); +// Enable Streaming API automatically if 'stream' module is available and non-empty (the majority of environments). +var streamModule +try { + streamModule = __webpack_require__(16403) +} catch (e) {} -// `IsArray` abstract operation -// https://tc39.es/ecma262/#sec-isarray -// eslint-disable-next-line es/no-array-isarray -- safe -module.exports = Array.isArray || function isArray(argument) { - return classof(argument) == 'Array'; -}; +if (streamModule && streamModule.Transform) { + module.exports.enableStreamingAPI(streamModule) +} else { + // In rare cases where 'stream' module is not available by default, throw a helpful exception. + module.exports.encodeStream = module.exports.decodeStream = function () { + throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.") + } +} + +// Some environments, such as browsers, may not load JavaScript files as UTF-8 +// eslint-disable-next-line no-constant-condition +if (false) // removed by dead control flow +{} /***/ }), -/***/ 59610: +/***/ 34506: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var arrayFromConstructorAndList = __webpack_require__(34269); -var typedArraySpeciesConstructor = __webpack_require__(34815); +"use strict"; -module.exports = function (instance, list) { - return arrayFromConstructorAndList(typedArraySpeciesConstructor(instance), list); -}; +var Buffer = (__webpack_require__(93143).Buffer) -/***/ }), +// 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 (streamModule) { + var Transform = streamModule.Transform -/***/ 59735: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { + // == Encoder stream ======================================================= -var createTypedArrayConstructor = __webpack_require__(98828); + 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) + } -// `Uint32Array` constructor -// https://tc39.es/ecma262/#sec-typedarray-objects -createTypedArrayConstructor('Uint32', function (init) { - return function Uint32Array(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; -}); + IconvLiteEncoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteEncoderStream } + }) + 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) + } + } -/***/ 59754: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + IconvLiteEncoderStream.prototype._flush = function (done) { + try { + var res = this.conv.end() + if (res && res.length) this.push(res) + done() + } catch (e) { + done(e) + } + } -"use strict"; + 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 + } + // == Decoder stream ======================================================= -var NATIVE_ARRAY_BUFFER = __webpack_require__(30450); -var DESCRIPTORS = __webpack_require__(15567); -var global = __webpack_require__(32010); -var isCallable = __webpack_require__(94578); -var isObject = __webpack_require__(24517); -var hasOwn = __webpack_require__(20340); -var classof = __webpack_require__(52564); -var tryToString = __webpack_require__(68664); -var createNonEnumerableProperty = __webpack_require__(48914); -var redefine = __webpack_require__(13711); -var defineProperty = (__webpack_require__(95892).f); -var isPrototypeOf = __webpack_require__(70176); -var getPrototypeOf = __webpack_require__(69548); -var setPrototypeOf = __webpack_require__(3840); -var wellKnownSymbol = __webpack_require__(38688); -var uid = __webpack_require__(46859); -var Int8Array = global.Int8Array; -var Int8ArrayPrototype = Int8Array && Int8Array.prototype; -var Uint8ClampedArray = global.Uint8ClampedArray; -var Uint8ClampedArrayPrototype = Uint8ClampedArray && Uint8ClampedArray.prototype; -var TypedArray = Int8Array && getPrototypeOf(Int8Array); -var TypedArrayPrototype = Int8ArrayPrototype && getPrototypeOf(Int8ArrayPrototype); -var ObjectPrototype = Object.prototype; -var TypeError = global.TypeError; -var TO_STRING_TAG = wellKnownSymbol('toStringTag'); -var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG'); -var TYPED_ARRAY_CONSTRUCTOR = uid('TYPED_ARRAY_CONSTRUCTOR'); -// Fixing native typed arrays in Opera Presto crashes the browser, see #595 -var NATIVE_ARRAY_BUFFER_VIEWS = NATIVE_ARRAY_BUFFER && !!setPrototypeOf && classof(global.opera) !== 'Opera'; -var TYPED_ARRAY_TAG_REQIRED = false; -var NAME, Constructor, Prototype; -var TypedArrayConstructorsList = { - Int8Array: 1, - Uint8Array: 1, - Uint8ClampedArray: 1, - Int16Array: 2, - Uint16Array: 2, - Int32Array: 4, - Uint32Array: 4, - Float32Array: 4, - Float64Array: 8 -}; -var BigIntArrayConstructorsList = { - BigInt64Array: 8, - BigUint64Array: 8 -}; -var isView = function isView(it) { - if (!isObject(it)) return false; - var klass = classof(it); - return klass === 'DataView' || hasOwn(TypedArrayConstructorsList, klass) || hasOwn(BigIntArrayConstructorsList, klass); -}; -var isTypedArray = function isTypedArray(it) { - if (!isObject(it)) return false; - var klass = classof(it); - return hasOwn(TypedArrayConstructorsList, klass) || hasOwn(BigIntArrayConstructorsList, klass); -}; -var aTypedArray = function aTypedArray(it) { - if (isTypedArray(it)) return it; - throw TypeError('Target is not a typed array'); -}; -var aTypedArrayConstructor = function aTypedArrayConstructor(C) { - if (isCallable(C) && (!setPrototypeOf || isPrototypeOf(TypedArray, C))) return C; - throw TypeError(tryToString(C) + ' is not a typed array constructor'); -}; -var exportTypedArrayMethod = function exportTypedArrayMethod(KEY, property, forced) { - if (!DESCRIPTORS) return; - if (forced) for (var ARRAY in TypedArrayConstructorsList) { - var TypedArrayConstructor = global[ARRAY]; - if (TypedArrayConstructor && hasOwn(TypedArrayConstructor.prototype, KEY)) try { - delete TypedArrayConstructor.prototype[KEY]; - } catch (error) {/* empty */} - } - if (!TypedArrayPrototype[KEY] || forced) { - redefine(TypedArrayPrototype, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && Int8ArrayPrototype[KEY] || property); + function IconvLiteDecoderStream (conv, options) { + this.conv = conv + options = options || {} + options.encoding = this.encoding = "utf8" // We output strings. + Transform.call(this, options) } -}; -var exportTypedArrayStaticMethod = function exportTypedArrayStaticMethod(KEY, property, forced) { - var ARRAY, TypedArrayConstructor; - if (!DESCRIPTORS) return; - if (setPrototypeOf) { - if (forced) for (ARRAY in TypedArrayConstructorsList) { - TypedArrayConstructor = global[ARRAY]; - if (TypedArrayConstructor && hasOwn(TypedArrayConstructor, KEY)) try { - delete TypedArrayConstructor[KEY]; - } catch (error) {/* empty */} + + IconvLiteDecoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteDecoderStream } + }) + + 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) } - if (!TypedArray[KEY] || forced) { - // V8 ~ Chrome 49-50 `%TypedArray%` methods are non-writable non-configurable - try { - return redefine(TypedArray, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && TypedArray[KEY] || property); - } catch (error) {/* empty */} - } else return; } - for (ARRAY in TypedArrayConstructorsList) { - TypedArrayConstructor = global[ARRAY]; - if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) { - redefine(TypedArrayConstructor, KEY, property); + + 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) } } -}; -for (NAME in TypedArrayConstructorsList) { - Constructor = global[NAME]; - Prototype = Constructor && Constructor.prototype; - if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);else NATIVE_ARRAY_BUFFER_VIEWS = false; -} -for (NAME in BigIntArrayConstructorsList) { - Constructor = global[NAME]; - Prototype = Constructor && Constructor.prototype; - if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor); -} -// WebKit bug - typed arrays constructors prototype is Object.prototype -if (!NATIVE_ARRAY_BUFFER_VIEWS || !isCallable(TypedArray) || TypedArray === Function.prototype) { - // eslint-disable-next-line no-shadow -- safe - TypedArray = function TypedArray() { - throw TypeError('Incorrect invocation'); - }; - if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) { - if (global[NAME]) setPrototypeOf(global[NAME], TypedArray); + 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 + } + + return { + IconvLiteEncoderStream: IconvLiteEncoderStream, + IconvLiteDecoderStream: IconvLiteDecoderStream } } -if (!NATIVE_ARRAY_BUFFER_VIEWS || !TypedArrayPrototype || TypedArrayPrototype === ObjectPrototype) { - TypedArrayPrototype = TypedArray.prototype; - if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) { - if (global[NAME]) setPrototypeOf(global[NAME].prototype, TypedArrayPrototype); + + +/***/ }), + +/***/ 89029: +/***/ (function(__unused_webpack_module, exports) { + +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ +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 + + 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) {} + + 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) } -// WebKit bug - one more object in Uint8ClampedArray prototype chain -if (NATIVE_ARRAY_BUFFER_VIEWS && getPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype) { - setPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype); -} -if (DESCRIPTORS && !hasOwn(TypedArrayPrototype, TO_STRING_TAG)) { - TYPED_ARRAY_TAG_REQIRED = true; - defineProperty(TypedArrayPrototype, TO_STRING_TAG, { - get: function get() { - return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined; +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 + + value = Math.abs(value) + + 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 + } + + 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 } - }); - for (NAME in TypedArrayConstructorsList) if (global[NAME]) { - createNonEnumerableProperty(global[NAME], TYPED_ARRAY_TAG, NAME); } -} -module.exports = { - NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS, - TYPED_ARRAY_CONSTRUCTOR: TYPED_ARRAY_CONSTRUCTOR, - TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQIRED && TYPED_ARRAY_TAG, - aTypedArray: aTypedArray, - aTypedArrayConstructor: aTypedArrayConstructor, - exportTypedArrayMethod: exportTypedArrayMethod, - exportTypedArrayStaticMethod: exportTypedArrayStaticMethod, - isView: isView, - isTypedArray: isTypedArray, - TypedArray: TypedArray, - TypedArrayPrototype: TypedArrayPrototype -}; -/***/ }), + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} -/***/ 59804: -/***/ (function(module, __unused_webpack_exports, __webpack_require__) { + e = (e << mLen) | m + eLen += mLen + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} -var global = __webpack_require__(32010); -var bind = __webpack_require__(25567); -var getOwnPropertyDescriptor = (__webpack_require__(72062).f); -var macrotask = (__webpack_require__(6616).set); -var IS_IOS = __webpack_require__(17716); -var IS_IOS_PEBBLE = __webpack_require__(70573); -var IS_WEBOS_WEBKIT = __webpack_require__(664); -var IS_NODE = __webpack_require__(95053); + buffer[offset + i - d] |= s * 128 +} -var MutationObserver = global.MutationObserver || global.WebKitMutationObserver; -var document = global.document; -var process = global.process; -var Promise = global.Promise; -// Node.js 11 shows ExperimentalWarning on getting `queueMicrotask` -var queueMicrotaskDescriptor = getOwnPropertyDescriptor(global, 'queueMicrotask'); -var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value; -var flush, head, last, notify, toggle, node, promise, then; +/***/ }), -// modern engines have queueMicrotask method -if (!queueMicrotask) { - flush = function () { - var parent, fn; - if (IS_NODE && (parent = process.domain)) parent.exit(); - while (head) { - fn = head.fn; - head = head.next; - try { - fn(); - } catch (error) { - if (head) notify(); - else last = undefined; - throw error; - } - } last = undefined; - if (parent) parent.enter(); - }; +/***/ 89784: +/***/ (function(module) { - // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339 - // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898 - if (!IS_IOS && !IS_NODE && !IS_WEBOS_WEBKIT && MutationObserver && document) { - toggle = true; - node = document.createTextNode(''); - new MutationObserver(flush).observe(node, { characterData: true }); - notify = function () { - node.data = toggle = !toggle; - }; - // environments with maybe non-completely correct, but existent Promise - } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) { - // Promise.resolve without an argument throws an error in LG WebOS 2 - promise = Promise.resolve(undefined); - // workaround of WebKit ~ iOS Safari 10.1 bug - promise.constructor = Promise; - then = bind(promise.then, promise); - notify = function () { - then(flush); - }; - // Node.js without promises - } else if (IS_NODE) { - notify = function () { - process.nextTick(flush); - }; - // for other environments - macrotask based on: - // - setImmediate - // - MessageChannel - // - window.postMessag - // - onreadystatechange - // - setTimeout - } else { - // strange IE + webpack dev server bug - use .bind(global) - macrotask = bind(macrotask, global); - notify = function () { - macrotask(flush); - }; +if (typeof Object.create === 'function') { + // implementation from standard node.js 'util' module + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + ctor.prototype = Object.create(superCtor.prototype, { + constructor: { + value: ctor, + enumerable: false, + writable: true, + configurable: true + } + }) + } + }; +} else { + // old school shim for old browsers + module.exports = function inherits(ctor, superCtor) { + if (superCtor) { + ctor.super_ = superCtor + var TempCtor = function () {} + TempCtor.prototype = superCtor.prototype + ctor.prototype = new TempCtor() + ctor.prototype.constructor = ctor + } } } -module.exports = queueMicrotask || function (fn) { - var task = { fn: fn, next: undefined }; - if (last) last.next = task; - if (!head) { - head = task; - notify(); - } last = task; -}; - /***/ }), -/***/ 59805: +/***/ 67906: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); +"use strict"; -var globalIsFinite = global.isFinite; -// `Number.isFinite` method -// https://tc39.es/ecma262/#sec-number.isfinite -// eslint-disable-next-line es/no-number-isfinite -- safe -module.exports = Number.isFinite || function isFinite(it) { - return typeof it == 'number' && globalIsFinite(it); -}; +var hasToStringTag = __webpack_require__(26626)(); +var callBound = __webpack_require__(22774); +var $toString = callBound('Object.prototype.toString'); -/***/ }), +/** @type {import('.')} */ +var isStandardArguments = function isArguments(value) { + if ( + hasToStringTag + && value + && typeof value === 'object' + && Symbol.toStringTag in value + ) { + return false; + } + return $toString(value) === '[object Arguments]'; +}; -/***/ 59883: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/** @type {import('.')} */ +var isLegacyArguments = function isArguments(value) { + if (isStandardArguments(value)) { + return true; + } + return value !== null + && typeof value === 'object' + && 'length' in value + && typeof value.length === 'number' + && value.length >= 0 + && $toString(value) !== '[object Array]' + && 'callee' in value + && $toString(value.callee) === '[object Function]'; +}; -var $ = __webpack_require__(56475); -var $values = (__webpack_require__(80754).values); +var supportsStandardArguments = (function () { + return isStandardArguments(arguments); +}()); -// `Object.values` method -// https://tc39.es/ecma262/#sec-object.values -$({ target: 'Object', stat: true }, { - values: function values(O) { - return $values(O); - } -}); +// @ts-expect-error TODO make this not error +isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests + +/** @type {import('.')} */ +module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments; /***/ }), -/***/ 60378: +/***/ 3746: /***/ (function(module) { -module.exports = function () { - throw new Error('Readable.from is not available in the browser') +"use strict"; + + +var fnToStr = Function.prototype.toString; +var reflectApply = typeof Reflect === 'object' && Reflect !== null && Reflect.apply; +var badArrayLike; +var isCallableMarker; +if (typeof reflectApply === 'function' && typeof Object.defineProperty === 'function') { + try { + badArrayLike = Object.defineProperty({}, 'length', { + get: function () { + throw isCallableMarker; + } + }); + isCallableMarker = {}; + // eslint-disable-next-line no-throw-literal + reflectApply(function () { throw 42; }, null, badArrayLike); + } catch (_) { + if (_ !== isCallableMarker) { + reflectApply = null; + } + } +} else { + reflectApply = null; +} + +var constructorRegex = /^\s*class\b/; +var isES6ClassFn = function isES6ClassFunction(value) { + try { + var fnStr = fnToStr.call(value); + return constructorRegex.test(fnStr); + } catch (e) { + return false; // not a function + } +}; + +var tryFunctionObject = function tryFunctionToStr(value) { + try { + if (isES6ClassFn(value)) { return false; } + fnToStr.call(value); + return true; + } catch (e) { + return false; + } }; +var toStr = Object.prototype.toString; +var objectClass = '[object Object]'; +var fnClass = '[object Function]'; +var genClass = '[object GeneratorFunction]'; +var ddaClass = '[object HTMLAllCollection]'; // IE 11 +var ddaClass2 = '[object HTML document.all class]'; +var ddaClass3 = '[object HTMLCollection]'; // IE 9-10 +var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag` + +var isIE68 = !(0 in [,]); // eslint-disable-line no-sparse-arrays, comma-spacing + +var isDDA = function isDocumentDotAll() { return false; }; +if (typeof document === 'object') { + // Firefox 3 canonicalizes DDA to undefined when it's not accessed directly + var all = document.all; + if (toStr.call(all) === toStr.call(document.all)) { + isDDA = function isDocumentDotAll(value) { + /* globals document: false */ + // in IE 6-8, typeof document.all is "object" and it's truthy + if ((isIE68 || !value) && (typeof value === 'undefined' || typeof value === 'object')) { + try { + var str = toStr.call(value); + return ( + str === ddaClass + || str === ddaClass2 + || str === ddaClass3 // opera 12.16 + || str === objectClass // IE 6-8 + ) && value('') == null; // eslint-disable-line eqeqeq + } catch (e) { /**/ } + } + return false; + }; + } +} + +module.exports = reflectApply + ? function isCallable(value) { + if (isDDA(value)) { return true; } + if (!value) { return false; } + if (typeof value !== 'function' && typeof value !== 'object') { return false; } + try { + reflectApply(value, null, badArrayLike); + } catch (e) { + if (e !== isCallableMarker) { return false; } + } + return !isES6ClassFn(value) && tryFunctionObject(value); + } + : function isCallable(value) { + if (isDDA(value)) { return true; } + if (!value) { return false; } + if (typeof value !== 'function' && typeof value !== 'object') { return false; } + if (hasToStringTag) { return tryFunctionObject(value); } + if (isES6ClassFn(value)) { return false; } + var strClass = toStr.call(value); + if (strClass !== fnClass && strClass !== genClass && !(/^\[object HTML/).test(strClass)) { return false; } + return tryFunctionObject(value); + }; /***/ }), -/***/ 60480: +/***/ 71230: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -__webpack_require__(74516); -var Bitfield = /*#__PURE__*/function () { - function Bitfield(type, flags) { - if (flags === void 0) { - flags = []; - } - this.type = type; - this.flags = flags; - } - var _proto = Bitfield.prototype; - _proto.decode = function decode(stream) { - var val = this.type.decode(stream); - var res = {}; - for (var i = 0; i < this.flags.length; i++) { - var flag = this.flags[i]; - if (flag != null) { - res[flag] = !!(val & 1 << i); - } - } - return res; - }; - _proto.size = function size() { - return this.type.size(); - }; - _proto.encode = function encode(stream, keys) { - var val = 0; - for (var i = 0; i < this.flags.length; i++) { - var flag = this.flags[i]; - if (flag != null) { - if (keys[flag]) { - val |= 1 << i; - } - } - } - return this.type.encode(stream, val); - }; - return Bitfield; -}(); -module.exports = Bitfield; +var callBound = __webpack_require__(22774); + +var getDay = callBound('Date.prototype.getDay'); +/** @type {import('.')} */ +var tryDateObject = function tryDateGetDayCall(value) { + try { + getDay(value); + return true; + } catch (e) { + return false; + } +}; + +/** @type {(value: unknown) => string} */ +var toStr = callBound('Object.prototype.toString'); +var dateClass = '[object Date]'; +var hasToStringTag = __webpack_require__(26626)(); + +/** @type {import('.')} */ +module.exports = function isDateObject(value) { + if (typeof value !== 'object' || value === null) { + return false; + } + return hasToStringTag ? tryDateObject(value) : toStr(value) === dateClass; +}; + /***/ }), -/***/ 61084: -/***/ (function(module) { +/***/ 44610: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var functionsHaveNames = function functionsHaveNames() { - return typeof function f() {}.name === 'string'; -}; +var callBound = __webpack_require__(22774); +var safeRegexTest = __webpack_require__(58843); +var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/); +var hasToStringTag = __webpack_require__(26626)(); +var getProto = __webpack_require__(87106); -var gOPD = Object.getOwnPropertyDescriptor; -if (gOPD) { +var toStr = callBound('Object.prototype.toString'); +var fnToStr = callBound('Function.prototype.toString'); + +var getGeneratorFunc = function () { // eslint-disable-line consistent-return + if (!hasToStringTag) { + return false; + } try { - gOPD([], 'length'); + return Function('return function*() {}')(); } catch (e) { - // IE 8 has a broken gOPD - gOPD = null; } -} - -functionsHaveNames.functionsHaveConfigurableNames = function functionsHaveConfigurableNames() { - if (!functionsHaveNames() || !gOPD) { +}; +/** @type {undefined | false | null | GeneratorFunctionConstructor} */ +var GeneratorFunction; + +/** @type {import('.')} */ +module.exports = function isGeneratorFunction(fn) { + if (typeof fn !== 'function') { + return false; + } + if (isFnRegex(fnToStr(fn))) { + return true; + } + if (!hasToStringTag) { + var str = toStr(fn); + return str === '[object GeneratorFunction]'; + } + if (!getProto) { return false; } - var desc = gOPD(function () {}, 'name'); - return !!desc && !!desc.configurable; + if (typeof GeneratorFunction === 'undefined') { + var generatorFunc = getGeneratorFunc(); + GeneratorFunction = generatorFunc + // eslint-disable-next-line no-extra-parens + ? /** @type {GeneratorFunctionConstructor} */ (getProto(generatorFunc)) + : false; + } + return getProto(fn) === GeneratorFunction; }; -var $bind = Function.prototype.bind; -functionsHaveNames.boundFunctionsHaveNames = function boundFunctionsHaveNames() { - return functionsHaveNames() && typeof $bind === 'function' && function f() {}.bind().name !== ''; -}; +/***/ }), + +/***/ 82621: +/***/ (function(module) { + +"use strict"; -module.exports = functionsHaveNames; + +/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */ + +module.exports = function isNaN(value) { + return value !== value; +}; /***/ }), -/***/ 61144: +/***/ 7051: /***/ (function(module, __unused_webpack_exports, __webpack_require__) { -var global = __webpack_require__(32010); +"use strict"; -module.exports = function (a, b) { - var console = global.console; - if (console && console.error) { - arguments.length == 1 ? console.error(a) : console.error(a, b); - } -}; +var callBind = __webpack_require__(26601); +var define = __webpack_require__(77802); -/***/ }), +var implementation = __webpack_require__(82621); +var getPolyfill = __webpack_require__(61320); +var shim = __webpack_require__(35074); -/***/ 61146: -/***/ (function(__unused_webpack_module, exports) { +var polyfill = callBind(getPolyfill(), Number); -// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe -exports.f = Object.getOwnPropertySymbols; +/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */ + +define(polyfill, { + getPolyfill: getPolyfill, + implementation: implementation, + shim: shim +}); + +module.exports = polyfill; /***/ }), @@ -50051,13431 +41885,16433 @@ module.exports = function getPolyfill() { /***/ }), -/***/ 61726: -/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { +/***/ 35074: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { "use strict"; -var $ = __webpack_require__(56475); -var exec = __webpack_require__(49820); - -// `RegExp.prototype.exec` method -// https://tc39.es/ecma262/#sec-regexp.prototype.exec -$({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, { - exec: exec -}); +var define = __webpack_require__(77802); +var getPolyfill = __webpack_require__(61320); -/***/ }), +/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */ -/***/ 61733: -/***/ (function(__unused_webpack_module, exports, __webpack_require__) { +module.exports = function shimNumberIsNaN() { + var polyfill = getPolyfill(); + define(Number, { isNaN: polyfill }, { + isNaN: function testIsNaN() { + return Number.isNaN !== polyfill; + } + }); + return polyfill; +}; -/* provided dependency */ var Buffer = __webpack_require__(14598)["Buffer"]; -;(function (sax) { - // wrapper for non-node envs - sax.parser = function (strict, opt) { - return new SAXParser(strict, opt) - } - sax.SAXParser = SAXParser - sax.SAXStream = SAXStream - sax.createStream = createStream - // When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns. - // When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)), - // since that's the earliest that a buffer overrun could occur. This way, checks are - // as rare as required, but as often as necessary to ensure never crossing this bound. - // Furthermore, buffers are only tested at most once per write(), so passing a very - // large string into write() might have undesirable effects, but this is manageable by - // the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme - // edge case, result in creating at most one complete copy of the string passed in. - // Set to Infinity to have unlimited buffers. - sax.MAX_BUFFER_LENGTH = 64 * 1024 +/***/ }), - var buffers = [ - 'comment', - 'sgmlDecl', - 'textNode', - 'tagName', - 'doctype', - 'procInstName', - 'procInstBody', - 'entity', - 'attribName', - 'attribValue', - 'cdata', - 'script', - ] +/***/ 71689: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - sax.EVENTS = [ - 'text', - 'processinginstruction', - 'sgmldeclaration', - 'doctype', - 'comment', - 'opentagstart', - 'attribute', - 'opentag', - 'closetag', - 'opencdata', - 'cdata', - 'closecdata', - 'error', - 'end', - 'ready', - 'script', - 'opennamespace', - 'closenamespace', - ] +"use strict"; - function SAXParser(strict, opt) { - if (!(this instanceof SAXParser)) { - return new SAXParser(strict, opt) - } - var parser = this - clearBuffers(parser) - parser.q = parser.c = '' - parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH - parser.opt = opt || {} - parser.opt.lowercase = parser.opt.lowercase || parser.opt.lowercasetags - parser.looseCase = parser.opt.lowercase ? 'toLowerCase' : 'toUpperCase' - parser.tags = [] - parser.closed = parser.closedRoot = parser.sawRoot = false - parser.tag = parser.error = null - parser.strict = !!strict - parser.noscript = !!(strict || parser.opt.noscript) - parser.state = S.BEGIN - parser.strictEntities = parser.opt.strictEntities - parser.ENTITIES = - parser.strictEntities ? - Object.create(sax.XML_ENTITIES) - : Object.create(sax.ENTITIES) - parser.attribList = [] +var callBound = __webpack_require__(22774); +var hasToStringTag = __webpack_require__(26626)(); +var hasOwn = __webpack_require__(55215); +var gOPD = __webpack_require__(68109); - // namespaces form a prototype chain. - // it always points at the current tag, - // which protos to its parent tag. - if (parser.opt.xmlns) { - parser.ns = Object.create(rootNS) - } +/** @type {import('.')} */ +var fn; - // disallow unquoted attribute values if not otherwise configured - // and strict mode is true - if (parser.opt.unquotedAttributeValues === undefined) { - parser.opt.unquotedAttributeValues = !strict - } +if (hasToStringTag) { + /** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ + var $exec = callBound('RegExp.prototype.exec'); + /** @type {object} */ + var isRegexMarker = {}; - // mostly just for error reporting - parser.trackPosition = parser.opt.position !== false - if (parser.trackPosition) { - parser.position = parser.line = parser.column = 0 - } - emit(parser, 'onready') - } + var throwRegexMarker = function () { + throw isRegexMarker; + }; + /** @type {{ toString(): never, valueOf(): never, [Symbol.toPrimitive]?(): never }} */ + var badStringifier = { + toString: throwRegexMarker, + valueOf: throwRegexMarker + }; - if (!Object.create) { - Object.create = function (o) { - function F() {} - F.prototype = o - var newf = new F() - return newf - } - } + if (typeof Symbol.toPrimitive === 'symbol') { + badStringifier[Symbol.toPrimitive] = throwRegexMarker; + } - if (!Object.keys) { - Object.keys = function (o) { - var a = [] - for (var i in o) if (o.hasOwnProperty(i)) a.push(i) - return a - } - } + /** @type {import('.')} */ + // @ts-expect-error TS can't figure out that the $exec call always throws + // eslint-disable-next-line consistent-return + fn = function isRegex(value) { + if (!value || typeof value !== 'object') { + return false; + } - function checkBufferLength(parser) { - var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10) - var maxActual = 0 - for (var i = 0, l = buffers.length; i < l; i++) { - var len = parser[buffers[i]].length - if (len > maxAllowed) { - // Text/cdata nodes can get big, and since they're buffered, - // we can get here under normal conditions. - // Avoid issues by emitting the text node now, - // so at least it won't get any bigger. - switch (buffers[i]) { - case 'textNode': - closeText(parser) - break + // eslint-disable-next-line no-extra-parens + var descriptor = /** @type {NonNullable} */ (gOPD)(/** @type {{ lastIndex?: unknown }} */ (value), 'lastIndex'); + var hasLastIndexDataProperty = descriptor && hasOwn(descriptor, 'value'); + if (!hasLastIndexDataProperty) { + return false; + } - case 'cdata': - emitNode(parser, 'oncdata', parser.cdata) - parser.cdata = '' - break + try { + // eslint-disable-next-line no-extra-parens + $exec(value, /** @type {string} */ (/** @type {unknown} */ (badStringifier))); + } catch (e) { + return e === isRegexMarker; + } + }; +} else { + /** @type {(receiver: ThisParameterType, ...args: Parameters) => ReturnType} */ + var $toString = callBound('Object.prototype.toString'); + /** @const @type {'[object RegExp]'} */ + var regexClass = '[object RegExp]'; - case 'script': - emitNode(parser, 'onscript', parser.script) - parser.script = '' - break + /** @type {import('.')} */ + fn = function isRegex(value) { + // In older browsers, typeof regex incorrectly returns 'function' + if (!value || (typeof value !== 'object' && typeof value !== 'function')) { + return false; + } - default: - error(parser, 'Max buffer length exceeded: ' + buffers[i]) - } - } - maxActual = Math.max(maxActual, len) - } - // schedule the next check for the earliest possible buffer overrun. - var m = sax.MAX_BUFFER_LENGTH - maxActual - parser.bufferCheckPosition = m + parser.position - } + return $toString(value) === regexClass; + }; +} - function clearBuffers(parser) { - for (var i = 0, l = buffers.length; i < l; i++) { - parser[buffers[i]] = '' - } - } +module.exports = fn; - function flushBuffers(parser) { - closeText(parser) - if (parser.cdata !== '') { - emitNode(parser, 'oncdata', parser.cdata) - parser.cdata = '' - } - if (parser.script !== '') { - emitNode(parser, 'onscript', parser.script) - parser.script = '' - } - } - SAXParser.prototype = { - end: function () { - end(this) - }, - write: write, - resume: function () { - this.error = null - return this - }, - close: function () { - return this.write(null) - }, - flush: function () { - flushBuffers(this) - }, - } +/***/ }), - var Stream - try { - Stream = (__webpack_require__(9760).Stream) - } catch (ex) { - Stream = function () {} - } - if (!Stream) Stream = function () {} +/***/ 46094: +/***/ (function(module, __unused_webpack_exports, __webpack_require__) { - var streamWraps = sax.EVENTS.filter(function (ev) { - return ev !== 'error' && ev !== 'end' - }) +"use strict"; - function createStream(strict, opt) { - return new SAXStream(strict, opt) - } - function SAXStream(strict, opt) { - if (!(this instanceof SAXStream)) { - return new SAXStream(strict, opt) - } +var whichTypedArray = __webpack_require__(43381); - Stream.apply(this) +/** @type {import('.')} */ +module.exports = function isTypedArray(value) { + return !!whichTypedArray(value); +}; - this._parser = new SAXParser(strict, opt) - this.writable = true - this.readable = true - var me = this +/***/ }), - this._parser.onend = function () { - me.emit('end') - } +/***/ 38834: +/***/ (function(__unused_webpack_module, exports, __webpack_require__) { - this._parser.onerror = function (er) { - me.emit('error', er) +"use strict"; - // if didn't throw, then means error was handled. - // go ahead and clear error, so we can write again. - me._parser.error = null - } - this._decoder = null +var _fs = __webpack_require__(48181); - streamWraps.forEach(function (ev) { - Object.defineProperty(me, 'on' + ev, { - get: function () { - return me._parser['on' + ev] - }, - set: function (h) { - if (!h) { - me.removeAllListeners(ev) - me._parser['on' + ev] = h - return h - } - me.on(ev, h) - }, - enumerable: true, - configurable: false, - }) - }) - } +var _fs2 = _interopRequireDefault(_fs); - SAXStream.prototype = Object.create(Stream.prototype, { - constructor: { - value: SAXStream, - }, - }) +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - SAXStream.prototype.write = function (data) { - if ( - typeof Buffer === 'function' && - typeof Buffer.isBuffer === 'function' && - Buffer.isBuffer(data) - ) { - if (!this._decoder) { - this._decoder = new TextDecoder('utf8') - } - data = this._decoder.decode(data, { stream: true }) - } +var tags = __webpack_require__(9240); - this._parser.write(data.toString()) - this.emit('data', data) - return true +/* + unsignedByte, + asciiStrings, + unsignedShort, + unsignedLong, + unsignedRational, + signedByte, + undefined, + signedShort, + signedLong, + signedRational, + singleFloat, + doubleFloat + */ +var bytes = [0, 1, 1, 2, 4, 8, 1, 1, 2, 4, 8, 4, 8]; +var SOIMarkerLength = 2; +var JPEGSOIMarker = 0xffd8; +var TIFFINTEL = 0x4949; +var TIFFMOTOROLA = 0x4d4d; +var APPMarkerLength = 2; +var APPMarkerBegin = 0xffe0; +var APPMarkerEnd = 0xffef; +var data = void 0; +/** + * @param buffer {Buffer} + * @returns {Boolean} + * @example + * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); + * var isImage = isValid(content); + * console.log(isImage); + */ +var isValid = function isValid(buffer) { + try { + var SOIMarker = buffer.readUInt16BE(0); + return SOIMarker === JPEGSOIMarker; + } catch (e) { + throw new Error('Unsupport file format.'); } - - SAXStream.prototype.end = function (chunk) { - if (chunk && chunk.length) { - this.write(chunk) - } - // Flush any remaining decoded data from the TextDecoder - if (this._decoder) { - var remaining = this._decoder.decode() - if (remaining) { - this._parser.write(remaining) - this.emit('data', remaining) - } - } - this._parser.end() - return true +}; +/** + * @param buffer {Buffer} + * @returns {Boolean} + * @example + */ +var isTiff = function isTiff(buffer) { + try { + var SOIMarker = buffer.readUInt16BE(0); + return SOIMarker === TIFFINTEL || SOIMarker === TIFFMOTOROLA; + } catch (e) { + throw new Error('Unsupport file format.'); } - - SAXStream.prototype.on = function (ev, handler) { - var me = this - if (!me._parser['on' + ev] && streamWraps.indexOf(ev) !== -1) { - me._parser['on' + ev] = function () { - var args = - arguments.length === 1 ? - [arguments[0]] - : Array.apply(null, arguments) - args.splice(0, 0, ev) - me.emit.apply(me, args) - } - } - - return Stream.prototype.on.call(me, ev, handler) +}; +/** + * @param buffer {Buffer} + * @returns {Number} + * @example + * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); + * var APPNumber = checkAPPn(content); + * console.log(APPNumber); + */ +var checkAPPn = function checkAPPn(buffer) { + try { + var APPMarkerTag = buffer.readUInt16BE(0); + var isInRange = APPMarkerTag >= APPMarkerBegin && APPMarkerTag <= APPMarkerEnd; + return isInRange ? APPMarkerTag - APPMarkerBegin : false; + } catch (e) { + throw new Error('Invalid APP Tag.'); } +}; +/** + * @param buffer {Buffer} + * @param tagCollection {Object} + * @param order {Boolean} + * @param offset {Number} + * @returns {Object} + * @example + * var content = fs.readFileSync("~/Picture/IMG_0911.JPG"); + * var exifFragments = IFDHandler(content, 0, true, 8); + * console.log(exifFragments.value); + */ +var IFDHandler = function IFDHandler(buffer, tagCollection, order, offset) { + var entriesNumber = order ? buffer.readUInt16BE(0) : buffer.readUInt16LE(0); - // this really needs to be replaced with character classes. - // XML allows all manner of ridiculous numbers and digits. - var CDATA = '[CDATA[' - var DOCTYPE = 'DOCTYPE' - var XML_NAMESPACE = 'http://www.w3.org/XML/1998/namespace' - var XMLNS_NAMESPACE = 'http://www.w3.org/2000/xmlns/' - var rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE } - - // http://www.w3.org/TR/REC-xml/#NT-NameStartChar - // This implementation works on strings, a single character at a time - // as such, it cannot ever support astral-plane characters (10000-EFFFF) - // without a significant breaking change to either this parser, or the - // JavaScript language. Implementation of an emoji-capable xml parser - // is left as an exercise for the reader. - var nameStart = - /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/ + if (entriesNumber === 0) { + return {}; + } - var nameBody = - /[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/ + var entriesNumberLength = 2; + var entries = buffer.slice(entriesNumberLength); + var entryLength = 12; + // let nextIFDPointerBegin = entriesNumberLength + entryLength * entriesNumber; + // let bigNextIFDPointer= buffer.readUInt32BE(nextIFDPointerBegin) ; + // let littleNextIFDPointer= buffer.readUInt32LE(nextIFDPointerBegin); + // let nextIFDPointer = order ?bigNextIFDPointer:littleNextIFDPointer; + var exif = {}; + var entryCount = 0; - var entityStart = - /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/ - var entityBody = - /[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/ + for (entryCount; entryCount < entriesNumber; entryCount += 1) { + var entryBegin = entryCount * entryLength; + var entry = entries.slice(entryBegin, entryBegin + entryLength); + var tagBegin = 0; + var tagLength = 2; + var dataFormatBegin = tagBegin + tagLength; + var dataFormatLength = 2; + var componentsBegin = dataFormatBegin + dataFormatLength; + var componentsNumberLength = 4; + var dataValueBegin = componentsBegin + componentsNumberLength; + var dataValueLength = 4; + var tagAddress = entry.slice(tagBegin, dataFormatBegin); + var tagNumber = order ? tagAddress.toString('hex') : tagAddress.reverse().toString('hex'); + var tagName = tagCollection[tagNumber]; + var bigDataFormat = entry.readUInt16BE(dataFormatBegin); + var littleDataFormat = entry.readUInt16LE(dataFormatBegin); + var dataFormat = order ? bigDataFormat : littleDataFormat; + var componentsByte = bytes[dataFormat]; + var bigComponentsNumber = entry.readUInt32BE(componentsBegin); + var littleComponentNumber = entry.readUInt32LE(componentsBegin); + var componentsNumber = order ? bigComponentsNumber : littleComponentNumber; + var dataLength = componentsNumber * componentsByte; + var dataValue = entry.slice(dataValueBegin, dataValueBegin + dataValueLength); - function isWhitespace(c) { - return c === ' ' || c === '\n' || c === '\r' || c === '\t' - } + if (dataLength > 4) { + var dataOffset = (order ? dataValue.readUInt32BE(0) : dataValue.readUInt32LE(0)) - offset; + dataValue = buffer.slice(dataOffset, dataOffset + dataLength); + } - function isQuote(c) { - return c === '"' || c === "'" - } + var tagValue = void 0; - function isAttribEnd(c) { - return c === '>' || isWhitespace(c) - } + if (tagName) { + switch (dataFormat) { + case 1: + tagValue = dataValue.readUInt8(0); + break; + case 2: + tagValue = dataValue.toString('ascii').replace(/\0+$/, ''); + break; + case 3: + tagValue = order ? dataValue.readUInt16BE(0) : dataValue.readUInt16LE(0); + break; + case 4: + tagValue = order ? dataValue.readUInt32BE(0) : dataValue.readUInt32LE(0); + break; + case 5: + tagValue = []; - function isMatch(regex, c) { - return regex.test(c) - } + for (var i = 0; i < dataValue.length; i += 8) { + var bigTagValue = dataValue.readUInt32BE(i) / dataValue.readUInt32BE(i + 4); + var littleTagValue = dataValue.readUInt32LE(i) / dataValue.readUInt32LE(i + 4); + tagValue.push(order ? bigTagValue : littleTagValue); + } - function notMatch(regex, c) { - return !isMatch(regex, c) + break; + case 7: + switch (tagName) { + case 'ExifVersion': + tagValue = dataValue.toString(); + break; + case 'FlashPixVersion': + tagValue = dataValue.toString(); + break; + case 'SceneType': + tagValue = dataValue.readUInt8(0); + break; + default: + tagValue = '0x' + dataValue.toString('hex', 0, 15); + break; + } + break; + case 10: + { + var bigOrder = dataValue.readInt32BE(0) / dataValue.readInt32BE(4); + var littleOrder = dataValue.readInt32LE(0) / dataValue.readInt32LE(4); + tagValue = order ? bigOrder : littleOrder; + break; + } + default: + tagValue = '0x' + dataValue.toString('hex'); + break; + } + exif[tagName] = tagValue; + } + /* + else { + console.log(`Unkown Tag [0x${tagNumber}].`); + } + */ } + return exif; +}; - var S = 0 - sax.STATE = { - BEGIN: S++, // leading byte order mark or whitespace - BEGIN_WHITESPACE: S++, // leading whitespace - TEXT: S++, // general stuff - TEXT_ENTITY: S++, // & and such. - OPEN_WAKA: S++, // < - SGML_DECL: S++, // - SCRIPT: S++, //