pdf.image_decoders.min.js 158 KB

12345678910111213141516171819202122
  1. /**
  2. * @licstart The following is the entire license notice for the
  3. * Javascript code in this page
  4. *
  5. * Copyright 2021 Mozilla Foundation
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. * @licend The above is the entire license notice for the
  20. * Javascript code in this page
  21. */
  22. !function webpackUniversalModuleDefinition(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define("pdfjs-dist/image_decoders/pdf.image_decoders",[],r):"object"==typeof exports?exports["pdfjs-dist/image_decoders/pdf.image_decoders"]=r():t["pdfjs-dist/image_decoders/pdf.image_decoders"]=t.pdfjsImageDecoders=r()}(this,(function(){return(()=>{var t=[,(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.arrayByteLength=arrayByteLength;r.arraysToBytes=function arraysToBytes(t){var r=t.length;if(1===r&&t[0]instanceof Uint8Array)return t[0];for(var i=0,o=0;o<r;o++)i+=arrayByteLength(t[o]);for(var a=0,c=new Uint8Array(i),l=0;l<r;l++){var u=t[l];u instanceof Uint8Array||(u="string"==typeof u?stringToBytes(u):new Uint8Array(u));var h=u.byteLength;c.set(u,a);a+=h}return c};r.assert=assert;r.bytesToString=function bytesToString(t){assert(null!==t&&"object"===_typeof(t)&&void 0!==t.length,"Invalid argument for bytesToString");var r=t.length,i=8192;if(r<i)return String.fromCharCode.apply(null,t);for(var o=[],a=0;a<r;a+=i){var c=Math.min(a+i,r),l=t.subarray(a,c);o.push(String.fromCharCode.apply(null,l))}return o.join("")};r.createObjectURL=function createObjectURL(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(URL.createObjectURL&&!i)return URL.createObjectURL(new Blob([t],{type:r}));for(var o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",a="data:".concat(r,";base64,"),c=0,l=t.length;c<l;c+=3){var u=255&t[c],h=255&t[c+1],d=255&t[c+2],p=u>>2,y=(3&u)<<4|h>>4,v=c+1<l?(15&h)<<2|d>>6:64,g=c+2<l?63&d:64;a+=o[p]+o[y]+o[v]+o[g]}return a};r.createPromiseCapability=function createPromiseCapability(){var t=Object.create(null),r=!1;Object.defineProperty(t,"settled",{get:function get(){return r}});t.promise=new Promise((function(i,o){t.resolve=function(t){r=!0;i(t)};t.reject=function(t){r=!0;o(t)}}));return t};r.createValidAbsoluteUrl=function createValidAbsoluteUrl(t,r){if(!t)return null;try{var i=r?new URL(t,r):new URL(t);if(function _isValidProtocol(t){if(!t)return!1;switch(t.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}(i))return i}catch(t){}return null};r.escapeString=function escapeString(t){return t.replace(/([()\\\n\r])/g,(function(t){return"\n"===t?"\\n":"\r"===t?"\\r":"\\".concat(t)}))};r.getModificationDate=function getModificationDate(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Date,r=[t.getUTCFullYear().toString(),(t.getUTCMonth()+1).toString().padStart(2,"0"),t.getUTCDate().toString().padStart(2,"0"),t.getUTCHours().toString().padStart(2,"0"),t.getUTCMinutes().toString().padStart(2,"0"),t.getUTCSeconds().toString().padStart(2,"0")];return r.join("")};r.getVerbosityLevel=function getVerbosityLevel(){return a};r.info=function info(t){a>=o.INFOS&&console.log("Info: ".concat(t))};r.isArrayBuffer=function isArrayBuffer(t){return"object"===_typeof(t)&&null!==t&&void 0!==t.byteLength};r.isArrayEqual=function isArrayEqual(t,r){if(t.length!==r.length)return!1;for(var i=0,o=t.length;i<o;i++)if(t[i]!==r[i])return!1;return!0};r.isAscii=function isAscii(t){return/^[\x00-\x7F]*$/.test(t)};r.isBool=function isBool(t){return"boolean"==typeof t};r.isNum=function isNum(t){return"number"==typeof t};r.isSameOrigin=function isSameOrigin(t,r){var i;try{if(!(i=new URL(t)).origin||"null"===i.origin)return!1}catch(t){return!1}var o=new URL(r,i);return i.origin===o.origin};r.isString=function isString(t){return"string"==typeof t};r.objectFromMap=function objectFromMap(t){var r,i=Object.create(null),o=function _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=_unsupportedIterableToArray(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}(t);try{for(o.s();!(r=o.n()).done;){var a=(u=r.value,h=2,function _arrayWithHoles(t){if(Array.isArray(t))return t}(u)||function _iterableToArrayLimit(t,r){var i=t&&("undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"]);if(null==i)return;var o,a,c=[],l=!0,u=!1;try{for(i=i.call(t);!(l=(o=i.next()).done);l=!0){c.push(o.value);if(r&&c.length===r)break}}catch(t){u=!0;a=t}finally{try{l||null==i.return||i.return()}finally{if(u)throw a}}return c}(u,h)||_unsupportedIterableToArray(u,h)||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.")}()),c=a[0],l=a[1];i[c]=l}}catch(t){o.e(t)}finally{o.f()}var u,h;return i};r.objectSize=function objectSize(t){return Object.keys(t).length};r.removeNullCharacters=function removeNullCharacters(t){if("string"!=typeof t){warn("The argument for removeNullCharacters must be a string.");return t}return t.replace(g,"")};r.setVerbosityLevel=function setVerbosityLevel(t){Number.isInteger(t)&&(a=t)};r.shadow=shadow;r.string32=function string32(t){return String.fromCharCode(t>>24&255,t>>16&255,t>>8&255,255&t)};r.stringToBytes=stringToBytes;r.stringToPDFString=function stringToPDFString(t){var r=t.length,i=[];if("þ"===t[0]&&"ÿ"===t[1])for(var o=2;o<r;o+=2)i.push(String.fromCharCode(t.charCodeAt(o)<<8|t.charCodeAt(o+1)));else if("ÿ"===t[0]&&"þ"===t[1])for(var a=2;a<r;a+=2)i.push(String.fromCharCode(t.charCodeAt(a+1)<<8|t.charCodeAt(a)));else for(var c=0;c<r;++c){var l=w[t.charCodeAt(c)];i.push(l?String.fromCharCode(l):t.charAt(c))}return i.join("")};r.stringToUTF16BEString=function stringToUTF16BEString(t){for(var r=["þÿ"],i=0,o=t.length;i<o;i++){var a=t.charCodeAt(i);r.push(String.fromCharCode(a>>8&255),String.fromCharCode(255&a))}return r.join("")};r.stringToUTF8String=function stringToUTF8String(t){return decodeURIComponent(escape(t))};r.unreachable=unreachable;r.utf8StringToString=function utf8StringToString(t){return unescape(encodeURIComponent(t))};r.warn=warn;r.VerbosityLevel=r.Util=r.UNSUPPORTED_FEATURES=r.UnknownErrorException=r.UnexpectedResponseException=r.TextRenderingMode=r.StreamType=r.PermissionFlag=r.PasswordResponses=r.PasswordException=r.PageActionEventType=r.OPS=r.MissingPDFException=r.IsLittleEndianCached=r.IsEvalSupportedCached=r.InvalidPDFException=r.ImageKind=r.IDENTITY_MATRIX=r.FormatError=r.FontType=r.FONT_IDENTITY_MATRIX=r.DocumentActionEventType=r.CMapCompressionType=r.BaseException=r.AnnotationType=r.AnnotationStateModelType=r.AnnotationReviewState=r.AnnotationReplyType=r.AnnotationMarkedState=r.AnnotationFlag=r.AnnotationFieldFlag=r.AnnotationBorderStyleType=r.AnnotationActionEventType=r.AbortException=void 0;i(2);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _unsupportedIterableToArray(t,r){if(t){if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);return"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?_arrayLikeToArray(t,r):void 0}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}r.IDENTITY_MATRIX=[1,0,0,1,0,0];r.FONT_IDENTITY_MATRIX=[.001,0,0,.001,0,0];r.PermissionFlag={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048};r.TextRenderingMode={FILL:0,STROKE:1,FILL_STROKE:2,INVISIBLE:3,FILL_ADD_TO_PATH:4,STROKE_ADD_TO_PATH:5,FILL_STROKE_ADD_TO_PATH:6,ADD_TO_PATH:7,FILL_STROKE_MASK:3,ADD_TO_PATH_FLAG:4};r.ImageKind={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3};r.AnnotationType={TEXT:1,LINK:2,FREETEXT:3,LINE:4,SQUARE:5,CIRCLE:6,POLYGON:7,POLYLINE:8,HIGHLIGHT:9,UNDERLINE:10,SQUIGGLY:11,STRIKEOUT:12,STAMP:13,CARET:14,INK:15,POPUP:16,FILEATTACHMENT:17,SOUND:18,MOVIE:19,WIDGET:20,SCREEN:21,PRINTERMARK:22,TRAPNET:23,WATERMARK:24,THREED:25,REDACT:26};r.AnnotationStateModelType={MARKED:"Marked",REVIEW:"Review"};r.AnnotationMarkedState={MARKED:"Marked",UNMARKED:"Unmarked"};r.AnnotationReviewState={ACCEPTED:"Accepted",REJECTED:"Rejected",CANCELLED:"Cancelled",COMPLETED:"Completed",NONE:"None"};r.AnnotationReplyType={GROUP:"Group",REPLY:"R"};r.AnnotationFlag={INVISIBLE:1,HIDDEN:2,PRINT:4,NOZOOM:8,NOROTATE:16,NOVIEW:32,READONLY:64,LOCKED:128,TOGGLENOVIEW:256,LOCKEDCONTENTS:512};r.AnnotationFieldFlag={READONLY:1,REQUIRED:2,NOEXPORT:4,MULTILINE:4096,PASSWORD:8192,NOTOGGLETOOFF:16384,RADIO:32768,PUSHBUTTON:65536,COMBO:131072,EDIT:262144,SORT:524288,FILESELECT:1048576,MULTISELECT:2097152,DONOTSPELLCHECK:4194304,DONOTSCROLL:8388608,COMB:16777216,RICHTEXT:33554432,RADIOSINUNISON:33554432,COMMITONSELCHANGE:67108864};r.AnnotationBorderStyleType={SOLID:1,DASHED:2,BEVELED:3,INSET:4,UNDERLINE:5};r.AnnotationActionEventType={E:"Mouse Enter",X:"Mouse Exit",D:"Mouse Down",U:"Mouse Up",Fo:"Focus",Bl:"Blur",PO:"PageOpen",PC:"PageClose",PV:"PageVisible",PI:"PageInvisible",K:"Keystroke",F:"Format",V:"Validate",C:"Calculate"};r.DocumentActionEventType={WC:"WillClose",WS:"WillSave",DS:"DidSave",WP:"WillPrint",DP:"DidPrint"};r.PageActionEventType={O:"PageOpen",C:"PageClose"};r.StreamType={UNKNOWN:"UNKNOWN",FLATE:"FLATE",LZW:"LZW",DCT:"DCT",JPX:"JPX",JBIG:"JBIG",A85:"A85",AHX:"AHX",CCF:"CCF",RLX:"RLX"};r.FontType={UNKNOWN:"UNKNOWN",TYPE1:"TYPE1",TYPE1C:"TYPE1C",CIDFONTTYPE0:"CIDFONTTYPE0",CIDFONTTYPE0C:"CIDFONTTYPE0C",TRUETYPE:"TRUETYPE",CIDFONTTYPE2:"CIDFONTTYPE2",TYPE3:"TYPE3",OPENTYPE:"OPENTYPE",TYPE0:"TYPE0",MMTYPE1:"MMTYPE1"};var o={ERRORS:0,WARNINGS:1,INFOS:5};r.VerbosityLevel=o;r.CMapCompressionType={NONE:0,BINARY:1,STREAM:2};r.OPS={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotations:78,endAnnotations:79,beginAnnotation:80,endAnnotation:81,paintJpegXObject:82,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91};r.UNSUPPORTED_FEATURES={unknown:"unknown",forms:"forms",javaScript:"javaScript",signatures:"signatures",smask:"smask",shadingPattern:"shadingPattern",font:"font",errorTilingPattern:"errorTilingPattern",errorExtGState:"errorExtGState",errorXObject:"errorXObject",errorFontLoadType3:"errorFontLoadType3",errorFontState:"errorFontState",errorFontMissing:"errorFontMissing",errorFontTranslate:"errorFontTranslate",errorColorSpace:"errorColorSpace",errorOperatorList:"errorOperatorList",errorFontToUnicode:"errorFontToUnicode",errorFontLoadNative:"errorFontLoadNative",errorFontBuildPath:"errorFontBuildPath",errorFontGetPath:"errorFontGetPath",errorMarkedContent:"errorMarkedContent"};r.PasswordResponses={NEED_PASSWORD:1,INCORRECT_PASSWORD:2};var a=o.WARNINGS;function warn(t){a>=o.WARNINGS&&console.log("Warning: ".concat(t))}function unreachable(t){throw new Error(t)}function assert(t,r){t||unreachable(r)}function shadow(t,r,i){Object.defineProperty(t,r,{value:i,enumerable:!0,configurable:!0,writable:!1});return i}var c=function BaseExceptionClosure(){function BaseException(t){this.constructor===BaseException&&unreachable("Cannot initialize BaseException.");this.message=t;this.name=this.constructor.name}BaseException.prototype=new Error;BaseException.constructor=BaseException;return BaseException}();r.BaseException=c;var l=function(t){_inherits(PasswordException,t);var r=_createSuper(PasswordException);function PasswordException(t,i){var o;_classCallCheck(this,PasswordException);(o=r.call(this,t)).code=i;return o}return PasswordException}(c);r.PasswordException=l;var u=function(t){_inherits(UnknownErrorException,t);var r=_createSuper(UnknownErrorException);function UnknownErrorException(t,i){var o;_classCallCheck(this,UnknownErrorException);(o=r.call(this,t)).details=i;return o}return UnknownErrorException}(c);r.UnknownErrorException=u;var h=function(t){_inherits(InvalidPDFException,t);var r=_createSuper(InvalidPDFException);function InvalidPDFException(){_classCallCheck(this,InvalidPDFException);return r.apply(this,arguments)}return InvalidPDFException}(c);r.InvalidPDFException=h;var d=function(t){_inherits(MissingPDFException,t);var r=_createSuper(MissingPDFException);function MissingPDFException(){_classCallCheck(this,MissingPDFException);return r.apply(this,arguments)}return MissingPDFException}(c);r.MissingPDFException=d;var p=function(t){_inherits(UnexpectedResponseException,t);var r=_createSuper(UnexpectedResponseException);function UnexpectedResponseException(t,i){var o;_classCallCheck(this,UnexpectedResponseException);(o=r.call(this,t)).status=i;return o}return UnexpectedResponseException}(c);r.UnexpectedResponseException=p;var y=function(t){_inherits(FormatError,t);var r=_createSuper(FormatError);function FormatError(){_classCallCheck(this,FormatError);return r.apply(this,arguments)}return FormatError}(c);r.FormatError=y;var v=function(t){_inherits(AbortException,t);var r=_createSuper(AbortException);function AbortException(){_classCallCheck(this,AbortException);return r.apply(this,arguments)}return AbortException}(c);r.AbortException=v;var g=/\x00/g;function stringToBytes(t){assert("string"==typeof t,"Invalid argument for stringToBytes");for(var r=t.length,i=new Uint8Array(r),o=0;o<r;++o)i[o]=255&t.charCodeAt(o);return i}function arrayByteLength(t){if(void 0!==t.length)return t.length;assert(void 0!==t.byteLength,"arrayByteLength - invalid argument.");return t.byteLength}var m={get value(){return shadow(this,"value",function isLittleEndian(){var t=new Uint8Array(4);t[0]=1;return 1===new Uint32Array(t.buffer,0,1)[0]}())}};r.IsLittleEndianCached=m;var b={get value(){return shadow(this,"value",function isEvalSupported(){try{new Function("");return!0}catch(t){return!1}}())}};r.IsEvalSupportedCached=b;var x=function _toConsumableArray(t){return function _arrayWithoutHoles(t){if(Array.isArray(t))return _arrayLikeToArray(t)}(t)||function _iterableToArray(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||_unsupportedIterableToArray(t)||function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(Array(256).keys()).map((function(t){return t.toString(16).padStart(2,"0")})),_=function(){function Util(){_classCallCheck(this,Util)}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(Util,null,[{key:"makeHexColor",value:function makeHexColor(t,r,i){return"#".concat(x[t]).concat(x[r]).concat(x[i])}},{key:"transform",value:function transform(t,r){return[t[0]*r[0]+t[2]*r[1],t[1]*r[0]+t[3]*r[1],t[0]*r[2]+t[2]*r[3],t[1]*r[2]+t[3]*r[3],t[0]*r[4]+t[2]*r[5]+t[4],t[1]*r[4]+t[3]*r[5]+t[5]]}},{key:"applyTransform",value:function applyTransform(t,r){return[t[0]*r[0]+t[1]*r[2]+r[4],t[0]*r[1]+t[1]*r[3]+r[5]]}},{key:"applyInverseTransform",value:function applyInverseTransform(t,r){var i=r[0]*r[3]-r[1]*r[2];return[(t[0]*r[3]-t[1]*r[2]+r[2]*r[5]-r[4]*r[3])/i,(-t[0]*r[1]+t[1]*r[0]+r[4]*r[1]-r[5]*r[0])/i]}},{key:"getAxialAlignedBoundingBox",value:function getAxialAlignedBoundingBox(t,r){var i=Util.applyTransform(t,r),o=Util.applyTransform(t.slice(2,4),r),a=Util.applyTransform([t[0],t[3]],r),c=Util.applyTransform([t[2],t[1]],r);return[Math.min(i[0],o[0],a[0],c[0]),Math.min(i[1],o[1],a[1],c[1]),Math.max(i[0],o[0],a[0],c[0]),Math.max(i[1],o[1],a[1],c[1])]}},{key:"inverseTransform",value:function inverseTransform(t){var r=t[0]*t[3]-t[1]*t[2];return[t[3]/r,-t[1]/r,-t[2]/r,t[0]/r,(t[2]*t[5]-t[4]*t[3])/r,(t[4]*t[1]-t[5]*t[0])/r]}},{key:"apply3dTransform",value:function apply3dTransform(t,r){return[t[0]*r[0]+t[1]*r[1]+t[2]*r[2],t[3]*r[0]+t[4]*r[1]+t[5]*r[2],t[6]*r[0]+t[7]*r[1]+t[8]*r[2]]}},{key:"singularValueDecompose2dScale",value:function singularValueDecompose2dScale(t){var r=[t[0],t[2],t[1],t[3]],i=t[0]*r[0]+t[1]*r[2],o=t[0]*r[1]+t[1]*r[3],a=t[2]*r[0]+t[3]*r[2],c=t[2]*r[1]+t[3]*r[3],l=(i+c)/2,u=Math.sqrt(Math.pow(i+c,2)-4*(i*c-a*o))/2,h=l+u||1,d=l-u||1;return[Math.sqrt(h),Math.sqrt(d)]}},{key:"normalizeRect",value:function normalizeRect(t){var r=t.slice(0);if(t[0]>t[2]){r[0]=t[2];r[2]=t[0]}if(t[1]>t[3]){r[1]=t[3];r[3]=t[1]}return r}},{key:"intersect",value:function intersect(t,r){function compare(t,r){return t-r}var i=[t[0],t[2],r[0],r[2]].sort(compare),o=[t[1],t[3],r[1],r[3]].sort(compare),a=[];t=Util.normalizeRect(t);r=Util.normalizeRect(r);if(!(i[0]===t[0]&&i[1]===r[0]||i[0]===r[0]&&i[1]===t[0]))return null;a[0]=i[1];a[2]=i[2];if(!(o[0]===t[1]&&o[1]===r[1]||o[0]===r[1]&&o[1]===t[1]))return null;a[1]=o[1];a[3]=o[2];return a}}]);return Util}();r.Util=_;var w=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364]},(t,r,i)=>{"use strict";var o=i(3);if("undefined"==typeof globalThis||!globalThis._pdfjsCompatibilityChecked){"undefined"!=typeof globalThis&&globalThis.Math===Math||(globalThis=i(4));globalThis._pdfjsCompatibilityChecked=!0;!function checkNodeBtoa(){!globalThis.btoa&&o.isNodeJS&&(globalThis.btoa=function(t){return Buffer.from(t,"binary").toString("base64")})}();!function checkNodeAtob(){!globalThis.atob&&o.isNodeJS&&(globalThis.atob=function(t){return Buffer.from(t,"base64").toString("binary")})}();!function checkObjectFromEntries(){Object.fromEntries||i(50)}()}},(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.isNodeJS=void 0;function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var i=!("object"!==("undefined"==typeof process?"undefined":_typeof(process))||process+""!="[object process]"||process.versions.nw||process.versions.electron&&process.type&&"browser"!==process.type);r.isNodeJS=i},(t,r,i)=>{i(5);t.exports=i(7)},(t,r,i)=>{i(6)({global:!0},{globalThis:i(7)})},(t,r,i)=>{var o=i(7),a=i(8).f,c=i(23),l=i(26),u=i(27),h=i(37),d=i(49);t.exports=function(t,r){var i,p,y,v,g,m=t.target,b=t.global,x=t.stat;if(i=b?o:x?o[m]||u(m,{}):(o[m]||{}).prototype)for(p in r){v=r[p];y=t.noTargetGet?(g=a(i,p))&&g.value:i[p];if(!d(b?p:m+(x?".":"#")+p,t.forced)&&void 0!==y){if(typeof v==typeof y)continue;h(v,y)}(t.sham||y&&y.sham)&&c(v,"sham",!0);l(i,p,v,t)}}},t=>{var check=function(t){return t&&t.Math==Math&&t};t.exports=check("object"==typeof globalThis&&globalThis)||check("object"==typeof window&&window)||check("object"==typeof self&&self)||check("object"==typeof global&&global)||function(){return this}()||Function("return this")()},(t,r,i)=>{var o=i(9),a=i(11),c=i(12),l=i(13),u=i(17),h=i(19),d=i(21),p=Object.getOwnPropertyDescriptor;r.f=o?p:function getOwnPropertyDescriptor(t,r){t=l(t);r=u(r,!0);if(d)try{return p(t,r)}catch(t){}if(h(t,r))return c(!a.f.call(t,r),t[r])}},(t,r,i)=>{var o=i(10);t.exports=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},(t,r)=>{"use strict";var i={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,a=o&&!i.call({1:2},1);r.f=a?function propertyIsEnumerable(t){var r=o(this,t);return!!r&&r.enumerable}:i},t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},(t,r,i)=>{var o=i(14),a=i(16);t.exports=function(t){return o(a(t))}},(t,r,i)=>{var o=i(10),a=i(15),c="".split;t.exports=o((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==a(t)?c.call(t,""):Object(t)}:Object},t=>{var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},t=>{t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},(t,r,i)=>{var o=i(18);t.exports=function(t,r){if(!o(t))return t;var i,a;if(r&&"function"==typeof(i=t.toString)&&!o(a=i.call(t)))return a;if("function"==typeof(i=t.valueOf)&&!o(a=i.call(t)))return a;if(!r&&"function"==typeof(i=t.toString)&&!o(a=i.call(t)))return a;throw TypeError("Can't convert object to primitive value")}},t=>{t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},(t,r,i)=>{var o=i(20),a={}.hasOwnProperty;t.exports=Object.hasOwn||function hasOwn(t,r){return a.call(o(t),r)}},(t,r,i)=>{var o=i(16);t.exports=function(t){return Object(o(t))}},(t,r,i)=>{var o=i(9),a=i(10),c=i(22);t.exports=!o&&!a((function(){return 7!=Object.defineProperty(c("div"),"a",{get:function(){return 7}}).a}))},(t,r,i)=>{var o=i(7),a=i(18),c=o.document,l=a(c)&&a(c.createElement);t.exports=function(t){return l?c.createElement(t):{}}},(t,r,i)=>{var o=i(9),a=i(24),c=i(12);t.exports=o?function(t,r,i){return a.f(t,r,c(1,i))}:function(t,r,i){t[r]=i;return t}},(t,r,i)=>{var o=i(9),a=i(21),c=i(25),l=i(17),u=Object.defineProperty;r.f=o?u:function defineProperty(t,r,i){c(t);r=l(r,!0);c(i);if(a)try{return u(t,r,i)}catch(t){}if("get"in i||"set"in i)throw TypeError("Accessors not supported");"value"in i&&(t[r]=i.value);return t}},(t,r,i)=>{var o=i(18);t.exports=function(t){if(!o(t))throw TypeError(String(t)+" is not an object");return t}},(t,r,i)=>{var o=i(7),a=i(23),c=i(19),l=i(27),u=i(28),h=i(30),d=h.get,p=h.enforce,y=String(String).split("String");(t.exports=function(t,r,i,u){var h,d=!!u&&!!u.unsafe,v=!!u&&!!u.enumerable,g=!!u&&!!u.noTargetGet;if("function"==typeof i){"string"!=typeof r||c(i,"name")||a(i,"name",r);(h=p(i)).source||(h.source=y.join("string"==typeof r?r:""))}if(t!==o){d?!g&&t[r]&&(v=!0):delete t[r];v?t[r]=i:a(t,r,i)}else v?t[r]=i:l(r,i)})(Function.prototype,"toString",(function toString(){return"function"==typeof this&&d(this).source||u(this)}))},(t,r,i)=>{var o=i(7),a=i(23);t.exports=function(t,r){try{a(o,t,r)}catch(i){o[t]=r}return r}},(t,r,i)=>{var o=i(29),a=Function.toString;"function"!=typeof o.inspectSource&&(o.inspectSource=function(t){return a.call(t)});t.exports=o.inspectSource},(t,r,i)=>{var o=i(7),a=i(27),c="__core-js_shared__",l=o[c]||a(c,{});t.exports=l},(t,r,i)=>{var o,a,c,l=i(31),u=i(7),h=i(18),d=i(23),p=i(19),y=i(29),v=i(32),g=i(36),m="Object already initialized",b=u.WeakMap;if(l||y.state){var x=y.state||(y.state=new b),_=x.get,w=x.has,C=x.set;o=function(t,r){if(w.call(x,t))throw new TypeError(m);r.facade=t;C.call(x,t,r);return r};a=function(t){return _.call(x,t)||{}};c=function(t){return w.call(x,t)}}else{var k=v("state");g[k]=!0;o=function(t,r){if(p(t,k))throw new TypeError(m);r.facade=t;d(t,k,r);return r};a=function(t){return p(t,k)?t[k]:{}};c=function(t){return p(t,k)}}t.exports={set:o,get:a,has:c,enforce:function(t){return c(t)?a(t):o(t,{})},getterFor:function(t){return function(r){var i;if(!h(r)||(i=a(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return i}}}},(t,r,i)=>{var o=i(7),a=i(28),c=o.WeakMap;t.exports="function"==typeof c&&/native code/.test(a(c))},(t,r,i)=>{var o=i(33),a=i(35),c=o("keys");t.exports=function(t){return c[t]||(c[t]=a(t))}},(t,r,i)=>{var o=i(34),a=i(29);(t.exports=function(t,r){return a[t]||(a[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.13.1",mode:o?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},t=>{t.exports=!1},t=>{var r=0,i=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+i).toString(36)}},t=>{t.exports={}},(t,r,i)=>{var o=i(19),a=i(38),c=i(8),l=i(24);t.exports=function(t,r){for(var i=a(r),u=l.f,h=c.f,d=0;d<i.length;d++){var p=i[d];o(t,p)||u(t,p,h(r,p))}}},(t,r,i)=>{var o=i(39),a=i(41),c=i(48),l=i(25);t.exports=o("Reflect","ownKeys")||function ownKeys(t){var r=a.f(l(t)),i=c.f;return i?r.concat(i(t)):r}},(t,r,i)=>{var o=i(40),a=i(7),aFunction=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,r){return arguments.length<2?aFunction(o[t])||aFunction(a[t]):o[t]&&o[t][r]||a[t]&&a[t][r]}},(t,r,i)=>{var o=i(7);t.exports=o},(t,r,i)=>{var o=i(42),a=i(47).concat("length","prototype");r.f=Object.getOwnPropertyNames||function getOwnPropertyNames(t){return o(t,a)}},(t,r,i)=>{var o=i(19),a=i(13),c=i(43).indexOf,l=i(36);t.exports=function(t,r){var i,u=a(t),h=0,d=[];for(i in u)!o(l,i)&&o(u,i)&&d.push(i);for(;r.length>h;)o(u,i=r[h++])&&(~c(d,i)||d.push(i));return d}},(t,r,i)=>{var o=i(13),a=i(44),c=i(46),createMethod=function(t){return function(r,i,l){var u,h=o(r),d=a(h.length),p=c(l,d);if(t&&i!=i){for(;d>p;)if((u=h[p++])!=u)return!0}else for(;d>p;p++)if((t||p in h)&&h[p]===i)return t||p||0;return!t&&-1}};t.exports={includes:createMethod(!0),indexOf:createMethod(!1)}},(t,r,i)=>{var o=i(45),a=Math.min;t.exports=function(t){return t>0?a(o(t),9007199254740991):0}},t=>{var r=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:r)(t)}},(t,r,i)=>{var o=i(45),a=Math.max,c=Math.min;t.exports=function(t,r){var i=o(t);return i<0?a(i+r,0):c(i,r)}},t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},(t,r)=>{r.f=Object.getOwnPropertySymbols},(t,r,i)=>{var o=i(10),a=/#|\.prototype\./,isForced=function(t,r){var i=l[c(t)];return i==h||i!=u&&("function"==typeof r?o(r):!!r)},c=isForced.normalize=function(t){return String(t).replace(a,".").toLowerCase()},l=isForced.data={},u=isForced.NATIVE="N",h=isForced.POLYFILL="P";t.exports=isForced},(t,r,i)=>{i(51);i(71);var o=i(40);t.exports=o.Object.fromEntries},(t,r,i)=>{"use strict";var o=i(13),a=i(52),c=i(62),l=i(30),u=i(63),h="Array Iterator",d=l.set,p=l.getterFor(h);t.exports=u(Array,"Array",(function(t,r){d(this,{type:h,target:o(t),index:0,kind:r})}),(function(){var t=p(this),r=t.target,i=t.kind,o=t.index++;if(!r||o>=r.length){t.target=void 0;return{value:void 0,done:!0}}return"keys"==i?{value:o,done:!1}:"values"==i?{value:r[o],done:!1}:{value:[o,r[o]],done:!1}}),"values");c.Arguments=c.Array;a("keys");a("values");a("entries")},(t,r,i)=>{var o=i(53),a=i(58),c=i(24),l=o("unscopables"),u=Array.prototype;null==u[l]&&c.f(u,l,{configurable:!0,value:a(null)});t.exports=function(t){u[l][t]=!0}},(t,r,i)=>{var o=i(7),a=i(33),c=i(19),l=i(35),u=i(54),h=i(57),d=a("wks"),p=o.Symbol,y=h?p:p&&p.withoutSetter||l;t.exports=function(t){c(d,t)&&(u||"string"==typeof d[t])||(u&&c(p,t)?d[t]=p[t]:d[t]=y("Symbol."+t));return d[t]}},(t,r,i)=>{var o=i(55),a=i(10);t.exports=!!Object.getOwnPropertySymbols&&!a((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},(t,r,i)=>{var o,a,c=i(7),l=i(56),u=c.process,h=u&&u.versions,d=h&&h.v8;d?a=(o=d.split("."))[0]<4?1:o[0]+o[1]:l&&(!(o=l.match(/Edge\/(\d+)/))||o[1]>=74)&&(o=l.match(/Chrome\/(\d+)/))&&(a=o[1]);t.exports=a&&+a},(t,r,i)=>{var o=i(39);t.exports=o("navigator","userAgent")||""},(t,r,i)=>{var o=i(54);t.exports=o&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},(t,r,i)=>{var o,a=i(25),c=i(59),l=i(47),u=i(36),h=i(61),d=i(22),p=i(32),y=p("IE_PROTO"),EmptyConstructor=function(){},scriptTag=function(t){return"<script>"+t+"</"+"script>"},NullProtoObject=function(){try{o=document.domain&&new ActiveXObject("htmlfile")}catch(t){}NullProtoObject=o?function(t){t.write(scriptTag(""));t.close();var r=t.parentWindow.Object;t=null;return r}(o):function(){var t,r=d("iframe");r.style.display="none";h.appendChild(r);r.src=String("javascript:");(t=r.contentWindow.document).open();t.write(scriptTag("document.F=Object"));t.close();return t.F}();for(var t=l.length;t--;)delete NullProtoObject.prototype[l[t]];return NullProtoObject()};u[y]=!0;t.exports=Object.create||function create(t,r){var i;if(null!==t){EmptyConstructor.prototype=a(t);i=new EmptyConstructor;EmptyConstructor.prototype=null;i[y]=t}else i=NullProtoObject();return void 0===r?i:c(i,r)}},(t,r,i)=>{var o=i(9),a=i(24),c=i(25),l=i(60);t.exports=o?Object.defineProperties:function defineProperties(t,r){c(t);for(var i,o=l(r),u=o.length,h=0;u>h;)a.f(t,i=o[h++],r[i]);return t}},(t,r,i)=>{var o=i(42),a=i(47);t.exports=Object.keys||function keys(t){return o(t,a)}},(t,r,i)=>{var o=i(39);t.exports=o("document","documentElement")},t=>{t.exports={}},(t,r,i)=>{"use strict";var o=i(6),a=i(64),c=i(66),l=i(69),u=i(68),h=i(23),d=i(26),p=i(53),y=i(34),v=i(62),g=i(65),m=g.IteratorPrototype,b=g.BUGGY_SAFARI_ITERATORS,x=p("iterator"),_="keys",w="values",C="entries",returnThis=function(){return this};t.exports=function(t,r,i,p,g,k,S){a(i,r,p);var P,T,I,getIterationMethod=function(t){if(t===g&&B)return B;if(!b&&t in A)return A[t];switch(t){case _:return function keys(){return new i(this,t)};case w:return function values(){return new i(this,t)};case C:return function entries(){return new i(this,t)}}return function(){return new i(this)}},O=r+" Iterator",E=!1,A=t.prototype,R=A[x]||A["@@iterator"]||g&&A[g],B=!b&&R||getIterationMethod(g),D="Array"==r&&A.entries||R;if(D){P=c(D.call(new t));if(m!==Object.prototype&&P.next){y||c(P)===m||(l?l(P,m):"function"!=typeof P[x]&&h(P,x,returnThis));u(P,O,!0,!0);y&&(v[O]=returnThis)}}if(g==w&&R&&R.name!==w){E=!0;B=function values(){return R.call(this)}}y&&!S||A[x]===B||h(A,x,B);v[r]=B;if(g){T={values:getIterationMethod(w),keys:k?B:getIterationMethod(_),entries:getIterationMethod(C)};if(S)for(I in T)(b||E||!(I in A))&&d(A,I,T[I]);else o({target:r,proto:!0,forced:b||E},T)}return T}},(t,r,i)=>{"use strict";var o=i(65).IteratorPrototype,a=i(58),c=i(12),l=i(68),u=i(62),returnThis=function(){return this};t.exports=function(t,r,i){var h=r+" Iterator";t.prototype=a(o,{next:c(1,i)});l(t,h,!1,!0);u[h]=returnThis;return t}},(t,r,i)=>{"use strict";var o,a,c,l=i(10),u=i(66),h=i(23),d=i(19),p=i(53),y=i(34),v=p("iterator"),g=!1;[].keys&&("next"in(c=[].keys())?(a=u(u(c)))!==Object.prototype&&(o=a):g=!0);var m=null==o||l((function(){var t={};return o[v].call(t)!==t}));m&&(o={});y&&!m||d(o,v)||h(o,v,(function(){return this}));t.exports={IteratorPrototype:o,BUGGY_SAFARI_ITERATORS:g}},(t,r,i)=>{var o=i(19),a=i(20),c=i(32),l=i(67),u=c("IE_PROTO"),h=Object.prototype;t.exports=l?Object.getPrototypeOf:function(t){t=a(t);return o(t,u)?t[u]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?h:null}},(t,r,i)=>{var o=i(10);t.exports=!o((function(){function F(){}F.prototype.constructor=null;return Object.getPrototypeOf(new F)!==F.prototype}))},(t,r,i)=>{var o=i(24).f,a=i(19),c=i(53)("toStringTag");t.exports=function(t,r,i){t&&!a(t=i?t:t.prototype,c)&&o(t,c,{configurable:!0,value:r})}},(t,r,i)=>{var o=i(25),a=i(70);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,i={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(i,[]);r=i instanceof Array}catch(t){}return function setPrototypeOf(i,c){o(i);a(c);r?t.call(i,c):i.__proto__=c;return i}}():void 0)},(t,r,i)=>{var o=i(18);t.exports=function(t){if(!o(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},(t,r,i)=>{var o=i(6),a=i(72),c=i(80);o({target:"Object",stat:!0},{fromEntries:function fromEntries(t){var r={};a(t,(function(t,i){c(r,t,i)}),{AS_ENTRIES:!0});return r}})},(t,r,i)=>{var o=i(25),a=i(73),c=i(44),l=i(74),u=i(76),h=i(79),Result=function(t,r){this.stopped=t;this.result=r};t.exports=function(t,r,i){var d,p,y,v,g,m,b,x=i&&i.that,_=!(!i||!i.AS_ENTRIES),w=!(!i||!i.IS_ITERATOR),C=!(!i||!i.INTERRUPTED),k=l(r,x,1+_+C),stop=function(t){d&&h(d);return new Result(!0,t)},callFn=function(t){if(_){o(t);return C?k(t[0],t[1],stop):k(t[0],t[1])}return C?k(t,stop):k(t)};if(w)d=t;else{if("function"!=typeof(p=u(t)))throw TypeError("Target is not iterable");if(a(p)){for(y=0,v=c(t.length);v>y;y++)if((g=callFn(t[y]))&&g instanceof Result)return g;return new Result(!1)}d=p.call(t)}m=d.next;for(;!(b=m.call(d)).done;){try{g=callFn(b.value)}catch(t){h(d);throw t}if("object"==typeof g&&g&&g instanceof Result)return g}return new Result(!1)}},(t,r,i)=>{var o=i(53),a=i(62),c=o("iterator"),l=Array.prototype;t.exports=function(t){return void 0!==t&&(a.Array===t||l[c]===t)}},(t,r,i)=>{var o=i(75);t.exports=function(t,r,i){o(t);if(void 0===r)return t;switch(i){case 0:return function(){return t.call(r)};case 1:return function(i){return t.call(r,i)};case 2:return function(i,o){return t.call(r,i,o)};case 3:return function(i,o,a){return t.call(r,i,o,a)}}return function(){return t.apply(r,arguments)}}},t=>{t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},(t,r,i)=>{var o=i(77),a=i(62),c=i(53)("iterator");t.exports=function(t){if(null!=t)return t[c]||t["@@iterator"]||a[o(t)]}},(t,r,i)=>{var o=i(78),a=i(15),c=i(53)("toStringTag"),l="Arguments"==a(function(){return arguments}());t.exports=o?a:function(t){var r,i,o;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(i=function(t,r){try{return t[r]}catch(t){}}(r=Object(t),c))?i:l?a(r):"Object"==(o=a(r))&&"function"==typeof r.callee?"Arguments":o}},(t,r,i)=>{var o={};o[i(53)("toStringTag")]="z";t.exports="[object z]"===String(o)},(t,r,i)=>{var o=i(25);t.exports=function(t){var r=t.return;if(void 0!==r)return o(r.call(t)).value}},(t,r,i)=>{"use strict";var o=i(17),a=i(24),c=i(12);t.exports=function(t,r,i){var l=o(r);l in t?a.f(t,l,c(0,i)):t[l]=i}},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.Jbig2Image=void 0;var o=i(1),a=i(82),c=i(87),l=i(88);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var u=function(t){!function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}(Jbig2Error,t);var r=_createSuper(Jbig2Error);function Jbig2Error(t){_classCallCheck(this,Jbig2Error);return r.call(this,"JBIG2 error: ".concat(t))}return Jbig2Error}(o.BaseException),h=function(){function ContextCache(){_classCallCheck(this,ContextCache)}_createClass(ContextCache,[{key:"getContexts",value:function getContexts(t){return t in this?this[t]:this[t]=new Int8Array(65536)}}]);return ContextCache}(),d=function(){function DecodingContext(t,r,i){_classCallCheck(this,DecodingContext);this.data=t;this.start=r;this.end=i}_createClass(DecodingContext,[{key:"decoder",get:function get(){var t=new c.ArithmeticDecoder(this.data,this.start,this.end);return(0,o.shadow)(this,"decoder",t)}},{key:"contextCache",get:function get(){var t=new h;return(0,o.shadow)(this,"contextCache",t)}}]);return DecodingContext}();function decodeInteger(t,r,i){var o=t.getContexts(r),a=1;function readBits(t){for(var r=0,c=0;c<t;c++){var l=i.readBit(o,a);a=a<256?a<<1|l:511&(a<<1|l)|256;r=r<<1|l}return r>>>0}var c=readBits(1),l=readBits(1)?readBits(1)?readBits(1)?readBits(1)?readBits(1)?readBits(32)+4436:readBits(12)+340:readBits(8)+84:readBits(6)+20:readBits(4)+4:readBits(2);return 0===c?l:l>0?-l:null}function decodeIAID(t,r,i){for(var o=t.getContexts("IAID"),a=1,c=0;c<i;c++){a=a<<1|r.readBit(o,a)}return i<31?a&(1<<i)-1:2147483647&a}var p=["SymbolDictionary",null,null,null,"IntermediateTextRegion",null,"ImmediateTextRegion","ImmediateLosslessTextRegion",null,null,null,null,null,null,null,null,"PatternDictionary",null,null,null,"IntermediateHalftoneRegion",null,"ImmediateHalftoneRegion","ImmediateLosslessHalftoneRegion",null,null,null,null,null,null,null,null,null,null,null,null,"IntermediateGenericRegion",null,"ImmediateGenericRegion","ImmediateLosslessGenericRegion","IntermediateGenericRefinementRegion",null,"ImmediateGenericRefinementRegion","ImmediateLosslessGenericRefinementRegion",null,null,null,null,"PageInformation","EndOfPage","EndOfStripe","EndOfFile","Profiles","Tables",null,null,null,null,null,null,null,null,"Extension"],y=[[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:2,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-2,y:0},{x:-1,y:0}],[{x:-3,y:-1},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}]],v=[{coding:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:-1,y:1},{x:0,y:1},{x:1,y:1}]},{coding:[{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:0,y:1},{x:1,y:1}]}],g=[39717,1941,229,405],m=[32,8];function decodeBitmap(t,r,i,o,a,c,l,u){if(t){return decodeMMRBitmap(new S(u.data,u.start,u.end),r,i,!1)}if(0===o&&!c&&!a&&4===l.length&&3===l[0].x&&-1===l[0].y&&-3===l[1].x&&-1===l[1].y&&2===l[2].x&&-2===l[2].y&&-2===l[3].x&&-2===l[3].y)return function decodeBitmapTemplate0(t,r,i){var o,a,c,l,u,h,d,p=i.decoder,y=i.contextCache.getContexts("GB"),v=[];for(a=0;a<r;a++){u=v[a]=new Uint8Array(t);h=a<1?u:v[a-1];o=(d=a<2?u:v[a-2])[0]<<13|d[1]<<12|d[2]<<11|h[0]<<7|h[1]<<6|h[2]<<5|h[3]<<4;for(c=0;c<t;c++){u[c]=l=p.readBit(y,o);o=(31735&o)<<1|(c+3<t?d[c+3]<<11:0)|(c+4<t?h[c+4]<<4:0)|l}}return v}(r,i,u);var h=!!c,d=y[o].concat(l);d.sort((function(t,r){return t.y-r.y||t.x-r.x}));var p,v,m=d.length,b=new Int8Array(m),x=new Int8Array(m),_=[],w=0,C=0,k=0,P=0;for(v=0;v<m;v++){b[v]=d[v].x;x[v]=d[v].y;C=Math.min(C,d[v].x);k=Math.max(k,d[v].x);P=Math.min(P,d[v].y);v<m-1&&d[v].y===d[v+1].y&&d[v].x===d[v+1].x-1?w|=1<<m-1-v:_.push(v)}var T=_.length,I=new Int8Array(T),O=new Int8Array(T),E=new Uint16Array(T);for(p=0;p<T;p++){v=_[p];I[p]=d[v].x;O[p]=d[v].y;E[p]=1<<m-1-v}for(var A,R,B,D,L,M=-C,U=-P,N=r-k,j=g[o],H=new Uint8Array(r),z=[],X=u.decoder,G=u.contextCache.getContexts("GB"),Y=0,q=0,J=0;J<i;J++){if(a){if(Y^=X.readBit(G,j)){z.push(H);continue}}H=new Uint8Array(H);z.push(H);for(A=0;A<r;A++)if(h&&c[J][A])H[A]=0;else{if(A>=M&&A<N&&J>=U){q=q<<1&w;for(v=0;v<T;v++){R=J+O[v];B=A+I[v];(D=z[R][B])&&(q|=D=E[v])}}else{q=0;L=m-1;for(v=0;v<m;v++,L--)(B=A+b[v])>=0&&B<r&&(R=J+x[v])>=0&&(D=z[R][B])&&(q|=D<<L)}var W=X.readBit(G,q);H[A]=W}}return z}function decodeRefinement(t,r,i,o,a,c,l,h,d){var p=v[i].coding;0===i&&(p=p.concat([h[0]]));var y,g=p.length,b=new Int32Array(g),x=new Int32Array(g);for(y=0;y<g;y++){b[y]=p[y].x;x[y]=p[y].y}var _=v[i].reference;0===i&&(_=_.concat([h[1]]));var w=_.length,C=new Int32Array(w),k=new Int32Array(w);for(y=0;y<w;y++){C[y]=_[y].x;k[y]=_[y].y}for(var S=o[0].length,P=o.length,T=m[i],I=[],O=d.decoder,E=d.contextCache.getContexts("GR"),A=0,R=0;R<r;R++){if(l){if(A^=O.readBit(E,T))throw new u("prediction is not supported")}var B=new Uint8Array(t);I.push(B);for(var D=0;D<t;D++){var L=void 0,M=void 0,U=0;for(y=0;y<g;y++){L=R+x[y];M=D+b[y];L<0||M<0||M>=t?U<<=1:U=U<<1|I[L][M]}for(y=0;y<w;y++){L=R+k[y]-c;M=D+C[y]-a;L<0||L>=P||M<0||M>=S?U<<=1:U=U<<1|o[L][M]}var N=O.readBit(E,U);B[D]=N}}return I}function decodeTextRegion(t,r,i,o,a,c,l,h,d,p,y,v,g,m,b,x,_,w,C){if(t&&r)throw new u("refinement with Huffman is not supported");var k,S,P=[];for(k=0;k<o;k++){S=new Uint8Array(i);if(a)for(var T=0;T<i;T++)S[T]=a;P.push(S)}var I=_.decoder,O=_.contextCache,E=t?-m.tableDeltaT.decode(C):-decodeInteger(O,"IADT",I),A=0;k=0;for(;k<c;){E+=t?m.tableDeltaT.decode(C):decodeInteger(O,"IADT",I);for(var R=A+=t?m.tableFirstS.decode(C):decodeInteger(O,"IAFS",I);;){var B=0;l>1&&(B=t?C.readBits(w):decodeInteger(O,"IAIT",I));var D=l*E+B,L=t?m.symbolIDTable.decode(C):decodeIAID(O,I,d),M=r&&(t?C.readBit():decodeInteger(O,"IARI",I)),U=h[L],N=U[0].length,j=U.length;if(M){var H=decodeInteger(O,"IARDW",I),z=decodeInteger(O,"IARDH",I);U=decodeRefinement(N+=H,j+=z,b,U,(H>>1)+decodeInteger(O,"IARDX",I),(z>>1)+decodeInteger(O,"IARDY",I),!1,x,_)}var X=D-(1&v?0:j-1),G=R-(2&v?N-1:0),Y=void 0,q=void 0,J=void 0;if(p){for(Y=0;Y<j;Y++)if(S=P[G+Y]){J=U[Y];var W=Math.min(i-X,N);switch(g){case 0:for(q=0;q<W;q++)S[X+q]|=J[q];break;case 2:for(q=0;q<W;q++)S[X+q]^=J[q];break;default:throw new u("operator ".concat(g," is not supported"))}}R+=j-1}else{for(q=0;q<j;q++)if(S=P[X+q]){J=U[q];switch(g){case 0:for(Y=0;Y<N;Y++)S[G+Y]|=J[Y];break;case 2:for(Y=0;Y<N;Y++)S[G+Y]^=J[Y];break;default:throw new u("operator ".concat(g," is not supported"))}}R+=N-1}k++;var V=t?m.tableDeltaS.decode(C):decodeInteger(O,"IADS",I);if(null===V)break;R+=V+y}}return P}function readSegmentHeader(t,r){var i={};i.number=(0,a.readUint32)(t,r);var o=t[r+4],c=63&o;if(!p[c])throw new u("invalid segment type: "+c);i.type=c;i.typeName=p[c];i.deferredNonRetain=!!(128&o);var l=!!(64&o),h=t[r+5],d=h>>5&7,y=[31&h],v=r+6;if(7===h){d=536870911&(0,a.readUint32)(t,v-1);v+=3;var g=d+7>>3;y[0]=t[v++];for(;--g>0;)y.push(t[v++])}else if(5===h||6===h)throw new u("invalid referred-to flags");i.retainBits=y;var m=4;i.number<=256?m=1:i.number<=65536&&(m=2);var x,_,w=[];for(x=0;x<d;x++){var C=void 0;C=1===m?t[v]:2===m?(0,a.readUint16)(t,v):(0,a.readUint32)(t,v);w.push(C);v+=m}i.referredTo=w;if(l){i.pageAssociation=(0,a.readUint32)(t,v);v+=4}else i.pageAssociation=t[v++];i.length=(0,a.readUint32)(t,v);v+=4;if(4294967295===i.length){if(38!==c)throw new u("invalid unknown segment length");var k=readRegionSegmentInformation(t,v),S=!!(1&t[v+b]),P=new Uint8Array(6);if(!S){P[0]=255;P[1]=172}P[2]=k.height>>>24&255;P[3]=k.height>>16&255;P[4]=k.height>>8&255;P[5]=255&k.height;for(x=v,_=t.length;x<_;x++){for(var T=0;T<6&&P[T]===t[x+T];)T++;if(6===T){i.length=x+6;break}}if(4294967295===i.length)throw new u("segment end was not found")}i.headerEnd=v;return i}function readSegments(t,r,i,o){for(var a=[],c=i;c<o;){var l=readSegmentHeader(r,c);c=l.headerEnd;var u={header:l,data:r};if(!t.randomAccess){u.start=c;c+=l.length;u.end=c}a.push(u);if(51===l.type)break}if(t.randomAccess)for(var h=0,d=a.length;h<d;h++){a[h].start=c;c+=a[h].header.length;a[h].end=c}return a}function readRegionSegmentInformation(t,r){return{width:(0,a.readUint32)(t,r),height:(0,a.readUint32)(t,r+4),x:(0,a.readUint32)(t,r+8),y:(0,a.readUint32)(t,r+12),combinationOperator:7&t[r+16]}}var b=17;function processSegment(t,r){var i,o,c,l,h=t.header,d=t.data,p=t.end,y=t.start;switch(h.type){case 0:var v={},g=(0,a.readUint16)(d,y);v.huffman=!!(1&g);v.refinement=!!(2&g);v.huffmanDHSelector=g>>2&3;v.huffmanDWSelector=g>>4&3;v.bitmapSizeSelector=g>>6&1;v.aggregationInstancesSelector=g>>7&1;v.bitmapCodingContextUsed=!!(256&g);v.bitmapCodingContextRetained=!!(512&g);v.template=g>>10&3;v.refinementTemplate=g>>12&1;y+=2;if(!v.huffman){l=0===v.template?4:1;o=[];for(c=0;c<l;c++){o.push({x:(0,a.readInt8)(d,y),y:(0,a.readInt8)(d,y+1)});y+=2}v.at=o}if(v.refinement&&!v.refinementTemplate){o=[];for(c=0;c<2;c++){o.push({x:(0,a.readInt8)(d,y),y:(0,a.readInt8)(d,y+1)});y+=2}v.refinementAt=o}v.numberOfExportedSymbols=(0,a.readUint32)(d,y);y+=4;v.numberOfNewSymbols=(0,a.readUint32)(d,y);y+=4;i=[v,h.number,h.referredTo,d,y,p];break;case 6:case 7:var m={};m.info=readRegionSegmentInformation(d,y);y+=b;var x=(0,a.readUint16)(d,y);y+=2;m.huffman=!!(1&x);m.refinement=!!(2&x);m.logStripSize=x>>2&3;m.stripSize=1<<m.logStripSize;m.referenceCorner=x>>4&3;m.transposed=!!(64&x);m.combinationOperator=x>>7&3;m.defaultPixelValue=x>>9&1;m.dsOffset=x<<17>>27;m.refinementTemplate=x>>15&1;if(m.huffman){var _=(0,a.readUint16)(d,y);y+=2;m.huffmanFS=3&_;m.huffmanDS=_>>2&3;m.huffmanDT=_>>4&3;m.huffmanRefinementDW=_>>6&3;m.huffmanRefinementDH=_>>8&3;m.huffmanRefinementDX=_>>10&3;m.huffmanRefinementDY=_>>12&3;m.huffmanRefinementSizeSelector=!!(16384&_)}if(m.refinement&&!m.refinementTemplate){o=[];for(c=0;c<2;c++){o.push({x:(0,a.readInt8)(d,y),y:(0,a.readInt8)(d,y+1)});y+=2}m.refinementAt=o}m.numberOfSymbolInstances=(0,a.readUint32)(d,y);y+=4;i=[m,h.referredTo,d,y,p];break;case 16:var w={},C=d[y++];w.mmr=!!(1&C);w.template=C>>1&3;w.patternWidth=d[y++];w.patternHeight=d[y++];w.maxPatternIndex=(0,a.readUint32)(d,y);y+=4;i=[w,h.number,d,y,p];break;case 22:case 23:var k={};k.info=readRegionSegmentInformation(d,y);y+=b;var S=d[y++];k.mmr=!!(1&S);k.template=S>>1&3;k.enableSkip=!!(8&S);k.combinationOperator=S>>4&7;k.defaultPixelValue=S>>7&1;k.gridWidth=(0,a.readUint32)(d,y);y+=4;k.gridHeight=(0,a.readUint32)(d,y);y+=4;k.gridOffsetX=4294967295&(0,a.readUint32)(d,y);y+=4;k.gridOffsetY=4294967295&(0,a.readUint32)(d,y);y+=4;k.gridVectorX=(0,a.readUint16)(d,y);y+=2;k.gridVectorY=(0,a.readUint16)(d,y);y+=2;i=[k,h.referredTo,d,y,p];break;case 38:case 39:var P={};P.info=readRegionSegmentInformation(d,y);y+=b;var T=d[y++];P.mmr=!!(1&T);P.template=T>>1&3;P.prediction=!!(8&T);if(!P.mmr){l=0===P.template?4:1;o=[];for(c=0;c<l;c++){o.push({x:(0,a.readInt8)(d,y),y:(0,a.readInt8)(d,y+1)});y+=2}P.at=o}i=[P,d,y,p];break;case 48:var I={width:(0,a.readUint32)(d,y),height:(0,a.readUint32)(d,y+4),resolutionX:(0,a.readUint32)(d,y+8),resolutionY:(0,a.readUint32)(d,y+12)};4294967295===I.height&&delete I.height;var O=d[y+16];(0,a.readUint16)(d,y+17);I.lossless=!!(1&O);I.refinement=!!(2&O);I.defaultPixelValue=O>>2&1;I.combinationOperator=O>>3&3;I.requiresBuffer=!!(32&O);I.combinationOperatorOverride=!!(64&O);i=[I];break;case 49:case 50:case 51:break;case 53:i=[h.number,d,y,p];break;case 62:break;default:throw new u("segment type ".concat(h.typeName,"(").concat(h.type,")")+" is not implemented")}var E="on"+h.typeName;E in r&&r[E].apply(r,i)}function processSegments(t,r){for(var i=0,o=t.length;i<o;i++)processSegment(t[i],r)}var x=function(){function SimpleSegmentVisitor(){_classCallCheck(this,SimpleSegmentVisitor)}_createClass(SimpleSegmentVisitor,[{key:"onPageInformation",value:function onPageInformation(t){this.currentPageInfo=t;var r=t.width+7>>3,i=new Uint8ClampedArray(r*t.height);if(t.defaultPixelValue)for(var o=0,a=i.length;o<a;o++)i[o]=255;this.buffer=i}},{key:"drawBitmap",value:function drawBitmap(t,r){var i,o,a,c,l=this.currentPageInfo,h=t.width,d=t.height,p=l.width+7>>3,y=l.combinationOperatorOverride?t.combinationOperator:l.combinationOperator,v=this.buffer,g=128>>(7&t.x),m=t.y*p+(t.x>>3);switch(y){case 0:for(i=0;i<d;i++){a=g;c=m;for(o=0;o<h;o++){r[i][o]&&(v[c]|=a);if(!(a>>=1)){a=128;c++}}m+=p}break;case 2:for(i=0;i<d;i++){a=g;c=m;for(o=0;o<h;o++){r[i][o]&&(v[c]^=a);if(!(a>>=1)){a=128;c++}}m+=p}break;default:throw new u("operator ".concat(y," is not supported"))}}},{key:"onImmediateGenericRegion",value:function onImmediateGenericRegion(t,r,i,o){var a=t.info,c=new d(r,i,o),l=decodeBitmap(t.mmr,a.width,a.height,t.template,t.prediction,null,t.at,c);this.drawBitmap(a,l)}},{key:"onImmediateLosslessGenericRegion",value:function onImmediateLosslessGenericRegion(){this.onImmediateGenericRegion.apply(this,arguments)}},{key:"onSymbolDictionary",value:function onSymbolDictionary(t,r,i,o,c,l){var h,p;if(t.huffman){h=function getSymbolDictionaryHuffmanTables(t,r,i){var o,a,c,l,h=0;switch(t.huffmanDHSelector){case 0:case 1:o=getStandardTable(t.huffmanDHSelector+4);break;case 3:o=getCustomHuffmanTable(h,r,i);h++;break;default:throw new u("invalid Huffman DH selector")}switch(t.huffmanDWSelector){case 0:case 1:a=getStandardTable(t.huffmanDWSelector+2);break;case 3:a=getCustomHuffmanTable(h,r,i);h++;break;default:throw new u("invalid Huffman DW selector")}if(t.bitmapSizeSelector){c=getCustomHuffmanTable(h,r,i);h++}else c=getStandardTable(1);l=t.aggregationInstancesSelector?getCustomHuffmanTable(h,r,i):getStandardTable(1);return{tableDeltaHeight:o,tableDeltaWidth:a,tableBitmapSize:c,tableAggregateInstances:l}}(t,i,this.customTables);p=new S(o,c,l)}var y=this.symbols;y||(this.symbols=y={});for(var v=[],g=0,m=i.length;g<m;g++){var b=y[i[g]];b&&(v=v.concat(b))}var x=new d(o,c,l);y[r]=function decodeSymbolDictionary(t,r,i,o,c,l,h,d,p,y,v,g){if(t&&r)throw new u("symbol refinement with Huffman is not supported");var m,b,x=[],_=0,w=(0,a.log2)(i.length+o),C=v.decoder,k=v.contextCache;if(t){m=getStandardTable(1);b=[];w=Math.max(w,1)}for(;x.length<o;){_+=t?l.tableDeltaHeight.decode(g):decodeInteger(k,"IADH",C);for(var S=0,P=0,T=t?b.length:0;;){var I=t?l.tableDeltaWidth.decode(g):decodeInteger(k,"IADW",C);if(null===I)break;P+=S+=I;var O=void 0;if(r){var E=decodeInteger(k,"IAAI",C);if(E>1)O=decodeTextRegion(t,r,S,_,0,E,1,i.concat(x),w,0,0,1,0,l,p,y,v,0,g);else{var A=decodeIAID(k,C,w),R=decodeInteger(k,"IARDX",C),B=decodeInteger(k,"IARDY",C);O=decodeRefinement(S,_,p,A<i.length?i[A]:x[A-i.length],R,B,!1,y,v)}x.push(O)}else if(t)b.push(S);else{O=decodeBitmap(!1,S,_,h,!1,null,d,v);x.push(O)}}if(t&&!r){var D=l.tableBitmapSize.decode(g);g.byteAlign();var L=void 0;if(0===D)L=readUncompressedBitmap(g,P,_);else{var M=g.end,U=g.position+D;g.end=U;L=decodeMMRBitmap(g,P,_,!1);g.end=M;g.position=U}var N=b.length;if(T===N-1)x.push(L);else{var j=void 0,H=void 0,z=0,X=void 0,G=void 0;for(j=T;j<N;j++){X=z+b[j];G=[];for(H=0;H<_;H++)G.push(L[H].subarray(z,X));x.push(G);z=X}}}}for(var Y,q,J=[],W=[],V=!1,K=i.length+o;W.length<K;){for(var Q=t?m.decode(g):decodeInteger(k,"IAEX",C);Q--;)W.push(V);V=!V}for(Y=0,q=i.length;Y<q;Y++)W[Y]&&J.push(i[Y]);for(var Z=0;Z<o;Y++,Z++)W[Y]&&J.push(x[Z]);return J}(t.huffman,t.refinement,v,t.numberOfNewSymbols,t.numberOfExportedSymbols,h,t.template,t.at,t.refinementTemplate,t.refinementAt,x,p)}},{key:"onImmediateTextRegion",value:function onImmediateTextRegion(t,r,i,o,c){for(var l,h,p=t.info,y=this.symbols,v=[],g=0,m=r.length;g<m;g++){var b=y[r[g]];b&&(v=v.concat(b))}var x=(0,a.log2)(v.length);if(t.huffman){h=new S(i,o,c);l=function getTextRegionHuffmanTables(t,r,i,o,a){for(var c=[],l=0;l<=34;l++){var h=a.readBits(4);c.push(new _([l,h,0,0]))}var d=new C(c,!1);c.length=0;for(var p=0;p<o;){var y=d.decode(a);if(y>=32){var v=void 0,g=void 0,m=void 0;switch(y){case 32:if(0===p)throw new u("no previous value in symbol ID table");g=a.readBits(2)+3;v=c[p-1].prefixLength;break;case 33:g=a.readBits(3)+3;v=0;break;case 34:g=a.readBits(7)+11;v=0;break;default:throw new u("invalid code length in symbol ID table")}for(m=0;m<g;m++){c.push(new _([p,v,0,0]));p++}}else{c.push(new _([p,y,0,0]));p++}}a.byteAlign();var b,x,w,k=new C(c,!1),S=0;switch(t.huffmanFS){case 0:case 1:b=getStandardTable(t.huffmanFS+6);break;case 3:b=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman FS selector")}switch(t.huffmanDS){case 0:case 1:case 2:x=getStandardTable(t.huffmanDS+8);break;case 3:x=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman DS selector")}switch(t.huffmanDT){case 0:case 1:case 2:w=getStandardTable(t.huffmanDT+11);break;case 3:w=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman DT selector")}if(t.refinement)throw new u("refinement with Huffman is not supported");return{symbolIDTable:k,tableFirstS:b,tableDeltaS:x,tableDeltaT:w}}(t,r,this.customTables,v.length,h)}var w=new d(i,o,c),k=decodeTextRegion(t.huffman,t.refinement,p.width,p.height,t.defaultPixelValue,t.numberOfSymbolInstances,t.stripSize,v,x,t.transposed,t.dsOffset,t.referenceCorner,t.combinationOperator,l,t.refinementTemplate,t.refinementAt,w,t.logStripSize,h);this.drawBitmap(p,k)}},{key:"onImmediateLosslessTextRegion",value:function onImmediateLosslessTextRegion(){this.onImmediateTextRegion.apply(this,arguments)}},{key:"onPatternDictionary",value:function onPatternDictionary(t,r,i,o,a){var c=this.patterns;c||(this.patterns=c={});var l=new d(i,o,a);c[r]=function decodePatternDictionary(t,r,i,o,a,c){var l=[];if(!t){l.push({x:-r,y:0});0===a&&l.push({x:-3,y:-1},{x:2,y:-2},{x:-2,y:-2})}for(var u=decodeBitmap(t,(o+1)*r,i,a,!1,null,l,c),h=[],d=0;d<=o;d++){for(var p=[],y=r*d,v=y+r,g=0;g<i;g++)p.push(u[g].subarray(y,v));h.push(p)}return h}(t.mmr,t.patternWidth,t.patternHeight,t.maxPatternIndex,t.template,l)}},{key:"onImmediateHalftoneRegion",value:function onImmediateHalftoneRegion(t,r,i,o,c){var l=this.patterns[r[0]],h=t.info,p=new d(i,o,c),y=function decodeHalftoneRegion(t,r,i,o,c,l,h,d,p,y,v,g,m,b,x){if(h)throw new u("skip is not supported");if(0!==d)throw new u('operator "'.concat(d,'" is not supported in halftone region'));var _,w,C,k=[];for(_=0;_<c;_++){C=new Uint8Array(o);if(l)for(w=0;w<o;w++)C[w]=l;k.push(C)}var P=r.length,T=r[0],I=T[0].length,O=T.length,E=(0,a.log2)(P),A=[];if(!t){A.push({x:i<=1?3:2,y:-1});0===i&&A.push({x:-3,y:-1},{x:2,y:-2},{x:-2,y:-2})}var R,B,D,L,M,U,N,j,H,z,X,G=[];t&&(R=new S(x.data,x.start,x.end));for(_=E-1;_>=0;_--){B=t?decodeMMRBitmap(R,p,y,!0):decodeBitmap(!1,p,y,i,!1,null,A,x);G[_]=B}for(D=0;D<y;D++)for(L=0;L<p;L++){M=0;U=0;for(w=E-1;w>=0;w--)U|=(M=G[w][D][L]^M)<<w;N=r[U];H=g+D*m-L*b>>8;if((j=v+D*b+L*m>>8)>=0&&j+I<=o&&H>=0&&H+O<=c)for(_=0;_<O;_++){X=k[H+_];z=N[_];for(w=0;w<I;w++)X[j+w]|=z[w]}else{var Y=void 0,q=void 0;for(_=0;_<O;_++)if(!((q=H+_)<0||q>=c)){X=k[q];z=N[_];for(w=0;w<I;w++)(Y=j+w)>=0&&Y<o&&(X[Y]|=z[w])}}}return k}(t.mmr,l,t.template,h.width,h.height,t.defaultPixelValue,t.enableSkip,t.combinationOperator,t.gridWidth,t.gridHeight,t.gridOffsetX,t.gridOffsetY,t.gridVectorX,t.gridVectorY,p);this.drawBitmap(h,y)}},{key:"onImmediateLosslessHalftoneRegion",value:function onImmediateLosslessHalftoneRegion(){this.onImmediateHalftoneRegion.apply(this,arguments)}},{key:"onTables",value:function onTables(t,r,i,o){var c=this.customTables;c||(this.customTables=c={});c[t]=function decodeTablesSegment(t,r,i){var o,c,l=t[r],u=4294967295&(0,a.readUint32)(t,r+1),h=4294967295&(0,a.readUint32)(t,r+5),d=new S(t,r+9,i),p=1+(l>>1&7),y=1+(l>>4&7),v=[],g=u;do{o=d.readBits(p);c=d.readBits(y);v.push(new _([g,o,c,0]));g+=1<<c}while(g<h);o=d.readBits(p);v.push(new _([u-1,o,32,0,"lower"]));o=d.readBits(p);v.push(new _([h,o,32,0]));if(1&l){o=d.readBits(p);v.push(new _([o,0]))}return new C(v,!1)}(r,i,o)}}]);return SimpleSegmentVisitor}(),_=function HuffmanLine(t){_classCallCheck(this,HuffmanLine);if(2===t.length){this.isOOB=!0;this.rangeLow=0;this.prefixLength=t[0];this.rangeLength=0;this.prefixCode=t[1];this.isLowerRange=!1}else{this.isOOB=!1;this.rangeLow=t[0];this.prefixLength=t[1];this.rangeLength=t[2];this.prefixCode=t[3];this.isLowerRange="lower"===t[4]}},w=function(){function HuffmanTreeNode(t){_classCallCheck(this,HuffmanTreeNode);this.children=[];if(t){this.isLeaf=!0;this.rangeLength=t.rangeLength;this.rangeLow=t.rangeLow;this.isLowerRange=t.isLowerRange;this.isOOB=t.isOOB}else this.isLeaf=!1}_createClass(HuffmanTreeNode,[{key:"buildTree",value:function buildTree(t,r){var i=t.prefixCode>>r&1;if(r<=0)this.children[i]=new HuffmanTreeNode(t);else{var o=this.children[i];o||(this.children[i]=o=new HuffmanTreeNode(null));o.buildTree(t,r-1)}}},{key:"decodeNode",value:function decodeNode(t){if(this.isLeaf){if(this.isOOB)return null;var r=t.readBits(this.rangeLength);return this.rangeLow+(this.isLowerRange?-r:r)}var i=this.children[t.readBit()];if(!i)throw new u("invalid Huffman data");return i.decodeNode(t)}}]);return HuffmanTreeNode}(),C=function(){function HuffmanTable(t,r){_classCallCheck(this,HuffmanTable);r||this.assignPrefixCodes(t);this.rootNode=new w(null);for(var i=0,o=t.length;i<o;i++){var a=t[i];a.prefixLength>0&&this.rootNode.buildTree(a,a.prefixLength-1)}}_createClass(HuffmanTable,[{key:"decode",value:function decode(t){return this.rootNode.decodeNode(t)}},{key:"assignPrefixCodes",value:function assignPrefixCodes(t){for(var r=t.length,i=0,o=0;o<r;o++)i=Math.max(i,t[o].prefixLength);for(var a=new Uint32Array(i+1),c=0;c<r;c++)a[t[c].prefixLength]++;var l,u,h,d=1,p=0;a[0]=0;for(;d<=i;){l=p=p+a[d-1]<<1;u=0;for(;u<r;){if((h=t[u]).prefixLength===d){h.prefixCode=l;l++}u++}d++}}}]);return HuffmanTable}();var k={};function getStandardTable(t){var r,i=k[t];if(i)return i;switch(t){case 1:r=[[0,1,4,0],[16,2,8,2],[272,3,16,6],[65808,3,32,7]];break;case 2:r=[[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[75,6,32,62],[6,63]];break;case 3:r=[[-256,8,8,254],[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[-257,8,32,255,"lower"],[75,7,32,126],[6,62]];break;case 4:r=[[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[76,5,32,31]];break;case 5:r=[[-255,7,8,126],[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[-256,7,32,127,"lower"],[76,6,32,62]];break;case 6:r=[[-2048,5,10,28],[-1024,4,9,8],[-512,4,8,9],[-256,4,7,10],[-128,5,6,29],[-64,5,5,30],[-32,4,5,11],[0,2,7,0],[128,3,7,2],[256,3,8,3],[512,4,9,12],[1024,4,10,13],[-2049,6,32,62,"lower"],[2048,6,32,63]];break;case 7:r=[[-1024,4,9,8],[-512,3,8,0],[-256,4,7,9],[-128,5,6,26],[-64,5,5,27],[-32,4,5,10],[0,4,5,11],[32,5,5,28],[64,5,6,29],[128,4,7,12],[256,3,8,1],[512,3,9,2],[1024,3,10,3],[-1025,5,32,30,"lower"],[2048,5,32,31]];break;case 8:r=[[-15,8,3,252],[-7,9,1,508],[-5,8,1,253],[-3,9,0,509],[-2,7,0,124],[-1,4,0,10],[0,2,1,0],[2,5,0,26],[3,6,0,58],[4,3,4,4],[20,6,1,59],[22,4,4,11],[38,4,5,12],[70,5,6,27],[134,5,7,28],[262,6,7,60],[390,7,8,125],[646,6,10,61],[-16,9,32,510,"lower"],[1670,9,32,511],[2,1]];break;case 9:r=[[-31,8,4,252],[-15,9,2,508],[-11,8,2,253],[-7,9,1,509],[-5,7,1,124],[-3,4,1,10],[-1,3,1,2],[1,3,1,3],[3,5,1,26],[5,6,1,58],[7,3,5,4],[39,6,2,59],[43,4,5,11],[75,4,6,12],[139,5,7,27],[267,5,8,28],[523,6,8,60],[779,7,9,125],[1291,6,11,61],[-32,9,32,510,"lower"],[3339,9,32,511],[2,0]];break;case 10:r=[[-21,7,4,122],[-5,8,0,252],[-4,7,0,123],[-3,5,0,24],[-2,2,2,0],[2,5,0,25],[3,6,0,54],[4,7,0,124],[5,8,0,253],[6,2,6,1],[70,5,5,26],[102,6,5,55],[134,6,6,56],[198,6,7,57],[326,6,8,58],[582,6,9,59],[1094,6,10,60],[2118,7,11,125],[-22,8,32,254,"lower"],[4166,8,32,255],[2,2]];break;case 11:r=[[1,1,0,0],[2,2,1,2],[4,4,0,12],[5,4,1,13],[7,5,1,28],[9,5,2,29],[13,6,2,60],[17,7,2,122],[21,7,3,123],[29,7,4,124],[45,7,5,125],[77,7,6,126],[141,7,32,127]];break;case 12:r=[[1,1,0,0],[2,2,0,2],[3,3,1,6],[5,5,0,28],[6,5,1,29],[8,6,1,60],[10,7,0,122],[11,7,1,123],[13,7,2,124],[17,7,3,125],[25,7,4,126],[41,8,5,254],[73,8,32,255]];break;case 13:r=[[1,1,0,0],[2,3,0,4],[3,4,0,12],[4,5,0,28],[5,4,1,13],[7,3,3,5],[15,6,1,58],[17,6,2,59],[21,6,3,60],[29,6,4,61],[45,6,5,62],[77,7,6,126],[141,7,32,127]];break;case 14:r=[[-2,3,0,4],[-1,3,0,5],[0,1,0,0],[1,3,0,6],[2,3,0,7]];break;case 15:r=[[-24,7,4,124],[-8,6,2,60],[-4,5,1,28],[-2,4,0,12],[-1,3,0,4],[0,1,0,0],[1,3,0,5],[2,4,0,13],[3,5,1,29],[5,6,2,61],[9,7,4,125],[-25,7,32,126,"lower"],[25,7,32,127]];break;default:throw new u("standard table B.".concat(t," does not exist"))}for(var o=0,a=r.length;o<a;o++)r[o]=new _(r[o]);i=new C(r,!0);k[t]=i;return i}var S=function(){function Reader(t,r,i){_classCallCheck(this,Reader);this.data=t;this.start=r;this.end=i;this.position=r;this.shift=-1;this.currentByte=0}_createClass(Reader,[{key:"readBit",value:function readBit(){if(this.shift<0){if(this.position>=this.end)throw new u("end of data while reading bit");this.currentByte=this.data[this.position++];this.shift=7}var t=this.currentByte>>this.shift&1;this.shift--;return t}},{key:"readBits",value:function readBits(t){var r,i=0;for(r=t-1;r>=0;r--)i|=this.readBit()<<r;return i}},{key:"byteAlign",value:function byteAlign(){this.shift=-1}},{key:"next",value:function next(){return this.position>=this.end?-1:this.data[this.position++]}}]);return Reader}();function getCustomHuffmanTable(t,r,i){for(var o=0,a=0,c=r.length;a<c;a++){var l=i[r[a]];if(l){if(t===o)return l;o++}}throw new u("can't find custom Huffman table")}function readUncompressedBitmap(t,r,i){for(var o=[],a=0;a<i;a++){var c=new Uint8Array(r);o.push(c);for(var l=0;l<r;l++)c[l]=t.readBit();t.byteAlign()}return o}function decodeMMRBitmap(t,r,i,o){for(var a,c={K:-1,Columns:r,Rows:i,BlackIs1:!0,EndOfBlock:o},u=new l.CCITTFaxDecoder(t,c),h=[],d=!1,p=0;p<i;p++){var y=new Uint8Array(r);h.push(y);for(var v=-1,g=0;g<r;g++){if(v<0){if(-1===(a=u.readNextChar())){a=0;d=!0}v=7}y[g]=a>>v&1;v--}}if(o&&!d)for(var m=0;m<5&&-1!==u.readNextChar();m++);return h}var P=function(){function Jbig2Image(){_classCallCheck(this,Jbig2Image)}_createClass(Jbig2Image,[{key:"parseChunks",value:function parseChunks(t){return function parseJbig2Chunks(t){for(var r=new x,i=0,o=t.length;i<o;i++){var a=t[i];processSegments(readSegments({},a.data,a.start,a.end),r)}return r.buffer}(t)}},{key:"parse",value:function parse(t){var r=function parseJbig2(t){var r=t.length,i=0;if(151!==t[i]||74!==t[i+1]||66!==t[i+2]||50!==t[i+3]||13!==t[i+4]||10!==t[i+5]||26!==t[i+6]||10!==t[i+7])throw new u("parseJbig2 - invalid header.");var o=Object.create(null);i+=8;var c=t[i++];o.randomAccess=!(1&c);if(!(2&c)){o.numberOfPages=(0,a.readUint32)(t,i);i+=4}var l=readSegments(o,t,i,r),h=new x;processSegments(l,h);for(var d=h.currentPageInfo,p=d.width,y=d.height,v=h.buffer,g=new Uint8ClampedArray(p*y),m=0,b=0,_=0;_<y;_++)for(var w=0,C=void 0,k=0;k<p;k++){if(!w){w=128;C=v[b++]}g[m++]=C&w?0:255;w>>=1}return{imgData:g,width:p,height:y}}(t),i=r.imgData,o=r.width,c=r.height;this.width=o;this.height=c;return i}}]);return Jbig2Image}();r.Jbig2Image=P},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.collectActions=function collectActions(t,r,i){var c=Object.create(null),l=getInheritableProperty({dict:r,key:"AA",stopWhenFound:!1});if(l)for(var u=l.length-1;u>=0;u--){var h=l[u];if(h instanceof a.Dict){var d,p=_createForOfIteratorHelper(h.getKeys());try{for(p.s();!(d=p.n()).done;){var y=d.value,v=i[y];if(v){var g=h.getRaw(y),m=new a.RefSet,b=[];_collectJS(g,t,b,m);b.length>0&&(c[v]=b)}}}catch(t){p.e(t)}finally{p.f()}}}if(r.has("A")){var x=r.get("A"),_=new a.RefSet,w=[];_collectJS(x,t,w,_);w.length>0&&(c.Action=w)}return(0,o.objectSize)(c)>0?c:null};r.encodeToXmlString=function encodeToXmlString(t){for(var r=[],i=0,o=0,a=t.length;o<a;o++){var c=t.codePointAt(o);if(32<=c&&c<=126){var l=d[c];if(l){i<o&&r.push(t.substring(i,o));r.push(l);i=o+1}}else{i<o&&r.push(t.substring(i,o));r.push("&#x".concat(c.toString(16).toUpperCase(),";"));c>55295&&(c<57344||c>65533)&&o++;i=o+1}}if(0===r.length)return t;i<t.length&&r.push(t.substring(i,t.length));return r.join("")};r.escapePDFName=function escapePDFName(t){for(var r=[],i=0,o=0,a=t.length;o<a;o++){var c=t.charCodeAt(o);if(c<33||c>126||35===c||40===c||41===c||60===c||62===c||91===c||93===c||123===c||125===c||47===c||37===c){i<o&&r.push(t.substring(i,o));r.push("#".concat(c.toString(16)));i=o+1}}if(0===r.length)return t;i<t.length&&r.push(t.substring(i,t.length));return r.join("")};r.getArrayLookupTableFactory=function getArrayLookupTableFactory(t){var r;return function(){if(t){var i=t();t=null;r=Object.create(null);for(var o=0,a=i.length;o<a;o+=2)r[i[o]]=i[o+1];i=null}return r}};r.getInheritableProperty=getInheritableProperty;r.getLookupTableFactory=function getLookupTableFactory(t){var r;return function(){if(t){r=Object.create(null);t(r);t=null}return r}};r.isWhiteSpace=function isWhiteSpace(t){return 32===t||9===t||13===t||10===t};r.log2=function log2(t){if(t<=0)return 0;return Math.ceil(Math.log2(t))};r.parseXFAPath=function parseXFAPath(t){var r=/(.+)\[([0-9]+)\]$/;return t.split(".").map((function(t){var i=t.match(r);return i?{name:i[1],pos:parseInt(i[2],10)}:{name:t,pos:0}}))};r.readInt8=function readInt8(t,r){return t[r]<<24>>24};r.readUint16=function readUint16(t,r){return t[r]<<8|t[r+1]};r.readUint32=function readUint32(t,r){return(t[r]<<24|t[r+1]<<16|t[r+2]<<8|t[r+3])>>>0};r.toRomanNumerals=function toRomanNumerals(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];(0,o.assert)(Number.isInteger(t)&&t>0,"The number should be a positive integer.");var i,a=[];for(;t>=1e3;){t-=1e3;a.push("M")}i=t/100|0;t%=100;a.push(h[i]);i=t/10|0;t%=10;a.push(h[10+i]);a.push(h[20+t]);var c=a.join("");return r?c.toLowerCase():c};r.validateCSSFont=function validateCSSFont(t){var r=new Set(["100","200","300","400","500","600","700","800","900","1000","normal","bold","bolder","lighter"]),i=t.fontFamily,a=t.fontWeight,c=t.italicAngle;if(/^".*"$/.test(i)){if(/[^\\]"/.test(i.slice(1,i.length-1))){(0,o.warn)('XFA - FontFamily contains some unescaped ": '.concat(i,"."));return!1}}else if(/^'.*'$/.test(i)){if(/[^\\]'/.test(i.slice(1,i.length-1))){(0,o.warn)("XFA - FontFamily contains some unescaped ': ".concat(i,"."));return!1}}else{var l,u=_createForOfIteratorHelper(i.split(/[ \t]+/));try{for(u.s();!(l=u.n()).done;){var h=l.value;if(/^([0-9]|(-([0-9]|-)))/.test(h)||!/^[a-zA-Z0-9\-_\\]+$/.test(h)){(0,o.warn)("XFA - FontFamily contains some invalid <custom-ident>: ".concat(i,"."));return!1}}}catch(t){u.e(t)}finally{u.f()}}var d=a?a.toString():"";t.fontWeight=r.has(d)?d:"400";var p=parseFloat(c);t.italicAngle=isNaN(p)||p<-90||p>90?"14":c.toString();return!0};r.XRefParseException=r.XRefEntryException=r.MissingDataException=void 0;var o=i(1),a=i(83);function _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=function _unsupportedIterableToArray(t,r){if(!t)return;if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);if("Map"===i||"Set"===i)return Array.from(t);if("Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return _arrayLikeToArray(t,r)}(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var c=function(t){_inherits(MissingDataException,t);var r=_createSuper(MissingDataException);function MissingDataException(t,i){var o;_classCallCheck(this,MissingDataException);(o=r.call(this,"Missing data [".concat(t,", ").concat(i,")"))).begin=t;o.end=i;return o}return MissingDataException}(o.BaseException);r.MissingDataException=c;var l=function(t){_inherits(XRefEntryException,t);var r=_createSuper(XRefEntryException);function XRefEntryException(){_classCallCheck(this,XRefEntryException);return r.apply(this,arguments)}return XRefEntryException}(o.BaseException);r.XRefEntryException=l;var u=function(t){_inherits(XRefParseException,t);var r=_createSuper(XRefParseException);function XRefParseException(){_classCallCheck(this,XRefParseException);return r.apply(this,arguments)}return XRefParseException}(o.BaseException);r.XRefParseException=u;function getInheritableProperty(t){for(var r,i=t.dict,o=t.key,c=t.getArray,l=void 0!==c&&c,u=t.stopWhenFound,h=void 0===u||u,d=new a.RefSet;i instanceof a.Dict&&(!i.objId||!d.has(i.objId));){i.objId&&d.put(i.objId);var p=l?i.getArray(o):i.get(o);if(void 0!==p){if(h)return p;r||(r=[]);r.push(p)}i=i.get("Parent")}return r}var h=["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM","","X","XX","XXX","XL","L","LX","LXX","LXXX","XC","","I","II","III","IV","V","VI","VII","VIII","IX"];function _collectJS(t,r,i,c){if(t){var l=null;if((0,a.isRef)(t)){if(c.has(t))return;l=t;c.put(l);t=r.fetch(t)}if(Array.isArray(t)){var u,h=_createForOfIteratorHelper(t);try{for(h.s();!(u=h.n()).done;){_collectJS(u.value,r,i,c)}}catch(t){h.e(t)}finally{h.f()}}else if(t instanceof a.Dict){if((0,a.isName)(t.get("S"),"JavaScript")&&t.has("JS")){var d,p=t.get("JS");d=(0,a.isStream)(p)?p.getString():p;(d=(0,o.stringToPDFString)(d))&&i.push(d)}_collectJS(t.getRaw("Next"),r,i,c)}l&&c.remove(l)}}var d={60:"&lt;",62:"&gt;",38:"&amp;",34:"&quot;",39:"&apos;"}},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.clearPrimitiveCaches=function clearPrimitiveCaches(){h._clearCache();u._clearCache();y._clearCache()};r.isCmd=function isCmd(t,r){return t instanceof h&&(void 0===r||t.cmd===r)};r.isDict=function isDict(t,r){return t instanceof p&&(void 0===r||isName(t.get("Type"),r))};r.isEOF=function isEOF(t){return t===l};r.isName=isName;r.isRef=function isRef(t){return t instanceof y};r.isRefsEqual=function isRefsEqual(t,r){return t.num===r.num&&t.gen===r.gen};r.isStream=function isStream(t){return t instanceof c.BaseStream};r.RefSetCache=r.RefSet=r.Ref=r.Name=r.EOF=r.Dict=r.Cmd=void 0;var o=function _interopRequireDefault(t){return t&&t.__esModule?t:{default:t}}(i(84)),a=i(1),c=i(86);function _slicedToArray(t,r){return function _arrayWithHoles(t){if(Array.isArray(t))return t}(t)||function _iterableToArrayLimit(t,r){var i=t&&("undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"]);if(null==i)return;var o,a,c=[],l=!0,u=!1;try{for(i=i.call(t);!(l=(o=i.next()).done);l=!0){c.push(o.value);if(r&&c.length===r)break}}catch(t){u=!0;a=t}finally{try{l||null==i.return||i.return()}finally{if(u)throw a}}return c}(t,r)||_unsupportedIterableToArray(t,r)||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 _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=_unsupportedIterableToArray(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}function _unsupportedIterableToArray(t,r){if(t){if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);return"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?_arrayLikeToArray(t,r):void 0}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function asyncGeneratorStep(t,r,i,o,a,c,l){try{var u=t[c](l),h=u.value}catch(t){i(t);return}u.done?r(h):Promise.resolve(h).then(o,a)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}var l={};r.EOF=l;var u=function NameClosure(){var t=Object.create(null);return function(){function Name(t){_classCallCheck(this,Name);this.name=t}_createClass(Name,null,[{key:"get",value:function get(r){var i=t[r];return i||(t[r]=new Name(r))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Name}()}();r.Name=u;var h=function CmdClosure(){var t=Object.create(null);return function(){function Cmd(t){_classCallCheck(this,Cmd);this.cmd=t}_createClass(Cmd,null,[{key:"get",value:function get(r){var i=t[r];return i||(t[r]=new Cmd(r))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Cmd}()}();r.Cmd=h;var d=function nonSerializableClosure(){return d},p=function(){function Dict(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;_classCallCheck(this,Dict);this._map=Object.create(null);this.xref=t;this.objId=null;this.suppressEncryption=!1;this.__nonSerializable__=d}_createClass(Dict,[{key:"assignXref",value:function assignXref(t){this.xref=t}},{key:"size",get:function get(){return Object.keys(this._map).length}},{key:"get",value:function get(t,r,i){var o=this._map[t];void 0===o&&void 0!==r&&void 0===(o=this._map[r])&&void 0!==i&&(o=this._map[i]);return o instanceof y&&this.xref?this.xref.fetch(o,this.suppressEncryption):o}},{key:"getAsync",value:(t=function _asyncToGenerator(t){return function(){var r=this,i=arguments;return new Promise((function(o,a){var c=t.apply(r,i);function _next(t){asyncGeneratorStep(c,o,a,_next,_throw,"next",t)}function _throw(t){asyncGeneratorStep(c,o,a,_next,_throw,"throw",t)}_next(void 0)}))}}(o.default.mark((function _callee(t,r,i){var a;return o.default.wrap((function _callee$(o){for(;;)switch(o.prev=o.next){case 0:void 0===(a=this._map[t])&&void 0!==r&&void 0===(a=this._map[r])&&void 0!==i&&(a=this._map[i]);if(!(a instanceof y&&this.xref)){o.next=4;break}return o.abrupt("return",this.xref.fetchAsync(a,this.suppressEncryption));case 4:return o.abrupt("return",a);case 5:case"end":return o.stop()}}),_callee,this)}))),function getAsync(r,i,o){return t.apply(this,arguments)})},{key:"getArray",value:function getArray(t,r,i){var o=this._map[t];void 0===o&&void 0!==r&&void 0===(o=this._map[r])&&void 0!==i&&(o=this._map[i]);o instanceof y&&this.xref&&(o=this.xref.fetch(o,this.suppressEncryption));if(Array.isArray(o))for(var a=0,c=(o=o.slice()).length;a<c;a++)o[a]instanceof y&&this.xref&&(o[a]=this.xref.fetch(o[a],this.suppressEncryption));return o}},{key:"getRaw",value:function getRaw(t){return this._map[t]}},{key:"getKeys",value:function getKeys(){return Object.keys(this._map)}},{key:"getRawValues",value:function getRawValues(){return Object.values(this._map)}},{key:"set",value:function set(t,r){this._map[t]=r}},{key:"has",value:function has(t){return void 0!==this._map[t]}},{key:"forEach",value:function forEach(t){for(var r in this._map)t(r,this.get(r))}}],[{key:"empty",get:function get(){var t=new Dict(null);t.set=function(t,r){(0,a.unreachable)("Should not call `set` on the empty dictionary.")};return(0,a.shadow)(this,"empty",t)}},{key:"merge",value:function merge(t){var r=t.xref,i=t.dictArray,o=t.mergeSubDicts,a=void 0!==o&&o,c=new Dict(r);if(!a){var l,u=_createForOfIteratorHelper(i);try{for(u.s();!(l=u.n()).done;){var h=l.value;if(h instanceof Dict)for(var d=0,p=Object.entries(h._map);d<p.length;d++){var y=_slicedToArray(p[d],2),v=y[0],g=y[1];void 0===c._map[v]&&(c._map[v]=g)}}}catch(t){u.e(t)}finally{u.f()}return c.size>0?c:Dict.empty}var m,b=new Map,x=_createForOfIteratorHelper(i);try{for(x.s();!(m=x.n()).done;){var _=m.value;if(_ instanceof Dict)for(var w=0,C=Object.entries(_._map);w<C.length;w++){var k=_slicedToArray(C[w],2),S=k[0],P=k[1],T=b.get(S);if(void 0===T){T=[];b.set(S,T)}T.push(P)}}}catch(t){x.e(t)}finally{x.f()}var I,O=_createForOfIteratorHelper(b);try{for(O.s();!(I=O.n()).done;){var E=_slicedToArray(I.value,2),A=E[0],R=E[1];if(1!==R.length&&R[0]instanceof Dict){var B,D=new Dict(r),L=_createForOfIteratorHelper(R);try{for(L.s();!(B=L.n()).done;){var M=B.value;if(M instanceof Dict)for(var U=0,N=Object.entries(M._map);U<N.length;U++){var j=_slicedToArray(N[U],2),H=j[0],z=j[1];void 0===D._map[H]&&(D._map[H]=z)}}}catch(t){L.e(t)}finally{L.f()}D.size>0&&(c._map[A]=D)}else c._map[A]=R[0]}}catch(t){O.e(t)}finally{O.f()}b.clear();return c.size>0?c:Dict.empty}}]);var t;return Dict}();r.Dict=p;var y=function RefClosure(){var t=Object.create(null);return function(){function Ref(t,r){_classCallCheck(this,Ref);this.num=t;this.gen=r}_createClass(Ref,[{key:"toString",value:function toString(){return 0===this.gen?"".concat(this.num,"R"):"".concat(this.num,"R").concat(this.gen)}}],[{key:"get",value:function get(r,i){var o=0===i?"".concat(r,"R"):"".concat(r,"R").concat(i),a=t[o];return a||(t[o]=new Ref(r,i))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Ref}()}();r.Ref=y;var v=function(){function RefSet(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;_classCallCheck(this,RefSet);this._set=new Set(t&&t._set)}_createClass(RefSet,[{key:"has",value:function has(t){return this._set.has(t.toString())}},{key:"put",value:function put(t){this._set.add(t.toString())}},{key:"remove",value:function remove(t){this._set.delete(t.toString())}},{key:"forEach",value:function forEach(t){var r,i=_createForOfIteratorHelper(this._set.values());try{for(i.s();!(r=i.n()).done;){t(r.value)}}catch(t){i.e(t)}finally{i.f()}}},{key:"clear",value:function clear(){this._set.clear()}}]);return RefSet}();r.RefSet=v;var g=function(){function RefSetCache(){_classCallCheck(this,RefSetCache);this._map=new Map}_createClass(RefSetCache,[{key:"size",get:function get(){return this._map.size}},{key:"get",value:function get(t){return this._map.get(t.toString())}},{key:"has",value:function has(t){return this._map.has(t.toString())}},{key:"put",value:function put(t,r){this._map.set(t.toString(),r)}},{key:"putAlias",value:function putAlias(t,r){this._map.set(t.toString(),this.get(r))}},{key:"forEach",value:function forEach(t){var r,i=_createForOfIteratorHelper(this._map.values());try{for(i.s();!(r=i.n()).done;){t(r.value)}}catch(t){i.e(t)}finally{i.f()}}},{key:"clear",value:function clear(){this._map.clear()}}]);return RefSetCache}();r.RefSetCache=g;function isName(t,r){return t instanceof u&&(void 0===r||t.name===r)}},(t,r,i)=>{"use strict";t.exports=i(85)},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o=function(t){var r,i=Object.prototype,o=i.hasOwnProperty,a="function"==typeof Symbol?Symbol:{},c=a.iterator||"@@iterator",l=a.asyncIterator||"@@asyncIterator",u=a.toStringTag||"@@toStringTag";function define(t,r,i){Object.defineProperty(t,r,{value:i,enumerable:!0,configurable:!0,writable:!0});return t[r]}try{define({},"")}catch(t){define=function define(t,r,i){return t[r]=i}}function wrap(t,r,i,o){var a=r&&r.prototype instanceof Generator?r:Generator,c=Object.create(a.prototype),l=new Context(o||[]);c._invoke=function makeInvokeMethod(t,r,i){var o=h;return function invoke(a,c){if(o===p)throw new Error("Generator is already running");if(o===y){if("throw"===a)throw c;return doneResult()}i.method=a;i.arg=c;for(;;){var l=i.delegate;if(l){var u=maybeInvokeDelegate(l,i);if(u){if(u===v)continue;return u}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if(o===h){o=y;throw i.arg}i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);o=p;var g=tryCatch(t,r,i);if("normal"===g.type){o=i.done?y:d;if(g.arg===v)continue;return{value:g.arg,done:i.done}}if("throw"===g.type){o=y;i.method="throw";i.arg=g.arg}}}}(t,i,l);return c}t.wrap=wrap;function tryCatch(t,r,i){try{return{type:"normal",arg:t.call(r,i)}}catch(t){return{type:"throw",arg:t}}}var h="suspendedStart",d="suspendedYield",p="executing",y="completed",v={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}var g={};g[c]=function(){return this};var m=Object.getPrototypeOf,b=m&&m(m(values([])));b&&b!==i&&o.call(b,c)&&(g=b);var x=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(g);GeneratorFunction.prototype=x.constructor=GeneratorFunctionPrototype;GeneratorFunctionPrototype.constructor=GeneratorFunction;GeneratorFunction.displayName=define(GeneratorFunctionPrototype,u,"GeneratorFunction");function defineIteratorMethods(t){["next","throw","return"].forEach((function(r){define(t,r,(function(t){return this._invoke(r,t)}))}))}t.isGeneratorFunction=function(t){var r="function"==typeof t&&t.constructor;return!!r&&(r===GeneratorFunction||"GeneratorFunction"===(r.displayName||r.name))};t.mark=function(t){if(Object.setPrototypeOf)Object.setPrototypeOf(t,GeneratorFunctionPrototype);else{t.__proto__=GeneratorFunctionPrototype;define(t,u,"GeneratorFunction")}t.prototype=Object.create(x);return t};t.awrap=function(t){return{__await:t}};function AsyncIterator(t,r){function invoke(i,a,c,l){var u=tryCatch(t[i],t,a);if("throw"!==u.type){var h=u.arg,d=h.value;return d&&"object"===_typeof(d)&&o.call(d,"__await")?r.resolve(d.__await).then((function(t){invoke("next",t,c,l)}),(function(t){invoke("throw",t,c,l)})):r.resolve(d).then((function(t){h.value=t;c(h)}),(function(t){return invoke("throw",t,c,l)}))}l(u.arg)}var i;this._invoke=function enqueue(t,o){function callInvokeWithMethodAndArg(){return new r((function(r,i){invoke(t,o,r,i)}))}return i=i?i.then(callInvokeWithMethodAndArg,callInvokeWithMethodAndArg):callInvokeWithMethodAndArg()}}defineIteratorMethods(AsyncIterator.prototype);AsyncIterator.prototype[l]=function(){return this};t.AsyncIterator=AsyncIterator;t.async=function(r,i,o,a,c){void 0===c&&(c=Promise);var l=new AsyncIterator(wrap(r,i,o,a),c);return t.isGeneratorFunction(i)?l:l.next().then((function(t){return t.done?t.value:l.next()}))};function maybeInvokeDelegate(t,i){var o=t.iterator[i.method];if(o===r){i.delegate=null;if("throw"===i.method){if(t.iterator.return){i.method="return";i.arg=r;maybeInvokeDelegate(t,i);if("throw"===i.method)return v}i.method="throw";i.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var a=tryCatch(o,t.iterator,i.arg);if("throw"===a.type){i.method="throw";i.arg=a.arg;i.delegate=null;return v}var c=a.arg;if(!c){i.method="throw";i.arg=new TypeError("iterator result is not an object");i.delegate=null;return v}if(!c.done)return c;i[t.resultName]=c.value;i.next=t.nextLoc;if("return"!==i.method){i.method="next";i.arg=r}i.delegate=null;return v}defineIteratorMethods(x);define(x,u,"Generator");x[c]=function(){return this};x.toString=function(){return"[object Generator]"};function pushTryEntry(t){var r={tryLoc:t[0]};1 in t&&(r.catchLoc=t[1]);if(2 in t){r.finallyLoc=t[2];r.afterLoc=t[3]}this.tryEntries.push(r)}function resetTryEntry(t){var r=t.completion||{};r.type="normal";delete r.arg;t.completion=r}function Context(t){this.tryEntries=[{tryLoc:"root"}];t.forEach(pushTryEntry,this);this.reset(!0)}t.keys=function(t){var r=[];for(var i in t)r.push(i);r.reverse();return function next(){for(;r.length;){var i=r.pop();if(i in t){next.value=i;next.done=!1;return next}}next.done=!0;return next}};function values(t){if(t){var i=t[c];if(i)return i.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var a=-1,l=function next(){for(;++a<t.length;)if(o.call(t,a)){next.value=t[a];next.done=!1;return next}next.value=r;next.done=!0;return next};return l.next=l}}return{next:doneResult}}t.values=values;function doneResult(){return{value:r,done:!0}}Context.prototype={constructor:Context,reset:function reset(t){this.prev=0;this.next=0;this.sent=this._sent=r;this.done=!1;this.delegate=null;this.method="next";this.arg=r;this.tryEntries.forEach(resetTryEntry);if(!t)for(var i in this)"t"===i.charAt(0)&&o.call(this,i)&&!isNaN(+i.slice(1))&&(this[i]=r)},stop:function stop(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function dispatchException(t){if(this.done)throw t;var i=this;function handle(o,a){l.type="throw";l.arg=t;i.next=o;if(a){i.method="next";i.arg=r}return!!a}for(var a=this.tryEntries.length-1;a>=0;--a){var c=this.tryEntries[a],l=c.completion;if("root"===c.tryLoc)return handle("end");if(c.tryLoc<=this.prev){var u=o.call(c,"catchLoc"),h=o.call(c,"finallyLoc");if(u&&h){if(this.prev<c.catchLoc)return handle(c.catchLoc,!0);if(this.prev<c.finallyLoc)return handle(c.finallyLoc)}else if(u){if(this.prev<c.catchLoc)return handle(c.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return handle(c.finallyLoc)}}}},abrupt:function abrupt(t,r){for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i];if(a.tryLoc<=this.prev&&o.call(a,"finallyLoc")&&this.prev<a.finallyLoc){var c=a;break}}c&&("break"===t||"continue"===t)&&c.tryLoc<=r&&r<=c.finallyLoc&&(c=null);var l=c?c.completion:{};l.type=t;l.arg=r;if(c){this.method="next";this.next=c.finallyLoc;return v}return this.complete(l)},complete:function complete(t,r){if("throw"===t.type)throw t.arg;if("break"===t.type||"continue"===t.type)this.next=t.arg;else if("return"===t.type){this.rval=this.arg=t.arg;this.method="return";this.next="end"}else"normal"===t.type&&r&&(this.next=r);return v},finish:function finish(t){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.finallyLoc===t){this.complete(i.completion,i.afterLoc);resetTryEntry(i);return v}}},catch:function _catch(t){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc===t){var o=i.completion;if("throw"===o.type){var a=o.arg;resetTryEntry(i)}return a}}throw new Error("illegal catch attempt")},delegateYield:function delegateYield(t,i,o){this.delegate={iterator:values(t),resultName:i,nextLoc:o};"next"===this.method&&(this.arg=r);return v}};return t}("object"===_typeof(t=i.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){Function("r","regeneratorRuntime = r")(o)}},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.BaseStream=void 0;var o=i(1);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var a=function(){function BaseStream(){!function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}(this,BaseStream);this.constructor===BaseStream&&(0,o.unreachable)("Cannot initialize BaseStream.")}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(BaseStream,[{key:"length",get:function get(){(0,o.unreachable)("Abstract getter `length` accessed")}},{key:"isEmpty",get:function get(){(0,o.unreachable)("Abstract getter `isEmpty` accessed")}},{key:"isDataLoaded",get:function get(){return(0,o.shadow)(this,"isDataLoaded",!0)}},{key:"getByte",value:function getByte(){(0,o.unreachable)("Abstract method `getByte` called")}},{key:"getBytes",value:function getBytes(t){(0,o.unreachable)("Abstract method `getBytes` called")}},{key:"peekByte",value:function peekByte(){var t=this.getByte();-1!==t&&this.pos--;return t}},{key:"peekBytes",value:function peekBytes(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.getBytes(t,r);this.pos-=i.length;return i}},{key:"getUint16",value:function getUint16(){var t=this.getByte(),r=this.getByte();return-1===t||-1===r?-1:(t<<8)+r}},{key:"getInt32",value:function getInt32(){return(this.getByte()<<24)+(this.getByte()<<16)+(this.getByte()<<8)+this.getByte()}},{key:"getByteRange",value:function getByteRange(t,r){(0,o.unreachable)("Abstract method `getByteRange` called")}},{key:"getString",value:function getString(t){return(0,o.bytesToString)(this.getBytes(t,!1))}},{key:"skip",value:function skip(t){this.pos+=t||1}},{key:"reset",value:function reset(){(0,o.unreachable)("Abstract method `reset` called")}},{key:"moveStart",value:function moveStart(){(0,o.unreachable)("Abstract method `moveStart` called")}},{key:"makeSubStream",value:function makeSubStream(t,r){(0,o.unreachable)("Abstract method `makeSubStream` called")}},{key:"getBaseStreams",value:function getBaseStreams(){return null}}]);return BaseStream}();r.BaseStream=a},(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.ArithmeticDecoder=void 0;function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var i=[{qe:22017,nmps:1,nlps:1,switchFlag:1},{qe:13313,nmps:2,nlps:6,switchFlag:0},{qe:6145,nmps:3,nlps:9,switchFlag:0},{qe:2753,nmps:4,nlps:12,switchFlag:0},{qe:1313,nmps:5,nlps:29,switchFlag:0},{qe:545,nmps:38,nlps:33,switchFlag:0},{qe:22017,nmps:7,nlps:6,switchFlag:1},{qe:21505,nmps:8,nlps:14,switchFlag:0},{qe:18433,nmps:9,nlps:14,switchFlag:0},{qe:14337,nmps:10,nlps:14,switchFlag:0},{qe:12289,nmps:11,nlps:17,switchFlag:0},{qe:9217,nmps:12,nlps:18,switchFlag:0},{qe:7169,nmps:13,nlps:20,switchFlag:0},{qe:5633,nmps:29,nlps:21,switchFlag:0},{qe:22017,nmps:15,nlps:14,switchFlag:1},{qe:21505,nmps:16,nlps:14,switchFlag:0},{qe:20737,nmps:17,nlps:15,switchFlag:0},{qe:18433,nmps:18,nlps:16,switchFlag:0},{qe:14337,nmps:19,nlps:17,switchFlag:0},{qe:13313,nmps:20,nlps:18,switchFlag:0},{qe:12289,nmps:21,nlps:19,switchFlag:0},{qe:10241,nmps:22,nlps:19,switchFlag:0},{qe:9217,nmps:23,nlps:20,switchFlag:0},{qe:8705,nmps:24,nlps:21,switchFlag:0},{qe:7169,nmps:25,nlps:22,switchFlag:0},{qe:6145,nmps:26,nlps:23,switchFlag:0},{qe:5633,nmps:27,nlps:24,switchFlag:0},{qe:5121,nmps:28,nlps:25,switchFlag:0},{qe:4609,nmps:29,nlps:26,switchFlag:0},{qe:4353,nmps:30,nlps:27,switchFlag:0},{qe:2753,nmps:31,nlps:28,switchFlag:0},{qe:2497,nmps:32,nlps:29,switchFlag:0},{qe:2209,nmps:33,nlps:30,switchFlag:0},{qe:1313,nmps:34,nlps:31,switchFlag:0},{qe:1089,nmps:35,nlps:32,switchFlag:0},{qe:673,nmps:36,nlps:33,switchFlag:0},{qe:545,nmps:37,nlps:34,switchFlag:0},{qe:321,nmps:38,nlps:35,switchFlag:0},{qe:273,nmps:39,nlps:36,switchFlag:0},{qe:133,nmps:40,nlps:37,switchFlag:0},{qe:73,nmps:41,nlps:38,switchFlag:0},{qe:37,nmps:42,nlps:39,switchFlag:0},{qe:21,nmps:43,nlps:40,switchFlag:0},{qe:9,nmps:44,nlps:41,switchFlag:0},{qe:5,nmps:45,nlps:42,switchFlag:0},{qe:1,nmps:45,nlps:43,switchFlag:0},{qe:22017,nmps:46,nlps:46,switchFlag:0}],o=function(){function ArithmeticDecoder(t,r,i){!function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}(this,ArithmeticDecoder);this.data=t;this.bp=r;this.dataEnd=i;this.chigh=t[r];this.clow=0;this.byteIn();this.chigh=this.chigh<<7&65535|this.clow>>9&127;this.clow=this.clow<<7&65535;this.ct-=7;this.a=32768}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(ArithmeticDecoder,[{key:"byteIn",value:function byteIn(){var t=this.data,r=this.bp;if(255===t[r])if(t[r+1]>143){this.clow+=65280;this.ct=8}else{r++;this.clow+=t[r]<<9;this.ct=7;this.bp=r}else{r++;this.clow+=r<this.dataEnd?t[r]<<8:65280;this.ct=8;this.bp=r}if(this.clow>65535){this.chigh+=this.clow>>16;this.clow&=65535}}},{key:"readBit",value:function readBit(t,r){var o,a=t[r]>>1,c=1&t[r],l=i[a],u=l.qe,h=this.a-u;if(this.chigh<u)if(h<u){h=u;o=c;a=l.nmps}else{h=u;o=1^c;1===l.switchFlag&&(c=o);a=l.nlps}else{this.chigh-=u;if(0!=(32768&h)){this.a=h;return c}if(h<u){o=1^c;1===l.switchFlag&&(c=o);a=l.nlps}else{o=c;a=l.nmps}}do{0===this.ct&&this.byteIn();h<<=1;this.chigh=this.chigh<<1&65535|this.clow>>15&1;this.clow=this.clow<<1&65535;this.ct--}while(0==(32768&h));this.a=h;t[r]=a<<1|c;return o}}]);return ArithmeticDecoder}();r.ArithmeticDecoder=o},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.CCITTFaxDecoder=void 0;var o=i(1);function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var a=-1,c=[[-1,-1],[-1,-1],[7,8],[7,7],[6,6],[6,6],[6,5],[6,5],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[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],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2]],l=[[-1,-1],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[12,1984],[12,2048],[12,2112],[12,2176],[12,2240],[12,2304],[11,1856],[11,1856],[11,1920],[11,1920],[12,2368],[12,2432],[12,2496],[12,2560]],u=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[8,29],[8,29],[8,30],[8,30],[8,45],[8,45],[8,46],[8,46],[7,22],[7,22],[7,22],[7,22],[7,23],[7,23],[7,23],[7,23],[8,47],[8,47],[8,48],[8,48],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[7,20],[7,20],[7,20],[7,20],[8,33],[8,33],[8,34],[8,34],[8,35],[8,35],[8,36],[8,36],[8,37],[8,37],[8,38],[8,38],[7,19],[7,19],[7,19],[7,19],[8,31],[8,31],[8,32],[8,32],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[8,53],[8,53],[8,54],[8,54],[7,26],[7,26],[7,26],[7,26],[8,39],[8,39],[8,40],[8,40],[8,41],[8,41],[8,42],[8,42],[8,43],[8,43],[8,44],[8,44],[7,21],[7,21],[7,21],[7,21],[7,28],[7,28],[7,28],[7,28],[8,61],[8,61],[8,62],[8,62],[8,63],[8,63],[8,0],[8,0],[8,320],[8,320],[8,384],[8,384],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[7,27],[7,27],[7,27],[7,27],[8,59],[8,59],[8,60],[8,60],[9,1472],[9,1536],[9,1600],[9,1728],[7,18],[7,18],[7,18],[7,18],[7,24],[7,24],[7,24],[7,24],[8,49],[8,49],[8,50],[8,50],[8,51],[8,51],[8,52],[8,52],[7,25],[7,25],[7,25],[7,25],[8,55],[8,55],[8,56],[8,56],[8,57],[8,57],[8,58],[8,58],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[8,448],[8,448],[8,512],[8,512],[9,704],[9,768],[8,640],[8,640],[8,576],[8,576],[9,832],[9,896],[9,960],[9,1024],[9,1088],[9,1152],[9,1216],[9,1280],[9,1344],[9,1408],[7,256],[7,256],[7,256],[7,256],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[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],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7]],h=[[-1,-1],[-1,-1],[12,-2],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[11,1792],[11,1792],[12,1984],[12,1984],[12,2048],[12,2048],[12,2112],[12,2112],[12,2176],[12,2176],[12,2240],[12,2240],[12,2304],[12,2304],[11,1856],[11,1856],[11,1856],[11,1856],[11,1920],[11,1920],[11,1920],[11,1920],[12,2368],[12,2368],[12,2432],[12,2432],[12,2496],[12,2496],[12,2560],[12,2560],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[12,52],[12,52],[13,640],[13,704],[13,768],[13,832],[12,55],[12,55],[12,56],[12,56],[13,1280],[13,1344],[13,1408],[13,1472],[12,59],[12,59],[12,60],[12,60],[13,1536],[13,1600],[11,24],[11,24],[11,24],[11,24],[11,25],[11,25],[11,25],[11,25],[13,1664],[13,1728],[12,320],[12,320],[12,384],[12,384],[12,448],[12,448],[13,512],[13,576],[12,53],[12,53],[12,54],[12,54],[13,896],[13,960],[13,1024],[13,1088],[13,1152],[13,1216],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64]],d=[[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[11,23],[11,23],[12,50],[12,51],[12,44],[12,45],[12,46],[12,47],[12,57],[12,58],[12,61],[12,256],[10,16],[10,16],[10,16],[10,16],[10,17],[10,17],[10,17],[10,17],[12,48],[12,49],[12,62],[12,63],[12,30],[12,31],[12,32],[12,33],[12,40],[12,41],[11,22],[11,22],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[12,128],[12,192],[12,26],[12,27],[12,28],[12,29],[11,19],[11,19],[11,20],[11,20],[12,34],[12,35],[12,36],[12,37],[12,38],[12,39],[11,21],[11,21],[12,42],[12,43],[10,0],[10,0],[10,0],[10,0],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12]],p=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[6,9],[6,8],[5,7],[5,7],[4,6],[4,6],[4,6],[4,6],[4,5],[4,5],[4,5],[4,5],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[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,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]],y=function(){function CCITTFaxDecoder(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,CCITTFaxDecoder);if(!t||"function"!=typeof t.next)throw new Error('CCITTFaxDecoder - invalid "source" parameter.');this.source=t;this.eof=!1;this.encoding=r.K||0;this.eoline=r.EndOfLine||!1;this.byteAlign=r.EncodedByteAlign||!1;this.columns=r.Columns||1728;this.rows=r.Rows||0;var i,o=r.EndOfBlock;null==o&&(o=!0);this.eoblock=o;this.black=r.BlackIs1||!1;this.codingLine=new Uint32Array(this.columns+1);this.refLine=new Uint32Array(this.columns+2);this.codingLine[0]=this.columns;this.codingPos=0;this.row=0;this.nextLine2D=this.encoding<0;this.inputBits=0;this.inputBuf=0;this.outputBits=0;this.rowsDone=!1;for(;0===(i=this._lookBits(12));)this._eatBits(1);1===i&&this._eatBits(12);if(this.encoding>0){this.nextLine2D=!this._lookBits(1);this._eatBits(1)}}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(CCITTFaxDecoder,[{key:"readNextChar",value:function readNextChar(){if(this.eof)return-1;var t,r,i,c,l,u=this.refLine,h=this.codingLine,d=this.columns;if(0===this.outputBits){this.rowsDone&&(this.eof=!0);if(this.eof)return-1;this.err=!1;var p,y,v;if(this.nextLine2D){for(c=0;h[c]<d;++c)u[c]=h[c];u[c++]=d;u[c]=d;h[0]=0;this.codingPos=0;t=0;r=0;for(;h[this.codingPos]<d;)switch(p=this._getTwoDimCode()){case 0:this._addPixels(u[t+1],r);u[t+1]<d&&(t+=2);break;case 1:p=y=0;if(r){do{p+=v=this._getBlackCode()}while(v>=64);do{y+=v=this._getWhiteCode()}while(v>=64)}else{do{p+=v=this._getWhiteCode()}while(v>=64);do{y+=v=this._getBlackCode()}while(v>=64)}this._addPixels(h[this.codingPos]+p,r);h[this.codingPos]<d&&this._addPixels(h[this.codingPos]+y,1^r);for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2;break;case 7:this._addPixels(u[t]+3,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 5:this._addPixels(u[t]+2,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 3:this._addPixels(u[t]+1,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 2:this._addPixels(u[t],r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 8:this._addPixelsNeg(u[t]-3,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 6:this._addPixelsNeg(u[t]-2,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 4:this._addPixelsNeg(u[t]-1,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case a:this._addPixels(d,0);this.eof=!0;break;default:(0,o.info)("bad 2d code");this._addPixels(d,0);this.err=!0}}else{h[0]=0;this.codingPos=0;r=0;for(;h[this.codingPos]<d;){p=0;if(r)do{p+=v=this._getBlackCode()}while(v>=64);else do{p+=v=this._getWhiteCode()}while(v>=64);this._addPixels(h[this.codingPos]+p,r);r^=1}}var g=!1;this.byteAlign&&(this.inputBits&=-8);if(this.eoblock||this.row!==this.rows-1){p=this._lookBits(12);if(this.eoline)for(;p!==a&&1!==p;){this._eatBits(1);p=this._lookBits(12)}else for(;0===p;){this._eatBits(1);p=this._lookBits(12)}if(1===p){this._eatBits(12);g=!0}else p===a&&(this.eof=!0)}else this.rowsDone=!0;if(!this.eof&&this.encoding>0&&!this.rowsDone){this.nextLine2D=!this._lookBits(1);this._eatBits(1)}if(this.eoblock&&g&&this.byteAlign){if(1===(p=this._lookBits(12))){this._eatBits(12);if(this.encoding>0){this._lookBits(1);this._eatBits(1)}if(this.encoding>=0)for(c=0;c<4;++c){1!==(p=this._lookBits(12))&&(0,o.info)("bad rtc code: "+p);this._eatBits(12);if(this.encoding>0){this._lookBits(1);this._eatBits(1)}}this.eof=!0}}else if(this.err&&this.eoline){for(;;){if((p=this._lookBits(13))===a){this.eof=!0;return-1}if(p>>1==1)break;this._eatBits(1)}this._eatBits(12);if(this.encoding>0){this._eatBits(1);this.nextLine2D=!(1&p)}}h[0]>0?this.outputBits=h[this.codingPos=0]:this.outputBits=h[this.codingPos=1];this.row++}if(this.outputBits>=8){l=1&this.codingPos?0:255;this.outputBits-=8;if(0===this.outputBits&&h[this.codingPos]<d){this.codingPos++;this.outputBits=h[this.codingPos]-h[this.codingPos-1]}}else{i=8;l=0;do{if(this.outputBits>i){l<<=i;1&this.codingPos||(l|=255>>8-i);this.outputBits-=i;i=0}else{l<<=this.outputBits;1&this.codingPos||(l|=255>>8-this.outputBits);i-=this.outputBits;this.outputBits=0;if(h[this.codingPos]<d){this.codingPos++;this.outputBits=h[this.codingPos]-h[this.codingPos-1]}else if(i>0){l<<=i;i=0}}}while(i)}this.black&&(l^=255);return l}},{key:"_addPixels",value:function _addPixels(t,r){var i=this.codingLine,a=this.codingPos;if(t>i[a]){if(t>this.columns){(0,o.info)("row is wrong length");this.err=!0;t=this.columns}1&a^r&&++a;i[a]=t}this.codingPos=a}},{key:"_addPixelsNeg",value:function _addPixelsNeg(t,r){var i=this.codingLine,a=this.codingPos;if(t>i[a]){if(t>this.columns){(0,o.info)("row is wrong length");this.err=!0;t=this.columns}1&a^r&&++a;i[a]=t}else if(t<i[a]){if(t<0){(0,o.info)("invalid code");this.err=!0;t=0}for(;a>0&&t<i[a-1];)--a;i[a]=t}this.codingPos=a}},{key:"_findTableCode",value:function _findTableCode(t,r,i,o){for(var c=o||0,l=t;l<=r;++l){var u=this._lookBits(l);if(u===a)return[!0,1,!1];l<r&&(u<<=r-l);if(!c||u>=c){var h=i[u-c];if(h[0]===l){this._eatBits(l);return[!0,h[1],!0]}}}return[!1,0,!1]}},{key:"_getTwoDimCode",value:function _getTwoDimCode(){var t,r=0;if(this.eoblock){r=this._lookBits(7);if((t=c[r])&&t[0]>0){this._eatBits(t[0]);return t[1]}}else{var i=this._findTableCode(1,7,c);if(i[0]&&i[2])return i[1]}(0,o.info)("Bad two dim code");return a}},{key:"_getWhiteCode",value:function _getWhiteCode(){var t,r=0;if(this.eoblock){if((r=this._lookBits(12))===a)return 1;if((t=r>>5==0?l[r]:u[r>>3])[0]>0){this._eatBits(t[0]);return t[1]}}else{var i=this._findTableCode(1,9,u);if(i[0])return i[1];if((i=this._findTableCode(11,12,l))[0])return i[1]}(0,o.info)("bad white code");this._eatBits(1);return 1}},{key:"_getBlackCode",value:function _getBlackCode(){var t,r;if(this.eoblock){if((t=this._lookBits(13))===a)return 1;if((r=t>>7==0?h[t]:t>>9==0&&t>>7!=0?d[(t>>1)-64]:p[t>>7])[0]>0){this._eatBits(r[0]);return r[1]}}else{var i=this._findTableCode(2,6,p);if(i[0])return i[1];if((i=this._findTableCode(7,12,d,64))[0])return i[1];if((i=this._findTableCode(10,13,h))[0])return i[1]}(0,o.info)("bad black code");this._eatBits(1);return 1}},{key:"_lookBits",value:function _lookBits(t){for(var r;this.inputBits<t;){if(-1===(r=this.source.next()))return 0===this.inputBits?a:this.inputBuf<<t-this.inputBits&65535>>16-t;this.inputBuf=this.inputBuf<<8|r;this.inputBits+=8}return this.inputBuf>>this.inputBits-t&65535>>16-t}},{key:"_eatBits",value:function _eatBits(t){(this.inputBits-=t)<0&&(this.inputBits=0)}}]);return CCITTFaxDecoder}();r.CCITTFaxDecoder=y},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.JpegImage=void 0;var o=i(1),a=i(82);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var c=function(t){_inherits(JpegError,t);var r=_createSuper(JpegError);function JpegError(t){_classCallCheck(this,JpegError);return r.call(this,"JPEG error: ".concat(t))}return JpegError}(o.BaseException),l=function(t){_inherits(DNLMarkerError,t);var r=_createSuper(DNLMarkerError);function DNLMarkerError(t,i){var o;_classCallCheck(this,DNLMarkerError);(o=r.call(this,t)).scanLines=i;return o}return DNLMarkerError}(o.BaseException),u=function(t){_inherits(EOIMarkerError,t);var r=_createSuper(EOIMarkerError);function EOIMarkerError(){_classCallCheck(this,EOIMarkerError);return r.apply(this,arguments)}return EOIMarkerError}(o.BaseException),h=new Uint8Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),d=4017,p=799,y=3406,v=2276,g=1567,m=3784,b=5793,x=2896;function buildHuffmanTable(t,r){for(var i,o,a=0,c=16;c>0&&!t[c-1];)c--;var l,u=[{children:[],index:0}],h=u[0];for(i=0;i<c;i++){for(o=0;o<t[i];o++){(h=u.pop()).children[h.index]=r[a];for(;h.index>0;)h=u.pop();h.index++;u.push(h);for(;u.length<=i;){u.push(l={children:[],index:0});h.children[h.index]=l.children;h=l}a++}if(i+1<c){u.push(l={children:[],index:0});h.children[h.index]=l.children;h=l}}return u[0].children}function getBlockBufferOffset(t,r,i){return 64*((t.blocksPerLine+1)*r+i)}function decodeScan(t,r,i,d,p,y,v,g,m){var b=arguments.length>9&&void 0!==arguments[9]&&arguments[9],x=i.mcusPerLine,_=i.progressive,w=r,C=0,k=0;function readBit(){if(k>0){k--;return C>>k&1}if(255===(C=t[r++])){var o=t[r++];if(o){if(220===o&&b){r+=2;var h=(0,a.readUint16)(t,r);r+=2;if(h>0&&h!==i.scanLines)throw new l("Found DNL marker (0xFFDC) while parsing scan data",h)}else if(217===o){if(b){var d=I*(8===i.precision?8:0);if(d>0&&Math.round(i.scanLines/d)>=10)throw new l("Found EOI marker (0xFFD9) while parsing scan data, possibly caused by incorrect `scanLines` parameter",d)}throw new u("Found EOI marker (0xFFD9) while parsing scan data")}throw new c("unexpected marker ".concat((C<<8|o).toString(16)))}}k=7;return C>>>7}function decodeHuffman(t){for(var r=t;;){switch(_typeof(r=r[readBit()])){case"number":return r;case"object":continue}throw new c("invalid huffman sequence")}}function receive(t){for(var r=0;t>0;){r=r<<1|readBit();t--}return r}function receiveAndExtend(t){if(1===t)return 1===readBit()?1:-1;var r=receive(t);return r>=1<<t-1?r:r+(-1<<t)+1}function decodeBaseline(t,r){var i=decodeHuffman(t.huffmanTableDC),o=0===i?0:receiveAndExtend(i);t.blockData[r]=t.pred+=o;for(var a=1;a<64;){var c=decodeHuffman(t.huffmanTableAC),l=15&c,u=c>>4;if(0!==l){var d=h[a+=u];t.blockData[r+d]=receiveAndExtend(l);a++}else{if(u<15)break;a+=16}}}function decodeDCFirst(t,r){var i=decodeHuffman(t.huffmanTableDC),o=0===i?0:receiveAndExtend(i)<<m;t.blockData[r]=t.pred+=o}function decodeDCSuccessive(t,r){t.blockData[r]|=readBit()<<m}var S=0;function decodeACFirst(t,r){if(S>0)S--;else for(var i=y,o=v;i<=o;){var a=decodeHuffman(t.huffmanTableAC),c=15&a,l=a>>4;if(0!==c){var u=h[i+=l];t.blockData[r+u]=receiveAndExtend(c)*(1<<m);i++}else{if(l<15){S=receive(l)+(1<<l)-1;break}i+=16}}}var P,T=0;function decodeACSuccessive(t,r){for(var i,o,a=y,l=v,u=0;a<=l;){var d=r+h[a],p=t.blockData[d]<0?-1:1;switch(T){case 0:u=(o=decodeHuffman(t.huffmanTableAC))>>4;if(0===(i=15&o))if(u<15){S=receive(u)+(1<<u);T=4}else{u=16;T=1}else{if(1!==i)throw new c("invalid ACn encoding");P=receiveAndExtend(i);T=u?2:3}continue;case 1:case 2:t.blockData[d]?t.blockData[d]+=p*(readBit()<<m):0===--u&&(T=2===T?3:0);break;case 3:if(t.blockData[d])t.blockData[d]+=p*(readBit()<<m);else{t.blockData[d]=P<<m;T=0}break;case 4:t.blockData[d]&&(t.blockData[d]+=p*(readBit()<<m))}a++}4===T&&0===--S&&(T=0)}var I=0;function decodeMcu(t,r,i,o,a){var c=i%x;I=(i/x|0)*t.v+o;var l=c*t.h+a;r(t,getBlockBufferOffset(t,I,l))}function decodeBlock(t,r,i){I=i/t.blocksPerLine|0;var o=i%t.blocksPerLine;r(t,getBlockBufferOffset(t,I,o))}var O,E,A,R,B,D,L=d.length;D=_?0===y?0===g?decodeDCFirst:decodeDCSuccessive:0===g?decodeACFirst:decodeACSuccessive:decodeBaseline;var M,U,N,j,H=0;U=1===L?d[0].blocksPerLine*d[0].blocksPerColumn:x*i.mcusPerColumn;for(;H<=U;){var z=p?Math.min(U-H,p):U;if(z>0){for(E=0;E<L;E++)d[E].pred=0;S=0;if(1===L){O=d[0];for(B=0;B<z;B++){decodeBlock(O,D,H);H++}}else for(B=0;B<z;B++){for(E=0;E<L;E++){N=(O=d[E]).h;j=O.v;for(A=0;A<j;A++)for(R=0;R<N;R++)decodeMcu(O,D,H,A,R)}H++}}k=0;if(!(M=findNextFileMarker(t,r)))break;if(M.invalid){var X=z>0?"unexpected":"excessive";(0,o.warn)("decodeScan - ".concat(X," MCU data, current marker is: ").concat(M.invalid));r=M.offset}if(!(M.marker>=65488&&M.marker<=65495))break;r+=2}return r-w}function quantizeAndInverse(t,r,i){var o,a,l,u,h,_,w,C,k,S,P,T,I,O,E,A,R,B=t.quantizationTable,D=t.blockData;if(!B)throw new c("missing required Quantization Table.");for(var L=0;L<64;L+=8){k=D[r+L];S=D[r+L+1];P=D[r+L+2];T=D[r+L+3];I=D[r+L+4];O=D[r+L+5];E=D[r+L+6];A=D[r+L+7];k*=B[L];if(0!=(S|P|T|I|O|E|A)){S*=B[L+1];P*=B[L+2];T*=B[L+3];I*=B[L+4];O*=B[L+5];E*=B[L+6];A*=B[L+7];a=(o=(o=b*k+128>>8)+(a=b*I+128>>8)+1>>1)-a;R=(l=P)*m+(u=E)*g+128>>8;l=l*g-u*m+128>>8;w=(h=(h=x*(S-A)+128>>8)+(w=O<<4)+1>>1)-w;_=(C=(C=x*(S+A)+128>>8)+(_=T<<4)+1>>1)-_;u=(o=o+(u=R)+1>>1)-u;l=(a=a+l+1>>1)-l;R=h*v+C*y+2048>>12;h=h*y-C*v+2048>>12;C=R;R=_*p+w*d+2048>>12;_=_*d-w*p+2048>>12;w=R;i[L]=o+C;i[L+7]=o-C;i[L+1]=a+w;i[L+6]=a-w;i[L+2]=l+_;i[L+5]=l-_;i[L+3]=u+h;i[L+4]=u-h}else{R=b*k+512>>10;i[L]=R;i[L+1]=R;i[L+2]=R;i[L+3]=R;i[L+4]=R;i[L+5]=R;i[L+6]=R;i[L+7]=R}}for(var M=0;M<8;++M){k=i[M];if(0!=((S=i[M+8])|(P=i[M+16])|(T=i[M+24])|(I=i[M+32])|(O=i[M+40])|(E=i[M+48])|(A=i[M+56]))){a=(o=4112+((o=b*k+2048>>12)+(a=b*I+2048>>12)+1>>1))-a;R=(l=P)*m+(u=E)*g+2048>>12;l=l*g-u*m+2048>>12;u=R;w=(h=(h=x*(S-A)+2048>>12)+(w=O)+1>>1)-w;_=(C=(C=x*(S+A)+2048>>12)+(_=T)+1>>1)-_;R=h*v+C*y+2048>>12;h=h*y-C*v+2048>>12;C=R;R=_*p+w*d+2048>>12;_=_*d-w*p+2048>>12;(k=(o=o+u+1>>1)+C)<16?k=0:k>=4080?k=255:k>>=4;(S=(a=a+l+1>>1)+(w=R))<16?S=0:S>=4080?S=255:S>>=4;(P=(l=a-l)+_)<16?P=0:P>=4080?P=255:P>>=4;(T=(u=o-u)+h)<16?T=0:T>=4080?T=255:T>>=4;(I=u-h)<16?I=0:I>=4080?I=255:I>>=4;(O=l-_)<16?O=0:O>=4080?O=255:O>>=4;(E=a-w)<16?E=0:E>=4080?E=255:E>>=4;(A=o-C)<16?A=0:A>=4080?A=255:A>>=4;D[r+M]=k;D[r+M+8]=S;D[r+M+16]=P;D[r+M+24]=T;D[r+M+32]=I;D[r+M+40]=O;D[r+M+48]=E;D[r+M+56]=A}else{R=(R=b*k+8192>>14)<-2040?0:R>=2024?255:R+2056>>4;D[r+M]=R;D[r+M+8]=R;D[r+M+16]=R;D[r+M+24]=R;D[r+M+32]=R;D[r+M+40]=R;D[r+M+48]=R;D[r+M+56]=R}}}function buildComponentData(t,r){for(var i=r.blocksPerLine,o=r.blocksPerColumn,a=new Int16Array(64),c=0;c<o;c++)for(var l=0;l<i;l++){quantizeAndInverse(r,getBlockBufferOffset(r,c,l),a)}return r.blockData}function findNextFileMarker(t,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:r,o=t.length-1,c=i<r?i:r;if(r>=o)return null;var l=(0,a.readUint16)(t,r);if(l>=65472&&l<=65534)return{invalid:null,marker:l,offset:r};for(var u=(0,a.readUint16)(t,c);!(u>=65472&&u<=65534);){if(++c>=o)return null;u=(0,a.readUint16)(t,c)}return{invalid:l.toString(16),marker:u,offset:c}}var _=function(){function JpegImage(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=t.decodeTransform,i=void 0===r?null:r,o=t.colorTransform,a=void 0===o?-1:o;_classCallCheck(this,JpegImage);this._decodeTransform=i;this._colorTransform=a}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(JpegImage,[{key:"parse",value:function parse(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=r.dnlScanLines,d=void 0===i?null:i;function readDataBlock(){var r=(0,a.readUint16)(t,v),i=(v+=2)+r-2,c=findNextFileMarker(t,i,v);if(c&&c.invalid){(0,o.warn)("readDataBlock - incorrect length, current marker is: "+c.invalid);i=c.offset}var l=t.subarray(v,i);v+=l.length;return l}function prepareComponents(t){for(var r=Math.ceil(t.samplesPerLine/8/t.maxH),i=Math.ceil(t.scanLines/8/t.maxV),o=0,a=t.components.length;o<a;o++){var c=t.components[o],l=Math.ceil(Math.ceil(t.samplesPerLine/8)*c.h/t.maxH),u=Math.ceil(Math.ceil(t.scanLines/8)*c.v/t.maxV),h=r*c.h,d=64*(i*c.v)*(h+1);c.blockData=new Int16Array(d);c.blocksPerLine=l;c.blocksPerColumn=u}t.mcusPerLine=r;t.mcusPerColumn=i}var p,y,v=0,g=null,m=null,b=0,x=[],_=[],w=[],C=(0,a.readUint16)(t,v);v+=2;if(65496!==C)throw new c("SOI not found");C=(0,a.readUint16)(t,v);v+=2;e:for(;65497!==C;){var k=void 0,S=void 0,P=void 0;switch(C){case 65504:case 65505:case 65506:case 65507:case 65508:case 65509:case 65510:case 65511:case 65512:case 65513:case 65514:case 65515:case 65516:case 65517:case 65518:case 65519:case 65534:var T=readDataBlock();65504===C&&74===T[0]&&70===T[1]&&73===T[2]&&70===T[3]&&0===T[4]&&(g={version:{major:T[5],minor:T[6]},densityUnits:T[7],xDensity:T[8]<<8|T[9],yDensity:T[10]<<8|T[11],thumbWidth:T[12],thumbHeight:T[13],thumbData:T.subarray(14,14+3*T[12]*T[13])});65518===C&&65===T[0]&&100===T[1]&&111===T[2]&&98===T[3]&&101===T[4]&&(m={version:T[5]<<8|T[6],flags0:T[7]<<8|T[8],flags1:T[9]<<8|T[10],transformCode:T[11]});break;case 65499:for(var I=(0,a.readUint16)(t,v),O=I+(v+=2)-2;v<O;){var E=t[v++],A=new Uint16Array(64);if(E>>4==0)for(S=0;S<64;S++)A[h[S]]=t[v++];else{if(E>>4!=1)throw new c("DQT - invalid table spec");for(S=0;S<64;S++){A[h[S]]=(0,a.readUint16)(t,v);v+=2}}x[15&E]=A}break;case 65472:case 65473:case 65474:if(p)throw new c("Only single frame JPEGs supported");v+=2;(p={}).extended=65473===C;p.progressive=65474===C;p.precision=t[v++];var R=(0,a.readUint16)(t,v);v+=2;p.scanLines=d||R;p.samplesPerLine=(0,a.readUint16)(t,v);v+=2;p.components=[];p.componentIds={};var B=t[v++],D=0,L=0;for(k=0;k<B;k++){var M=t[v],U=t[v+1]>>4,N=15&t[v+1];D<U&&(D=U);L<N&&(L=N);var j=t[v+2];P=p.components.push({h:U,v:N,quantizationId:j,quantizationTable:null});p.componentIds[M]=P-1;v+=3}p.maxH=D;p.maxV=L;prepareComponents(p);break;case 65476:var H=(0,a.readUint16)(t,v);v+=2;for(k=2;k<H;){var z=t[v++],X=new Uint8Array(16),G=0;for(S=0;S<16;S++,v++)G+=X[S]=t[v];var Y=new Uint8Array(G);for(S=0;S<G;S++,v++)Y[S]=t[v];k+=17+G;(z>>4==0?w:_)[15&z]=buildHuffmanTable(X,Y)}break;case 65501:v+=2;y=(0,a.readUint16)(t,v);v+=2;break;case 65498:var q=1==++b&&!d;v+=2;var J=t[v++],W=[];for(k=0;k<J;k++){var V=t[v++],K=p.componentIds[V],Q=p.components[K];Q.index=V;var Z=t[v++];Q.huffmanTableDC=w[Z>>4];Q.huffmanTableAC=_[15&Z];W.push(Q)}var $=t[v++],ee=t[v++],te=t[v++];try{var re=decodeScan(t,v,p,W,y,$,ee,te>>4,15&te,q);v+=re}catch(r){if(r instanceof l){(0,o.warn)("".concat(r.message," -- attempting to re-parse the JPEG image."));return this.parse(t,{dnlScanLines:r.scanLines})}if(r instanceof u){(0,o.warn)("".concat(r.message," -- ignoring the rest of the image data."));break e}throw r}break;case 65500:v+=4;break;case 65535:255!==t[v]&&v--;break;default:var ne=findNextFileMarker(t,v-2,v-3);if(ne&&ne.invalid){(0,o.warn)("JpegImage.parse - unexpected data, current marker is: "+ne.invalid);v=ne.offset;break}if(!ne||v>=t.length-1){(0,o.warn)("JpegImage.parse - reached the end of the image data without finding an EOI marker (0xFFD9).");break e}throw new c("JpegImage.parse - unknown marker: "+C.toString(16))}C=(0,a.readUint16)(t,v);v+=2}this.width=p.samplesPerLine;this.height=p.scanLines;this.jfif=g;this.adobe=m;this.components=[];for(var ie=0,oe=p.components.length;ie<oe;ie++){var ae=p.components[ie],se=x[ae.quantizationId];se&&(ae.quantizationTable=se);this.components.push({index:ae.index,output:buildComponentData(0,ae),scaleX:ae.h/p.maxH,scaleY:ae.v/p.maxV,blocksPerLine:ae.blocksPerLine,blocksPerColumn:ae.blocksPerColumn})}this.numComponents=this.components.length}},{key:"_getLinearizedBlockData",value:function _getLinearizedBlockData(t,r){var i,o,a,c,l,u,h,d,p,y,v,g,m=arguments.length>2&&void 0!==arguments[2]&&arguments[2],b=this.width/t,x=this.height/r,_=0,w=this.components.length,C=t*r*w,k=new Uint8ClampedArray(C),S=new Uint32Array(t),P=4294967288;for(h=0;h<w;h++){o=(i=this.components[h]).scaleX*b;a=i.scaleY*x;_=h;v=i.output;c=i.blocksPerLine+1<<3;if(o!==g){for(l=0;l<t;l++){d=0|l*o;S[l]=(d&P)<<3|7&d}g=o}for(u=0;u<r;u++){y=c*((d=0|u*a)&P)|(7&d)<<3;for(l=0;l<t;l++){k[_]=v[y+S[l]];_+=w}}}var T=this._decodeTransform;m||4!==w||T||(T=new Int32Array([-256,255,-256,255,-256,255,-256,255]));if(T)for(h=0;h<C;)for(d=0,p=0;d<w;d++,h++,p+=2)k[h]=(k[h]*T[p]>>8)+T[p+1];return k}},{key:"_isColorConversionNeeded",get:function get(){return this.adobe?!!this.adobe.transformCode:3===this.numComponents?0!==this._colorTransform&&(82!==this.components[0].index||71!==this.components[1].index||66!==this.components[2].index):1===this._colorTransform}},{key:"_convertYccToRgb",value:function _convertYccToRgb(t){for(var r,i,o,a=0,c=t.length;a<c;a+=3){r=t[a];i=t[a+1];o=t[a+2];t[a]=r-179.456+1.402*o;t[a+1]=r+135.459-.344*i-.714*o;t[a+2]=r-226.816+1.772*i}return t}},{key:"_convertYcckToRgb",value:function _convertYcckToRgb(t){for(var r,i,o,a,c=0,l=0,u=t.length;l<u;l+=4){r=t[l];i=t[l+1];o=t[l+2];a=t[l+3];t[c++]=i*(-660635669420364e-19*i+.000437130475926232*o-54080610064599e-18*r+.00048449797120281*a-.154362151871126)-122.67195406894+o*(-.000957964378445773*o+.000817076911346625*r-.00477271405408747*a+1.53380253221734)+r*(.000961250184130688*r-.00266257332283933*a+.48357088451265)+a*(-.000336197177618394*a+.484791561490776);t[c++]=107.268039397724+i*(219927104525741e-19*i-.000640992018297945*o+.000659397001245577*r+.000426105652938837*a-.176491792462875)+o*(-.000778269941513683*o+.00130872261408275*r+.000770482631801132*a-.151051492775562)+r*(.00126935368114843*r-.00265090189010898*a+.25802910206845)+a*(-.000318913117588328*a-.213742400323665);t[c++]=i*(-.000570115196973677*i-263409051004589e-19*o+.0020741088115012*r-.00288260236853442*a+.814272968359295)-20.810012546947+o*(-153496057440975e-19*o-.000132689043961446*r+.000560833691242812*a-.195152027534049)+r*(.00174418132927582*r-.00255243321439347*a+.116935020465145)+a*(-.000343531996510555*a+.24165260232407)}return t.subarray(0,c)}},{key:"_convertYcckToCmyk",value:function _convertYcckToCmyk(t){for(var r,i,o,a=0,c=t.length;a<c;a+=4){r=t[a];i=t[a+1];o=t[a+2];t[a]=434.456-r-1.402*o;t[a+1]=119.541-r+.344*i+.714*o;t[a+2]=481.816-r-1.772*i}return t}},{key:"_convertCmykToRgb",value:function _convertCmykToRgb(t){for(var r,i,o,a,c=0,l=0,u=t.length;l<u;l+=4){r=t[l];i=t[l+1];o=t[l+2];a=t[l+3];t[c++]=255+r*(-6747147073602441e-20*r+.0008379262121013727*i+.0002894718188643294*o+.003264231057537806*a-1.1185611867203937)+i*(26374107616089405e-21*i-8626949158638572e-20*o-.0002748769067499491*a-.02155688794978967)+o*(-3878099212869363e-20*o-.0003267808279485286*a+.0686742238595345)-a*(.0003361971776183937*a+.7430659151342254);t[c++]=255+r*(.00013596372813588848*r+.000924537132573585*i+.00010567359618683593*o+.0004791864687436512*a-.3109689587515875)+i*(-.00023545346108370344*i+.0002702845253534714*o+.0020200308977307156*a-.7488052167015494)+o*(6834815998235662e-20*o+.00015168452363460973*a-.09751927774728933)-a*(.0003189131175883281*a+.7364883807733168);t[c++]=255+r*(13598650411385307e-21*r+.00012423956175490851*i+.0004751985097583589*o-36729317476630422e-22*a-.05562186980264034)+i*(.00016141380598724676*i+.0009692239130725186*o+.0007782692450036253*a-.44015232367526463)+o*(5.068882914068769e-7*o+.0017778369011375071*a-.7591454649749609)-a*(.0003435319965105553*a+.7063770186160144)}return t.subarray(0,c)}},{key:"getData",value:function getData(t){var r=t.width,i=t.height,o=t.forceRGB,a=void 0!==o&&o,l=t.isSourcePDF,u=void 0!==l&&l;if(this.numComponents>4)throw new c("Unsupported color mode");var h=this._getLinearizedBlockData(r,i,u);if(1===this.numComponents&&a){for(var d=h.length,p=new Uint8ClampedArray(3*d),y=0,v=0;v<d;v++){var g=h[v];p[y++]=g;p[y++]=g;p[y++]=g}return p}if(3===this.numComponents&&this._isColorConversionNeeded)return this._convertYccToRgb(h);if(4===this.numComponents){if(this._isColorConversionNeeded)return a?this._convertYcckToRgb(h):this._convertYcckToCmyk(h);if(a)return this._convertCmykToRgb(h)}return h}}]);return JpegImage}();r.JpegImage=_},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.JpxImage=void 0;var o=i(1),a=i(82),c=i(87);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var l=function(t){_inherits(JpxError,t);var r=_createSuper(JpxError);function JpxError(t){_classCallCheck(this,JpxError);return r.call(this,"JPX error: ".concat(t))}return JpxError}(o.BaseException),u={LL:0,LH:1,HL:1,HH:2},h=function(){function JpxImage(){_classCallCheck(this,JpxImage);this.failOnCorruptedImage=!1}_createClass(JpxImage,[{key:"parse",value:function parse(t){if(65359!==(0,a.readUint16)(t,0))for(var r=t.length,i=0;i<r;){var c=8,u=(0,a.readUint32)(t,i),h=(0,a.readUint32)(t,i+4);i+=c;if(1===u){u=4294967296*(0,a.readUint32)(t,i)+(0,a.readUint32)(t,i+4);i+=8;c+=8}0===u&&(u=r-i+c);if(u<c)throw new l("Invalid box field size");var d=u-c,p=!0;switch(h){case 1785737832:p=!1;break;case 1668246642:var y=t[i];if(1===y){var v=(0,a.readUint32)(t,i+3);switch(v){case 16:case 17:case 18:break;default:(0,o.warn)("Unknown colorspace "+v)}}else 2===y&&(0,o.info)("ICC profile not supported");break;case 1785737827:this.parseCodestream(t,i,i+d);break;case 1783636e3:218793738!==(0,a.readUint32)(t,i)&&(0,o.warn)("Invalid JP2 signature");break;case 1783634458:case 1718909296:case 1920099697:case 1919251232:case 1768449138:break;default:var g=String.fromCharCode(h>>24&255,h>>16&255,h>>8&255,255&h);(0,o.warn)("Unsupported header type ".concat(h," (").concat(g,")."))}p&&(i+=d)}else this.parseCodestream(t,0,t.length)}},{key:"parseImageProperties",value:function parseImageProperties(t){for(var r=t.getByte();r>=0;){if(65361===(r<<8|(r=t.getByte()))){t.skip(4);var i=t.getInt32()>>>0,o=t.getInt32()>>>0,a=t.getInt32()>>>0,c=t.getInt32()>>>0;t.skip(16);var u=t.getUint16();this.width=i-a;this.height=o-c;this.componentsCount=u;this.bitsPerComponent=8;return}}throw new l("No size marker found in JPX stream")}},{key:"parseCodestream",value:function parseCodestream(t,r,i){var c={},u=!1;try{for(var h=r;h+1<i;){var d=(0,a.readUint16)(t,h);h+=2;var p=0,y=void 0,v=void 0,g=void 0,m=void 0,b=void 0,x=void 0;switch(d){case 65359:c.mainHeader=!0;break;case 65497:break;case 65361:p=(0,a.readUint16)(t,h);var _={};_.Xsiz=(0,a.readUint32)(t,h+4);_.Ysiz=(0,a.readUint32)(t,h+8);_.XOsiz=(0,a.readUint32)(t,h+12);_.YOsiz=(0,a.readUint32)(t,h+16);_.XTsiz=(0,a.readUint32)(t,h+20);_.YTsiz=(0,a.readUint32)(t,h+24);_.XTOsiz=(0,a.readUint32)(t,h+28);_.YTOsiz=(0,a.readUint32)(t,h+32);var w=(0,a.readUint16)(t,h+36);_.Csiz=w;var C=[];y=h+38;for(var k=0;k<w;k++){var S={precision:1+(127&t[y]),isSigned:!!(128&t[y]),XRsiz:t[y+1],YRsiz:t[y+2]};y+=3;calculateComponentDimensions(S,_);C.push(S)}c.SIZ=_;c.components=C;calculateTileGrids(c,C);c.QCC=[];c.COC=[];break;case 65372:p=(0,a.readUint16)(t,h);var P={};y=h+2;switch(31&(v=t[y++])){case 0:m=8;b=!0;break;case 1:m=16;b=!1;break;case 2:m=16;b=!0;break;default:throw new Error("Invalid SQcd value "+v)}P.noQuantization=8===m;P.scalarExpounded=b;P.guardBits=v>>5;g=[];for(;y<p+h;){var T={};if(8===m){T.epsilon=t[y++]>>3;T.mu=0}else{T.epsilon=t[y]>>3;T.mu=(7&t[y])<<8|t[y+1];y+=2}g.push(T)}P.SPqcds=g;if(c.mainHeader)c.QCD=P;else{c.currentTile.QCD=P;c.currentTile.QCC=[]}break;case 65373:p=(0,a.readUint16)(t,h);var I={};y=h+2;var O=void 0;if(c.SIZ.Csiz<257)O=t[y++];else{O=(0,a.readUint16)(t,y);y+=2}switch(31&(v=t[y++])){case 0:m=8;b=!0;break;case 1:m=16;b=!1;break;case 2:m=16;b=!0;break;default:throw new Error("Invalid SQcd value "+v)}I.noQuantization=8===m;I.scalarExpounded=b;I.guardBits=v>>5;g=[];for(;y<p+h;){var E={};if(8===m){E.epsilon=t[y++]>>3;E.mu=0}else{E.epsilon=t[y]>>3;E.mu=(7&t[y])<<8|t[y+1];y+=2}g.push(E)}I.SPqcds=g;c.mainHeader?c.QCC[O]=I:c.currentTile.QCC[O]=I;break;case 65362:p=(0,a.readUint16)(t,h);var A={};y=h+2;var R=t[y++];A.entropyCoderWithCustomPrecincts=!!(1&R);A.sopMarkerUsed=!!(2&R);A.ephMarkerUsed=!!(4&R);A.progressionOrder=t[y++];A.layersCount=(0,a.readUint16)(t,y);y+=2;A.multipleComponentTransform=t[y++];A.decompositionLevelsCount=t[y++];A.xcb=2+(15&t[y++]);A.ycb=2+(15&t[y++]);var B=t[y++];A.selectiveArithmeticCodingBypass=!!(1&B);A.resetContextProbabilities=!!(2&B);A.terminationOnEachCodingPass=!!(4&B);A.verticallyStripe=!!(8&B);A.predictableTermination=!!(16&B);A.segmentationSymbolUsed=!!(32&B);A.reversibleTransformation=t[y++];if(A.entropyCoderWithCustomPrecincts){for(var D=[];y<p+h;){var L=t[y++];D.push({PPx:15&L,PPy:L>>4})}A.precinctsSizes=D}var M=[];A.selectiveArithmeticCodingBypass&&M.push("selectiveArithmeticCodingBypass");A.resetContextProbabilities&&M.push("resetContextProbabilities");A.terminationOnEachCodingPass&&M.push("terminationOnEachCodingPass");A.verticallyStripe&&M.push("verticallyStripe");A.predictableTermination&&M.push("predictableTermination");if(M.length>0){u=!0;(0,o.warn)("JPX: Unsupported COD options (".concat(M.join(", "),")."))}if(c.mainHeader)c.COD=A;else{c.currentTile.COD=A;c.currentTile.COC=[]}break;case 65424:p=(0,a.readUint16)(t,h);(x={}).index=(0,a.readUint16)(t,h+2);x.length=(0,a.readUint32)(t,h+4);x.dataEnd=x.length+h-2;x.partIndex=t[h+8];x.partsCount=t[h+9];c.mainHeader=!1;if(0===x.partIndex){x.COD=c.COD;x.COC=c.COC.slice(0);x.QCD=c.QCD;x.QCC=c.QCC.slice(0)}c.currentTile=x;break;case 65427:if(0===(x=c.currentTile).partIndex){initializeTile(c,x.index);buildPackets(c)}parseTilePackets(c,t,h,p=x.dataEnd-h);break;case 65363:(0,o.warn)("JPX: Codestream code 0xFF53 (COC) is not implemented.");case 65365:case 65367:case 65368:case 65380:p=(0,a.readUint16)(t,h);break;default:throw new Error("Unknown codestream code: "+d.toString(16))}h+=p}}catch(t){if(u||this.failOnCorruptedImage)throw new l(t.message);(0,o.warn)('JPX: Trying to recover from: "'.concat(t.message,'".'))}this.tiles=function transformComponents(t){for(var r=t.SIZ,i=t.components,o=r.Csiz,a=[],c=0,l=t.tiles.length;c<l;c++){for(var u=t.tiles[c],h=[],d=0;d<o;d++)h[d]=transformTile(t,u,d);var p=h[0],y=new Uint8ClampedArray(p.items.length*o),v={left:p.left,top:p.top,width:p.width,height:p.height,items:y},g=void 0,m=void 0,b=0,x=void 0,_=void 0,w=void 0,C=void 0,k=void 0;if(u.codingStyleDefaultParameters.multipleComponentTransform){var S=4===o,P=h[0].items,T=h[1].items,I=h[2].items,O=S?h[3].items:null;m=.5+(128<<(g=i[0].precision-8));var E=u.components[0],A=o-3;_=P.length;if(E.codingStyleParameters.reversibleTransformation)for(x=0;x<_;x++,b+=A){w=P[x]+m;C=T[x];var R=w-((k=I[x])+C>>2);y[b++]=R+k>>g;y[b++]=R>>g;y[b++]=R+C>>g}else for(x=0;x<_;x++,b+=A){w=P[x]+m;C=T[x];k=I[x];y[b++]=w+1.402*k>>g;y[b++]=w-.34413*C-.71414*k>>g;y[b++]=w+1.772*C>>g}if(S)for(x=0,b=3;x<_;x++,b+=4)y[b]=O[x]+m>>g}else for(var B=0;B<o;B++){var D=h[B].items;m=.5+(128<<(g=i[B].precision-8));for(b=B,x=0,_=D.length;x<_;x++){y[b]=D[x]+m>>g;b+=o}}a.push(v)}return a}(c);this.width=c.SIZ.Xsiz-c.SIZ.XOsiz;this.height=c.SIZ.Ysiz-c.SIZ.YOsiz;this.componentsCount=c.SIZ.Csiz}}]);return JpxImage}();r.JpxImage=h;function calculateComponentDimensions(t,r){t.x0=Math.ceil(r.XOsiz/t.XRsiz);t.x1=Math.ceil(r.Xsiz/t.XRsiz);t.y0=Math.ceil(r.YOsiz/t.YRsiz);t.y1=Math.ceil(r.Ysiz/t.YRsiz);t.width=t.x1-t.x0;t.height=t.y1-t.y0}function calculateTileGrids(t,r){for(var i,o=t.SIZ,a=[],c=Math.ceil((o.Xsiz-o.XTOsiz)/o.XTsiz),l=Math.ceil((o.Ysiz-o.YTOsiz)/o.YTsiz),u=0;u<l;u++)for(var h=0;h<c;h++){(i={}).tx0=Math.max(o.XTOsiz+h*o.XTsiz,o.XOsiz);i.ty0=Math.max(o.YTOsiz+u*o.YTsiz,o.YOsiz);i.tx1=Math.min(o.XTOsiz+(h+1)*o.XTsiz,o.Xsiz);i.ty1=Math.min(o.YTOsiz+(u+1)*o.YTsiz,o.Ysiz);i.width=i.tx1-i.tx0;i.height=i.ty1-i.ty0;i.components=[];a.push(i)}t.tiles=a;for(var d=0,p=o.Csiz;d<p;d++)for(var y=r[d],v=0,g=a.length;v<g;v++){var m={};i=a[v];m.tcx0=Math.ceil(i.tx0/y.XRsiz);m.tcy0=Math.ceil(i.ty0/y.YRsiz);m.tcx1=Math.ceil(i.tx1/y.XRsiz);m.tcy1=Math.ceil(i.ty1/y.YRsiz);m.width=m.tcx1-m.tcx0;m.height=m.tcy1-m.tcy0;i.components[d]=m}}function getBlocksDimensions(t,r,i){var o=r.codingStyleParameters,a={};if(o.entropyCoderWithCustomPrecincts){a.PPx=o.precinctsSizes[i].PPx;a.PPy=o.precinctsSizes[i].PPy}else{a.PPx=15;a.PPy=15}a.xcb_=i>0?Math.min(o.xcb,a.PPx-1):Math.min(o.xcb,a.PPx);a.ycb_=i>0?Math.min(o.ycb,a.PPy-1):Math.min(o.ycb,a.PPy);return a}function buildPrecincts(t,r,i){var o=1<<i.PPx,a=1<<i.PPy,c=0===r.resLevel,l=1<<i.PPx+(c?0:-1),u=1<<i.PPy+(c?0:-1),h=r.trx1>r.trx0?Math.ceil(r.trx1/o)-Math.floor(r.trx0/o):0,d=r.try1>r.try0?Math.ceil(r.try1/a)-Math.floor(r.try0/a):0,p=h*d;r.precinctParameters={precinctWidth:o,precinctHeight:a,numprecinctswide:h,numprecinctshigh:d,numprecincts:p,precinctWidthInSubband:l,precinctHeightInSubband:u}}function buildCodeblocks(t,r,i){var o,a,c,l,u=i.xcb_,h=i.ycb_,d=1<<u,p=1<<h,y=r.tbx0>>u,v=r.tby0>>h,g=r.tbx1+d-1>>u,m=r.tby1+p-1>>h,b=r.resolution.precinctParameters,x=[],_=[];for(a=v;a<m;a++)for(o=y;o<g;o++){(c={cbx:o,cby:a,tbx0:d*o,tby0:p*a,tbx1:d*(o+1),tby1:p*(a+1)}).tbx0_=Math.max(r.tbx0,c.tbx0);c.tby0_=Math.max(r.tby0,c.tby0);c.tbx1_=Math.min(r.tbx1,c.tbx1);c.tby1_=Math.min(r.tby1,c.tby1);l=Math.floor((c.tbx0_-r.tbx0)/b.precinctWidthInSubband)+Math.floor((c.tby0_-r.tby0)/b.precinctHeightInSubband)*b.numprecinctswide;c.precinctNumber=l;c.subbandType=r.type;c.Lblock=3;if(!(c.tbx1_<=c.tbx0_||c.tby1_<=c.tby0_)){x.push(c);var w=_[l];if(void 0!==w){o<w.cbxMin?w.cbxMin=o:o>w.cbxMax&&(w.cbxMax=o);a<w.cbyMin?w.cbxMin=a:a>w.cbyMax&&(w.cbyMax=a)}else _[l]=w={cbxMin:o,cbyMin:a,cbxMax:o,cbyMax:a};c.precinct=w}}r.codeblockParameters={codeblockWidth:u,codeblockHeight:h,numcodeblockwide:g-y+1,numcodeblockhigh:m-v+1};r.codeblocks=x;r.precincts=_}function createPacket(t,r,i){for(var o=[],a=t.subbands,c=0,l=a.length;c<l;c++)for(var u=a[c].codeblocks,h=0,d=u.length;h<d;h++){var p=u[h];p.precinctNumber===r&&o.push(p)}return{layerNumber:i,codeblocks:o}}function LayerResolutionComponentPositionIterator(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=0,h=0;h<c;h++)u=Math.max(u,o.components[h].codingStyleParameters.decompositionLevelsCount);var d=0,p=0,y=0,v=0;this.nextPacket=function JpxImage_nextPacket(){for(;d<a;d++){for(;p<=u;p++){for(;y<c;y++){var t=o.components[y];if(!(p>t.codingStyleParameters.decompositionLevelsCount)){for(var r=t.resolutions[p],i=r.precinctParameters.numprecincts;v<i;){var h=createPacket(r,v,d);v++;return h}v=0}}y=0}p=0}throw new l("Out of packets")}}function ResolutionLayerComponentPositionIterator(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=0,h=0;h<c;h++)u=Math.max(u,o.components[h].codingStyleParameters.decompositionLevelsCount);var d=0,p=0,y=0,v=0;this.nextPacket=function JpxImage_nextPacket(){for(;d<=u;d++){for(;p<a;p++){for(;y<c;y++){var t=o.components[y];if(!(d>t.codingStyleParameters.decompositionLevelsCount)){for(var r=t.resolutions[d],i=r.precinctParameters.numprecincts;v<i;){var h=createPacket(r,v,p);v++;return h}v=0}}y=0}p=0}throw new l("Out of packets")}}function ResolutionPositionComponentLayerIterator(t){var r,i,o,a,c=t.SIZ,u=t.currentTile.index,h=t.tiles[u],d=h.codingStyleDefaultParameters.layersCount,p=c.Csiz,y=0;for(o=0;o<p;o++){var v=h.components[o];y=Math.max(y,v.codingStyleParameters.decompositionLevelsCount)}var g=new Int32Array(y+1);for(i=0;i<=y;++i){var m=0;for(o=0;o<p;++o){var b=h.components[o].resolutions;i<b.length&&(m=Math.max(m,b[i].precinctParameters.numprecincts))}g[i]=m}r=0;i=0;o=0;a=0;this.nextPacket=function JpxImage_nextPacket(){for(;i<=y;i++){for(;a<g[i];a++){for(;o<p;o++){var t=h.components[o];if(!(i>t.codingStyleParameters.decompositionLevelsCount)){var c=t.resolutions[i],u=c.precinctParameters.numprecincts;if(!(a>=u)){for(;r<d;){var v=createPacket(c,a,r);r++;return v}r=0}}}o=0}a=0}throw new l("Out of packets")}}function PositionComponentResolutionLayerIterator(t){var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=getPrecinctSizesInImageScale(o),h=u,d=0,p=0,y=0,v=0,g=0;this.nextPacket=function JpxImage_nextPacket(){for(;g<h.maxNumHigh;g++){for(;v<h.maxNumWide;v++){for(;y<c;y++){for(var t=o.components[y],r=t.codingStyleParameters.decompositionLevelsCount;p<=r;p++){var i=t.resolutions[p],m=u.components[y].resolutions[p],b=getPrecinctIndexIfExist(v,g,m,h,i);if(null!==b){for(;d<a;){var x=createPacket(i,b,d);d++;return x}d=0}}p=0}y=0}v=0}throw new l("Out of packets")}}function ComponentPositionResolutionLayerIterator(t){var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=getPrecinctSizesInImageScale(o),h=0,d=0,p=0,y=0,v=0;this.nextPacket=function JpxImage_nextPacket(){for(;p<c;++p){for(var t=o.components[p],r=u.components[p],i=t.codingStyleParameters.decompositionLevelsCount;v<r.maxNumHigh;v++){for(;y<r.maxNumWide;y++){for(;d<=i;d++){var g=t.resolutions[d],m=r.resolutions[d],b=getPrecinctIndexIfExist(y,v,m,r,g);if(null!==b){for(;h<a;){var x=createPacket(g,b,h);h++;return x}h=0}}d=0}y=0}v=0}throw new l("Out of packets")}}function getPrecinctIndexIfExist(t,r,i,o,a){var c=t*o.minWidth,l=r*o.minHeight;if(c%i.width!=0||l%i.height!=0)return null;var u=l/i.width*a.precinctParameters.numprecinctswide;return c/i.height+u}function getPrecinctSizesInImageScale(t){for(var r=t.components.length,i=Number.MAX_VALUE,o=Number.MAX_VALUE,a=0,c=0,l=new Array(r),u=0;u<r;u++){for(var h=t.components[u],d=h.codingStyleParameters.decompositionLevelsCount,p=new Array(d+1),y=Number.MAX_VALUE,v=Number.MAX_VALUE,g=0,m=0,b=1,x=d;x>=0;--x){var _=h.resolutions[x],w=b*_.precinctParameters.precinctWidth,C=b*_.precinctParameters.precinctHeight;y=Math.min(y,w);v=Math.min(v,C);g=Math.max(g,_.precinctParameters.numprecinctswide);m=Math.max(m,_.precinctParameters.numprecinctshigh);p[x]={width:w,height:C};b<<=1}i=Math.min(i,y);o=Math.min(o,v);a=Math.max(a,g);c=Math.max(c,m);l[u]={resolutions:p,minWidth:y,minHeight:v,maxNumWide:g,maxNumHigh:m}}return{components:l,minWidth:i,minHeight:o,maxNumWide:a,maxNumHigh:c}}function buildPackets(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=r.Csiz,c=0;c<a;c++){for(var u=o.components[c],h=u.codingStyleParameters.decompositionLevelsCount,d=[],p=[],y=0;y<=h;y++){var v=getBlocksDimensions(0,u,y),g={},m=1<<h-y;g.trx0=Math.ceil(u.tcx0/m);g.try0=Math.ceil(u.tcy0/m);g.trx1=Math.ceil(u.tcx1/m);g.try1=Math.ceil(u.tcy1/m);g.resLevel=y;buildPrecincts(0,g,v);d.push(g);var b=void 0;if(0===y){(b={}).type="LL";b.tbx0=Math.ceil(u.tcx0/m);b.tby0=Math.ceil(u.tcy0/m);b.tbx1=Math.ceil(u.tcx1/m);b.tby1=Math.ceil(u.tcy1/m);b.resolution=g;buildCodeblocks(0,b,v);p.push(b);g.subbands=[b]}else{var x=1<<h-y+1,_=[];(b={}).type="HL";b.tbx0=Math.ceil(u.tcx0/x-.5);b.tby0=Math.ceil(u.tcy0/x);b.tbx1=Math.ceil(u.tcx1/x-.5);b.tby1=Math.ceil(u.tcy1/x);b.resolution=g;buildCodeblocks(0,b,v);p.push(b);_.push(b);(b={}).type="LH";b.tbx0=Math.ceil(u.tcx0/x);b.tby0=Math.ceil(u.tcy0/x-.5);b.tbx1=Math.ceil(u.tcx1/x);b.tby1=Math.ceil(u.tcy1/x-.5);b.resolution=g;buildCodeblocks(0,b,v);p.push(b);_.push(b);(b={}).type="HH";b.tbx0=Math.ceil(u.tcx0/x-.5);b.tby0=Math.ceil(u.tcy0/x-.5);b.tbx1=Math.ceil(u.tcx1/x-.5);b.tby1=Math.ceil(u.tcy1/x-.5);b.resolution=g;buildCodeblocks(0,b,v);p.push(b);_.push(b);g.subbands=_}}u.resolutions=d;u.subbands=p}var w=o.codingStyleDefaultParameters.progressionOrder;switch(w){case 0:o.packetsIterator=new LayerResolutionComponentPositionIterator(t);break;case 1:o.packetsIterator=new ResolutionLayerComponentPositionIterator(t);break;case 2:o.packetsIterator=new ResolutionPositionComponentLayerIterator(t);break;case 3:o.packetsIterator=new PositionComponentResolutionLayerIterator(t);break;case 4:o.packetsIterator=new ComponentPositionResolutionLayerIterator(t);break;default:throw new l("Unsupported progression order ".concat(w))}}function parseTilePackets(t,r,i,o){var c,l=0,u=0,h=!1;function readBits(t){for(;u<t;){var o=r[i+l];l++;if(h){c=c<<7|o;u+=7;h=!1}else{c=c<<8|o;u+=8}255===o&&(h=!0)}return c>>>(u-=t)&(1<<t)-1}function skipMarkerIfEqual(t){if(255===r[i+l-1]&&r[i+l]===t){skipBytes(1);return!0}if(255===r[i+l]&&r[i+l+1]===t){skipBytes(2);return!0}return!1}function skipBytes(t){l+=t}function alignToByte(){u=0;if(h){l++;h=!1}}function readCodingpasses(){if(0===readBits(1))return 1;if(0===readBits(1))return 2;var t=readBits(2);return t<3?t+3:(t=readBits(5))<31?t+6:(t=readBits(7))+37}for(var y=t.currentTile.index,v=t.tiles[y],g=t.COD.sopMarkerUsed,m=t.COD.ephMarkerUsed,b=v.packetsIterator;l<o;){alignToByte();g&&skipMarkerIfEqual(145)&&skipBytes(4);var x=b.nextPacket();if(readBits(1)){for(var _=x.layerNumber,w=[],C=void 0,k=0,S=x.codeblocks.length;k<S;k++){var P=(C=x.codeblocks[k]).precinct,T=C.cbx-P.cbxMin,I=C.cby-P.cbyMin,O=!1,E=!1,A=void 0;if(void 0!==C.included)O=!!readBits(1);else{var R=void 0;if(void 0!==(P=C.precinct).inclusionTree)R=P.inclusionTree;else{var B=P.cbxMax-P.cbxMin+1,D=P.cbyMax-P.cbyMin+1;R=new p(B,D,_);A=new d(B,D);P.inclusionTree=R;P.zeroBitPlanesTree=A}if(R.reset(T,I,_))for(;;){if(!readBits(1)){R.incrementValue(_);break}if(!R.nextLevel()){C.included=!0;O=E=!0;break}}}if(O){if(E){(A=P.zeroBitPlanesTree).reset(T,I);for(;;)if(readBits(1)){if(!A.nextLevel())break}else A.incrementValue();C.zeroBitPlanes=A.value}for(var L=readCodingpasses();readBits(1);)C.Lblock++;var M=(0,a.log2)(L),U=readBits((L<1<<M?M-1:M)+C.Lblock);w.push({codeblock:C,codingpasses:L,dataLength:U})}}alignToByte();m&&skipMarkerIfEqual(146);for(;w.length>0;){var N=w.shift();void 0===(C=N.codeblock).data&&(C.data=[]);C.data.push({data:r,start:i+l,end:i+l+N.dataLength,codingpasses:N.codingpasses});l+=N.dataLength}}}return l}function copyCoefficients(t,r,i,o,a,l,u,h){for(var d=o.tbx0,p=o.tby0,v=o.tbx1-o.tbx0,g=o.codeblocks,m="H"===o.type.charAt(0)?1:0,b="H"===o.type.charAt(1)?r:0,x=0,_=g.length;x<_;++x){var w=g[x],C=w.tbx1_-w.tbx0_,k=w.tby1_-w.tby0_;if(0!==C&&0!==k&&void 0!==w.data){var S=new y(C,k,w.subbandType,w.zeroBitPlanes,l),P=2,T=w.data,I=0,O=0,E=void 0,A=void 0,R=void 0;for(E=0,A=T.length;E<A;E++){I+=(R=T[E]).end-R.start;O+=R.codingpasses}var B=new Uint8Array(I),D=0;for(E=0,A=T.length;E<A;E++){var L=(R=T[E]).data.subarray(R.start,R.end);B.set(L,D);D+=L.length}var M=new c.ArithmeticDecoder(B,0,I);S.setDecoder(M);for(E=0;E<O;E++){switch(P){case 0:S.runSignificancePropagationPass();break;case 1:S.runMagnitudeRefinementPass();break;case 2:S.runCleanupPass();h&&S.checkSegmentationSymbol()}P=(P+1)%3}var U=w.tbx0_-d+(w.tby0_-p)*v,N=S.coefficentsSign,j=S.coefficentsMagnitude,H=S.bitsDecoded,z=u?0:.5,X=void 0,G=void 0,Y=void 0;D=0;var q="LL"!==o.type;for(E=0;E<k;E++){var J=2*(U/v|0)*(r-v)+m+b;for(X=0;X<C;X++){if(0!==(G=j[D])){G=(G+z)*a;0!==N[D]&&(G=-G);Y=H[D];var W=q?J+(U<<1):U;t[W]=u&&Y>=l?G:G*(1<<l-Y)}U++;D++}U+=v-C}}}}function transformTile(t,r,i){for(var o=r.components[i],a=o.codingStyleParameters,c=o.quantizationParameters,l=a.decompositionLevelsCount,h=c.SPqcds,d=c.scalarExpounded,p=c.guardBits,y=a.segmentationSymbolUsed,v=t.components[i].precision,b=a.reversibleTransformation,x=b?new m:new g,_=[],w=0,C=0;C<=l;C++){for(var k=o.resolutions[C],S=k.trx1-k.trx0,P=k.try1-k.try0,T=new Float32Array(S*P),I=0,O=k.subbands.length;I<O;I++){var E=void 0,A=void 0;if(d){E=h[w].mu;A=h[w].epsilon;w++}else{E=h[0].mu;A=h[0].epsilon+(C>0?1-C:0)}var R=k.subbands[I],B=u[R.type];copyCoefficients(T,S,0,R,b?1:Math.pow(2,v+B-A)*(1+E/2048),p+A-1,b,y)}_.push({width:S,height:P,items:T})}var D=x.calculate(_,o.tcx0,o.tcy0);return{left:o.tcx0,top:o.tcy0,width:D.width,height:D.height,items:D.items}}function initializeTile(t,r){for(var i=t.SIZ.Csiz,o=t.tiles[r],a=0;a<i;a++){var c=o.components[a],l=void 0!==t.currentTile.QCC[a]?t.currentTile.QCC[a]:t.currentTile.QCD;c.quantizationParameters=l;var u=void 0!==t.currentTile.COC[a]?t.currentTile.COC[a]:t.currentTile.COD;c.codingStyleParameters=u}o.codingStyleDefaultParameters=t.currentTile.COD}var d=function(){function TagTree(t,r){_classCallCheck(this,TagTree);var i=(0,a.log2)(Math.max(t,r))+1;this.levels=[];for(var o=0;o<i;o++){var c={width:t,height:r,items:[]};this.levels.push(c);t=Math.ceil(t/2);r=Math.ceil(r/2)}}_createClass(TagTree,[{key:"reset",value:function reset(t,r){for(var i,o=0,a=0;o<this.levels.length;){var c=t+r*(i=this.levels[o]).width;if(void 0!==i.items[c]){a=i.items[c];break}i.index=c;t>>=1;r>>=1;o++}o--;(i=this.levels[o]).items[i.index]=a;this.currentLevel=o;delete this.value}},{key:"incrementValue",value:function incrementValue(){var t=this.levels[this.currentLevel];t.items[t.index]++}},{key:"nextLevel",value:function nextLevel(){var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];if(--t<0){this.value=i;return!1}this.currentLevel=t;(r=this.levels[t]).items[r.index]=i;return!0}}]);return TagTree}(),p=function(){function InclusionTree(t,r,i){_classCallCheck(this,InclusionTree);var o=(0,a.log2)(Math.max(t,r))+1;this.levels=[];for(var c=0;c<o;c++){for(var l=new Uint8Array(t*r),u=0,h=l.length;u<h;u++)l[u]=i;var d={width:t,height:r,items:l};this.levels.push(d);t=Math.ceil(t/2);r=Math.ceil(r/2)}}_createClass(InclusionTree,[{key:"reset",value:function reset(t,r,i){for(var o=0;o<this.levels.length;){var a=this.levels[o],c=t+r*a.width;a.index=c;var l=a.items[c];if(255===l)break;if(l>i){this.currentLevel=o;this.propagateValues();return!1}t>>=1;r>>=1;o++}this.currentLevel=o-1;return!0}},{key:"incrementValue",value:function incrementValue(t){var r=this.levels[this.currentLevel];r.items[r.index]=t+1;this.propagateValues()}},{key:"propagateValues",value:function propagateValues(){for(var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];--t>=0;)(r=this.levels[t]).items[r.index]=i}},{key:"nextLevel",value:function nextLevel(){var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];r.items[r.index]=255;if(--t<0)return!1;this.currentLevel=t;(r=this.levels[t]).items[r.index]=i;return!0}}]);return InclusionTree}(),y=function BitModelClosure(){var t=17,r=new Uint8Array([0,5,8,0,3,7,8,0,4,7,8,0,0,0,0,0,1,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8]),i=new Uint8Array([0,3,4,0,5,7,7,0,8,8,8,0,0,0,0,0,1,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8]),o=new Uint8Array([0,1,2,0,1,2,2,0,2,2,2,0,0,0,0,0,3,4,5,0,4,5,5,0,5,5,5,0,0,0,0,0,6,7,7,0,7,7,7,0,7,7,7,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8]);return function(){function BitModel(t,a,c,l,u){_classCallCheck(this,BitModel);this.width=t;this.height=a;var h;h="HH"===c?o:"HL"===c?i:r;this.contextLabelTable=h;var d,p=t*a;this.neighborsSignificance=new Uint8Array(p);this.coefficentsSign=new Uint8Array(p);d=u>14?new Uint32Array(p):u>6?new Uint16Array(p):new Uint8Array(p);this.coefficentsMagnitude=d;this.processingFlags=new Uint8Array(p);var y=new Uint8Array(p);if(0!==l)for(var v=0;v<p;v++)y[v]=l;this.bitsDecoded=y;this.reset()}_createClass(BitModel,[{key:"setDecoder",value:function setDecoder(t){this.decoder=t}},{key:"reset",value:function reset(){this.contexts=new Int8Array(19);this.contexts[0]=8;this.contexts[17]=92;this.contexts[18]=6}},{key:"setNeighborsSignificance",value:function setNeighborsSignificance(t,r,i){var o,a=this.neighborsSignificance,c=this.width,l=this.height,u=r>0,h=r+1<c;if(t>0){o=i-c;u&&(a[o-1]+=16);h&&(a[o+1]+=16);a[o]+=4}if(t+1<l){o=i+c;u&&(a[o-1]+=16);h&&(a[o+1]+=16);a[o]+=4}u&&(a[i-1]+=1);h&&(a[i+1]+=1);a[i]|=128}},{key:"runSignificancePropagationPass",value:function runSignificancePropagationPass(){for(var t=this.decoder,r=this.width,i=this.height,o=this.coefficentsMagnitude,a=this.coefficentsSign,c=this.neighborsSignificance,l=this.processingFlags,u=this.contexts,h=this.contextLabelTable,d=this.bitsDecoded,p=0;p<i;p+=4)for(var y=0;y<r;y++)for(var v=p*r+y,g=0;g<4;g++,v+=r){var m=p+g;if(m>=i)break;l[v]&=-2;if(!o[v]&&c[v]){var b=h[c[v]];if(t.readBit(u,b)){var x=this.decodeSignBit(m,y,v);a[v]=x;o[v]=1;this.setNeighborsSignificance(m,y,v);l[v]|=2}d[v]++;l[v]|=1}}}},{key:"decodeSignBit",value:function decodeSignBit(t,r,i){var o,a,c,l,u,h,d=this.width,p=this.height,y=this.coefficentsMagnitude,v=this.coefficentsSign;l=r>0&&0!==y[i-1];if(r+1<d&&0!==y[i+1]){c=v[i+1];o=l?1-c-(a=v[i-1]):1-c-c}else o=l?1-(a=v[i-1])-a:0;var g=3*o;l=t>0&&0!==y[i-d];if(t+1<p&&0!==y[i+d]){c=v[i+d];o=l?1-c-(a=v[i-d])+g:1-c-c+g}else o=l?1-(a=v[i-d])-a+g:g;if(o>=0){u=9+o;h=this.decoder.readBit(this.contexts,u)}else{u=9-o;h=1^this.decoder.readBit(this.contexts,u)}return h}},{key:"runMagnitudeRefinementPass",value:function runMagnitudeRefinementPass(){for(var t,r=this.decoder,i=this.width,o=this.height,a=this.coefficentsMagnitude,c=this.neighborsSignificance,l=this.contexts,u=this.bitsDecoded,h=this.processingFlags,d=i*o,p=4*i,y=0;y<d;y=t){t=Math.min(d,y+p);for(var v=0;v<i;v++)for(var g=y+v;g<t;g+=i)if(a[g]&&0==(1&h[g])){var m=16;if(0!=(2&h[g])){h[g]^=2;m=0===(127&c[g])?15:14}var b=r.readBit(l,m);a[g]=a[g]<<1|b;u[g]++;h[g]|=1}}}},{key:"runCleanupPass",value:function runCleanupPass(){for(var r,i=this.decoder,o=this.width,a=this.height,c=this.neighborsSignificance,l=this.coefficentsMagnitude,u=this.coefficentsSign,h=this.contexts,d=this.contextLabelTable,p=this.bitsDecoded,y=this.processingFlags,v=o,g=2*o,m=3*o,b=0;b<a;b=r){r=Math.min(b+4,a);for(var x=b*o,_=b+3<a,w=0;w<o;w++){var C=x+w,k=0,S=C,P=b,T=void 0;if(_&&0===y[C]&&0===y[C+v]&&0===y[C+g]&&0===y[C+m]&&0===c[C]&&0===c[C+v]&&0===c[C+g]&&0===c[C+m]){if(!i.readBit(h,18)){p[C]++;p[C+v]++;p[C+g]++;p[C+m]++;continue}if(0!==(k=i.readBit(h,t)<<1|i.readBit(h,t))){P=b+k;S+=k*o}T=this.decodeSignBit(P,w,S);u[S]=T;l[S]=1;this.setNeighborsSignificance(P,w,S);y[S]|=2;S=C;for(var I=b;I<=P;I++,S+=o)p[S]++;k++}for(P=b+k;P<r;P++,S+=o)if(!l[S]&&0==(1&y[S])){var O=d[c[S]];if(1===i.readBit(h,O)){T=this.decodeSignBit(P,w,S);u[S]=T;l[S]=1;this.setNeighborsSignificance(P,w,S);y[S]|=2}p[S]++}}}}},{key:"checkSegmentationSymbol",value:function checkSegmentationSymbol(){var r=this.decoder,i=this.contexts;if(10!==(r.readBit(i,t)<<3|r.readBit(i,t)<<2|r.readBit(i,t)<<1|r.readBit(i,t)))throw new l("Invalid segmentation symbol")}}]);return BitModel}()}(),v=function(){function Transform(){_classCallCheck(this,Transform);this.constructor===Transform&&(0,o.unreachable)("Cannot initialize Transform.")}_createClass(Transform,[{key:"calculate",value:function calculate(t,r,i){for(var o=t[0],a=1,c=t.length;a<c;a++)o=this.iterate(o,t[a],r,i);return o}},{key:"extend",value:function extend(t,r,i){var o=r-1,a=r+1,c=r+i-2,l=r+i;t[o--]=t[a++];t[l++]=t[c--];t[o--]=t[a++];t[l++]=t[c--];t[o--]=t[a++];t[l++]=t[c--];t[o]=t[a];t[l]=t[c]}},{key:"filter",value:function filter(t,r,i){(0,o.unreachable)("Abstract method `filter` called")}},{key:"iterate",value:function iterate(t,r,i,o){var a,c,l,u,h,d,p=t.width,y=t.height,v=t.items,g=r.width,m=r.height,b=r.items;for(l=0,a=0;a<y;a++){u=2*a*g;for(c=0;c<p;c++,l++,u+=2)b[u]=v[l]}v=t.items=null;var x=new Float32Array(g+8);if(1===g){if(0!=(1&i))for(d=0,l=0;d<m;d++,l+=g)b[l]*=.5}else for(d=0,l=0;d<m;d++,l+=g){x.set(b.subarray(l,l+g),4);this.extend(x,4,g);this.filter(x,4,g);b.set(x.subarray(4,4+g),l)}var _=16,w=[];for(a=0;a<_;a++)w.push(new Float32Array(m+8));var C,k=0;t=4+m;if(1===m){if(0!=(1&o))for(h=0;h<g;h++)b[h]*=.5}else for(h=0;h<g;h++){if(0===k){_=Math.min(g-h,_);for(l=h,u=4;u<t;l+=g,u++)for(C=0;C<_;C++)w[C][u]=b[l+C];k=_}var S=w[--k];this.extend(S,4,m);this.filter(S,4,m);if(0===k){l=h-_+1;for(u=4;u<t;l+=g,u++)for(C=0;C<_;C++)b[l+C]=w[C][u]}}return{width:g,height:m,items:b}}}]);return Transform}(),g=function(t){_inherits(IrreversibleTransform,t);var r=_createSuper(IrreversibleTransform);function IrreversibleTransform(){_classCallCheck(this,IrreversibleTransform);return r.apply(this,arguments)}_createClass(IrreversibleTransform,[{key:"filter",value:function filter(t,r,i){var o,a,c,l,u=i>>1,h=-1.586134342059924,d=-.052980118572961,p=.882911075530934,y=.443506852043971,v=1.230174104914001;o=(r|=0)-3;for(a=u+4;a--;o+=2)t[o]*=.8128930661159609;c=y*t[(o=r-2)-1];for(a=u+3;a--;o+=2){l=y*t[o+1];t[o]=v*t[o]-c-l;if(!a--)break;c=y*t[(o+=2)+1];t[o]=v*t[o]-c-l}c=p*t[(o=r-1)-1];for(a=u+2;a--;o+=2){l=p*t[o+1];t[o]-=c+l;if(!a--)break;c=p*t[(o+=2)+1];t[o]-=c+l}c=d*t[(o=r)-1];for(a=u+1;a--;o+=2){l=d*t[o+1];t[o]-=c+l;if(!a--)break;c=d*t[(o+=2)+1];t[o]-=c+l}if(0!==u){c=h*t[(o=r+1)-1];for(a=u;a--;o+=2){l=h*t[o+1];t[o]-=c+l;if(!a--)break;c=h*t[(o+=2)+1];t[o]-=c+l}}}}]);return IrreversibleTransform}(v),m=function(t){_inherits(ReversibleTransform,t);var r=_createSuper(ReversibleTransform);function ReversibleTransform(){_classCallCheck(this,ReversibleTransform);return r.apply(this,arguments)}_createClass(ReversibleTransform,[{key:"filter",value:function filter(t,r,i){var o,a,c=i>>1;for(o=r|=0,a=c+1;a--;o+=2)t[o]-=t[o-1]+t[o+1]+2>>2;for(o=r+1,a=c;a--;o+=2)t[o]+=t[o-1]+t[o+1]>>1}}]);return ReversibleTransform}(v)}],r={};function __w_pdfjs_require__(i){var o=r[i];if(void 0!==o)return o.exports;var a=r[i]={id:i,loaded:!1,exports:{}};t[i](a,a.exports,__w_pdfjs_require__);a.loaded=!0;return a.exports}__w_pdfjs_require__.nmd=t=>{t.paths=[];t.children||(t.children=[]);return t};var i={};(()=>{"use strict";var t=i;Object.defineProperty(t,"__esModule",{value:!0});Object.defineProperty(t,"getVerbosityLevel",{enumerable:!0,get:function get(){return r.getVerbosityLevel}});Object.defineProperty(t,"setVerbosityLevel",{enumerable:!0,get:function get(){return r.setVerbosityLevel}});Object.defineProperty(t,"Jbig2Image",{enumerable:!0,get:function get(){return o.Jbig2Image}});Object.defineProperty(t,"JpegImage",{enumerable:!0,get:function get(){return a.JpegImage}});Object.defineProperty(t,"JpxImage",{enumerable:!0,get:function get(){return c.JpxImage}});var r=__w_pdfjs_require__(1),o=__w_pdfjs_require__(81),a=__w_pdfjs_require__(89),c=__w_pdfjs_require__(90)})();return i})()}));