@univerjs-pro/pdfs-ui 1.0.0-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/README.md +46 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/cjs/locale/ar-SA.js +1 -0
  4. package/lib/cjs/locale/ca-ES.js +1 -0
  5. package/lib/cjs/locale/de-DE.js +1 -0
  6. package/lib/cjs/locale/en-US.js +1 -0
  7. package/lib/cjs/locale/es-ES.js +1 -0
  8. package/lib/cjs/locale/fa-IR.js +1 -0
  9. package/lib/cjs/locale/fr-FR.js +1 -0
  10. package/lib/cjs/locale/id-ID.js +1 -0
  11. package/lib/cjs/locale/it-IT.js +1 -0
  12. package/lib/cjs/locale/ja-JP.js +1 -0
  13. package/lib/cjs/locale/ko-KR.js +1 -0
  14. package/lib/cjs/locale/pl-PL.js +1 -0
  15. package/lib/cjs/locale/pt-BR.js +1 -0
  16. package/lib/cjs/locale/ru-RU.js +1 -0
  17. package/lib/cjs/locale/sk-SK.js +1 -0
  18. package/lib/cjs/locale/vi-VN.js +1 -0
  19. package/lib/cjs/locale/zh-CN.js +1 -0
  20. package/lib/cjs/locale/zh-HK.js +1 -0
  21. package/lib/cjs/locale/zh-TW.js +1 -0
  22. package/lib/es/index.js +1 -0
  23. package/lib/es/locale/ar-SA.js +1 -0
  24. package/lib/es/locale/ca-ES.js +1 -0
  25. package/lib/es/locale/de-DE.js +1 -0
  26. package/lib/es/locale/en-US.js +1 -0
  27. package/lib/es/locale/es-ES.js +1 -0
  28. package/lib/es/locale/fa-IR.js +1 -0
  29. package/lib/es/locale/fr-FR.js +1 -0
  30. package/lib/es/locale/id-ID.js +1 -0
  31. package/lib/es/locale/it-IT.js +1 -0
  32. package/lib/es/locale/ja-JP.js +1 -0
  33. package/lib/es/locale/ko-KR.js +1 -0
  34. package/lib/es/locale/pl-PL.js +1 -0
  35. package/lib/es/locale/pt-BR.js +1 -0
  36. package/lib/es/locale/ru-RU.js +1 -0
  37. package/lib/es/locale/sk-SK.js +1 -0
  38. package/lib/es/locale/vi-VN.js +1 -0
  39. package/lib/es/locale/zh-CN.js +1 -0
  40. package/lib/es/locale/zh-HK.js +1 -0
  41. package/lib/es/locale/zh-TW.js +1 -0
  42. package/lib/index.css +520 -0
  43. package/lib/index.js +1 -0
  44. package/lib/locale/ar-SA.js +1 -0
  45. package/lib/locale/ca-ES.js +1 -0
  46. package/lib/locale/de-DE.js +1 -0
  47. package/lib/locale/en-US.js +1 -0
  48. package/lib/locale/es-ES.js +1 -0
  49. package/lib/locale/fa-IR.js +1 -0
  50. package/lib/locale/fr-FR.js +1 -0
  51. package/lib/locale/id-ID.js +1 -0
  52. package/lib/locale/it-IT.js +1 -0
  53. package/lib/locale/ja-JP.js +1 -0
  54. package/lib/locale/ko-KR.js +1 -0
  55. package/lib/locale/pl-PL.js +1 -0
  56. package/lib/locale/pt-BR.js +1 -0
  57. package/lib/locale/ru-RU.js +1 -0
  58. package/lib/locale/sk-SK.js +1 -0
  59. package/lib/locale/vi-VN.js +1 -0
  60. package/lib/locale/zh-CN.js +1 -0
  61. package/lib/locale/zh-HK.js +1 -0
  62. package/lib/locale/zh-TW.js +1 -0
  63. package/lib/types/commands/command-ids.d.ts +1 -0
  64. package/lib/types/commands/mutations/pdf-history.mutation.d.ts +9 -0
  65. package/lib/types/commands/operations/pdf-editor.operation.d.ts +22 -0
  66. package/lib/types/commands/operations/pdf-insert.operation.d.ts +17 -0
  67. package/lib/types/commands/operations/pdf-page-thumbnail.operation.d.ts +7 -0
  68. package/lib/types/config/config.d.ts +13 -0
  69. package/lib/types/context-menu/pdf-context-menu-position.d.ts +5 -0
  70. package/lib/types/controllers/components.controller.d.ts +9 -0
  71. package/lib/types/controllers/pdf-editor-unit.controller.d.ts +15 -0
  72. package/lib/types/controllers/pdf-inspector.controller.d.ts +12 -0
  73. package/lib/types/controllers/pdf-page-thumbnail-contextmenu.controller.d.ts +8 -0
  74. package/lib/types/controllers/pdf-ribbon.controller.d.ts +6 -0
  75. package/lib/types/controllers/pdf-ui.controller.d.ts +9 -0
  76. package/lib/types/editor/TextColorPicker.d.ts +11 -0
  77. package/lib/types/editor/canvas-text-edit-bridge.d.ts +23 -0
  78. package/lib/types/editor/canvas-text-editor.d.ts +69 -0
  79. package/lib/types/editor/chrome-model.d.ts +61 -0
  80. package/lib/types/editor/context-menu-model.d.ts +17 -0
  81. package/lib/types/editor/form-field-targets.d.ts +8 -0
  82. package/lib/types/editor/form-field-values.d.ts +16 -0
  83. package/lib/types/editor/geometry.d.ts +18 -0
  84. package/lib/types/editor/inspector-geometry.d.ts +13 -0
  85. package/lib/types/editor/inspector-model.d.ts +75 -0
  86. package/lib/types/editor/keyboard-controller.d.ts +32 -0
  87. package/lib/types/editor/list-layout.d.ts +21 -0
  88. package/lib/types/editor/managed-image-insert.d.ts +41 -0
  89. package/lib/types/editor/native-targets.d.ts +32 -0
  90. package/lib/types/editor/native-text-edit.d.ts +9 -0
  91. package/lib/types/editor/overlay-renderer.d.ts +63 -0
  92. package/lib/types/editor/paragraph-autofit.d.ts +31 -0
  93. package/lib/types/editor/pointer-controller.d.ts +76 -0
  94. package/lib/types/editor/pointer-frame-coalescer.d.ts +11 -0
  95. package/lib/types/editor/story-layout.d.ts +100 -0
  96. package/lib/types/editor/table-insertion.d.ts +17 -0
  97. package/lib/types/editor/table-layout.d.ts +32 -0
  98. package/lib/types/editor/table-renderer.d.ts +6 -0
  99. package/lib/types/editor/text-layout.d.ts +74 -0
  100. package/lib/types/index.d.ts +15 -0
  101. package/lib/types/locale/ar-SA.d.ts +3 -0
  102. package/lib/types/locale/ca-ES.d.ts +3 -0
  103. package/lib/types/locale/de-DE.d.ts +3 -0
  104. package/lib/types/locale/en-US.d.ts +212 -0
  105. package/lib/types/locale/es-ES.d.ts +3 -0
  106. package/lib/types/locale/fa-IR.d.ts +3 -0
  107. package/lib/types/locale/fr-FR.d.ts +3 -0
  108. package/lib/types/locale/id-ID.d.ts +3 -0
  109. package/lib/types/locale/it-IT.d.ts +3 -0
  110. package/lib/types/locale/ja-JP.d.ts +3 -0
  111. package/lib/types/locale/ko-KR.d.ts +3 -0
  112. package/lib/types/locale/pl-PL.d.ts +3 -0
  113. package/lib/types/locale/pt-BR.d.ts +3 -0
  114. package/lib/types/locale/ru-RU.d.ts +3 -0
  115. package/lib/types/locale/sk-SK.d.ts +3 -0
  116. package/lib/types/locale/types.d.ts +3 -0
  117. package/lib/types/locale/vi-VN.d.ts +3 -0
  118. package/lib/types/locale/zh-CN.d.ts +3 -0
  119. package/lib/types/locale/zh-HK.d.ts +3 -0
  120. package/lib/types/locale/zh-TW.d.ts +3 -0
  121. package/lib/types/menu/pdf-canvas-contextmenu.menu.d.ts +9 -0
  122. package/lib/types/menu/pdf-page-thumbnail.menu.d.ts +7 -0
  123. package/lib/types/menu/pdf-ribbon.menu.d.ts +27 -0
  124. package/lib/types/menu/schema.d.ts +4 -0
  125. package/lib/types/plugin.d.ts +19 -0
  126. package/lib/types/render/canvas-backend.d.ts +29 -0
  127. package/lib/types/render/canvas-group-compositor.d.ts +54 -0
  128. package/lib/types/render/canvas-renderer.d.ts +29 -0
  129. package/lib/types/render/canvas-shading.d.ts +12 -0
  130. package/lib/types/render/canvas-text.d.ts +15 -0
  131. package/lib/types/render/canvas-types.d.ts +3 -0
  132. package/lib/types/render/decode-manifest.d.ts +210 -0
  133. package/lib/types/render/document-json.d.ts +3 -0
  134. package/lib/types/render/document-object-renderer.d.ts +21 -0
  135. package/lib/types/render/font-outline.d.ts +27 -0
  136. package/lib/types/render/font-render-report.d.ts +71 -0
  137. package/lib/types/render/image-resolver.d.ts +30 -0
  138. package/lib/types/render/pdf-canvas-render-session.d.ts +34 -0
  139. package/lib/types/render/pdf-page-thumbnail-renderer.d.ts +49 -0
  140. package/lib/types/render/pdf-page-thumbnail-worker-client.d.ts +44 -0
  141. package/lib/types/render/pdf-page-thumbnail.worker.d.ts +9 -0
  142. package/lib/types/render/source-eraser.d.ts +18 -0
  143. package/lib/types/render/source-suppression.d.ts +10 -0
  144. package/lib/types/render/viewport.d.ts +21 -0
  145. package/lib/types/services/pdf-editor-command.service.d.ts +59 -0
  146. package/lib/types/services/pdf-editor-runtime.service.d.ts +62 -0
  147. package/lib/types/services/pdf-insert.service.d.ts +58 -0
  148. package/lib/types/services/pdf-managed-image-runtime.adapter.d.ts +37 -0
  149. package/lib/types/services/pdf-page-region-index.service.d.ts +48 -0
  150. package/lib/types/services/pdf-page-thumbnail-action.service.d.ts +15 -0
  151. package/lib/types/services/pdf-page-thumbnail-context.service.d.ts +36 -0
  152. package/lib/types/services/pdf-page-thumbnail-unit-action.service.d.ts +18 -0
  153. package/lib/types/services/pdf-render-resource-resolvers.d.ts +6 -0
  154. package/lib/types/views/PdfCanvasView.d.ts +2 -0
  155. package/lib/types/views/PdfFooter.d.ts +2 -0
  156. package/lib/types/views/PdfInsertTableMenu.d.ts +2 -0
  157. package/lib/types/views/PdfInspectorPanel.d.ts +3 -0
  158. package/lib/types/views/PdfPageThumbnailBar.d.ts +2 -0
  159. package/lib/types/views/PdfTableThemeGallery.d.ts +8 -0
  160. package/lib/types/views/PdfToolbar.d.ts +2 -0
  161. package/lib/types/views/pdf-canvas-pixel-alignment.d.ts +1 -0
  162. package/lib/types/views/pdf-canvas-text-edit-state.d.ts +34 -0
  163. package/lib/types/views/pdf-thumbnail-virtualizer.d.ts +22 -0
  164. package/lib/types/views/pdf-workbench-state.d.ts +8 -0
  165. package/lib/umd/index.js +1 -0
  166. package/lib/umd/locale/ar-SA.js +1 -0
  167. package/lib/umd/locale/ca-ES.js +1 -0
  168. package/lib/umd/locale/de-DE.js +1 -0
  169. package/lib/umd/locale/en-US.js +1 -0
  170. package/lib/umd/locale/es-ES.js +1 -0
  171. package/lib/umd/locale/fa-IR.js +1 -0
  172. package/lib/umd/locale/fr-FR.js +1 -0
  173. package/lib/umd/locale/id-ID.js +1 -0
  174. package/lib/umd/locale/it-IT.js +1 -0
  175. package/lib/umd/locale/ja-JP.js +1 -0
  176. package/lib/umd/locale/ko-KR.js +1 -0
  177. package/lib/umd/locale/pl-PL.js +1 -0
  178. package/lib/umd/locale/pt-BR.js +1 -0
  179. package/lib/umd/locale/ru-RU.js +1 -0
  180. package/lib/umd/locale/sk-SK.js +1 -0
  181. package/lib/umd/locale/vi-VN.js +1 -0
  182. package/lib/umd/locale/zh-CN.js +1 -0
  183. package/lib/umd/locale/zh-HK.js +1 -0
  184. package/lib/umd/locale/zh-TW.js +1 -0
  185. package/package.json +87 -0
@@ -0,0 +1 @@
1
+ function _0x57a5(_0x394631,_0x465d35){_0x394631=_0x394631-0x108;const _0x343629=_0x3436();let _0x57a594=_0x343629[_0x394631];return _0x57a594;}function _0x3436(){const _0x5c79fe=['pairSets','BoldIcon','sort','min','getTypeOfUnitDisposed$','normalSlope','_registerIcons','pdfs-ui.ribbon.actions.annotations','pdfs-ui.inspector.actions.pageGeometry','MARKED_CONTENT_END','reserved3','REAL','fontChanged$','textBaseline','emuToCssPx','_textEditRequestedSubject','deltaBase','<svg','M4.84234\x2012.1951C4.47507\x2012.1951\x204.17734\x2012.4928\x204.17734\x2012.8601C4.17734\x2013.2273\x204.47507\x2013.5251\x204.84234\x2013.5251H6.94754C7.31481\x2013.5251\x207.61254\x2013.2273\x207.61254\x2012.8601C7.61254\x2012.4928\x207.31481\x2012.1951\x206.94754\x2012.1951H4.84234Z','Something\x20went\x20wrong\x20calculating\x20the\x20offset.','fontFamily','updateColrTable','(empty)','PdfInsertParagraphOperation','\x00\x01\x00\x00','rangeRecord','head\x20table','xMaxExtent','tokens','setSelection','DELTAS_ARE_ZERO','reject','glyphID_','arn','autoFitMinHeight','border','BOLD','Single:\x20unable\x20to\x20modify\x20coverage\x20table\x20format\x20','NUMBER32','baseline','_failedFontOutlines','pdfs-ui.config','meta','dpv','putImageData','operationPath','0\x200\x2016\x2016','AssetIds','moh','es-PR','preventDefault','prevPointOnContour','symbol','displayOperationId','CHARSTRING','axisIndex','univer-rounded-lg\x20univer-bg-white\x20univer-p-3\x20univer-text-xs\x20univer-shadow-lg\x20dark:!univer-bg-gray-900\x20dark:!univer-text-white','DisplayListIds','contextualSubstitutionTable','featureTag','viewBox','TABLE_CELL','TextIcon','background','cvt\x20','dy1','ignoreCvt','onRedo','weight','contentOffsetXCssPx','actions','copyright','Parser','ruleSets','peakCoord','alphabetic','scriptTable','cpal','M3.3\x202.6L8\x206.2L12.7\x202.6H3.3Z','updateLocal','ltr','pdfs-ui.inspector.actions.flipVertical','font/otf','toPathData','resourceName','latn','WIDTH',',\x20actually\x20','appendChild','pdfs-ui.inspector.fields.left','data','parseTupleVariationStore','M3.33315\x205.56641C3.00178\x205.56641\x202.73315\x205.83504\x202.73315\x206.16641C2.73315\x206.49778\x203.00178\x206.76641\x203.33315\x206.76641H12.6665C12.9979\x206.76641\x2013.2665\x206.49778\x2013.2665\x206.16641C13.2665\x205.83504\x2012.9979\x205.56641\x2012.6665\x205.56641H3.33315Z','0\x200\x2020\x2020','_updateLocalResult','getLangSysTable','overscan','SAVE_STATE','rgba(','pdfs-ui.inspector.fields.verticalAlign','useEffect','_push','selection_','x-mac-telugu','names','resolvePdfTableCellStyle','wOF2','shape','yTouched','x-mac-mongolian','startOffset','layerRecordsOffset','_subrsBias','secondGlyph','init','cmap12End_','plan','\x20in\x20the\x20fvar\x20table!','idle','underline-icon','Invalid\x20layer\x20index','requestIdleCallback','strokeText','FOOTER','pdfEditParagraphCommand','zh-Hant','DEPRECATED!\x20migrate\x20to:\x20opentype.parse(require(\x22fs\x22).readFileSync(url),\x20opt)','length','Unsupported\x20META\x20table\x20version.','en-BZ','outerCircle','every','appearanceState','runOffset','itemIndex','reservedSources','isComposite','variationRegions','STAT\x20axis\x20count\x20must\x20be\x20greater\x20than\x200\x20if\x20STAT\x20axis\x20value\x20count\x20is\x20greater\x20than\x200',':\x20lookup\x20type\x205\x20format\x20must\x20be\x201,\x202\x20or\x203.','cancelScheduled','Lookup\x20type\x203\x20substFormat\x20must\x20be\x201.','ccmp','sxHeight','univer-box-border\x20univer-h-8\x20univer-w-full','magicNumber','annotationType','imageAssetResolver','getDefaultScriptFeaturesIndexes','textEditExitRequested$','POINTS_ARE_WORDS','session','pdfAddTableCommand','unicodes','SOURCE_SPAN','bind','gsubrs','colorRecordIndices_','cellVerticalAlign','tag','Unsupported\x20CaretValue\x20table\x20version.','pdfMergeParagraphCommand','decorate','trimStart','Unsupported\x20GPOS\x20table\x20version\x20','suppressedObjectIds','filter','drawMetrics','url(','decode','lookaheadGlyphCount','startWith','reserved1','parsePackedDeltas','align','bStrokeVariation','GPOS\x20Lookup\x203\x20not\x20supported','Inject','bLetterform','pdfs-ui.contextMenu.delete','pdfs-ui.pdf-page-thumbnail-context.service','slope','Only\x20COLRv0\x20supported.','_destroyRecord','getUint16','pageRasterResolver','getPageIndex','ApplyPdfMutationBatchMutation','marker','stories','fieldObjectId','parseByteList','handles','SERIF','Multiple:\x20unable\x20to\x20modify\x20coverage\x20table\x20format\x20','FIRST_LINE_INDENT','maxFormDepth','spacingBefore','elidedFallbackNameID','firstLayerIndex','caretOffset','inhibitGridFit','fontSizeScale','pdfs-ui.inspector.fields.underline','attachments','isolated','flags_','parseFromString','colorRecordIndices','replace','LEFT_SIDEBAR','axisValueTable_','cidFontRevision','The\x20font\x20object\x20is\x20required\x20to\x20read\x20the\x20colr/cpal\x20tables\x20in\x20order\x20to\x20get\x20the\x20layers.','Unable\x20to\x20decode\x20image\x20file\x20','axisValueCount','showAnnotations','format','.null','x-mac-tamil','idSuffix','bringForward','pdfs-ui.inspector.sections.page','sin','bMidline','visibleBox','ObjectId','runIds','replaceToken:\x20invalid\x20token\x20or\x20index.','removeAttribute','reserved4','averageColor','getResourceRevision','getCvarTransform','1px\x20solid\x20','1346946GbkkzS','getSnapshot','ulUnicodeRange4','region','rangeToText','contextName','advanceWidthMax','borderWidth','NUMBER','icon','Value\x20','setConfig','BOTTOM','PdfTableCellVerticalAlign','resourceChanged$','disableGroupCompositor','pdfUpdateParagraphStyleCommand','heightCssPx','pdfs-ui.pageThumbnail.moveDown','parseByte','\x22Lucida\x20Grande\x22,\x20\x22Lucida\x20Sans\x20Unicode\x22,\x20Arial,\x20sans-serif','hasSuppressions','univer-block\x20univer-max-h-[244px]\x20univer-max-w-full\x20univer-bg-white','uLongList','pdfs-ui.inspector.fields.height','privatePoints','maxComponentDepth','font/woff2','getOffset','AssetId','STRING','HEIGHT','redoBatchIds','assets','canMoveDown','univer-block','pdfs-ui.ribbon.listPresets.square','showPageBoundary','ulCodePageRange1','test','createObjectURL','setEndOffset','Coverage','requestAnimationFrame','Invalid\x20b0\x20','M4.46416\x202.03237C4.46416\x201.701\x204.19553\x201.43237\x203.86416\x201.43237C3.53279\x201.43237\x203.26416\x201.701\x203.26416\x202.03237V7.33338C3.26416\x2010.0313\x205.35834\x2012.2667\x207.9999\x2012.2667C10.6415\x2012.2667\x2012.7356\x2010.0313\x2012.7356\x207.33338V2.03237C12.7356\x201.701\x2012.467\x201.43237\x2012.1356\x201.43237C11.8043\x201.43237\x2011.5356\x201.701\x2011.5356\x202.03237V7.33338C11.5356\x209.42194\x209.92656\x2011.0667\x207.9999\x2011.0667C6.07325\x2011.0667\x204.46416\x209.42194\x204.46416\x207.33338V2.03237Z','focus','_init','xAvgCharWidth','regionIndexes','iterator','MUTATION','validate','x-mac-japanese','getTransform','maxMemType42','UNORDERED_SQUARE','onRendered','pdfEditTextCommand','lookupListIndex','header','tokenize','byteLength','toFixed','und','getLigatures','<path\x20d=\x22','setTransform','ySuperscriptXOffset','register','parseShortList','warn','classRecords','UniverLicensePlugin','destLen','parseTupleVariationStoreList','parseDeltaSetIndexMap','replaceToken','metaKey','_prepState','image/png','ctrlKey','pdfs-ui.tableTheme.footerRow','startCoord','M6.8981\x207.2334C6.56672\x207.2334\x206.2981\x207.50203\x206.2981\x207.8334C6.2981\x208.16477\x206.56672\x208.4334\x206.8981\x208.4334H14.4605C14.7918\x208.4334\x2015.0605\x208.16477\x2015.0605\x207.8334C15.0605\x207.50203\x2014.7918\x207.2334\x2014.4605\x207.2334H6.8981Z','This\x20font\x20provides\x20a\x20cvar\x20table,\x20but\x20no\x20fvar\x20table,\x20which\x20is\x20required\x20for\x20variable\x20fonts.','paragraphFirstLineIndent','DEFAULT_PDF_TABLE_STYLE_ID','TEXT_RANGE','visibility','pageRevisions','usBreakChar','formatMajor','Managed\x20image\x20runtime\x20adapter\x20was\x20disposed\x20while\x20decoding.','paintType','reduce','refreshUnit','script','paragraphIndent','\x22,\x20Arial,\x20sans-serif','manufacturerURL','getRangeTokens','medi','FORM_XOBJECT','M8\x206.2V7.8','blueShift','M8\x2014V14.2','checkContextReady','createElement','pdfs-ui.inspector-panel','fina','atan2','leftSideBearing','parseFeatureVariationsList','Dropdown','_imageAdapter','lastTask','glyphVariations','pdfs-ui.ribbon.listPresets.hollowBullet','createPdfEphemeralEditorState','unicodeVariationSequence','px)','nativeEvent','rlineto','ySuperscriptYOffset','extend','ULONG','pdfs-ui.inspector.titles.document','designAxisSize','Tab','right','miter','active','toUpperCase','tokenizer','utf-16','univer-box-border\x20univer-w-full\x20univer-cursor-pointer\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-bg-transparent\x20univer-p-1\x20univer-outline-none\x20univer-transition-shadow\x20hover:univer-border-primary-400\x20focus-visible:univer-ring-2\x20focus-visible:univer-ring-primary-200\x20dark:focus-visible:!univer-ring-primary-900','univer-grid\x20univer-grid-cols-2\x20univer-gap-2','numberOfContours','forEach','classSets','Lookup\x20type\x201\x20substFormat\x20must\x20be\x201\x20or\x202.','toDisposable','snapshot','mediaBox','CHOICE','CHARARRAY','funcs','M1.90107\x200.578613C1.45925\x200.578613\x201.10107\x200.936785\x201.10107\x201.37861V11.8216C1.10107\x2013.8098\x202.71285\x2015.4216\x204.70107\x2015.4216H14.0987C14.5406\x2015.4216\x2014.8987\x2015.0634\x2014.8987\x2014.6216V4.17861C14.8987\x202.19039\x2013.287\x200.578613\x2011.2987\x200.578613H1.90107ZM2.30107\x2011.8216V1.77861H11.2987C12.6242\x201.77861\x2013.6987\x202.85313\x2013.6987\x204.17861V14.2216H4.70107C3.37559\x2014.2216\x202.30107\x2013.1471\x202.30107\x2011.8216Z','overlaysByPage','x-mac-greek','maxHeightCssPx','saveImage','outlinesFormat','_yMax','Arial,\x20sans-serif','invalid\x20INSTCTRL[]\x20selector','textStoryPatches','extension','zp2','Point\x20size\x20is\x20not\x20a\x20number!','fontBBox','Transparency','fillOpacity','borderColor','MACSTRING','baseGlyphRecords','endGlyphID','getLookupByIndex','dict','@univerjs-pro/license','unitType','startBbox','fullName','getMetrics','QUAD_TO','pdfs-ui.inspector.titles.text','LITERAL','suppressedDisplayOperationIds','resolveManagedImage','resolvePdfManagedImageRuntimeSource','createIdentifier','getSingle','operatorId','backgroundColor','redoPdfEditorSession','domain','nameID_','getLayers','................................space.exclamsmall.Hungarumlautsmall..dollaroldstyle.dollarsuperior.ampersandsmall.Acutesmall.parenleftsuperior.parenrightsuperior.twodotenleader.onedotenleader.comma.hyphen.period.fraction.zerooldstyle.oneoldstyle.twooldstyle.threeoldstyle.fouroldstyle.fiveoldstyle.sixoldstyle.sevenoldstyle.eightoldstyle.nineoldstyle.colon.semicolon.commasuperior.threequartersemdash.periodsuperior.questionsmall..asuperior.bsuperior.centsuperior.dsuperior.esuperior...isuperior...lsuperior.msuperior.nsuperior.osuperior...rsuperior.ssuperior.tsuperior..ff.fi.fl.ffi.ffl.parenleftinferior..parenrightinferior.Circumflexsmall.hyphensuperior.Gravesmall.Asmall.Bsmall.Csmall.Dsmall.Esmall.Fsmall.Gsmall.Hsmall.Ismall.Jsmall.Ksmall.Lsmall.Msmall.Nsmall.Osmall.Psmall.Qsmall.Rsmall.Ssmall.Tsmall.Usmall.Vsmall.Wsmall.Xsmall.Ysmall.Zsmall.colonmonetary.onefitted.rupiah.Tildesmall...................................exclamdownsmall.centoldstyle.Lslashsmall...Scaronsmall.Zcaronsmall.Dieresissmall.Brevesmall.Caronsmall..Dotaccentsmall...Macronsmall...figuredash.hypheninferior...Ogoneksmall.Ringsmall.Cedillasmall....onequarter.onehalf.threequarters.questiondownsmall.oneeighth.threeeighths.fiveeighths.seveneighths.onethird.twothirds...zerosuperior.onesuperior.twosuperior.threesuperior.foursuperior.fivesuperior.sixsuperior.sevensuperior.eightsuperior.ninesuperior.zeroinferior.oneinferior.twoinferior.threeinferior.fourinferior.fiveinferior.sixinferior.seveninferior.eightinferior.nineinferior.centinferior.dollarinferior.periodinferior.commainferior.Agravesmall.Aacutesmall.Acircumflexsmall.Atildesmall.Adieresissmall.Aringsmall.AEsmall.Ccedillasmall.Egravesmall.Eacutesmall.Ecircumflexsmall.Edieresissmall.Igravesmall.Iacutesmall.Icircumflexsmall.Idieresissmall.Ethsmall.Ntildesmall.Ogravesmall.Oacutesmall.Ocircumflexsmall.Otildesmall.Odieresissmall.OEsmall.Oslashsmall.Ugravesmall.Uacutesmall.Ucircumflexsmall.Udieresissmall.Yacutesmall.Thornsmall.Ydieresissmall','evenodd','toArrayBuffer','PdfDecoded_','context','_decodeAndStore','lookup\x20type\x206\x20format\x202\x20is\x20not\x20yet\x20supported.','Button','sourceAlphaThreshold','middle','PDF\x20local\x20editor\x20state\x20belongs\x20to\x20\x22','px\x20','Record','cmap12nGroups','pdfEditFormFieldCommand','uidBase','head','ArrowDown','jsxs','UniverPdfsPlugin','stepY','flatMap','sans-serif','arrow-down-icon','alpha','overlay_image_','XObject','green','M8.11307\x207.33497L8.24686\x207.34865C8.54984\x207.41069\x208.77811\x207.67869\x208.77811\x208.00001C8.77811\x208.32134\x208.54984\x208.58933\x208.24686\x208.65138L8.11307\x208.66505H5.85331C5.48604\x208.66505\x205.18827\x208.36728\x205.18827\x208.00001C5.18827\x207.63274\x205.48604\x207.33497\x205.85331\x207.33497H8.11307Z','isSafeInteger','markerTextStyle','Replacement\x20index\x20out\x20of\x20range:\x20numPaletteEntries\x20after\x20deletion:\x20','hasMoved','pdfs-ui.ribbon.actions.raw','detached','image/avif','XXXX','imageChanged$','#ffffff','_page','cssPxToEmu','required','reason','M1.68453\x2012.1951C1.31726\x2012.1951\x201.01953\x2012.4928\x201.01953\x2012.8601C1.01953\x2013.2273\x201.31726\x2013.5251\x201.68453\x2013.5251H2.73713C3.1044\x2013.5251\x203.40213\x2013.2273\x203.40213\x2012.8601C3.40213\x2012.4928\x203.1044\x2012.1951\x202.73713\x2012.1951H1.68453Z','parseUShortList','Image','onGlyphUpdated','parseF2Dot14','round','scrollTop','local-updated','getDocument','woff2','edits','745gweXtJ','lookaheadGlyph','glyphID','getInt8','pdfBounds','INNER_INDEX_BIT_COUNT_MASK','ascender','SHAPE','M9.05275\x2012.1951C8.68548\x2012.1951\x208.38775\x2012.4928\x208.38775\x2012.8601C8.38775\x2013.2273\x208.68548\x2013.5251\x209.05275\x2013.5251H11.158C11.5252\x2013.5251\x2011.823\x2013.2273\x2011.823\x2012.8601C11.823\x2012.4928\x2011.5252\x2012.1951\x2011.158\x2012.1951H9.05275Z','subtype','url(#$1','fileName','innerHole','spacingAfter','PdfInsertListOperation','pdfs-ui.inspector.fields.pageId','pdf.menu.tool.text','resize','paletteIndex_','startGlyph','GPOS\x20Lookup\x204\x20not\x20supported','widthClass','\x20range\x20has\x20bad\x20initial\x20GID\x20','arrayBuffer','page','COPY','byte','getStateParts','createSynchronousPdfRenderScheduler','MEDIUM','disposeWithMe','IImageIoService','blendMode','deltaInterpolate','table-icon','chainRuleSets','getBidiText','activeTextEditState','leftSideBearing_','src','PdfAnnotationType','varSelectorList','_loadResourceFont','univer-relative\x20univer-w-full','columns','kok','defineProperty','arabicWord','fontRevision','epoch','Can\x27t\x20find\x20compressed\x20blocks','colorRecords_','LINE_HEIGHT','createPdfRenderCache','_xMax','ttfGlyphLoader','embedded','univer-truncate\x20univer-text-xs','softMask','drawImage','composeRUD','currentColor','checkEnd','_leftSideBearing','hasPointerCapture','REGULAR','pdf.insert-ribbon.table','cmap12Start_','pipe','rangeId','rgba(255,\x20255,\x20255,\x200.94)','paragraph','TEXT_BOX','xScale','glyphIndexMap','lookaheadCoverage','parseStruct','svgDoc_','CIRCLE','axisNameID_','execute','height','No\x20English\x20','ligSet','deltaShift','pdfs-ui.inspector.sections.transform','pdfs-ui.pageThumbnail.delete','pdfs-ui.inspector.sections.paragraph','countSizePairs','state','displayListId','_fontResourcesDisposed','getPageCacheEpoch','OS/2','macStyle','os2','onload','Unsupported\x20OpenType\x20signature\x20','en-PH','getCurrentTypeOfUnit$','univer-w-full','toLowerCase','usWidthClass','uniqueID','imageSmoothingEnabled','parseOffset16List','MOVE_UP','setSelectionRange','_IndexToUnicodeMap','charsets','subrsBias','ownerDocument','ORDERED_DECIMAL_ZERO','PdfAssetType','body','UNORDERED_CHECK','classDef2','ar-LY','color-dodge','DependentOn','CFF\x20CharString\x20operator\x20endchar\x20(14)\x20is\x20not\x20supported\x20in\x20CFF2','es-US','PdfEditorMutationReason','ar-QA','rangeGaspBehavior','disposePdfWorkbenchOwnersBestEffort','CFF\x20','DeleteIcon','linkedValue','UniverProPdfsRender','overflow','Select','pdfs-ui.ribbon.actions.text','flipHorizontal','numTables','interiorFill','ccmpReplacement','buffer','DEFAULT_PDF_TABLE_THEME_PRESETS','toTables','lookupFlag','charToGlyph','rendered','resolveResourceFontFamily','fr-MC','registeredContexts','pageById','getCommands','Font.toBuffer\x20is\x20deprecated.\x20Use\x20Font.toArrayBuffer\x20instead.','NAME','amd','kerning','reachableDisplayListIdsByPage','textState','insertToken','es-GT','getBlendPath','univer-size-5\x20univer-cursor-pointer\x20univer-rounded-sm\x20univer-border\x20univer-border-solid\x20univer-p-0','mutationLog','toCPALcolor','pointerDown','commandResult','x-mac-kannada','RibbonStartGroup','formXObjects','There\x20are\x20still\x20points\x20left\x20in\x20the\x20current\x20contour.','uz-Cyrl','pdf_canvas_','defaultKerningTables','srPhase','ar-IQ','repeat','objectPatches','button','glyphNames','toDOMElement()\x20does\x20not\x20support\x20colr\x20font\x20layers\x20yet','cmap12EncodingID','usMaxContent','_reconcileActivePage','contours','pdfPromoteNativeFormXObjectCommand','Decoded\x20image\x20dimensions\x20must\x20be\x20positive\x20finite\x20numbers.','ScriptList','paragraphSpacingAfter','baseGlyphRecordsOffset','SFRM','displayListIds','eventId','accept','context\x20name\x20\x27','baselineShift','M12.5982\x203.13985C12.5982\x202.77258\x2012.8959\x202.47485\x2013.2632\x202.47485H14.3158C14.683\x202.47485\x2014.9808\x202.77258\x2014.9808\x203.13985C14.9808\x203.50712\x2014.683\x203.80485\x2014.3158\x203.80485H13.2632C12.8959\x203.80485\x2012.5982\x203.50712\x2012.5982\x203.13985Z','canvas','processText','The\x20font\x20object\x20is\x20required\x20to\x20read\x20the\x20svg\x20table\x20in\x20order\x20to\x20get\x20the\x20image.','getNewPdfEditorMutationBatches','string','draft','privateDict','addObjectMutationId','startPoint','univer-min-h-8\x20univer-truncate\x20univer-rounded-md\x20univer-bg-gray-50\x20univer-px-2\x20univer-py-1.5\x20univer-text-sm\x20univer-text-gray-700\x20dark:!univer-bg-gray-700\x20dark:!univer-text-gray-200','lookup\x20type\x205\x20format\x20must\x20be\x201,\x202\x20or\x203.','ItalicIcon','baseGlyphs\x20must\x20be\x20sorted\x20by\x20GlyphID\x20in\x20ascending\x20order,\x20but\x20glyphID\x20','M13.2632\x2012.1951C12.8959\x2012.1951\x2012.5982\x2012.4928\x2012.5982\x2012.8601C12.5982\x2013.2273\x2012.8959\x2013.5251\x2013.2632\x2013.5251H14.3158C14.683\x2013.5251\x2014.9808\x2013.2273\x2014.9808\x2012.8601C14.9808\x2012.4928\x2014.683\x2012.1951\x2014.3158\x2012.1951H13.2632Z','todo-list-double-icon','toCoordinate','HELV','xuid','yPlaDevice','prog','vsindex','supported','minMemType1','M1.3999\x209.8334C1.3999\x209.50203\x201.66853\x209.2334\x201.9999\x209.2334H13.9999C14.3313\x209.2334\x2014.5999\x209.50203\x2014.5999\x209.8334C14.5999\x2010.1648\x2014.3313\x2010.4334\x2013.9999\x2010.4334H1.9999C1.66853\x2010.4334\x201.3999\x2010.1648\x201.3999\x209.8334Z','No\x20unitsPerEm\x20specified.','createdTimestamp','download','pdf.menu.view.bounds','startGlyphID','pdf-image-resource-','FontIds','borders','mimeType','toString','rotate','M10.2289\x206.40552C9.89754\x206.40552\x209.62891\x206.67415\x209.62891\x207.00552C9.62891\x207.33689\x209.89754\x207.60552\x2010.2289\x207.60552H12.2954V14.0055C12.2954\x2014.3369\x2012.564\x2014.6055\x2012.8954\x2014.6055C13.2268\x2014.6055\x2013.4954\x2014.3369\x2013.4954\x2014.0055V7.60552H15.5622C15.8936\x207.60552\x2016.1622\x207.33689\x2016.1622\x207.00552C16.1622\x206.67415\x2015.8936\x206.40552\x2015.5622\x206.40552H10.2289Z','Image\x20dimensions,\x20page\x20dimensions,\x20and\x20maxPageRatio\x20must\x20be\x20positive\x20finite\x20numbers\x20no\x20greater\x20than\x20','materializePdfEditorPageProjection','selectionFocus','PDF\x20thumbnail\x20rendering\x20requires\x20a\x20dedicated\x20Worker\x20scope.','blueScale','lastPointOfContour','qu-BO','fail','setPreviewSession','overlayObjects','palettes','suppressionMutationId','buildPdfRenderPlan','getRev','ZAPFDINGBATS','version','M12.8481\x208.00049V3.87451C12.8481\x203.13737\x2012.2503\x202.5398\x2011.5132\x202.53955H4.48682C3.74952\x202.53955\x203.15186\x203.13721\x203.15186\x203.87451V12.1255C3.15186\x2012.8628\x203.74952\x2013.4604\x204.48682\x2013.4604H6.99951L7.1333\x2013.4741C7.43655\x2013.536\x207.66454\x2013.804\x207.66455\x2014.1255C7.66455\x2014.447\x207.43655\x2014.715\x207.1333\x2014.7769L6.99951\x2014.7905H4.48682C3.01498\x2014.7905\x201.82178\x2013.5973\x201.82178\x2012.1255V3.87451C1.82178\x202.40267\x203.01498\x201.20947\x204.48682\x201.20947H11.5132C12.9848\x201.20972\x2014.1772\x202.40283\x2014.1772\x203.87451V8.00049C14.177\x208.36738\x2013.8801\x208.6643\x2013.5132\x208.66455C13.1461\x208.66455\x2012.8484\x208.36754\x2012.8481\x208.00049Z','licenseURL','Plugin','thumbnail','trans','hvar','scale01','application/x-font-ttf','ms-Arab','PageId','OTHERS','M2.22891\x202.07227C1.89754\x202.07227\x201.62891\x202.34089\x201.62891\x202.67227C1.62891\x203.00364\x201.89754\x203.27227\x202.22891\x203.27227H6.29541V14.0056C6.29541\x2014.337\x206.56404\x2014.6056\x206.89541\x2014.6056C7.22678\x2014.6056\x207.49541\x2014.337\x207.49541\x2014.0056V3.27227H11.5622C11.8936\x203.27227\x2012.1622\x203.00364\x2012.1622\x202.67227C12.1622\x202.34089\x2011.8936\x202.07227\x2011.5622\x202.07227H2.22891Z','enableTransparencyGroups','UNIVER_PDF','panose','parseUShort','fonts','choices','undoBatchIds','ar-KW','pdfs-ui.inspector.titles.image','PDF\x20page\x20not\x20found:\x20','Card8','top','getLookupMethod','ResizeObserver','This\x20font\x20provides\x20an\x20HVAR\x20table,\x20but\x20no\x20hmtx\x20table\x20to\x20vary.','getUShort','insertTable','zoom\x20must\x20be\x20a\x20positive\x20finite\x20number','intermediateStartTuple','dy2','PdfAssetStorageKind','getImage','pdfs-ui.pageThumbnail.moveUp','updateFeatures','REDO','No\x20feature\x20for\x20script\x20','distinctUntilChanged','univer-w-auto','peakTuple','Lookup\x20type\x202\x20substFormat\x20must\x20be\x201.','pdfInsertListItemCommand','ushortList','IconManager','addMultiple','pdfs-ui.contextMenu.bringForward','maxZones','END','getPageRevision','_soft_mask','bboxHeight',',\x20encodingId\x20','useLayoutEffect','CFF\x20CharString\x20operator\x20return\x20(11)\x20is\x20not\x20supported\x20in\x20CFF2','languageID','x-mac-oriya','es-MX','DICT','TodoListDoubleIcon','xMax','cmap','NameRecord','fpgm','assetIds','typ1','thai','verticalAlign','blueFuzz','maxContours','delete','viewportHeight','gasp','zp0','FontFace','applyHistory','svgDocumentListOffset','addUnicode','postScriptName','PatternIds','widthDevicePx','_componentManager','applyPdfEditorTextStoryPatch','pdfs-ui.ribbon.listPresets.parenDecimal','firstLayerIndex_','canMoveUp','showBounds','pdfs-ui.tableTheme.tableTheme','pointsTransform','multiply','autoFlip','preferredSubfamily','get','RibbonViewGroup','_failure','SELECTOR','removeChild','topDicts','Ligature:\x20unable\x20to\x20modify\x20coverage\x20table\x20format\x20','showRaw','strings','skip','1527234lffXAv','cvCutIn','univer-font-semibold','clearUndoRedo','addBezier','MoreDownIcon','ar-JO','descender','itemVariationStore','weightClass','type','row_','current','es-CL','baseSession','index','_createSource','scale','widthCssPx','saturation','pdfAddDividerCommand','se-FI','COLR','_ensureRemoteImage','Helvetica,\x20Arial,\x20sans-serif','M9.47697\x2011.6968H11.5463H13.6156C13.9829\x2011.6968\x2014.2807\x2011.9946\x2014.2807\x2012.3618C14.2807\x2012.7291\x2013.9829\x2013.0269\x2013.6156\x2013.0269H9.47697C9.10981\x2013.0267\x208.81193\x2012.729\x208.81193\x2012.3618C8.81193\x2011.9946\x209.10981\x2011.6969\x209.47697\x2011.6968Z','cff2','_fpgmState','Unsupported\x20STAT\x20table\x20version\x20','colorFormat','scale10','M4.1302\x2012.4251C4.25802\x2013.7417\x205.36779\x2014.7708\x206.71792\x2014.7708H11.7179C13.1539\x2014.7708\x2014.3179\x2013.6067\x2014.3179\x2012.1708V6.1708C14.3179\x204.78586\x2013.2351\x203.65383\x2011.8698\x203.57517C11.742\x202.25858\x2010.6323\x201.22949\x209.28213\x201.22949H4.28213C2.84619\x201.22949\x201.68213\x202.39355\x201.68213\x203.82949V9.82949C1.68213\x2011.2144\x202.76497\x2012.3465\x204.1302\x2012.4251ZM10.6583\x203.5708H6.71792C5.28198\x203.5708\x204.11792\x204.73486\x204.11792\x206.1708V11.22C3.4221\x2011.1387\x202.88213\x2010.5471\x202.88213\x209.82949V3.82949C2.88213\x203.05629\x203.50893\x202.42949\x204.28213\x202.42949H9.28213C9.96695\x202.42949\x2010.5369\x202.92119\x2010.6583\x203.5708ZM13.1179\x206.1708C13.1179\x205.3976\x2012.4911\x204.7708\x2011.7179\x204.7708H6.71792C5.94472\x204.7708\x205.31792\x205.3976\x205.31792\x206.1708V12.1708C5.31792\x2012.944\x205.94472\x2013.5708\x206.71792\x2013.5708H11.7179C12.4911\x2013.5708\x2013.1179\x2012.944\x2013.1179\x2012.1708V6.1708Z','RibbonPosition','hasChar','UniverProLicense','nonDefaultUVS','ContextMenuGroup','coverageTable','fallbackMesh','avar\x20axis\x20count\x20must\x20correspond\x20to\x20fvar\x20axis\x20count','resolve','IUndoRedoService','NULL','addPoint','pdfs-ui.inspector.fields.revision','fr-CH','white','shadingAssetId','italicAngle','column_','widgetObjectId','stemSnapV','PageIds','pageBottom','activePageId','fillPatternId','classFormat','parseFixed','copy-icon','getContext','strokeStyle','materializePdfEditorDocumentSnapshot','substFormat','recordList32','getULong','translateY(','style','NUMBER16','_fontOutlines','dashPhase','true','getPdfPageVisibleModelBox','binSearch','Unknown\x20operand\x20type\x20','_hmtxTableData','normalAppearanceRef','M14.4605\x202.56689H6.8981C6.56672\x202.56689\x206.2981\x202.83552\x206.2981\x203.16689C6.2981\x203.49827\x206.56672\x203.76689\x206.8981\x203.76689H14.4605C14.7918\x203.76689\x2015.0605\x203.49827\x2015.0605\x203.16689C15.0605\x202.83552\x2014.7918\x202.56689\x2014.4605\x202.56689Z','triggerContextMenu','struct','firstCol','unsubscribe','_changedSubject','accepted','maxMemType1','pdf.operation.insert.page','add','pdfAddTextBoxCommand','pdfReorderObjectCommand','pdfs-ui.operation.page-thumbnail.move-up','_imageIoService','SELECT','parseLongDateTime','FormLayout','_commitResult','pdfs-ui.inspector.fields.y','parseCard8','raw','stdHW','dtree','contextParams','RECORD','addSingle','segCountX2','M4.24365\x204.2458H10.1562C11.0398\x204.2458\x2011.7562\x204.96215\x2011.7562\x205.8458V11.7583H5.84365C4.96\x2011.7583\x204.24365\x2011.042\x204.24365\x2010.1583V4.2458ZM5.44365\x205.4458V10.1583C5.44365\x2010.3792\x205.62274\x2010.5583\x205.84365\x2010.5583H10.5562V5.8458C10.5562\x205.62489\x2010.3771\x205.4458\x2010.1562\x205.4458H5.44365ZM6.2\x206.62H9.78V7.62H6.2V6.62ZM6.2\x208.4H9.78V9.4H6.2V8.4Z','ORDERED_MULTILEVEL',':\x20unknown\x20operator\x201200','Unsupported\x20gasp\x20table\x20version.','gdef','sequenceSetTable','planPdfPageWindow','signal','viewport-updated','rootDisplayListIds','FormDualColumnLayout','Lookup\x20type\x204\x20substFormat\x20must\x20be\x201.','sequences','left-justifying-icon','SQUIGGLY','pdfs-ui.ribbon.actions.flipVertical','pdfInsertPageCommand','offsets','lowestRecPPEM','left','rp1','pdfs-ui.inspector.fields.after','18268wLBXyA','ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»…\u00a0ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ','pdfBoxes','now','toDOMElement','0\x200\x2020\x2021','durable','_fdSelect','Font\x20header\x20has\x20wrong\x20magic\x20number.','coordinates','ySubscriptXOffset','devicePixelRatio','nominalWidthX','parseList','\x20fill=\x22','atomic','letterSpacing','parseItemVariationSubtable','encodingID','_createCopyPageId','click','Writing\x20of\x20gvar\x20tables\x20is\x20not\x20yet\x20supported.','TABLE','freeze','ROTATE_CLOCKWISE','batchById','coords','parseClassDef','_imageChangedSubscription','PRESERVE_NATIVE','LINE_TO','substitutionTable','bottom','advanceWidth','bProportion','rmoveto','fontSizeCssPx','getCard16','inputGlyphCount','_getFontResourceUrl','M1.01953\x207.99972C1.01953\x207.63245\x201.31726\x207.33472\x201.68453\x207.33472H14.3158C14.683\x207.33472\x2014.9808\x207.63245\x2014.9808\x207.99972C14.9808\x208.36699\x2014.683\x208.66472\x2014.3158\x208.66472H1.68453C1.31726\x208.66472\x201.01953\x208.36699\x201.01953\x207.99972Z','sTypoAscender','pointerCancel','M10.1463\x204.53859L10.2801\x204.55226C10.5832\x204.61419\x2010.8113\x204.8822\x2010.8113\x205.20363C10.8113\x205.52506\x2010.5832\x205.79306\x2010.2801\x205.85499L10.1463\x205.86867H5.85331C5.48604\x205.86867\x205.18827\x205.5709\x205.18827\x205.20363C5.18827\x204.83636\x205.48604\x204.53859\x205.85331\x204.53859H10.1463Z','text-icon_clip0_1293_26','pdfs-ui.inspector.actions.bringForward','axes','horizontally-icon','knockout','pdfSelectTextRangeCommand','storyLayout','\x22/>','backtrack','pdfMoveObjectCommand','zp1','abortListener','path','Unable\x20to\x20write\x20GSUB:\x20script\x20','blur','setPaletteIndex','language','\x27\x20is\x20not\x20registered.','avar','_disposed','newToken',':display-list:','pdfs-ui.inspector.fields.operators','univer-flex\x20univer-size-full\x20univer-items-start\x20univer-justify-center\x20univer-overflow-auto\x20univer-bg-gray-100\x20univer-p-6\x20dark:!univer-bg-gray-950','URL','usWidthClasses','name','Unsupported\x20kern\x20sub-table\x20version.','_notifyChanged','IMenuManagerService','serif','createWorker','ATTACHED','push','_privateDict','vertices','univer-flex\x20univer-items-center\x20univer-gap-1','inverse','mapTagsToFeatures','M5.3313\x201.4667C5.3313\x201.13533\x205.59993\x200.866699\x205.9313\x200.866699H10.069C10.4004\x200.866699\x2010.669\x201.13533\x2010.669\x201.4667C10.669\x201.79807\x2010.4004\x202.0667\x2010.069\x202.0667H5.9313C5.59993\x202.0667\x205.3313\x201.79807\x205.3313\x201.4667Z','univer-box-border\x20univer-w-[250px]\x20univer-rounded-lg\x20univer-bg-white\x20univer-p-2\x20dark:!univer-bg-gray-900\x20dark:!univer-text-white','\x20in\x20gvar\x20table\x20does\x20not\x20match\x20the\x20number\x20of\x20axes\x20','dest','getLookupTables','maxWidthCssPx','UNIVERSER_RESOURCE','IContextMenuService','listLevel','Generated\x20managed\x20image\x20source\x20is\x20not\x20valid\x20for\x20durable\x20editor\x20state.','trying\x20to\x20get\x20variation\x20adjustment\x20from\x20non-existent\x20table\x20\x22','end','defaultAppearance','itemCount','kind','runRanges','univer-pdf-thumbnail-renderer','parseULong','pdfs-ui.inspector.fields.middle','flags','de-AT','invalid\x20S45ROUND\x20value','setLineDash','pdfs-ui.pdf-page-region-index.service','_fontFaces','sfnt','metricDataFormat','rp2','</svg>','pdfPromoteNativeTextCommand','needsAppearance','ITALIC','charToGlyphIndex','x-mac-malayalam','begin','activeState','getPdfEditorEditStateRuntimeIndex','\x22Latin\x20Modern\x20Roman\x22,\x20\x22Computer\x20Modern\x20Serif\x22,\x20\x22CMU\x20Serif\x22,\x20\x22Times\x20New\x20Roman\x22,\x20serif','sma-NO','getBoundingClientRect','hdrSize','kerningPairs','empty','_resolve','getByte','srThreshold','pdfs-ui.ribbon.actions.bounds','dispatch','comment-icon','textAnchor','es-SV','split','storyIds','getTypeOfUnitAdded$','reset','enumerable','isFixedPitch','parseValueRecordList','start','usFirstCharIndex','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»…\u00a0ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙˆ˜¯˘˙˚¸˝˛ˇ','ar-OM','xAdvDevice','weightName','glyphLoader','mutations','pageRaster','FontFamilyDropdown','PdfExportDisposition','activateDefaultVariation','PdfObjectOrigin','</defs><use\x20href=\x22#glyph','render','fillStyle','minRightSideBearing','tagName','globalSubrIndex','loca','getSession','cidFontVersion','ISidebarService','isSuppressed','reservedPad','clearRect','parseInt','startsWith','glyphIndex','parseDeltaSets','nextTouched','OffSize','hhea','http://www.w3.org/2000/svg','M10.8813\x2014.4312V10.2925C10.8813\x209.92522\x2011.1791\x209.62745\x2011.5463\x209.62745C11.9136\x209.62745\x2012.2114\x209.92522\x2012.2114\x2010.2925V14.4312C12.2112\x2014.7983\x2011.9135\x2015.0962\x2011.5463\x2015.0962C11.1791\x2015.0962\x2010.8814\x2014.7983\x2010.8813\x2014.4312Z','alternate','GPOS/GSUB\x20lookup\x20type\x20','_pageRegionService','OPERATOR','LocaleService','OTTO','Unable\x20to\x20write\x20GSUB\x20lookup\x20type\x20','az-Arab','pageHeightPt','keys','parsePointer','chainContextTable','fromCoordinate_','charCodeAt','LINE','Unable\x20to\x20load\x20PDF\x20font\x20resource\x20','call','Unsupported\x20kern\x20table\x20version\x20(','insertPage','M1.09985\x203.64443C1.09985\x203.31306\x201.36848\x203.04443\x201.69985\x203.04443H14.2999C14.6312\x203.04443\x2014.8999\x203.31306\x2014.8999\x203.64443C14.8999\x203.9758\x2014.6312\x204.24443\x2014.2999\x204.24443H1.69985C1.36848\x204.24443\x201.09985\x203.9758\x201.09985\x203.64443Z','CFF2\x20CharString\x20operator\x20vsindex\x20(15)\x20is\x20not\x20supported\x20in\x20CFF','pdf-ui','pdfSelectAtPointCommand','lookupTable','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØḂ±≤≥ḃĊċḊḋḞḟĠġṀæøṁṖṗɼƒſṠ«»…\u00a0ÀÃÕŒœ–—“”‘’ṡẛÿŸṪ€‹›Ŷŷṫ·Ỳỳ⁊ÂÊÁËÈÍÎÏÌÓÔ♣ÒÚÛÙıÝýŴŵẄẅẀẁẂẃ','completed','_fdArray','nameIndex','unitId','documentId','formXObject','edit','pageIdsByObjectId','sequenceRule','requiredHeightCssPx','pdfs-ui.ribbon.actions.divider','close','reserved2','ulUnicodeRange2','parseCoverage','@univerjs-pro/pdfs-ui','commandResults','feature','hmtx','parseScriptList','delete-icon','Only\x20the\x20first\x20kern\x20subtable\x20is\x20supported.','block','stch','suppressionId','runs','pdfExitListCommand','addEventListener','source','featureIndex','SHORT','Home','sub','UNDO','objects','parseULongList','ArrowLeft','pdfs-ui.inspector.fields.fieldType','unicode','quadding','ros','loop','closePath','fillRect','CommentIcon','addText','colorChannel1','writingMode','notice','PdfLayerType','lineHeightCssPx','editState','yMax','toleranceCssPx','projections','stringToGlyphs','_image','prs','_copy_','sv-FI','file','text-icon','pdfs-ui.inspector.fields.leftIndent','patterns','Disposable','zh-MO','canRotateClockwise','commands','cursive','UNORDERED_CIRCLE','scripts','connectInjector','direction','parseSID','getSourceSuppressionsForPage','registerCommand','codePointAt','Matched\x20points\x20out\x20of\x20range\x20in\x20','exclusion','createAssetId','_runtimeService','displayListIdsByPage','tableTheme','LUCIDA','deleteColor','textStories','sr-Latn','Enter','italic-icon','bold-icon','Unsupported\x20fvar\x20table\x20version.','commit','stops','UNORDERED_DIAMOND','Invalid\x20zone\x20pointer','setState','formFieldTargets','pdfAddListCommand','_loadingFontOutlines','Hinting\x20call\x20depth\x20exceeded\x20maximum\x20of\x20','isArray','pdf-page-','unordered','rasterized','/Off','drawPoints','fdSelect','editor','bufferAfter','line','updateEphemeral','UNIT_UPDATED','getInstance','_failedFontAssets','CommandType','maxStorage','axisValueMap_','useObservable','se-SE','featuresTags','DEPRECATED!\x20migrate\x20to:\x20opentype.parse(buffer,\x20opt)\x20See:\x20https://github.com/opentypejs/opentype.js/issues/675','label','Unable\x20to\x20load\x20PDF\x20image\x20resource\x20',':layer-','lookup','GPOS\x20Lookup\x207\x20not\x20supported','Coverage\x20format\x20must\x20be\x201\x20or\x202.','PRIVATE_POINT_NUMBERS','sTypoDescender','sTypoLineGap','M6.12398\x208.30171C6.35829\x208.0674\x206.73819\x208.0674\x206.97251\x208.30171L8.00007\x209.32928L9.02764\x208.30171C9.26195\x208.0674\x209.64185\x208.0674\x209.87617\x208.30171C10.1105\x208.53603\x2010.1105\x208.91593\x209.87617\x209.15024L8.8486\x2010.1778L9.87617\x2011.2054C10.1105\x2011.4397\x2010.1105\x2011.8196\x209.87617\x2012.0539C9.64185\x2012.2882\x209.26195\x2012.2882\x209.02764\x2012.0539L8.00007\x2011.0263L6.97251\x2012.0539C6.73819\x2012.2882\x206.35829\x2012.2882\x206.12398\x2012.0539C5.88966\x2011.8196\x205.88966\x2011.4397\x206.12398\x2011.2054L7.15154\x2010.1778L6.12398\x209.15024C5.88966\x208.91593\x205.88966\x208.53603\x206.12398\x208.30171Z','es-DO','callDepth','font.onGlyphUpdated','documentElement','getTable','CENTER','This\x20font\x20provides\x20an\x20HVAR\x20table,\x20but\x20no\x20fvar\x20table,\x20which\x20is\x20required\x20for\x20variable\x20fonts.','rxjs','forwardRef','classDef1','history','\x20is\x20not\x20supported\x20in\x20chaining\x20substitution','stopPropagation','TRANSFORM','removeToken:\x20invalid\x20token\x20index.','mergeMenu','M13.4\x203.3L9.8\x208L13.4\x2012.7V3.3Z',':\x20GPOS\x20lookup\x20type\x201\x20format\x20must\x20be\x201\x20or\x202.','image/avif,image/bmp,image/gif,image/jpeg,image/png,image/webp','platformID','listItem','observe','viewportWidthCssPx','message','matchedPoints','splitPdfEditorSessionState','radio','@univerjs-pro/pdfs','private','parseListOfLists','getUnitId','dispose$','_localeService','postScriptFindFontName','SHADING','lookupListTable','stringOffset','M10.3014\x201.70389C9.85268\x200.479568\x208.12109\x200.479557\x207.67238\x201.70389L4.72235\x209.75326C4.60832\x2010.0644\x204.76811\x2010.4091\x205.07924\x2010.5231C5.39038\x2010.6371\x205.73504\x2010.4773\x205.84907\x2010.1662L6.99975\x207.02646C7.03588\x207.03324\x207.07314\x207.03679\x207.11123\x207.03679H10.9778L12.1247\x2010.1662C12.2387\x2010.4773\x2012.5834\x2010.6371\x2012.8945\x2010.5231C13.2057\x2010.4091\x2013.3654\x2010.0644\x2013.2514\x209.75326L10.3014\x201.70389ZM10.538\x205.83679L9.17467\x202.11682C9.11057\x201.94192\x208.8632\x201.94192\x208.7991\x202.11682L7.43576\x205.83679H10.538Z','M8\x2010.2V11.8','scriptTag','stringIndex','fsType','showSelection','pdfs-ui.inspector.fields.lineHeight','assign','1.0.0-alpha.8','pdfPointToPageModelPoint','table','en-TT','getCoverageIndex','pdfUpdateTableCellStyleCommand','displayName','sendBackward','ImageUploadStatusType','pdfs-ui.inspector.fields.bottom','INSERT','_executeHistorySync','Injector','defaultWidthX','postScriptNameID_','LONG_WORDS','assert','xyvw','lineDashOffset','LONGDATETIME','This\x20is\x20a\x20CFF2\x20font,\x20but\x20FDArray\x20information\x20is\x20missing','getDefaultCoordinates','univer-flex\x20univer-flex-shrink-0\x20univer-justify-end','formFieldBounds','classId','rgb(','tableList','list32','ensureCPAL','_injector','DISPLAY','invalid\x20\x27','heightDevicePx','sourceSuppressions','font\x20\x27','familyName','gvar','getKerningValue','currentTarget','pdf.menu.view.annotations','image/svg+xml','Charsets','glyph','No\x20colorRecordIndices\x20given.','trim','textLength','deltas','fontName','annotation','interaction','black','removeEventListener','getPdfTableCellRect','pdfs-ui.inspector.fields.x','frame','When\x20creating\x20a\x20new\x20Font\x20object,\x20styleName\x20is\x20required.','ligatureSets','backtrackCoverage','getVariableAdjustment','Color\x20index\x20out\x20of\x20range\x20(colorRecords.length:\x20','numberOfGlyphs','underlinePosition','colr','layerRecords','.notdef,space,dollaroldstyle,dollarsuperior,parenleftsuperior,parenrightsuperior,twodotenleader,onedotenleader,comma,hyphen,period,fraction,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,colon,semicolon,commasuperior,threequartersemdash,periodsuperior,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,fi,fl,ffi,ffl,parenleftinferior,parenrightinferior,hyphensuperior,colonmonetary,onefitted,rupiah,centoldstyle,figuredash,hypheninferior,onequarter,onehalf,threequarters,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,onesuperior,twosuperior,threesuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior','usWinDescent','firstRow','pdfs-ui.inspector.sections.image','events','_idCounters','runContextCheck','1291599cuLDlT','axisSize','padEnd','handled','numPaletteEntries','INDEX','arab','axisSegmentMaps','TUPLE_INDEX_MASK','createLinearGradient','numberOfHMetrics','tableName','_replacement_link','defaultValue','getAll','lookupRecords','match','prototype','pdfs-ui.tableTheme.headerRow','pointer','terminate','MEDIA','IUniverInstanceService','move-down','pdfs-ui.tableTheme.bestMatch','globalCompositeOperation','onClick','baseDir','OBJECT','pdf.operation.delete-selection','_context$','pageObjectIds','CLOSE','topDictIndex','nominalValue','showRawObjects','createPdfPage','classSeqRuleSetTable','_loadingFontAssets','radius','hinting','usePalette','clientId','maxValue_','deleted','lineWidth','schedule','stack','FIXED','getMultiple','input','x-mac-lao','registerFeatures','move','.notdef','pdfs-ui.ribbon.actions.select','M1.7643\x204.13354C1.7643\x202.82523\x202.82488\x201.76465\x204.13319\x201.76465H11.8665C13.1748\x201.76465\x2014.2354\x202.82524\x2014.2354\x204.13354V11.8669C14.2354\x2013.1752\x2013.1748\x2014.2358\x2011.8665\x2014.2358H4.13318C2.82488\x2014.2358\x201.7643\x2013.1752\x201.7643\x2011.8669V6.1462C1.76388\x206.13711\x201.76367\x206.12797\x201.76367\x206.11878C1.76367\x206.10959\x201.76388\x206.10045\x201.7643\x206.09136V4.13354ZM2.94652\x206.70989V11.8669C2.94652\x2012.5222\x203.47781\x2013.0535\x204.13318\x2013.0535H5.52732V6.70989H2.94652ZM5.52732\x205.52767H2.94652V4.13354C2.94652\x203.47816\x203.47781\x202.94687\x204.13319\x202.94687H5.52732V5.52767ZM6.70954\x206.70989V13.0535H11.8665C12.5219\x2013.0535\x2013.0532\x2012.5222\x2013.0532\x2011.8669V6.70989L6.70954\x206.70989ZM13.0532\x205.52767L6.70954\x205.52767V2.94687H11.8665C12.5219\x202.94687\x2013.0532\x203.47816\x2013.0532\x204.13354V5.52767Z','status','segments','EPHEMERAL_UPDATED','MARKED_CONTENT_BEGIN','pdfs-ui.ribbon.actions.image','No\x20encoding\x20function\x20for\x20type\x20','cffEncoding','axisRecord_','truetype','ephemeral-updated','getFeatureLookups','model','\x22\x20stroke-width=\x22','range','composeRUD:\x20one\x20or\x20more\x20operations\x20hasn\x27t\x20completed\x20successfully','streams','group','dx2','univerjs-icon\x20univerjs-icon-','f2Dot14','tile','max','cell','getPageProjection','clientHeight','clipPath','Table','tag\x20','flat','x-mac-gaelic','sourceSuppressionMatcher','yStrikeoutSize','parse','numGlyphs','FORM','hex-6','rotate-clockwise','Card16','INTERMEDIATE_REGION','GSUB','sourceIndex','aborted','pdfUpdateTableThemeCommand','#111827','floor','cid','Can\x27t\x20infer\x20numPaletteEntries\x20on\x20multiple\x20colorRecordIndices','CFF\x20Table\x20CID\x20Font\x20FDSelect\x20format\x20','\x27\x20for\x20script\x20\x27','No\x20sizeOf\x20function\x20for\x20field\x20type\x20','dash','String\x20INDEX','getCurrentUnitOfType','parseOffset32',':\x20Coverage\x20format\x20must\x20be\x201\x20or\x202.','nativeSnapshot','compositeSoftMask','gaspRanges','pdfs-ui.inspector.fields.fontSize','touchDependencies','real','pdfs-ui.inspector.sections.source','Only\x20CPALv0\x20are\x20supported.','_generation','fillColor','lookupListIndexes','univer-mb-0','lookahead','pdfs-ui.contextMenu.flipHorizontal','trimEnd','sCapHeight','SVG\x20','insertParagraph','bold','es-CO','DELTA_RUN_COUNT_MASK','fontDirectionHint','usLastCharIndex','pdf.operation.insert.text-box','imageSourceType','End','#dc2626','UniverProPdfsUi','ar-AE','viewportHeightCssPx','univer-flex\x20univer-flex-col\x20univer-gap-4','dsb','Top\x20DICT\x20INDEX','key','sign','applyPdfEditorTextRunsEdit','handleKeyDown','classDefTable','endsWith','pointerUp','cropBox','getImageData','char','sizeOf','.notdef,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quoteright,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,quoteleft,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,exclamdown,cent,sterling,fraction,yen,florin,section,currency,quotesingle,quotedblleft,guillemotleft,guilsinglleft,guilsinglright,fi,fl,endash,dagger,daggerdbl,periodcentered,paragraph,bullet,quotesinglbase,quotedblbase,quotedblright,guillemotright,ellipsis,perthousand,questiondown,grave,acute,circumflex,tilde,macron,breve,dotaccent,dieresis,ring,cedilla,hungarumlaut,ogonek,caron,emdash,AE,ordfeminine,Lslash,Oslash,OE,ordmasculine,ae,dotlessi,lslash,oslash,oe,germandbls,onesuperior,logicalnot,mu,trademark,Eth,onehalf,plusminus,Thorn,onequarter,divide,brokenbar,degree,thorn,threequarters,twosuperior,registered,minus,eth,multiply,threesuperior,copyright,Aacute,Acircumflex,Adieresis,Agrave,Aring,Atilde,Ccedilla,Eacute,Ecircumflex,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Ntilde,Oacute,Ocircumflex,Odieresis,Ograve,Otilde,Scaron,Uacute,Ucircumflex,Udieresis,Ugrave,Yacute,Ydieresis,Zcaron,aacute,acircumflex,adieresis,agrave,aring,atilde,ccedilla,eacute,ecircumflex,edieresis,egrave,iacute,icircumflex,idieresis,igrave,ntilde,oacute,ocircumflex,odieresis,ograve,otilde,scaron,uacute,ucircumflex,udieresis,ugrave,yacute,ydieresis,zcaron,exclamsmall,Hungarumlautsmall,dollaroldstyle,dollarsuperior,ampersandsmall,Acutesmall,parenleftsuperior,parenrightsuperior,266\x20ff,onedotenleader,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,commasuperior,threequartersemdash,periodsuperior,questionsmall,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,ffi,ffl,parenleftinferior,parenrightinferior,Circumflexsmall,hyphensuperior,Gravesmall,Asmall,Bsmall,Csmall,Dsmall,Esmall,Fsmall,Gsmall,Hsmall,Ismall,Jsmall,Ksmall,Lsmall,Msmall,Nsmall,Osmall,Psmall,Qsmall,Rsmall,Ssmall,Tsmall,Usmall,Vsmall,Wsmall,Xsmall,Ysmall,Zsmall,colonmonetary,onefitted,rupiah,Tildesmall,exclamdownsmall,centoldstyle,Lslashsmall,Scaronsmall,Zcaronsmall,Dieresissmall,Brevesmall,Caronsmall,Dotaccentsmall,Macronsmall,figuredash,hypheninferior,Ogoneksmall,Ringsmall,Cedillasmall,questiondownsmall,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior,Agravesmall,Aacutesmall,Acircumflexsmall,Atildesmall,Adieresissmall,Aringsmall,AEsmall,Ccedillasmall,Egravesmall,Eacutesmall,Ecircumflexsmall,Edieresissmall,Igravesmall,Iacutesmall,Icircumflexsmall,Idieresissmall,Ethsmall,Ntildesmall,Ogravesmall,Oacutesmall,Ocircumflexsmall,Otildesmall,Odieresissmall,OEsmall,Oslashsmall,Ugravesmall,Uacutesmall,Ucircumflexsmall,Udieresissmall,Yacutesmall,Thornsmall,Ydieresissmall,001.000,001.001,001.002,001.003,Black,Bold,Book,Light,Medium,Regular,Roman,Semibold','MenuItemType','TEXT_RUN','pdfs-ui.inspector.sections.arrange','circle','pdf.operation.arrange-selection','M0.939453\x2012.5002C0.939453\x2011.4325\x201.80504\x2010.5669\x202.87279\x2010.5669C3.94054\x2010.5669\x204.80612\x2011.4325\x204.80612\x2012.5002C4.80612\x2013.568\x203.94054\x2014.4336\x202.87279\x2014.4336C1.80504\x2014.4336\x200.939453\x2013.568\x200.939453\x2012.5002ZM2.87279\x2011.7669C2.46778\x2011.7669\x202.13945\x2012.0952\x202.13945\x2012.5002C2.13945\x2012.9052\x202.46778\x2013.2336\x202.87279\x2013.2336C3.2778\x2013.2336\x203.60612\x2012.9052\x203.60612\x2012.5002C3.60612\x2012.0952\x203.2778\x2011.7669\x202.87279\x2011.7669Z','mn-CN','RAW_PDF_GROUP','defaultRenderOptions','_undoRedoService','TIMES','dlig','emuToPt','cancelIdleCallback','320bVuWxp','offsetToData','familyBlues','minLeftSideBearing','onStarting','parseFeatureList','runtime','numLayers','vstore','compositeFormXObject','objectIds','otherBlues','designer','pdfs-ui.inspector.fields.background','measureText','minValue','getPdfEditorMutationLogRuntimeIndex','bitcount','darken','shift','pdfs-ui.operation.page-thumbnail.delete','description','toSVG','markGlyphSets','pdfs-ui.inspector.actions.addText','groupRef','baseVal','fontProgramKind','\x27\x20doesn\x27t\x20support\x20feature\x20\x27','batchId','ArrowDownIcon','lineTo','parsePackedPointNumbers','overlayTextStories','subscribe','.notdef,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quoteright,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,quoteleft,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,exclamdown,cent,sterling,fraction,yen,florin,section,currency,quotesingle,quotedblleft,guillemotleft,guilsinglleft,guilsinglright,fi,fl,endash,dagger,daggerdbl,periodcentered,paragraph,bullet,quotesinglbase,quotedblbase,quotedblright,guillemotright,ellipsis,perthousand,questiondown,grave,acute,circumflex,tilde,macron,breve,dotaccent,dieresis,ring,cedilla,hungarumlaut,ogonek,caron,emdash,AE,ordfeminine,Lslash,Oslash,OE,ordmasculine,ae,dotlessi,lslash,oslash,oe,germandbls,onesuperior,logicalnot,mu,trademark,Eth,onehalf,plusminus,Thorn,onequarter,divide,brokenbar,degree,thorn,threequarters,twosuperior,registered,minus,eth,multiply,threesuperior,copyright,Aacute,Acircumflex,Adieresis,Agrave,Aring,Atilde,Ccedilla,Eacute,Ecircumflex,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Ntilde,Oacute,Ocircumflex,Odieresis,Ograve,Otilde,Scaron,Uacute,Ucircumflex,Udieresis,Ugrave,Yacute,Ydieresis,Zcaron,aacute,acircumflex,adieresis,agrave,aring,atilde,ccedilla,eacute,ecircumflex,edieresis,egrave,iacute,icircumflex,idieresis,igrave,ntilde,oacute,ocircumflex,odieresis,ograve,otilde,scaron,uacute,ucircumflex,udieresis,ugrave,yacute,ydieresis,zcaron','reqFeatureIndex','positionMapCount_','lookupOrder','asObservable','SID','woff','title','АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»…\u00a0ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю','unsupported\x20DeltaSetIndexMap\x20format\x20','textEditRequested$','Slider','strokeWidth','getDelta','workerRenderer','\x22Courier\x20New\x22,\x20Courier,\x20monospace','clear','maxLeftSideBearing','runId','font/woff','pdfs-ui.inspector.fields.top',':\x20This\x20font\x20file\x20uses\x20an\x20invalid\x20ClassDef\x20format\x20of\x20','univer-box-border\x20univer-flex\x20univer-w-full\x20univer-items-center\x20univer-justify-between\x20univer-bg-white\x20univer-px-5\x20univer-text-gray-900\x20dark:!univer-bg-gray-900\x20dark:!univer-text-white','hex','GPOS','quadTo','M8\x202.2V3.8','UTF8','FWORD','UFWORD','getSubstitutionType','@univerjs/ui','\x20tables.','square','CONTENT','replacementLinkId','fontMatrix','Font\x20doesn\x27t\x20contain\x20TrueType,\x20CFF\x20or\x20CFF2\x20outlines.','abort','open','00000','pdfs-ui.workbench.sidebar.properties','preferPageRaster','PdfEditability','UNORDERED_DISC','PdfEditorMutationSource','baselineY','xPlaDevice','pdf.menu.insert.paragraph','Backspace','Color\x20index\x20out\x20of\x20range\x20(numPaletteEntries:\x20','topDictLength','M10.2\x208H11.8','FLOAT','target',',\x20index:\x20','IConfigService','nativeFormXObjectTargets','merge','paragraphLineHeight','sr-Latn-BA','fontResourceName','ySuperscriptXSize','pdfs-ui.pdf-editor-runtime.service','getOwnPropertyNames','quadraticCurveTo','touch','removeRange','Note:\x20further\x20hinting\x20errors\x20are\x20silenced','setPointerCapture','_notifyResourceChanged','uShortList','rightSideBearing','commandContext','anchors','wordSpacing','chainRuleSetTable','gsub','bContrast','lookupFeature','document_object_image_','getOrCreateSvgImageCacheEntry','x-mac-chinesesimp','Hinting\x20error\x20in\x20FPGM:','createRadialGradient','pdfPromoteNativeImageCommand','MOVE_DOWN','fr-LU','preferredFamily','M0\x200H16V16H0z','then','delta','opCount','M2.2\x208H3.8','hr-BA',':canvas','contextChecks','fontSubfamily','div','univer-flex\x20univer-flex-col\x20univer-gap-2','VIEWPORT_UPDATED','fromSVG','Only\x20COLRv0\x20is\x20currently\x20fully\x20supported.\x20A\x20subset\x20of\x20color\x20glyphs\x20might\x20be\x20available\x20in\x20this\x20font\x20if\x20provided\x20in\x20the\x20v0\x20format.','pdf.operation.insert.list','maxFunctionDefs','PdfEditorToolMode','options','lsb','byteOffset','ARIAL','0\x200\x2017\x2016','endCoord','usWeightClass','_isEditorEnabled','bestMatch','data:image/svg+xml;charset=utf-8,','Table\x20name','Module','section','getScriptFeatures','\x20,\x09\x0a\x0d\x0c\x0b','M6.98319\x2010.1314L7.11698\x2010.145C7.42003\x2010.207\x207.64823\x2010.475\x207.64823\x2010.7964C7.64823\x2011.1178\x207.42003\x2011.3858\x207.11698\x2011.4478L6.98319\x2011.4614H5.85331C5.48604\x2011.4614\x205.18827\x2011.1637\x205.18827\x2010.7964C5.18827\x2010.4291\x205.48604\x2010.1314\x205.85331\x2010.1314H6.98319Z','abortController','isCIDFont','The\x20current\x20PDF\x20document,\x20session,\x20or\x20page\x20changed\x20while\x20the\x20image\x20was\x20loading.','univer-box-border\x20univer-flex\x20univer-h-full\x20univer-w-[220px]\x20univer-shrink-0\x20univer-flex-col\x20univer-overflow-hidden\x20univer-bg-white\x20univer-p-2.5\x20dark:!univer-bg-gray-900','apply','cssPoint','resolveResourceImage','_records','advances','M11.0936\x2017.3406C11.1522\x2017.1992\x2011.1522\x2017.02\x2011.1522\x2016.6616V7.61701L14.0776\x2010.5424C14.3311\x2010.7959\x2014.4578\x2010.9226\x2014.5991\x2010.9811C14.7876\x2011.0592\x2014.9994\x2011.0592\x2015.1879\x2010.9811C15.3292\x2010.9226\x2015.456\x2010.7959\x2015.7094\x2010.5424C15.9628\x2010.289\x2016.0896\x2010.1623\x2016.1481\x2010.0209C16.2262\x209.83243\x2016.2262\x209.62066\x2016.1481\x209.43217C16.0896\x209.29081\x2015.9628\x209.16409\x2015.7094\x208.91065L10.9645\x204.16576C10.9207\x204.12105\x2010.8714\x204.07178\x2010.8161\x204.01648L10.8159\x204.0163C10.5916\x203.792\x2010.4666\x203.66696\x2010.3428\x203.60058C10.3261\x203.59154\x2010.3094\x203.58358\x2010.2925\x203.57658C10.104\x203.49851\x209.89226\x203.49851\x209.70378\x203.57658C9.56242\x203.63514\x209.4357\x203.76186\x209.18226\x204.0153C9.09955\x204.09801\x209.03034\x204.16722\x208.97258\x204.22785L4.28878\x208.91166C4.03534\x209.1651\x203.90862\x209.29182\x203.85006\x209.43318C3.77199\x209.62166\x203.77199\x209.83344\x203.85006\x2010.0219C3.90862\x2010.1633\x204.03534\x2010.29\x204.28878\x2010.5434C4.54221\x2010.7969\x204.66893\x2010.9236\x204.8103\x2010.9822C4.99878\x2011.0602\x205.21056\x2011.0602\x205.39904\x2010.9822C5.5404\x2010.9236\x205.66712\x2010.7969\x205.92056\x2010.5434L5.92056\x2010.5434L8.84449\x207.61951V16.6616C8.84449\x2017.02\x208.84449\x2017.1992\x208.90305\x2017.3406C8.98112\x2017.5291\x209.13087\x2017.6788\x209.31935\x2017.7569C9.46072\x2017.8154\x209.63992\x2017.8154\x209.99834\x2017.8154C10.3568\x2017.8154\x2010.536\x2017.8154\x2010.6773\x2017.7569C10.8658\x2017.6788\x2011.0156\x2017.5291\x2011.0936\x2017.3406Z','markup','No\x20encoding\x20function\x20for\x20field\x20type\x20','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ\u00a0ÀÃÕŒœĐ—“”‘’÷◊©⁄€‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ','uvsMappings','substr','create','parseTupleRecords','UNORDERED','metas','length\x20','contextEnd','form_xobject_','pdfs-ui.ribbon.listPresets.lowerAlpha','_nominalWidthX','hexa','PATH','pdf-ui:','displayList','unit','cropImage','firstLineIndent','rangeMinValue','width','getPdfDocumentRuntimeIndex','ordering','No\x20sizeOf\x20function\x20for\x20type\x20','adapter','M8.90467\x203.99244C8.84611\x204.1338\x208.84611\x204.31301\x208.84611\x204.67143V13.716L5.92068\x2010.7906C5.66724\x2010.5371\x205.54052\x2010.4104\x205.39916\x2010.3519C5.21067\x2010.2738\x204.9989\x2010.2738\x204.81041\x2010.3519C4.66905\x2010.4104\x204.54233\x2010.5371\x204.28889\x2010.7906C4.03545\x2011.044\x203.90873\x2011.1707\x203.85018\x2011.3121C3.77211\x2011.5006\x203.77211\x2011.7124\x203.85018\x2011.9008C3.90873\x2012.0422\x204.03545\x2012.1689\x204.28889\x2012.4224L9.03476\x2017.1682C9.07839\x2017.2127\x209.12737\x2017.2617\x209.18231\x2017.3166L9.18239\x2017.3167L9.18241\x2017.3167C9.40545\x2017.5398\x209.53035\x2017.6647\x209.65346\x2017.7313C9.67085\x2017.7408\x209.6882\x2017.7492\x209.70577\x2017.7564C9.89425\x2017.8345\x2010.106\x2017.8345\x2010.2945\x2017.7564C10.4359\x2017.6979\x2010.5626\x2017.5712\x2010.816\x2017.3177C10.8986\x2017.2352\x2010.9677\x2017.1661\x2011.0253\x2017.1056L15.7095\x2012.4214L15.7095\x2012.4213C15.963\x2012.1679\x2016.0897\x2012.0412\x2016.1482\x2011.8998C16.2263\x2011.7114\x2016.2263\x2011.4996\x2016.1482\x2011.3111C16.0897\x2011.1697\x2015.963\x2011.043\x2015.7095\x2010.7896C15.4561\x2010.5361\x2015.3294\x2010.4094\x2015.188\x2010.3509C14.9995\x2010.2728\x2014.7878\x2010.2728\x2014.5993\x2010.3509C14.4579\x2010.4094\x2014.3312\x2010.5361\x2014.0778\x2010.7896L14.0777\x2010.7896L11.1538\x2013.7135V4.67142C11.1538\x204.31301\x2011.1538\x204.1338\x2011.0953\x203.99244C11.0172\x203.80395\x2010.8674\x203.6542\x2010.6789\x203.57613C10.5376\x203.51758\x2010.3584\x203.51758\x209.99996\x203.51758C9.64154\x203.51758\x209.46233\x203.51758\x209.32097\x203.57613C9.13249\x203.6542\x208.98274\x203.80395\x208.90467\x203.99244Z','ySuperscriptYSize','ArrowUpIcon','pages','PdfPathCommandType','flipVertical','components','miterLimit','No\x20valid\x20font\x20was\x20provided\x20to\x20apply\x20features','applyFeaturesToContexts','has','levelDefinition','instances','off','bXHeight','exportPatch','bitmap','cos','parseShort','useState','checkbox','DFLT','x-mac-georgian','uShort','offset','addY','patternId','createDefaultTable','_instanceService','M5.83725\x206.78345C6.22188\x206.78345\x206.53368\x207.10742\x206.53368\x207.50706V8.41159C6.53368\x208.81123\x206.22188\x209.13521\x205.83725\x209.13521C5.45263\x209.13521\x205.14082\x208.81123\x205.14082\x208.41159V7.50706C5.14082\x207.10742\x205.45263\x206.78345\x205.83725\x206.78345ZM8.73904\x206.78345C9.12366\x206.78345\x209.43546\x207.10742\x209.43546\x207.50706V8.41159C9.43546\x208.81123\x209.12366\x209.13521\x208.73904\x209.13521C8.35441\x209.13521\x208.04261\x208.81123\x208.04261\x208.41159V7.50706C8.04261\x207.10742\x208.35441\x206.78345\x208.73904\x206.78345ZM11.6408\x206.78345C12.0254\x206.78345\x2012.3372\x207.10742\x2012.3372\x207.50706V8.41159C12.3372\x208.81123\x2012.0254\x209.13521\x2011.6408\x209.13521C11.2562\x209.13521\x2010.9444\x208.81123\x2010.9444\x208.41159V7.50706C10.9444\x207.10742\x2011.2562\x206.78345\x2011.6408\x206.78345Z','flip-vertical-icon','luminosity','arabicSentence','yScale','PdfListKind','0123456789','Alternate:\x20unable\x20to\x20modify\x20coverage\x20table\x20format\x20','OffscreenCanvas','generation','slice','originalText','canCopy','pdfs-ui.ribbon.actions.textBox','pdfs-ui.ribbon.listPresets.arrow','en-SG','zoom','Escape','FlipHorizontalIcon','langSys','pdf.operation.redo','pdfs-ui.inspector.actions.finishEditing','minDis','ySubscriptYOffset','reserved','caretSlopeRun','managedResources','Table\x20','redo','conversion','Managed\x20image\x20source\x20','segCount','replacementLinkMutationId','_panel','_fontResourceUrls','@univerjs/core','isPdfEditorManagedResourceSource','Unexpected\x20path\x20command\x20','syncExecuteCommand','startCoverageIndex','pageIndexById','unicodeValue','CHAR','RIGHT_INDENT','color','normalAppearanceDisplayListId','charStrings','es-BO','Unsupported\x20CFF\x20table\x20version\x20','zh-SG','pdfAddImageCommand','ms-BN','/Helv','CFF\x20Table\x20CID\x20Font\x20FDSelect\x20table\x20has\x20unsupported\x20format\x20','pdfs-ui.inspector.fields.documentId','cache','ranges','quc','storyId','usWeightClasses','interpolatePoints','resolveParagraphCommitLayout','groupCompositor','copy','tableId','numTags','CPAL','Alpha','pageIndex','focusUnit','addAlternate','isInteger','\x20x\x20','selectedObjectIds','LeftJustifyingIcon','rangeShift','defaultValue_','transferToImageBitmap','pdfDeleteObjectsCommand','clientX','env','random','deltaGlyphId','sequence','constructor','markerX','parseUInt24','M2.6\x203.3L6.2\x208L2.6\x2012.7V3.3Z','_registerWorkbenchParts','pdfs-ui.ribbon.listPresets.upperAlpha','\x20out\x20of\x20range','cmap4Length','padStart','\x20too\x20big.','_loadResourceFontOutline','SPACING_AFTER','pdfs-ui.tableSizePicker.columns','pageIdByOverlayObjectId','undoPdfEditorSession','buildDefaultPdfTableThemes','insertDivider','fieldType','HTTP\x20','smj','startCheck','_errorState','pdf.menu.insert.image','formatMinor','Unsupported\x20ltag\x20table\x20version.','LINK','hasFeatureEnabled','component','minValue_','resetContextsRanges','227860ribwDa','runtime-not-found','flip-horizontal-icon','includedObjectIds','numRanges','nGlyphs','assetIdsByPage','rtl','maxPoints','x-mac-ce','startTransform','_touch','getBytes','useMemo','registerContextChecker','getAlternates','WOFF','transform','ShapeLineIcon','default','\x22\x20which\x20does\x20not\x20have\x20an\x20itemVariationStore','UTF16','updateContextsRanges','images','stepX','indexOf','glyphs','nl-BE','hull','Unknown\x20axis\x20value\x20table\x20format\x20','quadPoints','translate(.9)','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»…\u00a0ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄€ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ','contextCheckers','inputCoverage','M11.3536\x206.14645C11.5488\x206.34171\x2011.5488\x206.65829\x2011.3536\x206.85355L8.35355\x209.85355C8.15829\x2010.0488\x207.84171\x2010.0488\x207.64645\x209.85355L4.64645\x206.85355C4.45118\x206.65829\x204.45118\x206.34171\x204.64645\x206.14645C4.84171\x205.95118\x205.15829\x205.95118\x205.35355\x206.14645L8\x208.79289L10.6464\x206.14645C10.8417\x205.95118\x2011.1583\x205.95118\x2011.3536\x206.14645Z','getInstanceIndex','clsx','.notdef,space,exclamsmall,Hungarumlautsmall,dollaroldstyle,dollarsuperior,ampersandsmall,Acutesmall,parenleftsuperior,parenrightsuperior,twodotenleader,onedotenleader,comma,hyphen,period,fraction,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,colon,semicolon,commasuperior,threequartersemdash,periodsuperior,questionsmall,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,fi,fl,ffi,ffl,parenleftinferior,parenrightinferior,Circumflexsmall,hyphensuperior,Gravesmall,Asmall,Bsmall,Csmall,Dsmall,Esmall,Fsmall,Gsmall,Hsmall,Ismall,Jsmall,Ksmall,Lsmall,Msmall,Nsmall,Osmall,Psmall,Qsmall,Rsmall,Ssmall,Tsmall,Usmall,Vsmall,Wsmall,Xsmall,Ysmall,Zsmall,colonmonetary,onefitted,rupiah,Tildesmall,exclamdownsmall,centoldstyle,Lslashsmall,Scaronsmall,Zcaronsmall,Dieresissmall,Brevesmall,Caronsmall,Dotaccentsmall,Macronsmall,figuredash,hypheninferior,Ogoneksmall,Ringsmall,Cedillasmall,onequarter,onehalf,threequarters,questiondownsmall,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,onesuperior,twosuperior,threesuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior,Agravesmall,Aacutesmall,Acircumflexsmall,Atildesmall,Adieresissmall,Aringsmall,AEsmall,Ccedillasmall,Egravesmall,Eacutesmall,Ecircumflexsmall,Edieresissmall,Igravesmall,Iacutesmall,Icircumflexsmall,Idieresissmall,Ethsmall,Ntildesmall,Ogravesmall,Oacutesmall,Ocircumflexsmall,Otildesmall,Odieresissmall,OEsmall,Oslashsmall,Ugravesmall,Uacutesmall,Ucircumflexsmall,Udieresissmall,Yacutesmall,Thornsmall,Ydieresissmall','enabled','ar-SY','getAttribute','iu-Latn','size','insertList','pdfs-ui.inspector.fields.fieldName','_configService','pdf.menu.flip.vertical','distance','ppem','univer-box-border\x20univer-h-full\x20univer-overflow-y-auto\x20univer-pb-4\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','\x20is\x20invalid.','unknown\x20instruction:\x200x','pdf.menu.insert.list','addColorStop','ICommandService','F2DOT14','_defaultWidthX','reverse','coordinate','pdfs-ui.inspector.fields.rightIndent','ᐃᐄᐅᐆᐊᐋᐱᐲᐳᐴᐸᐹᑉᑎᑏᑐᑑᑕᑖᑦᑭᑮᑯᑰᑲᑳᒃᒋᒌᒍᒎᒐᒑ°ᒡᒥᒦ•¶ᒧ®©™ᒨᒪᒫᒻᓂᓃᓄᓅᓇᓈᓐᓯᓰᓱᓲᓴᓵᔅᓕᓖᓗᓘᓚᓛᓪᔨᔩᔪᔫᔭ…\u00a0ᔮᔾᕕᕖᕗ–—“”‘’ᕘᕙᕚᕝᕆᕇᕈᕉᕋᕌᕐᕿᖀᖁᖂᖃᖄᖅᖏᖐᖑᖒᖓᖔᖕᙱᙲᙳᙴᙵᙶᖖᖠᖡᖢᖣᖤᖥᖦᕼŁł','univer-col-span-2\x20univer-w-full','pdfs-ui.contextMenu.addText','gsubrsBias','getGlyphClass','cancelAnimationFrame','This\x20font\x20provides\x20a\x20gvar\x20table,\x20but\x20no\x20fvar\x20table,\x20which\x20is\x20required\x20for\x20variable\x20fonts.','curveTo','isContentEditable','HIGHLIGHT','uInt24','parseVersion','red','optimize','pdf.operation.set-tool-mode','_ensureRecord','position','RESTORE_STATE','\x27\x20event\x20handler','rlig','hex6','x-mac-armenian','params','remove','MIDDLE','parentElement','paint','fsSelection','bboxWidth','sharedTupleRecordsIndex','yStrikeoutPosition','trunc','M2.2498\x203.65005C2.2498\x202.87685\x202.87661\x202.25005\x203.64981\x202.25005H7.9998C8.33118\x202.25005\x208.5998\x201.98142\x208.5998\x201.65005C8.5998\x201.31868\x208.33118\x201.05005\x207.9998\x201.05005H3.64981C2.21387\x201.05005\x201.0498\x202.21411\x201.0498\x203.65005V12.35C1.0498\x2013.786\x202.21386\x2014.95\x203.6498\x2014.95H12.3498C13.7857\x2014.95\x2014.9498\x2013.786\x2014.9498\x2012.3501V8.00005C14.9498\x207.66868\x2014.6812\x207.40005\x2014.3498\x207.40005C14.0184\x207.40005\x2013.7498\x207.66868\x2013.7498\x208.00005V9.23974L12.2385\x208.1063C11.7252\x207.72129\x2011.0068\x207.7723\x2010.5531\x208.22605L9.00869\x209.77041L6.73916\x207.8251C6.24387\x207.40055\x205.5095\x207.41278\x205.02864\x207.85359L2.2498\x2010.4009V3.65005ZM2.2498\x2012.0287V12.35C2.2498\x2013.1232\x202.87661\x2013.75\x203.6498\x2013.75H12.3498C13.123\x2013.75\x2013.7498\x2013.1232\x2013.7498\x2012.3501V10.7397L11.5186\x209.06631C11.4829\x209.03956\x2011.433\x209.04314\x2011.4016\x209.07458L9.92249\x2010.5537L11.1015\x2011.5642C11.3531\x2011.7799\x2011.3822\x2012.1587\x2011.1666\x2012.4103C10.9509\x2012.6619\x2010.5721\x2012.691\x2010.3205\x2012.4753L5.9582\x208.7362C5.92384\x208.70674\x205.87288\x208.70758\x205.83952\x208.73816L2.2498\x2012.0287Z','PdfInsertPageOperation','univer-mb-3\x20univer-w-full','PdfListPresetId','Header','pdfs-ui.inspector.actions.sendBackward','ar-BH','sqrt','DocsAppIcon','onClearActiveEdit','_initCommands','fr-CA','scheduler','timeout','ySubscriptYSize','points','HIKLEFJMNTZBDPRAGOQSUVWXY','UniverUi','ephemeral','columnId','PdfEditorRuntimeEventType','valueNameID','italic','instructionLength','usWinAscent','es-CR','normalAppearanceAssetId','packageName','license','numColorRecords','monospace','VIEW','createPdfInMemoryManagedImageRuntimeAdapter','pageIdsByTextStoryId','files','parseChar','isFinite','UUID','univer-absolute\x20univer-inset-x-0\x20univer-top-0','font/ttf','xPlacement','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂȘ∞±≤≥¥µ∂∑∏π∫ªºΩăș¿¡¬√ƒ≈∆«»…\u00a0ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄€‹›Țț‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ','CHARARRAY\x20with\x20undefined\x20or\x20null\x20value\x20encountered\x20and\x20treated\x20as\x20an\x20empty\x20string.\x20This\x20is\x20probably\x20caused\x20by\x20a\x20missing\x20glyph\x20name.','getCard8','axisCount','ORDERED_DECIMAL_DOT','Unsupported\x20OpenType\x20flavor\x20','attached','x-mac-sinhalese','PdfInsertDividerOperation','_yMin','ceil','pdfs-ui.inspector.actions.exportPatch','list','schemaVersion','xMin','SPACING_BEFORE','string_','de-CH','_xMin','itemVariationSubtables','markerFont','findIndex','Not\x20enough\x20arguments\x20given\x20for\x20type','createId','modified','add-note-icon','some','displayLists','sequenceIndex','undo','subfamilyNameID','recordList','tables','#111111','objectRef','cff','sourceSuppressionId','_advanceWidth','UniverInstanceType','detachUnit','M6.2981\x2012.4999C6.2981\x2012.1685\x206.56672\x2011.8999\x206.8981\x2011.8999H14.4605C14.7918\x2011.8999\x2015.0605\x2012.1685\x2015.0605\x2012.4999C15.0605\x2012.8313\x2014.7918\x2013.0999\x2014.4605\x2013.0999H6.8981C6.56672\x2013.0999\x206.2981\x2012.8313\x206.2981\x2012.4999Z','CHECKBOX','blueValues','xStep','cells','indent','getBoundingBox','renderPage','parseTupleVariationHeader','ellipse','stats','relativeOffset','setAttribute','colorProfiles','BUTTON','linear','M4.66665\x2012.9004C4.33528\x2012.9004\x204.06665\x2013.169\x204.06665\x2013.5004C4.06665\x2013.8318\x204.33528\x2014.1004\x204.66665\x2014.1004H14C14.3314\x2014.1004\x2014.6\x2013.8318\x2014.6\x2013.5004C14.6\x2013.169\x2014.3314\x2012.9004\x2014\x2012.9004H4.66665Z','parseVariationRegionList','fvar','layers','replaceRange:\x20invalid\x20tokens\x20or\x20startIndex.','\x22,\x20not\x20\x22','78127OUPkUB','GlyphSet','exports','make','_menuManagerService','isContextCurrent','getDefaultScriptName','globalAlpha','pdf.menu.insert.text-box','pdfs-ui.ribbon.listPresets.bullet','EVENODD','Table\x20Record','featureIndexes','flipYBase','renderSource','ptToEmu','promise','markerColumnWidth','nudge','localPdfBox','Top\x20DICT','A\x20Canvas\x20factory\x20is\x20required\x20outside\x20the\x20browser.','yPlacement','lowMemory','prep','endCheck','underline','#000000','defaultView','GSUB\x20Multiple\x20Substitution\x20Subtable\x20identifier-format\x20must\x20be\x201','SET_GRAPHICS_STATE','mode','maxTwilightPoints','canvasFactory','vertical-lr','Invalid\x20zone','cidCount','attrs','font','pdfs-ui.inspector.actions.flipHorizontal','replaceRange','Invalid\x20color\x20format:\x20','contentStoryId','_decode','revision','zIndex','parseLookupList','Unable\x20to\x20save\x20the\x20image\x20as\x20a\x20durable\x20Univer\x20resource.','fillText','system-ui','/Cour','\x20already\x20has\x20key\x20',':\x20unknown\x20operator\x20','cvar','cellId','shape-line-icon','Invalid\x20entry\x20size\x20of\x20','replacementIndex\x20cannot\x20be\x20the\x20same\x20as\x20colorIndex','divider-icon','STAT','pdfSplitParagraphCommand','glyphNameIndex','complete','kern','subarray','styleId','PdfInsertTextBoxOperation','abs','regionAxes','PdfEditorSelectionKind','registerDependencies','rejected','point','trademark','resolveResourceFontOutline','bindConstructorValues','variation','idRangeOffset_','bandRow','lineHeight','bytesToString','paletteIndex','children','features','_registerComponents','viewport','moveTo','drafts','visiblePageIndexes','removeToken','getOwnPropertyDescriptor','contentOffsetYCssPx','rangeMaxValue','1719qkkGNm','Unsupported\x20cvar\x20table\x20version\x20','getTag','rotation','escape','find','numLayers_','nativeTextTargets','StoryIds','ORDERED','_subrs','seqLookup','clearTimeout','_fontGeneration','recordedBatchIds','_executeStandardHistory','en-029','difference','parseCard16','offset16','coverageFormat','objectId','):\x20advanceWidth\x20is\x20not\x20a\x20number.','local','pdfs-ui.inspector.titles.page','opentype','hypot','value1','maxCompositeContours','unit-updated','pdfs.contextMenu.page-thumbnail','rrcurveto','getTextGlyphs','deltasY','designAxesOffset','en-GB','crossOrigin','xlink:href','clip','Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦€ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»…\u00a0ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ­','This\x20font\x20provides\x20an\x20avar\x20table,\x20but\x20no\x20fvar\x20table,\x20which\x20is\x20required\x20for\x20variable\x20fonts.','parseString','onmessage','_scheduler','fontId','classes','sms','maxEntries','Name\x20INDEX','getFeature','fields','languageGroup','fontSize','fillPalette','M1.9999\x201.89941C1.66853\x201.89941\x201.3999\x202.16804\x201.3999\x202.49941C1.3999\x202.83078\x201.66853\x203.09941\x201.9999\x203.09941H13.9999C14.3313\x203.09941\x2014.5999\x202.83078\x2014.5999\x202.49941C14.5999\x202.16804\x2014.3313\x201.89941\x2013.9999\x201.89941H1.9999Z','textStoryId','finally','thumbnailWorkerURL','mask','parseTag','pdf.operation.undo','rowId','featureRecord','de-LI','en-NZ','bn-IN','replacementLinks','application/vnd.ms-opentype','turn','No\x20colorRecords\x20given.','Unsupported\x20hvar\x20table\x20version\x20','family','Data\x20error','getImageSourceCache','value','leaseCount','_images','glyf','cvt','executeCommand','nextPointOnContour','univer-relative\x20univer-box-border\x20univer-flex\x20univer-w-full\x20univer-cursor-pointer\x20univer-flex-col\x20univer-items-center\x20univer-overflow-hidden\x20univer-rounded-lg\x20univer-bg-white\x20univer-p-1\x20dark:!univer-bg-gray-900','charset','releasePointerCapture','_pageOrderIndexes','createCanvas','substitute','count','source-over','rows','onerror','SUCCUSS','matrix','macStyleValues','\x22,\x20\x22Times\x20New\x20Roman\x22,\x20serif','pdf-editor.mutation.apply-history','pdf.operation.flip-selection','\x20(FD\x20count\x20','gradient','RedoCommand','checkSumAdjustment','fromCoordinate','An\x20embedded\x20peak\x20tuple\x20is\x20required\x20in\x20TupleVariationHeaders\x20for\x20the\x20cvar\x20table.','blocks','coverages','FDEF\x20not\x20allowed\x20here','xAdvance','Only\x20CPALv0\x20is\x20currently\x20fully\x20supported.','pdfs-ui.inspector.titles.nativeSource','startIndex','minMemType42','_state','requestTextEditExit','getDefaultInstanceIndex','en-IE','stdVW','pdfs-ui.tableTheme.firstColumn','level','getInt16','setTimeout','chainRule','\x20has\x20no\x20default\x20language\x20system.','Bad\x20flags.','axisTag_','pdf.menu.canvas.send-backward','parseValueRecord','normal','horizontal','renderPageIndexes','pathTransform','50870NPPGDh','sr-Cyrl-BA','es-PE','widget','markerGap','Hinting\x20instructions\x20exceeded\x20maximum\x20of\x20','minimal','pdfs-ui.inspector.fields.firstLine','borderClassName','manufacturer','updateIndices','control2','pdfs-ui.inspector.fields.fontFamily','preventExtensions','parseRecordList','entries','story','more-down-icon','glyph_','lookupType','UniverPdfsUIPlugin','includes','FontId','coverage','Unicode\x20ranges\x20bits\x20>\x20123\x20are\x20reserved\x20for\x20internal\x20usage','substitutionCount','textPaddingCssPx','ar-DZ','fetch','CopyIcon','selectionEnd','_endGlyphID','pdfs-ui.contextMenu.editText','listId','recordMutationBatch','pdfs-ui.inspector.actions.cropImage','exec','ligature','onCommandExecuted','materializePdfEditorPages','encoding','univer-flex\x20univer-items-center\x20univer-gap-1.5\x20univer-text-xs','showAnnotationBounds','screen','PdfObjectType','_layers','from','<defs>','maxp','pageCount','rgba(37,\x2099,\x20235,\x200.18)','pdfChangeListLevelCommand','readonly','pdfs-ui.pageThumbnail.rotateClockwise','indexToLocFormat','resolvers','getScriptTable','pdfs-ui.inspector.fields.right','fillAlpha','getNativeTextTargets','primaryAnchorId','getNormalizedCoords','tZone','_changed$','objectType','bArmStyle','strokeAlpha','advanceWidth_','generateRandomId','bgra','CharStrings\x20INDEX','crop','select','setText','selectionStart','disconnect','pointerId','_loadRemoteImage','created','pdfs-ui.ribbon.actions.flipHorizontal','zBase','failed','argument','pageIdsByAssetId','dflt','data-error','lineGap','instanceCount','imageResolver','base','maxComponentElements','pageId','Could\x20not\x20find\x20head\x20table\x20with\x20checkSum\x20to\x20adjust.','Count','applyPdfEditorMutationBatch','pop','pdfSubtype','univer-grid\x20univer-h-9\x20univer-w-full\x20univer-grid-cols-5\x20univer-overflow-hidden\x20univer-rounded-sm','POINT_RUN_COUNT_MASK','ORDERED_ALPHA','el-polyton','class','save','paragraphRightIndent','privatePointNumbers','missing\x20context\x20start\x20check.','markerFill','onUndo','pdf.menu.insert.divider','opacityMultiplier','lineJoin','pdfReorderPageCommand','DELETE','currentDisplayListId','EMBEDDED_PEAK_TUPLE','minor','Glyph\x20count\x20in\x20the\x20CFF2\x20table\x20(','formFieldIdByWidgetObjectId','getFormFieldTargets','lineCap','cmap12Language','draw','activatePage','univer-h-6\x20univer-min-w-0\x20univer-rounded-md\x20univer-bg-white\x20univer-px-1\x20dark:!univer-bg-gray-800','CFF\x20table\x20has\x20too\x20many\x20fonts\x20in\x20\x27FontSet\x27\x20-\x20count\x20of\x20fonts\x20NameIndex.length\x20=\x20','ulCodePageRange2','arrange','fsSelectionValues','addLigature','ulUnicodeRange1','boolean','cffGlyphLoader','RxDisposable','move-up','transparent','onCurve','next','restore','opacity','\x22Times\x20New\x20Roman\x22,\x20serif','_sidebarService','RedoIcon','unit-not-found','renderOptions','endPointIndices','postMessage','fontOutlineResolver','fixed','M9.80385\x201.40005H11.9997C12.3311\x201.40005\x2012.5997\x201.66868\x2012.5997\x202.00005C12.5997\x202.33143\x2012.3311\x202.60005\x2011.9997\x202.60005H10.1185L7.12251\x2013.4001H9.33324C9.66461\x2013.4001\x209.93324\x2013.6687\x209.93324\x2014.0001C9.93324\x2014.3314\x209.66461\x2014.6001\x209.33324\x2014.6001H6.34785C6.33847\x2014.6003\x206.32905\x2014.6003\x206.31962\x2014.6001H3.9999C3.66853\x2014.6001\x203.3999\x2014.3314\x203.3999\x2014.0001C3.3999\x2013.6687\x203.66853\x2013.4001\x203.9999\x2013.4001H5.87719L8.87322\x202.60005H6.66641C6.33504\x202.60005\x206.06641\x202.33143\x206.06641\x202.00005C6.06641\x201.66868\x206.33504\x201.40005\x206.66641\x201.40005H9.52916C9.61698\x201.37929\x209.71064\x201.3781\x209.80385\x201.40005Z','smj-NO','M11.6408\x206.78345C12.0254\x206.78345\x2012.3372\x207.10742\x2012.3372\x207.50706V8.41159C12.3372\x208.81123\x2012.0254\x209.13521\x2011.6408\x209.13521C11.2562\x209.13521\x2010.9444\x208.81123\x2010.9444\x208.41159V7.50706C10.9444\x207.10742\x2011.2562\x206.78345\x2011.6408\x206.78345Z','paddingCssPx','toPrimitive','radial','getTime','univer-flex\x20univer-max-h-[420px]\x20univer-flex-col\x20univer-gap-4\x20univer-overflow-y-auto','updateViewport','GDEF','#000000ff','en-CA','#0ea5e9','RightJustifyingIcon','showOverflow','takeUntil','_getPageOrderIndex','PdfTextAnchor','actorId','colorRecords','IMAGE','canDelete','x-mac-gurmukhi','getDirection','pdfs-ui.inspector.fields.displayLists','PdfEditorHitTestMode','\x20table','bezierCurveTo','univer-mb-2\x20univer-text-sm\x20univer-font-medium\x20univer-text-gray-600\x20dark:!univer-text-gray-300','@univerjs-pro/pdfs-render','useRef','intermediateEndTuple','view','classDef','openRange','supports','endIndex','BYTE','spans','blue','pdf.menu.canvas.flip-horizontal','missing\x20context\x20end\x20check.','vertical',':\x20lookup\x20type\x201\x20format\x20must\x20be\x201\x20or\x202.','lighten','getContextRanges','nameToGlyphIndex','UINT24','module','M1.9999\x2012.9004C1.66853\x2012.9004\x201.3999\x2013.169\x201.3999\x2013.5004C1.3999\x2013.8318\x201.66853\x2014.1004\x201.9999\x2014.1004H11.3332C11.6646\x2014.1004\x2011.9332\x2013.8318\x2011.9332\x2013.5004C11.9332\x2013.169\x2011.6646\x2012.9004\x2011.3332\x2012.9004H1.9999Z','resolvePdfEditorActiveEditor','_hinting','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','windows','USHORT','depth','lookups','topDict_0','object','COUNT_MASK','isEmpty','ligatureTable','jsx','STRIKEOUT','applyFeatures','When\x20creating\x20a\x20new\x20Font\x20object,\x20ascender\x20is\x20required.','boxCssPx','ar-SA','docs-app-icon','substitutionType\x20:\x20','DividerIcon','Glyph\x20','touched','\x20stroke=\x22','selectionAnchor','attachUnit','maxOverlayZIndexByPage','pdfs-ui.inspector.fields.bold','text','_points','parseItemVariationStore','flipY','syr','glyphIndexToName','markerBaselineY','macintosh','TEXT','number','offsetTop','rp0','_svgDocOffset','_iconManager','ensureCOLR','invalid\x20SROUND\x20value','ImageSourceType','interpolate','fontFamilyResolver','image/jpeg','getEditState','fromCharCode','splice','pdfs-ui.tableTheme.tableLook','fdArray','evictPageIndexes','PdfPageRegionIndexService','paths','glyphId','_createId','STAT\x20axis\x20count\x20must\x20be\x20greater\x20than\x20or\x20equal\x20to\x20fvar\x20axis\x20count','wordCount\x20must\x20be\x20less\x20than\x20or\x20equal\x20to\x20regionIndexCount','beginPath','Private\x20DICT','expansionFactor','rect','#8b5cf6','_config','hsb','x-mac-cyrillic','inboundIndex','addX','_getContext','SHARED_POINT_NUMBERS','posFormat','gpos','image/webp','achVendID','entrySelector','prevTouched','uniqueId','React','backdropColor','stringify','compression','When\x20creating\x20a\x20new\x20Font\x20object,\x20familyName\x20is\x20required.','getUnit','fill','hsl(','offsetToAxisValueOffsets',',\x20lookupIndex:\x20','lines','START','drawSVG','bWeight','deltaSets','horizontalScale','M3.5\x203.5L16.5\x2016.5','registeredModifiers','FAIL','DETACHED','naturalWidth','pdfFlipObjectCommand','pdfs-ui.tableTheme.lastColumn','M2.66641\x2013.4663C2.33504\x2013.4663\x202.06641\x2013.7349\x202.06641\x2014.0663C2.06641\x2014.3977\x202.33504\x2014.6663\x202.66641\x2014.6663H13.3331C13.6644\x2014.6663\x2013.9331\x2014.3977\x2013.9331\x2014.0663C13.9331\x2013.7349\x2013.6644\x2013.4663\x2013.3331\x2013.4663H2.66641Z','clientY','ORDERED_DECIMAL_PAREN','forEachGlyph','CUBIC_TO','assetId','ltree','pluginName','getUint32','offset32','glyphDataFormat','textStoryIdsByPage','nameID','sampleText','caretSlopeRise','_startGlyphID','image/bmp',',\x20Arial,\x20sans-serif','Delete','maxStackElements','useCallback','strokeColor','sah','hasOwnProperty','error','tags','use','paragraphAlign','sFamilyClass','postScriptNameID','#06b6d4','.notdef,.null,nonmarkingreturn,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quotesingle,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,grave,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,Adieresis,Aring,Ccedilla,Eacute,Ntilde,Odieresis,Udieresis,aacute,agrave,acircumflex,adieresis,atilde,aring,ccedilla,eacute,egrave,ecircumflex,edieresis,iacute,igrave,icircumflex,idieresis,ntilde,oacute,ograve,ocircumflex,odieresis,otilde,uacute,ugrave,ucircumflex,udieresis,dagger,degree,cent,sterling,section,bullet,paragraph,germandbls,registered,copyright,trademark,acute,dieresis,notequal,AE,Oslash,infinity,plusminus,lessequal,greaterequal,yen,mu,partialdiff,summation,product,pi,integral,ordfeminine,ordmasculine,Omega,ae,oslash,questiondown,exclamdown,logicalnot,radical,florin,approxequal,Delta,guillemotleft,guillemotright,ellipsis,nonbreakingspace,Agrave,Atilde,Otilde,OE,oe,endash,emdash,quotedblleft,quotedblright,quoteleft,quoteright,divide,lozenge,ydieresis,Ydieresis,fraction,currency,guilsinglleft,guilsinglright,fi,fl,daggerdbl,periodcentered,quotesinglbase,quotedblbase,perthousand,Acircumflex,Ecircumflex,Aacute,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Oacute,Ocircumflex,apple,Ograve,Uacute,Ucircumflex,Ugrave,dotlessi,circumflex,tilde,macron,breve,dotaccent,ring,cedilla,hungarumlaut,ogonek,caron,Lslash,lslash,Scaron,scaron,Zcaron,zcaron,brokenbar,Eth,eth,Yacute,yacute,Thorn,thorn,minus,multiply,onesuperior,twosuperior,threesuperior,onehalf,onequarter,threequarters,franc,Gbreve,gbreve,Idotaccent,Scedilla,scedilla,Cacute,cacute,Ccaron,ccaron,dcroat','function','UnderlineIcon','closest','CFF\x20Table\x20CID\x20Font\x20FDSelect\x20format\x203\x20range\x20has\x20bad\x20final\x20(Sentinal)\x20GID\x20','post','ArrowUp','stringPool','composePdfEditorSessionState','es-UY','x-mac-khmer','maxCacheEntries','pdfRemovePageCommand','InputNumber','bufferBefore','axisNameID','getNativeFormXObjectTargets','padding','alternateSets','fillRule','registerModifier','nonzero','DisplayListId','mutation','medium','univer-mt-1\x20univer-block\x20univer-text-left\x20univer-text-xs\x20univer-text-gray-500\x20dark:!univer-text-gray-400','saves','pdf.menu.canvas.flip-vertical','Hinting\x20error:','blockId','cancel','M1.9999\x205.56641C1.66853\x205.56641\x201.3999\x205.83504\x201.3999\x206.16641C1.3999\x206.49778\x201.66853\x206.76641\x201.9999\x206.76641H11.3332C11.6646\x206.76641\x2011.9332\x206.49778\x2011.9332\x206.16641C11.9332\x205.83504\x2011.6646\x205.56641\x2011.3332\x205.56641H1.9999Z','bs-Cyrl','log','hue','bbox','_commandService','underlineThickness','displayOperationIds','Unknown\x20color\x20format:\x20','_source_suppression','bFamilyType','ltag','classSeqRuleTable','#64748b','offset\x20','getBBox','_fontChangedSubject','parseLong','center','topDict','pdfs-ui.ribbon.actions.list','span','rightIndent','xTouched','_capacity','This\x20font\x20provides\x20a\x20gvar\x20table,\x20but\x20no\x20glyf\x20table.\x20Glyph\x20variation\x20only\x20works\x20with\x20TrueType\x20outlines.','getContours','PdfDisplayOpType','getColor','LookupList','drawLayers','hsla','pdfs-ui.contextMenu.flipVertical','extendSelection','\x20is\x20already\x20reserved.','ColorPicker',':\x20lookup\x20type\x206\x20format\x20must\x20be\x201,\x202\x20or\x203.','charStringsIndex','shiftKey','hex-8','stroke','_resourceChangedSubject','_resourceRevision','pdfs-ui.workbench.status.page','fallbackPaint','pdfs-ui.inspector.fields.objectRef','subtable','operatorIds','UniverCore','fieldName','fontToTable','normalizeCoordTags','tracking','context$','pointerMove','outerBoxCssPx','charSpacing','svgImages','batches','M2.87279\x205.8999C1.80504\x205.8999\x200.939453\x206.76549\x200.939453\x207.83324C0.939453\x208.90099\x201.80504\x209.76657\x202.87279\x209.76657C3.94054\x209.76657\x204.80612\x208.90099\x204.80612\x207.83324C4.80612\x206.76549\x203.94054\x205.8999\x202.87279\x205.8999ZM2.13945\x207.83324C2.13945\x207.42823\x202.46778\x207.0999\x202.87279\x207.0999C3.2778\x207.0999\x203.60612\x207.42823\x203.60612\x207.83324C3.60612\x208.23824\x203.2778\x208.56657\x202.87279\x208.56657C2.46778\x208.56657\x202.13945\x208.23824\x202.13945\x207.83324Z','glyphIndex\x20modifier\x20is\x20required\x20to\x20apply\x20arabic\x20presentation\x20features.','parseOffset16','TEXTAREA','pdfs-ui.operation.page-thumbnail.copy','HVAR','sections','Subject','prewarmTasks','italic\x20','process','altKey','inputGlyph','videoWidth','arrow-up-icon','BuiltInUIPart','anonymous','#16a34a','subscribers','univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-2','acknowledgedMutationIds','checkStart','PdfEditorUnitController','usDefaultChar','pdfs-ui.workbench.pageRail.newPage','univer-min-h-0\x20univer-flex-1\x20univer-overflow-auto','canvasScaleX','add-image-icon','transformComponents','designAxisCount','getSvgImage','textIndent','soft-light','changed$','arc','setSession','endOffset','rangeMaxPPEM','Hinting\x20error\x20in\x20PREP:','hard-light','store','none','readOnly','paragraphSpacingBefore','appendRootMenu','/Type1','gZone','aalt','parseList32','valueInSpecifiedUnits','latinWord','_textEditExitRequestedSubject','targetEditable','ops','exportDisposition','Font\x20is\x20marked\x20as\x20a\x20CID\x20font,\x20but\x20FDArray\x20and/or\x20FDSelect\x20information\x20is\x20missing','numLayerRecords','M1.01953\x203.13985C1.01953\x202.77258\x201.31726\x202.47485\x201.68453\x202.47485H2.73713C3.1044\x202.47485\x203.40213\x202.77258\x203.40213\x203.13985C3.40213\x203.50712\x203.1044\x203.80485\x202.73713\x203.80485H1.68453C1.31726\x203.80485\x201.01953\x203.50712\x201.01953\x203.13985Z','onValue','When\x20creating\x20a\x20new\x20Font\x20object,\x20negative\x20descender\x20value\x20is\x20required.','x-mac-extarabic','Object\x20','cacheKey','toCoordinate_','\x20is\x20not\x20yet\x20supported','resolvePdfListMarkers','parseFloat','svg','serializePdfPageCacheEpoch','getUint8','liga','cmap12Length','info','\x22\x20does\x20not\x20exist,\x20see\x20nameTableNames\x20for\x20complete\x20list.','getConfig','numBaseGlyphRecords','langSysRecords','primary','#facc15','origin','instructionCount','createPdfLocalEditorState','naturalHeight','salt','pdfs-ui.ribbon.actions.table','RECT','batch','defaultLangSys','\x20decompressed\x20length\x20doesn\x27t\x20match\x20recorded\x20length','srPeriod','canvasScaleY','pdfs-ui.inspector.titles.object','substring','strokeRect','CFF\x20table\x20CID\x20Font\x20FDSelect\x20has\x20bad\x20FD\x20index\x20value\x20','subtables','decimalPlaces','_loadingSources','PdfFillRule','pushUndoRedo','SQUARE','................................space.exclam.quotedbl.numbersign.dollar.percent.ampersand.quoteright.parenleft.parenright.asterisk.plus.comma.hyphen.period.slash.zero.one.two.three.four.five.six.seven.eight.nine.colon.semicolon.less.equal.greater.question.at.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.bracketleft.backslash.bracketright.asciicircum.underscore.quoteleft.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z.braceleft.bar.braceright.asciitilde...................................exclamdown.cent.sterling.fraction.yen.florin.section.currency.quotesingle.quotedblleft.guillemotleft.guilsinglleft.guilsinglright.fi.fl..endash.dagger.daggerdbl.periodcentered..paragraph.bullet.quotesinglbase.quotedblbase.quotedblright.guillemotright.ellipsis.perthousand..questiondown..grave.acute.circumflex.tilde.macron.breve.dotaccent.dieresis..ring.cedilla..hungarumlaut.ogonek.caron.emdash.................AE..ordfeminine.....Lslash.Oslash.OE.ordmasculine......ae....dotlessi...lslash.oslash.oe.germandbls','dispose','TOP','Unsupported\x20gvar\x20table\x20version\x20','defs','pdfs-ui.inspector.fields.width','LONG','GPOS/GSUB\x20feature\x20variations\x20table\x20unknown.','GPOS\x20Lookup\x208\x20not\x20supported','defaultUVS','OPERATION','M4.75332\x205.22217C3.86966\x205.22217\x203.15332\x205.93851\x203.15332\x206.82217V12.5331C3.15332\x2013.9691\x204.31738\x2015.1332\x205.75332\x2015.1332H10.2465C11.6825\x2015.1332\x2012.8465\x2013.9691\x2012.8465\x2012.5331V6.82217C12.8465\x205.93851\x2012.1302\x205.22217\x2011.2465\x205.22217H4.75332ZM4.35332\x206.82217C4.35332\x206.60125\x204.53241\x206.42217\x204.75332\x206.42217H11.2465C11.4674\x206.42217\x2011.6465\x206.60125\x2011.6465\x206.82217V12.5331C11.6465\x2013.3063\x2011.0197\x2013.9332\x2010.2465\x2013.9332H5.75332C4.98012\x2013.9332\x204.35332\x2013.3063\x204.35332\x2012.5331V6.82217Z','run','yAdvance','[opentype.js]\x20','MOVE_TO','_copyId','rgba','values','insertTextBox','getText','ligGlyph','IPdfEditorRuntimeService','pdfs-ui.inspector.titles.tableCell','applyTupleVariationStore','pdf-image-','pdfUpdatePageGeometryCommand','sequenceRuleSet','PDF\x20render\x20failed:\x20','concat','getScriptFeaturesIndexes','ySubscriptXSize','encode','maxValue','es-NI','offsetSize','parsePointer32','px\x20Arial,\x20sans-serif','createImageBitmap','AppendPdfDocumentMutation','unitsPerEm','getEnglishName','asset','UndoCommand','_setUnit','parseRecordList32','getKerningTables','univer-grid\x20univer-gap-1\x20univer-text-xs\x20univer-text-gray-500\x20dark:!univer-text-gray-400','x-mac-romanian','ink','substitution','M1.84351\x203.41861C1.84351\x203.01861\x202.15531\x202.69434\x202.53993\x202.69434H14.9381C15.3228\x202.69434\x2015.6346\x203.01861\x2015.6346\x203.41861V12.4611C15.6346\x2012.8612\x2015.3228\x2013.1854\x2014.9381\x2013.1854H8.82117L6.06643\x2014.6179C5.85054\x2014.7301\x205.59416\x2014.7181\x205.38884\x2014.5862C5.18352\x2014.4542\x205.05855\x2014.2211\x205.05855\x2013.9701V13.1854H2.53993C2.15531\x2013.1854\x201.84351\x2012.8612\x201.84351\x2012.4611L1.84351\x203.41861ZM6.45141\x2012.7982L8.34531\x2012.0135C8.44201\x2011.9632\x208.54864\x2011.9371\x208.65676\x2011.9371H14.2417C14.3522\x2011.9371\x2014.4417\x2011.8475\x2014.4417\x2011.7371V4.14271C14.4417\x204.03225\x2014.3522\x203.94271\x2014.2417\x203.94271H3.23636C3.12591\x203.94271\x203.03636\x204.03225\x203.03636\x204.14271L3.03636\x2011.7371C3.03636\x2011.8475\x203.12591\x2011.9371\x203.23636\x2011.9371L5.75498\x2011.9371C6.1396\x2011.9371\x206.45141\x2012.0611\x206.45141\x2012.4611V12.7982Z','visible','set','expandCoverage','sharedTuples','formField','featureParams','FORM_FIELD','TableIcon','getPath','image','PdfFormFieldType','resolvePdfTableThemePalette','ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»…\u00a0ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄€‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ','stringToGlyphIndexes','overlay','toBuffer','query','TAG','HorizontallyIcon','1em','designerURL','pt-PT','univer-border-primary-500\x20univer-bg-primary-100\x20dark:!univer-border-primary-500\x20dark:!univer-bg-primary-900','setCurrentIndex','FlipVerticalIcon','preparePdfManagedImageInsertion','OPERAND','PdfPageThumbnailAction','az-Cyrl','setRelative','chainRuleTable','_emit','variationDataSize','release','INPUT','styleName','getBlendVector','getState','%,\x20','end_','scriptListTable','axisValueMaps','M5.83725\x206.78345C6.22188\x206.78345\x206.53368\x207.10742\x206.53368\x207.50706V8.41159C6.53368\x208.81123\x206.22188\x209.13521\x205.83725\x209.13521C5.45263\x209.13521\x205.14082\x208.81123\x205.14082\x208.41159V7.50706C5.14082\x207.10742\x205.45263\x206.78345\x205.83725\x206.78345Z','yMin','axisValues','sharedPoints','shadings','searchRange','\x22Times\x20New\x20Roman\x22,\x20Times,\x20serif','maxInstructionDefs','useDependency','es-HN','workerURL','map','pageWidthPt','font-color-double-icon','document','GSUB\x20Alternate\x20Substitution\x20Subtable\x20identifier-format\x20must\x20be\x201','uLong','resourceBindings','x-mac-croatian','fantasy','pdfs-ui.pageThumbnail.copy','pipeThrough','onmessageerror','thaiWord','peekPage','subrs','PdfListMarkerAlignment','univer-w-full\x20univer-min-w-0\x20univer-py-1','markerAlignment','cmap12Offset','_numberOfContours','#2563eb','PdfInsertTableOperation','url(#text-icon_clip0_1293_26)','fromEntries','preparePage','checkSum','de-LU','_svgDocLength','instructions','selection','ArrowRight','es-AR','join'];_0x3436=function(){return _0x5c79fe;};return _0x3436();}(function(_0x2c611f,_0x4ebd2a){const _0x36310a=_0x57a5,_0x1f0837=_0x2c611f();while(!![]){try{const _0x223a4b=-parseInt(_0x36310a(0x6f0))/0x1+-parseInt(_0x36310a(0xc12))/0x2+-parseInt(_0x36310a(0x4f4))/0x3+parseInt(_0x36310a(0x334))/0x4*(parseInt(_0x36310a(0x15d))/0x5)+-parseInt(_0x36310a(0x2b7))/0x6+-parseInt(_0x36310a(0x7b4))/0x7*(-parseInt(_0x36310a(0x59f))/0x8)+parseInt(_0x36310a(0x811))/0x9*(parseInt(_0x36310a(0x893))/0xa);if(_0x223a4b===_0x4ebd2a)break;else _0x1f0837['push'](_0x1f0837['shift']());}catch(_0x22147b){_0x1f0837['push'](_0x1f0837['shift']());}}}(_0x3436,0x7d087),function(_0x1ee220,_0x2ccb74){const _0x4bb749=_0x57a5;typeof exports=='object'&&typeof module<'u'?_0x2ccb74(exports,require('@univerjs-pro/pdfs'),require('@univerjs/core'),require('rxjs'),require('@univerjs-pro/license'),require('@univerjs/ui'),require('react'),require('@univerjs/design'),require('react/jsx-runtime'),require('@univerjs-pro/pdfs-render')):typeof define=='function'&&define[_0x4bb749(0x1f3)]?define(['exports',_0x4bb749(0x49b),_0x4bb749(0x6a1),_0x4bb749(0x487),_0x4bb749(0x114),_0x4bb749(0x5e1),'react','@univerjs/design','react/jsx-runtime',_0x4bb749(0x944)],_0x2ccb74):(_0x1ee220=typeof globalThis<'u'?globalThis:_0x1ee220||self,_0x2ccb74(_0x1ee220[_0x4bb749(0x57f)]={},_0x1ee220['UniverProPdfs'],_0x1ee220[_0x4bb749(0xa2d)],_0x1ee220[_0x4bb749(0x487)],_0x1ee220[_0x4bb749(0x2d9)],_0x1ee220[_0x4bb749(0x75e)],_0x1ee220[_0x4bb749(0x9a8)],_0x1ee220['UniverDesign'],_0x1ee220[_0x4bb749(0x9a8)],_0x1ee220[_0x4bb749(0x1de)]));}(this,function(_0x14d807,_0x21fa40,_0x2894d3,_0x3fc99d,_0x126463,_0x480239,_0x558781,_0x4c8ef3,_0x2cdc8e,_0x3e1c10){const _0x59d572=_0x57a5;Object[_0x59d572(0x18b)](_0x14d807,Symbol['toStringTag'],{'value':_0x59d572(0x637)});var _0x896d63=(_0x101f2e,_0x15bdff)=>()=>(_0x15bdff||(_0x101f2e((_0x15bdff={'exports':{}})[_0x59d572(0x7b6)],_0x15bdff),_0x101f2e=null),_0x15bdff[_0x59d572(0x7b6)]);let _0x41d596=0.6;function _0x1e6e5c(_0x28540f){const _0x520a9f=_0x59d572;var _0x2265fc;let _0x4e3feb=_0x28540f[_0x520a9f(0x336)][_0x520a9f(0xca2)],_0x5394a3=(_0x2265fc=_0x28540f[_0x520a9f(0x336)][_0x520a9f(0x58c)])==null?_0x4e3feb:_0x2265fc;return[(0x0,_0x21fa40[_0x520a9f(0x7c3)])(_0x5394a3[0x0]-_0x4e3feb[0x0]),(0x0,_0x21fa40[_0x520a9f(0x7c3)])(_0x4e3feb[0x3]-_0x5394a3[0x3]),(0x0,_0x21fa40[_0x520a9f(0x7c3)])(_0x5394a3[0x2]-_0x4e3feb[0x0]),(0x0,_0x21fa40[_0x520a9f(0x7c3)])(_0x4e3feb[0x3]-_0x5394a3[0x1])];}function _0x1669a1(_0x3de299,_0x459adf,_0x47f32b=_0x41d596){const _0xff6dd=_0x59d572;let [_0x254fe7,_0x15fda0,_0x57dc8a,_0x32e10f]=_0x459adf,_0xb2aeaa=_0x57dc8a-_0x254fe7,_0x5a4604=_0x32e10f-_0x15fda0;if(!_0x59ede0(_0x3de299[_0xff6dd(0x65c)])||!_0x59ede0(_0x3de299[_0xff6dd(0x1ae)])||!_0x59ede0(_0xb2aeaa)||!_0x59ede0(_0x5a4604)||!_0x59ede0(_0x47f32b)||_0x47f32b>0.6)throw RangeError(_0xff6dd(0x241)+_0x41d596+'.');let _0x417dde=Math[_0xff6dd(0xb2a)](0x1,_0xb2aeaa*_0x47f32b/_0x3de299[_0xff6dd(0x65c)],_0x5a4604*_0x47f32b/_0x3de299[_0xff6dd(0x1ae)]),_0x5f2296=_0x3de299[_0xff6dd(0x65c)]*_0x417dde,_0x579b01=_0x3de299[_0xff6dd(0x1ae)]*_0x417dde,_0x113d95=_0x254fe7+(_0xb2aeaa-_0x5f2296)/0x2,_0x140d85=_0x15fda0+(_0x5a4604-_0x579b01)/0x2;return[_0x113d95,_0x140d85,_0x113d95+_0x5f2296,_0x140d85+_0x579b01];}async function _0x942c65(_0x3fca17){const _0x45a3b0=_0x59d572;let _0x58827e=_0x3fca17[_0x45a3b0(0xb09)][_0x45a3b0(0x664)][_0x45a3b0(0x816)](_0x55b972=>_0x55b972['id']===_0x3fca17[_0x45a3b0(0x8ee)]);if(!_0x58827e||_0x3fca17[_0x45a3b0(0xbbe)][_0x45a3b0(0x401)]!==_0x3fca17['document']['id']||_0x3fca17['commandContext'][_0x45a3b0(0x401)]!==_0x3fca17['document']['id'])throw Error('The\x20PDF\x20document,\x20editor\x20session,\x20and\x20page\x20must\x20match\x20before\x20inserting\x20an\x20image.');let _0x49beb4=await _0x3fca17[_0x45a3b0(0x660)]['save'](_0x3fca17[_0x45a3b0(0x439)]);try{if(!_0x3fca17[_0x45a3b0(0x7b9)]())throw Error(_0x45a3b0(0x63e));let _0x3d0509=_0x3fca17[_0x45a3b0(0x44c)](_0x3fca17[_0x45a3b0(0xb09)],_0x3fca17[_0x45a3b0(0xbbe)]),_0x57bce1={'asset':{'id':_0x3d0509,'type':_0x21fa40[_0x45a3b0(0x1ce)][_0x45a3b0(0x93b)],'width':_0x49beb4[_0x45a3b0(0x65c)],'height':_0x49beb4[_0x45a3b0(0x1ae)]},'source':_0x49beb4['source'],'imageSourceType':_0x49beb4[_0x45a3b0(0x57c)],'mimeType':_0x49beb4[_0x45a3b0(0x23d)],'fileName':_0x49beb4[_0x45a3b0(0x168)],'byteLength':_0x49beb4[_0x45a3b0(0xc50)]},_0x4c2c2b=_0x1669a1({'width':(0x0,_0x21fa40[_0x45a3b0(0x14f)])(_0x49beb4[_0x45a3b0(0x65c)]),'height':(0x0,_0x21fa40[_0x45a3b0(0x14f)])(_0x49beb4[_0x45a3b0(0x1ae)])},_0x1e6e5c(_0x58827e)),_0x3dabdc=_0x21fa40[_0x45a3b0(0x6b0)][_0x45a3b0(0x1ad)](_0x3fca17[_0x45a3b0(0x60b)],{'pageId':_0x58827e['id'],'resource':_0x57bce1,'bbox':_0x4c2c2b,'zIndex':_0x3fca17[_0x45a3b0(0x7e1)]});return{'assetId':_0x3d0509,'pageId':_0x58827e['id'],'commandResult':_0x3dabdc};}catch(_0xc65c7f){try{_0x3fca17[_0x45a3b0(0x660)]['release'](_0x49beb4[_0x45a3b0(0x419)]);}catch{}throw _0xc65c7f;}}function _0x4d2d00(_0x3cd366,_0x4565f5,_0x4db787,_0x35f0a7,_0x36a129){const _0x3fa342=_0x59d572;var _0x490f27;return!_0x4565f5||_0x4565f5['documentId']!==_0x3cd366||!Object['prototype'][_0x3fa342(0x9d6)]['call'](_0x4565f5[_0x3fa342(0x698)],_0x4db787)||(_0x490f27=_0x35f0a7[_0x3fa342(0x2df)](_0x4565f5[_0x3fa342(0x698)][_0x4db787][_0x3fa342(0x419)]))==null?_0x36a129():_0x490f27;}function _0x5834cf(_0x221456,_0x36d15e){const _0x170ec6=_0x59d572;let _0x4ce8e7=[];for(let _0x19a4fd of _0x221456)try{_0x19a4fd[_0x170ec6(0xa9e)]();}catch(_0x46ce19){_0x4ce8e7[_0x170ec6(0x381)](_0x46ce19);}return _0x4ce8e7[_0x170ec6(0xba6)]&&(_0x36d15e==null||_0x36d15e(_0x4ce8e7)),_0x4ce8e7;}function _0x59ede0(_0x458157){const _0x2fcfa8=_0x59d572;return Number[_0x2fcfa8(0x771)](_0x458157)&&_0x458157>0x0;}function _0x236842(_0x21e59b){const _0x138fab=_0x59d572;if(_0x4a689a(_0x21e59b[_0x138fab(0x86a)],_0x138fab(0x86a)),_0x4a689a(_0x21e59b['columns'],'columns'),!Number[_0x138fab(0x771)](_0x21e59b['zoom'])||_0x21e59b[_0x138fab(0x68e)]<=0x0)throw RangeError(_0x138fab(0x26e));let _0x40714b=Math[_0x138fab(0x542)](0x1,_0x21e59b[_0x138fab(0x496)]-0x60),_0xe85a93=Math[_0x138fab(0x542)](0x18,Math[_0x138fab(0xb2a)](_0x21e59b[_0x138fab(0x581)]*0.28,_0x21e59b[_0x138fab(0x581)]-0x30-0x1)),_0x593753=Math[_0x138fab(0x542)](0x1,_0x21e59b[_0x138fab(0x581)]-_0xe85a93-0x30),_0x3939fd=Math[_0x138fab(0xb2a)](_0x21e59b[_0x138fab(0x189)]*0x60,_0x40714b),_0x559434=Math['min'](_0x21e59b['rows']*0x24,_0x593753),_0x14252e=Math['max'](0x30,(_0x21e59b['viewportWidthCssPx']-_0x3939fd)/0x2),_0x5de020=_0x9522e6=>(0x0,_0x21fa40[_0x138fab(0x14f)])(_0x9522e6/_0x21e59b[_0x138fab(0x68e)]);return{'bbox':[_0x5de020(_0x14252e),_0x5de020(_0xe85a93),_0x5de020(_0x14252e+_0x3939fd),_0x5de020(_0xe85a93+_0x559434)],'padding':_0x5de020(0x6),'firstCellCssPoint':[_0x14252e+Math[_0x138fab(0xb2a)](0xa,_0x3939fd/_0x21e59b[_0x138fab(0x189)]/0x2),_0xe85a93+Math[_0x138fab(0xb2a)](0xa,_0x559434/_0x21e59b[_0x138fab(0x86a)]/0x2)]};}function _0x4a689a(_0x5dd8af,_0x5c3d85){const _0x20e1b5=_0x59d572;if(!Number[_0x20e1b5(0x144)](_0x5dd8af)||_0x5dd8af<=0x0)throw RangeError(_0x5c3d85+'\x20must\x20be\x20a\x20positive\x20integer');}var _0x2621d2=_0x896d63((_0x36bc23,_0x5da5e7)=>{var _0x58e398=((()=>{const _0x2273f6=_0x57a5;var _0x10a87d=Object[_0x2273f6(0x18b)],_0x4d58df=Object['getOwnPropertyDescriptor'],_0x480968=Object[_0x2273f6(0x602)],_0x2d8e84=Object[_0x2273f6(0x505)][_0x2273f6(0x9d6)],_0x306243=(_0x2397c0,_0x1b0df0)=>{for(var _0x149d8 in _0x1b0df0)_0x10a87d(_0x2397c0,_0x149d8,{'get':_0x1b0df0[_0x149d8],'enumerable':!0x0});},_0x2dcf06=(_0x6c7f76,_0x4e9e98,_0x9f145e,_0x3b79ab)=>{const _0x27479a=_0x2273f6;if(_0x4e9e98&&typeof _0x4e9e98==_0x27479a(0x961)||typeof _0x4e9e98=='function'){for(let _0x60f50e of _0x480968(_0x4e9e98))!_0x2d8e84[_0x27479a(0x3f4)](_0x6c7f76,_0x60f50e)&&_0x60f50e!==_0x9f145e&&_0x10a87d(_0x6c7f76,_0x60f50e,{'get':()=>_0x4e9e98[_0x60f50e],'enumerable':!(_0x3b79ab=_0x4d58df(_0x4e9e98,_0x60f50e))||_0x3b79ab[_0x27479a(0x3be)]});}return _0x6c7f76;},_0x38dab6=_0x39a2a2=>_0x2dcf06(_0x10a87d({},'__esModule',{'value':!0x0}),_0x39a2a2),_0x2352e8={};_0x306243(_0x2352e8,{'BoundingBox':()=>_0x63989f,'Font':()=>_0x3f953c,'Glyph':()=>_0x57f2d5,'Path':()=>_0x4cc193,'_parse':()=>_0x4d43da,'load':()=>_0x30823f,'loadSync':()=>_0x5d777b,'parse':()=>_0x229ef4});var _0x274b42=0x0,_0x22ac66=-0x3;function _0x638e63(){this['table']=new Uint16Array(0x10),this['trans']=new Uint16Array(0x120);}function _0x209120(_0x3806b5,_0x36807f){const _0x127777=_0x2273f6;this[_0x127777(0x419)]=_0x3806b5,this[_0x127777(0x555)]=0x0,this['tag']=0x0,this[_0x127777(0x5b0)]=0x0,this[_0x127777(0x38a)]=_0x36807f,this[_0x127777(0xc5c)]=0x0,this['ltree']=new _0x638e63(),this[_0x127777(0x319)]=new _0x638e63();}var _0x503001=new _0x638e63(),_0x1d1ac2=new _0x638e63(),_0x175ccd=new Uint8Array(0x1e),_0x3dbf7c=new Uint16Array(0x1e),_0x528ee0=new Uint8Array(0x1e),_0x5584ab=new Uint16Array(0x1e),_0x17ca4a=new Uint8Array([0x10,0x11,0x12,0x0,0x8,0x7,0x9,0x6,0xa,0x5,0xb,0x4,0xc,0x3,0xd,0x2,0xe,0x1,0xf]),_0x178a4b=new _0x638e63(),_0x5d882d=new Uint8Array(0x140);function _0x2d9167(_0x4e2b2f,_0x1f684e,_0x184298,_0x38daf1){var _0x5eb8c0,_0x4d61c2;for(_0x5eb8c0=0x0;_0x5eb8c0<_0x184298;++_0x5eb8c0)_0x4e2b2f[_0x5eb8c0]=0x0;for(_0x5eb8c0=0x0;_0x5eb8c0<0x1e-_0x184298;++_0x5eb8c0)_0x4e2b2f[_0x5eb8c0+_0x184298]=_0x5eb8c0/_0x184298|0x0;for(_0x4d61c2=_0x38daf1,_0x5eb8c0=0x0;_0x5eb8c0<0x1e;++_0x5eb8c0)_0x1f684e[_0x5eb8c0]=_0x4d61c2,_0x4d61c2+=0x1<<_0x4e2b2f[_0x5eb8c0];}function _0x5d57d1(_0x20eac0,_0x587782){const _0x240d33=_0x2273f6;var _0x4d3b95;for(_0x4d3b95=0x0;_0x4d3b95<0x7;++_0x4d3b95)_0x20eac0[_0x240d33(0x4af)][_0x4d3b95]=0x0;for(_0x20eac0[_0x240d33(0x4af)][0x7]=0x18,_0x20eac0['table'][0x8]=0x98,_0x20eac0[_0x240d33(0x4af)][0x9]=0x70,_0x4d3b95=0x0;_0x4d3b95<0x18;++_0x4d3b95)_0x20eac0[_0x240d33(0x255)][_0x4d3b95]=0x100+_0x4d3b95;for(_0x4d3b95=0x0;_0x4d3b95<0x90;++_0x4d3b95)_0x20eac0[_0x240d33(0x255)][0x18+_0x4d3b95]=_0x4d3b95;for(_0x4d3b95=0x0;_0x4d3b95<0x8;++_0x4d3b95)_0x20eac0[_0x240d33(0x255)][0xa8+_0x4d3b95]=0x118+_0x4d3b95;for(_0x4d3b95=0x0;_0x4d3b95<0x70;++_0x4d3b95)_0x20eac0[_0x240d33(0x255)][0xb0+_0x4d3b95]=0x90+_0x4d3b95;for(_0x4d3b95=0x0;_0x4d3b95<0x5;++_0x4d3b95)_0x587782[_0x240d33(0x4af)][_0x4d3b95]=0x0;for(_0x587782[_0x240d33(0x4af)][0x5]=0x20,_0x4d3b95=0x0;_0x4d3b95<0x20;++_0x4d3b95)_0x587782['trans'][_0x4d3b95]=_0x4d3b95;}var _0x2323cd=new Uint16Array(0x10);function _0x43168d(_0x272ef7,_0x322bb7,_0x3dd322,_0x2961ed){const _0x27dcc5=_0x2273f6;var _0x5ec0e1,_0x56de37;for(_0x5ec0e1=0x0;_0x5ec0e1<0x10;++_0x5ec0e1)_0x272ef7[_0x27dcc5(0x4af)][_0x5ec0e1]=0x0;for(_0x5ec0e1=0x0;_0x5ec0e1<_0x2961ed;++_0x5ec0e1)_0x272ef7[_0x27dcc5(0x4af)][_0x322bb7[_0x3dd322+_0x5ec0e1]]++;for(_0x272ef7[_0x27dcc5(0x4af)][0x0]=0x0,_0x56de37=0x0,_0x5ec0e1=0x0;_0x5ec0e1<0x10;++_0x5ec0e1)_0x2323cd[_0x5ec0e1]=_0x56de37,_0x56de37+=_0x272ef7[_0x27dcc5(0x4af)][_0x5ec0e1];for(_0x5ec0e1=0x0;_0x5ec0e1<_0x2961ed;++_0x5ec0e1)_0x322bb7[_0x3dd322+_0x5ec0e1]&&(_0x272ef7[_0x27dcc5(0x255)][_0x2323cd[_0x322bb7[_0x3dd322+_0x5ec0e1]]++]=_0x5ec0e1);}function _0x3f3751(_0x5f1196){const _0x1f6f20=_0x2273f6;_0x5f1196[_0x1f6f20(0x5b0)]--||(_0x5f1196[_0x1f6f20(0xbc6)]=_0x5f1196['source'][_0x5f1196[_0x1f6f20(0x555)]++],_0x5f1196['bitcount']=0x7);var _0x4e5a74=_0x5f1196[_0x1f6f20(0xbc6)]&0x1;return _0x5f1196[_0x1f6f20(0xbc6)]>>>=0x1,_0x4e5a74;}function _0x39c75a(_0x67beea,_0x21112c,_0x51a9f3){const _0x44ad6d=_0x2273f6;if(!_0x21112c)return _0x51a9f3;for(;_0x67beea[_0x44ad6d(0x5b0)]<0x18;)_0x67beea[_0x44ad6d(0xbc6)]|=_0x67beea[_0x44ad6d(0x419)][_0x67beea['sourceIndex']++]<<_0x67beea[_0x44ad6d(0x5b0)],_0x67beea[_0x44ad6d(0x5b0)]+=0x8;var _0x5f3e29=_0x67beea[_0x44ad6d(0xbc6)]&0xffff>>>0x10-_0x21112c;return _0x67beea[_0x44ad6d(0xbc6)]>>>=_0x21112c,_0x67beea['bitcount']-=_0x21112c,_0x5f3e29+_0x51a9f3;}function _0x316354(_0x573533,_0x4f33e1){const _0xf9578d=_0x2273f6;for(;_0x573533[_0xf9578d(0x5b0)]<0x18;)_0x573533['tag']|=_0x573533[_0xf9578d(0x419)][_0x573533['sourceIndex']++]<<_0x573533['bitcount'],_0x573533[_0xf9578d(0x5b0)]+=0x8;var _0x3ce94c=0x0,_0x5ae69e=0x0,_0x1c54b8=0x0,_0x5d8ec5=_0x573533[_0xf9578d(0xbc6)];do _0x5ae69e=0x2*_0x5ae69e+(_0x5d8ec5&0x1),_0x5d8ec5>>>=0x1,++_0x1c54b8,_0x3ce94c+=_0x4f33e1['table'][_0x1c54b8],_0x5ae69e-=_0x4f33e1[_0xf9578d(0x4af)][_0x1c54b8];while(_0x5ae69e>=0x0);return _0x573533[_0xf9578d(0xbc6)]=_0x5d8ec5,_0x573533['bitcount']-=_0x1c54b8,_0x4f33e1['trans'][_0x3ce94c+_0x5ae69e];}function _0x735f2(_0x39341d,_0x1905f4,_0x3abd64){var _0x8d9231=_0x39c75a(_0x39341d,0x5,0x101),_0x140772=_0x39c75a(_0x39341d,0x5,0x1),_0x5c4f55=_0x39c75a(_0x39341d,0x4,0x4),_0xfab802,_0x1f5453,_0x476bbc;for(_0xfab802=0x0;_0xfab802<0x13;++_0xfab802)_0x5d882d[_0xfab802]=0x0;for(_0xfab802=0x0;_0xfab802<_0x5c4f55;++_0xfab802){var _0x3b8eed=_0x39c75a(_0x39341d,0x3,0x0);_0x5d882d[_0x17ca4a[_0xfab802]]=_0x3b8eed;}for(_0x43168d(_0x178a4b,_0x5d882d,0x0,0x13),_0x1f5453=0x0;_0x1f5453<_0x8d9231+_0x140772;){var _0x4fa488=_0x316354(_0x39341d,_0x178a4b);switch(_0x4fa488){case 0x10:var _0x2d5693=_0x5d882d[_0x1f5453-0x1];for(_0x476bbc=_0x39c75a(_0x39341d,0x2,0x3);_0x476bbc;--_0x476bbc)_0x5d882d[_0x1f5453++]=_0x2d5693;break;case 0x11:for(_0x476bbc=_0x39c75a(_0x39341d,0x3,0x3);_0x476bbc;--_0x476bbc)_0x5d882d[_0x1f5453++]=0x0;break;case 0x12:for(_0x476bbc=_0x39c75a(_0x39341d,0x7,0xb);_0x476bbc;--_0x476bbc)_0x5d882d[_0x1f5453++]=0x0;break;default:_0x5d882d[_0x1f5453++]=_0x4fa488;break;}}_0x43168d(_0x1905f4,_0x5d882d,0x0,_0x8d9231),_0x43168d(_0x3abd64,_0x5d882d,_0x8d9231,_0x140772);}function _0x1609f5(_0x565c1a,_0x1a2e07,_0x57e369){const _0x1f767b=_0x2273f6;for(;;){var _0x5a87c9=_0x316354(_0x565c1a,_0x1a2e07);if(_0x5a87c9===0x100)return _0x274b42;if(_0x5a87c9<0x100)_0x565c1a[_0x1f767b(0x38a)][_0x565c1a[_0x1f767b(0xc5c)]++]=_0x5a87c9;else{var _0x1f4b25,_0x44631b,_0x124b9d,_0x2656ae;for(_0x5a87c9-=0x101,_0x1f4b25=_0x39c75a(_0x565c1a,_0x175ccd[_0x5a87c9],_0x3dbf7c[_0x5a87c9]),_0x44631b=_0x316354(_0x565c1a,_0x57e369),_0x124b9d=_0x565c1a[_0x1f767b(0xc5c)]-_0x39c75a(_0x565c1a,_0x528ee0[_0x44631b],_0x5584ab[_0x44631b]),_0x2656ae=_0x124b9d;_0x2656ae<_0x124b9d+_0x1f4b25;++_0x2656ae)_0x565c1a['dest'][_0x565c1a[_0x1f767b(0xc5c)]++]=_0x565c1a['dest'][_0x2656ae];}}}function _0x5967e2(_0x2e924d){const _0x1f7f2d=_0x2273f6;for(var _0x3c0226,_0x29e518,_0x353332;_0x2e924d[_0x1f7f2d(0x5b0)]>0x8;)_0x2e924d[_0x1f7f2d(0x555)]--,_0x2e924d[_0x1f7f2d(0x5b0)]-=0x8;if(_0x3c0226=_0x2e924d[_0x1f7f2d(0x419)][_0x2e924d['sourceIndex']+0x1],_0x3c0226=0x100*_0x3c0226+_0x2e924d['source'][_0x2e924d[_0x1f7f2d(0x555)]],_0x29e518=_0x2e924d[_0x1f7f2d(0x419)][_0x2e924d[_0x1f7f2d(0x555)]+0x3],_0x29e518=0x100*_0x29e518+_0x2e924d['source'][_0x2e924d[_0x1f7f2d(0x555)]+0x2],_0x3c0226!==(~_0x29e518&0xffff))return _0x22ac66;for(_0x2e924d['sourceIndex']+=0x4,_0x353332=_0x3c0226;_0x353332;--_0x353332)_0x2e924d[_0x1f7f2d(0x38a)][_0x2e924d[_0x1f7f2d(0xc5c)]++]=_0x2e924d[_0x1f7f2d(0x419)][_0x2e924d[_0x1f7f2d(0x555)]++];return _0x2e924d['bitcount']=0x0,_0x274b42;}function _0xe89db4(_0x558754,_0xaeefec){const _0x4260b3=_0x2273f6;var _0x53e860=new _0x209120(_0x558754,_0xaeefec),_0x529d89,_0x3fe5d7,_0x579b4e;do{switch(_0x529d89=_0x3f3751(_0x53e860),_0x3fe5d7=_0x39c75a(_0x53e860,0x2,0x0),_0x3fe5d7){case 0x0:_0x579b4e=_0x5967e2(_0x53e860);break;case 0x1:_0x579b4e=_0x1609f5(_0x53e860,_0x503001,_0x1d1ac2);break;case 0x2:_0x735f2(_0x53e860,_0x53e860[_0x4260b3(0x9c5)],_0x53e860[_0x4260b3(0x319)]),_0x579b4e=_0x1609f5(_0x53e860,_0x53e860[_0x4260b3(0x9c5)],_0x53e860[_0x4260b3(0x319)]);break;default:_0x579b4e=_0x22ac66;}if(_0x579b4e!==_0x274b42)throw Error(_0x4260b3(0x859));}while(!_0x529d89);return _0x53e860[_0x4260b3(0xc5c)]<_0x53e860[_0x4260b3(0x38a)]['length']?typeof _0x53e860[_0x4260b3(0x38a)]['slice']==_0x4260b3(0x9df)?_0x53e860[_0x4260b3(0x38a)]['slice'](0x0,_0x53e860[_0x4260b3(0xc5c)]):_0x53e860['dest'][_0x4260b3(0x7f4)](0x0,_0x53e860[_0x4260b3(0xc5c)]):_0x53e860[_0x4260b3(0x38a)];}_0x5d57d1(_0x503001,_0x1d1ac2),_0x2d9167(_0x175ccd,_0x3dbf7c,0x4,0x3),_0x2d9167(_0x528ee0,_0x5584ab,0x2,0x1),_0x175ccd[0x1c]=0x0,_0x3dbf7c[0x1c]=0x102;function _0xb5e349(_0x4d1d23,_0x30ba86,_0x5119a7,_0x586c24,_0x24e78b){return(0x1-_0x24e78b)**0x3*_0x4d1d23+0x3*(0x1-_0x24e78b)**0x2*_0x24e78b*_0x30ba86+0x3*(0x1-_0x24e78b)*_0x24e78b**0x2*_0x5119a7+_0x24e78b**0x3*_0x586c24;}function _0xd493db(){this['x1']=NaN,this['y1']=NaN,this['x2']=NaN,this['y2']=NaN;}_0xd493db[_0x2273f6(0x505)]['isEmpty']=function(){return isNaN(this['x1'])||isNaN(this['y1'])||isNaN(this['x2'])||isNaN(this['y2']);},_0xd493db[_0x2273f6(0x505)][_0x2273f6(0x2e2)]=function(_0x18b393,_0x4b82e5){const _0x5f0841=_0x2273f6;typeof _0x18b393==_0x5f0841(0x97e)&&((isNaN(this['x1'])||isNaN(this['x2']))&&(this['x1']=_0x18b393,this['x2']=_0x18b393),_0x18b393<this['x1']&&(this['x1']=_0x18b393),_0x18b393>this['x2']&&(this['x2']=_0x18b393)),typeof _0x4b82e5=='number'&&((isNaN(this['y1'])||isNaN(this['y2']))&&(this['y1']=_0x4b82e5,this['y2']=_0x4b82e5),_0x4b82e5<this['y1']&&(this['y1']=_0x4b82e5),_0x4b82e5>this['y2']&&(this['y2']=_0x4b82e5));},_0xd493db['prototype'][_0x2273f6(0x99e)]=function(_0x2b96d7){const _0x41f0e2=_0x2273f6;this[_0x41f0e2(0x2e2)](_0x2b96d7,null);},_0xd493db[_0x2273f6(0x505)]['addY']=function(_0x2fca29){const _0x4770b6=_0x2273f6;this[_0x4770b6(0x2e2)](null,_0x2fca29);},_0xd493db['prototype'][_0x2273f6(0x2bb)]=function(_0x49d961,_0x4e7dbe,_0x15338a,_0x522622,_0xc2fff8,_0x2053ed,_0x5ceedb,_0x517ad8){const _0x3d091a=_0x2273f6;let _0x52178c=[_0x49d961,_0x4e7dbe],_0x19947e=[_0x15338a,_0x522622],_0x328c09=[_0xc2fff8,_0x2053ed],_0x282f61=[_0x5ceedb,_0x517ad8];this[_0x3d091a(0x2e2)](_0x49d961,_0x4e7dbe),this[_0x3d091a(0x2e2)](_0x5ceedb,_0x517ad8);for(let _0x31daaf=0x0;_0x31daaf<=0x1;_0x31daaf++){let _0x5b6652=0x6*_0x52178c[_0x31daaf]-0xc*_0x19947e[_0x31daaf]+0x6*_0x328c09[_0x31daaf],_0x3ab106=-0x3*_0x52178c[_0x31daaf]+0x9*_0x19947e[_0x31daaf]-0x9*_0x328c09[_0x31daaf]+0x3*_0x282f61[_0x31daaf],_0x5258c5=0x3*_0x19947e[_0x31daaf]-0x3*_0x52178c[_0x31daaf];if(_0x3ab106===0x0){if(_0x5b6652===0x0)continue;let _0xf9396=-_0x5258c5/_0x5b6652;0x0<_0xf9396&&_0xf9396<0x1&&(_0x31daaf===0x0&&this['addX'](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0xf9396)),_0x31daaf===0x1&&this[_0x3d091a(0x67a)](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0xf9396)));continue;}let _0xda72d8=_0x5b6652**0x2-0x4*_0x5258c5*_0x3ab106;if(_0xda72d8<0x0)continue;let _0x5c41b5=(-_0x5b6652+Math['sqrt'](_0xda72d8))/(0x2*_0x3ab106);0x0<_0x5c41b5&&_0x5c41b5<0x1&&(_0x31daaf===0x0&&this[_0x3d091a(0x99e)](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0x5c41b5)),_0x31daaf===0x1&&this[_0x3d091a(0x67a)](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0x5c41b5)));let _0x2bef75=(-_0x5b6652-Math[_0x3d091a(0x754)](_0xda72d8))/(0x2*_0x3ab106);0x0<_0x2bef75&&_0x2bef75<0x1&&(_0x31daaf===0x0&&this[_0x3d091a(0x99e)](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0x2bef75)),_0x31daaf===0x1&&this[_0x3d091a(0x67a)](_0xb5e349(_0x52178c[_0x31daaf],_0x19947e[_0x31daaf],_0x328c09[_0x31daaf],_0x282f61[_0x31daaf],_0x2bef75)));}},_0xd493db[_0x2273f6(0x505)]['addQuad']=function(_0xff5015,_0xd459dc,_0x16080e,_0x20f117,_0x2dfc82,_0x52db81){const _0x4d7c6f=_0x2273f6;let _0x37823c=_0xff5015+0x2/0x3*(_0x16080e-_0xff5015),_0x5ce13b=_0xd459dc+0x2/0x3*(_0x20f117-_0xd459dc),_0x101bcc=_0x37823c+0x1/0x3*(_0x2dfc82-_0xff5015),_0x10e7b8=_0x5ce13b+0x1/0x3*(_0x52db81-_0xd459dc);this[_0x4d7c6f(0x2bb)](_0xff5015,_0xd459dc,_0x37823c,_0x5ce13b,_0x101bcc,_0x10e7b8,_0x2dfc82,_0x52db81);};var _0x63989f=_0xd493db;function _0x45652a(){const _0x39ff8b=_0x2273f6;this[_0x39ff8b(0x440)]=[],this['fill']=_0x39ff8b(0x4df),this[_0x39ff8b(0xa25)]=null,this[_0x39ff8b(0x5ce)]=0x1;}var _0x3b7c84={};function _0x34f421(_0x4bc4b0,_0x365188){const _0x2c1b40=_0x2273f6;let _0x1f1f4d=Math[_0x2c1b40(0x559)](_0x4bc4b0),_0x4e20a3=_0x4bc4b0-_0x1f1f4d;if(_0x3b7c84[_0x365188]||(_0x3b7c84[_0x365188]={}),_0x3b7c84[_0x365188][_0x4e20a3]!==void 0x0)return _0x1f1f4d+_0x3b7c84[_0x365188][_0x4e20a3];let _0x49c9c1=+(Math[_0x2c1b40(0x157)](_0x4e20a3+'e+'+_0x365188)+'e-'+_0x365188);return _0x3b7c84[_0x365188][_0x4e20a3]=_0x49c9c1,_0x1f1f4d+_0x49c9c1;}function _0x35c941(_0x187794){const _0x1f93c2=_0x2273f6;let _0x1a139e=[[]],_0x47b631=0x0,_0x44481e=0x0;for(let _0x570721=0x0;_0x570721<_0x187794[_0x1f93c2(0xba6)];_0x570721+=0x1){let _0x1d1101=_0x1a139e[_0x1a139e['length']-0x1],_0x24aa09=_0x187794[_0x570721],_0xb7d1b1=_0x1d1101[0x0],_0xef5008=_0x1d1101[0x1],_0xc42e35=_0x1d1101[_0x1d1101[_0x1f93c2(0xba6)]-0x1],_0xd901ab=_0x187794[_0x570721+0x1];_0x1d1101[_0x1f93c2(0x381)](_0x24aa09),_0x24aa09[_0x1f93c2(0x2c1)]==='M'?(_0x47b631=_0x24aa09['x'],_0x44481e=_0x24aa09['y']):_0x24aa09[_0x1f93c2(0x2c1)]==='L'&&(!_0xd901ab||_0xd901ab[_0x1f93c2(0x2c1)]==='Z')?Math[_0x1f93c2(0x7f7)](_0x24aa09['x']-_0x47b631)>0x1||Math[_0x1f93c2(0x7f7)](_0x24aa09['y']-_0x44481e)>0x1||_0x1d1101[_0x1f93c2(0x8f2)]():_0x24aa09['type']==='L'&&_0xc42e35&&_0xc42e35['x']===_0x24aa09['x']&&_0xc42e35['y']===_0x24aa09['y']?_0x1d1101[_0x1f93c2(0x8f2)]():_0x24aa09[_0x1f93c2(0x2c1)]==='Z'&&(_0xb7d1b1&&_0xef5008&&_0xc42e35&&_0xb7d1b1[_0x1f93c2(0x2c1)]==='M'&&_0xef5008[_0x1f93c2(0x2c1)]==='L'&&_0xc42e35[_0x1f93c2(0x2c1)]==='L'&&_0xc42e35['x']===_0xb7d1b1['x']&&_0xc42e35['y']===_0xb7d1b1['y']&&(_0x1d1101[_0x1f93c2(0x5b2)](),_0x1d1101[0x0][_0x1f93c2(0x2c1)]='M'),_0x570721+0x1<_0x187794[_0x1f93c2(0xba6)]&&_0x1a139e['push']([]));}return _0x187794=[][_0x1f93c2(0xaba)]['apply']([],_0x1a139e),_0x187794;}function _0xbebf40(_0x4f9607){const _0x151203=_0x2273f6;return Object[_0x151203(0x4ac)]({},{'decimalPlaces':0x2,'optimize':!0x0,'flipY':!0x0,'flipYBase':void 0x0,'scale':0x1,'x':0x0,'y':0x0},_0x4f9607);}function _0x136b3a(_0x23aedd){const _0x1d1ff0=_0x2273f6;return parseInt(_0x23aedd)===_0x23aedd&&(_0x23aedd={'decimalPlaces':_0x23aedd,'flipY':!0x1}),Object[_0x1d1ff0(0x4ac)]({},{'decimalPlaces':0x2,'optimize':!0x0,'flipY':!0x0,'flipYBase':void 0x0},_0x23aedd);}_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x627)]=function(_0x209652,_0x45a9cd={}){const _0x14c3da=_0x2273f6;typeof SVGPathElement<'u'&&_0x209652 instanceof SVGPathElement&&(_0x209652=_0x209652[_0x14c3da(0x719)]('d')),_0x45a9cd=_0xbebf40(_0x45a9cd),this['commands']=[];let _0x4a4994='MmLlQqCcZzHhVv',_0x5d1b14={},_0x31b790=[''],_0x454f89=!0x1;function _0xdfa451(_0x1b82a3){const _0x2c62fd=_0x14c3da;return _0x1b82a3[_0x2c62fd(0xbcd)](_0x5c454a=>_0x5c454a[_0x2c62fd(0xba6)])['map'](_0x4050e4=>{let _0x524c00=parseFloat(_0x4050e4);return(_0x45a9cd['decimalPlaces']||_0x45a9cd['decimalPlaces']===0x0)&&(_0x524c00=_0x34f421(_0x524c00,_0x45a9cd['decimalPlaces'])),_0x524c00;});}function _0x4f1cf6(_0x4ad58d){const _0x4e375c=_0x14c3da;if(!this[_0x4e375c(0x440)][_0x4e375c(0xba6)])return _0x4ad58d;let _0x12b57c=this[_0x4e375c(0x440)][this[_0x4e375c(0x440)]['length']-0x1];for(let _0x5ec7b6=0x0;_0x5ec7b6<_0x4ad58d[_0x4e375c(0xba6)];_0x5ec7b6++)_0x4ad58d[_0x5ec7b6]+=_0x12b57c[_0x5ec7b6&0x1?'y':'x'];return _0x4ad58d;}function _0x39b4cd(){const _0x1d5759=_0x14c3da;if(_0x5d1b14['type']===void 0x0)return;let _0x3f990c=_0x5d1b14[_0x1d5759(0x2c1)][_0x1d5759(0xc97)](),_0x378e40=_0x3f990c!=='Z'&&_0x5d1b14['type'][_0x1d5759(0xc97)]()!==_0x5d1b14[_0x1d5759(0x2c1)],_0x151498=_0xdfa451(_0x31b790);if(_0x31b790=[''],!_0x151498['length']&&_0x3f990c!=='Z')return;_0x378e40&&_0x3f990c!=='H'&&_0x3f990c!=='V'&&(_0x151498=_0x4f1cf6[_0x1d5759(0x640)](this,[_0x151498]));let _0xbd71e0=this['commands']['length']&&this['commands'][this['commands'][_0x1d5759(0xba6)]-0x1]['x']||0x0,_0x3c3d8c=this[_0x1d5759(0x440)][_0x1d5759(0xba6)]&&this['commands'][this[_0x1d5759(0x440)][_0x1d5759(0xba6)]-0x1]['y']||0x0;switch(_0x3f990c){case'M':this['moveTo'](..._0x151498);break;case'L':this[_0x1d5759(0x5be)](..._0x151498);break;case'V':for(let _0x4e412c=0x0;_0x4e412c<_0x151498[_0x1d5759(0xba6)];_0x4e412c++){let _0x44b99d=0x0;_0x378e40&&(_0x44b99d=this[_0x1d5759(0x440)][_0x1d5759(0xba6)]&&this[_0x1d5759(0x440)][this[_0x1d5759(0x440)]['length']-0x1]['y']||0x0),this['lineTo'](_0xbd71e0,_0x151498[_0x4e412c]+_0x44b99d);}break;case'H':for(let _0x157849=0x0;_0x157849<_0x151498[_0x1d5759(0xba6)];_0x157849++){let _0x3c1182=0x0;_0x378e40&&(_0x3c1182=this[_0x1d5759(0x440)][_0x1d5759(0xba6)]&&this[_0x1d5759(0x440)][this[_0x1d5759(0x440)][_0x1d5759(0xba6)]-0x1]['x']||0x0),this[_0x1d5759(0x5be)](_0x151498[_0x157849]+_0x3c1182,_0x3c3d8c);}break;case'C':this[_0x1d5759(0x942)](..._0x151498);break;case'Q':this['quadraticCurveTo'](..._0x151498);break;case'Z':(this[_0x1d5759(0x440)][_0x1d5759(0xba6)]<0x1||this[_0x1d5759(0x440)][this[_0x1d5759(0x440)][_0x1d5759(0xba6)]-0x1]['type']!=='Z')&&this[_0x1d5759(0x408)]();break;}if(this[_0x1d5759(0x440)][_0x1d5759(0xba6)]){for(let _0x547eab in this[_0x1d5759(0x440)][this[_0x1d5759(0x440)]['length']-0x1])this[_0x1d5759(0x440)][this[_0x1d5759(0x440)][_0x1d5759(0xba6)]-0x1][_0x547eab]===void 0x0&&(this[_0x1d5759(0x440)][this[_0x1d5759(0x440)]['length']-0x1][_0x547eab]=0x0);}}for(let _0x1c6693=0x0;_0x1c6693<_0x209652[_0x14c3da(0xba6)];_0x1c6693++){let _0x8b4e2d=_0x209652['charAt'](_0x1c6693),_0x251c29=_0x31b790[_0x31b790[_0x14c3da(0xba6)]-0x1];if(_0x14c3da(0x684)[_0x14c3da(0x709)](_0x8b4e2d)>-0x1)_0x31b790[_0x31b790[_0x14c3da(0xba6)]-0x1]+=_0x8b4e2d;else{if('-+'['indexOf'](_0x8b4e2d)>-0x1){if(!_0x5d1b14[_0x14c3da(0x2c1)]&&!this['commands'][_0x14c3da(0xba6)]&&(_0x5d1b14[_0x14c3da(0x2c1)]='L'),_0x8b4e2d==='-')!_0x5d1b14[_0x14c3da(0x2c1)]||_0x251c29[_0x14c3da(0x709)]('-')>0x0?_0x454f89=!0x0:_0x251c29['length']?_0x31b790[_0x14c3da(0x381)]('-'):_0x31b790[_0x31b790[_0x14c3da(0xba6)]-0x1]=_0x8b4e2d;else{if(!_0x5d1b14['type']||_0x251c29[_0x14c3da(0xba6)]>0x0)_0x454f89=!0x0;else continue;}}else{if(_0x4a4994['indexOf'](_0x8b4e2d)>-0x1)_0x5d1b14['type']?(_0x39b4cd[_0x14c3da(0x640)](this),_0x5d1b14={'type':_0x8b4e2d}):_0x5d1b14['type']=_0x8b4e2d;else{if('SsTtAa'['indexOf'](_0x8b4e2d)>-0x1)throw Error('Unsupported\x20path\x20command:\x20'+_0x8b4e2d+'.\x20Currently\x20supported\x20commands\x20are\x20'+_0x4a4994[_0x14c3da(0x3ba)]('')[_0x14c3da(0xb26)](',\x20')+'.');else _0x14c3da(0x63a)[_0x14c3da(0x709)](_0x8b4e2d)>-0x1?_0x31b790[_0x14c3da(0x381)](''):_0x8b4e2d==='.'?!_0x5d1b14['type']||_0x251c29[_0x14c3da(0x709)](_0x8b4e2d)>-0x1?_0x454f89=!0x0:_0x31b790[_0x31b790['length']-0x1]+=_0x8b4e2d:_0x454f89=!0x0;}}}if(_0x454f89)throw Error('Unexpected\x20character:\x20'+_0x8b4e2d+'\x20at\x20offset\x20'+_0x1c6693);}_0x39b4cd['apply'](this),_0x45a9cd[_0x14c3da(0x73a)]&&(this[_0x14c3da(0x440)]=_0x35c941(this[_0x14c3da(0x440)]));let _0x116dba=_0x45a9cd['flipY'],_0x4fab1a=_0x45a9cd['flipYBase'];if(_0x116dba===!0x0&&_0x45a9cd[_0x14c3da(0x7c1)]===void 0x0){let _0x1f38ee=this['getBoundingBox']();_0x4fab1a=_0x1f38ee['y1']+_0x1f38ee['y2'];}for(let _0x519635 in this[_0x14c3da(0x440)]){let _0x3118a8=this[_0x14c3da(0x440)][_0x519635];for(let _0x5401e7 in _0x3118a8)['x','x1','x2']['includes'](_0x5401e7)?this[_0x14c3da(0x440)][_0x519635][_0x5401e7]=_0x45a9cd['x']+_0x3118a8[_0x5401e7]*_0x45a9cd[_0x14c3da(0x2c8)]:['y','y1','y2'][_0x14c3da(0x8a8)](_0x5401e7)&&(this[_0x14c3da(0x440)][_0x519635][_0x5401e7]=_0x45a9cd['y']+(_0x116dba?_0x4fab1a-_0x3118a8[_0x5401e7]:_0x3118a8[_0x5401e7])*_0x45a9cd[_0x14c3da(0x2c8)]);}return this;},_0x45652a[_0x2273f6(0x627)]=function(_0xab24ad,_0x3be7a0){const _0x5c7982=_0x2273f6;return new _0x45652a()[_0x5c7982(0x627)](_0xab24ad,_0x3be7a0);},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x80a)]=function(_0x30ccae,_0x4e1a05){const _0xab0d1c=_0x2273f6;this[_0xab0d1c(0x440)][_0xab0d1c(0x381)]({'type':'M','x':_0x30ccae,'y':_0x4e1a05});},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x5be)]=function(_0x586b7d,_0x1f0885){const _0x2a0fea=_0x2273f6;this['commands'][_0x2a0fea(0x381)]({'type':'L','x':_0x586b7d,'y':_0x1f0885});},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x734)]=_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x942)]=function(_0x4919de,_0x2e8445,_0x3e8451,_0x5dbcea,_0x4fffd1,_0x5a41a0){const _0x8eba8=_0x2273f6;this[_0x8eba8(0x440)][_0x8eba8(0x381)]({'type':'C','x1':_0x4919de,'y1':_0x2e8445,'x2':_0x3e8451,'y2':_0x5dbcea,'x':_0x4fffd1,'y':_0x5a41a0});},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x5db)]=_0x45652a[_0x2273f6(0x505)]['quadraticCurveTo']=function(_0x2bb9f1,_0x5d8acb,_0xa6ee0,_0x5eb9c0){const _0x510ab8=_0x2273f6;this['commands'][_0x510ab8(0x381)]({'type':'Q','x1':_0x2bb9f1,'y1':_0x5d8acb,'x':_0xa6ee0,'y':_0x5eb9c0});},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x408)]=_0x45652a['prototype'][_0x2273f6(0x427)]=function(){const _0x53c5fe=_0x2273f6;this[_0x53c5fe(0x440)]['push']({'type':'Z'});},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0xc8f)]=function(_0x5e4f81){const _0xfd3fa7=_0x2273f6;if(_0x5e4f81[_0xfd3fa7(0x440)])_0x5e4f81=_0x5e4f81[_0xfd3fa7(0x440)];else{if(_0x5e4f81 instanceof _0x63989f){let _0xd54324=_0x5e4f81;this[_0xfd3fa7(0x80a)](_0xd54324['x1'],_0xd54324['y1']),this[_0xfd3fa7(0x5be)](_0xd54324['x2'],_0xd54324['y1']),this['lineTo'](_0xd54324['x2'],_0xd54324['y2']),this[_0xfd3fa7(0x5be)](_0xd54324['x1'],_0xd54324['y2']),this[_0xfd3fa7(0x408)]();return;}}Array[_0xfd3fa7(0x505)][_0xfd3fa7(0x381)][_0xfd3fa7(0x640)](this['commands'],_0x5e4f81);},_0x45652a[_0x2273f6(0x505)]['getBoundingBox']=function(){const _0x1f79e5=_0x2273f6;let _0x42e439=new _0x63989f(),_0x1d8242=0x0,_0x278d5d=0x0,_0x18aa73=0x0,_0x52aec1=0x0;for(let _0x546a7a=0x0;_0x546a7a<this['commands']['length'];_0x546a7a++){let _0x4dfec0=this[_0x1f79e5(0x440)][_0x546a7a];switch(_0x4dfec0['type']){case'M':_0x42e439[_0x1f79e5(0x2e2)](_0x4dfec0['x'],_0x4dfec0['y']),_0x1d8242=_0x18aa73=_0x4dfec0['x'],_0x278d5d=_0x52aec1=_0x4dfec0['y'];break;case'L':_0x42e439[_0x1f79e5(0x2e2)](_0x4dfec0['x'],_0x4dfec0['y']),_0x18aa73=_0x4dfec0['x'],_0x52aec1=_0x4dfec0['y'];break;case'Q':_0x42e439['addQuad'](_0x18aa73,_0x52aec1,_0x4dfec0['x1'],_0x4dfec0['y1'],_0x4dfec0['x'],_0x4dfec0['y']),_0x18aa73=_0x4dfec0['x'],_0x52aec1=_0x4dfec0['y'];break;case'C':_0x42e439[_0x1f79e5(0x2bb)](_0x18aa73,_0x52aec1,_0x4dfec0['x1'],_0x4dfec0['y1'],_0x4dfec0['x2'],_0x4dfec0['y2'],_0x4dfec0['x'],_0x4dfec0['y']),_0x18aa73=_0x4dfec0['x'],_0x52aec1=_0x4dfec0['y'];break;case'Z':_0x18aa73=_0x1d8242,_0x52aec1=_0x278d5d;break;default:throw Error(_0x1f79e5(0x6a3)+_0x4dfec0[_0x1f79e5(0x2c1)]);}}return _0x42e439[_0x1f79e5(0x963)]()&&_0x42e439[_0x1f79e5(0x2e2)](0x0,0x0),_0x42e439;},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0x90c)]=function(_0x10c80b){const _0x3fcb60=_0x2273f6;let _0x4609d4=this[_0x3fcb60(0x8c0)];if(_0x4609d4&&_0x4609d4[_0x3fcb60(0xba6)]){for(let _0x157f97=0x0;_0x157f97<_0x4609d4['length'];_0x157f97++)this[_0x3fcb60(0x90c)][_0x3fcb60(0x3f4)](_0x4609d4[_0x157f97],_0x10c80b);return;}let _0x39c592=this[_0x3fcb60(0x435)];if(_0x39c592){_0x10c80b[_0x3fcb60(0x198)](_0x39c592['image'],_0x39c592['x'],_0x39c592['y'],_0x39c592[_0x3fcb60(0x65c)],_0x39c592[_0x3fcb60(0x1ae)]);return;}_0x10c80b['beginPath']();for(let _0x5094be=0x0;_0x5094be<this['commands'][_0x3fcb60(0xba6)];_0x5094be+=0x1){let _0x53ece0=this[_0x3fcb60(0x440)][_0x5094be];_0x53ece0['type']==='M'?_0x10c80b[_0x3fcb60(0x80a)](_0x53ece0['x'],_0x53ece0['y']):_0x53ece0[_0x3fcb60(0x2c1)]==='L'?_0x10c80b[_0x3fcb60(0x5be)](_0x53ece0['x'],_0x53ece0['y']):_0x53ece0['type']==='C'?_0x10c80b[_0x3fcb60(0x942)](_0x53ece0['x1'],_0x53ece0['y1'],_0x53ece0['x2'],_0x53ece0['y2'],_0x53ece0['x'],_0x53ece0['y']):_0x53ece0[_0x3fcb60(0x2c1)]==='Q'?_0x10c80b[_0x3fcb60(0x603)](_0x53ece0['x1'],_0x53ece0['y1'],_0x53ece0['x'],_0x53ece0['y']):_0x53ece0[_0x3fcb60(0x2c1)]==='Z'&&this['stroke']&&this[_0x3fcb60(0x5ce)]&&_0x10c80b[_0x3fcb60(0x427)]();}this[_0x3fcb60(0x9ae)]&&(_0x10c80b['fillStyle']=this['fill'],_0x10c80b[_0x3fcb60(0x9ae)]()),this['stroke']&&(_0x10c80b[_0x3fcb60(0x2f3)]=this[_0x3fcb60(0xa25)],_0x10c80b['lineWidth']=this[_0x3fcb60(0x5ce)],_0x10c80b['stroke']());},_0x45652a[_0x2273f6(0x505)][_0x2273f6(0xb7a)]=function(_0xa04f85){const _0x4a74f3=_0x2273f6;_0xa04f85=_0x136b3a(_0xa04f85);function _0x391fd2(_0xcb30b7){const _0x3fe325=_0x57a5;let _0x2aa7bd=_0x34f421(_0xcb30b7,_0xa04f85[_0x3fe325(0xa98)]);return Math[_0x3fe325(0x157)](_0xcb30b7)===_0x2aa7bd?''+_0x2aa7bd:_0x2aa7bd[_0x3fe325(0xc51)](_0xa04f85[_0x3fe325(0xa98)]);}function _0x109858(){const _0x2dc01f=_0x57a5;let _0x3c7e73='';for(let _0xe556bc=0x0;_0xe556bc<arguments[_0x2dc01f(0xba6)];_0xe556bc+=0x1){let _0x4b9900=arguments[_0xe556bc];_0x4b9900>=0x0&&_0xe556bc>0x0&&(_0x3c7e73+='\x20'),_0x3c7e73+=_0x391fd2(_0x4b9900);}return _0x3c7e73;}let _0x242b81=this['commands'];_0xa04f85[_0x4a74f3(0x73a)]&&(_0x242b81=JSON[_0x4a74f3(0x54d)](JSON[_0x4a74f3(0x9aa)](this[_0x4a74f3(0x440)])),_0x242b81=_0x35c941(_0x242b81));let _0x322828=_0xa04f85[_0x4a74f3(0x978)],_0x91b499=_0xa04f85[_0x4a74f3(0x7c1)];if(_0x322828===!0x0&&_0x91b499===void 0x0){let _0x56f26a=new _0x45652a();_0x56f26a[_0x4a74f3(0xc8f)](_0x242b81);let _0x1a9c5b=_0x56f26a['getBoundingBox']();_0x91b499=_0x1a9c5b['y1']+_0x1a9c5b['y2'];}let _0x4c39f5='';for(let _0x123a0e=0x0;_0x123a0e<_0x242b81[_0x4a74f3(0xba6)];_0x123a0e+=0x1){let _0x47c143=_0x242b81[_0x123a0e];_0x47c143['type']==='M'?_0x4c39f5+='M'+_0x109858(_0x47c143['x'],_0x322828?_0x91b499-_0x47c143['y']:_0x47c143['y']):_0x47c143[_0x4a74f3(0x2c1)]==='L'?_0x4c39f5+='L'+_0x109858(_0x47c143['x'],_0x322828?_0x91b499-_0x47c143['y']:_0x47c143['y']):_0x47c143[_0x4a74f3(0x2c1)]==='C'?_0x4c39f5+='C'+_0x109858(_0x47c143['x1'],_0x322828?_0x91b499-_0x47c143['y1']:_0x47c143['y1'],_0x47c143['x2'],_0x322828?_0x91b499-_0x47c143['y2']:_0x47c143['y2'],_0x47c143['x'],_0x322828?_0x91b499-_0x47c143['y']:_0x47c143['y']):_0x47c143[_0x4a74f3(0x2c1)]==='Q'?_0x4c39f5+='Q'+_0x109858(_0x47c143['x1'],_0x322828?_0x91b499-_0x47c143['y1']:_0x47c143['y1'],_0x47c143['x'],_0x322828?_0x91b499-_0x47c143['y']:_0x47c143['y']):_0x47c143[_0x4a74f3(0x2c1)]==='Z'&&(_0x4c39f5+='Z');}return _0x4c39f5;},_0x45652a[_0x2273f6(0x505)]['toSVG']=function(_0x57248f,_0x186c63){const _0x3cfac9=_0x2273f6;this['_layers']&&this[_0x3cfac9(0x8c0)][_0x3cfac9(0xba6)]&&console[_0x3cfac9(0xc59)]('toSVG()\x20does\x20not\x20support\x20colr\x20font\x20layers\x20yet'),this[_0x3cfac9(0x435)]&&console['warn']('toSVG()\x20does\x20not\x20support\x20SVG\x20glyphs\x20yet'),_0x186c63||(_0x186c63=this[_0x3cfac9(0xb7a)](_0x57248f));let _0x4f86f1=_0x3cfac9(0xc54);return _0x4f86f1+=_0x186c63,_0x4f86f1+='\x22',this[_0x3cfac9(0x9ae)]!==void 0x0&&this[_0x3cfac9(0x9ae)]!==_0x3cfac9(0x4df)&&(this[_0x3cfac9(0x9ae)]===null?_0x4f86f1+='\x20fill=\x22none\x22':_0x4f86f1+=_0x3cfac9(0x342)+this[_0x3cfac9(0x9ae)]+'\x22'),this[_0x3cfac9(0xa25)]&&(_0x4f86f1+=_0x3cfac9(0x970)+this['stroke']+_0x3cfac9(0x539)+this['strokeWidth']+'\x22'),_0x4f86f1+='/>',_0x4f86f1;},_0x45652a['prototype'][_0x2273f6(0x338)]=function(_0x426a1a,_0x122ce2){const _0x49b1ab=_0x2273f6;this[_0x49b1ab(0x8c0)]&&this[_0x49b1ab(0x8c0)][_0x49b1ab(0xba6)]&&console[_0x49b1ab(0xc59)](_0x49b1ab(0x20c)),_0x122ce2||(_0x122ce2=this[_0x49b1ab(0xb7a)](_0x426a1a));let _0x45ef3a=document['createElementNS']('http://www.w3.org/2000/svg',_0x49b1ab(0x36c));return _0x45ef3a[_0x49b1ab(0x7aa)]('d',_0x122ce2),this[_0x49b1ab(0x9ae)]!==void 0x0&&this['fill']!==_0x49b1ab(0x4df)&&(this['fill']===null?_0x45ef3a[_0x49b1ab(0x7aa)](_0x49b1ab(0x9ae),_0x49b1ab(0xa61)):_0x45ef3a['setAttribute'](_0x49b1ab(0x9ae),this['fill'])),this['stroke']&&(_0x45ef3a['setAttribute'](_0x49b1ab(0xa25),this[_0x49b1ab(0xa25)]),_0x45ef3a[_0x49b1ab(0x7aa)]('stroke-width',this[_0x49b1ab(0x5ce)])),_0x45ef3a;};var _0x4cc193=_0x45652a;function _0x355f57(_0x53a0c3){throw Error(_0x53a0c3);}function _0x3702c1(_0x191d86,_0xed1396){_0x191d86||_0x355f57(_0xed1396);}var _0x95cc0={'fail':_0x355f57,'argument':_0x3702c1,'assert':_0x3702c1},_0x3ec9c8=0x8000,_0x40bdf5=0x80000000,_0x4fff41=-0x8000,_0x55649a=32767.00001525879,_0x4c45b7={},_0x416524={},_0x2ab1d6={};function _0x253f63(_0x191dff){return function(){return _0x191dff;};}_0x416524['BYTE']=function(_0x48929d){const _0x2b3113=_0x2273f6;return _0x95cc0[_0x2b3113(0x8e5)](_0x48929d>=0x0&&_0x48929d<=0xff,'Byte\x20value\x20should\x20be\x20between\x200\x20and\x20255.'),[_0x48929d];},_0x2ab1d6['BYTE']=_0x253f63(0x1),_0x416524[_0x2273f6(0x6a8)]=function(_0x3ee4c4){return[_0x3ee4c4['charCodeAt'](0x0)];},_0x2ab1d6[_0x2273f6(0x6a8)]=_0x253f63(0x1),_0x416524[_0x2273f6(0xca4)]=function(_0x2feee1){const _0x55c535=_0x2273f6;_0x2feee1==null&&(_0x2feee1='',console[_0x55c535(0xc59)](_0x55c535(0x777)));let _0x1d2737=[];for(let _0x399034=0x0;_0x399034<_0x2feee1['length'];_0x399034+=0x1)_0x1d2737[_0x399034]=_0x2feee1[_0x55c535(0x3f1)](_0x399034);return _0x1d2737;},_0x2ab1d6[_0x2273f6(0xca4)]=function(_0x5d405b){return _0x5d405b===void 0x0?0x0:_0x5d405b['length'];},_0x416524[_0x2273f6(0x95d)]=function(_0x2ff270){return[_0x2ff270>>0x8&0xff,_0x2ff270&0xff];},_0x2ab1d6['USHORT']=_0x253f63(0x2),_0x416524[_0x2273f6(0x41b)]=function(_0x32dfb5){return _0x32dfb5>=_0x3ec9c8&&(_0x32dfb5=-(0x2*_0x3ec9c8-_0x32dfb5)),[_0x32dfb5>>0x8&0xff,_0x32dfb5&0xff];},_0x2ab1d6['SHORT']=_0x253f63(0x2),_0x416524[_0x2273f6(0x956)]=function(_0x286401){return[_0x286401>>0x10&0xff,_0x286401>>0x8&0xff,_0x286401&0xff];},_0x2ab1d6[_0x2273f6(0x956)]=_0x253f63(0x3),_0x416524['ULONG']=function(_0x434f24){return[_0x434f24>>0x18&0xff,_0x434f24>>0x10&0xff,_0x434f24>>0x8&0xff,_0x434f24&0xff];},_0x2ab1d6[_0x2273f6(0xc90)]=_0x253f63(0x4),_0x416524[_0x2273f6(0xaa3)]=function(_0x1d226c){return _0x1d226c>=_0x40bdf5&&(_0x1d226c=-(0x2*_0x40bdf5-_0x1d226c)),[_0x1d226c>>0x18&0xff,_0x1d226c>>0x10&0xff,_0x1d226c>>0x8&0xff,_0x1d226c&0xff];},_0x2ab1d6[_0x2273f6(0xaa3)]=_0x253f63(0x4),_0x416524[_0x2273f6(0x5f7)]=function(_0x804533){const _0x139a79=_0x2273f6;if(_0x804533>_0x55649a||_0x804533<_0x4fff41)throw Error(_0x139a79(0xc1c)+_0x804533+'\x20is\x20outside\x20the\x20range\x20of\x20representable\x20values\x20in\x2016.16\x20format');let _0x3651a9=Math[_0x139a79(0x157)](_0x804533*0x10000)<<0x0;return _0x416524[_0x139a79(0xc90)](_0x3651a9);},_0x2ab1d6[_0x2273f6(0x5f7)]=_0x2ab1d6[_0x2273f6(0xc90)],_0x416524[_0x2273f6(0x524)]=_0x416524['ULONG'],_0x2ab1d6['FIXED']=_0x2ab1d6['ULONG'],_0x416524[_0x2273f6(0x5de)]=_0x416524[_0x2273f6(0x41b)],_0x2ab1d6[_0x2273f6(0x5de)]=_0x2ab1d6[_0x2273f6(0x41b)],_0x416524[_0x2273f6(0x5df)]=_0x416524[_0x2273f6(0x95d)],_0x2ab1d6[_0x2273f6(0x5df)]=_0x2ab1d6[_0x2273f6(0x95d)],_0x416524[_0x2273f6(0x728)]=function(_0x1d6d24){return _0x416524['USHORT'](_0x1d6d24*0x4000);},_0x2ab1d6[_0x2273f6(0x728)]=_0x2ab1d6[_0x2273f6(0x95d)],_0x416524['LONGDATETIME']=function(_0x4a904c){return[0x0,0x0,0x0,0x0,_0x4a904c>>0x18&0xff,_0x4a904c>>0x10&0xff,_0x4a904c>>0x8&0xff,_0x4a904c&0xff];},_0x2ab1d6[_0x2273f6(0x4c0)]=_0x253f63(0x8),_0x416524[_0x2273f6(0xae2)]=function(_0x1c6c94){const _0x2ab197=_0x2273f6;return _0x95cc0[_0x2ab197(0x8e5)](_0x1c6c94['length']===0x4,'Tag\x20should\x20be\x20exactly\x204\x20ASCII\x20characters.'),[_0x1c6c94[_0x2ab197(0x3f1)](0x0),_0x1c6c94[_0x2ab197(0x3f1)](0x1),_0x1c6c94['charCodeAt'](0x2),_0x1c6c94[_0x2ab197(0x3f1)](0x3)];},_0x2ab1d6[_0x2273f6(0xae2)]=_0x253f63(0x4),_0x416524[_0x2273f6(0x267)]=_0x416524['BYTE'],_0x2ab1d6['Card8']=_0x2ab1d6['BYTE'],_0x416524['Card16']=_0x416524[_0x2273f6(0x95d)],_0x2ab1d6['Card16']=_0x2ab1d6[_0x2273f6(0x95d)],_0x416524[_0x2273f6(0x3e0)]=_0x416524['BYTE'],_0x2ab1d6['OffSize']=_0x2ab1d6[_0x2273f6(0x94c)],_0x416524[_0x2273f6(0x5c7)]=_0x416524[_0x2273f6(0x95d)],_0x2ab1d6[_0x2273f6(0x5c7)]=_0x2ab1d6['USHORT'],_0x416524['NUMBER']=function(_0x3f615e){const _0x1eaad4=_0x2273f6;return _0x3f615e>=-0x6b&&_0x3f615e<=0x6b?[_0x3f615e+0x8b]:_0x3f615e>=0x6c&&_0x3f615e<=0x46b?(_0x3f615e-=0x6c,[(_0x3f615e>>0x8)+0xf7,_0x3f615e&0xff]):_0x3f615e>=-0x46b&&_0x3f615e<=-0x6c?(_0x3f615e=-_0x3f615e-0x6c,[(_0x3f615e>>0x8)+0xfb,_0x3f615e&0xff]):_0x3f615e>=-0x8000&&_0x3f615e<=0x7fff?_0x416524['NUMBER16'](_0x3f615e):_0x416524[_0x1eaad4(0xb4d)](_0x3f615e);},_0x2ab1d6[_0x2273f6(0xc1a)]=function(_0x5a1853){const _0x8b52a1=_0x2273f6;return _0x416524[_0x8b52a1(0xc1a)](_0x5a1853)[_0x8b52a1(0xba6)];},_0x416524[_0x2273f6(0x2fa)]=function(_0x5e4873){return[0x1c,_0x5e4873>>0x8&0xff,_0x5e4873&0xff];},_0x2ab1d6[_0x2273f6(0x2fa)]=_0x253f63(0x3),_0x416524[_0x2273f6(0xb4d)]=function(_0x57e72a){return[0x1d,_0x57e72a>>0x18&0xff,_0x57e72a>>0x10&0xff,_0x57e72a>>0x8&0xff,_0x57e72a&0xff];},_0x2ab1d6[_0x2273f6(0xb4d)]=_0x253f63(0x5),_0x416524[_0x2273f6(0xb32)]=function(_0xe3029b){const _0x47570e=_0x2273f6;let _0xf54f50=_0xe3029b[_0x47570e(0x23e)](),_0x4a43f9=/\.(\d*?)(?:9{5,20}|0{5,20})\d{0,2}(?:e(.+)|$)/[_0x47570e(0x8b7)](_0xf54f50);if(_0x4a43f9){let _0x4fdc05=parseFloat('1e'+((_0x4a43f9[0x2]?+_0x4a43f9[0x2]:0x0)+_0x4a43f9[0x1][_0x47570e(0xba6)]));_0xf54f50=(Math[_0x47570e(0x157)](_0xe3029b*_0x4fdc05)/_0x4fdc05)[_0x47570e(0x23e)]();}let _0x2bafc5='';for(let _0x126c6a=0x0,_0x3e764b=_0xf54f50[_0x47570e(0xba6)];_0x126c6a<_0x3e764b;_0x126c6a+=0x1){let _0x118250=_0xf54f50[_0x126c6a];_0x118250==='e'?_0x2bafc5+=_0xf54f50[++_0x126c6a]==='-'?'c':'b':_0x118250==='.'?_0x2bafc5+='a':_0x118250==='-'?_0x2bafc5+='e':_0x2bafc5+=_0x118250;}_0x2bafc5+=_0x2bafc5[_0x47570e(0xba6)]&0x1?'f':'ff';let _0x3568d6=[0x1e];for(let _0x4ec62f=0x0,_0x32e5de=_0x2bafc5[_0x47570e(0xba6)];_0x4ec62f<_0x32e5de;_0x4ec62f+=0x2)_0x3568d6[_0x47570e(0x381)](parseInt(_0x2bafc5[_0x47570e(0x64a)](_0x4ec62f,0x2),0x10));return _0x3568d6;},_0x2ab1d6[_0x2273f6(0xb32)]=function(_0x5766e8){const _0xcb3820=_0x2273f6;return _0x416524[_0xcb3820(0xb32)](_0x5766e8)['length'];},_0x416524[_0x2273f6(0x1f2)]=_0x416524[_0x2273f6(0xca4)],_0x2ab1d6['NAME']=_0x2ab1d6[_0x2273f6(0xca4)],_0x416524[_0x2273f6(0xc30)]=_0x416524['CHARARRAY'],_0x2ab1d6[_0x2273f6(0xc30)]=_0x2ab1d6[_0x2273f6(0xca4)],_0x4c45b7[_0x2273f6(0x5dd)]=function(_0x2a2e91,_0x4b6ad7,_0x23367a){const _0x5d2949=_0x2273f6;let _0x354659=[],_0x5ca80e=_0x23367a;for(let _0x4e76ec=0x0;_0x4e76ec<_0x5ca80e;_0x4e76ec++,_0x4b6ad7+=0x1)_0x354659[_0x4e76ec]=_0x2a2e91[_0x5d2949(0xa7d)](_0x4b6ad7);return String[_0x5d2949(0x98a)]['apply'](null,_0x354659);},_0x4c45b7[_0x2273f6(0x705)]=function(_0x5d4036,_0x5554a6,_0x112732){const _0x28303a=_0x2273f6;let _0x12587b=[],_0x3a8d22=_0x112732/0x2;for(let _0x1945f8=0x0;_0x1945f8<_0x3a8d22;_0x1945f8++,_0x5554a6+=0x2)_0x12587b[_0x1945f8]=_0x5d4036['getUint16'](_0x5554a6);return String['fromCharCode'][_0x28303a(0x640)](null,_0x12587b);},_0x416524[_0x2273f6(0x705)]=function(_0x18bff7){const _0x11c7ab=_0x2273f6;let _0x331ee7=[];for(let _0x34bfe4=0x0;_0x34bfe4<_0x18bff7[_0x11c7ab(0xba6)];_0x34bfe4+=0x1){let _0x95132c=_0x18bff7['charCodeAt'](_0x34bfe4);_0x331ee7[_0x331ee7[_0x11c7ab(0xba6)]]=_0x95132c>>0x8&0xff,_0x331ee7[_0x331ee7[_0x11c7ab(0xba6)]]=_0x95132c&0xff;}return _0x331ee7;},_0x2ab1d6[_0x2273f6(0x705)]=function(_0x1894cc){const _0x8ea8dc=_0x2273f6;return _0x1894cc[_0x8ea8dc(0xba6)]*0x2;};var _0x48bde1={'x-mac-croatian':_0x2273f6(0x648),'x-mac-cyrillic':_0x2273f6(0x5ca),'x-mac-gaelic':_0x2273f6(0x3fc),'x-mac-greek':_0x2273f6(0x838),'x-mac-icelandic':_0x2273f6(0x710),'x-mac-inuit':_0x2273f6(0x72d),'x-mac-ce':_0x2273f6(0x335),'macintosh':_0x2273f6(0xadd),'x-mac-romanian':_0x2273f6(0x776),'x-mac-turkish':_0x2273f6(0x3c3)};_0x4c45b7[_0x2273f6(0x10f)]=function(_0x2275d1,_0x435552,_0x4d7e94,_0x5977f1){const _0x54ec20=_0x2273f6;let _0x53194b=_0x48bde1[_0x5977f1];if(_0x53194b===void 0x0)return;let _0x3d4101='';for(let _0x168ac7=0x0;_0x168ac7<_0x4d7e94;_0x168ac7++){let _0x40ea14=_0x2275d1[_0x54ec20(0xa7d)](_0x435552+_0x168ac7);_0x40ea14<=0x7f?_0x3d4101+=String[_0x54ec20(0x98a)](_0x40ea14):_0x3d4101+=_0x53194b[_0x40ea14&0x7f];}return _0x3d4101;};var _0x492594=typeof WeakMap==_0x2273f6(0x9df)&&new WeakMap(),_0x3d5c0d,_0x2acdcb=function(_0x1a7418){const _0x3c663f=_0x2273f6;if(!_0x3d5c0d){_0x3d5c0d={};for(let _0x518077 in _0x48bde1)_0x3d5c0d[_0x518077]=new String(_0x518077);}let _0x2f15c4=_0x3d5c0d[_0x1a7418];if(_0x2f15c4===void 0x0)return;if(_0x492594){let _0x4c5cc4=_0x492594[_0x3c663f(0x2ad)](_0x2f15c4);if(_0x4c5cc4!==void 0x0)return _0x4c5cc4;}let _0x52179b=_0x48bde1[_0x1a7418];if(_0x52179b===void 0x0)return;let _0x6690e4={};for(let _0x29c609=0x0;_0x29c609<_0x52179b[_0x3c663f(0xba6)];_0x29c609++)_0x6690e4[_0x52179b[_0x3c663f(0x3f1)](_0x29c609)]=_0x29c609+0x80;return _0x492594&&_0x492594[_0x3c663f(0xad2)](_0x2f15c4,_0x6690e4),_0x6690e4;};_0x416524['MACSTRING']=function(_0x3b77e8,_0x30ecc2){let _0xc62b4=_0x2acdcb(_0x30ecc2);if(_0xc62b4===void 0x0)return;let _0xca4c3e=[];for(let _0x280e4c=0x0;_0x280e4c<_0x3b77e8['length'];_0x280e4c++){let _0x21fcf7=_0x3b77e8['charCodeAt'](_0x280e4c);if(_0x21fcf7>=0x80&&(_0x21fcf7=_0xc62b4[_0x21fcf7],_0x21fcf7===void 0x0))return;_0xca4c3e[_0x280e4c]=_0x21fcf7;}return _0xca4c3e;},_0x2ab1d6[_0x2273f6(0x10f)]=function(_0x2f3daf,_0x13600){const _0x506f7a=_0x2273f6;let _0x2d330e=_0x416524[_0x506f7a(0x10f)](_0x2f3daf,_0x13600);return _0x2d330e===void 0x0?0x0:_0x2d330e[_0x506f7a(0xba6)];};function _0x5c7ed8(_0x26d717){return _0x26d717>=-0x80&&_0x26d717<=0x7f;}function _0x31b402(_0x3143f2,_0x3f3726,_0x43f808){const _0x2f259f=_0x2273f6;let _0x241c66=0x0,_0x225450=_0x3143f2[_0x2f259f(0xba6)];for(;_0x3f3726<_0x225450&&_0x241c66<0x40&&_0x3143f2[_0x3f3726]===0x0;)++_0x3f3726,++_0x241c66;return _0x43f808['push'](0x80|_0x241c66-0x1),_0x3f3726;}function _0x4bd9e6(_0x51890f,_0x3a0d35,_0x25179e){const _0x3280b5=_0x2273f6;let _0x1a497d=0x0,_0xe857bb=_0x51890f[_0x3280b5(0xba6)],_0x3606d8=_0x3a0d35;for(;_0x3606d8<_0xe857bb&&_0x1a497d<0x40;){let _0x4fcc1d=_0x51890f[_0x3606d8];if(!_0x5c7ed8(_0x4fcc1d)||_0x4fcc1d===0x0&&_0x3606d8+0x1<_0xe857bb&&_0x51890f[_0x3606d8+0x1]===0x0)break;++_0x3606d8,++_0x1a497d;}_0x25179e[_0x3280b5(0x381)](_0x1a497d-0x1);for(let _0x27679f=_0x3a0d35;_0x27679f<_0x3606d8;++_0x27679f)_0x25179e[_0x3280b5(0x381)](_0x51890f[_0x27679f]+0x100&0xff);return _0x3606d8;}function _0x404687(_0x303e72,_0x5e031f,_0x30dcaa){const _0x450df8=_0x2273f6;let _0x2820b6=0x0,_0x438cc1=_0x303e72[_0x450df8(0xba6)],_0x5bb210=_0x5e031f;for(;_0x5bb210<_0x438cc1&&_0x2820b6<0x40;){let _0x27543f=_0x303e72[_0x5bb210];if(_0x27543f===0x0||_0x5c7ed8(_0x27543f)&&_0x5bb210+0x1<_0x438cc1&&_0x5c7ed8(_0x303e72[_0x5bb210+0x1]))break;++_0x5bb210,++_0x2820b6;}_0x30dcaa[_0x450df8(0x381)](0x40|_0x2820b6-0x1);for(let _0x5a180a=_0x5e031f;_0x5a180a<_0x5bb210;++_0x5a180a){let _0x57e800=_0x303e72[_0x5a180a];_0x30dcaa[_0x450df8(0x381)](_0x57e800+0x10000>>0x8&0xff,_0x57e800+0x100&0xff);}return _0x5bb210;}_0x416524['VARDELTAS']=function(_0x11918a){const _0x562e4e=_0x2273f6;let _0x36a3fd=0x0,_0x51d35d=[];for(;_0x36a3fd<_0x11918a[_0x562e4e(0xba6)];){let _0x3878f3=_0x11918a[_0x36a3fd];_0x36a3fd=_0x3878f3===0x0?_0x31b402(_0x11918a,_0x36a3fd,_0x51d35d):_0x3878f3>=-0x80&&_0x3878f3<=0x7f?_0x4bd9e6(_0x11918a,_0x36a3fd,_0x51d35d):_0x404687(_0x11918a,_0x36a3fd,_0x51d35d);}return _0x51d35d;},_0x416524['INDEX']=function(_0x31a577){const _0x20fae9=_0x2273f6;let _0x5bc4bd=0x1,_0x5e49d5=[_0x5bc4bd],_0x2649df=[];for(let _0x1f5a84=0x0;_0x1f5a84<_0x31a577['length'];_0x1f5a84+=0x1){let _0x2ba74c=_0x416524[_0x20fae9(0x510)](_0x31a577[_0x1f5a84]);Array['prototype'][_0x20fae9(0x381)][_0x20fae9(0x640)](_0x2649df,_0x2ba74c),_0x5bc4bd+=_0x2ba74c[_0x20fae9(0xba6)],_0x5e49d5[_0x20fae9(0x381)](_0x5bc4bd);}if(_0x2649df['length']===0x0)return[0x0,0x0];let _0x8eea94=[],_0x1f8a74=0x1+Math[_0x20fae9(0x559)](Math[_0x20fae9(0x9ff)](_0x5bc4bd)/Math[_0x20fae9(0x9ff)](0x2))/0x8|0x0,_0x1e4db6=[void 0x0,_0x416524[_0x20fae9(0x94c)],_0x416524[_0x20fae9(0x95d)],_0x416524[_0x20fae9(0x956)],_0x416524['ULONG']][_0x1f8a74];for(let _0x16b9ee=0x0;_0x16b9ee<_0x5e49d5[_0x20fae9(0xba6)];_0x16b9ee+=0x1){let _0x418ade=_0x1e4db6(_0x5e49d5[_0x16b9ee]);Array[_0x20fae9(0x505)][_0x20fae9(0x381)][_0x20fae9(0x640)](_0x8eea94,_0x418ade);}return Array['prototype'][_0x20fae9(0xaba)](_0x416524[_0x20fae9(0x552)](_0x31a577['length']),_0x416524['OffSize'](_0x1f8a74),_0x8eea94,_0x2649df);},_0x2ab1d6[_0x2273f6(0x4f9)]=function(_0x2599ce){const _0x176f52=_0x2273f6;return _0x416524[_0x176f52(0x4f9)](_0x2599ce)[_0x176f52(0xba6)];},_0x416524[_0x2273f6(0x28b)]=function(_0x5f4b9c){const _0xc533cd=_0x2273f6;let _0xe3cf12=[],_0x4d0ae3=Object[_0xc533cd(0x3ed)](_0x5f4b9c),_0x33711f=_0x4d0ae3[_0xc533cd(0xba6)];for(let _0x471bf2=0x0;_0x471bf2<_0x33711f;_0x471bf2+=0x1){let _0x14fc5d=parseInt(_0x4d0ae3[_0x471bf2],0x0),_0x4dd6ab=_0x5f4b9c[_0x14fc5d],_0x2b1dbb=_0x416524['OPERAND'](_0x4dd6ab['value'],_0x4dd6ab['type']),_0x386e9a=_0x416524[_0xc533cd(0x3e7)](_0x14fc5d);for(let _0x59fb22=0x0;_0x59fb22<_0x2b1dbb[_0xc533cd(0xba6)];_0x59fb22++)_0xe3cf12[_0xc533cd(0x381)](_0x2b1dbb[_0x59fb22]);for(let _0xeb2b5d=0x0;_0xeb2b5d<_0x386e9a[_0xc533cd(0xba6)];_0xeb2b5d++)_0xe3cf12[_0xc533cd(0x381)](_0x386e9a[_0xeb2b5d]);}return _0xe3cf12;},_0x2ab1d6[_0x2273f6(0x28b)]=function(_0x4a8cc1){const _0x532fef=_0x2273f6;return _0x416524[_0x532fef(0x28b)](_0x4a8cc1)[_0x532fef(0xba6)];},_0x416524[_0x2273f6(0x3e7)]=function(_0x49aeef){return _0x49aeef<0x4b0?[_0x49aeef]:[0xc,_0x49aeef-0x4b0];},_0x416524[_0x2273f6(0xaeb)]=function(_0x4a8065,_0x5c19c3){const _0x36d27c=_0x2273f6;let _0x47d590=[];if(Array[_0x36d27c(0x461)](_0x5c19c3))for(let _0x433aa2=0x0;_0x433aa2<_0x5c19c3['length'];_0x433aa2+=0x1){_0x95cc0[_0x36d27c(0x8e5)](_0x4a8065[_0x36d27c(0xba6)]===_0x5c19c3[_0x36d27c(0xba6)],_0x36d27c(0x78c)+_0x5c19c3);let _0x598fb7=_0x416524[_0x36d27c(0xaeb)](_0x4a8065[_0x433aa2],_0x5c19c3[_0x433aa2]);for(let _0x148a15=0x0;_0x148a15<_0x598fb7[_0x36d27c(0xba6)];_0x148a15++)_0x47d590[_0x36d27c(0x381)](_0x598fb7[_0x148a15]);}else{if(_0x5c19c3===_0x36d27c(0x5c7)){let _0x58be16=_0x416524[_0x36d27c(0xc1a)](_0x4a8065);for(let _0x3b19ab=0x0;_0x3b19ab<_0x58be16[_0x36d27c(0xba6)];_0x3b19ab++)_0x47d590[_0x36d27c(0x381)](_0x58be16[_0x3b19ab]);}else{if(_0x5c19c3===_0x36d27c(0x679)){let _0x178e1d=_0x416524['NUMBER32'](_0x4a8065);for(let _0x309c28=0x0;_0x309c28<_0x178e1d['length'];_0x309c28++)_0x47d590[_0x36d27c(0x381)](_0x178e1d[_0x309c28]);}else{if(_0x5c19c3===_0x36d27c(0x97e)){let _0x104242=_0x416524[_0x36d27c(0xc1a)](_0x4a8065);for(let _0x4f4791=0x0;_0x4f4791<_0x104242[_0x36d27c(0xba6)];_0x4f4791++)_0x47d590['push'](_0x104242[_0x4f4791]);}else{if(_0x5c19c3==='real'){let _0x1efd8f=_0x416524[_0x36d27c(0xb32)](_0x4a8065);for(let _0x169009=0x0;_0x169009<_0x1efd8f['length'];_0x169009++)_0x47d590[_0x36d27c(0x381)](_0x1efd8f[_0x169009]);}else throw Error(_0x36d27c(0x300)+_0x5c19c3);}}}}return _0x47d590;},_0x416524['OP']=_0x416524['BYTE'],_0x2ab1d6['OP']=_0x2ab1d6[_0x2273f6(0x94c)];var _0x6112a=typeof WeakMap=='function'&&new WeakMap();_0x416524[_0x2273f6(0xb5d)]=function(_0xcba227){const _0x39dc4e=_0x2273f6;if(_0x6112a){let _0x164a72=_0x6112a[_0x39dc4e(0x2ad)](_0xcba227);if(_0x164a72!==void 0x0)return _0x164a72;}let _0x372fea=[],_0x39e6ff=_0xcba227[_0x39dc4e(0xba6)];for(let _0x5e5aa6=0x0;_0x5e5aa6<_0x39e6ff;_0x5e5aa6+=0x1){let _0x5bb6cc=_0xcba227[_0x5e5aa6],_0x49509e=_0x416524[_0x5bb6cc['type']](_0x5bb6cc[_0x39dc4e(0x85b)]);for(let _0x321881=0x0;_0x321881<_0x49509e[_0x39dc4e(0xba6)];_0x321881++)_0x372fea[_0x39dc4e(0x381)](_0x49509e[_0x321881]);}return _0x6112a&&_0x6112a[_0x39dc4e(0xad2)](_0xcba227,_0x372fea),_0x372fea;},_0x2ab1d6[_0x2273f6(0xb5d)]=function(_0x4b78a1){const _0x160bf2=_0x2273f6;return _0x416524[_0x160bf2(0xb5d)](_0x4b78a1)['length'];},_0x416524[_0x2273f6(0x510)]=function(_0x21e923){const _0x4fcbbf=_0x2273f6;let _0x1070e7=_0x416524[_0x21e923['type']];return _0x95cc0['argument'](_0x1070e7!==void 0x0,_0x4fcbbf(0x532)+_0x21e923[_0x4fcbbf(0x2c1)]),_0x1070e7(_0x21e923['value']);},_0x2ab1d6[_0x2273f6(0x510)]=function(_0x5aaafa){const _0x44d1de=_0x2273f6;let _0x2bd5f1=_0x2ab1d6[_0x5aaafa[_0x44d1de(0x2c1)]];return _0x95cc0['argument'](_0x2bd5f1!==void 0x0,_0x44d1de(0x65f)+_0x5aaafa[_0x44d1de(0x2c1)]),_0x2bd5f1(_0x5aaafa[_0x44d1de(0x85b)]);},_0x416524[_0x2273f6(0x34a)]=function(_0x5cf217){const _0x17e3a2=_0x2273f6;let _0x58d732=[],_0x131f4c=(_0x5cf217['fields']||[])['length'],_0xa2b6d8=[],_0x6be976=[];for(let _0x35e266=0x0;_0x35e266<_0x131f4c;_0x35e266+=0x1){let _0x5da47c=_0x5cf217[_0x17e3a2(0x843)][_0x35e266],_0x4d1214=_0x416524[_0x5da47c['type']];_0x95cc0[_0x17e3a2(0x8e5)](_0x4d1214!==void 0x0,_0x17e3a2(0x647)+_0x5da47c['type']+'\x20('+_0x5da47c[_0x17e3a2(0x37a)]+')');let _0x41e860=_0x5cf217[_0x5da47c['name']];_0x41e860===void 0x0&&(_0x41e860=_0x5da47c[_0x17e3a2(0x85b)]);let _0x5e70c4=_0x4d1214(_0x41e860);if(_0x5da47c['type']==='TABLE')_0x41e860[_0x17e3a2(0x843)]!==null&&(_0x6be976[_0x17e3a2(0x381)](_0x58d732['length']),_0xa2b6d8[_0x17e3a2(0x381)](_0x5e70c4)),_0x58d732[_0x17e3a2(0x381)](0x0,0x0);else{for(let _0x5f152a=0x0;_0x5f152a<_0x5e70c4['length'];_0x5f152a++)_0x58d732[_0x17e3a2(0x381)](_0x5e70c4[_0x5f152a]);}}for(let _0x56b2f7=0x0;_0x56b2f7<_0xa2b6d8['length'];_0x56b2f7+=0x1){let _0x503ac1=_0x6be976[_0x56b2f7],_0x311a81=_0x58d732['length'];_0x95cc0[_0x17e3a2(0x8e5)](_0x311a81<0x10000,_0x17e3a2(0x699)+_0x5cf217[_0x17e3a2(0x4ff)]+_0x17e3a2(0x6db)),_0x58d732[_0x503ac1]=_0x311a81>>0x8,_0x58d732[_0x503ac1+0x1]=_0x311a81&0xff;for(let _0x328b45=0x0;_0x328b45<_0xa2b6d8[_0x56b2f7][_0x17e3a2(0xba6)];_0x328b45++)_0x58d732[_0x17e3a2(0x381)](_0xa2b6d8[_0x56b2f7][_0x328b45]);}return _0x58d732;},_0x2ab1d6[_0x2273f6(0x34a)]=function(_0x285751){const _0x1401d6=_0x2273f6;let _0x2314a4=0x0,_0x3e615b=(_0x285751[_0x1401d6(0x843)]||[])['length'];for(let _0x4146c9=0x0;_0x4146c9<_0x3e615b;_0x4146c9+=0x1){let _0x32410b=_0x285751['fields'][_0x4146c9],_0x1215ca=_0x2ab1d6[_0x32410b[_0x1401d6(0x2c1)]];_0x95cc0[_0x1401d6(0x8e5)](_0x1215ca!==void 0x0,_0x1401d6(0x55e)+_0x32410b[_0x1401d6(0x2c1)]+'\x20('+_0x32410b[_0x1401d6(0x37a)]+')');let _0xb9bd94=_0x285751[_0x32410b[_0x1401d6(0x37a)]];_0xb9bd94===void 0x0&&(_0xb9bd94=_0x32410b['value']),_0x2314a4+=_0x1215ca(_0xb9bd94),_0x32410b[_0x1401d6(0x2c1)]==='TABLE'&&(_0x2314a4+=0x2);}return _0x2314a4;},_0x416524['RECORD']=_0x416524[_0x2273f6(0x34a)],_0x2ab1d6[_0x2273f6(0x31b)]=_0x2ab1d6[_0x2273f6(0x34a)],_0x416524[_0x2273f6(0x11b)]=function(_0xb2d1b6){return _0xb2d1b6;},_0x2ab1d6[_0x2273f6(0x11b)]=function(_0x8c8ce1){const _0x13c5d9=_0x2273f6;return _0x8c8ce1[_0x13c5d9(0xba6)];};function _0x1b8eda(_0x5f3f45,_0x39bac0,_0x1fd675){const _0x31cd79=_0x2273f6;if(_0x39bac0&&_0x39bac0[_0x31cd79(0xba6)])for(let _0x281e72=0x0;_0x281e72<_0x39bac0['length'];_0x281e72+=0x1){let _0x37ff6d=_0x39bac0[_0x281e72];this[_0x37ff6d[_0x31cd79(0x37a)]]=_0x37ff6d['value'];}if(this[_0x31cd79(0x4ff)]=_0x5f3f45,this[_0x31cd79(0x843)]=_0x39bac0,_0x1fd675){let _0x4a611c=Object[_0x31cd79(0x3ed)](_0x1fd675);for(let _0x3c7994=0x0;_0x3c7994<_0x4a611c[_0x31cd79(0xba6)];_0x3c7994+=0x1){let _0x148d5a=_0x4a611c[_0x3c7994],_0x42ac6a=_0x1fd675[_0x148d5a];this[_0x148d5a]!==void 0x0&&(this[_0x148d5a]=_0x42ac6a);}}}_0x1b8eda['prototype'][_0x2273f6(0xabd)]=function(){const _0x1bddeb=_0x2273f6;return _0x416524[_0x1bddeb(0x34a)](this);},_0x1b8eda[_0x2273f6(0x505)][_0x2273f6(0x58f)]=function(){const _0x1fa424=_0x2273f6;return _0x2ab1d6[_0x1fa424(0x34a)](this);};function _0xf7db58(_0x213611,_0x35cfdb,_0x1bd225){const _0x2097f7=_0x2273f6;_0x1bd225===void 0x0&&(_0x1bd225=_0x35cfdb['length']);let _0x16c3b9=Array(_0x35cfdb[_0x2097f7(0xba6)]+0x1);_0x16c3b9[0x0]={'name':_0x213611+_0x2097f7(0x8f0),'type':_0x2097f7(0x95d),'value':_0x1bd225};for(let _0x120663=0x0;_0x120663<_0x35cfdb[_0x2097f7(0xba6)];_0x120663++)_0x16c3b9[_0x120663+0x1]={'name':_0x213611+_0x120663,'type':_0x2097f7(0x95d),'value':_0x35cfdb[_0x120663]};return _0x16c3b9;}function _0x25a41a(_0x176186,_0xbfa1cb,_0x3fac45){const _0x5959e7=_0x2273f6;let _0x211dd3=_0xbfa1cb[_0x5959e7(0xba6)],_0x263a46=Array(_0x211dd3+0x1);_0x263a46[0x0]={'name':_0x176186+_0x5959e7(0x8f0),'type':'USHORT','value':_0x211dd3};for(let _0x3a47f8=0x0;_0x3a47f8<_0x211dd3;_0x3a47f8++)_0x263a46[_0x3a47f8+0x1]={'name':_0x176186+_0x3a47f8,'type':'TABLE','value':_0x3fac45(_0xbfa1cb[_0x3a47f8],_0x3a47f8)};return _0x263a46;}function _0x43d77d(_0x204700,_0x1018b1,_0x4aa365){const _0x581793=_0x2273f6;let _0x572db7=_0x1018b1[_0x581793(0xba6)],_0x32fafd=[];_0x32fafd[0x0]={'name':_0x204700+_0x581793(0x8f0),'type':_0x581793(0x95d),'value':_0x572db7};for(let _0x2611a8=0x0;_0x2611a8<_0x572db7;_0x2611a8++)_0x32fafd=_0x32fafd[_0x581793(0xaba)](_0x4aa365(_0x1018b1[_0x2611a8],_0x2611a8));return _0x32fafd;}function _0xe28fc4(_0x568fb5){const _0x3f8a4e=_0x2273f6;_0x568fb5[_0x3f8a4e(0xc00)]===0x1?_0x1b8eda['call'](this,_0x3f8a4e(0x2dc),[{'name':_0x3f8a4e(0x825),'type':_0x3f8a4e(0x95d),'value':0x1}][_0x3f8a4e(0xaba)](_0xf7db58(_0x3f8a4e(0x4d7),_0x568fb5[_0x3f8a4e(0x70a)]))):_0x568fb5['format']===0x2?_0x1b8eda[_0x3f8a4e(0x3f4)](this,'coverageTable',[{'name':_0x3f8a4e(0x825),'type':_0x3f8a4e(0x95d),'value':0x2}][_0x3f8a4e(0xaba)](_0x43d77d('rangeRecord',_0x568fb5[_0x3f8a4e(0x6b6)],function(_0xc530f6,_0x4aa018){const _0x243967=_0x3f8a4e;return[{'name':_0x243967(0x239)+_0x4aa018,'type':_0x243967(0x95d),'value':_0xc530f6[_0x243967(0x3c1)]},{'name':'endGlyphID'+_0x4aa018,'type':_0x243967(0x95d),'value':_0xc530f6[_0x243967(0x392)]},{'name':_0x243967(0x6a5)+_0x4aa018,'type':_0x243967(0x95d),'value':_0xc530f6[_0x243967(0x2c6)]}];}))):_0x95cc0[_0x3f8a4e(0x4bd)](!0x1,_0x3f8a4e(0x47b));}_0xe28fc4[_0x2273f6(0x505)]=Object[_0x2273f6(0x64b)](_0x1b8eda['prototype']),_0xe28fc4['prototype'][_0x2273f6(0x6d2)]=_0xe28fc4;function _0xc94848(_0x685a73){const _0x28f641=_0x2273f6;_0x1b8eda[_0x28f641(0x3f4)](this,_0x28f641(0xaf9),_0x43d77d('scriptRecord',_0x685a73,function(_0x21050a,_0x46db04){const _0x4e3947=_0x28f641;let _0x54eecb=_0x21050a[_0x4e3947(0xc73)],_0x27d1a9=_0x54eecb['defaultLangSys'];return _0x95cc0[_0x4e3947(0x4bd)](!!_0x27d1a9,_0x4e3947(0x36d)+_0x21050a['tag']+_0x4e3947(0x88a)),[{'name':_0x4e3947(0x4a7)+_0x46db04,'type':_0x4e3947(0xae2),'value':_0x21050a[_0x4e3947(0xbc6)]},{'name':_0x4e3947(0xc73)+_0x46db04,'type':_0x4e3947(0x34a),'value':new _0x1b8eda(_0x4e3947(0xb73),[{'name':_0x4e3947(0xa8f),'type':_0x4e3947(0x34a),'value':new _0x1b8eda(_0x4e3947(0xa8f),[{'name':'lookupOrder','type':'USHORT','value':0x0},{'name':'reqFeatureIndex','type':'USHORT','value':_0x27d1a9[_0x4e3947(0x5c3)]}][_0x4e3947(0xaba)](_0xf7db58(_0x4e3947(0x41a),_0x27d1a9[_0x4e3947(0x7c0)])))}]['concat'](_0x43d77d(_0x4e3947(0x691),_0x54eecb['langSysRecords'],function(_0x447996,_0x4d967c){const _0x4d20d4=_0x4e3947;let _0x4af6e5=_0x447996[_0x4d20d4(0x691)];return[{'name':'langSysTag'+_0x4d967c,'type':_0x4d20d4(0xae2),'value':_0x447996[_0x4d20d4(0xbc6)]},{'name':'langSys'+_0x4d967c,'type':_0x4d20d4(0x34a),'value':new _0x1b8eda(_0x4d20d4(0x691),[{'name':_0x4d20d4(0x5c5),'type':_0x4d20d4(0x95d),'value':0x0},{'name':_0x4d20d4(0x5c3),'type':_0x4d20d4(0x95d),'value':_0x4af6e5['reqFeatureIndex']}]['concat'](_0xf7db58('featureIndex',_0x4af6e5[_0x4d20d4(0x7c0)])))}];})))}];}));}_0xc94848[_0x2273f6(0x505)]=Object[_0x2273f6(0x64b)](_0x1b8eda['prototype']),_0xc94848[_0x2273f6(0x505)]['constructor']=_0xc94848;function _0xdb8f35(_0x5db1f0){const _0x3fdff8=_0x2273f6;_0x1b8eda['call'](this,'featureListTable',_0x43d77d(_0x3fdff8(0x84f),_0x5db1f0,function(_0x5c146f,_0x4b13ec){const _0x440e42=_0x3fdff8;let _0x302568=_0x5c146f[_0x440e42(0x40e)];return[{'name':_0x440e42(0xb62)+_0x4b13ec,'type':'TAG','value':_0x5c146f['tag']},{'name':'feature'+_0x4b13ec,'type':_0x440e42(0x34a),'value':new _0x1b8eda('featureTable',[{'name':_0x440e42(0xad6),'type':_0x440e42(0x95d),'value':_0x302568['featureParams']}]['concat'](_0xf7db58('lookupListIndex',_0x302568['lookupListIndexes'])))}];}));}_0xdb8f35[_0x2273f6(0x505)]=Object['create'](_0x1b8eda[_0x2273f6(0x505)]),_0xdb8f35[_0x2273f6(0x505)][_0x2273f6(0x6d2)]=_0xdb8f35;function _0x4dba2c(_0x17291d,_0x158411){const _0x43267f=_0x2273f6;_0x1b8eda['call'](this,_0x43267f(0x4a3),_0x25a41a(_0x43267f(0x479),_0x17291d,function(_0x2ae72b){const _0x1b5d14=_0x43267f;let _0x59e086=_0x158411[_0x2ae72b[_0x1b5d14(0x8a6)]];return _0x95cc0[_0x1b5d14(0x4bd)](!!_0x59e086,_0x1b5d14(0x3ea)+_0x2ae72b[_0x1b5d14(0x8a6)]+_0x1b5d14(0x5e2)),new _0x1b8eda(_0x1b5d14(0x3fb),[{'name':_0x1b5d14(0x8a6),'type':_0x1b5d14(0x95d),'value':_0x2ae72b[_0x1b5d14(0x8a6)]},{'name':_0x1b5d14(0x1e9),'type':'USHORT','value':_0x2ae72b['lookupFlag']}][_0x1b5d14(0xaba)](_0x25a41a(_0x1b5d14(0xa2b),_0x2ae72b[_0x1b5d14(0xa97)],_0x59e086)));}));}_0x4dba2c[_0x2273f6(0x505)]=Object[_0x2273f6(0x64b)](_0x1b8eda[_0x2273f6(0x505)]),_0x4dba2c[_0x2273f6(0x505)][_0x2273f6(0x6d2)]=_0x4dba2c;function _0x55f8cc(_0x9428bf){const _0x6cfee2=_0x2273f6;_0x9428bf[_0x6cfee2(0xc00)]===0x1?_0x1b8eda['call'](this,_0x6cfee2(0x589),[{'name':_0x6cfee2(0x2ef),'type':_0x6cfee2(0x95d),'value':0x1},{'name':'startGlyphID','type':'USHORT','value':_0x9428bf[_0x6cfee2(0x170)]}]['concat'](_0xf7db58(_0x6cfee2(0x4d7),_0x9428bf[_0x6cfee2(0x83e)]))):_0x9428bf[_0x6cfee2(0xc00)]===0x2?_0x1b8eda[_0x6cfee2(0x3f4)](this,'classDefTable',[{'name':_0x6cfee2(0x2ef),'type':_0x6cfee2(0x95d),'value':0x2}][_0x6cfee2(0xaba)](_0x43d77d(_0x6cfee2(0xb40),_0x9428bf['ranges'],function(_0x580375,_0x5274b5){const _0x47bb40=_0x6cfee2;return[{'name':_0x47bb40(0x239)+_0x5274b5,'type':_0x47bb40(0x95d),'value':_0x580375['start']},{'name':_0x47bb40(0x111)+_0x5274b5,'type':_0x47bb40(0x95d),'value':_0x580375[_0x47bb40(0x392)]},{'name':_0x47bb40(0x8f8)+_0x5274b5,'type':_0x47bb40(0x95d),'value':_0x580375[_0x47bb40(0x4c5)]}];}))):_0x95cc0[_0x6cfee2(0x4bd)](!0x1,'Class\x20format\x20must\x20be\x201\x20or\x202.');}_0x55f8cc[_0x2273f6(0x505)]=Object['create'](_0x1b8eda[_0x2273f6(0x505)]),_0x55f8cc[_0x2273f6(0x505)][_0x2273f6(0x6d2)]=_0x55f8cc;var _0x14efbe={'Table':_0x1b8eda,'Record':_0x1b8eda,'Coverage':_0xe28fc4,'ClassDef':_0x55f8cc,'ScriptList':_0xc94848,'FeatureList':_0xdb8f35,'LookupList':_0x4dba2c,'ushortList':_0xf7db58,'tableList':_0x25a41a,'recordList':_0x43d77d};function _0x27ffc9(_0x1905e9,_0x20fbb0){const _0x57c37f=_0x2273f6;return _0x1905e9[_0x57c37f(0xa7d)](_0x20fbb0);}function _0x4f123b(_0x4a0d55,_0x335db6){const _0x3c9a9f=_0x2273f6;return _0x4a0d55[_0x3c9a9f(0xbdf)](_0x335db6,!0x1);}function _0x386063(_0x5a9e1a,_0x4d1a13){const _0xfe786d=_0x2273f6;return _0x5a9e1a[_0xfe786d(0x887)](_0x4d1a13,!0x1);}function _0x382510(_0x435551,_0x593ffa){const _0x2dbabb=_0x2273f6;return(_0x435551[_0x2dbabb(0xbdf)](_0x593ffa)<<0x8)+_0x435551[_0x2dbabb(0xa7d)](_0x593ffa+0x2);}function _0x48b19d(_0x5f0ff0,_0x5cb60b){const _0x2f9c98=_0x2273f6;return _0x5f0ff0[_0x2f9c98(0x9c7)](_0x5cb60b,!0x1);}function _0x3c2d23(_0x31f18a,_0x189e66){return _0x31f18a['getInt32'](_0x189e66,!0x1);}function _0x4b745a(_0x12c3ac,_0x33320e){const _0x5221a4=_0x2273f6;return _0x12c3ac['getInt16'](_0x33320e,!0x1)+_0x12c3ac[_0x5221a4(0xbdf)](_0x33320e+0x2,!0x1)/0xffff;}function _0x3589a9(_0x4f20ee,_0x5a0366){const _0x556d99=_0x2273f6;let _0x103d4d='';for(let _0x4ec42c=_0x5a0366;_0x4ec42c<_0x5a0366+0x4;_0x4ec42c+=0x1)_0x103d4d+=String[_0x556d99(0x98a)](_0x4f20ee[_0x556d99(0x160)](_0x4ec42c));return _0x103d4d;}function _0xfb080(_0x2a878e,_0xed15e3,_0x1d8804){const _0xffee3=_0x2273f6;let _0x4546a9=0x0;for(let _0x29cab5=0x0;_0x29cab5<_0x1d8804;_0x29cab5+=0x1)_0x4546a9<<=0x8,_0x4546a9+=_0x2a878e[_0xffee3(0xa7d)](_0xed15e3+_0x29cab5);return _0x4546a9;}function _0x4f07ce(_0x2c05d6,_0xc043d2,_0x2a9751){const _0x3e6514=_0x2273f6;let _0x306963=[];for(let _0x550d3e=_0xc043d2;_0x550d3e<_0x2a9751;_0x550d3e+=0x1)_0x306963['push'](_0x2c05d6[_0x3e6514(0xa7d)](_0x550d3e));return _0x306963;}function _0x142f8e(_0x6f92e4){const _0x356960=_0x2273f6;let _0x4e838b='';for(let _0x24679d=0x0;_0x24679d<_0x6f92e4['length'];_0x24679d+=0x1)_0x4e838b+=String[_0x356960(0x98a)](_0x6f92e4[_0x24679d]);return _0x4e838b;}var _0x4ed6c2={'byte':0x1,'uShort':0x2,'f2dot14':0x2,'short':0x2,'uInt24':0x3,'uLong':0x4,'fixed':0x4,'longDateTime':0x8,'tag':0x4},_0x1f2f59={'LONG_WORDS':0x8000,'WORD_DELTA_COUNT_MASK':0x7fff,'SHARED_POINT_NUMBERS':0x8000,'COUNT_MASK':0xfff,'EMBEDDED_PEAK_TUPLE':0x8000,'INTERMEDIATE_REGION':0x4000,'PRIVATE_POINT_NUMBERS':0x2000,'TUPLE_INDEX_MASK':0xfff,'POINTS_ARE_WORDS':0x80,'POINT_RUN_COUNT_MASK':0x7f,'DELTAS_ARE_ZERO':0x80,'DELTAS_ARE_WORDS':0x40,'DELTA_RUN_COUNT_MASK':0x3f,'INNER_INDEX_BIT_COUNT_MASK':0xf,'MAP_ENTRY_SIZE_MASK':0x30};function _0x43487c(_0x4fe14f,_0x4e99fa){const _0x53bdd8=_0x2273f6;this[_0x53bdd8(0xb81)]=_0x4fe14f,this[_0x53bdd8(0x679)]=_0x4e99fa,this[_0x53bdd8(0x7a9)]=0x0;}_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xc25)]=function(){const _0x3021d9=_0x2273f6;let _0x4a5f5a=this['data'][_0x3021d9(0xa7d)](this[_0x3021d9(0x679)]+this[_0x3021d9(0x7a9)]);return this[_0x3021d9(0x7a9)]+=0x1,_0x4a5f5a;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x770)]=function(){const _0x56ffe0=_0x2273f6;let _0x2a80cf=this['data']['getInt8'](this[_0x56ffe0(0x679)]+this[_0x56ffe0(0x7a9)]);return this[_0x56ffe0(0x7a9)]+=0x1,_0x2a80cf;},_0x43487c[_0x2273f6(0x505)]['parseCard8']=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xc25)],_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x260)]=function(){const _0x1306b1=_0x2273f6;let _0x4db5d4=this[_0x1306b1(0xb81)][_0x1306b1(0xbdf)](this[_0x1306b1(0x679)]+this[_0x1306b1(0x7a9)]);return this[_0x1306b1(0x7a9)]+=0x2,_0x4db5d4;},_0x43487c['prototype'][_0x2273f6(0x823)]=_0x43487c[_0x2273f6(0x505)]['parseUShort'],_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x446)]=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x260)],_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xa3a)]=_0x43487c[_0x2273f6(0x505)]['parseUShort'],_0x43487c[_0x2273f6(0x505)]['parseShort']=function(){const _0x216333=_0x2273f6;let _0x3b9ac9=this[_0x216333(0xb81)][_0x216333(0x887)](this['offset']+this[_0x216333(0x7a9)]);return this[_0x216333(0x7a9)]+=0x2,_0x3b9ac9;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x156)]=function(){const _0x38ec48=_0x2273f6;let _0xe829d5=this['data'][_0x38ec48(0x887)](this[_0x38ec48(0x679)]+this[_0x38ec48(0x7a9)])/0x4000;return this['relativeOffset']+=0x2,_0xe829d5;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x6d4)]=function(){const _0xa64df5=_0x2273f6;let _0x4bdd2a=_0x382510(this[_0xa64df5(0xb81)],this[_0xa64df5(0x679)]+this[_0xa64df5(0x7a9)]);return this['relativeOffset']+=0x3,_0x4bdd2a;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x398)]=function(){const _0x50dc40=_0x2273f6;let _0xe655e7=_0x48b19d(this['data'],this[_0x50dc40(0x679)]+this['relativeOffset']);return this[_0x50dc40(0x7a9)]+=0x4,_0xe655e7;},_0x43487c['prototype']['parseLong']=function(){const _0x246cc6=_0x2273f6;let _0x2a9db6=_0x3c2d23(this[_0x246cc6(0xb81)],this[_0x246cc6(0x679)]+this[_0x246cc6(0x7a9)]);return this[_0x246cc6(0x7a9)]+=0x4,_0x2a9db6;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x562)]=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x398)],_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x2f0)]=function(){const _0x4591c1=_0x2273f6;let _0x3fa673=_0x4b745a(this['data'],this[_0x4591c1(0x679)]+this[_0x4591c1(0x7a9)]);return this[_0x4591c1(0x7a9)]+=0x4,_0x3fa673;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x83a)]=function(_0x289d06){const _0x9a07b5=_0x2273f6;let _0x173309=this[_0x9a07b5(0xb81)],_0x545aa7=this[_0x9a07b5(0x679)]+this[_0x9a07b5(0x7a9)],_0x16e337='';this[_0x9a07b5(0x7a9)]+=_0x289d06;for(let _0x5c3b81=0x0;_0x5c3b81<_0x289d06;_0x5c3b81++)_0x16e337+=String[_0x9a07b5(0x98a)](_0x173309['getUint8'](_0x545aa7+_0x5c3b81));return _0x16e337;},_0x43487c['prototype'][_0x2273f6(0x84c)]=function(){const _0x5eb75c=_0x2273f6;return this[_0x5eb75c(0x83a)](0x4);},_0x43487c[_0x2273f6(0x505)]['parseLongDateTime']=function(){const _0xacb7cc=_0x2273f6;let _0x1226f3=_0x48b19d(this[_0xacb7cc(0xb81)],this[_0xacb7cc(0x679)]+this[_0xacb7cc(0x7a9)]+0x4);return _0x1226f3-=0x7c25b080,this[_0xacb7cc(0x7a9)]+=0x8,_0x1226f3;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x738)]=function(_0x534e32){const _0x28c8c7=_0x2273f6;let _0xba45cb=_0x4f123b(this[_0x28c8c7(0xb81)],this[_0x28c8c7(0x679)]+this['relativeOffset']),_0x21c6d8=_0x4f123b(this['data'],this[_0x28c8c7(0x679)]+this['relativeOffset']+0x2);return this[_0x28c8c7(0x7a9)]+=0x4,_0x534e32===void 0x0&&(_0x534e32=0x1000),_0xba45cb+_0x21c6d8/_0x534e32/0xa;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x2b6)]=function(_0x53dbb9,_0x2e8676){const _0x4744ec=_0x2273f6;_0x2e8676===void 0x0&&(_0x2e8676=0x1),this[_0x4744ec(0x7a9)]+=_0x4ed6c2[_0x53dbb9]*_0x2e8676;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x420)]=function(_0x1e5046){const _0x25ce78=_0x2273f6;_0x1e5046===void 0x0&&(_0x1e5046=this[_0x25ce78(0x398)]());let _0x291414=Array(_0x1e5046),_0x4ae717=this['data'],_0x487410=this[_0x25ce78(0x679)]+this['relativeOffset'];for(let _0x11febd=0x0;_0x11febd<_0x1e5046;_0x11febd++)_0x291414[_0x11febd]=_0x4ae717[_0x25ce78(0x9c7)](_0x487410),_0x487410+=0x4;return this[_0x25ce78(0x7a9)]+=_0x1e5046*0x4,_0x291414;},_0x43487c[_0x2273f6(0x505)]['parseOffset16List']=_0x43487c[_0x2273f6(0x505)]['parseUShortList']=function(_0x1143a9){const _0x18b9ab=_0x2273f6;_0x1143a9===void 0x0&&(_0x1143a9=this[_0x18b9ab(0x260)]());let _0x3f64cd=Array(_0x1143a9),_0x43448f=this[_0x18b9ab(0xb81)],_0x781db6=this['offset']+this['relativeOffset'];for(let _0x335068=0x0;_0x335068<_0x1143a9;_0x335068++)_0x3f64cd[_0x335068]=_0x43448f[_0x18b9ab(0xbdf)](_0x781db6),_0x781db6+=0x2;return this[_0x18b9ab(0x7a9)]+=_0x1143a9*0x2,_0x3f64cd;},_0x43487c['prototype'][_0x2273f6(0xc58)]=function(_0x1af9a1){const _0x7e0bf6=_0x2273f6;let _0x2f3678=Array(_0x1af9a1),_0x3bd9bc=this[_0x7e0bf6(0xb81)],_0x3c0c65=this[_0x7e0bf6(0x679)]+this[_0x7e0bf6(0x7a9)];for(let _0xd57a50=0x0;_0xd57a50<_0x1af9a1;_0xd57a50++)_0x2f3678[_0xd57a50]=_0x3bd9bc[_0x7e0bf6(0x887)](_0x3c0c65),_0x3c0c65+=0x2;return this['relativeOffset']+=_0x1af9a1*0x2,_0x2f3678;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xbe6)]=function(_0x54b3da){const _0x3eaa15=_0x2273f6;let _0x56f2bb=Array(_0x54b3da),_0x3b0512=this[_0x3eaa15(0xb81)],_0x3a960e=this[_0x3eaa15(0x679)]+this['relativeOffset'];for(let _0x3f95d2=0x0;_0x3f95d2<_0x54b3da;_0x3f95d2++)_0x56f2bb[_0x3f95d2]=_0x3b0512['getUint8'](_0x3a960e++);return this[_0x3eaa15(0x7a9)]+=_0x54b3da,_0x56f2bb;},_0x43487c[_0x2273f6(0x505)]['parseList']=function(_0x25683c,_0x274bbf){const _0x47a2c1=_0x2273f6;_0x274bbf||(_0x274bbf=_0x25683c,_0x25683c=this[_0x47a2c1(0x260)]());let _0x22ac0f=Array(_0x25683c);for(let _0x309cb9=0x0;_0x309cb9<_0x25683c;_0x309cb9++)_0x22ac0f[_0x309cb9]=_0x274bbf[_0x47a2c1(0x3f4)](this);return _0x22ac0f;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xa68)]=function(_0x1cb6ab,_0x447e13){const _0x40cc9d=_0x2273f6;_0x447e13||(_0x447e13=_0x1cb6ab,_0x1cb6ab=this[_0x40cc9d(0x398)]());let _0x300b87=Array(_0x1cb6ab);for(let _0x321c9b=0x0;_0x321c9b<_0x1cb6ab;_0x321c9b++)_0x300b87[_0x321c9b]=_0x447e13[_0x40cc9d(0x3f4)](this);return _0x300b87;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x8a1)]=function(_0x2c7b5d,_0x1d0f82){const _0x3f4a12=_0x2273f6;_0x1d0f82||(_0x1d0f82=_0x2c7b5d,_0x2c7b5d=this[_0x3f4a12(0x260)]());let _0x277df6=Array(_0x2c7b5d),_0x4b20c7=Object['keys'](_0x1d0f82);for(let _0x100427=0x0;_0x100427<_0x2c7b5d;_0x100427++){let _0x1221ae={};for(let _0x471b5c=0x0;_0x471b5c<_0x4b20c7['length'];_0x471b5c++){let _0xd5081a=_0x4b20c7[_0x471b5c];_0x1221ae[_0xd5081a]=_0x1d0f82[_0xd5081a][_0x3f4a12(0x3f4)](this);}_0x277df6[_0x100427]=_0x1221ae;}return _0x277df6;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xaca)]=function(_0x5a7f23,_0x331305){const _0x124752=_0x2273f6;_0x331305||(_0x331305=_0x5a7f23,_0x5a7f23=this['parseULong']());let _0x1a61cf=Array(_0x5a7f23),_0x4afa41=Object[_0x124752(0x3ed)](_0x331305);for(let _0x347f04=0x0;_0x347f04<_0x5a7f23;_0x347f04++){let _0x86ab4c={};for(let _0x15dd08=0x0;_0x15dd08<_0x4afa41[_0x124752(0xba6)];_0x15dd08++){let _0x458a32=_0x4afa41[_0x15dd08];_0x86ab4c[_0x458a32]=_0x331305[_0x458a32][_0x124752(0x3f4)](this);}_0x1a61cf[_0x347f04]=_0x86ab4c;}return _0x1a61cf;},_0x43487c[_0x2273f6(0x505)]['parseTupleRecords']=function(_0x14d5c5,_0x2a0a54){const _0x586654=_0x2273f6;let _0xf04036=[];for(let _0x594f2a=0x0;_0x594f2a<_0x14d5c5;_0x594f2a++){let _0x279845=[];for(let _0x3bc392=0x0;_0x3bc392<_0x2a0a54;_0x3bc392++)_0x279845[_0x586654(0x381)](this[_0x586654(0x156)]());_0xf04036[_0x586654(0x381)](_0x279845);}return _0xf04036;},_0x43487c['prototype'][_0x2273f6(0x1a9)]=function(_0x5bc404){const _0x280247=_0x2273f6;if(typeof _0x5bc404==_0x280247(0x9df))return _0x5bc404['call'](this);{let _0x354746=Object[_0x280247(0x3ed)](_0x5bc404),_0x2d10cb={};for(let _0x2a3b6f=0x0;_0x2a3b6f<_0x354746[_0x280247(0xba6)];_0x2a3b6f++){let _0x33ac27=_0x354746[_0x2a3b6f];_0x2d10cb[_0x33ac27]=_0x5bc404[_0x33ac27][_0x280247(0x3f4)](this);}return _0x2d10cb;}},_0x43487c['prototype'][_0x2273f6(0x88e)]=function(_0x237d48){const _0x1fbe9a=_0x2273f6;if(_0x237d48===void 0x0&&(_0x237d48=this[_0x1fbe9a(0x260)]()),_0x237d48===0x0)return;let _0x3b961a={};return _0x237d48&0x1&&(_0x3b961a[_0x1fbe9a(0x775)]=this['parseShort']()),_0x237d48&0x2&&(_0x3b961a[_0x1fbe9a(0x7ca)]=this[_0x1fbe9a(0x673)]()),_0x237d48&0x4&&(_0x3b961a[_0x1fbe9a(0x87b)]=this[_0x1fbe9a(0x673)]()),_0x237d48&0x8&&(_0x3b961a[_0x1fbe9a(0xaaa)]=this[_0x1fbe9a(0x673)]()),_0x237d48&0x10&&(_0x3b961a[_0x1fbe9a(0x5f1)]=void 0x0,this[_0x1fbe9a(0x673)]()),_0x237d48&0x20&&(_0x3b961a[_0x1fbe9a(0x22f)]=void 0x0,this[_0x1fbe9a(0x673)]()),_0x237d48&0x40&&(_0x3b961a[_0x1fbe9a(0x3c5)]=void 0x0,this[_0x1fbe9a(0x673)]()),_0x237d48&0x80&&(_0x3b961a['yAdvDevice']=void 0x0,this[_0x1fbe9a(0x673)]()),_0x3b961a;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x3c0)]=function(){const _0x30142e=_0x2273f6;let _0x322d56=this[_0x30142e(0x260)](),_0x3f6b90=this[_0x30142e(0x260)](),_0x246a6a=Array(_0x3f6b90);for(let _0x1b374b=0x0;_0x1b374b<_0x3f6b90;_0x1b374b++)_0x246a6a[_0x1b374b]=this[_0x30142e(0x88e)](_0x322d56);return _0x246a6a;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x3ee)]=function(_0x480eab){const _0x28d060=_0x2273f6;let _0x9699fb=this['parseOffset16']();if(_0x9699fb>0x0)return new _0x43487c(this[_0x28d060(0xb81)],this['offset']+_0x9699fb)[_0x28d060(0x1a9)](_0x480eab);},_0x43487c['prototype'][_0x2273f6(0xac1)]=function(_0x14083a){const _0x260eb5=_0x2273f6;let _0xedefef=this[_0x260eb5(0x562)]();if(_0xedefef>0x0)return new _0x43487c(this[_0x260eb5(0xb81)],this[_0x260eb5(0x679)]+_0xedefef)[_0x260eb5(0x1a9)](_0x14083a);},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x49d)]=function(_0x741ceb){const _0x2e33dd=_0x2273f6;let _0x16d4b3=this['parseOffset16List'](),_0x33f8a6=_0x16d4b3[_0x2e33dd(0xba6)],_0x5d759a=this[_0x2e33dd(0x7a9)],_0x29b7cc=Array(_0x33f8a6);for(let _0x794701=0x0;_0x794701<_0x33f8a6;_0x794701++){let _0x3ce1f1=_0x16d4b3[_0x794701];if(_0x3ce1f1===0x0){_0x29b7cc[_0x794701]=void 0x0;continue;}if(this['relativeOffset']=_0x3ce1f1,_0x741ceb){let _0x58045d=this[_0x2e33dd(0x1c6)](),_0x1478d2=Array(_0x58045d['length']);for(let _0x2918e5=0x0;_0x2918e5<_0x58045d[_0x2e33dd(0xba6)];_0x2918e5++)this['relativeOffset']=_0x3ce1f1+_0x58045d[_0x2918e5],_0x1478d2[_0x2918e5]=_0x741ceb['call'](this);_0x29b7cc[_0x794701]=_0x1478d2;}else _0x29b7cc[_0x794701]=this[_0x2e33dd(0x153)]();}return this[_0x2e33dd(0x7a9)]=_0x5d759a,_0x29b7cc;},_0x43487c['prototype'][_0x2273f6(0x40b)]=function(){const _0x2e51ae=_0x2273f6;let _0x4d2ee7=this['offset']+this['relativeOffset'],_0x1a1721=this[_0x2e51ae(0x260)](),_0x1a3b7d=this[_0x2e51ae(0x260)]();if(_0x1a1721===0x1)return{'format':0x1,'glyphs':this[_0x2e51ae(0x153)](_0x1a3b7d)};if(_0x1a1721===0x2){let _0x23dfa1=Array(_0x1a3b7d);for(let _0x5b92f9=0x0;_0x5b92f9<_0x1a3b7d;_0x5b92f9++)_0x23dfa1[_0x5b92f9]={'start':this[_0x2e51ae(0x260)](),'end':this[_0x2e51ae(0x260)](),'index':this[_0x2e51ae(0x260)]()};return{'format':0x2,'ranges':_0x23dfa1};}throw Error('0x'+_0x4d2ee7[_0x2e51ae(0x23e)](0x10)+_0x2e51ae(0x563));},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x34f)]=function(){const _0x26d51d=_0x2273f6;let _0xe9fe45=this[_0x26d51d(0x679)]+this[_0x26d51d(0x7a9)],_0x114987=this['parseUShort']();return _0x114987===0x1?{'format':0x1,'startGlyph':this[_0x26d51d(0x260)](),'classes':this[_0x26d51d(0x153)]()}:_0x114987===0x2?{'format':0x2,'ranges':this[_0x26d51d(0x8a1)]({'start':_0x43487c[_0x26d51d(0x678)],'end':_0x43487c[_0x26d51d(0x678)],'classId':_0x43487c[_0x26d51d(0x678)]})}:(console['warn']('0x'+_0xe9fe45[_0x26d51d(0x23e)](0x10)+_0x26d51d(0x5d7)+_0x114987+'.\x20It\x20might\x20be\x20corrupted\x20and\x20should\x20be\x20reacquired\x20if\x20it\x20doesn\x27t\x20display\x20as\x20intended.'),{'format':_0x114987});},_0x43487c[_0x2273f6(0x782)]=function(_0x57fec1,_0x2ad876){return function(){const _0x2b991c=_0x57a5;return this[_0x2b991c(0x341)](_0x57fec1,_0x2ad876);};},_0x43487c[_0x2273f6(0x4c8)]=function(_0x30975d,_0xa17369){return function(){const _0x3ce05c=_0x57a5;return this[_0x3ce05c(0xa68)](_0x30975d,_0xa17369);};},_0x43487c[_0x2273f6(0x795)]=function(_0x52693e,_0xe44365){return function(){const _0x5eff67=_0x57a5;return this[_0x5eff67(0x8a1)](_0x52693e,_0xe44365);};},_0x43487c[_0x2273f6(0x2f6)]=function(_0x1d5495,_0x518f61){return function(){const _0x25b0d7=_0x57a5;return this[_0x25b0d7(0xaca)](_0x1d5495,_0x518f61);};},_0x43487c['pointer']=function(_0x4406de){return function(){const _0x335452=_0x57a5;return this[_0x335452(0x3ee)](_0x4406de);};},_0x43487c['pointer32']=function(_0x5de3c6){return function(){const _0x481697=_0x57a5;return this[_0x481697(0xac1)](_0x5de3c6);};},_0x43487c[_0x2273f6(0xbc6)]=_0x43487c['prototype'][_0x2273f6(0x84c)],_0x43487c[_0x2273f6(0x177)]=_0x43487c[_0x2273f6(0x505)]['parseByte'],_0x43487c[_0x2273f6(0x678)]=_0x43487c[_0x2273f6(0x824)]=_0x43487c['prototype']['parseUShort'],_0x43487c['uShortList']=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x153)],_0x43487c[_0x2273f6(0x737)]=_0x43487c['prototype'][_0x2273f6(0x6d4)],_0x43487c[_0x2273f6(0xb0b)]=_0x43487c[_0x2273f6(0x9c8)]=_0x43487c[_0x2273f6(0x505)]['parseULong'],_0x43487c[_0x2273f6(0xc29)]=_0x43487c[_0x2273f6(0x505)]['parseULongList'],_0x43487c['fixed']=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x2f0)],_0x43487c['f2Dot14']=_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x156)],_0x43487c[_0x2273f6(0x305)]=_0x43487c['prototype'][_0x2273f6(0x1a9)],_0x43487c[_0x2273f6(0x8aa)]=_0x43487c[_0x2273f6(0x505)]['parseCoverage'],_0x43487c[_0x2273f6(0x948)]=_0x43487c[_0x2273f6(0x505)]['parseClassDef'];var _0x405e53={'reserved':_0x43487c[_0x2273f6(0x678)],'reqFeatureIndex':_0x43487c[_0x2273f6(0x678)],'featureIndexes':_0x43487c[_0x2273f6(0x609)]};_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x410)]=function(){const _0x4a2aaf=_0x2273f6;return this['parsePointer'](_0x43487c[_0x4a2aaf(0x795)]({'tag':_0x43487c[_0x4a2aaf(0xbc6)],'script':_0x43487c[_0x4a2aaf(0x507)]({'defaultLangSys':_0x43487c[_0x4a2aaf(0x507)](_0x405e53),'langSysRecords':_0x43487c[_0x4a2aaf(0x795)]({'tag':_0x43487c['tag'],'langSys':_0x43487c[_0x4a2aaf(0x507)](_0x405e53)})})}))||[];},_0x43487c['prototype'][_0x2273f6(0x5a4)]=function(){const _0x3793e0=_0x2273f6;return this['parsePointer'](_0x43487c[_0x3793e0(0x795)]({'tag':_0x43487c[_0x3793e0(0xbc6)],'feature':_0x43487c[_0x3793e0(0x507)]({'featureParams':_0x43487c['offset16'],'lookupListIndexes':_0x43487c[_0x3793e0(0x609)]})}))||[];},_0x43487c['prototype']['parseLookupList']=function(_0x578fc4){const _0x4ebd70=_0x2273f6;return this[_0x4ebd70(0x3ee)](_0x43487c[_0x4ebd70(0x782)](_0x43487c['pointer'](function(){const _0x506e93=_0x4ebd70;let _0xbd5742=this[_0x506e93(0x260)]();_0x95cc0[_0x506e93(0x8e5)](0x1<=_0xbd5742&&_0xbd5742<=0x9,_0x506e93(0x3e5)+_0xbd5742+'\x20unknown.');let _0x247400=this[_0x506e93(0x260)](),_0x14c73c=_0x247400&0x10;return{'lookupType':_0xbd5742,'lookupFlag':_0x247400,'subtables':this[_0x506e93(0x341)](_0x43487c['pointer'](_0x578fc4[_0xbd5742])),'markFilteringSet':_0x14c73c?this[_0x506e93(0x260)]():void 0x0};})))||[];},_0x43487c['prototype'][_0x2273f6(0xc83)]=function(){const _0x5ec62e=_0x2273f6;return this[_0x5ec62e(0xac1)](function(){const _0x59f6a3=_0x5ec62e;let _0x103e9b=this[_0x59f6a3(0x260)](),_0xa08132=this[_0x59f6a3(0x260)]();return _0x95cc0[_0x59f6a3(0x8e5)](_0x103e9b===0x1&&_0xa08132<0x1,_0x59f6a3(0xaa4)),this['parseRecordList32']({'conditionSetOffset':_0x43487c['offset32'],'featureTableSubstitutionOffset':_0x43487c[_0x59f6a3(0x9c8)]});})||[];},_0x43487c['prototype']['parseVariationStore']=function(){const _0x1f82e5=_0x2273f6;let _0x46a0dd=this[_0x1f82e5(0x7a9)],_0x4ed290=this[_0x1f82e5(0x260)](),_0x4cd9c5={'itemVariationStore':this[_0x1f82e5(0x977)]()};return this[_0x1f82e5(0x7a9)]=_0x46a0dd+_0x4ed290+0x2,_0x4cd9c5;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x977)]=function(){const _0xc8d71a=_0x2273f6;let _0x30ecb5=this[_0xc8d71a(0x7a9)],_0x59df8f={'format':this[_0xc8d71a(0x260)](),'variationRegions':[],'itemVariationSubtables':[]},_0x1808ec=this[_0xc8d71a(0x562)](),_0x76948b=this[_0xc8d71a(0x260)](),_0x412bbb=this[_0xc8d71a(0x420)](_0x76948b);this['relativeOffset']=_0x30ecb5+_0x1808ec,_0x59df8f[_0xc8d71a(0xbb0)]=this[_0xc8d71a(0x7af)]();for(let _0x172fd4=0x0;_0x172fd4<_0x76948b;_0x172fd4++){let _0x23b28e=_0x412bbb[_0x172fd4];this[_0xc8d71a(0x7a9)]=_0x30ecb5+_0x23b28e,_0x59df8f[_0xc8d71a(0x789)][_0xc8d71a(0x381)](this[_0xc8d71a(0x345)]());}return _0x59df8f;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x7af)]=function(){const _0x188d65=_0x2273f6;let _0x5b82fd=this['parseUShort'](),_0xdcea1e=this[_0x188d65(0x260)]();return this[_0x188d65(0x8a1)](_0xdcea1e,{'regionAxes':_0x43487c['recordList'](_0x5b82fd,{'startCoord':_0x43487c[_0x188d65(0x540)],'peakCoord':_0x43487c[_0x188d65(0x540)],'endCoord':_0x43487c[_0x188d65(0x540)]})});},_0x43487c['prototype'][_0x2273f6(0x345)]=function(){const _0x8aa654=_0x2273f6;let _0x749973=this[_0x8aa654(0x260)](),_0x3c0eeb=this[_0x8aa654(0x260)](),_0x22be07=this[_0x8aa654(0x153)](),_0x31109f=_0x22be07[_0x8aa654(0xba6)];return{'regionIndexes':_0x22be07,'deltaSets':_0x749973&&_0x31109f?this[_0x8aa654(0x3de)](_0x749973,_0x3c0eeb,_0x31109f):[]};},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xc5e)]=function(){const _0x21fa10=_0x2273f6;let _0x2b0f4f=this[_0x21fa10(0xc25)](),_0x1e8a9a=this[_0x21fa10(0xc25)](),_0xbb5ea0=[],_0x580594=0x0;switch(_0x2b0f4f){case 0x0:_0x580594=this[_0x21fa10(0x260)]();break;case 0x1:_0x580594=this[_0x21fa10(0x398)]();break;default:console[_0x21fa10(0x9d7)](_0x21fa10(0x5cb)+_0x2b0f4f);}if(!_0x580594)return{'format':_0x2b0f4f,'entryFormat':_0x1e8a9a};let _0x56a63c=(_0x1e8a9a&_0x1f2f59[_0x21fa10(0x162)])+0x1,_0x412ab4=((_0x1e8a9a&_0x1f2f59['MAP_ENTRY_SIZE_MASK'])>>0x4)+0x1;for(let _0xe85a7b=0x0;_0xe85a7b<_0x580594;_0xe85a7b++){let _0x3a1dbb;if(_0x412ab4===0x1)_0x3a1dbb=this[_0x21fa10(0xc25)]();else{if(_0x412ab4===0x2)_0x3a1dbb=this[_0x21fa10(0x260)]();else{if(_0x412ab4===0x3)_0x3a1dbb=this['parseUInt24']();else{if(_0x412ab4===0x4)_0x3a1dbb=this['parseULong']();else throw Error(_0x21fa10(0x7ec)+_0x412ab4);}}}let _0x599b0b=_0x3a1dbb>>_0x56a63c,_0x305a15=_0x3a1dbb&(0x1<<_0x56a63c)-0x1;_0xbb5ea0[_0x21fa10(0x381)]({'outerIndex':_0x599b0b,'innerIndex':_0x305a15});}return{'format':_0x2b0f4f,'entryFormat':_0x1e8a9a,'map':_0xbb5ea0};},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x3de)]=function(_0x4df7e9,_0x1cd0a0,_0x126b66){const _0x38eb6f=_0x2273f6;let _0x4ac665=Array[_0x38eb6f(0x8c1)]({'length':_0x4df7e9},()=>[]),_0x1c4b02=_0x1cd0a0&_0x1f2f59[_0x38eb6f(0x4bc)],_0x544b02=_0x1cd0a0&_0x1f2f59['WORD_DELTA_COUNT_MASK'];if(_0x544b02>_0x126b66)throw Error(_0x38eb6f(0x994));let _0x4fa178=(_0x1c4b02?this[_0x38eb6f(0xa0e)]:this[_0x38eb6f(0x673)])[_0x38eb6f(0xbc2)](this),_0x3c6601=(_0x1c4b02?this[_0x38eb6f(0x673)]:this[_0x38eb6f(0x770)])[_0x38eb6f(0xbc2)](this);for(let _0x24feea=0x0;_0x24feea<_0x4df7e9;_0x24feea++)for(let _0x51b599=0x0;_0x51b599<_0x126b66;_0x51b599++)_0x51b599<_0x544b02?_0x4ac665[_0x24feea][_0x38eb6f(0x381)](_0x4fa178()):_0x4ac665[_0x24feea][_0x38eb6f(0x381)](_0x3c6601());return _0x4ac665;},_0x43487c[_0x2273f6(0x505)]['parseTupleVariationStoreList']=function(_0x5d67b9,_0x7acc5b,_0x1d4146){const _0x5ced68=_0x2273f6;let _0x342f3e=this[_0x5ced68(0x260)](),_0x3df72c=this[_0x5ced68(0x260)]()&0x1,_0x11941d=this['parseOffset32'](),_0x39443a=(_0x3df72c?this['parseULong']:this['parseUShort'])[_0x5ced68(0xbc2)](this),_0x148acb={},_0xf753ce=_0x39443a();_0x3df72c||(_0xf753ce*=0x2);let _0x1335c8;for(let _0x511065=0x0;_0x511065<_0x342f3e;_0x511065++)_0x1335c8=_0x39443a(),_0x3df72c||(_0x1335c8*=0x2),_0x148acb[_0x511065]=_0x1335c8-_0xf753ce?this[_0x5ced68(0xb82)](_0x11941d+_0xf753ce,_0x5d67b9,_0x7acc5b,_0x1d4146,_0x511065):void 0x0,_0xf753ce=_0x1335c8;return _0x148acb;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xb82)]=function(_0x5c1280,_0x153ffb,_0x197543,_0x4a9c23,_0xe3a3d0){const _0x30c2a3=_0x2273f6;let _0x8662c=this[_0x30c2a3(0x7a9)];this[_0x30c2a3(0x7a9)]=_0x5c1280,_0x197543==='cvar'&&(this[_0x30c2a3(0x7a9)]+=0x4);let _0x2060c0=this[_0x30c2a3(0x260)](),_0x512d4c=!!(_0x2060c0&_0x1f2f59[_0x30c2a3(0x9a0)]),_0x2017f7=_0x2060c0&_0x1f2f59[_0x30c2a3(0x962)],_0x59b173=this[_0x30c2a3(0xa3a)](),_0x342380=[],_0x1d5fbb=[];for(let _0x1c2dc1=0x0;_0x1c2dc1<_0x2017f7;_0x1c2dc1++){let _0x4fca47=this['parseTupleVariationHeader'](_0x153ffb,_0x197543);_0x342380[_0x30c2a3(0x381)](_0x4fca47);}this['relativeOffset']!==_0x5c1280+_0x59b173&&(console[_0x30c2a3(0xc59)]('Unexpected\x20offset\x20after\x20parsing\x20tuple\x20variation\x20headers!\x20Expected\x20'+(_0x5c1280+_0x59b173)+_0x30c2a3(0xb7e)+this['relativeOffset']),this[_0x30c2a3(0x7a9)]=_0x5c1280+_0x59b173),_0x512d4c&&(_0x1d5fbb=this[_0x30c2a3(0x5bf)]());let _0x5cb059=this[_0x30c2a3(0x7a9)];for(let _0x23404b=0x0;_0x23404b<_0x2017f7;_0x23404b++){let _0x1c8d3c=_0x342380[_0x23404b];_0x1c8d3c[_0x30c2a3(0xc2b)]=[],this[_0x30c2a3(0x7a9)]=_0x5cb059,_0x197543===_0x30c2a3(0x7e9)&&!_0x1c8d3c[_0x30c2a3(0x279)]&&console[_0x30c2a3(0xc59)](_0x30c2a3(0x877)),_0x1c8d3c[_0x30c2a3(0x39a)][_0x30c2a3(0x8fb)]&&(_0x1c8d3c[_0x30c2a3(0xc2b)]=this['parsePackedPointNumbers']()),delete _0x1c8d3c[_0x30c2a3(0x39a)];let _0x10033e=this['offset'],_0x271068=this['relativeOffset'],_0x24d241=_0x7cb44f=>{let _0x5b86ac,_0x460389,_0x284057=()=>{const _0x533861=_0x57a5;let _0x225c84=0x0;if(_0x197543===_0x533861(0x4d1)){if(_0x225c84=_0x1c8d3c['privatePoints']['length']||_0x1d5fbb[_0x533861(0xba6)],!_0x225c84){let _0x38cff6=_0x4a9c23[_0x533861(0x2ad)](_0xe3a3d0);_0x38cff6['path'],_0x225c84=_0x38cff6[_0x533861(0x75c)][_0x533861(0xba6)],_0x225c84+=0x4;}}else _0x197543===_0x533861(0x7e9)&&(_0x225c84=_0x4a9c23['length']);this[_0x533861(0x679)]=_0x10033e,this[_0x533861(0x7a9)]=_0x271068,_0x5b86ac=this[_0x533861(0xbd4)](_0x225c84),_0x197543===_0x533861(0x4d1)&&(_0x460389=this['parsePackedDeltas'](_0x225c84));};return{'configurable':!0x0,'get':function(){const _0xb8d6a9=_0x57a5;return _0x5b86ac===void 0x0&&_0x284057(),_0x7cb44f===_0xb8d6a9(0x832)?_0x460389:_0x5b86ac;},'set':function(_0x10ab92){_0x5b86ac===void 0x0&&_0x284057(),_0x7cb44f==='deltasY'?_0x460389=_0x10ab92:_0x5b86ac=_0x10ab92;}};};Object[_0x30c2a3(0x18b)](_0x1c8d3c,'deltas',_0x24d241[_0x30c2a3(0x3f4)](this,'deltas')),_0x197543===_0x30c2a3(0x4d1)&&Object[_0x30c2a3(0x18b)](_0x1c8d3c,'deltasY',_0x24d241[_0x30c2a3(0x3f4)](this,_0x30c2a3(0x832))),_0x5cb059+=_0x1c8d3c['variationDataSize'],delete _0x1c8d3c[_0x30c2a3(0xaf1)];}this[_0x30c2a3(0x7a9)]=_0x8662c;let _0x2f968b={'headers':_0x342380};return _0x2f968b[_0x30c2a3(0xafe)]=_0x1d5fbb,_0x2f968b;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x7a6)]=function(_0x5aed2f,_0x313f7d){const _0x428c5d=_0x2273f6;let _0x10e4a4=this[_0x428c5d(0x260)](),_0x5ec026=this[_0x428c5d(0x260)](),_0x340ce4=!!(_0x5ec026&_0x1f2f59[_0x428c5d(0x905)]),_0x524ca5=!!(_0x5ec026&_0x1f2f59[_0x428c5d(0x553)]),_0x4b76b1=!!(_0x5ec026&_0x1f2f59[_0x428c5d(0x47c)]),_0xaec3f5=_0x340ce4?void 0x0:_0x5ec026&_0x1f2f59[_0x428c5d(0x4fc)],_0x4ae9ea={'variationDataSize':_0x10e4a4,'peakTuple':_0x340ce4?this['parseTupleRecords'](0x1,_0x5aed2f)[0x0]:void 0x0,'intermediateStartTuple':_0x524ca5?this[_0x428c5d(0x64c)](0x1,_0x5aed2f)[0x0]:void 0x0,'intermediateEndTuple':_0x524ca5?this['parseTupleRecords'](0x1,_0x5aed2f)[0x0]:void 0x0,'flags':{'embeddedPeakTuple':_0x340ce4,'intermediateRegion':_0x524ca5,'privatePointNumbers':_0x4b76b1}};return _0x313f7d===_0x428c5d(0x4d1)&&(_0x4ae9ea[_0x428c5d(0x74a)]=_0xaec3f5),_0x4ae9ea;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0x5bf)]=function(){const _0xa71b30=_0x2273f6;let _0x6227c6=this[_0xa71b30(0xc25)](),_0x248299=[],_0x40e882=_0x6227c6;if(_0x6227c6>=0x80){let _0x55fee9=this[_0xa71b30(0xc25)]();_0x40e882=(_0x6227c6&_0x1f2f59[_0xa71b30(0x8f5)])<<0x8|_0x55fee9;}let _0x31d5be=0x0;for(;_0x248299[_0xa71b30(0xba6)]<_0x40e882;){let _0xcaf81f=this[_0xa71b30(0xc25)](),_0x7ef126=!!(_0xcaf81f&_0x1f2f59[_0xa71b30(0xbbd)]),_0x24a45f=(_0xcaf81f&_0x1f2f59[_0xa71b30(0x8f5)])+0x1;for(let _0x370f50=0x0;_0x370f50<_0x24a45f&&_0x248299[_0xa71b30(0xba6)]<_0x40e882;_0x370f50++){let _0x14d53f;_0x14d53f=_0x7ef126?this[_0xa71b30(0x260)]():this['parseByte'](),_0x31d5be+=_0x14d53f,_0x248299[_0xa71b30(0x381)](_0x31d5be);}}return _0x248299;},_0x43487c[_0x2273f6(0x505)][_0x2273f6(0xbd4)]=function(_0x22a445){const _0x55feb4=_0x2273f6;let _0x519e0a=[];for(;_0x519e0a[_0x55feb4(0xba6)]<_0x22a445;){let _0x19fd00=this[_0x55feb4(0xc25)](),_0x264b6f=!!(_0x19fd00&_0x1f2f59[_0x55feb4(0xb45)]),_0x2998df=!!(_0x19fd00&_0x1f2f59['DELTAS_ARE_WORDS']),_0x598990=(_0x19fd00&_0x1f2f59[_0x55feb4(0x578)])+0x1;for(let _0x562714=0x0;_0x562714<_0x598990&&_0x519e0a[_0x55feb4(0xba6)]<_0x22a445;_0x562714++)_0x264b6f?_0x519e0a[_0x55feb4(0x381)](0x0):_0x2998df?_0x519e0a[_0x55feb4(0x381)](this[_0x55feb4(0x673)]()):_0x519e0a[_0x55feb4(0x381)](this[_0x55feb4(0x770)]());}return _0x519e0a;};var _0x4d43da={'getByte':_0x27ffc9,'getCard8':_0x27ffc9,'getUShort':_0x4f123b,'getCard16':_0x4f123b,'getShort':_0x386063,'getUInt24':_0x382510,'getULong':_0x48b19d,'getFixed':_0x4b745a,'getTag':_0x3589a9,'getOffset':_0xfb080,'getBytes':_0x4f07ce,'bytesToString':_0x142f8e,'Parser':_0x43487c},_0x109a42=[_0x2273f6(0xb6e),_0x2273f6(0xb3b),_0x2273f6(0x623),'uniqueID',_0x2273f6(0x117),_0x2273f6(0x250),_0x2273f6(0x29f),_0x2273f6(0x7fd),_0x2273f6(0x89c),_0x2273f6(0x5ab),'description',_0x2273f6(0xc76),'designerURL','license','licenseURL',_0x2273f6(0x696),_0x2273f6(0x61a),_0x2273f6(0x2ac),'compatibleFullName',_0x2273f6(0x9cc),_0x2273f6(0x4a1),'wwsFamily','wwsSubfamily'],_0x24b9e7={0x0:'en',0x1:'fr',0x2:'de',0x3:'it',0x4:'nl',0x5:'sv',0x6:'es',0x7:'da',0x8:'pt',0x9:'no',0xa:'he',0xb:'ja',0xc:'ar',0xd:'fi',0xe:'el',0xf:'is',0x10:'mt',0x11:'tr',0x12:'hr',0x13:_0x2273f6(0xba4),0x14:'ur',0x15:'hi',0x16:'th',0x17:'ko',0x18:'lt',0x19:'pl',0x1a:'hu',0x1b:'es',0x1c:'lv',0x1d:'se',0x1e:'fo',0x1f:'fa',0x20:'ru',0x21:'zh',0x22:_0x2273f6(0x70b),0x23:'ga',0x24:'sq',0x25:'ro',0x26:'cz',0x27:'sk',0x28:'si',0x29:'yi',0x2a:'sr',0x2b:'mk',0x2c:'bg',0x2d:'uk',0x2e:'be',0x2f:'uz',0x30:'kk',0x31:_0x2273f6(0xaed),0x32:_0x2273f6(0x3eb),0x33:'hy',0x34:'ka',0x35:'mo',0x36:'ky',0x37:'tg',0x38:'tk',0x39:_0x2273f6(0x597),0x3a:'mn',0x3b:'ps',0x3c:'ks',0x3d:'ku',0x3e:'sd',0x3f:'bo',0x40:'ne',0x41:'sa',0x42:'mr',0x43:'bn',0x44:'as',0x45:'gu',0x46:'pa',0x47:'or',0x48:'ml',0x49:'kn',0x4a:'ta',0x4b:'te',0x4c:'si',0x4d:'my',0x4e:'km',0x4f:'lo',0x50:'vi',0x51:'id',0x52:'tl',0x53:'ms',0x54:_0x2273f6(0x259),0x55:'am',0x56:'ti',0x57:'om',0x58:'so',0x59:'sw',0x5a:'rw',0x5b:'rn',0x5c:'ny',0x5d:'mg',0x5e:'eo',0x80:'cy',0x81:'eu',0x82:'ca',0x83:'la',0x84:'qu',0x85:'gn',0x86:'ay',0x87:'tt',0x88:'ug',0x89:'dz',0x8a:'jv',0x8b:'su',0x8c:'gl',0x8d:'af',0x8e:'br',0x8f:'iu',0x90:'gd',0x91:'gv',0x92:'ga',0x93:'to',0x94:_0x2273f6(0x8f7),0x95:'kl',0x96:'az',0x97:'nn'},_0x4d766b={0x0:0x0,0x1:0x0,0x2:0x0,0x3:0x0,0x4:0x0,0x5:0x0,0x6:0x0,0x7:0x0,0x8:0x0,0x9:0x0,0xa:0x5,0xb:0x1,0xc:0x4,0xd:0x0,0xe:0x6,0xf:0x0,0x10:0x0,0x11:0x0,0x12:0x0,0x13:0x2,0x14:0x4,0x15:0x9,0x16:0x15,0x17:0x3,0x18:0x1d,0x19:0x1d,0x1a:0x1d,0x1b:0x1d,0x1c:0x1d,0x1d:0x0,0x1e:0x0,0x1f:0x4,0x20:0x7,0x21:0x19,0x22:0x0,0x23:0x0,0x24:0x0,0x25:0x0,0x26:0x1d,0x27:0x1d,0x28:0x0,0x29:0x5,0x2a:0x7,0x2b:0x7,0x2c:0x7,0x2d:0x7,0x2e:0x7,0x2f:0x7,0x30:0x7,0x31:0x7,0x32:0x4,0x33:0x18,0x34:0x17,0x35:0x7,0x36:0x7,0x37:0x7,0x38:0x7,0x39:0x1b,0x3a:0x7,0x3b:0x4,0x3c:0x4,0x3d:0x4,0x3e:0x4,0x3f:0x1a,0x40:0x9,0x41:0x9,0x42:0x9,0x43:0xd,0x44:0xd,0x45:0xb,0x46:0xa,0x47:0xc,0x48:0x11,0x49:0x10,0x4a:0xe,0x4b:0xf,0x4c:0x12,0x4d:0x13,0x4e:0x14,0x4f:0x16,0x50:0x1e,0x51:0x0,0x52:0x0,0x53:0x0,0x54:0x4,0x55:0x1c,0x56:0x1c,0x57:0x1c,0x58:0x0,0x59:0x0,0x5a:0x0,0x5b:0x0,0x5c:0x0,0x5d:0x0,0x5e:0x0,0x80:0x0,0x81:0x0,0x82:0x0,0x83:0x0,0x84:0x0,0x85:0x0,0x86:0x0,0x87:0x7,0x88:0x4,0x89:0x1a,0x8a:0x0,0x8b:0x0,0x8c:0x0,0x8d:0x0,0x8e:0x0,0x8f:0x1c,0x90:0x0,0x91:0x0,0x92:0x0,0x93:0x0,0x94:0x6,0x95:0x0,0x96:0x0,0x97:0x0},_0x43238a={0x436:'af',0x41c:'sq',0x484:'gsw',0x45e:'am',0x1401:_0x2273f6(0x8ae),0x3c01:_0x2273f6(0x753),0xc01:'ar',0x801:_0x2273f6(0x207),0x2c01:_0x2273f6(0x2bd),0x3401:_0x2273f6(0x264),0x3001:'ar-LB',0x1001:_0x2273f6(0x1d2),0x1801:'ary',0x2001:_0x2273f6(0x3c4),0x4001:_0x2273f6(0x1d8),0x401:_0x2273f6(0x96a),0x2801:_0x2273f6(0x718),0x1c01:'aeb',0x3801:_0x2273f6(0x580),0x2401:'ar-YE',0x42b:'hy',0x44d:'as',0x82c:_0x2273f6(0xaed),0x42c:'az',0x46d:'ba',0x42d:'eu',0x423:'be',0x845:'bn',0x445:_0x2273f6(0x852),0x201a:_0x2273f6(0x9fe),0x141a:'bs',0x47e:'br',0x402:'bg',0x403:'ca',0xc04:'zh-HK',0x1404:_0x2273f6(0x43e),0x804:'zh',0x1004:_0x2273f6(0x6af),0x404:'zh-TW',0x483:'co',0x41a:'hr',0x101a:_0x2273f6(0x620),0x405:'cs',0x406:'da',0x48c:_0x2273f6(0x436),0x465:'dv',0x813:'nl-BE',0x413:'nl',0xc09:'en-AU',0x2809:_0x2273f6(0xba8),0x1009:_0x2273f6(0x932),0x2409:_0x2273f6(0x821),0x4009:'en-IN',0x1809:_0x2273f6(0x883),0x2009:'en-JM',0x4409:'en-MY',0x1409:_0x2273f6(0x851),0x3409:_0x2273f6(0x1bf),0x4809:_0x2273f6(0x68d),0x1c09:'en-ZA',0x2c09:_0x2273f6(0x4b0),0x809:_0x2273f6(0x834),0x409:'en',0x3009:'en-ZW',0x425:'et',0x438:'fo',0x464:'fil',0x40b:'fi',0x80c:'fr-BE',0xc0c:_0x2273f6(0x758),0x40c:'fr',0x140c:_0x2273f6(0x619),0x180c:_0x2273f6(0x1ed),0x100c:_0x2273f6(0x2e4),0x462:'fy',0x456:'gl',0x437:'ka',0xc07:_0x2273f6(0x39b),0x407:'de',0x1407:_0x2273f6(0x850),0x1007:_0x2273f6(0xb20),0x807:_0x2273f6(0x787),0x408:'el',0x46f:'kl',0x447:'gu',0x468:'ha',0x40d:'he',0x439:'hi',0x40e:'hu',0x40f:'is',0x470:'ig',0x421:'id',0x45d:'iu',0x85d:_0x2273f6(0x71a),0x83c:'ga',0x434:'xh',0x435:'zu',0x410:'it',0x810:'it-CH',0x411:'ja',0x44b:'kn',0x43f:'kk',0x453:'km',0x486:_0x2273f6(0x6b7),0x487:'rw',0x441:'sw',0x457:_0x2273f6(0x18a),0x412:'ko',0x440:'ky',0x454:'lo',0x426:'lv',0x427:'lt',0x82e:_0x2273f6(0x583),0x46e:'lb',0x42f:'mk',0x83e:_0x2273f6(0x6b1),0x43e:'ms',0x44c:'ml',0x43a:'mt',0x481:'mi',0x47a:_0x2273f6(0xb48),0x44e:'mr',0x47c:_0x2273f6(0xb57),0x450:'mn',0x850:_0x2273f6(0x597),0x461:'ne',0x414:'nb',0x814:'nn',0x482:'oc',0x448:'or',0x463:'ps',0x415:'pl',0x416:'pt',0x816:_0x2273f6(0xae6),0x446:'pa',0x46b:_0x2273f6(0x247),0x86b:'qu-EC',0xc6b:'qu',0x418:'ro',0x417:'rm',0x419:'ru',0x243b:'smn',0x103b:_0x2273f6(0x928),0x143b:_0x2273f6(0x6e5),0xc3b:_0x2273f6(0x2cc),0x43b:'se',0x83b:_0x2273f6(0x473),0x203b:_0x2273f6(0x83f),0x183b:_0x2273f6(0x3ad),0x1c3b:_0x2273f6(0x83f),0x44f:'sa',0x1c1a:_0x2273f6(0x894),0xc1a:'sr',0x181a:_0x2273f6(0x5fe),0x81a:_0x2273f6(0x453),0x46c:'nso',0x432:'tn',0x45b:'si',0x41b:'sk',0x424:'sl',0x2c0a:_0x2273f6(0xb25),0x400a:_0x2273f6(0x6ad),0x340a:_0x2273f6(0x2c4),0x240a:_0x2273f6(0x577),0x140a:_0x2273f6(0x766),0x1c0a:_0x2273f6(0x480),0x300a:'es-EC',0x440a:_0x2273f6(0x3b9),0x100a:_0x2273f6(0x1f8),0x480a:_0x2273f6(0xb04),0x80a:_0x2273f6(0x28a),0x4c0a:_0x2273f6(0xabf),0x180a:'es-PA',0x3c0a:'es-PY',0x280a:_0x2273f6(0x895),0x500a:_0x2273f6(0xb58),0xc0a:'es',0x40a:'es',0x540a:_0x2273f6(0x1d6),0x380a:_0x2273f6(0x9e7),0x200a:'es-VE',0x81d:_0x2273f6(0x438),0x41d:'sv',0x45a:_0x2273f6(0x979),0x428:'tg',0x85f:'tzm',0x449:'ta',0x444:'tt',0x44a:'te',0x41e:'th',0x451:'bo',0x41f:'tr',0x442:'tk',0x480:'ug',0x422:'uk',0x42e:_0x2273f6(0x99b),0x420:'ur',0x843:_0x2273f6(0x203),0x443:'uz',0x42a:'vi',0x452:'cy',0x488:'wo',0x485:_0x2273f6(0x9d5),0x478:'ii',0x46a:'yo'};function _0x16b459(_0x5439c1,_0x367fb4,_0x165312){const _0x1bc001=_0x2273f6;switch(_0x5439c1){case 0x0:if(_0x367fb4===0xffff)return _0x1bc001(0xc52);if(_0x165312)return _0x165312[_0x367fb4];break;case 0x1:return _0x24b9e7[_0x367fb4];case 0x3:return _0x43238a[_0x367fb4];}}var _0x2773eb=_0x2273f6(0xc99),_0x456a3d={0x0:_0x2273f6(0x97c),0x1:_0x2273f6(0xc47),0x2:'x-mac-chinesetrad',0x3:'x-mac-korean',0x6:_0x2273f6(0xca8),0x7:_0x2273f6(0x99c),0x9:'x-mac-devanagai',0xa:_0x2273f6(0x93d),0xb:'x-mac-gujarati',0xc:_0x2273f6(0x289),0xd:'x-mac-bengali',0xe:_0x2273f6(0xc02),0xf:_0x2273f6(0xb8e),0x10:_0x2273f6(0x1ff),0x11:_0x2273f6(0x3a8),0x12:_0x2273f6(0x77d),0x13:'x-mac-burmese',0x14:_0x2273f6(0x9e8),0x15:'x-mac-thai',0x16:_0x2273f6(0x527),0x17:_0x2273f6(0x677),0x18:_0x2273f6(0x742),0x19:_0x2273f6(0x614),0x1a:'x-mac-tibetan',0x1b:_0x2273f6(0xb94),0x1c:'x-mac-ethiopic',0x1d:_0x2273f6(0x6f9),0x1e:'x-mac-vietnamese',0x1f:_0x2273f6(0xa74)},_0x1c4569={0xf:'x-mac-icelandic',0x11:'x-mac-turkish',0x12:_0x2273f6(0xb0d),0x18:_0x2273f6(0x6f9),0x19:_0x2273f6(0x6f9),0x1a:_0x2273f6(0x6f9),0x1b:'x-mac-ce',0x1c:'x-mac-ce',0x1e:'x-mac-icelandic',0x25:_0x2273f6(0xacd),0x26:_0x2273f6(0x6f9),0x27:_0x2273f6(0x6f9),0x28:_0x2273f6(0x6f9),0x8f:'x-mac-inuit',0x92:_0x2273f6(0x54a)};function _0x42c4fe(_0x46c1cb,_0x200e34,_0x38a804){switch(_0x46c1cb){case 0x0:return _0x2773eb;case 0x1:return _0x1c4569[_0x38a804]||_0x456a3d[_0x200e34];case 0x3:if(_0x200e34===0x1||_0x200e34===0xa)return _0x2773eb;break;}}var _0x103781={0x0:_0x2273f6(0x423),0x1:'macintosh',0x2:'reserved',0x3:_0x2273f6(0x95c)};function _0x6f641a(_0x5b4a34){return _0x103781[_0x5b4a34];}function _0x42486f(_0x2b182c,_0x444c6e,_0x1c99cd){const _0x5015a3=_0x2273f6;let _0x649402={},_0x347548=new _0x4d43da[(_0x5015a3(0xb6f))](_0x2b182c,_0x444c6e),_0x4b8f50=_0x347548[_0x5015a3(0x260)](),_0x317edc=_0x347548['parseUShort'](),_0x54e0f4=_0x347548[_0x5015a3(0x679)]+_0x347548[_0x5015a3(0x260)]();for(let _0x16883c=0x0;_0x16883c<_0x317edc;_0x16883c++){let _0xe90cb5=_0x347548[_0x5015a3(0x260)](),_0x23b3db=_0x347548[_0x5015a3(0x260)](),_0x1db417=_0x347548['parseUShort'](),_0x489293=_0x347548[_0x5015a3(0x260)](),_0x424258=_0x109a42[_0x489293]||_0x489293,_0x198367=_0x347548['parseUShort'](),_0x1f7f87=_0x347548[_0x5015a3(0x260)](),_0x4ba39a=_0x16b459(_0xe90cb5,_0x1db417,_0x1c99cd),_0x4ede29=_0x42c4fe(_0xe90cb5,_0x23b3db,_0x1db417),_0x86a6fe=_0x6f641a(_0xe90cb5);if(_0x4ede29!==void 0x0&&_0x4ba39a!==void 0x0&&_0x86a6fe!==void 0x0){let _0x4df092;if(_0x4df092=_0x4ede29===_0x2773eb?_0x4c45b7[_0x5015a3(0x705)](_0x2b182c,_0x54e0f4+_0x1f7f87,_0x198367):_0x4c45b7[_0x5015a3(0x10f)](_0x2b182c,_0x54e0f4+_0x1f7f87,_0x198367,_0x4ede29),_0x4df092){let _0x2e5b1b=_0x649402[_0x86a6fe];_0x2e5b1b===void 0x0&&(_0x2e5b1b=_0x649402[_0x86a6fe]={});let _0x5b1158=_0x2e5b1b[_0x424258];_0x5b1158===void 0x0&&(_0x5b1158=_0x2e5b1b[_0x424258]={}),_0x5b1158[_0x4ba39a]=_0x4df092;}}}return _0x4b8f50===0x1&&_0x347548['parseUShort'](),_0x649402;}function _0x52ee50(_0x2d16c7){let _0x2d0830={};for(let _0x5375a1 in _0x2d16c7)_0x2d0830[_0x2d16c7[_0x5375a1]]=parseInt(_0x5375a1);return _0x2d0830;}function _0xd0867f(_0x2db93c,_0x334c3d,_0xba9f2f,_0x437906,_0x183f10,_0x81e3fc){const _0x166b7d=_0x2273f6;return new _0x14efbe[(_0x166b7d(0x133))](_0x166b7d(0x28f),[{'name':_0x166b7d(0x493),'type':_0x166b7d(0x95d),'value':_0x2db93c},{'name':_0x166b7d(0x346),'type':_0x166b7d(0x95d),'value':_0x334c3d},{'name':'languageID','type':_0x166b7d(0x95d),'value':_0xba9f2f},{'name':_0x166b7d(0x9cb),'type':'USHORT','value':_0x437906},{'name':_0x166b7d(0xba6),'type':_0x166b7d(0x95d),'value':_0x183f10},{'name':_0x166b7d(0x679),'type':'USHORT','value':_0x81e3fc}]);}function _0x53b460(_0x58d816,_0xf4469c){const _0x3b5193=_0x2273f6;let _0x4c85db=_0x58d816[_0x3b5193(0xba6)],_0x1a370f=_0xf4469c[_0x3b5193(0xba6)]-_0x4c85db+0x1;_0x1de217:for(let _0x14abe4=0x0;_0x14abe4<_0x1a370f;_0x14abe4++)for(;_0x14abe4<_0x1a370f;_0x14abe4++){for(let _0x3a52fc=0x0;_0x3a52fc<_0x4c85db;_0x3a52fc++)if(_0xf4469c[_0x14abe4+_0x3a52fc]!==_0x58d816[_0x3a52fc])continue _0x1de217;return _0x14abe4;}return-0x1;}function _0x418036(_0x2bdd3e,_0x118446){const _0x5f0550=_0x2273f6;let _0xf8d59f=_0x53b460(_0x2bdd3e,_0x118446);if(_0xf8d59f<0x0){_0xf8d59f=_0x118446[_0x5f0550(0xba6)];let _0x4065ec=0x0,_0x3e3617=_0x2bdd3e[_0x5f0550(0xba6)];for(;_0x4065ec<_0x3e3617;++_0x4065ec)_0x118446['push'](_0x2bdd3e[_0x4065ec]);}return _0xf8d59f;}function _0x332bc1(_0x84cdf5,_0x1ceead){const _0x30ce19=_0x2273f6;let _0x40dc48=_0x52ee50(_0x103781),_0x45a29b=_0x52ee50(_0x24b9e7),_0x470ad2=_0x52ee50(_0x43238a),_0x236f1b=[],_0x582288=[];for(let _0x3dd6c5 in _0x84cdf5){let _0x3fc346,_0x1de6c5=[],_0xe1dae8={},_0x4a195c=_0x52ee50(_0x109a42),_0x238c16=_0x40dc48[_0x3dd6c5];for(let _0x102ced in _0x84cdf5[_0x3dd6c5]){let _0x120b4b=_0x4a195c[_0x102ced];if(_0x120b4b===void 0x0&&(_0x120b4b=_0x102ced),_0x3fc346=parseInt(_0x120b4b),isNaN(_0x3fc346))throw Error('Name\x20table\x20entry\x20\x22'+_0x102ced+_0x30ce19(0xa81));_0xe1dae8[_0x3fc346]=_0x84cdf5[_0x3dd6c5][_0x102ced],_0x1de6c5['push'](_0x3fc346);}for(let _0x3f086d=0x0;_0x3f086d<_0x1de6c5[_0x30ce19(0xba6)];_0x3f086d++){_0x3fc346=_0x1de6c5[_0x3f086d];let _0x13ff7d=_0xe1dae8[_0x3fc346];for(let _0x3871dc in _0x13ff7d){let _0x31fb85=_0x13ff7d[_0x3871dc];if(_0x238c16===0x1||_0x238c16===0x0){let _0x42a370=_0x45a29b[_0x3871dc],_0x295952=_0x4d766b[_0x42a370],_0x4f6797=_0x42c4fe(_0x238c16,_0x295952,_0x42a370),_0x2e14e=_0x416524[_0x30ce19(0x10f)](_0x31fb85,_0x4f6797);if(_0x238c16===0x0&&(_0x42a370=_0x1ceead[_0x30ce19(0x709)](_0x3871dc),_0x42a370<0x0&&(_0x42a370=_0x1ceead[_0x30ce19(0xba6)],_0x1ceead[_0x30ce19(0x381)](_0x3871dc)),_0x295952=0x4,_0x2e14e=_0x416524[_0x30ce19(0x705)](_0x31fb85)),_0x2e14e!==void 0x0){let _0x3ae895=_0x418036(_0x2e14e,_0x582288);_0x236f1b[_0x30ce19(0x381)](_0xd0867f(_0x238c16,_0x295952,_0x42a370,_0x3fc346,_0x2e14e[_0x30ce19(0xba6)],_0x3ae895));}}if(_0x238c16===0x3){let _0x3cb598=_0x470ad2[_0x3871dc];if(_0x3cb598!==void 0x0){let _0x453a37=_0x416524['UTF16'](_0x31fb85),_0x11c64b=_0x418036(_0x453a37,_0x582288);_0x236f1b[_0x30ce19(0x381)](_0xd0867f(0x3,0x1,_0x3cb598,_0x3fc346,_0x453a37[_0x30ce19(0xba6)],_0x11c64b));}}}}}_0x236f1b[_0x30ce19(0xb29)](function(_0x5d770a,_0x3c742e){const _0x130b32=_0x30ce19;return _0x5d770a[_0x130b32(0x493)]-_0x3c742e[_0x130b32(0x493)]||_0x5d770a[_0x130b32(0x346)]-_0x3c742e[_0x130b32(0x346)]||_0x5d770a[_0x130b32(0x288)]-_0x3c742e[_0x130b32(0x288)]||_0x5d770a[_0x130b32(0x9cb)]-_0x3c742e[_0x130b32(0x9cb)];});let _0x5835bf=new _0x14efbe['Table'](_0x30ce19(0x37a),[{'name':'format','type':_0x30ce19(0x95d),'value':0x0},{'name':_0x30ce19(0x868),'type':_0x30ce19(0x95d),'value':_0x236f1b['length']},{'name':_0x30ce19(0x4a4),'type':_0x30ce19(0x95d),'value':0x6+_0x236f1b[_0x30ce19(0xba6)]*0xc}]);for(let _0x2b4759=0x0;_0x2b4759<_0x236f1b[_0x30ce19(0xba6)];_0x2b4759++)_0x5835bf[_0x30ce19(0x843)][_0x30ce19(0x381)]({'name':'record_'+_0x2b4759,'type':_0x30ce19(0x31b),'value':_0x236f1b[_0x2b4759]});return _0x5835bf[_0x30ce19(0x843)][_0x30ce19(0x381)]({'name':_0x30ce19(0x2b5),'type':_0x30ce19(0x11b),'value':_0x582288}),_0x5835bf;}function _0x2c5ee8(_0x2498cb,_0x2aff9c,_0x3eae51=[]){const _0x28e18f=_0x2273f6;if(_0x2aff9c<0x100&&_0x2aff9c in _0x109a42){if(_0x3eae51[_0x28e18f(0xba6)]&&!_0x3eae51['includes'](parseInt(_0x2aff9c)))return;_0x2aff9c=_0x109a42[_0x2aff9c];}for(let _0x141fa1 in _0x2498cb)for(let _0x13788b in _0x2498cb[_0x141fa1])if(_0x13788b===_0x2aff9c||parseInt(_0x13788b)===_0x2aff9c)return _0x2498cb[_0x141fa1][_0x13788b];}var _0xc2ace={'parse':_0x42486f,'make':_0x332bc1,'getNameByID':_0x2c5ee8};function _0x551273(_0x41ca16,_0x3ba44b,_0x3a1478,_0x389861){const _0x7e30ae=_0x2273f6;_0x41ca16[_0x7e30ae(0xba6)]=_0x3ba44b[_0x7e30ae(0x260)](),_0x41ca16[_0x7e30ae(0x370)]=_0x3ba44b[_0x7e30ae(0x260)]()-0x1;let _0x2edfe0=_0x3ba44b[_0x7e30ae(0xbe6)](_0x41ca16[_0x7e30ae(0xba6)]),_0x5707c2=Object[_0x7e30ae(0x4ac)]({},_0x2edfe0),_0x49281c=_0x48bde1[_0x42c4fe(_0x3a1478,_0x389861,_0x41ca16[_0x7e30ae(0x370)])];for(let _0x33c2d7=0x0;_0x33c2d7<_0x49281c['length'];_0x33c2d7++)_0x5707c2[_0x49281c[_0x7e30ae(0x3f1)](_0x33c2d7)]=_0x2edfe0[0x80+_0x33c2d7];_0x41ca16[_0x7e30ae(0x1a7)]=_0x5707c2;}function _0x3b313d(_0x45409a,_0x415638,_0x3ad2c7){const _0x21d37f=_0x2273f6;_0x415638['parseUShort'](),_0x45409a[_0x21d37f(0xba6)]=_0x415638['parseULong'](),_0x45409a[_0x21d37f(0x370)]=_0x415638['parseULong']();let _0x21105a;_0x45409a['groupCount']=_0x21105a=_0x415638[_0x21d37f(0x398)](),_0x45409a[_0x21d37f(0x1a7)]={};for(let _0x258aed=0x0;_0x258aed<_0x21105a;_0x258aed+=0x1){let _0x5bb8b0=_0x415638[_0x21d37f(0x398)](),_0x30f833=_0x415638[_0x21d37f(0x398)](),_0x4970ec=_0x415638['parseULong']();for(let _0x2d45b1=_0x5bb8b0;_0x2d45b1<=_0x30f833;_0x2d45b1+=0x1)_0x45409a['glyphIndexMap'][_0x2d45b1]=_0x4970ec,_0x3ad2c7===0xc&&_0x4970ec++;}}function _0x497221(_0x35a43f,_0x1b150f,_0x3efcca,_0x5dc589,_0xf1efc7){const _0x26da7a=_0x2273f6;_0x35a43f[_0x26da7a(0xba6)]=_0x1b150f[_0x26da7a(0x260)](),_0x35a43f[_0x26da7a(0x370)]=_0x1b150f[_0x26da7a(0x260)]();let _0x342eff;_0x35a43f[_0x26da7a(0x69d)]=_0x342eff=_0x1b150f[_0x26da7a(0x260)]()>>0x1,_0x1b150f[_0x26da7a(0x2b6)](_0x26da7a(0x678),0x3),_0x35a43f['glyphIndexMap']={};let _0x3757eb=new _0x4d43da[(_0x26da7a(0xb6f))](_0x3efcca,_0x5dc589+_0xf1efc7+0xe),_0xfaebc7=new _0x4d43da['Parser'](_0x3efcca,_0x5dc589+_0xf1efc7+0x10+_0x342eff*0x2),_0x3df48b=new _0x4d43da[(_0x26da7a(0xb6f))](_0x3efcca,_0x5dc589+_0xf1efc7+0x10+_0x342eff*0x4),_0x4fe8b6=new _0x4d43da[(_0x26da7a(0xb6f))](_0x3efcca,_0x5dc589+_0xf1efc7+0x10+_0x342eff*0x6),_0x4cc1b=_0x5dc589+_0xf1efc7+0x10+_0x342eff*0x8;for(let _0x6ceefc=0x0;_0x6ceefc<_0x342eff-0x1;_0x6ceefc+=0x1){let _0x457001,_0x22be59=_0x3757eb['parseUShort'](),_0x3d5782=_0xfaebc7[_0x26da7a(0x260)](),_0x33ce34=_0x3df48b[_0x26da7a(0x673)](),_0x3394a1=_0x4fe8b6[_0x26da7a(0x260)]();for(let _0x24d653=_0x3d5782;_0x24d653<=_0x22be59;_0x24d653+=0x1)_0x3394a1===0x0?_0x457001=_0x24d653+_0x33ce34&0xffff:(_0x4cc1b=_0x4fe8b6[_0x26da7a(0x679)]+_0x4fe8b6[_0x26da7a(0x7a9)]-0x2,_0x4cc1b+=_0x3394a1,_0x4cc1b+=(_0x24d653-_0x3d5782)*0x2,_0x457001=_0x4d43da[_0x26da7a(0x26c)](_0x3efcca,_0x4cc1b),_0x457001!==0x0&&(_0x457001=_0x457001+_0x33ce34&0xffff)),_0x35a43f[_0x26da7a(0x1a7)][_0x24d653]=_0x457001;}}function _0x24a7ed(_0x365835,_0x325a3e){const _0x5d065a=_0x2273f6;let _0xaa8ab1={};_0x325a3e['skip'](_0x5d065a(0xb0b));let _0x2eb4d1=_0x325a3e[_0x5d065a(0x398)]();for(let _0x562280=0x0;_0x562280<_0x2eb4d1;_0x562280+=0x1){let _0x4e1392=_0x325a3e[_0x5d065a(0x6d4)](),_0x4526b4={'varSelector':_0x4e1392},_0x506ba6=_0x325a3e[_0x5d065a(0x562)](),_0x355eaa=_0x325a3e[_0x5d065a(0x562)](),_0x31324=_0x325a3e['relativeOffset'];_0x506ba6&&(_0x325a3e['relativeOffset']=_0x506ba6,_0x4526b4[_0x5d065a(0xaa6)]=_0x325a3e[_0x5d065a(0x1a9)]({'ranges':function(){const _0x48e42d=_0x5d065a;return _0x325a3e['parseRecordList32']({'startUnicodeValue':_0x325a3e[_0x48e42d(0x6d4)],'additionalCount':_0x325a3e[_0x48e42d(0xc25)]});}})),_0x355eaa&&(_0x325a3e[_0x5d065a(0x7a9)]=_0x355eaa,_0x4526b4[_0x5d065a(0x2da)]=_0x325a3e[_0x5d065a(0x1a9)]({'uvsMappings':function(){const _0x2eb81e=_0x5d065a;let _0x9341b7={},_0x2e7960=_0x325a3e['parseRecordList32']({'unicodeValue':_0x325a3e[_0x2eb81e(0x6d4)],'glyphID':_0x325a3e[_0x2eb81e(0x260)]});for(let _0x3c1547=0x0;_0x3c1547<_0x2e7960[_0x2eb81e(0xba6)];_0x3c1547+=0x1)_0x9341b7[_0x2e7960[_0x3c1547][_0x2eb81e(0x6a7)]]=_0x2e7960[_0x3c1547];return _0x9341b7;}})),_0xaa8ab1[_0x4e1392]=_0x4526b4,_0x325a3e[_0x5d065a(0x7a9)]=_0x31324;}_0x365835[_0x5d065a(0x186)]=_0xaa8ab1;}function _0x3fe804(_0x3d5543,_0x2d48ed){const _0x4c2ddd=_0x2273f6;let _0x1b80c4={};_0x1b80c4[_0x4c2ddd(0x250)]=_0x4d43da[_0x4c2ddd(0x26c)](_0x3d5543,_0x2d48ed),_0x95cc0['argument'](_0x1b80c4[_0x4c2ddd(0x250)]===0x0,'cmap\x20table\x20version\x20should\x20be\x200.'),_0x1b80c4[_0x4c2ddd(0x1e3)]=_0x4d43da[_0x4c2ddd(0x26c)](_0x3d5543,_0x2d48ed+0x2);let _0x4cb502=null,_0x5e320f=-0x1,_0x539137=-0x1,_0x2f14bb=null,_0x2a5140=null,_0x1ff5e3=[0x0,0x1,0x2,0x3,0x4,0x6],_0x170643=[0x0,0x1,0xa];for(let _0x21eb46=_0x1b80c4[_0x4c2ddd(0x1e3)]-0x1;_0x21eb46>=0x0;--_0x21eb46)if(_0x2f14bb=_0x4d43da['getUShort'](_0x3d5543,_0x2d48ed+0x4+_0x21eb46*0x8),_0x2a5140=_0x4d43da[_0x4c2ddd(0x26c)](_0x3d5543,_0x2d48ed+0x4+_0x21eb46*0x8+0x2),_0x2f14bb===0x3&&_0x170643[_0x4c2ddd(0x8a8)](_0x2a5140)||_0x2f14bb===0x0&&_0x1ff5e3[_0x4c2ddd(0x8a8)](_0x2a5140)||_0x2f14bb===0x1&&_0x2a5140===0x0){if(_0x539137>0x0)continue;if(_0x539137=_0x4d43da[_0x4c2ddd(0x2f7)](_0x3d5543,_0x2d48ed+0x4+_0x21eb46*0x8+0x4),_0x4cb502)break;}else{if(_0x2f14bb===0x0&&_0x2a5140===0x5){if(_0x5e320f=_0x4d43da[_0x4c2ddd(0x2f7)](_0x3d5543,_0x2d48ed+0x4+_0x21eb46*0x8+0x4),_0x4cb502=new _0x4d43da[(_0x4c2ddd(0xb6f))](_0x3d5543,_0x2d48ed+_0x5e320f),_0x4cb502['parseUShort']()!==0xe)_0x5e320f=-0x1,_0x4cb502=null;else{if(_0x539137>0x0)break;}}}if(_0x539137===-0x1)throw Error('No\x20valid\x20cmap\x20sub-tables\x20found.');let _0x3cc6a6=new _0x4d43da[(_0x4c2ddd(0xb6f))](_0x3d5543,_0x2d48ed+_0x539137);if(_0x1b80c4[_0x4c2ddd(0xc00)]=_0x3cc6a6[_0x4c2ddd(0x260)](),_0x1b80c4[_0x4c2ddd(0xc00)]===0x0)_0x551273(_0x1b80c4,_0x3cc6a6,_0x2f14bb,_0x2a5140);else{if(_0x1b80c4[_0x4c2ddd(0xc00)]===0xc||_0x1b80c4[_0x4c2ddd(0xc00)]===0xd)_0x3b313d(_0x1b80c4,_0x3cc6a6,_0x1b80c4[_0x4c2ddd(0xc00)]);else{if(_0x1b80c4['format']===0x4)_0x497221(_0x1b80c4,_0x3cc6a6,_0x3d5543,_0x2d48ed,_0x539137);else throw Error('Only\x20format\x200\x20(platformId\x201,\x20encodingId\x200),\x204,\x2012\x20and\x2014\x20cmap\x20tables\x20are\x20supported\x20(found\x20format\x20'+_0x1b80c4[_0x4c2ddd(0xc00)]+',\x20platformId\x20'+_0x2f14bb+_0x4c2ddd(0x285)+_0x2a5140+').');}}return _0x4cb502&&_0x24a7ed(_0x1b80c4,_0x4cb502),_0x1b80c4;}function _0x123412(_0x6f01ac,_0x2c08af,_0x57edfa){const _0x5e7272=_0x2273f6;_0x6f01ac[_0x5e7272(0x52e)][_0x5e7272(0x381)]({'end':_0x2c08af,'start':_0x2c08af,'delta':-(_0x2c08af-_0x57edfa),'offset':0x0,'glyphIndex':_0x57edfa});}function _0x480bf8(_0x3901f8){const _0x2a9cd7=_0x2273f6;_0x3901f8[_0x2a9cd7(0x52e)][_0x2a9cd7(0x381)]({'end':0xffff,'start':0xffff,'delta':0x1,'offset':0x0});}function _0x107905(_0x44104c){const _0x3aaced=_0x2273f6;if(_0x44104c[_0x3aaced(0xba6)]===0x0)return _0x44104c;let _0x1ef8bf=[_0x44104c[0x0]];for(let _0xb7301e=0x1;_0xb7301e<_0x44104c['length'];_0xb7301e++){let _0x3ce47e=_0x1ef8bf[_0x1ef8bf[_0x3aaced(0xba6)]-0x1],_0x3d8b45=_0x44104c[_0xb7301e];_0x3ce47e[_0x3aaced(0x392)]+0x1===_0x3d8b45[_0x3aaced(0x3c1)]&&_0x3ce47e[_0x3aaced(0x61d)]===_0x3d8b45[_0x3aaced(0x61d)]&&_0x3d8b45[_0x3aaced(0x392)]!==0xffff?_0x3ce47e['end']=_0x3d8b45[_0x3aaced(0x392)]:_0x1ef8bf[_0x3aaced(0x381)](_0x3d8b45);}return _0x1ef8bf;}function _0xc9a6f(_0xc4e04f){const _0x96e2a8=_0x2273f6;let _0x10ccb1=!0x0,_0x62d899;for(_0x62d899=_0xc4e04f[_0x96e2a8(0xba6)]-0x1;_0x62d899>0x0;--_0x62d899)if(_0xc4e04f['get'](_0x62d899)[_0x96e2a8(0x423)]>0xffff){_0x10ccb1=!0x1;break;}let _0x3d087a=[{'name':_0x96e2a8(0x250),'type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0x1e3),'type':_0x96e2a8(0x95d),'value':_0x10ccb1?0x1:0x2},{'name':_0x96e2a8(0x493),'type':_0x96e2a8(0x95d),'value':0x3},{'name':'encodingID','type':_0x96e2a8(0x95d),'value':0x1},{'name':_0x96e2a8(0x679),'type':'ULONG','value':_0x10ccb1?0xc:0x14}];_0x10ccb1||_0x3d087a[_0x96e2a8(0x381)]({'name':'cmap12PlatformID','type':_0x96e2a8(0x95d),'value':0x3},{'name':_0x96e2a8(0x20d),'type':_0x96e2a8(0x95d),'value':0xa},{'name':_0x96e2a8(0xb18),'type':_0x96e2a8(0xc90),'value':0x0}),_0x3d087a[_0x96e2a8(0x381)]({'name':_0x96e2a8(0xc00),'type':_0x96e2a8(0x95d),'value':0x4},{'name':_0x96e2a8(0x6d9),'type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0x370),'type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0x31d),'type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0xb00),'type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0x9a5),'type':'USHORT','value':0x0},{'name':_0x96e2a8(0x6c9),'type':'USHORT','value':0x0});let _0x264299=new _0x14efbe[(_0x96e2a8(0x547))](_0x96e2a8(0x28e),_0x3d087a);for(_0x264299[_0x96e2a8(0x52e)]=[],_0x62d899=0x0;_0x62d899<_0xc4e04f[_0x96e2a8(0xba6)];_0x62d899+=0x1){let _0x5e7eac=_0xc4e04f[_0x96e2a8(0x2ad)](_0x62d899);for(let _0x214a7c=0x0;_0x214a7c<_0x5e7eac[_0x96e2a8(0xbc0)]['length'];_0x214a7c+=0x1)_0x123412(_0x264299,_0x5e7eac[_0x96e2a8(0xbc0)][_0x214a7c],_0x62d899);}_0x264299[_0x96e2a8(0x52e)][_0x96e2a8(0xb29)](function(_0x529072,_0x287bdf){const _0x1c6c1d=_0x96e2a8;return _0x529072['start']-_0x287bdf[_0x1c6c1d(0x3c1)];}),_0x264299['segments']=_0x107905(_0x264299[_0x96e2a8(0x52e)]),_0x480bf8(_0x264299);let _0x4a6dfe=_0x264299[_0x96e2a8(0x52e)][_0x96e2a8(0xba6)],_0x16ad2a=0x0,_0x505b23=[],_0x393b99=[],_0x258209=[],_0x5f8049=[],_0xba1d52=[],_0x441e4e=[];for(_0x62d899=0x0;_0x62d899<_0x4a6dfe;_0x62d899+=0x1){let _0x49cab6=_0x264299['segments'][_0x62d899];_0x49cab6[_0x96e2a8(0x392)]<=0xffff&&_0x49cab6[_0x96e2a8(0x3c1)]<=0xffff?(_0x505b23[_0x96e2a8(0x381)]({'name':_0x96e2a8(0xaf8)+_0x62d899,'type':'USHORT','value':_0x49cab6[_0x96e2a8(0x392)]}),_0x393b99[_0x96e2a8(0x381)]({'name':'start_'+_0x62d899,'type':_0x96e2a8(0x95d),'value':_0x49cab6[_0x96e2a8(0x3c1)]}),_0x258209[_0x96e2a8(0x381)]({'name':'idDelta_'+_0x62d899,'type':'SHORT','value':_0x49cab6[_0x96e2a8(0x61d)]}),_0x5f8049['push']({'name':_0x96e2a8(0x801)+_0x62d899,'type':_0x96e2a8(0x95d),'value':_0x49cab6[_0x96e2a8(0x679)]}),_0x49cab6[_0x96e2a8(0x991)]!==void 0x0&&_0xba1d52[_0x96e2a8(0x381)]({'name':_0x96e2a8(0x8a5)+_0x62d899,'type':_0x96e2a8(0x95d),'value':_0x49cab6['glyphId']})):_0x16ad2a+=0x1,!_0x10ccb1&&_0x49cab6[_0x96e2a8(0x3dd)]!==void 0x0&&(_0x441e4e[_0x96e2a8(0x381)]({'name':_0x96e2a8(0x1a0)+_0x62d899,'type':_0x96e2a8(0xc90),'value':_0x49cab6[_0x96e2a8(0x3c1)]}),_0x441e4e[_0x96e2a8(0x381)]({'name':_0x96e2a8(0xb9a)+_0x62d899,'type':'ULONG','value':_0x49cab6[_0x96e2a8(0x392)]}),_0x441e4e[_0x96e2a8(0x381)]({'name':'cmap12Glyph_'+_0x62d899,'type':_0x96e2a8(0xc90),'value':_0x49cab6[_0x96e2a8(0x3dd)]}));}_0x264299[_0x96e2a8(0x31d)]=(_0x4a6dfe-_0x16ad2a)*0x2,_0x264299[_0x96e2a8(0xb00)]=0x2**Math['floor'](Math[_0x96e2a8(0x9ff)](_0x4a6dfe-_0x16ad2a)/Math[_0x96e2a8(0x9ff)](0x2))*0x2,_0x264299[_0x96e2a8(0x9a5)]=Math['log'](_0x264299[_0x96e2a8(0xb00)]/0x2)/Math['log'](0x2),_0x264299[_0x96e2a8(0x6c9)]=_0x264299[_0x96e2a8(0x31d)]-_0x264299[_0x96e2a8(0xb00)];for(let _0x3bd763=0x0;_0x3bd763<_0x505b23[_0x96e2a8(0xba6)];_0x3bd763++)_0x264299[_0x96e2a8(0x843)][_0x96e2a8(0x381)](_0x505b23[_0x3bd763]);_0x264299['fields'][_0x96e2a8(0x381)]({'name':_0x96e2a8(0x3d9),'type':_0x96e2a8(0x95d),'value':0x0});for(let _0x307ffe=0x0;_0x307ffe<_0x393b99[_0x96e2a8(0xba6)];_0x307ffe++)_0x264299['fields']['push'](_0x393b99[_0x307ffe]);for(let _0x1934f0=0x0;_0x1934f0<_0x258209[_0x96e2a8(0xba6)];_0x1934f0++)_0x264299[_0x96e2a8(0x843)][_0x96e2a8(0x381)](_0x258209[_0x1934f0]);for(let _0x405998=0x0;_0x405998<_0x5f8049[_0x96e2a8(0xba6)];_0x405998++)_0x264299['fields'][_0x96e2a8(0x381)](_0x5f8049[_0x405998]);for(let _0x4dfdbe=0x0;_0x4dfdbe<_0xba1d52[_0x96e2a8(0xba6)];_0x4dfdbe++)_0x264299[_0x96e2a8(0x843)][_0x96e2a8(0x381)](_0xba1d52[_0x4dfdbe]);if(_0x264299[_0x96e2a8(0x6d9)]=0xe+_0x505b23[_0x96e2a8(0xba6)]*0x2+0x2+_0x393b99[_0x96e2a8(0xba6)]*0x2+_0x258209[_0x96e2a8(0xba6)]*0x2+_0x5f8049[_0x96e2a8(0xba6)]*0x2+_0xba1d52[_0x96e2a8(0xba6)]*0x2,!_0x10ccb1){let _0x55122b=0x10+_0x441e4e[_0x96e2a8(0xba6)]*0x4;_0x264299[_0x96e2a8(0xb18)]=0x14+_0x264299['cmap4Length'],_0x264299[_0x96e2a8(0x843)][_0x96e2a8(0x381)]({'name':'cmap12Format','type':'USHORT','value':0xc},{'name':'cmap12Reserved','type':_0x96e2a8(0x95d),'value':0x0},{'name':_0x96e2a8(0xa7f),'type':_0x96e2a8(0xc90),'value':_0x55122b},{'name':_0x96e2a8(0x90b),'type':'ULONG','value':0x0},{'name':_0x96e2a8(0x134),'type':'ULONG','value':_0x441e4e[_0x96e2a8(0xba6)]/0x3});for(let _0x1f8f9a=0x0;_0x1f8f9a<_0x441e4e['length'];_0x1f8f9a++)_0x264299[_0x96e2a8(0x843)][_0x96e2a8(0x381)](_0x441e4e[_0x1f8f9a]);}return _0x264299;}var _0x2f2956={'parse':_0x3fe804,'make':_0xc9a6f},_0x18ee02=_0x2273f6(0x590)[_0x2273f6(0x3ba)](','),_0x45c28e=_0x2273f6(0x5c2)[_0x2273f6(0x3ba)](','),_0x309bed=_0x2273f6(0x716)[_0x2273f6(0x3ba)](','),_0x2f0abf=_0x2273f6(0x4ed)[_0x2273f6(0x3ba)](','),_0x495436=_0x2273f6(0xa9d)['split']('.'),_0x28eec1=_0x2273f6(0x127)[_0x2273f6(0x3ba)]('.'),_0x115450=_0x2273f6(0x9de)[_0x2273f6(0x3ba)](',');function _0x1ada5e(_0x513e84){const _0x31806c=_0x2273f6;this[_0x31806c(0x7da)]=_0x513e84;}_0x1ada5e['prototype'][_0x2273f6(0x3a7)]=function(_0x293517){const _0x2d4449=_0x2273f6;let _0x1830e4=_0x293517[_0x2d4449(0x449)](0x0),_0x1a12e5=this[_0x2d4449(0x7da)][_0x2d4449(0x70a)];if(_0x1a12e5)for(let _0x32bf31=0x0;_0x32bf31<_0x1a12e5[_0x2d4449(0xba6)];_0x32bf31+=0x1){let _0x260de0=_0x1a12e5['get'](_0x32bf31);for(let _0x560a00=0x0;_0x560a00<_0x260de0['unicodes'][_0x2d4449(0xba6)];_0x560a00+=0x1)if(_0x260de0[_0x2d4449(0xbc0)][_0x560a00]===_0x1830e4)return _0x32bf31;}return null;};function _0xb4bad6(_0x3565b2){this['cmap']=_0x3565b2;}_0xb4bad6[_0x2273f6(0x505)]['charToGlyphIndex']=function(_0x19dcbb){const _0x32d548=_0x2273f6;return this[_0x32d548(0x28e)]['glyphIndexMap'][_0x19dcbb['codePointAt'](0x0)]||0x0;};function _0x3d730e(_0x5265e,_0x3f5157){const _0x47b14e=_0x2273f6;this['encoding']=_0x5265e,this[_0x47b14e(0x863)]=_0x3f5157;}_0x3d730e['prototype'][_0x2273f6(0x3a7)]=function(_0x49fdb4){const _0xf31595=_0x2273f6;let _0x5897cf=_0x49fdb4[_0xf31595(0x449)](0x0),_0x1a46fc=this['encoding'][_0x5897cf];return this[_0xf31595(0x863)][_0xf31595(0x709)](_0x1a46fc);};function _0x585723(_0x2f678c){const _0x21289e=_0x2273f6;switch(_0x2f678c[_0x21289e(0x250)]){case 0x1:this['names']=_0x115450[_0x21289e(0x688)]();break;case 0x2:this[_0x21289e(0xb8f)]=Array(_0x2f678c[_0x21289e(0x4e9)]);for(let _0x52b622=0x0;_0x52b622<_0x2f678c['numberOfGlyphs'];_0x52b622++)_0x2f678c[_0x21289e(0x7f1)][_0x52b622]<_0x115450[_0x21289e(0xba6)]?this[_0x21289e(0xb8f)][_0x52b622]=_0x115450[_0x2f678c[_0x21289e(0x7f1)][_0x52b622]]:this[_0x21289e(0xb8f)][_0x52b622]=_0x2f678c[_0x21289e(0xb8f)][_0x2f678c[_0x21289e(0x7f1)][_0x52b622]-_0x115450[_0x21289e(0xba6)]];break;case 2.5:this['names']=Array(_0x2f678c[_0x21289e(0x4e9)]);for(let _0x333483=0x0;_0x333483<_0x2f678c['numberOfGlyphs'];_0x333483++)this['names'][_0x333483]=_0x115450[_0x333483+_0x2f678c[_0x21289e(0x7f1)][_0x333483]];break;case 0x3:this[_0x21289e(0xb8f)]=[];break;default:this[_0x21289e(0xb8f)]=[];break;}}_0x585723[_0x2273f6(0x505)][_0x2273f6(0x955)]=function(_0x5e67cf){const _0x45ca4c=_0x2273f6;return this[_0x45ca4c(0xb8f)][_0x45ca4c(0x709)](_0x5e67cf);},_0x585723[_0x2273f6(0x505)]['glyphIndexToName']=function(_0x95e1cc){const _0x26c7d2=_0x2273f6;return this[_0x26c7d2(0xb8f)][_0x95e1cc];};function _0x134fc7(_0x25595c){const _0xfee598=_0x2273f6;let _0x5a7e96,_0x5cddc5=_0x25595c['tables'][_0xfee598(0x28e)][_0xfee598(0x1a7)],_0xb8c5b9=Object[_0xfee598(0x3ed)](_0x5cddc5);for(let _0x56d0b8=0x0;_0x56d0b8<_0xb8c5b9[_0xfee598(0xba6)];_0x56d0b8+=0x1){let _0xef5a1b=_0xb8c5b9[_0x56d0b8],_0x194a44=_0x5cddc5[_0xef5a1b];_0x5a7e96=_0x25595c[_0xfee598(0x70a)][_0xfee598(0x2ad)](_0x194a44),_0x5a7e96['addUnicode'](parseInt(_0xef5a1b));}for(let _0x326a1e=0x0;_0x326a1e<_0x25595c['glyphs'][_0xfee598(0xba6)];_0x326a1e+=0x1)_0x5a7e96=_0x25595c[_0xfee598(0x70a)][_0xfee598(0x2ad)](_0x326a1e),_0x25595c['cffEncoding']?_0x5a7e96['name']=_0x25595c[_0xfee598(0x533)]['charset'][_0x326a1e]:_0x25595c[_0xfee598(0x20b)][_0xfee598(0xb8f)]&&(_0x5a7e96[_0xfee598(0x37a)]=_0x25595c[_0xfee598(0x20b)][_0xfee598(0x97a)](_0x326a1e));}function _0x21de22(_0x3c1a76){const _0x2ce212=_0x2273f6;_0x3c1a76[_0x2ce212(0x1c9)]={};let _0x42ae13=_0x3c1a76[_0x2ce212(0x796)]['cmap']['glyphIndexMap'],_0x50e55e=Object['keys'](_0x42ae13);for(let _0x5418f8=0x0;_0x5418f8<_0x50e55e[_0x2ce212(0xba6)];_0x5418f8+=0x1){let _0x174a1b=_0x50e55e[_0x5418f8],_0x423c83=_0x42ae13[_0x174a1b];_0x3c1a76[_0x2ce212(0x1c9)][_0x423c83]===void 0x0?_0x3c1a76[_0x2ce212(0x1c9)][_0x423c83]={'unicodes':[parseInt(_0x174a1b)]}:_0x3c1a76['_IndexToUnicodeMap'][_0x423c83][_0x2ce212(0xbc0)]['push'](parseInt(_0x174a1b));}}function _0x526fc9(_0x17b969,_0x15b16e){const _0x305726=_0x2273f6;_0x15b16e[_0x305726(0x7cb)]?_0x21de22(_0x17b969):_0x134fc7(_0x17b969);}function _0x170f19(_0x52c72a,_0x4032c1,_0x1b4440,_0x5b712f,_0x5c5801){const _0x1f191e=_0x2273f6;_0x52c72a[_0x1f191e(0x995)](),_0x52c72a[_0x1f191e(0x80a)](_0x4032c1,_0x1b4440),_0x52c72a[_0x1f191e(0x5be)](_0x5b712f,_0x5c5801),_0x52c72a[_0x1f191e(0xa25)]();}var _0x141ad4={'line':_0x170f19};function _0x12fa23(_0x464219,_0x2df6a2){const _0x53ac32=_0x2273f6;let _0x2bea37=new _0x43487c(_0x464219,_0x2df6a2),_0x2cb7b5=_0x2bea37['parseShort']();_0x2cb7b5!==0x0&&console[_0x53ac32(0xc59)](_0x53ac32(0x87c));let _0x3dd429=_0x2bea37['parseShort'](),_0x4968dc=_0x2bea37[_0x53ac32(0x673)](),_0x1d193a=_0x2bea37[_0x53ac32(0x673)](),_0x16be25=_0x2bea37[_0x53ac32(0x562)](),_0x49a133=_0x2bea37[_0x53ac32(0x153)](_0x4968dc);_0x2bea37[_0x53ac32(0x7a9)]=_0x16be25;let _0x204033=_0x2bea37[_0x53ac32(0x420)](_0x1d193a);return _0x2bea37[_0x53ac32(0x7a9)]=_0x16be25,{'version':_0x2cb7b5,'numPaletteEntries':_0x3dd429,'colorRecords':_0x204033,'colorRecordIndices':_0x49a133};}function _0x111537({version:_0x255a0a=0x0,numPaletteEntries:_0x45b410=0x0,colorRecords:_0x40f37a=[],colorRecordIndices:_0x554b4b=[0x0]}){const _0x416964=_0x2273f6;return _0x95cc0[_0x416964(0x8e5)](_0x255a0a===0x0,_0x416964(0x56b)),_0x95cc0['argument'](_0x40f37a[_0x416964(0xba6)],_0x416964(0x856)),_0x95cc0[_0x416964(0x8e5)](_0x554b4b[_0x416964(0xba6)],_0x416964(0x4d8)),_0x554b4b[_0x416964(0xba6)]>0x1&&_0x95cc0[_0x416964(0x8e5)](_0x45b410,_0x416964(0x55b)),new _0x14efbe[(_0x416964(0x547))](_0x416964(0x6c0),[{'name':_0x416964(0x250),'type':_0x416964(0x95d),'value':_0x255a0a},{'name':_0x416964(0x4f8),'type':_0x416964(0x95d),'value':_0x45b410||_0x40f37a[_0x416964(0xba6)]},{'name':'numPalettes','type':_0x416964(0x95d),'value':_0x554b4b[_0x416964(0xba6)]},{'name':_0x416964(0x76a),'type':_0x416964(0x95d),'value':_0x40f37a[_0x416964(0xba6)]},{'name':'colorRecordsArrayOffset','type':'ULONG','value':0xc+0x2*_0x554b4b[_0x416964(0xba6)]},..._0x554b4b[_0x416964(0xb06)]((_0x308905,_0x10f5a2)=>({'name':_0x416964(0xbc4)+_0x10f5a2,'type':_0x416964(0x95d),'value':_0x308905})),..._0x40f37a[_0x416964(0xb06)]((_0x1f7179,_0x1cada1)=>({'name':_0x416964(0x190)+_0x1cada1,'type':_0x416964(0xc90),'value':_0x1f7179}))]);}function _0x41d993(_0x569b32){var _0x3ca6d8=(_0x569b32&0xff000000)>>0x18,_0x16bf63=(_0x569b32&0xff0000)>>0x10,_0x248da9=(_0x569b32&0xff00)>>0x8,_0x28d388=_0x569b32&0xff;return _0x3ca6d8=_0x3ca6d8+0x100&0xff,_0x16bf63=_0x16bf63+0x100&0xff,_0x248da9=_0x248da9+0x100&0xff,_0x28d388=(_0x28d388+0x100&0xff)/0xff,{'b':_0x3ca6d8,'g':_0x16bf63,'r':_0x248da9,'a':_0x28d388};}function _0x3d464b(_0x1f91ad,_0x4f289e,_0x39925c=0x0,_0x40ea75='hexa'){const _0x3cff57=_0x2273f6;if(_0x4f289e==0xffff)return _0x3cff57(0x19a);let _0xe83e80=_0x1f91ad&&_0x1f91ad['tables']&&_0x1f91ad[_0x3cff57(0x796)][_0x3cff57(0xb74)];if(!_0xe83e80)return _0x3cff57(0x19a);if(_0x39925c>_0xe83e80[_0x3cff57(0xbf7)][_0x3cff57(0xba6)]-0x1)throw Error('Palette\x20index\x20out\x20of\x20range\x20(colorRecordIndices.length:\x20'+_0xe83e80['colorRecordIndices'][_0x3cff57(0xba6)]+_0x3cff57(0x5f9)+_0x4f289e+')');if(_0x4f289e>_0xe83e80[_0x3cff57(0x4f8)])throw Error(_0x3cff57(0x5f4)+_0xe83e80['numPaletteEntries']+_0x3cff57(0x5f9)+_0x4f289e+')');let _0x2a87d4=_0xe83e80[_0x3cff57(0xbf7)][_0x39925c]+_0x4f289e;if(_0x2a87d4>_0xe83e80[_0x3cff57(0x93a)])throw Error(_0x3cff57(0x4e8)+_0xe83e80[_0x3cff57(0x93a)][_0x3cff57(0xba6)]+_0x3cff57(0x9b1)+_0x2a87d4+')');let _0x264675=_0x41d993(_0xe83e80['colorRecords'][_0x2a87d4]);return _0x40ea75===_0x3cff57(0x8d8)?_0x264675:_0x41da50(_0x264675,_0x40ea75);}function _0x48c3f5(_0x2ce182){const _0x9b3882=_0x2273f6;return('0'+parseInt(_0x2ce182)[_0x9b3882(0x23e)](0x10))[_0x9b3882(0x688)](-0x2);}function _0x16c41d(_0x160e7b){const _0x331c99=_0x2273f6;let _0x5c68d5=_0x160e7b['r']/0xff,_0x392186=_0x160e7b['g']/0xff,_0x27d467=_0x160e7b['b']/0xff,_0x58380e=Math[_0x331c99(0x542)](_0x5c68d5,_0x392186,_0x27d467),_0x30a74a=Math['min'](_0x5c68d5,_0x392186,_0x27d467),_0x4ffb4f,_0x3d3747,_0x361560=(_0x58380e+_0x30a74a)/0x2;if(_0x58380e===_0x30a74a)_0x4ffb4f=_0x3d3747=0x0;else{let _0x5df9bd=_0x58380e-_0x30a74a;switch(_0x3d3747=_0x361560>0.5?_0x5df9bd/(0x2-_0x58380e-_0x30a74a):_0x5df9bd/(_0x58380e+_0x30a74a),_0x58380e){case _0x5c68d5:_0x4ffb4f=(_0x392186-_0x27d467)/_0x5df9bd+(_0x392186<_0x27d467?0x6:0x0);break;case _0x392186:_0x4ffb4f=(_0x27d467-_0x5c68d5)/_0x5df9bd+0x2;break;case _0x27d467:_0x4ffb4f=(_0x5c68d5-_0x392186)/_0x5df9bd+0x4;break;}_0x4ffb4f/=0x6;}return{'h':_0x4ffb4f*0x168,'s':_0x3d3747*0x64,'l':_0x361560*0x64};}function _0x2d81c5(_0x372539){const _0x36b3b3=_0x2273f6;let {h:_0x323893,s:_0x3b5f6f,l:_0x114150,a:_0x7ecf98}=_0x372539;_0x323893%=0x168,_0x3b5f6f/=0x64,_0x114150/=0x64;let _0x539a77=(0x1-Math[_0x36b3b3(0x7f7)](0x2*_0x114150-0x1))*_0x3b5f6f,_0x5f3c2c=_0x539a77*(0x1-Math['abs'](_0x323893/0x3c%0x2-0x1)),_0x469a56=_0x114150-_0x539a77/0x2,_0x3c94c2=0x0,_0x28d0f2=0x0,_0x22f828=0x0;return 0x0<=_0x323893&&_0x323893<0x3c?(_0x3c94c2=_0x539a77,_0x28d0f2=_0x5f3c2c,_0x22f828=0x0):0x3c<=_0x323893&&_0x323893<0x78?(_0x3c94c2=_0x5f3c2c,_0x28d0f2=_0x539a77,_0x22f828=0x0):0x78<=_0x323893&&_0x323893<0xb4?(_0x3c94c2=0x0,_0x28d0f2=_0x539a77,_0x22f828=_0x5f3c2c):0xb4<=_0x323893&&_0x323893<0xf0?(_0x3c94c2=0x0,_0x28d0f2=_0x5f3c2c,_0x22f828=_0x539a77):0xf0<=_0x323893&&_0x323893<0x12c?(_0x3c94c2=_0x5f3c2c,_0x28d0f2=0x0,_0x22f828=_0x539a77):0x12c<=_0x323893&&_0x323893<=0x168&&(_0x3c94c2=_0x539a77,_0x28d0f2=0x0,_0x22f828=_0x5f3c2c),{'r':Math['round']((_0x3c94c2+_0x469a56)*0xff),'g':Math[_0x36b3b3(0x157)]((_0x28d0f2+_0x469a56)*0xff),'b':Math['round']((_0x22f828+_0x469a56)*0xff),'a':_0x7ecf98};}function _0xb7224c(_0x55ddcf){return parseInt('0x'+_0x48c3f5(_0x55ddcf['b'])+_0x48c3f5(_0x55ddcf['g'])+_0x48c3f5(_0x55ddcf['r'])+_0x48c3f5(_0x55ddcf['a']*0xff),0x10);}function _0x2ddc37(_0x3a151c,_0x1a4bbe=_0x2273f6(0x654)){const _0xd622a1=_0x2273f6;let _0x1557c7=_0x1a4bbe=='raw'||_0x1a4bbe=='cpal',_0x556dec=Number[_0xd622a1(0x6c5)](_0x3a151c),_0x4aedd7=!0x0;if(_0x556dec&&_0x1557c7||_0x3a151c==='currentColor')return _0x3a151c;if(typeof _0x3a151c==_0xd622a1(0x961)){if(_0x1a4bbe==_0xd622a1(0x8d8))return _0x3a151c;if(_0x1557c7)return _0xb7224c(_0x3a151c);}else{if(!_0x556dec&&/^#([a-f0-9]{3}|[a-f0-9]{4}|[a-f0-9]{6}|[a-f0-9]{8})$/i[_0xd622a1(0xc39)](_0x3a151c[_0xd622a1(0x4d9)]())){switch(_0x3a151c=_0x3a151c['trim']()[_0xd622a1(0xa94)](0x1),_0x3a151c[_0xd622a1(0xba6)]){case 0x3:_0x3a151c={'r':parseInt(_0x3a151c[0x0]['repeat'](0x2),0x10),'g':parseInt(_0x3a151c[0x1][_0xd622a1(0x208)](0x2),0x10),'b':parseInt(_0x3a151c[0x2]['repeat'](0x2),0x10),'a':0x1};break;case 0x4:_0x3a151c={'r':parseInt(_0x3a151c[0x0]['repeat'](0x2),0x10),'g':parseInt(_0x3a151c[0x1][_0xd622a1(0x208)](0x2),0x10),'b':parseInt(_0x3a151c[0x2][_0xd622a1(0x208)](0x2),0x10),'a':parseInt(_0x3a151c[0x3][_0xd622a1(0x208)](0x2),0x10)/0xff};break;case 0x6:_0x3a151c={'r':parseInt(_0x3a151c[0x0]+_0x3a151c[0x1],0x10),'g':parseInt(_0x3a151c[0x2]+_0x3a151c[0x3],0x10),'b':parseInt(_0x3a151c[0x4]+_0x3a151c[0x5],0x10),'a':0x1};break;case 0x8:_0x3a151c={'r':parseInt(_0x3a151c[0x0]+_0x3a151c[0x1],0x10),'g':parseInt(_0x3a151c[0x2]+_0x3a151c[0x3],0x10),'b':parseInt(_0x3a151c[0x4]+_0x3a151c[0x5],0x10),'a':parseInt(_0x3a151c[0x6]+_0x3a151c[0x7],0x10)/0xff};break;}if(_0x1a4bbe==_0xd622a1(0x8d8))return _0x3a151c;}else{if(typeof document<'u'&&/^[a-z]+$/i[_0xd622a1(0xc39)](_0x3a151c)){let _0x54c9a8=document[_0xd622a1(0xc7e)]('canvas')[_0xd622a1(0x2f2)]('2d');_0x54c9a8[_0xd622a1(0x3d0)]=_0x3a151c;let _0x187971=_0x41da50(_0x54c9a8[_0xd622a1(0x3d0)],_0xd622a1(0x654));_0x187971===_0xd622a1(0x931)&&_0x3a151c[_0xd622a1(0x1c2)]()!==_0xd622a1(0x4df)?_0x4aedd7=!0x1:_0x3a151c=_0x187971;}else{_0x3a151c=_0x3a151c[_0xd622a1(0x4d9)]();let _0x1bd38e=/rgba?\(\s*(?:(\d*\.\d+)(%?)|(\d+)(%?))\s*(?:,|\s*)\s*(?:(\d*\.\d+)(%?)|(\d+)(%?))\s*(?:,|\s*)\s*(?:(\d*\.\d+)(%?)|(\d+)(%?))\s*(?:(?:,|\s|\/)\s*(?:(0*(?:\.\d+)?()|0*1(?:\.0+)?())|(?:\.\d+)|(\d+)(%)|(\d*\.\d+)(%)))?\s*\)/;if(_0x1bd38e[_0xd622a1(0xc39)](_0x3a151c)){let _0x49da2c=_0x3a151c[_0xd622a1(0x504)](_0x1bd38e)[_0xd622a1(0xbcd)](_0x57ccfd=>_0x57ccfd!==void 0x0);_0x3a151c={'r':Math[_0xd622a1(0x157)](parseFloat(_0x49da2c[0x1])/(_0x49da2c[0x2]?0x64/0xff:0x1)),'g':Math[_0xd622a1(0x157)](parseFloat(_0x49da2c[0x3])/(_0x49da2c[0x4]?0x64/0xff:0x1)),'b':Math[_0xd622a1(0x157)](parseFloat(_0x49da2c[0x5])/(_0x49da2c[0x6]?0x64/0xff:0x1)),'a':_0x49da2c[0x7]?parseFloat(_0x49da2c[0x7])/(_0x49da2c[0x8]?0x64:0x1):0x1};}else{let _0x322316=/hsla?\(\s*(?:(\d*\.\d+|\d+)(deg|turn|))\s*(?:,|\s*)\s*(?:(\d*\.\d+)%?|(\d+)%?)\s*(?:,|\s*)\s*(?:(\d*\.\d+)%?|(\d+)%?)\s*(?:(?:,|\s|\/)\s*(?:(0*(?:\.\d+)?()|0*1(?:\.0+)?())|(?:\.\d+)|(\d+)(%)|(\d*\.\d+)(%)))?\s*\)/;if(_0x322316[_0xd622a1(0xc39)](_0x3a151c)){let _0x20fa60=_0x3a151c['match'](_0x322316)['filter'](_0x499f03=>_0x499f03!==void 0x0);_0x3a151c=_0x2d81c5({'h':parseFloat(_0x20fa60[0x1])*(_0x20fa60[0x2]===_0xd622a1(0x855)?0x168:0x1),'s':parseFloat(_0x20fa60[0x3]),'l':parseFloat(_0x20fa60[0x4]),'a':_0x20fa60[0x5]?parseFloat(_0x20fa60[0x5])/(_0x20fa60[0x6]?0x64:0x1):0x1});}else _0x4aedd7=!0x1;}}}}if(!_0x4aedd7)throw Error(_0xd622a1(0x7dd)+_0x3a151c);return _0x41da50(_0x3a151c,_0x1a4bbe);}function _0x41da50(_0x3fc86a,_0xe3527d=_0x2273f6(0x654)){const _0x1a7979=_0x2273f6;if(_0x3fc86a===_0x1a7979(0x19a))return _0x3fc86a;if(Number[_0x1a7979(0x6c5)](_0x3fc86a)){if(_0xe3527d==_0x1a7979(0x317)||_0xe3527d=='cpal')return _0x3fc86a;_0x3fc86a=_0x41d993(_0x3fc86a);}else typeof _0x3fc86a!=_0x1a7979(0x961)&&(_0x3fc86a=_0x2ddc37(_0x3fc86a,_0x1a7979(0x8d8)));let _0x3cf7a9=['hsl',_0x1a7979(0xa1c)]['includes'](_0xe3527d)?_0x16c41d(_0x3fc86a):null;switch(_0xe3527d){case _0x1a7979(0xaae):return _0x1a7979(0xb89)+_0x3fc86a['r']+',\x20'+_0x3fc86a['g']+',\x20'+_0x3fc86a['b']+',\x20'+parseFloat(_0x3fc86a['a'][_0x1a7979(0xc51)](0x3))+')';case'rgb':return _0x1a7979(0x4c6)+_0x3fc86a['r']+',\x20'+_0x3fc86a['g']+',\x20'+_0x3fc86a['b']+')';case _0x1a7979(0x5d9):case _0x1a7979(0x741):case _0x1a7979(0x550):return'#'+_0x48c3f5(_0x3fc86a['r'])+_0x48c3f5(_0x3fc86a['g'])+_0x48c3f5(_0x3fc86a['b']);case _0x1a7979(0x654):case'hex8':case _0x1a7979(0xa24):return'#'+_0x48c3f5(_0x3fc86a['r'])+_0x48c3f5(_0x3fc86a['g'])+_0x48c3f5(_0x3fc86a['b'])+_0x48c3f5(_0x3fc86a['a']*0xff);case'hsl':return _0x1a7979(0x9af)+_0x3cf7a9['h']['toFixed'](0x2)+',\x20'+_0x3cf7a9['s']['toFixed'](0x2)+_0x1a7979(0xaf7)+_0x3cf7a9['l']['toFixed'](0x2)+'%)';case'hsla':return'hsla('+_0x3cf7a9['h']['toFixed'](0x2)+',\x20'+_0x3cf7a9['s'][_0x1a7979(0xc51)](0x2)+_0x1a7979(0xaf7)+_0x3cf7a9['l'][_0x1a7979(0xc51)](0x2)+_0x1a7979(0xaf7)+parseFloat(_0x3fc86a['a'][_0x1a7979(0xc51)](0x3))+')';case _0x1a7979(0x8d8):return _0x3fc86a;case _0x1a7979(0x317):case'cpal':return _0xb7224c(_0x3fc86a);default:throw Error(_0x1a7979(0xa05)+_0xe3527d);}}var _0x593ba6={'parse':_0x12fa23,'make':_0x111537,'getPaletteColor':_0x3d464b,'parseColor':_0x2ddc37,'formatColor':_0x41da50};function _0x124e53(_0x216b30,_0x13f8c5){let _0xdc6ee0=_0x13f8c5||new _0x4cc193();return{'configurable':!0x0,'get':function(){const _0x36de38=_0x57a5;return typeof _0xdc6ee0==_0x36de38(0x9df)&&(_0xdc6ee0=_0xdc6ee0()),_0xdc6ee0;},'set':function(_0x33a420){_0xdc6ee0=_0x33a420;}};}function _0xd269ff(_0x491831){this['bindConstructorValues'](_0x491831);}_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x7ff)]=function(_0x325c8f){const _0x5e313a=_0x2273f6;if(this['index']=_0x325c8f[_0x5e313a(0x2c6)]||0x0,_0x325c8f[_0x5e313a(0x37a)]===_0x5e313a(0x52a)?_0x325c8f[_0x5e313a(0x423)]=void 0x0:_0x325c8f['name']==='.null'&&(_0x325c8f[_0x5e313a(0x423)]=0x0),_0x325c8f['unicode']===0x0&&_0x325c8f[_0x5e313a(0x37a)]!==_0x5e313a(0xc01))throw Error('The\x20unicode\x20value\x20\x220\x22\x20is\x20reserved\x20for\x20the\x20glyph\x20name\x20\x22.null\x22\x20and\x20cannot\x20be\x20used\x20by\x20any\x20other\x20glyph.');this[_0x5e313a(0x37a)]=_0x325c8f['name']||null,this[_0x5e313a(0x423)]=_0x325c8f['unicode'],this['unicodes']=_0x325c8f['unicodes']||(_0x325c8f[_0x5e313a(0x423)]===void 0x0?[]:[_0x325c8f[_0x5e313a(0x423)]]),_0x5e313a(0x784)in _0x325c8f&&(this[_0x5e313a(0x784)]=_0x325c8f['xMin']),_0x5e313a(0xafc)in _0x325c8f&&(this[_0x5e313a(0xafc)]=_0x325c8f[_0x5e313a(0xafc)]),_0x5e313a(0x28d)in _0x325c8f&&(this[_0x5e313a(0x28d)]=_0x325c8f[_0x5e313a(0x28d)]),_0x5e313a(0x431)in _0x325c8f&&(this[_0x5e313a(0x431)]=_0x325c8f[_0x5e313a(0x431)]),_0x5e313a(0x355)in _0x325c8f&&(this[_0x5e313a(0x355)]=_0x325c8f[_0x5e313a(0x355)]),'leftSideBearing'in _0x325c8f&&(this[_0x5e313a(0xc82)]=_0x325c8f['leftSideBearing']),_0x5e313a(0x75c)in _0x325c8f&&(this[_0x5e313a(0x75c)]=_0x325c8f[_0x5e313a(0x75c)]),Object[_0x5e313a(0x18b)](this,'path',_0x124e53(this,_0x325c8f[_0x5e313a(0x36c)]));},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x29e)]=function(_0x24f804){const _0x35687d=_0x2273f6;this['unicodes']['length']===0x0&&(this[_0x35687d(0x423)]=_0x24f804),this[_0x35687d(0xbc0)][_0x35687d(0x381)](_0x24f804);},_0xd269ff['prototype'][_0x2273f6(0x7a4)]=function(){const _0x5795a4=_0x2273f6;return this[_0x5795a4(0x36c)][_0x5795a4(0x7a4)]();},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0xad9)]=function(_0x3cedce,_0x159ccd,_0x5e629e,_0x2e5a48,_0x1960fa){const _0x4b0e3d=_0x2273f6;_0x3cedce=_0x3cedce===void 0x0?0x0:_0x3cedce,_0x159ccd=_0x159ccd===void 0x0?0x0:_0x159ccd,_0x5e629e=_0x5e629e===void 0x0?0x48:_0x5e629e,_0x2e5a48=Object['assign']({},_0x1960fa&&_0x1960fa[_0x4b0e3d(0x599)],_0x2e5a48);let _0x58035c,_0x4defd9,_0x87bbda=_0x2e5a48[_0x4b0e3d(0x1a6)],_0x37c9b4=_0x2e5a48[_0x4b0e3d(0x682)],_0xbf77a5=0x1/(this[_0x4b0e3d(0x36c)]['unitsPerEm']||0x3e8)*_0x5e629e,_0x43fcec=this;_0x1960fa&&_0x1960fa[_0x4b0e3d(0x800)]&&(_0x43fcec=_0x1960fa[_0x4b0e3d(0x800)][_0x4b0e3d(0xc48)](this,_0x2e5a48[_0x4b0e3d(0x800)]),_0x58035c=_0x43fcec[_0x4b0e3d(0x36c)][_0x4b0e3d(0x440)]),_0x2e5a48[_0x4b0e3d(0x51c)]&&_0x1960fa&&_0x1960fa[_0x4b0e3d(0x51c)]&&(_0x4defd9=_0x43fcec[_0x4b0e3d(0x36c)]&&_0x1960fa[_0x4b0e3d(0x51c)][_0x4b0e3d(0x8b7)](_0x43fcec,_0x5e629e,_0x2e5a48)),_0x4defd9?(_0x58035c=_0x1960fa['hinting'][_0x4b0e3d(0x1f0)](_0x4defd9),_0x3cedce=Math['round'](_0x3cedce),_0x159ccd=Math[_0x4b0e3d(0x157)](_0x159ccd),_0x87bbda=_0x37c9b4=0x1):(_0x58035c=_0x43fcec[_0x4b0e3d(0x36c)][_0x4b0e3d(0x440)],_0x87bbda===void 0x0&&(_0x87bbda=_0xbf77a5),_0x37c9b4===void 0x0&&(_0x37c9b4=_0xbf77a5));let _0x370aec=new _0x4cc193();if(_0x2e5a48['drawSVG']){let _0x186b1f=this['getSvgImage'](_0x1960fa);if(_0x186b1f){let _0x791859=new _0x4cc193();return _0x791859[_0x4b0e3d(0x435)]={'image':_0x186b1f[_0x4b0e3d(0xada)],'x':_0x3cedce+_0x186b1f[_0x4b0e3d(0xc82)]*_0xbf77a5,'y':_0x159ccd-_0x186b1f[_0x4b0e3d(0xb4e)]*_0xbf77a5,'width':_0x186b1f[_0x4b0e3d(0xada)][_0x4b0e3d(0x65c)]*_0xbf77a5,'height':_0x186b1f['image'][_0x4b0e3d(0x1ae)]*_0xbf77a5},_0x370aec[_0x4b0e3d(0x8c0)]=[_0x791859],_0x370aec;}}if(_0x2e5a48[_0x4b0e3d(0xa1b)]){let _0x4a1eef=this[_0x4b0e3d(0x126)](_0x1960fa);if(_0x4a1eef&&_0x4a1eef[_0x4b0e3d(0xba6)]){_0x370aec[_0x4b0e3d(0x8c0)]=[];for(let _0x36d7bf=0x0;_0x36d7bf<_0x4a1eef[_0x4b0e3d(0xba6)];_0x36d7bf+=0x1){let _0xba1cb7=_0x4a1eef[_0x36d7bf],_0x3c1432=_0x3d464b(_0x1960fa,_0xba1cb7[_0x4b0e3d(0x805)],_0x2e5a48[_0x4b0e3d(0x51d)]);_0x3c1432=_0x3c1432===_0x4b0e3d(0x19a)?_0x2e5a48[_0x4b0e3d(0x9ae)]||'black':_0x41da50(_0x3c1432,_0x2e5a48[_0x4b0e3d(0x2d4)]||_0x4b0e3d(0xaae)),_0x2e5a48=Object['assign']({},_0x2e5a48,{'fill':_0x3c1432}),_0x370aec['_layers'][_0x4b0e3d(0x381)](this[_0x4b0e3d(0xad9)][_0x4b0e3d(0x3f4)](_0xba1cb7[_0x4b0e3d(0x4d7)],_0x3cedce,_0x159ccd,_0x5e629e,_0x2e5a48,_0x1960fa));}return _0x370aec;}}_0x370aec['fill']=_0x2e5a48[_0x4b0e3d(0x9ae)]||this['path'][_0x4b0e3d(0x9ae)],_0x370aec['stroke']=this[_0x4b0e3d(0x36c)][_0x4b0e3d(0xa25)],_0x370aec[_0x4b0e3d(0x5ce)]=this['path'][_0x4b0e3d(0x5ce)]*_0xbf77a5;for(let _0x5c9f28=0x0;_0x5c9f28<_0x58035c['length'];_0x5c9f28+=0x1){let _0x57f370=_0x58035c[_0x5c9f28];_0x57f370['type']==='M'?_0x370aec[_0x4b0e3d(0x80a)](_0x3cedce+_0x57f370['x']*_0x87bbda,_0x159ccd+-_0x57f370['y']*_0x37c9b4):_0x57f370[_0x4b0e3d(0x2c1)]==='L'?_0x370aec['lineTo'](_0x3cedce+_0x57f370['x']*_0x87bbda,_0x159ccd+-_0x57f370['y']*_0x37c9b4):_0x57f370[_0x4b0e3d(0x2c1)]==='Q'?_0x370aec[_0x4b0e3d(0x603)](_0x3cedce+_0x57f370['x1']*_0x87bbda,_0x159ccd+-_0x57f370['y1']*_0x37c9b4,_0x3cedce+_0x57f370['x']*_0x87bbda,_0x159ccd+-_0x57f370['y']*_0x37c9b4):_0x57f370[_0x4b0e3d(0x2c1)]==='C'?_0x370aec[_0x4b0e3d(0x734)](_0x3cedce+_0x57f370['x1']*_0x87bbda,_0x159ccd+-_0x57f370['y1']*_0x37c9b4,_0x3cedce+_0x57f370['x2']*_0x87bbda,_0x159ccd+-_0x57f370['y2']*_0x37c9b4,_0x3cedce+_0x57f370['x']*_0x87bbda,_0x159ccd+-_0x57f370['y']*_0x37c9b4):_0x57f370['type']==='Z'&&_0x370aec[_0x4b0e3d(0xa25)]&&_0x370aec[_0x4b0e3d(0x5ce)]&&_0x370aec[_0x4b0e3d(0x427)]();}return _0x370aec;},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x126)]=function(_0x45d997){const _0x371334=_0x2273f6;if(!_0x45d997)throw Error(_0x371334(0xbfc));return _0x45d997[_0x371334(0x7b1)][_0x371334(0x2ad)](this['index']);},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0xa56)]=function(_0x3b29a2){const _0xac0704=_0x2273f6;if(!_0x3b29a2)throw Error(_0xac0704(0x21f));return _0x3b29a2[_0xac0704(0xa36)]['get'](this[_0xac0704(0x2c6)]);},_0xd269ff['prototype'][_0x2273f6(0xa17)]=function(_0x434a77=null){const _0x53109e=_0x2273f6;if(this[_0x53109e(0x75c)]===void 0x0&&!_0x434a77)return[];let _0x51d212=[],_0x2592cd=[],_0x4d8da8=_0x434a77||this[_0x53109e(0x75c)];for(let _0x4119c1=0x0;_0x4119c1<_0x4d8da8[_0x53109e(0xba6)];_0x4119c1+=0x1){let _0xbd784b=_0x4d8da8[_0x4119c1];_0x2592cd[_0x53109e(0x381)](_0xbd784b),_0xbd784b[_0x53109e(0x246)]&&(_0x51d212[_0x53109e(0x381)](_0x2592cd),_0x2592cd=[]);}return _0x95cc0['argument'](_0x2592cd[_0x53109e(0xba6)]===0x0,_0x53109e(0x202)),_0x51d212;},_0xd269ff['prototype'][_0x2273f6(0x118)]=function(){const _0x1648fa=_0x2273f6;let _0x32a06e=this['path'][_0x1648fa(0x440)],_0x4d483d=[],_0xc12099=[];for(let _0x52549f=0x0;_0x52549f<_0x32a06e['length'];_0x52549f+=0x1){let _0x13683e=_0x32a06e[_0x52549f];_0x13683e['type']!=='Z'&&(_0x4d483d['push'](_0x13683e['x']),_0xc12099[_0x1648fa(0x381)](_0x13683e['y'])),(_0x13683e[_0x1648fa(0x2c1)]==='Q'||_0x13683e[_0x1648fa(0x2c1)]==='C')&&(_0x4d483d[_0x1648fa(0x381)](_0x13683e['x1']),_0xc12099['push'](_0x13683e['y1'])),_0x13683e[_0x1648fa(0x2c1)]==='C'&&(_0x4d483d[_0x1648fa(0x381)](_0x13683e['x2']),_0xc12099['push'](_0x13683e['y2']));}let _0xb531f9={'xMin':Math[_0x1648fa(0xb2a)][_0x1648fa(0x640)](null,_0x4d483d),'yMin':Math[_0x1648fa(0xb2a)][_0x1648fa(0x640)](null,_0xc12099),'xMax':Math[_0x1648fa(0x542)][_0x1648fa(0x640)](null,_0x4d483d),'yMax':Math['max']['apply'](null,_0xc12099),'leftSideBearing':this[_0x1648fa(0xc82)]};return isFinite(_0xb531f9[_0x1648fa(0x784)])||(_0xb531f9['xMin']=0x0),isFinite(_0xb531f9[_0x1648fa(0x28d)])||(_0xb531f9[_0x1648fa(0x28d)]=this[_0x1648fa(0x355)]),isFinite(_0xb531f9[_0x1648fa(0xafc)])||(_0xb531f9['yMin']=0x0),isFinite(_0xb531f9[_0x1648fa(0x431)])||(_0xb531f9[_0x1648fa(0x431)]=0x0),_0xb531f9[_0x1648fa(0x60a)]=this[_0x1648fa(0x355)]-_0xb531f9[_0x1648fa(0xc82)]-(_0xb531f9[_0x1648fa(0x28d)]-_0xb531f9['xMin']),_0xb531f9;},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x90c)]=function(_0x11b2d0,_0x2a6fbc,_0x5a04b0,_0x39f1ab,_0x3434c5,_0x51b477){const _0x5c6b68=_0x2273f6;_0x3434c5=Object[_0x5c6b68(0x4ac)]({},_0x51b477&&_0x51b477[_0x5c6b68(0x599)],_0x3434c5),this['getPath'](_0x2a6fbc,_0x5a04b0,_0x39f1ab,_0x3434c5,_0x51b477)[_0x5c6b68(0x90c)](_0x11b2d0);},_0xd269ff['prototype'][_0x2273f6(0x466)]=function(_0x3baceb,_0x465452,_0x2385c8,_0x356d48,_0x41ae5c,_0x389a71){const _0x49bd6c=_0x2273f6;if(_0x41ae5c=Object['assign']({},_0x389a71&&_0x389a71[_0x49bd6c(0x599)],_0x41ae5c),_0x41ae5c[_0x49bd6c(0xa1b)]){let _0x43232e=this[_0x49bd6c(0x126)](_0x389a71);if(_0x43232e&&_0x43232e[_0x49bd6c(0xba6)]){for(let _0x215ac9=0x0;_0x215ac9<_0x43232e[_0x49bd6c(0xba6)];_0x215ac9+=0x1)_0x43232e[_0x215ac9][_0x49bd6c(0x4d7)][_0x49bd6c(0x2c6)]!==this[_0x49bd6c(0x2c6)]&&this[_0x49bd6c(0x466)][_0x49bd6c(0x3f4)](_0x43232e[_0x215ac9][_0x49bd6c(0x4d7)],_0x3baceb,_0x465452,_0x2385c8,_0x356d48);return;}}function _0x4d2b82(_0x15acbd,_0x3cc55c,_0x1f4e78,_0x452273){const _0x4beef2=_0x49bd6c;_0x3baceb[_0x4beef2(0x995)]();for(let _0x26b72b=0x0;_0x26b72b<_0x15acbd[_0x4beef2(0xba6)];_0x26b72b+=0x1)_0x3baceb['moveTo'](_0x3cc55c+_0x15acbd[_0x26b72b]['x']*_0x452273,_0x1f4e78+_0x15acbd[_0x26b72b]['y']*_0x452273),_0x3baceb[_0x4beef2(0xa5a)](_0x3cc55c+_0x15acbd[_0x26b72b]['x']*_0x452273,_0x1f4e78+_0x15acbd[_0x26b72b]['y']*_0x452273,0x2,0x0,Math['PI']*0x2,!0x1);_0x3baceb[_0x4beef2(0x9ae)]();}_0x465452=_0x465452===void 0x0?0x0:_0x465452,_0x2385c8=_0x2385c8===void 0x0?0x0:_0x2385c8,_0x356d48=_0x356d48===void 0x0?0x18:_0x356d48;let _0xd56d66=0x1/this[_0x49bd6c(0x36c)][_0x49bd6c(0xac5)]*_0x356d48,_0x2f59b2=[],_0x14d6a7=[],_0x20dc52=this['path'][_0x49bd6c(0x440)];_0x389a71&&_0x389a71[_0x49bd6c(0x800)]&&(_0x20dc52=_0x389a71[_0x49bd6c(0x800)][_0x49bd6c(0xc48)](this,_0x41ae5c[_0x49bd6c(0x800)])[_0x49bd6c(0x36c)][_0x49bd6c(0x440)]);for(let _0x3aadd1=0x0;_0x3aadd1<_0x20dc52[_0x49bd6c(0xba6)];_0x3aadd1+=0x1){let _0x4ebc0a=_0x20dc52[_0x3aadd1];_0x4ebc0a['x']!==void 0x0&&_0x2f59b2[_0x49bd6c(0x381)]({'x':_0x4ebc0a['x'],'y':-_0x4ebc0a['y']}),_0x4ebc0a['x1']!==void 0x0&&_0x14d6a7[_0x49bd6c(0x381)]({'x':_0x4ebc0a['x1'],'y':-_0x4ebc0a['y1']}),_0x4ebc0a['x2']!==void 0x0&&_0x14d6a7[_0x49bd6c(0x381)]({'x':_0x4ebc0a['x2'],'y':-_0x4ebc0a['y2']});}_0x3baceb[_0x49bd6c(0x3d0)]=_0x49bd6c(0x94e),_0x4d2b82(_0x2f59b2,_0x465452,_0x2385c8,_0xd56d66),_0x3baceb[_0x49bd6c(0x3d0)]=_0x49bd6c(0x739),_0x4d2b82(_0x14d6a7,_0x465452,_0x2385c8,_0xd56d66);},_0xd269ff[_0x2273f6(0x505)]['drawMetrics']=function(_0x1b58e7,_0x20e029,_0x26293e,_0x5eb6cc){const _0x4faf99=_0x2273f6;let _0x291f97;_0x20e029=_0x20e029===void 0x0?0x0:_0x20e029,_0x26293e=_0x26293e===void 0x0?0x0:_0x26293e,_0x5eb6cc=_0x5eb6cc===void 0x0?0x18:_0x5eb6cc,_0x291f97=0x1/this['path'][_0x4faf99(0xac5)]*_0x5eb6cc,_0x1b58e7['lineWidth']=0x1,_0x1b58e7[_0x4faf99(0x2f3)]='black',_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,_0x20e029,-0x2710,_0x20e029,0x2710),_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,-0x2710,_0x26293e,0x2710,_0x26293e);let _0x4a883e=this[_0x4faf99(0x784)]||0x0,_0x18afaa=this[_0x4faf99(0xafc)]||0x0,_0x31a734=this[_0x4faf99(0x28d)]||0x0,_0x48dead=this['yMax']||0x0,_0x5bec2d=this[_0x4faf99(0x355)]||0x0;_0x1b58e7[_0x4faf99(0x2f3)]=_0x4faf99(0x94e),_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,_0x20e029+_0x4a883e*_0x291f97,-0x2710,_0x20e029+_0x4a883e*_0x291f97,0x2710),_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,_0x20e029+_0x31a734*_0x291f97,-0x2710,_0x20e029+_0x31a734*_0x291f97,0x2710),_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,-0x2710,_0x26293e+-_0x18afaa*_0x291f97,0x2710,_0x26293e+-_0x18afaa*_0x291f97),_0x141ad4['line'](_0x1b58e7,-0x2710,_0x26293e+-_0x48dead*_0x291f97,0x2710,_0x26293e+-_0x48dead*_0x291f97),_0x1b58e7[_0x4faf99(0x2f3)]=_0x4faf99(0x142),_0x141ad4[_0x4faf99(0x46a)](_0x1b58e7,_0x20e029+_0x5bec2d*_0x291f97,-0x2710,_0x20e029+_0x5bec2d*_0x291f97,0x2710);},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0xb7a)]=function(_0x39b66e,_0x51a503){const _0x50d40e=_0x2273f6;_0x39b66e=Object[_0x50d40e(0x4ac)]({},{'variation':_0x51a503&&_0x51a503[_0x50d40e(0x599)][_0x50d40e(0x800)]},_0x39b66e);let _0x2deacb=this;_0x51a503&&_0x51a503[_0x50d40e(0x800)]&&(_0x2deacb=_0x51a503[_0x50d40e(0x800)][_0x50d40e(0xc48)](this,_0x39b66e[_0x50d40e(0x800)]));let _0x9998ea=_0x2deacb[_0x50d40e(0x75c)]&&_0x39b66e['pointsTransform']?_0x39b66e[_0x50d40e(0x2a9)](_0x2deacb[_0x50d40e(0x75c)]):_0x2deacb[_0x50d40e(0x36c)];return _0x39b66e[_0x50d40e(0x892)]&&(_0x9998ea=_0x39b66e[_0x50d40e(0x892)](_0x9998ea)),_0x9998ea[_0x50d40e(0xb7a)](_0x39b66e);},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x627)]=function(_0x5c3274,_0x18332a={}){const _0x272a77=_0x2273f6;return this[_0x272a77(0x36c)][_0x272a77(0x627)](_0x5c3274,_0x18332a);},_0xd269ff['prototype']['toSVG']=function(_0x2868e1,_0x2b96b0){const _0x12ebe3=_0x2273f6;let _0x516c8a=this[_0x12ebe3(0xb7a)][_0x12ebe3(0x640)](this,[_0x2868e1,_0x2b96b0]);return this[_0x12ebe3(0x36c)][_0x12ebe3(0x5b5)](_0x2868e1,_0x516c8a);},_0xd269ff[_0x2273f6(0x505)][_0x2273f6(0x338)]=function(_0x13669c,_0xd7e01e){const _0x3660b2=_0x2273f6;_0x13669c=Object[_0x3660b2(0x4ac)]({},{'variation':_0xd7e01e&&_0xd7e01e['defaultRenderOptions'][_0x3660b2(0x800)]},_0x13669c);let _0x444bc8=this[_0x3660b2(0x36c)];return _0xd7e01e&&_0xd7e01e[_0x3660b2(0x800)]&&(_0x444bc8=_0xd7e01e[_0x3660b2(0x800)]['getTransform'](this,_0x13669c['variation'])[_0x3660b2(0x36c)]),_0x444bc8['toDOMElement'](_0x13669c);};var _0x57f2d5=_0xd269ff;function _0x49b77b(_0x451973,_0x116fc3,_0x45e90b){Object['defineProperty'](_0x451973,_0x116fc3,{'get':function(){return _0x451973[_0x45e90b]===void 0x0&&_0x451973['path'],_0x451973[_0x45e90b];},'set':function(_0x44a0f9){_0x451973[_0x45e90b]=_0x44a0f9;},'enumerable':!0x0,'configurable':!0x0});}function _0x5438ac(_0x445e93,_0x401b61){const _0x7c1082=_0x2273f6;if(this[_0x7c1082(0x7da)]=_0x445e93,this['glyphs']={},Array[_0x7c1082(0x461)](_0x401b61))for(let _0x1d4e83=0x0;_0x1d4e83<_0x401b61[_0x7c1082(0xba6)];_0x1d4e83++){let _0x4a785e=_0x401b61[_0x1d4e83];_0x4a785e[_0x7c1082(0x36c)][_0x7c1082(0xac5)]=_0x445e93['unitsPerEm'],this[_0x7c1082(0x70a)][_0x1d4e83]=_0x4a785e;}this['length']=_0x401b61&&_0x401b61[_0x7c1082(0xba6)]||0x0;}typeof Symbol<'u'&&Symbol[_0x2273f6(0xc44)]&&(_0x5438ac[_0x2273f6(0x505)][Symbol[_0x2273f6(0xc44)]]=function(){const _0x4772df=_0x2273f6;let _0x2b65ae=-0x1;return{'next':function(){const _0x1dd8f1=_0x57a5;_0x2b65ae++;let _0x328c8d=_0x2b65ae>=this[_0x1dd8f1(0xba6)]-0x1;return{'value':this['get'](_0x2b65ae),'done':_0x328c8d};}[_0x4772df(0xbc2)](this)};}),_0x5438ac['prototype']['get']=function(_0x167ec3){const _0x3e0641=_0x2273f6;if(this[_0x3e0641(0x7da)][_0x3e0641(0xb8c)]&&this[_0x3e0641(0x70a)][_0x167ec3]===void 0x0){this[_0x3e0641(0x7da)][_0x3e0641(0xb8c)](_0x167ec3),typeof this[_0x3e0641(0x70a)][_0x167ec3]=='function'&&(this[_0x3e0641(0x70a)][_0x167ec3]=this['glyphs'][_0x167ec3]());let _0xa4ba61=this['glyphs'][_0x167ec3],_0x3cfd0f=this[_0x3e0641(0x7da)]['_IndexToUnicodeMap'][_0x167ec3];if(_0x3cfd0f){for(let _0x52e458=0x0;_0x52e458<_0x3cfd0f[_0x3e0641(0xbc0)]['length'];_0x52e458++)_0xa4ba61[_0x3e0641(0x29e)](_0x3cfd0f[_0x3e0641(0xbc0)][_0x52e458]);}this[_0x3e0641(0x7da)][_0x3e0641(0x533)]?_0xa4ba61[_0x3e0641(0x37a)]=this[_0x3e0641(0x7da)][_0x3e0641(0x533)][_0x3e0641(0x863)][_0x167ec3]:this[_0x3e0641(0x7da)]['glyphNames'][_0x3e0641(0xb8f)]&&(_0xa4ba61[_0x3e0641(0x37a)]=this[_0x3e0641(0x7da)][_0x3e0641(0x20b)][_0x3e0641(0x97a)](_0x167ec3)),this[_0x3e0641(0x70a)][_0x167ec3][_0x3e0641(0x355)]=this[_0x3e0641(0x7da)][_0x3e0641(0x301)][_0x167ec3][_0x3e0641(0x355)],this[_0x3e0641(0x70a)][_0x167ec3][_0x3e0641(0xc82)]=this[_0x3e0641(0x7da)][_0x3e0641(0x301)][_0x167ec3]['leftSideBearing'];}else typeof this[_0x3e0641(0x70a)][_0x167ec3]==_0x3e0641(0x9df)&&(this[_0x3e0641(0x70a)][_0x167ec3]=this[_0x3e0641(0x70a)][_0x167ec3]());return this['glyphs'][_0x167ec3];},_0x5438ac[_0x2273f6(0x505)][_0x2273f6(0x381)]=function(_0x2205e,_0x3e0ecd){const _0x3fb056=_0x2273f6;this['glyphs'][_0x2205e]=_0x3e0ecd,this[_0x3fb056(0xba6)]++;};function _0x511cdd(_0x5f1c46,_0x263aba){return new _0x57f2d5({'index':_0x263aba,'font':_0x5f1c46});}function _0x2e11e2(_0x426f25,_0x1309f2,_0x102e04,_0x1c3cac,_0x4e7240,_0x1f55fc){return function(){const _0x16d362=_0x57a5;let _0x1211b1=new _0x57f2d5({'index':_0x1309f2,'font':_0x426f25});return _0x1211b1[_0x16d362(0x36c)]=function(){const _0x436de8=_0x16d362;_0x102e04(_0x1211b1,_0x1c3cac,_0x4e7240);let _0x164c19=_0x1f55fc(_0x426f25[_0x436de8(0x70a)],_0x1211b1);return _0x164c19[_0x436de8(0xac5)]=_0x426f25[_0x436de8(0xac5)],_0x164c19;},_0x49b77b(_0x1211b1,_0x16d362(0xc9c),_0x16d362(0xb19)),_0x49b77b(_0x1211b1,_0x16d362(0x784),'_xMin'),_0x49b77b(_0x1211b1,_0x16d362(0x28d),_0x16d362(0x193)),_0x49b77b(_0x1211b1,'yMin',_0x16d362(0x77f)),_0x49b77b(_0x1211b1,_0x16d362(0x431),'_yMax'),_0x49b77b(_0x1211b1,_0x16d362(0x75c),_0x16d362(0x976)),_0x1211b1;};}function _0x4e676b(_0x11d606,_0xec751e,_0x1c2004,_0x235c30,_0x20601f){return function(){let _0x15000f=new _0x57f2d5({'index':_0xec751e,'font':_0x11d606});return _0x15000f['path']=function(){const _0x4c7f5f=_0x57a5;let _0x6cce56=_0x1c2004(_0x11d606,_0x15000f,_0x235c30,_0x20601f);return _0x6cce56['unitsPerEm']=_0x11d606[_0x4c7f5f(0xac5)],_0x6cce56;},_0x15000f;};}var _0x31db48={'GlyphSet':_0x5438ac,'glyphLoader':_0x511cdd,'ttfGlyphLoader':_0x2e11e2,'cffGlyphLoader':_0x4e676b};function _0xa44128(_0x2d43f0,_0x12344e){const _0x5f42af=_0x2273f6;if(_0x2d43f0===_0x12344e)return!0x0;if(Array[_0x5f42af(0x461)](_0x2d43f0)&&Array[_0x5f42af(0x461)](_0x12344e)){if(_0x2d43f0['length']!==_0x12344e[_0x5f42af(0xba6)])return!0x1;for(let _0x1d5c1d=0x0;_0x1d5c1d<_0x2d43f0[_0x5f42af(0xba6)];_0x1d5c1d+=0x1)if(!_0xa44128(_0x2d43f0[_0x1d5c1d],_0x12344e[_0x1d5c1d]))return!0x1;return!0x0;}else return!0x1;}var _0x4151d0=0xa;function _0x2b3c2b(_0x2d94f7){const _0x4af3ab=_0x2273f6;let _0x137a6c;return _0x137a6c=_0x2d94f7[_0x4af3ab(0xba6)]<0x4d8?0x6b:_0x2d94f7['length']<0x846c?0x46b:0x8000,_0x137a6c;}function _0x5a6319(_0x50dc7a,_0x1c201d,_0x595ac7,_0xe213ba){const _0x5a288a=_0x2273f6;let _0x8c0fd4=[],_0x424c18=[],_0x8a6278=_0xe213ba>0x1?_0x4d43da[_0x5a288a(0x2f7)](_0x50dc7a,_0x1c201d):_0x4d43da['getCard16'](_0x50dc7a,_0x1c201d),_0x2c665d=_0xe213ba>0x1?0x4:0x2,_0x21bbb4,_0x200cce;if(_0x8a6278!==0x0){let _0x4aeaf2=_0x4d43da[_0x5a288a(0x3b3)](_0x50dc7a,_0x1c201d+_0x2c665d);_0x21bbb4=_0x1c201d+(_0x8a6278+0x1)*_0x4aeaf2+_0x2c665d;let _0x411924=_0x1c201d+_0x2c665d+0x1;for(let _0xa731d1=0x0;_0xa731d1<_0x8a6278+0x1;_0xa731d1+=0x1)_0x8c0fd4[_0x5a288a(0x381)](_0x4d43da[_0x5a288a(0xc2e)](_0x50dc7a,_0x411924,_0x4aeaf2)),_0x411924+=_0x4aeaf2;_0x200cce=_0x21bbb4+_0x8c0fd4[_0x8a6278];}else _0x200cce=_0x1c201d+_0x2c665d;for(let _0x29e8f1=0x0;_0x29e8f1<_0x8c0fd4[_0x5a288a(0xba6)]-0x1;_0x29e8f1+=0x1){let _0x294656=_0x4d43da['getBytes'](_0x50dc7a,_0x21bbb4+_0x8c0fd4[_0x29e8f1],_0x21bbb4+_0x8c0fd4[_0x29e8f1+0x1]);_0x595ac7&&(_0x294656=_0x595ac7(_0x294656,_0x50dc7a,_0x1c201d,_0xe213ba)),_0x424c18[_0x5a288a(0x381)](_0x294656);}return{'objects':_0x424c18,'startOffset':_0x1c201d,'endOffset':_0x200cce};}function _0x15ad75(_0x30f8d9,_0x50edcd,_0x489deb){const _0x25d996=_0x2273f6;let _0xf80d01=[],_0x17de18=_0x489deb>0x1?_0x4d43da[_0x25d996(0x2f7)](_0x30f8d9,_0x50edcd):_0x4d43da['getCard16'](_0x30f8d9,_0x50edcd),_0x3887f9=_0x489deb>0x1?0x4:0x2,_0x3bc85f,_0x1b4ee9;if(_0x17de18!==0x0){let _0x3e4ab0=_0x4d43da[_0x25d996(0x3b3)](_0x30f8d9,_0x50edcd+_0x3887f9);_0x3bc85f=_0x50edcd+(_0x17de18+0x1)*_0x3e4ab0+_0x3887f9;let _0x7c927f=_0x50edcd+_0x3887f9+0x1;for(let _0x120d6f=0x0;_0x120d6f<_0x17de18+0x1;_0x120d6f+=0x1)_0xf80d01['push'](_0x4d43da[_0x25d996(0xc2e)](_0x30f8d9,_0x7c927f,_0x3e4ab0)),_0x7c927f+=_0x3e4ab0;_0x1b4ee9=_0x3bc85f+_0xf80d01[_0x17de18];}else _0x1b4ee9=_0x50edcd+_0x3887f9;return{'offsets':_0xf80d01,'startOffset':_0x50edcd,'endOffset':_0x1b4ee9};}function _0xcc4d0b(_0x19f4d7,_0x4e4992,_0x589d84,_0x5449c7,_0x5ee2c9,_0xed5cbd){const _0x1fe17c=_0x2273f6;let _0x56ceef=_0xed5cbd>0x1?_0x4d43da[_0x1fe17c(0x2f7)](_0x589d84,_0x5449c7):_0x4d43da[_0x1fe17c(0x359)](_0x589d84,_0x5449c7),_0xf89123=_0xed5cbd>0x1?0x4:0x2,_0x4bedd2=0x0;if(_0x56ceef!==0x0){let _0x52f15b=_0x4d43da[_0x1fe17c(0x3b3)](_0x589d84,_0x5449c7+_0xf89123);_0x4bedd2=_0x5449c7+(_0x56ceef+0x1)*_0x52f15b+_0xf89123;}let _0x4c1bef=_0x4d43da[_0x1fe17c(0x6fc)](_0x589d84,_0x4bedd2+_0x4e4992[_0x19f4d7],_0x4bedd2+_0x4e4992[_0x19f4d7+0x1]);return _0x5ee2c9&&(_0x4c1bef=_0x5ee2c9(_0x4c1bef)),_0x4c1bef;}function _0x1438f8(_0x496c37){const _0x247005=_0x2273f6;let _0x124b01='',_0x47b6f9=['0','1','2','3','4','5','6','7','8','9','.','E','E-',null,'-'];for(;;){let _0x374ef3=_0x496c37[_0x247005(0xc25)](),_0x483f93=_0x374ef3>>0x4,_0x54f302=_0x374ef3&0xf;if(_0x483f93===0xf||(_0x124b01+=_0x47b6f9[_0x483f93],_0x54f302===0xf))break;_0x124b01+=_0x47b6f9[_0x54f302];}return parseFloat(_0x124b01);}function _0x257ac3(_0x4816da,_0xfcad63){const _0xcb7fa9=_0x2273f6;let _0x477744,_0x136c23,_0x5ee9d1,_0x7d2b;if(_0xfcad63===0x1c)return _0x477744=_0x4816da[_0xcb7fa9(0xc25)](),_0x136c23=_0x4816da[_0xcb7fa9(0xc25)](),_0x477744<<0x8|_0x136c23;if(_0xfcad63===0x1d)return _0x477744=_0x4816da[_0xcb7fa9(0xc25)](),_0x136c23=_0x4816da[_0xcb7fa9(0xc25)](),_0x5ee9d1=_0x4816da['parseByte'](),_0x7d2b=_0x4816da['parseByte'](),_0x477744<<0x18|_0x136c23<<0x10|_0x5ee9d1<<0x8|_0x7d2b;if(_0xfcad63===0x1e)return _0x1438f8(_0x4816da);if(_0xfcad63>=0x20&&_0xfcad63<=0xf6)return _0xfcad63-0x8b;if(_0xfcad63>=0xf7&&_0xfcad63<=0xfa)return _0x477744=_0x4816da[_0xcb7fa9(0xc25)](),(_0xfcad63-0xf7)*0x100+_0x477744+0x6c;if(_0xfcad63>=0xfb&&_0xfcad63<=0xfe)return _0x477744=_0x4816da['parseByte'](),-(_0xfcad63-0xfb)*0x100-_0x477744-0x6c;throw Error(_0xcb7fa9(0xc3e)+_0xfcad63);}function _0x1ea48f(_0x529264){const _0x3ce77e=_0x2273f6;let _0x5f2407={};for(let _0x542739=0x0;_0x542739<_0x529264[_0x3ce77e(0xba6)];_0x542739+=0x1){let _0xa3b626=_0x529264[_0x542739][0x0],_0x8c1735=_0x529264[_0x542739][0x1],_0x29d3b0;if(_0x29d3b0=_0x8c1735[_0x3ce77e(0xba6)]===0x1?_0x8c1735[0x0]:_0x8c1735,Object[_0x3ce77e(0x505)][_0x3ce77e(0x9d6)][_0x3ce77e(0x3f4)](_0x5f2407,_0xa3b626)&&!isNaN(_0x5f2407[_0xa3b626]))throw Error(_0x3ce77e(0xa75)+_0x5f2407+_0x3ce77e(0x7e7)+_0xa3b626);_0x5f2407[_0xa3b626]=_0x29d3b0;}return _0x5f2407;}function _0x3e033a(_0x2368be,_0xf6d251,_0x583872,_0x45d8e1){const _0x221965=_0x2273f6;_0xf6d251=_0xf6d251===void 0x0?0x0:_0xf6d251;let _0x5dbad7=new _0x4d43da[(_0x221965(0xb6f))](_0x2368be,_0xf6d251),_0x4df4da=[],_0xbdc911=[];_0x583872=_0x583872===void 0x0?_0x2368be[_0x221965(0xc50)]:_0x583872;let _0x5d0904=_0x45d8e1<0x2?0x16:0x1c;for(;_0x5dbad7[_0x221965(0x7a9)]<_0x583872;){let _0x2bcb8a=_0x5dbad7[_0x221965(0xc25)]();if(_0x2bcb8a<_0x5d0904){if(_0x2bcb8a===0xc&&(_0x2bcb8a=0x4b0+_0x5dbad7[_0x221965(0xc25)]()),_0x45d8e1>0x1&&_0x2bcb8a===0x17){_0x27eb05(_0xbdc911);continue;}_0x4df4da[_0x221965(0x381)]([_0x2bcb8a,_0xbdc911]),_0xbdc911=[];}else _0xbdc911[_0x221965(0x381)](_0x257ac3(_0x5dbad7,_0x2bcb8a,_0x45d8e1));}return _0x1ea48f(_0x4df4da);}function _0x842eb6(_0x2bc093,_0x22afa4){return _0x22afa4=_0x22afa4<=0x186?_0x18ee02[_0x22afa4]:_0x2bc093?_0x2bc093[_0x22afa4-0x187]:void 0x0,_0x22afa4;}function _0x5e0bda(_0x4e340f,_0xed39cf,_0x2cdd78){const _0x534841=_0x2273f6;let _0x1ffc22={},_0x400bf0;for(let _0x4d74f5=0x0;_0x4d74f5<_0xed39cf['length'];_0x4d74f5+=0x1){let _0xac48b0=_0xed39cf[_0x4d74f5];if(Array[_0x534841(0x461)](_0xac48b0[_0x534841(0x2c1)])){let _0x3c9228=[];_0x3c9228[_0x534841(0xba6)]=_0xac48b0[_0x534841(0x2c1)][_0x534841(0xba6)];for(let _0x361728=0x0;_0x361728<_0xac48b0[_0x534841(0x2c1)][_0x534841(0xba6)];_0x361728++)_0x400bf0=_0x4e340f[_0xac48b0['op']]===void 0x0?void 0x0:_0x4e340f[_0xac48b0['op']][_0x361728],_0x400bf0===void 0x0&&(_0x400bf0=_0xac48b0[_0x534841(0x85b)]!==void 0x0&&_0xac48b0[_0x534841(0x85b)][_0x361728]!==void 0x0?_0xac48b0[_0x534841(0x85b)][_0x361728]:null),_0xac48b0[_0x534841(0x2c1)][_0x361728]===_0x534841(0x5c7)&&(_0x400bf0=_0x842eb6(_0x2cdd78,_0x400bf0)),_0x3c9228[_0x361728]=_0x400bf0;_0x1ffc22[_0xac48b0[_0x534841(0x37a)]]=_0x3c9228;}else _0x400bf0=_0x4e340f[_0xac48b0['op']],_0x400bf0===void 0x0&&(_0x400bf0=_0xac48b0[_0x534841(0x85b)]===void 0x0?null:_0xac48b0['value']),_0xac48b0[_0x534841(0x2c1)]===_0x534841(0x5c7)&&(_0x400bf0=_0x842eb6(_0x2cdd78,_0x400bf0)),_0x1ffc22[_0xac48b0[_0x534841(0x37a)]]=_0x400bf0;}return _0x1ffc22;}function _0x3195c7(_0x24271d,_0x1eb6b1){const _0x2cefd4=_0x2273f6;let _0x18487b={};if(_0x18487b[_0x2cefd4(0xc6e)]=_0x4d43da[_0x2cefd4(0x778)](_0x24271d,_0x1eb6b1),_0x18487b[_0x2cefd4(0x6e9)]=_0x4d43da[_0x2cefd4(0x778)](_0x24271d,_0x1eb6b1+0x1),_0x18487b[_0x2cefd4(0xc6e)]>0x2)throw Error(_0x2cefd4(0x6ae)+_0x18487b[_0x2cefd4(0xc6e)]+'.'+_0x18487b[_0x2cefd4(0x6e9)]);return _0x18487b['size']=_0x4d43da['getCard8'](_0x24271d,_0x1eb6b1+0x2),_0x18487b['formatMajor']<0x2?(_0x18487b[_0x2cefd4(0xac0)]=_0x4d43da['getCard8'](_0x24271d,_0x1eb6b1+0x3),_0x18487b['startOffset']=_0x1eb6b1,_0x18487b[_0x2cefd4(0xa5c)]=_0x1eb6b1+0x4):(_0x18487b[_0x2cefd4(0x5f5)]=_0x4d43da[_0x2cefd4(0x359)](_0x24271d,_0x1eb6b1+0x3),_0x18487b[_0x2cefd4(0xa5c)]=_0x1eb6b1+0x8),_0x18487b;}var _0xe2a4dc=[{'name':_0x2273f6(0x250),'op':0x0,'type':_0x2273f6(0x5c7)},{'name':_0x2273f6(0x42d),'op':0x1,'type':_0x2273f6(0x5c7)},{'name':'copyright','op':0x4b0,'type':_0x2273f6(0x5c7)},{'name':_0x2273f6(0x117),'op':0x2,'type':'SID'},{'name':_0x2273f6(0x4d0),'op':0x3,'type':_0x2273f6(0x5c7)},{'name':_0x2273f6(0xb6b),'op':0x4,'type':_0x2273f6(0x5c7)},{'name':_0x2273f6(0x3bf),'op':0x4b1,'type':'number','value':0x0},{'name':'italicAngle','op':0x4b2,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0x4ea),'op':0x4b3,'type':_0x2273f6(0x97e),'value':-0x64},{'name':_0x2273f6(0xa03),'op':0x4b4,'type':'number','value':0x32},{'name':_0x2273f6(0xc70),'op':0x4b5,'type':_0x2273f6(0x97e),'value':0x0},{'name':'charstringType','op':0x4b6,'type':_0x2273f6(0x97e),'value':0x2},{'name':_0x2273f6(0x5e6),'op':0x4b7,'type':[_0x2273f6(0x569),'real',_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569)],'value':[0.001,0x0,0x0,0.001,0x0,0x0]},{'name':_0x2273f6(0x9a7),'op':0xd,'type':_0x2273f6(0x97e)},{'name':'fontBBox','op':0x5,'type':[_0x2273f6(0x97e),_0x2273f6(0x97e),_0x2273f6(0x97e),'number'],'value':[0x0,0x0,0x0,0x0]},{'name':_0x2273f6(0x5ce),'op':0x4b8,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0x22e),'op':0xe,'type':[],'value':null},{'name':'charset','op':0xf,'type':_0x2273f6(0x679),'value':0x0},{'name':_0x2273f6(0x8bb),'op':0x10,'type':_0x2273f6(0x679),'value':0x0},{'name':_0x2273f6(0x6ac),'op':0x11,'type':'offset','value':0x0},{'name':'private','op':0x12,'type':[_0x2273f6(0x97e),_0x2273f6(0x679)],'value':[0x0,0x0]},{'name':_0x2273f6(0x425),'op':0x4ce,'type':[_0x2273f6(0x5c7),_0x2273f6(0x5c7),_0x2273f6(0x97e)]},{'name':_0x2273f6(0x3d6),'op':0x4cf,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0xbfb),'op':0x4d0,'type':_0x2273f6(0x97e),'value':0x0},{'name':'cidFontType','op':0x4d1,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0x7d8),'op':0x4d2,'type':_0x2273f6(0x97e),'value':0x2210},{'name':_0x2273f6(0x136),'op':0x4d3,'type':_0x2273f6(0x97e)},{'name':_0x2273f6(0x98d),'op':0x4d4,'type':'offset'},{'name':_0x2273f6(0x467),'op':0x4d5,'type':'offset'},{'name':_0x2273f6(0x4dc),'op':0x4d6,'type':_0x2273f6(0x5c7)}],_0x277736=[{'name':_0x2273f6(0x5e6),'op':0x4b7,'type':[_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569),_0x2273f6(0x569)],'value':[0.001,0x0,0x0,0.001,0x0,0x0]},{'name':_0x2273f6(0x6ac),'op':0x11,'type':_0x2273f6(0x679)},{'name':_0x2273f6(0x98d),'op':0x4d4,'type':'offset'},{'name':_0x2273f6(0x467),'op':0x4d5,'type':'offset'},{'name':'vstore','op':0x18,'type':'offset'}],_0x283031=[{'name':_0x2273f6(0xb14),'op':0x13,'type':'offset','value':0x0},{'name':_0x2273f6(0x4ba),'op':0x14,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0x340),'op':0x15,'type':'number','value':0x0}],_0x428d69=[{'name':_0x2273f6(0x7a0),'op':0x6,'type':_0x2273f6(0x61d)},{'name':_0x2273f6(0x5aa),'op':0x7,'type':_0x2273f6(0x61d)},{'name':_0x2273f6(0x5a1),'op':0x7,'type':_0x2273f6(0x61d)},{'name':'familyBlues','op':0x8,'type':_0x2273f6(0x61d)},{'name':'familyOtherBlues','op':0x9,'type':_0x2273f6(0x61d)},{'name':_0x2273f6(0x245),'op':0x4b9,'type':_0x2273f6(0x97e),'value':0.039625},{'name':_0x2273f6(0xc7b),'op':0x4ba,'type':_0x2273f6(0x97e),'value':0x7},{'name':_0x2273f6(0x295),'op':0x4bb,'type':_0x2273f6(0x97e),'value':0x1},{'name':_0x2273f6(0x318),'op':0xa,'type':_0x2273f6(0x97e)},{'name':_0x2273f6(0x884),'op':0xb,'type':_0x2273f6(0x97e)},{'name':'stemSnapH','op':0x4bc,'type':'number'},{'name':_0x2273f6(0x2ea),'op':0x4bd,'type':_0x2273f6(0x97e)},{'name':_0x2273f6(0x844),'op':0x4c1,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0x997),'op':0x4c2,'type':'number','value':0.06},{'name':_0x2273f6(0x231),'op':0x16,'type':_0x2273f6(0x97e),'value':0x0},{'name':_0x2273f6(0xb14),'op':0x13,'type':'offset'}],_0xbefed1=[{'name':_0x2273f6(0x49c),'op':0x12,'type':[_0x2273f6(0x97e),_0x2273f6(0x679)],'value':[0x0,0x0]}];function _0xb5bbcd(_0x30c3d0,_0x3628c4,_0x265d10,_0x49193e){const _0xcc7327=_0x2273f6;return _0x5e0bda(_0x3e033a(_0x30c3d0,_0x3628c4,_0x30c3d0[_0xcc7327(0xc50)],_0x49193e),_0x49193e>0x1?_0x277736:_0xe2a4dc,_0x265d10);}function _0x53c8f3(_0x4b44e5,_0x3eccfe,_0x19beaa,_0x28f5b2,_0x1408fc){return _0x5e0bda(_0x3e033a(_0x4b44e5,_0x3eccfe,_0x19beaa,_0x1408fc),_0x1408fc>0x1?_0x428d69:_0x283031,_0x28f5b2);}function _0x3bf8f6(_0x259161,_0x19801b,_0x558dbc){return _0x5e0bda(_0x3e033a(_0x259161,_0x19801b,void 0x0,_0x558dbc),_0xbefed1);}function _0x489de7(_0xbe68f4,_0x4e6432,_0xa0a90){const _0x449e85=_0x2273f6;let _0xdf597f=[];for(let _0x139faf=0x0;_0x139faf<_0xa0a90[_0x449e85(0xba6)];_0x139faf++){let _0x1f3942=_0x3bf8f6(new DataView(new Uint8Array(_0xa0a90[_0x139faf])[_0x449e85(0x1e6)]),0x0,0x2),_0x3e980b=_0x1f3942[_0x449e85(0x49c)][0x0],_0x31f793=_0x1f3942[_0x449e85(0x49c)][0x1];if(_0x3e980b!==0x0&&_0x31f793!==0x0){let _0x4facf5=_0x53c8f3(_0xbe68f4,_0x31f793+_0x4e6432,_0x3e980b,[],0x2);_0x4facf5[_0x449e85(0xb14)]&&(_0x1f3942['_subrs']=_0x5a6319(_0xbe68f4,_0x31f793+_0x4facf5[_0x449e85(0xb14)]+_0x4e6432,void 0x0,0x2)['objects'],_0x1f3942[_0x449e85(0xb97)]=_0x2b3c2b(_0x1f3942['_subrs'])),_0x1f3942[_0x449e85(0x382)]=_0x4facf5;}_0xdf597f['push'](_0x1f3942);}return _0xdf597f;}function _0x102f4d(_0x316923,_0x12036a,_0x46dc96,_0x7807e5,_0x328277){const _0x2a8642=_0x2273f6;let _0xa6271f=[];for(let _0x463d53=0x0;_0x463d53<_0x46dc96['length'];_0x463d53+=0x1){let _0x3268b9=_0xb5bbcd(new DataView(new Uint8Array(_0x46dc96[_0x463d53])[_0x2a8642(0x1e6)]),0x0,_0x7807e5,_0x328277);_0x3268b9[_0x2a8642(0x81b)]=[],_0x3268b9[_0x2a8642(0xb97)]=0x0,_0x3268b9['_defaultWidthX']=0x0,_0x3268b9[_0x2a8642(0x653)]=0x0;let _0x1188d6=_0x328277<0x2?_0x3268b9[_0x2a8642(0x49c)][0x0]:0x0,_0x12feec=_0x328277<0x2?_0x3268b9['private'][0x1]:0x0;if(_0x1188d6!==0x0&&_0x12feec!==0x0){let _0x3aac4c=_0x53c8f3(_0x316923,_0x12feec+_0x12036a,_0x1188d6,_0x7807e5,_0x328277);_0x3268b9[_0x2a8642(0x729)]=_0x3aac4c['defaultWidthX'],_0x3268b9[_0x2a8642(0x653)]=_0x3aac4c[_0x2a8642(0x340)],_0x3aac4c[_0x2a8642(0xb14)]!==0x0&&(_0x3268b9[_0x2a8642(0x81b)]=_0x5a6319(_0x316923,_0x12feec+_0x3aac4c[_0x2a8642(0xb14)]+_0x12036a,void 0x0,_0x328277)[_0x2a8642(0x41f)],_0x3268b9[_0x2a8642(0xb97)]=_0x2b3c2b(_0x3268b9[_0x2a8642(0x81b)])),_0x3268b9['_privateDict']=_0x3aac4c;}_0xa6271f['push'](_0x3268b9);}return _0xa6271f;}function _0x250760(_0x4dcdde,_0x443881,_0x2da04e,_0x4cc9af,_0x169b67){const _0x49e8fc=_0x2273f6;let _0x544765,_0x1b88ba,_0x4fa04b=new _0x4d43da[(_0x49e8fc(0xb6f))](_0x4dcdde,_0x443881);--_0x2da04e;let _0xfd4dce=[_0x49e8fc(0x52a)],_0x43ffa1=_0x4fa04b[_0x49e8fc(0x316)]();if(_0x43ffa1===0x0){for(let _0x174f2a=0x0;_0x174f2a<_0x2da04e;_0x174f2a+=0x1)_0x544765=_0x4fa04b['parseSID'](),_0x169b67?_0xfd4dce[_0x49e8fc(0x381)](_0x544765):_0xfd4dce[_0x49e8fc(0x381)](_0x842eb6(_0x4cc9af,_0x544765)||_0x544765);}else{if(_0x43ffa1===0x1)for(;_0xfd4dce[_0x49e8fc(0xba6)]<=_0x2da04e;){_0x544765=_0x4fa04b[_0x49e8fc(0x446)](),_0x1b88ba=_0x4fa04b[_0x49e8fc(0x316)]();for(let _0xaca318=0x0;_0xaca318<=_0x1b88ba;_0xaca318+=0x1)_0x169b67?_0xfd4dce[_0x49e8fc(0x381)](_0x49e8fc(0x55a)+(_0x49e8fc(0x5ea)+_0x544765)[_0x49e8fc(0x688)](-0x5)):_0xfd4dce[_0x49e8fc(0x381)](_0x842eb6(_0x4cc9af,_0x544765)||_0x544765),_0x544765+=0x1;}else{if(_0x43ffa1===0x2)for(;_0xfd4dce[_0x49e8fc(0xba6)]<=_0x2da04e;){_0x544765=_0x4fa04b[_0x49e8fc(0x446)](),_0x1b88ba=_0x4fa04b[_0x49e8fc(0x823)]();for(let _0x322d39=0x0;_0x322d39<=_0x1b88ba;_0x322d39+=0x1)_0x169b67?_0xfd4dce[_0x49e8fc(0x381)](_0x49e8fc(0x55a)+(_0x49e8fc(0x5ea)+_0x544765)[_0x49e8fc(0x688)](-0x5)):_0xfd4dce['push'](_0x842eb6(_0x4cc9af,_0x544765)||_0x544765),_0x544765+=0x1;}else throw Error('Unknown\x20charset\x20format\x20'+_0x43ffa1);}}return _0xfd4dce;}function _0x29387f(_0x308eaf,_0x2ef810){const _0x214205=_0x2273f6;let _0x4c946b,_0x2e9ae9={},_0x4f0e58=new _0x4d43da[(_0x214205(0xb6f))](_0x308eaf,_0x2ef810),_0x14840a=_0x4f0e58[_0x214205(0x316)]();if(_0x14840a===0x0){let _0x2f162f=_0x4f0e58[_0x214205(0x316)]();for(let _0x597c9c=0x0;_0x597c9c<_0x2f162f;_0x597c9c+=0x1)_0x4c946b=_0x4f0e58[_0x214205(0x316)](),_0x2e9ae9[_0x4c946b]=_0x597c9c;}else{if(_0x14840a===0x1){let _0x4f2167=_0x4f0e58['parseCard8']();_0x4c946b=0x1;for(let _0x12ecdf=0x0;_0x12ecdf<_0x4f2167;_0x12ecdf+=0x1){let _0x4e1866=_0x4f0e58[_0x214205(0x316)](),_0x184efb=_0x4f0e58[_0x214205(0x316)]();for(let _0x1d6160=_0x4e1866;_0x1d6160<=_0x4e1866+_0x184efb;_0x1d6160+=0x1)_0x2e9ae9[_0x1d6160]=_0x4c946b,_0x4c946b+=0x1;}}else throw Error('Unknown\x20encoding\x20format\x20'+_0x14840a);}return _0x2e9ae9;}function _0x27eb05(_0x3f6c5d){const _0x335446=_0x2273f6;let _0x36de83=_0x3f6c5d[_0x335446(0x8f2)]();for(;_0x3f6c5d[_0x335446(0xba6)]>_0x36de83;)_0x3f6c5d[_0x335446(0x8f2)]();}function _0x59cf37(_0x4fdb78,_0x5ac5e7){const _0x69ebd2=_0x2273f6;let _0x819afd=_0x4fdb78['tables'][_0x69ebd2(0x799)]&&_0x4fdb78['tables'][_0x69ebd2(0x799)][_0x69ebd2(0xa10)]&&_0x4fdb78[_0x69ebd2(0x796)][_0x69ebd2(0x799)]['topDict'][_0x69ebd2(0xc70)]||0x0;return _0x819afd===0x2&&(_0x5ac5e7[_0x69ebd2(0x9ae)]=null,_0x5ac5e7[_0x69ebd2(0xa25)]=_0x69ebd2(0x4df),_0x5ac5e7[_0x69ebd2(0x5ce)]=_0x4fdb78[_0x69ebd2(0x796)][_0x69ebd2(0x799)][_0x69ebd2(0xa10)][_0x69ebd2(0x5ce)]||0x0),_0x819afd;}function _0x310886(_0x5bc07d,_0x1aaf7c,_0x2ae567,_0x158d35,_0x1914da){const _0x804fbe=_0x2273f6;let _0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x14d442=new _0x4cc193(),_0x591fe4=[],_0xdc3619=0x0,_0x483e11=!0x1,_0x309307=!0x1,_0x4aaddc=0x0,_0x1d3ef0=0x0,_0x5c8567,_0x4a353a,_0x3bb9e9,_0x24bb98,_0x5dfd9a=0x0,_0xe32940=[],_0x59627f,_0x54e3e0=0x0,_0x5727af=_0x5bc07d[_0x804fbe(0x796)][_0x804fbe(0x2d1)]||_0x5bc07d[_0x804fbe(0x796)][_0x804fbe(0x799)];if(_0x3bb9e9=_0x5727af[_0x804fbe(0xa10)][_0x804fbe(0x729)],_0x24bb98=_0x5727af['topDict']['_nominalWidthX'],_0x1914da=_0x1914da||_0x5bc07d[_0x804fbe(0x800)]&&_0x5bc07d['variation']['get'](),_0x1aaf7c[_0x804fbe(0x1f9)]||(_0x1aaf7c[_0x804fbe(0x1f9)]=function(_0x6ef093){return _0x310886(_0x5bc07d,_0x1aaf7c,_0x2ae567,_0x158d35,_0x6ef093);}),_0x5bc07d['isCIDFont']||_0x158d35>0x1){let _0x9cd007=_0x5727af['topDict']['_fdSelect']?_0x5727af['topDict']['_fdSelect'][_0x1aaf7c[_0x804fbe(0x2c6)]]:0x0,_0xec8ecc=_0x5727af[_0x804fbe(0xa10)][_0x804fbe(0x3fe)][_0x9cd007];_0x5c8567=_0xec8ecc[_0x804fbe(0x81b)],_0x4a353a=_0xec8ecc[_0x804fbe(0xb97)],_0x158d35>0x1?(_0xe32940=_0x5727af[_0x804fbe(0xa10)]['_vstore'][_0x804fbe(0x2bf)],_0x5dfd9a=_0xec8ecc['_privateDict'][_0x804fbe(0x231)]):(_0x3bb9e9=_0xec8ecc[_0x804fbe(0x729)],_0x24bb98=_0xec8ecc[_0x804fbe(0x653)]);}else _0x5c8567=_0x5727af[_0x804fbe(0xa10)][_0x804fbe(0x81b)],_0x4a353a=_0x5727af[_0x804fbe(0xa10)][_0x804fbe(0xb97)];let _0x523498=_0x59cf37(_0x5bc07d,_0x14d442),_0x4ae2ea=_0x3bb9e9;function _0x3cd32c(_0x3d66d8,_0x38becc){const _0x5c3c73=_0x804fbe;_0x309307&&_0x523498!==0x2&&_0x14d442[_0x5c3c73(0x427)](),_0x14d442[_0x5c3c73(0x80a)](_0x3d66d8,_0x38becc),_0x309307=!0x0;}function _0x1bc8fc(){const _0x1edd31=_0x804fbe;let _0x541de0;_0x541de0=(_0x591fe4[_0x1edd31(0xba6)]&0x1)!=0x0,_0x541de0&&!_0x483e11&&(_0x4ae2ea=_0x591fe4[_0x1edd31(0x5b2)]()+_0x24bb98),_0xdc3619+=_0x591fe4['length']>>0x1,_0x591fe4['length']=0x0,_0x483e11=!0x0;}function _0x2f5123(_0x9cbd3f){const _0x361ba5=_0x804fbe;let _0x23b310,_0x3d9b2e,_0x1e8d5c,_0x25eeb2,_0x27fa55,_0x9d686e,_0x3535bf,_0x1e5107,_0x211666,_0x4e47dd,_0x34c038,_0x1a6f18,_0x151a74=0x0;for(;_0x151a74<_0x9cbd3f['length'];){let _0x49082c=_0x9cbd3f[_0x151a74];switch(_0x151a74+=0x1,_0x49082c){case 0x1:_0x1bc8fc();break;case 0x3:_0x1bc8fc();break;case 0x4:_0x591fe4['length']>0x1&&!_0x483e11&&(_0x4ae2ea=_0x591fe4[_0x361ba5(0x5b2)]()+_0x24bb98,_0x483e11=!0x0),_0x1d3ef0+=_0x591fe4[_0x361ba5(0x8f2)](),_0x3cd32c(_0x4aaddc,_0x1d3ef0);break;case 0x5:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0;)_0x4aaddc+=_0x591fe4['shift'](),_0x1d3ef0+=_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0);break;case 0x6:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0&&(_0x4aaddc+=_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0),_0x591fe4[_0x361ba5(0xba6)]!==0x0);)_0x1d3ef0+=_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0);break;case 0x7:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0&&(_0x1d3ef0+=_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0),_0x591fe4[_0x361ba5(0xba6)]!==0x0);)_0x4aaddc+=_0x591fe4['shift'](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0);break;case 0x8:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0;)_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4['shift'](),_0x4aaddc=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;case 0xa:if(_0x27fa55=_0x591fe4[_0x361ba5(0x8f2)]()+_0x4a353a,_0x9d686e=_0x5c8567[_0x27fa55],_0x9d686e){if(_0x54e3e0>=_0x4151d0){console[_0x361ba5(0xc59)]('CFF\x20charstring\x20subroutine\x20call\x20depth\x20exceeded,\x20skipping\x20callsubr');break;}_0x54e3e0++,_0x2f5123(_0x9d686e),_0x54e3e0--;}break;case 0xb:if(_0x158d35>0x1){console[_0x361ba5(0x9d7)](_0x361ba5(0x287));break;}return;case 0xc:switch(_0x49082c=_0x9cbd3f[_0x151a74],_0x151a74+=0x1,_0x49082c){case 0x23:_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4['shift'](),_0x3535bf=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1e5107=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x211666=_0x3535bf+_0x591fe4[_0x361ba5(0x5b2)](),_0x4e47dd=_0x1e5107+_0x591fe4[_0x361ba5(0x5b2)](),_0x34c038=_0x211666+_0x591fe4[_0x361ba5(0x5b2)](),_0x1a6f18=_0x4e47dd+_0x591fe4['shift'](),_0x4aaddc=_0x34c038+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0x1a6f18+_0x591fe4[_0x361ba5(0x5b2)](),_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x3535bf,_0x1e5107),_0x14d442[_0x361ba5(0x734)](_0x211666,_0x4e47dd,_0x34c038,_0x1a6f18,_0x4aaddc,_0x1d3ef0);break;case 0x22:_0xbae76e=_0x4aaddc+_0x591fe4['shift'](),_0x1607db=_0x1d3ef0,_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x3535bf=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1e5107=_0xcad440,_0x211666=_0x3535bf+_0x591fe4[_0x361ba5(0x5b2)](),_0x4e47dd=_0xcad440,_0x34c038=_0x211666+_0x591fe4[_0x361ba5(0x5b2)](),_0x1a6f18=_0x1d3ef0,_0x4aaddc=_0x34c038+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x3535bf,_0x1e5107),_0x14d442['curveTo'](_0x211666,_0x4e47dd,_0x34c038,_0x1a6f18,_0x4aaddc,_0x1d3ef0);break;case 0x24:_0xbae76e=_0x4aaddc+_0x591fe4['shift'](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x3535bf=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1e5107=_0xcad440,_0x211666=_0x3535bf+_0x591fe4[_0x361ba5(0x5b2)](),_0x4e47dd=_0xcad440,_0x34c038=_0x211666+_0x591fe4[_0x361ba5(0x5b2)](),_0x1a6f18=_0x4e47dd+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x34c038+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x3535bf,_0x1e5107),_0x14d442[_0x361ba5(0x734)](_0x211666,_0x4e47dd,_0x34c038,_0x1a6f18,_0x4aaddc,_0x1d3ef0);break;case 0x25:_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4['shift'](),_0x3535bf=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1e5107=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x211666=_0x3535bf+_0x591fe4['shift'](),_0x4e47dd=_0x1e5107+_0x591fe4[_0x361ba5(0x5b2)](),_0x34c038=_0x211666+_0x591fe4['shift'](),_0x1a6f18=_0x4e47dd+_0x591fe4[_0x361ba5(0x5b2)](),Math['abs'](_0x34c038-_0x4aaddc)>Math[_0x361ba5(0x7f7)](_0x1a6f18-_0x1d3ef0)?_0x4aaddc=_0x34c038+_0x591fe4['shift']():_0x1d3ef0=_0x1a6f18+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x3535bf,_0x1e5107),_0x14d442['curveTo'](_0x211666,_0x4e47dd,_0x34c038,_0x1a6f18,_0x4aaddc,_0x1d3ef0);break;default:console[_0x361ba5(0x9ff)](_0x361ba5(0x96e)+_0x1aaf7c[_0x361ba5(0x2c6)]+_0x361ba5(0x320)+_0x49082c),_0x591fe4[_0x361ba5(0xba6)]=0x0;}break;case 0xe:if(_0x158d35>0x1){console[_0x361ba5(0x9d7)](_0x361ba5(0x1d5));break;}if(_0x591fe4[_0x361ba5(0xba6)]>=0x4){let _0xbe2ebb=_0x495436[_0x591fe4[_0x361ba5(0x8f2)]()],_0x4c2d9d=_0x495436[_0x591fe4[_0x361ba5(0x8f2)]()],_0x37e648=_0x591fe4[_0x361ba5(0x8f2)](),_0x51cd6e=_0x591fe4['pop']();if(_0xbe2ebb&&_0x4c2d9d){_0x1aaf7c['isComposite']=!0x0,_0x1aaf7c[_0x361ba5(0x667)]=[];let _0x2198f3=_0x5bc07d[_0x361ba5(0x533)][_0x361ba5(0x863)][_0x361ba5(0x709)](_0xbe2ebb),_0x3b009a=_0x5bc07d[_0x361ba5(0x533)]['charset']['indexOf'](_0x4c2d9d);_0x1aaf7c['components'][_0x361ba5(0x381)]({'glyphIndex':_0x3b009a,'dx':0x0,'dy':0x0}),_0x1aaf7c[_0x361ba5(0x667)]['push']({'glyphIndex':_0x2198f3,'dx':_0x51cd6e,'dy':_0x37e648}),_0x14d442[_0x361ba5(0xc8f)](_0x5bc07d[_0x361ba5(0x70a)][_0x361ba5(0x2ad)](_0x3b009a)[_0x361ba5(0x36c)]);let _0x2d67c7=_0x5bc07d[_0x361ba5(0x70a)][_0x361ba5(0x2ad)](_0x2198f3),_0x12b2d4=JSON[_0x361ba5(0x54d)](JSON[_0x361ba5(0x9aa)](_0x2d67c7[_0x361ba5(0x36c)]['commands']));for(let _0x16340c=0x0;_0x16340c<_0x12b2d4[_0x361ba5(0xba6)];_0x16340c+=0x1){let _0x35900c=_0x12b2d4[_0x16340c];_0x35900c[_0x361ba5(0x2c1)]!=='Z'&&(_0x35900c['x']+=_0x51cd6e,_0x35900c['y']+=_0x37e648),(_0x35900c[_0x361ba5(0x2c1)]==='Q'||_0x35900c[_0x361ba5(0x2c1)]==='C')&&(_0x35900c['x1']+=_0x51cd6e,_0x35900c['y1']+=_0x37e648),_0x35900c[_0x361ba5(0x2c1)]==='C'&&(_0x35900c['x2']+=_0x51cd6e,_0x35900c['y2']+=_0x37e648);}_0x14d442[_0x361ba5(0xc8f)](_0x12b2d4);}}else _0x591fe4['length']>0x0&&!_0x483e11&&(_0x4ae2ea=_0x591fe4['shift']()+_0x24bb98,_0x483e11=!0x0);_0x309307&&_0x523498!==0x2&&(_0x14d442[_0x361ba5(0x427)](),_0x309307=!0x1);break;case 0xf:if(_0x158d35<0x2){console[_0x361ba5(0x9d7)](_0x361ba5(0x3f8));break;}_0x5dfd9a=_0x591fe4[_0x361ba5(0x8f2)]();break;case 0x10:if(_0x158d35<0x2){console[_0x361ba5(0x9d7)]('CFF2\x20CharString\x20operator\x20blend\x20(16)\x20is\x20not\x20supported\x20in\x20CFF');break;}_0x59627f||(_0x59627f=_0x5bc07d[_0x361ba5(0x800)]&&_0x1914da&&_0x5bc07d[_0x361ba5(0x800)][_0x361ba5(0xa42)][_0x361ba5(0xaf5)](_0xe32940,_0x5dfd9a,_0x1914da));var _0x52470a=_0x591fe4[_0x361ba5(0x8f2)](),_0x37699d=_0x59627f?_0x59627f[_0x361ba5(0xba6)]:_0xe32940[_0x361ba5(0x789)][_0x5dfd9a][_0x361ba5(0xc43)][_0x361ba5(0xba6)],_0x28adf6=_0x52470a*_0x37699d,_0x2b05d5=_0x591fe4[_0x361ba5(0xba6)]-_0x28adf6,_0x381c23=_0x2b05d5-_0x52470a;if(_0x59627f)for(let _0x27d470=0x0;_0x27d470<_0x52470a;_0x27d470++){var _0x25bad2=_0x591fe4[_0x381c23+_0x27d470];for(let _0x2dae30=0x0;_0x2dae30<_0x37699d;_0x2dae30++)_0x25bad2+=_0x59627f[_0x2dae30]*_0x591fe4[_0x2b05d5++];_0x591fe4[_0x381c23+_0x27d470]=_0x25bad2;}for(;_0x28adf6--;)_0x591fe4[_0x361ba5(0x8f2)]();break;case 0x12:_0x1bc8fc();break;case 0x13:case 0x14:_0x1bc8fc(),_0x151a74+=_0xdc3619+0x7>>0x3;break;case 0x15:_0x591fe4[_0x361ba5(0xba6)]>0x2&&!_0x483e11&&(_0x4ae2ea=_0x591fe4['shift']()+_0x24bb98,_0x483e11=!0x0),_0x1d3ef0+=_0x591fe4[_0x361ba5(0x8f2)](),_0x4aaddc+=_0x591fe4[_0x361ba5(0x8f2)](),_0x3cd32c(_0x4aaddc,_0x1d3ef0);break;case 0x16:_0x591fe4[_0x361ba5(0xba6)]>0x1&&!_0x483e11&&(_0x4ae2ea=_0x591fe4['shift']()+_0x24bb98,_0x483e11=!0x0),_0x4aaddc+=_0x591fe4[_0x361ba5(0x8f2)](),_0x3cd32c(_0x4aaddc,_0x1d3ef0);break;case 0x17:_0x1bc8fc();break;case 0x18:for(;_0x591fe4[_0x361ba5(0xba6)]>0x2;)_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4['shift'](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442['curveTo'](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);_0x4aaddc+=_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0+=_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0);break;case 0x19:for(;_0x591fe4[_0x361ba5(0xba6)]>0x6;)_0x4aaddc+=_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0+=_0x591fe4['shift'](),_0x14d442[_0x361ba5(0x5be)](_0x4aaddc,_0x1d3ef0);_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;case 0x1a:for(_0x591fe4[_0x361ba5(0xba6)]&0x1&&(_0x4aaddc+=_0x591fe4[_0x361ba5(0x5b2)]());_0x591fe4['length']>0x0;)_0xbae76e=_0x4aaddc,_0x1607db=_0x1d3ef0+_0x591fe4['shift'](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4['shift'](),_0x4aaddc=_0x4f4794,_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x14d442['curveTo'](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;case 0x1b:for(_0x591fe4[_0x361ba5(0xba6)]&0x1&&(_0x1d3ef0+=_0x591fe4[_0x361ba5(0x5b2)]());_0x591fe4[_0x361ba5(0xba6)]>0x0;)_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0,_0x4f4794=_0xbae76e+_0x591fe4['shift'](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+_0x591fe4['shift'](),_0x1d3ef0=_0xcad440,_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;case 0x1c:_0x23b310=_0x9cbd3f[_0x151a74],_0x3d9b2e=_0x9cbd3f[_0x151a74+0x1],_0x591fe4[_0x361ba5(0x381)]((_0x23b310<<0x18|_0x3d9b2e<<0x10)>>0x10),_0x151a74+=0x2;break;case 0x1d:if(_0x27fa55=_0x591fe4[_0x361ba5(0x8f2)]()+_0x5bc07d['gsubrsBias'],_0x9d686e=_0x5bc07d['gsubrs'][_0x27fa55],_0x9d686e){if(_0x54e3e0>=_0x4151d0){console[_0x361ba5(0xc59)]('CFF\x20charstring\x20subroutine\x20call\x20depth\x20exceeded,\x20skipping\x20callgsubr');break;}_0x54e3e0++,_0x2f5123(_0x9d686e),_0x54e3e0--;}break;case 0x1e:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0&&(_0xbae76e=_0x4aaddc,_0x1607db=_0x1d3ef0+_0x591fe4[_0x361ba5(0x5b2)](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+(_0x591fe4['length']===0x1?_0x591fe4[_0x361ba5(0x5b2)]():0x0),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0),_0x591fe4[_0x361ba5(0xba6)]!==0x0);)_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0,_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+(_0x591fe4[_0x361ba5(0xba6)]===0x1?_0x591fe4[_0x361ba5(0x5b2)]():0x0),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;case 0x1f:for(;_0x591fe4[_0x361ba5(0xba6)]>0x0&&(_0xbae76e=_0x4aaddc+_0x591fe4[_0x361ba5(0x5b2)](),_0x1607db=_0x1d3ef0,_0x4f4794=_0xbae76e+_0x591fe4['shift'](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+(_0x591fe4[_0x361ba5(0xba6)]===0x1?_0x591fe4[_0x361ba5(0x5b2)]():0x0),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0),_0x591fe4[_0x361ba5(0xba6)]!==0x0);)_0xbae76e=_0x4aaddc,_0x1607db=_0x1d3ef0+_0x591fe4['shift'](),_0x4f4794=_0xbae76e+_0x591fe4[_0x361ba5(0x5b2)](),_0xcad440=_0x1607db+_0x591fe4[_0x361ba5(0x5b2)](),_0x4aaddc=_0x4f4794+_0x591fe4[_0x361ba5(0x5b2)](),_0x1d3ef0=_0xcad440+(_0x591fe4[_0x361ba5(0xba6)]===0x1?_0x591fe4[_0x361ba5(0x5b2)]():0x0),_0x14d442[_0x361ba5(0x734)](_0xbae76e,_0x1607db,_0x4f4794,_0xcad440,_0x4aaddc,_0x1d3ef0);break;default:_0x49082c<0x20?console[_0x361ba5(0x9ff)]('Glyph\x20'+_0x1aaf7c[_0x361ba5(0x2c6)]+_0x361ba5(0x7e8)+_0x49082c):_0x49082c<0xf7?_0x591fe4[_0x361ba5(0x381)](_0x49082c-0x8b):_0x49082c<0xfb?(_0x23b310=_0x9cbd3f[_0x151a74],_0x151a74+=0x1,_0x591fe4[_0x361ba5(0x381)]((_0x49082c-0xf7)*0x100+_0x23b310+0x6c)):_0x49082c<0xff?(_0x23b310=_0x9cbd3f[_0x151a74],_0x151a74+=0x1,_0x591fe4[_0x361ba5(0x381)](-(_0x49082c-0xfb)*0x100-_0x23b310-0x6c)):(_0x23b310=_0x9cbd3f[_0x151a74],_0x3d9b2e=_0x9cbd3f[_0x151a74+0x1],_0x1e8d5c=_0x9cbd3f[_0x151a74+0x2],_0x25eeb2=_0x9cbd3f[_0x151a74+0x3],_0x151a74+=0x4,_0x591fe4['push']((_0x23b310<<0x18|_0x3d9b2e<<0x10|_0x1e8d5c<<0x8|_0x25eeb2)/0x10000));}}}return _0x2f5123(_0x2ae567),_0x5bc07d[_0x804fbe(0x800)]&&_0x1914da&&(_0x14d442[_0x804fbe(0x440)]=_0x14d442['commands'][_0x804fbe(0xb06)](_0x495bc7=>{const _0x293d97=_0x804fbe;let _0x143827=Object[_0x293d97(0x3ed)](_0x495bc7);for(let _0x232453=0x0;_0x232453<_0x143827['length'];_0x232453++){let _0x463bbb=_0x143827[_0x232453];_0x463bbb!==_0x293d97(0x2c1)&&(_0x495bc7[_0x463bbb]=Math[_0x293d97(0x157)](_0x495bc7[_0x463bbb]));}return _0x495bc7;})),_0x483e11&&(_0x1aaf7c[_0x804fbe(0x355)]=_0x4ae2ea),_0x14d442;}function _0x400724(_0x3839a0,_0x4ae1bf,_0x1ac535,_0x4d7855,_0xee0762){const _0x52a3eb=_0x2273f6;let _0xe41d7=[],_0x44a344,_0x48a8df=new _0x4d43da[(_0x52a3eb(0xb6f))](_0x3839a0,_0x4ae1bf),_0x3426ee=_0x48a8df[_0x52a3eb(0x316)]();if(_0x3426ee===0x0)for(let _0x2b4983=0x0;_0x2b4983<_0x1ac535;_0x2b4983++){if(_0x44a344=_0x48a8df[_0x52a3eb(0x316)](),_0x44a344>=_0x4d7855)throw Error(_0x52a3eb(0xa96)+_0x44a344+'\x20(FD\x20count\x20'+_0x4d7855+')');_0xe41d7[_0x52a3eb(0x381)](_0x44a344);}else{if(_0x3426ee===0x3||_0xee0762>0x1&&_0x3426ee===0x4){let _0x480638=_0x3426ee===0x4?_0x48a8df[_0x52a3eb(0x398)]():_0x48a8df['parseCard16'](),_0x14c921=_0x3426ee===0x4?_0x48a8df[_0x52a3eb(0x398)]():_0x48a8df[_0x52a3eb(0x823)]();if(_0x14c921!==0x0)throw Error(_0x52a3eb(0x55c)+_0x3426ee+_0x52a3eb(0x173)+_0x14c921);let _0x4df0b3;for(let _0x23f2e3=0x0;_0x23f2e3<_0x480638;_0x23f2e3++){if(_0x44a344=_0x3426ee===0x4?_0x48a8df[_0x52a3eb(0x260)]():_0x48a8df['parseCard8'](),_0x4df0b3=_0x3426ee===0x4?_0x48a8df[_0x52a3eb(0x398)]():_0x48a8df[_0x52a3eb(0x823)](),_0x44a344>=_0x4d7855)throw Error(_0x52a3eb(0xa96)+_0x44a344+_0x52a3eb(0x872)+_0x4d7855+')');if(_0x4df0b3>_0x1ac535)throw Error('CFF\x20Table\x20CID\x20Font\x20FDSelect\x20format\x20'+_0xee0762+'\x20range\x20has\x20bad\x20GID\x20'+_0x4df0b3);for(;_0x14c921<_0x4df0b3;_0x14c921++)_0xe41d7[_0x52a3eb(0x381)](_0x44a344);_0x14c921=_0x4df0b3;}if(_0x4df0b3!==_0x1ac535)throw Error(_0x52a3eb(0x9e2)+_0x4df0b3);}else throw Error(_0x52a3eb(0x6b3)+_0x3426ee);}return _0xe41d7;}function _0x27b50c(_0x283280,_0x4dd9e7,_0xbf019f,_0x3dbf45){const _0xe3d3ec=_0x2273f6;let _0x587307,_0x16c39a=_0x3195c7(_0x283280,_0x4dd9e7);_0x587307=_0x16c39a['formatMajor']===0x2?_0xbf019f[_0xe3d3ec(0x796)][_0xe3d3ec(0x2d1)]={}:_0xbf019f['tables'][_0xe3d3ec(0x799)]={};let _0x2928d5=_0x16c39a[_0xe3d3ec(0xc6e)]>0x1?null:_0x5a6319(_0x283280,_0x16c39a[_0xe3d3ec(0xa5c)],_0x4d43da[_0xe3d3ec(0x804)]),_0x27cdbb=_0x16c39a['formatMajor']>0x1?null:_0x5a6319(_0x283280,_0x2928d5['endOffset']),_0x4a4340=_0x16c39a[_0xe3d3ec(0xc6e)]>0x1?null:_0x5a6319(_0x283280,_0x27cdbb[_0xe3d3ec(0xa5c)],_0x4d43da[_0xe3d3ec(0x804)]);_0xbf019f['gsubrs']=_0x5a6319(_0x283280,_0x16c39a[_0xe3d3ec(0xc6e)]>0x1?_0x4dd9e7+_0x16c39a['size']+_0x16c39a[_0xe3d3ec(0x5f5)]:_0x4a4340[_0xe3d3ec(0xa5c)],void 0x0,_0x16c39a['formatMajor'])[_0xe3d3ec(0x41f)],_0xbf019f[_0xe3d3ec(0x730)]=_0x2b3c2b(_0xbf019f[_0xe3d3ec(0xbc3)]);let _0x3397ee;if(_0x16c39a[_0xe3d3ec(0xc6e)]>0x1){let _0x59fc6e=_0x4dd9e7+_0x16c39a[_0xe3d3ec(0x71b)];_0x3397ee=_0x102f4d(_0x283280,0x0,[_0x4d43da[_0xe3d3ec(0x6fc)](_0x283280,_0x59fc6e,_0x59fc6e+_0x16c39a[_0xe3d3ec(0x5f5)])],void 0x0,_0x16c39a[_0xe3d3ec(0xc6e)])[0x0];}else{let _0x5b16c2=_0x102f4d(_0x283280,_0x4dd9e7,_0x27cdbb[_0xe3d3ec(0x41f)],_0x4a4340['objects'],_0x16c39a[_0xe3d3ec(0xc6e)]);if(_0x5b16c2[_0xe3d3ec(0xba6)]!==0x1)throw Error(_0xe3d3ec(0x90f)+_0x5b16c2['length']);_0x3397ee=_0x5b16c2[0x0];}if(_0x587307[_0xe3d3ec(0xa10)]=_0x3397ee,_0x3397ee[_0xe3d3ec(0x382)]&&(_0xbf019f[_0xe3d3ec(0x4ba)]=_0x3397ee[_0xe3d3ec(0x382)][_0xe3d3ec(0x4ba)],_0xbf019f['nominalWidthX']=_0x3397ee[_0xe3d3ec(0x382)][_0xe3d3ec(0x340)]),_0x16c39a[_0xe3d3ec(0xc6e)]<0x2&&_0x3397ee[_0xe3d3ec(0x425)][0x0]!==void 0x0&&_0x3397ee[_0xe3d3ec(0x425)][0x1]!==void 0x0&&(_0xbf019f[_0xe3d3ec(0x63d)]=!0x0),_0x16c39a[_0xe3d3ec(0xc6e)]>0x1){let _0x2dd63f=_0x3397ee[_0xe3d3ec(0x98d)],_0x262637=_0x3397ee[_0xe3d3ec(0x467)];if(!_0x2dd63f)throw Error(_0xe3d3ec(0x4c1));let _0x4fa1ac=_0x489de7(_0x283280,_0x4dd9e7,_0x5a6319(_0x283280,_0x4dd9e7+_0x2dd63f,null,_0x16c39a[_0xe3d3ec(0xc6e)])[_0xe3d3ec(0x41f)]);_0x3397ee[_0xe3d3ec(0x3fe)]=_0x4fa1ac,_0x262637&&(_0x3397ee['_fdSelect']=_0x400724(_0x283280,_0x4dd9e7+_0x262637,_0xbf019f[_0xe3d3ec(0x54e)],_0x4fa1ac[_0xe3d3ec(0xba6)],_0x16c39a[_0xe3d3ec(0xc6e)]));}else{if(_0xbf019f['isCIDFont']){let _0xdf09c3=_0x3397ee[_0xe3d3ec(0x98d)],_0x3750e1=_0x3397ee['fdSelect'];if(_0xdf09c3===0x0||_0x3750e1===0x0)throw Error(_0xe3d3ec(0xa6f));_0xdf09c3+=_0x4dd9e7;let _0x163c6f=_0x102f4d(_0x283280,_0x4dd9e7,_0x5a6319(_0x283280,_0xdf09c3)['objects'],_0x4a4340[_0xe3d3ec(0x41f)],_0x16c39a[_0xe3d3ec(0xc6e)]);_0x3397ee[_0xe3d3ec(0x3fe)]=_0x163c6f,_0x3750e1+=_0x4dd9e7,_0x3397ee[_0xe3d3ec(0x33b)]=_0x400724(_0x283280,_0x3750e1,_0xbf019f[_0xe3d3ec(0x54e)],_0x163c6f['length'],_0x16c39a[_0xe3d3ec(0xc6e)]);}}if(_0x16c39a[_0xe3d3ec(0xc6e)]<0x2){let _0x1f9319=_0x4dd9e7+_0x3397ee[_0xe3d3ec(0x49c)][0x1],_0x578235=_0x53c8f3(_0x283280,_0x1f9319,_0x3397ee[_0xe3d3ec(0x49c)][0x0],_0x4a4340[_0xe3d3ec(0x41f)],_0x16c39a[_0xe3d3ec(0xc6e)]);_0xbf019f[_0xe3d3ec(0x4ba)]=_0x578235[_0xe3d3ec(0x4ba)],_0xbf019f[_0xe3d3ec(0x340)]=_0x578235[_0xe3d3ec(0x340)],_0x578235[_0xe3d3ec(0xb14)]===0x0?(_0xbf019f[_0xe3d3ec(0xb14)]=[],_0xbf019f[_0xe3d3ec(0x1cb)]=0x0):(_0xbf019f['subrs']=_0x5a6319(_0x283280,_0x1f9319+_0x578235[_0xe3d3ec(0xb14)])['objects'],_0xbf019f[_0xe3d3ec(0x1cb)]=_0x2b3c2b(_0xbf019f['subrs']));}let _0x1c2a03;if(_0x3dbf45[_0xe3d3ec(0x7cb)]?(_0x1c2a03=_0x15ad75(_0x283280,_0x4dd9e7+_0x3397ee['charStrings'],_0x16c39a['formatMajor']),_0xbf019f['nGlyphs']=_0x1c2a03[_0xe3d3ec(0x32f)][_0xe3d3ec(0xba6)]-+(_0x16c39a[_0xe3d3ec(0xc6e)]>0x1)):(_0x1c2a03=_0x5a6319(_0x283280,_0x4dd9e7+_0x3397ee[_0xe3d3ec(0x6ac)],null,_0x16c39a[_0xe3d3ec(0xc6e)]),_0xbf019f['nGlyphs']=_0x1c2a03[_0xe3d3ec(0x41f)][_0xe3d3ec(0xba6)]),_0x16c39a[_0xe3d3ec(0xc6e)]>0x1&&_0xbf019f[_0xe3d3ec(0x796)]['maxp']&&_0xbf019f[_0xe3d3ec(0x6f5)]!==_0xbf019f[_0xe3d3ec(0x796)]['maxp'][_0xe3d3ec(0x54e)]&&console['error'](_0xe3d3ec(0x907)+_0xbf019f[_0xe3d3ec(0x6f5)]+')\x20must\x20correspond\x20to\x20the\x20glyph\x20count\x20in\x20the\x20maxp\x20table\x20('+_0xbf019f[_0xe3d3ec(0x796)][_0xe3d3ec(0x8c3)][_0xe3d3ec(0x54e)]+')'),_0x16c39a[_0xe3d3ec(0xc6e)]<0x2){let _0x199f7b=[],_0x11727f=[];_0x199f7b=_0x3397ee[_0xe3d3ec(0x863)]===0x0?_0x45c28e:_0x3397ee[_0xe3d3ec(0x863)]===0x1?_0x309bed:_0x3397ee[_0xe3d3ec(0x863)]===0x2?_0x2f0abf:_0x250760(_0x283280,_0x4dd9e7+_0x3397ee['charset'],_0xbf019f[_0xe3d3ec(0x6f5)],_0x4a4340[_0xe3d3ec(0x41f)],_0xbf019f['isCIDFont']),_0x11727f=_0x3397ee[_0xe3d3ec(0x8bb)]===0x0?_0x495436:_0x3397ee[_0xe3d3ec(0x8bb)]===0x1?_0x28eec1:_0x29387f(_0x283280,_0x4dd9e7+_0x3397ee[_0xe3d3ec(0x8bb)]),_0xbf019f[_0xe3d3ec(0x533)]=new _0x3d730e(_0x11727f,_0x199f7b),_0xbf019f[_0xe3d3ec(0x8bb)]=_0xbf019f[_0xe3d3ec(0x8bb)]||_0xbf019f[_0xe3d3ec(0x533)];}if(_0xbf019f['glyphs']=new _0x31db48[(_0xe3d3ec(0x7b5))](_0xbf019f),_0x3dbf45[_0xe3d3ec(0x7cb)])_0xbf019f[_0xe3d3ec(0xb8c)]=function(_0x354887){const _0x3b42bb=_0xe3d3ec;let _0x3dda16=_0xcc4d0b(_0x354887,_0x1c2a03['offsets'],_0x283280,_0x4dd9e7+_0x3397ee[_0x3b42bb(0x6ac)],void 0x0,_0x16c39a['formatMajor']);_0xbf019f[_0x3b42bb(0x70a)][_0x3b42bb(0x381)](_0x354887,_0x31db48[_0x3b42bb(0x916)](_0xbf019f,_0x354887,_0x310886,_0x3dda16,_0x16c39a['formatMajor']));};else for(let _0x22787f=0x0;_0x22787f<_0xbf019f[_0xe3d3ec(0x6f5)];_0x22787f+=0x1){let _0x104749=_0x1c2a03[_0xe3d3ec(0x41f)][_0x22787f];_0xbf019f[_0xe3d3ec(0x70a)][_0xe3d3ec(0x381)](_0x22787f,_0x31db48[_0xe3d3ec(0x916)](_0xbf019f,_0x22787f,_0x310886,_0x104749,_0x16c39a[_0xe3d3ec(0xc6e)]));}if(_0x3397ee[_0xe3d3ec(0x5a7)]){let _0x3026b6=new _0x4d43da[(_0xe3d3ec(0xb6f))](_0x283280,_0x4dd9e7+_0x3397ee[_0xe3d3ec(0x5a7)]);_0x3397ee['_vstore']=_0x3026b6['parseVariationStore']();}}function _0x17f9f6(_0x5133e6,_0x53a4df){const _0x3cb7f0=_0x2273f6;let _0x202e88,_0x221d28=_0x18ee02['indexOf'](_0x5133e6);return _0x221d28>=0x0&&(_0x202e88=_0x221d28),_0x221d28=_0x53a4df[_0x3cb7f0(0x709)](_0x5133e6),_0x221d28>=0x0?_0x202e88=_0x221d28+_0x18ee02['length']:(_0x202e88=_0x18ee02['length']+_0x53a4df[_0x3cb7f0(0xba6)],_0x53a4df[_0x3cb7f0(0x381)](_0x5133e6)),_0x202e88;}function _0x5b99a1(){const _0x31b22b=_0x2273f6;return new _0x14efbe[(_0x31b22b(0x133))](_0x31b22b(0x751),[{'name':'major','type':'Card8','value':0x1},{'name':_0x31b22b(0x906),'type':'Card8','value':0x0},{'name':_0x31b22b(0x3af),'type':_0x31b22b(0x267),'value':0x4},{'name':'major','type':'Card8','value':0x1}]);}function _0x3ea181(_0x2f171d){const _0xd8ed37=_0x2273f6;let _0x35bca0=new _0x14efbe['Record'](_0xd8ed37(0x841),[{'name':_0xd8ed37(0xb8f),'type':_0xd8ed37(0x4f9),'value':[]}]);_0x35bca0[_0xd8ed37(0xb8f)]=[];for(let _0x499a44=0x0;_0x499a44<_0x2f171d[_0xd8ed37(0xba6)];_0x499a44+=0x1)_0x35bca0[_0xd8ed37(0xb8f)][_0xd8ed37(0x381)]({'name':'name_'+_0x499a44,'type':_0xd8ed37(0x1f2),'value':_0x2f171d[_0x499a44]});return _0x35bca0;}function _0x1ada47(_0x9ae542,_0x32f92e,_0x48f80c){const _0x109662=_0x2273f6;let _0x38a2d3={};for(let _0x181b8d=0x0;_0x181b8d<_0x9ae542[_0x109662(0xba6)];_0x181b8d+=0x1){let _0x31fa65=_0x9ae542[_0x181b8d],_0x212a51=_0x32f92e[_0x31fa65[_0x109662(0x37a)]];_0x212a51!==void 0x0&&!_0xa44128(_0x212a51,_0x31fa65['value'])&&(_0x31fa65[_0x109662(0x2c1)]===_0x109662(0x5c7)&&(_0x212a51=_0x17f9f6(_0x212a51,_0x48f80c)),_0x38a2d3[_0x31fa65['op']]={'name':_0x31fa65['name'],'type':_0x31fa65['type'],'value':_0x212a51});}return _0x38a2d3;}function _0xdd93e(_0x397409,_0x554aac,_0x2320b2){const _0x4ef41e=_0x2273f6;let _0x52c13b=new _0x14efbe[(_0x4ef41e(0x133))](_0x4ef41e(0x7c8),[{'name':_0x4ef41e(0x113),'type':_0x4ef41e(0x28b),'value':{}}]);return _0x52c13b['dict']=_0x1ada47(_0x2320b2>0x1?_0x277736:_0xe2a4dc,_0x397409,_0x554aac),_0x52c13b;}function _0x46b885(_0x5a9f1b){const _0x28626e=_0x2273f6;let _0x5dfad8=new _0x14efbe[(_0x28626e(0x133))](_0x28626e(0x584),[{'name':_0x28626e(0x2b2),'type':_0x28626e(0x4f9),'value':[]}]);return _0x5dfad8[_0x28626e(0x2b2)]=[{'name':_0x28626e(0x960),'type':'TABLE','value':_0x5a9f1b}],_0x5dfad8;}function _0x253964(_0x4b3846){const _0x44018c=_0x2273f6;let _0x17818e=new _0x14efbe[(_0x44018c(0x133))](_0x44018c(0x560),[{'name':_0x44018c(0x2b5),'type':_0x44018c(0x4f9),'value':[]}]);_0x17818e['strings']=[];for(let _0x81f046=0x0;_0x81f046<_0x4b3846['length'];_0x81f046+=0x1)_0x17818e[_0x44018c(0x2b5)][_0x44018c(0x381)]({'name':_0x44018c(0x786)+_0x81f046,'type':_0x44018c(0xc30),'value':_0x4b3846[_0x81f046]});return _0x17818e;}function _0x3ad7e7(){const _0x1272ef=_0x2273f6;return new _0x14efbe[(_0x1272ef(0x133))]('Global\x20Subr\x20INDEX',[{'name':_0x1272ef(0xb14),'type':_0x1272ef(0x4f9),'value':[]}]);}function _0x28e3ef(_0x324ccc,_0x5cafd0){const _0x5d21a6=_0x2273f6;let _0x55c0b8=new _0x14efbe[(_0x5d21a6(0x133))](_0x5d21a6(0x4d6),[{'name':_0x5d21a6(0xc00),'type':_0x5d21a6(0x267),'value':0x0}]);for(let _0x111b51=0x0;_0x111b51<_0x324ccc['length'];_0x111b51+=0x1){let _0x439e85=_0x324ccc[_0x111b51],_0x24c408=_0x17f9f6(_0x439e85,_0x5cafd0);_0x55c0b8[_0x5d21a6(0x843)][_0x5d21a6(0x381)]({'name':_0x5d21a6(0x8a5)+_0x111b51,'type':_0x5d21a6(0x5c7),'value':_0x24c408});}return _0x55c0b8;}function _0x41789b(_0x332941,_0x229d6e){const _0x286057=_0x2273f6;let _0x355c24=[],_0x3224e1=_0x332941['path'];_0x229d6e<0x2&&_0x355c24[_0x286057(0x381)]({'name':_0x286057(0x65c),'type':'NUMBER','value':_0x332941[_0x286057(0x355)]});let _0x4e688e=0x0,_0x1c712d=0x0;for(let _0x3c4b79=0x0;_0x3c4b79<_0x3224e1['commands']['length'];_0x3c4b79+=0x1){let _0x30fbb5,_0x260453,_0xc1d695=_0x3224e1[_0x286057(0x440)][_0x3c4b79];if(_0xc1d695[_0x286057(0x2c1)]==='Q'){let _0x375bb6=0x1/0x3,_0x436199=0x2/0x3;_0xc1d695={'type':'C','x':_0xc1d695['x'],'y':_0xc1d695['y'],'x1':Math['round'](_0x375bb6*_0x4e688e+_0x436199*_0xc1d695['x1']),'y1':Math[_0x286057(0x157)](_0x375bb6*_0x1c712d+_0x436199*_0xc1d695['y1']),'x2':Math[_0x286057(0x157)](_0x375bb6*_0xc1d695['x']+_0x436199*_0xc1d695['x1']),'y2':Math[_0x286057(0x157)](_0x375bb6*_0xc1d695['y']+_0x436199*_0xc1d695['y1'])};}if(_0xc1d695[_0x286057(0x2c1)]==='M')_0x30fbb5=Math[_0x286057(0x157)](_0xc1d695['x']-_0x4e688e),_0x260453=Math['round'](_0xc1d695['y']-_0x1c712d),_0x355c24['push']({'name':'dx','type':_0x286057(0xc1a),'value':_0x30fbb5}),_0x355c24[_0x286057(0x381)]({'name':'dy','type':'NUMBER','value':_0x260453}),_0x355c24[_0x286057(0x381)]({'name':_0x286057(0x357),'type':'OP','value':0x15}),_0x4e688e=Math['round'](_0xc1d695['x']),_0x1c712d=Math[_0x286057(0x157)](_0xc1d695['y']);else{if(_0xc1d695[_0x286057(0x2c1)]==='L')_0x30fbb5=Math[_0x286057(0x157)](_0xc1d695['x']-_0x4e688e),_0x260453=Math[_0x286057(0x157)](_0xc1d695['y']-_0x1c712d),_0x355c24[_0x286057(0x381)]({'name':'dx','type':_0x286057(0xc1a),'value':_0x30fbb5}),_0x355c24[_0x286057(0x381)]({'name':'dy','type':'NUMBER','value':_0x260453}),_0x355c24['push']({'name':_0x286057(0xc8d),'type':'OP','value':0x5}),_0x4e688e=Math[_0x286057(0x157)](_0xc1d695['x']),_0x1c712d=Math[_0x286057(0x157)](_0xc1d695['y']);else{if(_0xc1d695['type']==='C'){let _0x10f81e=Math[_0x286057(0x157)](_0xc1d695['x1']-_0x4e688e),_0x5a3bed=Math[_0x286057(0x157)](_0xc1d695['y1']-_0x1c712d),_0x315ae6=Math[_0x286057(0x157)](_0xc1d695['x2']-_0xc1d695['x1']),_0x8a087a=Math['round'](_0xc1d695['y2']-_0xc1d695['y1']);_0x30fbb5=Math[_0x286057(0x157)](_0xc1d695['x']-_0xc1d695['x2']),_0x260453=Math[_0x286057(0x157)](_0xc1d695['y']-_0xc1d695['y2']),_0x355c24[_0x286057(0x381)]({'name':'dx1','type':'NUMBER','value':_0x10f81e}),_0x355c24[_0x286057(0x381)]({'name':_0x286057(0xb68),'type':_0x286057(0xc1a),'value':_0x5a3bed}),_0x355c24['push']({'name':_0x286057(0x53e),'type':'NUMBER','value':_0x315ae6}),_0x355c24[_0x286057(0x381)]({'name':_0x286057(0x270),'type':_0x286057(0xc1a),'value':_0x8a087a}),_0x355c24[_0x286057(0x381)]({'name':'dx','type':_0x286057(0xc1a),'value':_0x30fbb5}),_0x355c24[_0x286057(0x381)]({'name':'dy','type':'NUMBER','value':_0x260453}),_0x355c24[_0x286057(0x381)]({'name':_0x286057(0x830),'type':'OP','value':0x8}),_0x4e688e=Math[_0x286057(0x157)](_0xc1d695['x']),_0x1c712d=Math[_0x286057(0x157)](_0xc1d695['y']);}}}}return _0x229d6e<0x2&&_0x355c24[_0x286057(0x381)]({'name':'endchar','type':'OP','value':0xe}),_0x355c24;}function _0x1eebb2(_0xb0b6a8,_0x5ad233){const _0x2af543=_0x2273f6;let _0x122f94=new _0x14efbe[(_0x2af543(0x133))](_0x2af543(0x8d9),[{'name':_0x2af543(0x6ac),'type':'INDEX','value':[]}]);for(let _0x7191de=0x0;_0x7191de<_0xb0b6a8[_0x2af543(0xba6)];_0x7191de+=0x1){let _0x2153c7=_0xb0b6a8[_0x2af543(0x2ad)](_0x7191de),_0x309848=_0x41789b(_0x2153c7,_0x5ad233);_0x122f94[_0x2af543(0x6ac)][_0x2af543(0x381)]({'name':_0x2153c7['name'],'type':_0x2af543(0xb5d),'value':_0x309848});}return _0x122f94;}function _0x555bd4(_0x5c7535,_0x3e61ad,_0x32c529){const _0x4b82bd=_0x2273f6;let _0x4b3cf7=new _0x14efbe[(_0x4b82bd(0x133))](_0x4b82bd(0x996),[{'name':_0x4b82bd(0x113),'type':_0x4b82bd(0x28b),'value':{}}]);return _0x4b3cf7[_0x4b82bd(0x113)]=_0x1ada47(_0x32c529>0x1?_0x428d69:_0x283031,_0x5c7535,_0x3e61ad),_0x4b3cf7;}function _0x52737b(_0x337d97,_0x12cf11){const _0x352d41=_0x2273f6;let _0x458650=new _0x14efbe[(_0x352d41(0x547))](_0x352d41(0x1db),[{'name':'header','type':_0x352d41(0x31b)},{'name':_0x352d41(0x3ff),'type':_0x352d41(0x31b)},{'name':_0x352d41(0x515),'type':_0x352d41(0x31b)},{'name':_0x352d41(0x4a8),'type':_0x352d41(0x31b)},{'name':_0x352d41(0x3d3),'type':_0x352d41(0x31b)},{'name':'charsets','type':_0x352d41(0x31b)},{'name':_0x352d41(0xa22),'type':'RECORD'},{'name':'privateDict','type':_0x352d41(0x31b)}]),_0x289026=0x1/_0x12cf11['unitsPerEm'],_0x25bb1a={'version':_0x12cf11['version'],'fullName':_0x12cf11['fullName'],'familyName':_0x12cf11[_0x352d41(0x4d0)],'weight':_0x12cf11['weightName'],'fontBBox':_0x12cf11[_0x352d41(0x10b)]||[0x0,0x0,0x0,0x0],'fontMatrix':[_0x289026,0x0,0x0,_0x289026,0x0,0x0],'charset':0x3e7,'encoding':0x0,'charStrings':0x3e7,'private':[0x0,0x3e7]},_0xb5b76b=_0x12cf11&&_0x12cf11['topDict']||{};_0xb5b76b[_0x352d41(0xc70)]&&(_0x25bb1a[_0x352d41(0xc70)]=_0xb5b76b['paintType'],_0x25bb1a['strokeWidth']=_0xb5b76b[_0x352d41(0x5ce)]||0x0);let _0x2f03ae={},_0x2c5969=[],_0xb19045;for(let _0x19fdc0=0x1;_0x19fdc0<_0x337d97[_0x352d41(0xba6)];_0x19fdc0+=0x1)_0xb19045=_0x337d97[_0x352d41(0x2ad)](_0x19fdc0),_0x2c5969['push'](_0xb19045[_0x352d41(0x37a)]);let _0x2cf32a=[];_0x458650[_0x352d41(0xc4e)]=_0x5b99a1(),_0x458650[_0x352d41(0x3ff)]=_0x3ea181([_0x12cf11[_0x352d41(0x29f)]]);let _0x2140a5=_0xdd93e(_0x25bb1a,_0x2cf32a);return _0x458650[_0x352d41(0x515)]=_0x46b885(_0x2140a5),_0x458650[_0x352d41(0x3d3)]=_0x3ad7e7(),_0x458650[_0x352d41(0x1ca)]=_0x28e3ef(_0x2c5969,_0x2cf32a),_0x458650[_0x352d41(0xa22)]=_0x1eebb2(_0x337d97,0x1),_0x458650[_0x352d41(0x223)]=_0x555bd4(_0x2f03ae,_0x2cf32a),_0x458650[_0x352d41(0x4a8)]=_0x253964(_0x2cf32a),_0x25bb1a[_0x352d41(0x863)]=_0x458650[_0x352d41(0xc4e)]['sizeOf']()+_0x458650[_0x352d41(0x3ff)][_0x352d41(0x58f)]()+_0x458650[_0x352d41(0x515)][_0x352d41(0x58f)]()+_0x458650[_0x352d41(0x4a8)][_0x352d41(0x58f)]()+_0x458650['globalSubrIndex'][_0x352d41(0x58f)](),_0x25bb1a['encoding']=0x0,_0x25bb1a[_0x352d41(0x6ac)]=_0x25bb1a[_0x352d41(0x863)]+_0x458650[_0x352d41(0x1ca)][_0x352d41(0x58f)](),_0x25bb1a[_0x352d41(0x49c)][0x1]=_0x25bb1a['charStrings']+_0x458650[_0x352d41(0xa22)][_0x352d41(0x58f)](),_0x2140a5=_0xdd93e(_0x25bb1a,_0x2cf32a),_0x458650[_0x352d41(0x515)]=_0x46b885(_0x2140a5),_0x458650;}var _0x5bf4c1={'parse':_0x27b50c,'make':_0x52737b};function _0x572a76(_0x1d24fb,_0x4ceec7){const _0x52722a=_0x2273f6;let _0x33e62a={},_0x237575=new _0x4d43da['Parser'](_0x1d24fb,_0x4ceec7);return _0x33e62a[_0x52722a(0x250)]=_0x237575[_0x52722a(0x738)](),_0x33e62a[_0x52722a(0x18d)]=Math[_0x52722a(0x157)](_0x237575[_0x52722a(0x2f0)]()*0x3e8)/0x3e8,_0x33e62a[_0x52722a(0x875)]=_0x237575[_0x52722a(0x398)](),_0x33e62a[_0x52722a(0xbb8)]=_0x237575[_0x52722a(0x398)](),_0x95cc0[_0x52722a(0x8e5)](_0x33e62a['magicNumber']===0x5f0f3cf5,_0x52722a(0x33c)),_0x33e62a[_0x52722a(0x39a)]=_0x237575[_0x52722a(0x260)](),_0x33e62a[_0x52722a(0xac5)]=_0x237575[_0x52722a(0x260)](),_0x33e62a['created']=_0x237575[_0x52722a(0x312)](),_0x33e62a[_0x52722a(0x78e)]=_0x237575[_0x52722a(0x312)](),_0x33e62a[_0x52722a(0x784)]=_0x237575[_0x52722a(0x673)](),_0x33e62a[_0x52722a(0xafc)]=_0x237575[_0x52722a(0x673)](),_0x33e62a[_0x52722a(0x28d)]=_0x237575['parseShort'](),_0x33e62a['yMax']=_0x237575[_0x52722a(0x673)](),_0x33e62a[_0x52722a(0x1bb)]=_0x237575[_0x52722a(0x260)](),_0x33e62a[_0x52722a(0x330)]=_0x237575[_0x52722a(0x260)](),_0x33e62a[_0x52722a(0x579)]=_0x237575['parseShort'](),_0x33e62a['indexToLocFormat']=_0x237575[_0x52722a(0x673)](),_0x33e62a[_0x52722a(0x9c9)]=_0x237575[_0x52722a(0x673)](),_0x33e62a;}function _0x39b9a2(_0x4ea854){const _0x156ac0=_0x2273f6;let _0x206e66=Math[_0x156ac0(0x157)](new Date()[_0x156ac0(0x92d)]()/0x3e8)+0x7c25b080,_0x43c7d4=_0x206e66,_0x43f624=_0x4ea854['macStyle']||0x0;return _0x4ea854[_0x156ac0(0x236)]&&(_0x43c7d4=_0x4ea854[_0x156ac0(0x236)]+0x7c25b080),new _0x14efbe['Table'](_0x156ac0(0x137),[{'name':_0x156ac0(0x250),'type':_0x156ac0(0x524),'value':0x10000},{'name':'fontRevision','type':'FIXED','value':0x10000},{'name':_0x156ac0(0x875),'type':_0x156ac0(0xc90),'value':0x0},{'name':_0x156ac0(0xbb8),'type':'ULONG','value':0x5f0f3cf5},{'name':_0x156ac0(0x39a),'type':_0x156ac0(0x95d),'value':0x0},{'name':_0x156ac0(0xac5),'type':_0x156ac0(0x95d),'value':0x3e8},{'name':_0x156ac0(0x8e1),'type':_0x156ac0(0x4c0),'value':_0x43c7d4},{'name':_0x156ac0(0x78e),'type':'LONGDATETIME','value':_0x206e66},{'name':_0x156ac0(0x784),'type':_0x156ac0(0x41b),'value':0x0},{'name':_0x156ac0(0xafc),'type':'SHORT','value':0x0},{'name':_0x156ac0(0x28d),'type':_0x156ac0(0x41b),'value':0x0},{'name':_0x156ac0(0x431),'type':_0x156ac0(0x41b),'value':0x0},{'name':'macStyle','type':_0x156ac0(0x95d),'value':_0x43f624},{'name':_0x156ac0(0x330),'type':_0x156ac0(0x95d),'value':0x0},{'name':_0x156ac0(0x579),'type':'SHORT','value':0x2},{'name':_0x156ac0(0x8c9),'type':_0x156ac0(0x41b),'value':0x0},{'name':_0x156ac0(0x9c9),'type':_0x156ac0(0x41b),'value':0x0}],_0x4ea854);}var _0x40511e={'parse':_0x572a76,'make':_0x39b9a2};function _0x2ff001(_0x38f2b6,_0x4442fd){const _0x557b59=_0x2273f6;let _0x53f4fd={},_0x1e78f=new _0x4d43da[(_0x557b59(0xb6f))](_0x38f2b6,_0x4442fd);return _0x53f4fd['version']=_0x1e78f[_0x557b59(0x738)](),_0x53f4fd[_0x557b59(0x163)]=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd[_0x557b59(0x2be)]=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd['lineGap']=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd[_0x557b59(0xc18)]=_0x1e78f[_0x557b59(0x260)](),_0x53f4fd[_0x557b59(0x5a2)]=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd['minRightSideBearing']=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd['xMaxExtent']=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd[_0x557b59(0x9cd)]=_0x1e78f['parseShort'](),_0x53f4fd[_0x557b59(0x697)]=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd[_0x557b59(0xbef)]=_0x1e78f[_0x557b59(0x673)](),_0x1e78f[_0x557b59(0x7a9)]+=0x8,_0x53f4fd[_0x557b59(0x3a1)]=_0x1e78f[_0x557b59(0x673)](),_0x53f4fd[_0x557b59(0x4fe)]=_0x1e78f[_0x557b59(0x260)](),_0x53f4fd;}function _0x295e98(_0x1f38ea){const _0x4d2511=_0x2273f6;return new _0x14efbe[(_0x4d2511(0x547))](_0x4d2511(0x3e1),[{'name':'version','type':'FIXED','value':0x10000},{'name':'ascender','type':_0x4d2511(0x5de),'value':0x0},{'name':_0x4d2511(0x2be),'type':'FWORD','value':0x0},{'name':_0x4d2511(0x8e9),'type':_0x4d2511(0x5de),'value':0x0},{'name':_0x4d2511(0xc18),'type':'UFWORD','value':0x0},{'name':_0x4d2511(0x5a2),'type':_0x4d2511(0x5de),'value':0x0},{'name':_0x4d2511(0x3d1),'type':'FWORD','value':0x0},{'name':_0x4d2511(0xb42),'type':_0x4d2511(0x5de),'value':0x0},{'name':_0x4d2511(0x9cd),'type':_0x4d2511(0x41b),'value':0x1},{'name':_0x4d2511(0x697),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0xbef),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0xbd3),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0x409),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0xb31),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0xc0d),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0x3a1),'type':_0x4d2511(0x41b),'value':0x0},{'name':_0x4d2511(0x4fe),'type':_0x4d2511(0x95d),'value':0x0}],_0x1f38ea);}var _0x3def11={'parse':_0x2ff001,'make':_0x295e98};function _0x93edd9(_0x2c8305,_0x3a3c24,_0x54c0d5,_0x510264,_0x411063){const _0x2685a0=_0x2273f6;let _0x124798,_0x1af1bd,_0x328a6f=new _0x4d43da[(_0x2685a0(0xb6f))](_0x2c8305,_0x3a3c24);for(let _0x3cfebd=0x0;_0x3cfebd<_0x510264;_0x3cfebd+=0x1){_0x3cfebd<_0x54c0d5&&(_0x124798=_0x328a6f[_0x2685a0(0x260)](),_0x1af1bd=_0x328a6f[_0x2685a0(0x673)]());let _0x47a2c6=_0x411063['get'](_0x3cfebd);_0x47a2c6['advanceWidth']=_0x124798,_0x47a2c6['leftSideBearing']=_0x1af1bd;}}function _0x273c20(_0x288247,_0x12be01,_0x53c9d0,_0x17f4c9,_0x502229){const _0x411489=_0x2273f6;_0x288247[_0x411489(0x301)]={};let _0x46a88a,_0x41cbfc,_0x53cfab=new _0x4d43da['Parser'](_0x12be01,_0x53c9d0);for(let _0xa24b1e=0x0;_0xa24b1e<_0x502229;_0xa24b1e+=0x1)_0xa24b1e<_0x17f4c9&&(_0x46a88a=_0x53cfab['parseUShort'](),_0x41cbfc=_0x53cfab['parseShort']()),_0x288247[_0x411489(0x301)][_0xa24b1e]={'advanceWidth':_0x46a88a,'leftSideBearing':_0x41cbfc};}function _0x356d43(_0x1c9e3a,_0x1109f5,_0x52cd43,_0x1789bc,_0x264aed,_0x14df49,_0x5a837b){_0x5a837b['lowMemory']?_0x273c20(_0x1c9e3a,_0x1109f5,_0x52cd43,_0x1789bc,_0x264aed):_0x93edd9(_0x1109f5,_0x52cd43,_0x1789bc,_0x264aed,_0x14df49);}function _0x347046(_0x3aa9fc){const _0x4c25a2=_0x2273f6;let _0x27165c=new _0x14efbe[(_0x4c25a2(0x547))](_0x4c25a2(0x40f),[]);for(let _0x4e42ae=0x0;_0x4e42ae<_0x3aa9fc['length'];_0x4e42ae+=0x1){let _0x32ddf0=_0x3aa9fc['get'](_0x4e42ae),_0x311c52=_0x32ddf0['advanceWidth']||0x0,_0x37e88d=_0x32ddf0['leftSideBearing']||0x0;_0x27165c['fields'][_0x4c25a2(0x381)]({'name':_0x4c25a2(0x8d6)+_0x4e42ae,'type':_0x4c25a2(0x95d),'value':_0x311c52}),_0x27165c['fields'][_0x4c25a2(0x381)]({'name':_0x4c25a2(0x183)+_0x4e42ae,'type':_0x4c25a2(0x41b),'value':_0x37e88d});}return _0x27165c;}var _0x185389={'parse':_0x356d43,'make':_0x347046};function _0x104ef4(_0x41f1bf){const _0x331515=_0x2273f6;let _0x258bf6=new _0x14efbe[(_0x331515(0x547))](_0x331515(0xa08),[{'name':'version','type':_0x331515(0xc90),'value':0x1},{'name':_0x331515(0x39a),'type':_0x331515(0xc90),'value':0x0},{'name':'numTags','type':_0x331515(0xc90),'value':_0x41f1bf['length']}]),_0x7b192e='',_0x1b0006=0xc+_0x41f1bf[_0x331515(0xba6)]*0x4;for(let _0x2a1874=0x0;_0x2a1874<_0x41f1bf[_0x331515(0xba6)];++_0x2a1874){let _0x2e731c=_0x7b192e['indexOf'](_0x41f1bf[_0x2a1874]);_0x2e731c<0x0&&(_0x2e731c=_0x7b192e[_0x331515(0xba6)],_0x7b192e+=_0x41f1bf[_0x2a1874]),_0x258bf6[_0x331515(0x843)][_0x331515(0x381)]({'name':_0x331515(0xa0b)+_0x2a1874,'type':_0x331515(0x95d),'value':_0x1b0006+_0x2e731c}),_0x258bf6[_0x331515(0x843)][_0x331515(0x381)]({'name':_0x331515(0x64f)+_0x2a1874,'type':'USHORT','value':_0x41f1bf[_0x2a1874][_0x331515(0xba6)]});}return _0x258bf6[_0x331515(0x843)][_0x331515(0x381)]({'name':_0x331515(0x9e5),'type':'CHARARRAY','value':_0x7b192e}),_0x258bf6;}function _0x52e221(_0x32dd00,_0x9e0d58){const _0x4327ba=_0x2273f6;let _0x1c9a65=new _0x4d43da[(_0x4327ba(0xb6f))](_0x32dd00,_0x9e0d58),_0x58c683=_0x1c9a65[_0x4327ba(0x398)]();_0x95cc0[_0x4327ba(0x8e5)](_0x58c683===0x1,_0x4327ba(0x6ea)),_0x1c9a65['skip'](_0x4327ba(0xb0b),0x1);let _0x3b57da=_0x1c9a65['parseULong'](),_0x430d2f=[];for(let _0x738bd6=0x0;_0x738bd6<_0x3b57da;_0x738bd6++){let _0x490cd3='',_0xe29032=_0x9e0d58+_0x1c9a65['parseUShort'](),_0x1ecfd1=_0x1c9a65[_0x4327ba(0x260)]();for(let _0x3fbf6c=_0xe29032;_0x3fbf6c<_0xe29032+_0x1ecfd1;++_0x3fbf6c)_0x490cd3+=String[_0x4327ba(0x98a)](_0x32dd00[_0x4327ba(0x160)](_0x3fbf6c));_0x430d2f['push'](_0x490cd3);}return _0x430d2f;}var _0xe6120b={'make':_0x104ef4,'parse':_0x52e221};function _0x3cc1f5(_0x2a3074,_0x4439b7){const _0x660a38=_0x2273f6;let _0x4da57c={},_0x317329=new _0x4d43da['Parser'](_0x2a3074,_0x4439b7);return _0x4da57c[_0x660a38(0x250)]=_0x317329['parseVersion'](),_0x4da57c[_0x660a38(0x54e)]=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0x250)]===0x1&&(_0x4da57c[_0x660a38(0x6f8)]=_0x317329[_0x660a38(0x260)](),_0x4da57c[_0x660a38(0x296)]=_0x317329[_0x660a38(0x260)](),_0x4da57c['maxCompositePoints']=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0x82d)]=_0x317329[_0x660a38(0x260)](),_0x4da57c[_0x660a38(0x280)]=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0x7d4)]=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0x470)]=_0x317329[_0x660a38(0x260)](),_0x4da57c[_0x660a38(0x62a)]=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0xb02)]=_0x317329['parseUShort'](),_0x4da57c[_0x660a38(0x9d2)]=_0x317329[_0x660a38(0x260)](),_0x4da57c['maxSizeOfInstructions']=_0x317329[_0x660a38(0x260)](),_0x4da57c[_0x660a38(0x8ed)]=_0x317329[_0x660a38(0x260)](),_0x4da57c[_0x660a38(0xc2c)]=_0x317329['parseUShort']()),_0x4da57c;}function _0xa6f7b3(_0x5c4c00){const _0xaf6aad=_0x2273f6;return new _0x14efbe[(_0xaf6aad(0x547))](_0xaf6aad(0x8c3),[{'name':_0xaf6aad(0x250),'type':_0xaf6aad(0x524),'value':0x5000},{'name':'numGlyphs','type':_0xaf6aad(0x95d),'value':_0x5c4c00}]);}var _0x402061={'parse':_0x3cc1f5,'make':_0xa6f7b3},_0x53185c=[{'begin':0x0,'end':0x7f},{'begin':0x80,'end':0xff},{'begin':0x100,'end':0x17f},{'begin':0x180,'end':0x24f},{'begin':0x250,'end':0x2af},{'begin':0x2b0,'end':0x2ff},{'begin':0x300,'end':0x36f},{'begin':0x370,'end':0x3ff},{'begin':0x2c80,'end':0x2cff},{'begin':0x400,'end':0x4ff},{'begin':0x530,'end':0x58f},{'begin':0x590,'end':0x5ff},{'begin':0xa500,'end':0xa63f},{'begin':0x600,'end':0x6ff},{'begin':0x7c0,'end':0x7ff},{'begin':0x900,'end':0x97f},{'begin':0x980,'end':0x9ff},{'begin':0xa00,'end':0xa7f},{'begin':0xa80,'end':0xaff},{'begin':0xb00,'end':0xb7f},{'begin':0xb80,'end':0xbff},{'begin':0xc00,'end':0xc7f},{'begin':0xc80,'end':0xcff},{'begin':0xd00,'end':0xd7f},{'begin':0xe00,'end':0xe7f},{'begin':0xe80,'end':0xeff},{'begin':0x10a0,'end':0x10ff},{'begin':0x1b00,'end':0x1b7f},{'begin':0x1100,'end':0x11ff},{'begin':0x1e00,'end':0x1eff},{'begin':0x1f00,'end':0x1fff},{'begin':0x2000,'end':0x206f},{'begin':0x2070,'end':0x209f},{'begin':0x20a0,'end':0x20cf},{'begin':0x20d0,'end':0x20ff},{'begin':0x2100,'end':0x214f},{'begin':0x2150,'end':0x218f},{'begin':0x2190,'end':0x21ff},{'begin':0x2200,'end':0x22ff},{'begin':0x2300,'end':0x23ff},{'begin':0x2400,'end':0x243f},{'begin':0x2440,'end':0x245f},{'begin':0x2460,'end':0x24ff},{'begin':0x2500,'end':0x257f},{'begin':0x2580,'end':0x259f},{'begin':0x25a0,'end':0x25ff},{'begin':0x2600,'end':0x26ff},{'begin':0x2700,'end':0x27bf},{'begin':0x3000,'end':0x303f},{'begin':0x3040,'end':0x309f},{'begin':0x30a0,'end':0x30ff},{'begin':0x3100,'end':0x312f},{'begin':0x3130,'end':0x318f},{'begin':0xa840,'end':0xa87f},{'begin':0x3200,'end':0x32ff},{'begin':0x3300,'end':0x33ff},{'begin':0xac00,'end':0xd7af},{'begin':0xd800,'end':0xdfff},{'begin':0x10900,'end':0x1091f},{'begin':0x4e00,'end':0x9fff},{'begin':0xe000,'end':0xf8ff},{'begin':0x31c0,'end':0x31ef},{'begin':0xfb00,'end':0xfb4f},{'begin':0xfb50,'end':0xfdff},{'begin':0xfe20,'end':0xfe2f},{'begin':0xfe10,'end':0xfe1f},{'begin':0xfe50,'end':0xfe6f},{'begin':0xfe70,'end':0xfeff},{'begin':0xff00,'end':0xffef},{'begin':0xfff0,'end':0xffff},{'begin':0xf00,'end':0xfff},{'begin':0x700,'end':0x74f},{'begin':0x780,'end':0x7bf},{'begin':0xd80,'end':0xdff},{'begin':0x1000,'end':0x109f},{'begin':0x1200,'end':0x137f},{'begin':0x13a0,'end':0x13ff},{'begin':0x1400,'end':0x167f},{'begin':0x1680,'end':0x169f},{'begin':0x16a0,'end':0x16ff},{'begin':0x1780,'end':0x17ff},{'begin':0x1800,'end':0x18af},{'begin':0x2800,'end':0x28ff},{'begin':0xa000,'end':0xa48f},{'begin':0x1700,'end':0x171f},{'begin':0x10300,'end':0x1032f},{'begin':0x10330,'end':0x1034f},{'begin':0x10400,'end':0x1044f},{'begin':0x1d000,'end':0x1d0ff},{'begin':0x1d400,'end':0x1d7ff},{'begin':0xff000,'end':0xffffd},{'begin':0xfe00,'end':0xfe0f},{'begin':0xe0000,'end':0xe007f},{'begin':0x1900,'end':0x194f},{'begin':0x1950,'end':0x197f},{'begin':0x1980,'end':0x19df},{'begin':0x1a00,'end':0x1a1f},{'begin':0x2c00,'end':0x2c5f},{'begin':0x2d30,'end':0x2d7f},{'begin':0x4dc0,'end':0x4dff},{'begin':0xa800,'end':0xa82f},{'begin':0x10000,'end':0x1007f},{'begin':0x10140,'end':0x1018f},{'begin':0x10380,'end':0x1039f},{'begin':0x103a0,'end':0x103df},{'begin':0x10450,'end':0x1047f},{'begin':0x10480,'end':0x104af},{'begin':0x10800,'end':0x1083f},{'begin':0x10a00,'end':0x10a5f},{'begin':0x1d300,'end':0x1d35f},{'begin':0x12000,'end':0x123ff},{'begin':0x1d360,'end':0x1d37f},{'begin':0x1b80,'end':0x1bbf},{'begin':0x1c00,'end':0x1c4f},{'begin':0x1c50,'end':0x1c7f},{'begin':0xa880,'end':0xa8df},{'begin':0xa900,'end':0xa92f},{'begin':0xa930,'end':0xa95f},{'begin':0xaa00,'end':0xaa5f},{'begin':0x10190,'end':0x101cf},{'begin':0x101d0,'end':0x101ff},{'begin':0x102a0,'end':0x102df},{'begin':0x1f030,'end':0x1f09f}];function _0x244a13(_0x5ef9e6){const _0x229433=_0x2273f6;for(let _0x4ee0e2=0x0;_0x4ee0e2<_0x53185c[_0x229433(0xba6)];_0x4ee0e2+=0x1){let _0x737416=_0x53185c[_0x4ee0e2];if(_0x5ef9e6>=_0x737416[_0x229433(0x3a9)]&&_0x5ef9e6<_0x737416[_0x229433(0x392)])return _0x4ee0e2;}return-0x1;}function _0x2cc400(_0x74a1a9,_0x10f23b){const _0xbb8b22=_0x2273f6;let _0x19f824={},_0x2e92ee=new _0x4d43da[(_0xbb8b22(0xb6f))](_0x74a1a9,_0x10f23b);_0x19f824[_0xbb8b22(0x250)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0xc42)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x632)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824['usWidthClass']=_0x2e92ee['parseUShort'](),_0x19f824[_0xbb8b22(0x4a9)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0xabc)]=_0x2e92ee['parseShort'](),_0x19f824[_0xbb8b22(0x75b)]=_0x2e92ee['parseShort'](),_0x19f824[_0xbb8b22(0x33e)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824['ySubscriptYOffset']=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x600)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x662)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0xc56)]=_0x2e92ee['parseShort'](),_0x19f824['ySuperscriptYOffset']=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x54c)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x74b)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x9db)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x25f)]=[];for(let _0x10aa0f=0x0;_0x10aa0f<0xa;_0x10aa0f++)_0x19f824[_0xbb8b22(0x25f)][_0x10aa0f]=_0x2e92ee[_0xbb8b22(0xc25)]();return _0x19f824[_0xbb8b22(0x914)]=_0x2e92ee[_0xbb8b22(0x398)](),_0x19f824[_0xbb8b22(0x40a)]=_0x2e92ee[_0xbb8b22(0x398)](),_0x19f824['ulUnicodeRange3']=_0x2e92ee['parseULong'](),_0x19f824[_0xbb8b22(0xc14)]=_0x2e92ee[_0xbb8b22(0x398)](),_0x19f824[_0xbb8b22(0x9a4)]=String[_0xbb8b22(0x98a)](_0x2e92ee[_0xbb8b22(0xc25)](),_0x2e92ee[_0xbb8b22(0xc25)](),_0x2e92ee[_0xbb8b22(0xc25)](),_0x2e92ee['parseByte']()),_0x19f824[_0xbb8b22(0x748)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824['usFirstCharIndex']=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0x57a)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824['sTypoAscender']=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x47d)]=_0x2e92ee['parseShort'](),_0x19f824[_0xbb8b22(0x47e)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x765)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0x4ee)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0x250)]>=0x1&&(_0x19f824[_0xbb8b22(0xc38)]=_0x2e92ee[_0xbb8b22(0x398)](),_0x19f824[_0xbb8b22(0x910)]=_0x2e92ee['parseULong']()),_0x19f824['version']>=0x2&&(_0x19f824[_0xbb8b22(0xbb6)]=_0x2e92ee[_0xbb8b22(0x673)](),_0x19f824[_0xbb8b22(0x573)]=_0x2e92ee['parseShort'](),_0x19f824[_0xbb8b22(0xa4f)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0xc6d)]=_0x2e92ee[_0xbb8b22(0x260)](),_0x19f824[_0xbb8b22(0x20e)]=_0x2e92ee[_0xbb8b22(0x260)]()),_0x19f824;}function _0x536879(_0x248378){const _0x19243b=_0x2273f6;return new _0x14efbe[(_0x19243b(0x547))](_0x19243b(0x1ba),[{'name':_0x19243b(0x250),'type':_0x19243b(0x95d),'value':0x3},{'name':_0x19243b(0xc42),'type':'SHORT','value':0x0},{'name':'usWeightClass','type':'USHORT','value':0x0},{'name':_0x19243b(0x1c3),'type':_0x19243b(0x95d),'value':0x0},{'name':_0x19243b(0x4a9),'type':'USHORT','value':0x0},{'name':'ySubscriptXSize','type':'SHORT','value':0x28a},{'name':_0x19243b(0x75b),'type':_0x19243b(0x41b),'value':0x2bb},{'name':'ySubscriptXOffset','type':_0x19243b(0x41b),'value':0x0},{'name':_0x19243b(0x695),'type':'SHORT','value':0x8c},{'name':_0x19243b(0x600),'type':_0x19243b(0x41b),'value':0x28a},{'name':'ySuperscriptYSize','type':_0x19243b(0x41b),'value':0x2bb},{'name':_0x19243b(0xc56),'type':_0x19243b(0x41b),'value':0x0},{'name':_0x19243b(0xc8e),'type':_0x19243b(0x41b),'value':0x1df},{'name':_0x19243b(0x54c),'type':_0x19243b(0x41b),'value':0x31},{'name':'yStrikeoutPosition','type':'SHORT','value':0x102},{'name':_0x19243b(0x9db),'type':_0x19243b(0x41b),'value':0x0},{'name':_0x19243b(0xa07),'type':_0x19243b(0x94c),'value':0x0},{'name':'bSerifStyle','type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0x9b5),'type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0x356),'type':'BYTE','value':0x0},{'name':_0x19243b(0x610),'type':'BYTE','value':0x0},{'name':_0x19243b(0xbd6),'type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0x8d4),'type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0xbd9),'type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0xc07),'type':'BYTE','value':0x0},{'name':_0x19243b(0x66f),'type':_0x19243b(0x94c),'value':0x0},{'name':_0x19243b(0x914),'type':_0x19243b(0xc90),'value':0x0},{'name':'ulUnicodeRange2','type':_0x19243b(0xc90),'value':0x0},{'name':'ulUnicodeRange3','type':_0x19243b(0xc90),'value':0x0},{'name':'ulUnicodeRange4','type':_0x19243b(0xc90),'value':0x0},{'name':'achVendID','type':'CHARARRAY','value':_0x19243b(0x14b)},{'name':_0x19243b(0x748),'type':_0x19243b(0x95d),'value':0x0},{'name':_0x19243b(0x3c2),'type':_0x19243b(0x95d),'value':0x0},{'name':_0x19243b(0x57a),'type':'USHORT','value':0x0},{'name':_0x19243b(0x35d),'type':'SHORT','value':0x0},{'name':_0x19243b(0x47d),'type':_0x19243b(0x41b),'value':0x0},{'name':'sTypoLineGap','type':_0x19243b(0x41b),'value':0x0},{'name':_0x19243b(0x765),'type':_0x19243b(0x95d),'value':0x0},{'name':_0x19243b(0x4ee),'type':'USHORT','value':0x0},{'name':_0x19243b(0xc38),'type':_0x19243b(0xc90),'value':0x0},{'name':_0x19243b(0x910),'type':_0x19243b(0xc90),'value':0x0},{'name':_0x19243b(0xbb6),'type':_0x19243b(0x41b),'value':0x0},{'name':_0x19243b(0x573),'type':_0x19243b(0x41b),'value':0x0},{'name':'usDefaultChar','type':'USHORT','value':0x0},{'name':_0x19243b(0xc6d),'type':_0x19243b(0x95d),'value':0x0},{'name':'usMaxContext','type':'USHORT','value':0x0}],_0x248378);}var _0x5d60b5={'parse':_0x2cc400,'make':_0x536879,'unicodeRanges':_0x53185c,'getUnicodeRange':_0x244a13};function _0x3ba927(_0xfe01c5,_0x33e5fd){const _0x4972fd=_0x2273f6;let _0x14d52d={},_0x5a55ef=new _0x4d43da[(_0x4972fd(0xb6f))](_0xfe01c5,_0x33e5fd);switch(_0x14d52d['version']=_0x5a55ef[_0x4972fd(0x738)](),_0x14d52d[_0x4972fd(0x2e7)]=_0x5a55ef[_0x4972fd(0x2f0)](),_0x14d52d[_0x4972fd(0x4ea)]=_0x5a55ef[_0x4972fd(0x673)](),_0x14d52d[_0x4972fd(0xa03)]=_0x5a55ef[_0x4972fd(0x673)](),_0x14d52d[_0x4972fd(0x3bf)]=_0x5a55ef['parseULong'](),_0x14d52d['minMemType42']=_0x5a55ef['parseULong'](),_0x14d52d[_0x4972fd(0xc49)]=_0x5a55ef[_0x4972fd(0x398)](),_0x14d52d[_0x4972fd(0x233)]=_0x5a55ef[_0x4972fd(0x398)](),_0x14d52d[_0x4972fd(0x30a)]=_0x5a55ef[_0x4972fd(0x398)](),_0x14d52d['version']){case 0x1:_0x14d52d[_0x4972fd(0xb8f)]=_0x115450['slice']();break;case 0x2:_0x14d52d[_0x4972fd(0x4e9)]=_0x5a55ef[_0x4972fd(0x260)](),_0x14d52d[_0x4972fd(0x7f1)]=Array(_0x14d52d[_0x4972fd(0x4e9)]);for(let _0x19cea2=0x0;_0x19cea2<_0x14d52d['numberOfGlyphs'];_0x19cea2++)_0x14d52d[_0x4972fd(0x7f1)][_0x19cea2]=_0x5a55ef[_0x4972fd(0x260)]();_0x14d52d[_0x4972fd(0xb8f)]=[];for(let _0x387bca=0x0;_0x387bca<_0x14d52d['numberOfGlyphs'];_0x387bca++)if(_0x14d52d[_0x4972fd(0x7f1)][_0x387bca]>=_0x115450['length']){let _0x4124d9=_0x5a55ef[_0x4972fd(0x770)]();_0x14d52d[_0x4972fd(0xb8f)][_0x4972fd(0x381)](_0x5a55ef[_0x4972fd(0x83a)](_0x4124d9));}break;case 2.5:_0x14d52d['numberOfGlyphs']=_0x5a55ef[_0x4972fd(0x260)](),_0x14d52d[_0x4972fd(0x679)]=Array(_0x14d52d[_0x4972fd(0x4e9)]);for(let _0x1c9399=0x0;_0x1c9399<_0x14d52d[_0x4972fd(0x4e9)];_0x1c9399++)_0x14d52d[_0x4972fd(0x679)][_0x1c9399]=_0x5a55ef['parseChar']();break;}return _0x14d52d;}function _0x3e90f7(_0x56ff87){const _0x1aa214=_0x2273f6;let {italicAngle:_0x3bead2=Math[_0x1aa214(0x157)]((_0x56ff87[_0x1aa214(0x2e7)]||0x0)*0x10000),underlinePosition:_0x7b6516=0x0,underlineThickness:_0x5f0faa=0x0,isFixedPitch:_0xa84902=0x0,minMemType42:_0x3635ce=0x0,maxMemType42:_0x260a3e=0x0,minMemType1:_0x4c6dd4=0x0,maxMemType1:_0x422864=0x0}=_0x56ff87[_0x1aa214(0x796)][_0x1aa214(0x9e3)]||{};return new _0x14efbe['Table']('post',[{'name':'version','type':_0x1aa214(0x524),'value':0x30000},{'name':_0x1aa214(0x2e7),'type':_0x1aa214(0x524),'value':_0x3bead2},{'name':_0x1aa214(0x4ea),'type':_0x1aa214(0x5de),'value':_0x7b6516},{'name':'underlineThickness','type':_0x1aa214(0x5de),'value':_0x5f0faa},{'name':_0x1aa214(0x3bf),'type':_0x1aa214(0xc90),'value':_0xa84902},{'name':_0x1aa214(0x87f),'type':_0x1aa214(0xc90),'value':_0x3635ce},{'name':_0x1aa214(0xc49),'type':_0x1aa214(0xc90),'value':_0x260a3e},{'name':_0x1aa214(0x233),'type':_0x1aa214(0xc90),'value':_0x4c6dd4},{'name':_0x1aa214(0x30a),'type':_0x1aa214(0xc90),'value':_0x422864}]);}var _0xfdc6e9={'parse':_0x3ba927,'make':_0x3e90f7},_0x10b9b8=Array(0x9);_0x10b9b8[0x1]=function(){const _0xd5dce2=_0x2273f6;let _0x309efe=this[_0xd5dce2(0x679)]+this[_0xd5dce2(0x7a9)],_0x256c75=this[_0xd5dce2(0x260)]();if(_0x256c75===0x1)return{'substFormat':0x1,'coverage':this[_0xd5dce2(0x3ee)](_0x43487c[_0xd5dce2(0x8aa)]),'deltaGlyphId':this[_0xd5dce2(0x673)]()};if(_0x256c75===0x2)return{'substFormat':0x2,'coverage':this[_0xd5dce2(0x3ee)](_0x43487c[_0xd5dce2(0x8aa)]),'substitute':this[_0xd5dce2(0x1c6)]()};_0x95cc0[_0xd5dce2(0x4bd)](!0x1,'0x'+_0x309efe[_0xd5dce2(0x23e)](0x10)+_0xd5dce2(0x952));},_0x10b9b8[0x2]=function(){const _0x3e67b7=_0x2273f6;let _0xf5e180=this[_0x3e67b7(0x260)]();return _0x95cc0[_0x3e67b7(0x8e5)](_0xf5e180===0x1,_0x3e67b7(0x7d1)),{'substFormat':_0xf5e180,'coverage':this[_0x3e67b7(0x3ee)](_0x43487c[_0x3e67b7(0x8aa)]),'sequences':this[_0x3e67b7(0x49d)]()};},_0x10b9b8[0x3]=function(){const _0x17c7d5=_0x2273f6;let _0x2d72cf=this[_0x17c7d5(0x260)]();return _0x95cc0[_0x17c7d5(0x8e5)](_0x2d72cf===0x1,_0x17c7d5(0xb0a)),{'substFormat':_0x2d72cf,'coverage':this[_0x17c7d5(0x3ee)](_0x43487c[_0x17c7d5(0x8aa)]),'alternateSets':this[_0x17c7d5(0x49d)]()};},_0x10b9b8[0x4]=function(){const _0xc519cd=_0x2273f6;let _0x34b228=this['parseUShort']();return _0x95cc0[_0xc519cd(0x8e5)](_0x34b228===0x1,'GSUB\x20ligature\x20table\x20identifier-format\x20must\x20be\x201'),{'substFormat':_0x34b228,'coverage':this[_0xc519cd(0x3ee)](_0x43487c[_0xc519cd(0x8aa)]),'ligatureSets':this['parseListOfLists'](function(){const _0x113905=_0xc519cd;return{'ligGlyph':this['parseUShort'](),'components':this['parseUShortList'](this[_0x113905(0x260)]()-0x1)};})};};var _0x1245f7={'sequenceIndex':_0x43487c[_0x2273f6(0x678)],'lookupListIndex':_0x43487c[_0x2273f6(0x678)]};_0x10b9b8[0x5]=function(){const _0x50111e=_0x2273f6;let _0x47d02f=this[_0x50111e(0x679)]+this[_0x50111e(0x7a9)],_0x50a17b=this[_0x50111e(0x260)]();if(_0x50a17b===0x1)return{'substFormat':_0x50a17b,'coverage':this[_0x50111e(0x3ee)](_0x43487c[_0x50111e(0x8aa)]),'ruleSets':this[_0x50111e(0x49d)](function(){const _0x37b8a7=_0x50111e;let _0x212273=this[_0x37b8a7(0x260)](),_0x459041=this[_0x37b8a7(0x260)]();return{'input':this['parseUShortList'](_0x212273-0x1),'lookupRecords':this[_0x37b8a7(0x8a1)](_0x459041,_0x1245f7)};})};if(_0x50a17b===0x2)return{'substFormat':_0x50a17b,'coverage':this[_0x50111e(0x3ee)](_0x43487c['coverage']),'classDef':this['parsePointer'](_0x43487c['classDef']),'classSets':this['parseListOfLists'](function(){const _0x720d15=_0x50111e;let _0x1e1152=this[_0x720d15(0x260)](),_0xb958ad=this['parseUShort']();return{'classes':this[_0x720d15(0x153)](_0x1e1152-0x1),'lookupRecords':this['parseRecordList'](_0xb958ad,_0x1245f7)};})};if(_0x50a17b===0x3){let _0x4faa55=this['parseUShort'](),_0x469321=this[_0x50111e(0x260)]();return{'substFormat':_0x50a17b,'coverages':this[_0x50111e(0x341)](_0x4faa55,_0x43487c['pointer'](_0x43487c[_0x50111e(0x8aa)])),'lookupRecords':this[_0x50111e(0x8a1)](_0x469321,_0x1245f7)};}_0x95cc0[_0x50111e(0x4bd)](!0x1,'0x'+_0x47d02f[_0x50111e(0x23e)](0x10)+_0x50111e(0xbb2));},_0x10b9b8[0x6]=function(){const _0x2b5719=_0x2273f6;let _0x4346cf=this[_0x2b5719(0x679)]+this['relativeOffset'],_0x1b49ac=this[_0x2b5719(0x260)]();if(_0x1b49ac===0x1)return{'substFormat':0x1,'coverage':this[_0x2b5719(0x3ee)](_0x43487c[_0x2b5719(0x8aa)]),'chainRuleSets':this[_0x2b5719(0x49d)](function(){const _0x1b927e=_0x2b5719;return{'backtrack':this['parseUShortList'](),'input':this[_0x1b927e(0x153)](this['parseShort']()-0x1),'lookahead':this[_0x1b927e(0x153)](),'lookupRecords':this[_0x1b927e(0x8a1)](_0x1245f7)};})};if(_0x1b49ac===0x2)return{'substFormat':0x2,'coverage':this[_0x2b5719(0x3ee)](_0x43487c[_0x2b5719(0x8aa)]),'backtrackClassDef':this['parsePointer'](_0x43487c[_0x2b5719(0x948)]),'inputClassDef':this['parsePointer'](_0x43487c[_0x2b5719(0x948)]),'lookaheadClassDef':this[_0x2b5719(0x3ee)](_0x43487c[_0x2b5719(0x948)]),'chainClassSet':this[_0x2b5719(0x49d)](function(){const _0xb465c0=_0x2b5719;return{'backtrack':this[_0xb465c0(0x153)](),'input':this['parseUShortList'](this[_0xb465c0(0x673)]()-0x1),'lookahead':this['parseUShortList'](),'lookupRecords':this[_0xb465c0(0x8a1)](_0x1245f7)};})};if(_0x1b49ac===0x3)return{'substFormat':0x3,'backtrackCoverage':this[_0x2b5719(0x341)](_0x43487c[_0x2b5719(0x507)](_0x43487c[_0x2b5719(0x8aa)])),'inputCoverage':this[_0x2b5719(0x341)](_0x43487c[_0x2b5719(0x507)](_0x43487c[_0x2b5719(0x8aa)])),'lookaheadCoverage':this[_0x2b5719(0x341)](_0x43487c[_0x2b5719(0x507)](_0x43487c[_0x2b5719(0x8aa)])),'lookupRecords':this[_0x2b5719(0x8a1)](_0x1245f7)};_0x95cc0[_0x2b5719(0x4bd)](!0x1,'0x'+_0x4346cf[_0x2b5719(0x23e)](0x10)+_0x2b5719(0xa21));},_0x10b9b8[0x7]=function(){const _0x3e6ae3=_0x2273f6;let _0x16e7a1=this[_0x3e6ae3(0x260)]();_0x95cc0[_0x3e6ae3(0x8e5)](_0x16e7a1===0x1,'GSUB\x20Extension\x20Substitution\x20subtable\x20identifier-format\x20must\x20be\x201');let _0xdb5471=this[_0x3e6ae3(0x260)](),_0x5c6596=new _0x43487c(this['data'],this[_0x3e6ae3(0x679)]+this['parseULong']());return{'substFormat':0x1,'lookupType':_0xdb5471,'extension':_0x10b9b8[_0xdb5471][_0x3e6ae3(0x3f4)](_0x5c6596)};},_0x10b9b8[0x8]=function(){const _0xd65d33=_0x2273f6;let _0x2d9ae7=this[_0xd65d33(0x260)]();return _0x95cc0['argument'](_0x2d9ae7===0x1,'GSUB\x20Reverse\x20Chaining\x20Contextual\x20Single\x20Substitution\x20Subtable\x20identifier-format\x20must\x20be\x201'),{'substFormat':_0x2d9ae7,'coverage':this['parsePointer'](_0x43487c[_0xd65d33(0x8aa)]),'backtrackCoverage':this[_0xd65d33(0x341)](_0x43487c[_0xd65d33(0x507)](_0x43487c[_0xd65d33(0x8aa)])),'lookaheadCoverage':this[_0xd65d33(0x341)](_0x43487c[_0xd65d33(0x507)](_0x43487c['coverage'])),'substitutes':this['parseUShortList']()};};function _0x528649(_0x119e21,_0x124448){const _0x2b080b=_0x2273f6;_0x124448=_0x124448||0x0;let _0x5202d4=new _0x43487c(_0x119e21,_0x124448),_0x4f2dfe=_0x5202d4[_0x2b080b(0x738)](0x1);return _0x95cc0['argument'](_0x4f2dfe===0x1||_0x4f2dfe===1.1,'Unsupported\x20GSUB\x20table\x20version.'),_0x4f2dfe===0x1?{'version':_0x4f2dfe,'scripts':_0x5202d4[_0x2b080b(0x410)](),'features':_0x5202d4[_0x2b080b(0x5a4)](),'lookups':_0x5202d4['parseLookupList'](_0x10b9b8)}:{'version':_0x4f2dfe,'scripts':_0x5202d4['parseScriptList'](),'features':_0x5202d4[_0x2b080b(0x5a4)](),'lookups':_0x5202d4[_0x2b080b(0x7e2)](_0x10b9b8),'variations':_0x5202d4[_0x2b080b(0xc83)]()};}var _0xa07a15=Array(0x9);_0xa07a15[0x1]=function(_0x1192db){const _0x2cb1d2=_0x2273f6;if(_0x1192db[_0x2cb1d2(0x2f5)]===0x1)return new _0x14efbe[(_0x2cb1d2(0x547))](_0x2cb1d2(0x353),[{'name':_0x2cb1d2(0x2f5),'type':'USHORT','value':0x1},{'name':_0x2cb1d2(0x8aa),'type':_0x2cb1d2(0x34a),'value':new _0x14efbe[(_0x2cb1d2(0xc3c))](_0x1192db[_0x2cb1d2(0x8aa)])},{'name':'deltaGlyphID','type':_0x2cb1d2(0x41b),'value':_0x1192db[_0x2cb1d2(0x6d0)]}]);if(_0x1192db[_0x2cb1d2(0x2f5)]===0x2)return new _0x14efbe[(_0x2cb1d2(0x547))](_0x2cb1d2(0x353),[{'name':'substFormat','type':_0x2cb1d2(0x95d),'value':0x2},{'name':'coverage','type':_0x2cb1d2(0x34a),'value':new _0x14efbe[(_0x2cb1d2(0xc3c))](_0x1192db['coverage'])}][_0x2cb1d2(0xaba)](_0x14efbe[_0x2cb1d2(0x27c)](_0x2cb1d2(0x867),_0x1192db[_0x2cb1d2(0x867)])));_0x95cc0[_0x2cb1d2(0x248)](_0x2cb1d2(0xc9f));},_0xa07a15[0x2]=function(_0x2b43c4){const _0x2f652e=_0x2273f6;return _0x95cc0['assert'](_0x2b43c4['substFormat']===0x1,_0x2f652e(0x27a)),new _0x14efbe['Table'](_0x2f652e(0x353),[{'name':'substFormat','type':_0x2f652e(0x95d),'value':0x1},{'name':_0x2f652e(0x8aa),'type':_0x2f652e(0x34a),'value':new _0x14efbe['Coverage'](_0x2b43c4[_0x2f652e(0x8aa)])}][_0x2f652e(0xaba)](_0x14efbe[_0x2f652e(0x4c7)]('seqSet',_0x2b43c4[_0x2f652e(0x32a)],function(_0x10d290){const _0x33eed3=_0x2f652e;return new _0x14efbe[(_0x33eed3(0x547))](_0x33eed3(0x323),_0x14efbe[_0x33eed3(0x27c)](_0x33eed3(0x6d1),_0x10d290));})));},_0xa07a15[0x3]=function(_0x3b0640){const _0x129ef1=_0x2273f6;return _0x95cc0[_0x129ef1(0x4bd)](_0x3b0640[_0x129ef1(0x2f5)]===0x1,_0x129ef1(0xbb4)),new _0x14efbe[(_0x129ef1(0x547))](_0x129ef1(0x353),[{'name':_0x129ef1(0x2f5),'type':'USHORT','value':0x1},{'name':_0x129ef1(0x8aa),'type':'TABLE','value':new _0x14efbe[(_0x129ef1(0xc3c))](_0x3b0640[_0x129ef1(0x8aa)])}][_0x129ef1(0xaba)](_0x14efbe['tableList']('altSet',_0x3b0640[_0x129ef1(0x9f0)],function(_0x5a5ab2){const _0x1a59ff=_0x129ef1;return new _0x14efbe['Table']('alternateSetTable',_0x14efbe[_0x1a59ff(0x27c)](_0x1a59ff(0x3e4),_0x5a5ab2));})));},_0xa07a15[0x4]=function(_0x539694){const _0x28b56c=_0x2273f6;return _0x95cc0['assert'](_0x539694[_0x28b56c(0x2f5)]===0x1,_0x28b56c(0x329)),new _0x14efbe['Table'](_0x28b56c(0x353),[{'name':'substFormat','type':_0x28b56c(0x95d),'value':0x1},{'name':_0x28b56c(0x8aa),'type':_0x28b56c(0x34a),'value':new _0x14efbe['Coverage'](_0x539694[_0x28b56c(0x8aa)])}][_0x28b56c(0xaba)](_0x14efbe['tableList'](_0x28b56c(0x1b0),_0x539694['ligatureSets'],function(_0x1447da){const _0x547e3d=_0x28b56c;return new _0x14efbe[(_0x547e3d(0x547))]('ligatureSetTable',_0x14efbe[_0x547e3d(0x4c7)](_0x547e3d(0x8b8),_0x1447da,function(_0x3a160a){const _0x59e13f=_0x547e3d;return new _0x14efbe[(_0x59e13f(0x547))](_0x59e13f(0x964),[{'name':_0x59e13f(0xab2),'type':_0x59e13f(0x95d),'value':_0x3a160a[_0x59e13f(0xab2)]}]['concat'](_0x14efbe[_0x59e13f(0x27c)](_0x59e13f(0x6ed),_0x3a160a[_0x59e13f(0x667)],_0x3a160a[_0x59e13f(0x667)][_0x59e13f(0xba6)]+0x1)));}));})));},_0xa07a15[0x5]=function(_0x5a242b){const _0xa6db69=_0x2273f6;if(_0x5a242b[_0xa6db69(0x2f5)]===0x1)return new _0x14efbe['Table'](_0xa6db69(0xb61),[{'name':_0xa6db69(0x2f5),'type':'USHORT','value':_0x5a242b[_0xa6db69(0x2f5)]},{'name':_0xa6db69(0x8aa),'type':_0xa6db69(0x34a),'value':new _0x14efbe['Coverage'](_0x5a242b[_0xa6db69(0x8aa)])}]['concat'](_0x14efbe[_0xa6db69(0x4c7)](_0xa6db69(0xab8),_0x5a242b[_0xa6db69(0xb70)],function(_0x140b13){const _0x2cc132=_0xa6db69;return _0x140b13?new _0x14efbe[(_0x2cc132(0x547))]('sequenceRuleSetTable',_0x14efbe[_0x2cc132(0x4c7)](_0x2cc132(0x405),_0x140b13,function(_0x454cd3){const _0x1dc453=_0x2cc132;let _0x4d54ce=_0x14efbe['ushortList'](_0x1dc453(0x81c),[],_0x454cd3[_0x1dc453(0x503)][_0x1dc453(0xba6)])[_0x1dc453(0xaba)](_0x14efbe[_0x1dc453(0x27c)]('inputSequence',_0x454cd3[_0x1dc453(0x526)],_0x454cd3[_0x1dc453(0x526)]['length']+0x1));[_0x4d54ce[0x0],_0x4d54ce[0x1]]=[_0x4d54ce[0x1],_0x4d54ce[0x0]];for(let _0x15bf78=0x0;_0x15bf78<_0x454cd3[_0x1dc453(0x503)][_0x1dc453(0xba6)];_0x15bf78++){let _0x335965=_0x454cd3['lookupRecords'][_0x15bf78];_0x4d54ce=_0x4d54ce[_0x1dc453(0xaba)]({'name':_0x1dc453(0x792)+_0x15bf78,'type':_0x1dc453(0x95d),'value':_0x335965['sequenceIndex']})[_0x1dc453(0xaba)]({'name':'lookupListIndex'+_0x15bf78,'type':_0x1dc453(0x95d),'value':_0x335965[_0x1dc453(0xc4d)]});}return new _0x14efbe[(_0x1dc453(0x547))]('sequenceRuleTable',_0x4d54ce);})):new _0x14efbe[(_0x2cc132(0x547))](_0x2cc132(0x2e1),null);})));if(_0x5a242b[_0xa6db69(0x2f5)]===0x2)return new _0x14efbe['Table']('contextualSubstitutionTable',[{'name':_0xa6db69(0x2f5),'type':'USHORT','value':_0x5a242b[_0xa6db69(0x2f5)]},{'name':_0xa6db69(0x8aa),'type':_0xa6db69(0x34a),'value':new _0x14efbe[(_0xa6db69(0xc3c))](_0x5a242b[_0xa6db69(0x8aa)])},{'name':_0xa6db69(0x948),'type':_0xa6db69(0x34a),'value':new _0x14efbe['ClassDef'](_0x5a242b[_0xa6db69(0x948)])}][_0xa6db69(0xaba)](_0x14efbe[_0xa6db69(0x4c7)]('classSeqRuleSet',_0x5a242b[_0xa6db69(0xc9e)],function(_0x9c6ff5){const _0x2477d3=_0xa6db69;return _0x9c6ff5?new _0x14efbe[(_0x2477d3(0x547))](_0x2477d3(0x519),_0x14efbe[_0x2477d3(0x4c7)]('classSeqRule',_0x9c6ff5,function(_0x559fb6){const _0x11b4af=_0x2477d3;let _0x51e5b9=_0x14efbe[_0x11b4af(0x27c)](_0x11b4af(0x83e),_0x559fb6[_0x11b4af(0x83e)],_0x559fb6['classes'][_0x11b4af(0xba6)]+0x1)[_0x11b4af(0xaba)](_0x14efbe[_0x11b4af(0x27c)]('seqLookupCount',[],_0x559fb6[_0x11b4af(0x503)][_0x11b4af(0xba6)]));for(let _0x287b13=0x0;_0x287b13<_0x559fb6[_0x11b4af(0x503)][_0x11b4af(0xba6)];_0x287b13++){let _0x2f31d2=_0x559fb6['lookupRecords'][_0x287b13];_0x51e5b9=_0x51e5b9[_0x11b4af(0xaba)]({'name':'sequenceIndex'+_0x287b13,'type':_0x11b4af(0x95d),'value':_0x2f31d2[_0x11b4af(0x792)]})[_0x11b4af(0xaba)]({'name':_0x11b4af(0xc4d)+_0x287b13,'type':_0x11b4af(0x95d),'value':_0x2f31d2[_0x11b4af(0xc4d)]});}return new _0x14efbe[(_0x11b4af(0x547))](_0x11b4af(0xa09),_0x51e5b9);})):new _0x14efbe['Table'](_0x2477d3(0x2e1),null);})));if(_0x5a242b[_0xa6db69(0x2f5)]===0x3){let _0x257e09=[{'name':'substFormat','type':'USHORT','value':_0x5a242b[_0xa6db69(0x2f5)]}];_0x257e09[_0xa6db69(0x381)]({'name':_0xa6db69(0x35a),'type':_0xa6db69(0x95d),'value':_0x5a242b['coverages'][_0xa6db69(0xba6)]}),_0x257e09[_0xa6db69(0x381)]({'name':_0xa6db69(0x8ac),'type':_0xa6db69(0x95d),'value':_0x5a242b[_0xa6db69(0x503)][_0xa6db69(0xba6)]});for(let _0x551c10=0x0;_0x551c10<_0x5a242b[_0xa6db69(0x879)][_0xa6db69(0xba6)];_0x551c10++){let _0x1c7808=_0x5a242b[_0xa6db69(0x879)][_0x551c10];_0x257e09[_0xa6db69(0x381)]({'name':_0xa6db69(0x712)+_0x551c10,'type':_0xa6db69(0x34a),'value':new _0x14efbe[(_0xa6db69(0xc3c))](_0x1c7808)});}for(let _0x28ef25=0x0;_0x28ef25<_0x5a242b[_0xa6db69(0x503)][_0xa6db69(0xba6)];_0x28ef25++){let _0x22054f=_0x5a242b[_0xa6db69(0x503)][_0x28ef25];_0x257e09=_0x257e09[_0xa6db69(0xaba)]({'name':'sequenceIndex'+_0x28ef25,'type':_0xa6db69(0x95d),'value':_0x22054f['sequenceIndex']})[_0xa6db69(0xaba)]({'name':_0xa6db69(0xc4d)+_0x28ef25,'type':_0xa6db69(0x95d),'value':_0x22054f[_0xa6db69(0xc4d)]});}return new _0x14efbe[(_0xa6db69(0x547))](_0xa6db69(0xb61),_0x257e09);}_0x95cc0[_0xa6db69(0x4bd)](!0x1,_0xa6db69(0x227));},_0xa07a15[0x6]=function(_0x77df04){const _0x12b29c=_0x2273f6;if(_0x77df04[_0x12b29c(0x2f5)]===0x1)return new _0x14efbe[(_0x12b29c(0x547))](_0x12b29c(0x3ef),[{'name':_0x12b29c(0x2f5),'type':_0x12b29c(0x95d),'value':_0x77df04['substFormat']},{'name':'coverage','type':_0x12b29c(0x34a),'value':new _0x14efbe[(_0x12b29c(0xc3c))](_0x77df04['coverage'])}][_0x12b29c(0xaba)](_0x14efbe[_0x12b29c(0x4c7)]('chainRuleSet',_0x77df04[_0x12b29c(0x180)],function(_0x563366){const _0x349181=_0x12b29c;return new _0x14efbe[(_0x349181(0x547))](_0x349181(0x60e),_0x14efbe['tableList'](_0x349181(0x889),_0x563366,function(_0xde9af5){const _0x5f534a=_0x349181;let _0x205512=_0x14efbe[_0x5f534a(0x27c)]('backtrackGlyph',_0xde9af5[_0x5f534a(0x368)],_0xde9af5[_0x5f534a(0x368)][_0x5f534a(0xba6)])['concat'](_0x14efbe[_0x5f534a(0x27c)](_0x5f534a(0xa44),_0xde9af5['input'],_0xde9af5['input'][_0x5f534a(0xba6)]+0x1))['concat'](_0x14efbe[_0x5f534a(0x27c)](_0x5f534a(0x15e),_0xde9af5[_0x5f534a(0x570)],_0xde9af5[_0x5f534a(0x570)][_0x5f534a(0xba6)]))['concat'](_0x14efbe[_0x5f534a(0x27c)](_0x5f534a(0xacf),[],_0xde9af5[_0x5f534a(0x503)][_0x5f534a(0xba6)]));for(let _0x428c14=0x0;_0x428c14<_0xde9af5[_0x5f534a(0x503)][_0x5f534a(0xba6)];_0x428c14++){let _0x374090=_0xde9af5[_0x5f534a(0x503)][_0x428c14];_0x205512=_0x205512[_0x5f534a(0xaba)]({'name':'sequenceIndex'+_0x428c14,'type':_0x5f534a(0x95d),'value':_0x374090[_0x5f534a(0x792)]})['concat']({'name':_0x5f534a(0xc4d)+_0x428c14,'type':'USHORT','value':_0x374090['lookupListIndex']});}return new _0x14efbe[(_0x5f534a(0x547))](_0x5f534a(0xaef),_0x205512);}));})));if(_0x77df04[_0x12b29c(0x2f5)]===0x2)_0x95cc0['assert'](!0x1,_0x12b29c(0x12d));else{if(_0x77df04[_0x12b29c(0x2f5)]===0x3){let _0x31f4a2=[{'name':'substFormat','type':_0x12b29c(0x95d),'value':_0x77df04['substFormat']}];_0x31f4a2['push']({'name':'backtrackGlyphCount','type':_0x12b29c(0x95d),'value':_0x77df04['backtrackCoverage'][_0x12b29c(0xba6)]});for(let _0x47521c=0x0;_0x47521c<_0x77df04[_0x12b29c(0x4e6)]['length'];_0x47521c++){let _0x1b090b=_0x77df04['backtrackCoverage'][_0x47521c];_0x31f4a2[_0x12b29c(0x381)]({'name':_0x12b29c(0x4e6)+_0x47521c,'type':'TABLE','value':new _0x14efbe[(_0x12b29c(0xc3c))](_0x1b090b)});}_0x31f4a2[_0x12b29c(0x381)]({'name':'inputGlyphCount','type':_0x12b29c(0x95d),'value':_0x77df04[_0x12b29c(0x712)]['length']});for(let _0x3be884=0x0;_0x3be884<_0x77df04[_0x12b29c(0x712)][_0x12b29c(0xba6)];_0x3be884++){let _0x38b946=_0x77df04[_0x12b29c(0x712)][_0x3be884];_0x31f4a2[_0x12b29c(0x381)]({'name':_0x12b29c(0x712)+_0x3be884,'type':_0x12b29c(0x34a),'value':new _0x14efbe[(_0x12b29c(0xc3c))](_0x38b946)});}_0x31f4a2[_0x12b29c(0x381)]({'name':_0x12b29c(0xbd1),'type':_0x12b29c(0x95d),'value':_0x77df04[_0x12b29c(0x1a8)][_0x12b29c(0xba6)]});for(let _0x46d04c=0x0;_0x46d04c<_0x77df04['lookaheadCoverage'][_0x12b29c(0xba6)];_0x46d04c++){let _0x2ddfb4=_0x77df04['lookaheadCoverage'][_0x46d04c];_0x31f4a2[_0x12b29c(0x381)]({'name':_0x12b29c(0x1a8)+_0x46d04c,'type':_0x12b29c(0x34a),'value':new _0x14efbe[(_0x12b29c(0xc3c))](_0x2ddfb4)});}_0x31f4a2[_0x12b29c(0x381)]({'name':_0x12b29c(0x8ac),'type':_0x12b29c(0x95d),'value':_0x77df04[_0x12b29c(0x503)]['length']});for(let _0x4e1c72=0x0;_0x4e1c72<_0x77df04[_0x12b29c(0x503)]['length'];_0x4e1c72++){let _0x2f7157=_0x77df04[_0x12b29c(0x503)][_0x4e1c72];_0x31f4a2=_0x31f4a2[_0x12b29c(0xaba)]({'name':_0x12b29c(0x792)+_0x4e1c72,'type':_0x12b29c(0x95d),'value':_0x2f7157[_0x12b29c(0x792)]})[_0x12b29c(0xaba)]({'name':_0x12b29c(0xc4d)+_0x4e1c72,'type':_0x12b29c(0x95d),'value':_0x2f7157['lookupListIndex']});}return new _0x14efbe['Table'](_0x12b29c(0x3ef),_0x31f4a2);}}_0x95cc0[_0x12b29c(0x4bd)](!0x1,'lookup\x20type\x206\x20format\x20must\x20be\x201,\x202\x20or\x203.');};function _0x1d855c(_0x1e9194){const _0x3c22ef=_0x2273f6;return new _0x14efbe[(_0x3c22ef(0x547))](_0x3c22ef(0x554),[{'name':'version','type':'ULONG','value':0x10000},{'name':_0x3c22ef(0x443),'type':_0x3c22ef(0x34a),'value':new _0x14efbe[(_0x3c22ef(0x213))](_0x1e9194[_0x3c22ef(0x443)])},{'name':'features','type':_0x3c22ef(0x34a),'value':new _0x14efbe['FeatureList'](_0x1e9194['features'])},{'name':_0x3c22ef(0x95f),'type':_0x3c22ef(0x34a),'value':new _0x14efbe['LookupList'](_0x1e9194[_0x3c22ef(0x95f)],_0xa07a15)}]);}var _0x2bf391={'parse':_0x528649,'make':_0x1d855c};function _0x424fe6(_0x45c304,_0x5ca52c){const _0x1045aa=_0x2273f6;let _0x3a726d=new _0x4d43da['Parser'](_0x45c304,_0x5ca52c),_0x2f447d=_0x3a726d[_0x1045aa(0x398)]();_0x95cc0[_0x1045aa(0x8e5)](_0x2f447d===0x1,_0x1045aa(0xba7)),_0x3a726d[_0x1045aa(0x398)](),_0x3a726d[_0x1045aa(0x398)]();let _0x512428=_0x3a726d[_0x1045aa(0x398)](),_0x5d004a={};for(let _0x55429b=0x0;_0x55429b<_0x512428;_0x55429b++){let _0x5d8992=_0x3a726d[_0x1045aa(0x84c)](),_0x3e4abb=_0x3a726d[_0x1045aa(0x398)](),_0x1eacbc=_0x3a726d[_0x1045aa(0x398)]();_0x5d8992!=='appl'&&_0x5d8992!=='bild'&&(_0x5d004a[_0x5d8992]=_0x4c45b7[_0x1045aa(0x5dd)](_0x45c304,_0x5ca52c+_0x3e4abb,_0x1eacbc));}return _0x5d004a;}function _0x5cc60b(_0x3e29dc){const _0x3a3192=_0x2273f6;let _0x7a8a3a=Object[_0x3a3192(0x3ed)](_0x3e29dc)[_0x3a3192(0xba6)],_0x1290a4='',_0x55b735=0x10+_0x7a8a3a*0xc,_0x26f283=new _0x14efbe[(_0x3a3192(0x547))]('meta',[{'name':_0x3a3192(0x250),'type':_0x3a3192(0xc90),'value':0x1},{'name':_0x3a3192(0x39a),'type':_0x3a3192(0xc90),'value':0x0},{'name':_0x3a3192(0x679),'type':_0x3a3192(0xc90),'value':_0x55b735},{'name':_0x3a3192(0x6bf),'type':_0x3a3192(0xc90),'value':_0x7a8a3a}]);for(let _0x47d007 in _0x3e29dc){let _0x1935af=_0x1290a4[_0x3a3192(0xba6)];_0x1290a4+=_0x3e29dc[_0x47d007],_0x26f283['fields'][_0x3a3192(0x381)]({'name':_0x3a3192(0x548)+_0x47d007,'type':_0x3a3192(0xae2),'value':_0x47d007}),_0x26f283['fields'][_0x3a3192(0x381)]({'name':'offset\x20'+_0x47d007,'type':_0x3a3192(0xc90),'value':_0x55b735+_0x1935af}),_0x26f283[_0x3a3192(0x843)]['push']({'name':_0x3a3192(0x64f)+_0x47d007,'type':_0x3a3192(0xc90),'value':_0x3e29dc[_0x47d007][_0x3a3192(0xba6)]});}return _0x26f283[_0x3a3192(0x843)][_0x3a3192(0x381)]({'name':'stringPool','type':_0x3a3192(0xca4),'value':_0x1290a4}),_0x26f283;}var _0x37d089={'parse':_0x424fe6,'make':_0x5cc60b};function _0x514c49(_0x181a80,_0x16223d){const _0x4e73ee=_0x2273f6;let _0x569504=new _0x43487c(_0x181a80,_0x16223d),_0x45145b=_0x569504[_0x4e73ee(0x260)]();_0x45145b!==0x0&&console[_0x4e73ee(0xc59)](_0x4e73ee(0x628));let _0x141c0e=_0x569504[_0x4e73ee(0x260)](),_0x4c56df=_0x569504[_0x4e73ee(0x562)](),_0x286cbc=_0x569504[_0x4e73ee(0x562)](),_0x48f942=_0x569504[_0x4e73ee(0x260)]();_0x569504['relativeOffset']=_0x4c56df;let _0x48e5f7=_0x569504[_0x4e73ee(0x8a1)](_0x141c0e,{'glyphID':_0x43487c['uShort'],'firstLayerIndex':_0x43487c['uShort'],'numLayers':_0x43487c['uShort']});return _0x569504[_0x4e73ee(0x7a9)]=_0x286cbc,{'version':_0x45145b,'baseGlyphRecords':_0x48e5f7,'layerRecords':_0x569504['parseRecordList'](_0x48f942,{'glyphID':_0x43487c[_0x4e73ee(0x678)],'paletteIndex':_0x43487c[_0x4e73ee(0x678)]})};}function _0x49a8f0({version:_0x5748be=0x0,baseGlyphRecords:_0x8f49e9=[],layerRecords:_0x467ff9=[]}){const _0x4c661c=_0x2273f6;_0x95cc0['argument'](_0x5748be===0x0,_0x4c661c(0xbdd));let _0x52a07c=0xe+_0x8f49e9[_0x4c661c(0xba6)]*0x6;return new _0x14efbe['Table'](_0x4c661c(0x2cd),[{'name':'version','type':_0x4c661c(0x95d),'value':_0x5748be},{'name':_0x4c661c(0xa83),'type':'USHORT','value':_0x8f49e9[_0x4c661c(0xba6)]},{'name':_0x4c661c(0x215),'type':'ULONG','value':0xe},{'name':_0x4c661c(0xb96),'type':'ULONG','value':_0x52a07c},{'name':_0x4c661c(0xa70),'type':_0x4c661c(0x95d),'value':_0x467ff9[_0x4c661c(0xba6)]},..._0x8f49e9[_0x4c661c(0xb06)]((_0x1c70f2,_0x411f67)=>[{'name':_0x4c661c(0xb47)+_0x411f67,'type':_0x4c661c(0x95d),'value':_0x1c70f2[_0x4c661c(0x15f)]},{'name':_0x4c661c(0x2a5)+_0x411f67,'type':_0x4c661c(0x95d),'value':_0x1c70f2[_0x4c661c(0xbee)]},{'name':_0x4c661c(0x817)+_0x411f67,'type':_0x4c661c(0x95d),'value':_0x1c70f2[_0x4c661c(0x5a6)]}])[_0x4c661c(0x549)](),..._0x467ff9['map']((_0x5d05a1,_0x1514be)=>[{'name':'LayerGlyphID_'+_0x1514be,'type':'USHORT','value':_0x5d05a1['glyphID']},{'name':_0x4c661c(0x16f)+_0x1514be,'type':_0x4c661c(0x95d),'value':_0x5d05a1[_0x4c661c(0x805)]}])[_0x4c661c(0x549)]()]);}var _0x56e1e0={'parse':_0x514c49,'make':_0x49a8f0};function _0x5bd90d(_0xac87c5,_0x5cfcae){const _0x3e90a4=_0x2273f6;return[{'name':'tag_'+_0xac87c5,'type':'TAG','value':_0x5cfcae[_0x3e90a4(0xbc6)]},{'name':_0x3e90a4(0x6ee)+_0xac87c5,'type':_0x3e90a4(0x524),'value':_0x5cfcae['minValue']<<0x10},{'name':_0x3e90a4(0x6ca)+_0xac87c5,'type':'FIXED','value':_0x5cfcae[_0x3e90a4(0x501)]<<0x10},{'name':_0x3e90a4(0x51f)+_0xac87c5,'type':_0x3e90a4(0x524),'value':_0x5cfcae[_0x3e90a4(0xabe)]<<0x10},{'name':'flags_'+_0xac87c5,'type':_0x3e90a4(0x95d),'value':0x0},{'name':'nameID_'+_0xac87c5,'type':_0x3e90a4(0x95d),'value':_0x5cfcae[_0x3e90a4(0x9ed)]}];}function _0x12e19c(_0x126cf2,_0x5b43de,_0x135043){const _0x3069c5=_0x2273f6;let _0x2fe767={},_0x2fc9f7=new _0x4d43da[(_0x3069c5(0xb6f))](_0x126cf2,_0x5b43de);_0x2fe767[_0x3069c5(0xbc6)]=_0x2fc9f7[_0x3069c5(0x84c)](),_0x2fe767[_0x3069c5(0x5ae)]=_0x2fc9f7[_0x3069c5(0x2f0)](),_0x2fe767['defaultValue']=_0x2fc9f7[_0x3069c5(0x2f0)](),_0x2fe767[_0x3069c5(0xabe)]=_0x2fc9f7[_0x3069c5(0x2f0)](),_0x2fc9f7[_0x3069c5(0x2b6)]('uShort',0x1);let _0x3defec=_0x2fc9f7['parseUShort']();return _0x2fe767[_0x3069c5(0x9ed)]=_0x3defec,_0x2fe767[_0x3069c5(0x37a)]=_0x2c5ee8(_0x135043,_0x3defec),_0x2fe767;}function _0x5c65d0(_0x2aa210,_0xd98ee,_0x267406,_0x53f70e={}){const _0x473045=_0x2273f6;let _0x94fc4e=[{'name':_0x473045(0x125)+_0x2aa210,'type':_0x473045(0x95d),'value':_0xd98ee['subfamilyNameID']},{'name':_0x473045(0xbf5)+_0x2aa210,'type':_0x473045(0x95d),'value':0x0}];for(let _0x3d7797=0x0;_0x3d7797<_0x267406['length'];++_0x3d7797){let _0x1fdd96=_0x267406[_0x3d7797]['tag'];_0x94fc4e['push']({'name':'axis_'+_0x2aa210+'\x20'+_0x1fdd96,'type':_0x473045(0x524),'value':_0xd98ee[_0x473045(0x33d)][_0x1fdd96]<<0x10});}return _0x53f70e&&_0x53f70e['postScriptNameID']&&_0x94fc4e['push']({'name':_0x473045(0x4bb),'type':_0x473045(0x95d),'value':_0xd98ee[_0x473045(0x9dc)]===void 0x0?0xffff:_0xd98ee[_0x473045(0x9dc)]}),_0x94fc4e;}function _0x9740ba(_0x29cc51,_0x458d88,_0x332b2a,_0x13b053,_0x3de3eb){const _0x186ae0=_0x2273f6;let _0x2f86a7={},_0x4bd64a=new _0x4d43da[(_0x186ae0(0xb6f))](_0x29cc51,_0x458d88),_0x2d8599=_0x4bd64a['parseUShort']();_0x2f86a7[_0x186ae0(0x794)]=_0x2d8599,_0x2f86a7[_0x186ae0(0x37a)]=_0x2c5ee8(_0x13b053,_0x2d8599,[0x2,0x11]),_0x4bd64a[_0x186ae0(0x2b6)](_0x186ae0(0x678),0x1),_0x2f86a7[_0x186ae0(0x33d)]={};for(let _0x5b6747=0x0;_0x5b6747<_0x332b2a['length'];++_0x5b6747)_0x2f86a7['coordinates'][_0x332b2a[_0x5b6747][_0x186ae0(0xbc6)]]=_0x4bd64a[_0x186ae0(0x2f0)]();if(_0x4bd64a[_0x186ae0(0x7a9)]===_0x3de3eb)return _0x2f86a7[_0x186ae0(0x9dc)]=void 0x0,_0x2f86a7[_0x186ae0(0x29f)]=void 0x0,_0x2f86a7;let _0x14db90=_0x4bd64a[_0x186ae0(0x260)]();return _0x2f86a7['postScriptNameID']=_0x14db90==0xffff?void 0x0:_0x14db90,_0x2f86a7[_0x186ae0(0x29f)]=_0x2f86a7['postScriptNameID']===void 0x0?'':_0x2c5ee8(_0x13b053,_0x14db90,[0x6]),_0x2f86a7;}function _0x4d0567(_0xcd602f,_0x15d03f){const _0x242ffc=_0x2273f6;let _0x4359ff=new _0x14efbe[(_0x242ffc(0x547))](_0x242ffc(0x7b0),[{'name':_0x242ffc(0x250),'type':'ULONG','value':0x10000},{'name':'offsetToData','type':'USHORT','value':0x0},{'name':_0x242ffc(0x1b5),'type':'USHORT','value':0x2},{'name':_0x242ffc(0x779),'type':_0x242ffc(0x95d),'value':_0xcd602f['axes']['length']},{'name':_0x242ffc(0x4f5),'type':_0x242ffc(0x95d),'value':0x14},{'name':_0x242ffc(0x8ea),'type':_0x242ffc(0x95d),'value':_0xcd602f['instances'][_0x242ffc(0xba6)]},{'name':'instanceSize','type':'USHORT','value':0x4+_0xcd602f[_0x242ffc(0x362)][_0x242ffc(0xba6)]*0x4}]);_0x4359ff[_0x242ffc(0x5a0)]=_0x4359ff[_0x242ffc(0x58f)]();for(let _0x14976e=0x0;_0x14976e<_0xcd602f[_0x242ffc(0x362)]['length'];_0x14976e++)_0x4359ff[_0x242ffc(0x843)]=_0x4359ff[_0x242ffc(0x843)][_0x242ffc(0xaba)](_0x5bd90d(_0x14976e,_0xcd602f['axes'][_0x14976e],_0x15d03f));let _0xdcaa71={};for(let _0x44b4a9=0x0;_0x44b4a9<_0xcd602f[_0x242ffc(0x66d)][_0x242ffc(0xba6)];_0x44b4a9++)if(_0xcd602f['instances'][_0x44b4a9][_0x242ffc(0x9dc)]!==void 0x0){_0x4359ff['instanceSize']+=0x2,_0xdcaa71['postScriptNameID']=!0x0;break;}for(let _0x17ddc0=0x0;_0x17ddc0<_0xcd602f[_0x242ffc(0x66d)][_0x242ffc(0xba6)];_0x17ddc0++)_0x4359ff[_0x242ffc(0x843)]=_0x4359ff[_0x242ffc(0x843)]['concat'](_0x5c65d0(_0x17ddc0,_0xcd602f[_0x242ffc(0x66d)][_0x17ddc0],_0xcd602f[_0x242ffc(0x362)],_0xdcaa71));return _0x4359ff;}function _0x31277c(_0x278e70,_0x34808f,_0x14fc7f){const _0x2dbf8d=_0x2273f6;let _0x2597ee=new _0x4d43da[(_0x2dbf8d(0xb6f))](_0x278e70,_0x34808f),_0x2f0b80=_0x2597ee[_0x2dbf8d(0x398)]();_0x95cc0[_0x2dbf8d(0x8e5)](_0x2f0b80===0x10000,_0x2dbf8d(0x457));let _0x3627d3=_0x2597ee[_0x2dbf8d(0xa3a)]();_0x2597ee['skip'](_0x2dbf8d(0x678),0x1);let _0x4de263=_0x2597ee[_0x2dbf8d(0x260)](),_0x5967a6=_0x2597ee[_0x2dbf8d(0x260)](),_0x329eaf=_0x2597ee[_0x2dbf8d(0x260)](),_0x2d0f15=_0x2597ee['parseUShort'](),_0x184adc=[];for(let _0x5d3e22=0x0;_0x5d3e22<_0x4de263;_0x5d3e22++)_0x184adc[_0x2dbf8d(0x381)](_0x12e19c(_0x278e70,_0x34808f+_0x3627d3+_0x5d3e22*_0x5967a6,_0x14fc7f));let _0x125f34=[],_0x44e6ca=_0x34808f+_0x3627d3+_0x4de263*_0x5967a6;for(let _0x14fbcb=0x0;_0x14fbcb<_0x329eaf;_0x14fbcb++)_0x125f34['push'](_0x9740ba(_0x278e70,_0x44e6ca+_0x14fbcb*_0x2d0f15,_0x184adc,_0x14fc7f,_0x2d0f15));return{'axes':_0x184adc,'instances':_0x125f34};}var _0x31c5e4={'make':_0x4d0567,'parse':_0x31277c},_0x1fbb7c={'tag':_0x43487c[_0x2273f6(0xbc6)],'nameID':_0x43487c['uShort'],'ordering':_0x43487c[_0x2273f6(0x678)]},_0x586149=[,,,,,];_0x586149[0x1]=function(){const _0x3c5218=_0x2273f6;return{'axisIndex':this[_0x3c5218(0x260)](),'flags':this['parseUShort'](),'valueNameID':this['parseUShort'](),'value':this[_0x3c5218(0x2f0)]()};},_0x586149[0x2]=function(){const _0x677442=_0x2273f6;return{'axisIndex':this[_0x677442(0x260)](),'flags':this[_0x677442(0x260)](),'valueNameID':this['parseUShort'](),'nominalValue':this[_0x677442(0x2f0)](),'rangeMinValue':this[_0x677442(0x2f0)](),'rangeMaxValue':this[_0x677442(0x2f0)]()};},_0x586149[0x3]=function(){const _0x2e288c=_0x2273f6;return{'axisIndex':this[_0x2e288c(0x260)](),'flags':this['parseUShort'](),'valueNameID':this['parseUShort'](),'value':this[_0x2e288c(0x2f0)](),'linkedValue':this[_0x2e288c(0x2f0)]()};},_0x586149[0x4]=function(){const _0x32bd28=_0x2273f6;let _0x1fcb0f=this[_0x32bd28(0x260)]();return{'flags':this[_0x32bd28(0x260)](),'valueNameID':this[_0x32bd28(0x260)](),'axisValues':this[_0x32bd28(0x341)](_0x1fcb0f,function(){const _0x1959bc=_0x32bd28;return{'axisIndex':this['parseUShort'](),'value':this[_0x1959bc(0x2f0)]()};})};};function _0xc65674(){const _0x56819c=_0x2273f6;let _0x392947=this[_0x56819c(0x260)](),_0x37e76f=_0x586149[_0x392947],_0x3abe06={'format':_0x392947};return _0x37e76f===void 0x0?(console[_0x56819c(0xc59)](_0x56819c(0x70d)+_0x392947),_0x3abe06):Object['assign'](_0x3abe06,this[_0x56819c(0x1a9)](_0x37e76f['bind'](this)));}function _0x1c8eb6(_0x5d7c5b,_0x194d32,_0x38123c){const _0x585351=_0x2273f6;_0x194d32||(_0x194d32=0x0);let _0x17787b=new _0x4d43da[(_0x585351(0xb6f))](_0x5d7c5b,_0x194d32),_0x381448=_0x17787b[_0x585351(0x260)](),_0xcb613e=_0x17787b[_0x585351(0x260)]();_0x381448!==0x1&&console[_0x585351(0xc59)](_0x585351(0x2d3)+_0x381448+'.'+_0xcb613e);let _0x28b6b8=[_0x381448,_0xcb613e],_0x44fc64=_0x17787b[_0x585351(0x260)](),_0x3b2502=_0x17787b[_0x585351(0x260)](),_0x354876=_0x17787b[_0x585351(0x562)](),_0x400e91=_0x17787b[_0x585351(0x260)](),_0x114959=_0x17787b[_0x585351(0x562)](),_0x5766ca=_0x381448>0x1||_0xcb613e>0x0?_0x17787b[_0x585351(0x260)]():void 0x0;_0x38123c!==void 0x0&&_0x95cc0[_0x585351(0x8e5)](_0x3b2502>=_0x38123c[_0x585351(0x362)][_0x585351(0xba6)],_0x585351(0x993)),_0x400e91>0x0&&_0x95cc0[_0x585351(0x8e5)](_0x3b2502>=0x0,_0x585351(0xbb1));let _0x3e4506=[];for(let _0x410d97=0x0;_0x410d97<_0x3b2502;_0x410d97++)_0x17787b[_0x585351(0x679)]=_0x194d32+_0x354876,_0x17787b[_0x585351(0x7a9)]=_0x410d97*_0x44fc64,_0x3e4506[_0x585351(0x381)](_0x17787b['parseStruct'](_0x1fbb7c));_0x17787b[_0x585351(0x679)]=_0x194d32,_0x17787b[_0x585351(0x7a9)]=_0x114959;let _0x3dada1=_0x17787b[_0x585351(0x153)](_0x400e91),_0x4289bd=[];for(let _0x2e1d11=0x0;_0x2e1d11<_0x400e91;_0x2e1d11++)_0x17787b[_0x585351(0x679)]=_0x194d32+_0x114959,_0x17787b['relativeOffset']=_0x3dada1[_0x2e1d11],_0x4289bd[_0x585351(0x381)](_0xc65674[_0x585351(0x640)](_0x17787b));return{'version':_0x28b6b8,'axes':_0x3e4506,'values':_0x4289bd,'elidedFallbackNameID':_0x5766ca};}var _0x44c34f=[,,,,,];_0x44c34f[0x1]=function(_0x50f8ec,_0x3f8e86){const _0x1fca2c=_0x2273f6;return[{'name':_0x1fca2c(0xc00)+_0x50f8ec,'type':'USHORT','value':0x1},{'name':'axisIndex'+_0x50f8ec,'type':'USHORT','value':_0x3f8e86[_0x1fca2c(0xb5e)]},{'name':_0x1fca2c(0x39a)+_0x50f8ec,'type':_0x1fca2c(0x95d),'value':_0x3f8e86[_0x1fca2c(0x39a)]},{'name':_0x1fca2c(0x762)+_0x50f8ec,'type':'USHORT','value':_0x3f8e86[_0x1fca2c(0x762)]},{'name':_0x1fca2c(0x85b)+_0x50f8ec,'type':_0x1fca2c(0x5f7),'value':_0x3f8e86['value']}];},_0x44c34f[0x2]=function(_0x35f83a,_0xf7c1cf){const _0x57e86b=_0x2273f6;return[{'name':_0x57e86b(0xc00)+_0x35f83a,'type':_0x57e86b(0x95d),'value':0x2},{'name':_0x57e86b(0xb5e)+_0x35f83a,'type':_0x57e86b(0x95d),'value':_0xf7c1cf[_0x57e86b(0xb5e)]},{'name':'flags'+_0x35f83a,'type':_0x57e86b(0x95d),'value':_0xf7c1cf['flags']},{'name':'valueNameID'+_0x35f83a,'type':_0x57e86b(0x95d),'value':_0xf7c1cf[_0x57e86b(0x762)]},{'name':_0x57e86b(0x516)+_0x35f83a,'type':_0x57e86b(0x5f7),'value':_0xf7c1cf['nominalValue']},{'name':_0x57e86b(0x65b)+_0x35f83a,'type':_0x57e86b(0x5f7),'value':_0xf7c1cf['rangeMinValue']},{'name':_0x57e86b(0x810)+_0x35f83a,'type':_0x57e86b(0x5f7),'value':_0xf7c1cf[_0x57e86b(0x810)]}];},_0x44c34f[0x3]=function(_0x2b726e,_0x8258ec){const _0x151818=_0x2273f6;return[{'name':_0x151818(0xc00)+_0x2b726e,'type':_0x151818(0x95d),'value':0x3},{'name':_0x151818(0xb5e)+_0x2b726e,'type':'USHORT','value':_0x8258ec[_0x151818(0xb5e)]},{'name':'flags'+_0x2b726e,'type':_0x151818(0x95d),'value':_0x8258ec[_0x151818(0x39a)]},{'name':_0x151818(0x762)+_0x2b726e,'type':_0x151818(0x95d),'value':_0x8258ec[_0x151818(0x762)]},{'name':_0x151818(0x85b)+_0x2b726e,'type':_0x151818(0x5f7),'value':_0x8258ec[_0x151818(0x85b)]},{'name':_0x151818(0x1dd)+_0x2b726e,'type':'FLOAT','value':_0x8258ec[_0x151818(0x1dd)]}];},_0x44c34f[0x4]=function(_0x2779a4,_0x452e3f){const _0xead778=_0x2273f6;let _0x12b083=[{'name':'format'+_0x2779a4,'type':_0xead778(0x95d),'value':0x4},{'name':'axisCount'+_0x2779a4,'type':_0xead778(0x95d),'value':_0x452e3f[_0xead778(0xafd)]['length']},{'name':_0xead778(0x39a)+_0x2779a4,'type':_0xead778(0x95d),'value':_0x452e3f['flags']},{'name':'valueNameID'+_0x2779a4,'type':_0xead778(0x95d),'value':_0x452e3f[_0xead778(0x762)]}];for(let _0x35257a=0x0;_0x35257a<_0x452e3f[_0xead778(0xafd)][_0xead778(0xba6)];_0x35257a++)_0x12b083=_0x12b083['concat']([{'name':_0xead778(0xc00)+_0x2779a4+_0xead778(0xb5e)+_0x35257a,'type':_0xead778(0x95d),'value':_0x452e3f['axisValues'][_0x35257a]['axisIndex']},{'name':_0xead778(0xc00)+_0x2779a4+_0xead778(0x85b)+_0x35257a,'type':_0xead778(0x5f7),'value':_0x452e3f[_0xead778(0xafd)][_0x35257a][_0xead778(0x85b)]}]);return _0x12b083;};function _0x49e3ad(_0x32cf25,_0x43e612){const _0x3e1df6=_0x2273f6;return new _0x14efbe[(_0x3e1df6(0x133))](_0x3e1df6(0x534)+_0x32cf25,[{'name':_0x3e1df6(0x88c)+_0x32cf25,'type':_0x3e1df6(0xae2),'value':_0x43e612[_0x3e1df6(0xbc6)]},{'name':_0x3e1df6(0x1ac)+_0x32cf25,'type':_0x3e1df6(0x95d),'value':_0x43e612[_0x3e1df6(0x9cb)]},{'name':'axisOrdering_'+_0x32cf25,'type':_0x3e1df6(0x95d),'value':_0x43e612[_0x3e1df6(0x65e)]}]);}function _0x40fe6d(_0x33ade3,_0x303ae3){const _0x2e84ad=_0x2273f6;let _0x386e44=_0x303ae3[_0x2e84ad(0xc00)],_0x4ea56a=_0x44c34f[_0x386e44];_0x95cc0[_0x2e84ad(0x8e5)](_0x4ea56a!==void 0x0,_0x2e84ad(0x70d)+_0x386e44);let _0x427aae=_0x4ea56a(_0x33ade3,_0x303ae3);return new _0x14efbe[(_0x2e84ad(0x547))](_0x2e84ad(0xbfa)+_0x33ade3,_0x427aae);}function _0x446eac(_0x4e9f3d){const _0x3182b1=_0x2273f6;let _0x3d812e=new _0x14efbe[(_0x3182b1(0x547))](_0x3182b1(0x7ef),[{'name':'majorVersion','type':_0x3182b1(0x95d),'value':0x1},{'name':'minorVersion','type':'USHORT','value':0x2},{'name':_0x3182b1(0xc92),'type':'USHORT','value':0x8},{'name':_0x3182b1(0xa55),'type':_0x3182b1(0x95d),'value':_0x4e9f3d[_0x3182b1(0x362)][_0x3182b1(0xba6)]},{'name':_0x3182b1(0x833),'type':_0x3182b1(0xc90),'value':0x0},{'name':_0x3182b1(0xbfe),'type':'USHORT','value':_0x4e9f3d[_0x3182b1(0xaaf)][_0x3182b1(0xba6)]},{'name':_0x3182b1(0x9b0),'type':_0x3182b1(0xc90),'value':0x0},{'name':'elidedFallbackNameID','type':_0x3182b1(0x95d),'value':_0x4e9f3d[_0x3182b1(0xbed)]}]);_0x3d812e[_0x3182b1(0x833)]=_0x3d812e[_0x3182b1(0x9b0)]=_0x3d812e[_0x3182b1(0x58f)]();for(let _0x26e8e2=0x0;_0x26e8e2<_0x4e9f3d[_0x3182b1(0x362)][_0x3182b1(0xba6)];_0x26e8e2++){let _0x5e8548=_0x49e3ad(_0x26e8e2,_0x4e9f3d['axes'][_0x26e8e2]);_0x3d812e[_0x3182b1(0x9b0)]+=_0x5e8548[_0x3182b1(0x58f)](),_0x3d812e['fields']=_0x3d812e[_0x3182b1(0x843)][_0x3182b1(0xaba)](_0x5e8548[_0x3182b1(0x843)]);}let _0x2af7d6=[],_0x578dea=[],_0x13cc31=_0x4e9f3d['values'][_0x3182b1(0xba6)]*0x2;for(let _0x10e1a6=0x0;_0x10e1a6<_0x4e9f3d[_0x3182b1(0xaaf)][_0x3182b1(0xba6)];_0x10e1a6++){let _0x1f0504=_0x40fe6d(_0x10e1a6,_0x4e9f3d[_0x3182b1(0xaaf)][_0x10e1a6]);_0x2af7d6[_0x3182b1(0x381)]({'name':'offset_'+_0x10e1a6,'type':_0x3182b1(0x95d),'value':_0x13cc31}),_0x13cc31+=_0x1f0504[_0x3182b1(0x58f)](),_0x578dea=_0x578dea['concat'](_0x1f0504[_0x3182b1(0x843)]);}return _0x3d812e['fields']=_0x3d812e['fields'][_0x3182b1(0xaba)](_0x2af7d6),_0x3d812e[_0x3182b1(0x843)]=_0x3d812e[_0x3182b1(0x843)][_0x3182b1(0xaba)](_0x578dea),_0x3d812e;}var _0xfb2db3={'make':_0x446eac,'parse':_0x1c8eb6};function _0x512cee(_0x482e24,_0x3abe24){const _0x36de3e=_0x2273f6;return new _0x14efbe[(_0x36de3e(0x133))](_0x36de3e(0x471)+_0x482e24,[{'name':_0x36de3e(0x3f0)+_0x482e24,'type':_0x36de3e(0x728),'value':_0x3abe24[_0x36de3e(0x876)]},{'name':_0x36de3e(0xa77)+_0x482e24,'type':_0x36de3e(0x728),'value':_0x3abe24[_0x36de3e(0x22c)]}]);}function _0x5a66d0(_0x2eca2c,_0x348333){const _0x4430fe=_0x2273f6;let _0x10d2cf=new _0x14efbe[(_0x4430fe(0x133))]('segmentMap_'+_0x2eca2c,[{'name':_0x4430fe(0x5c4)+_0x2eca2c,'type':_0x4430fe(0x95d),'value':_0x348333[_0x4430fe(0xafa)][_0x4430fe(0xba6)]}]),_0x5db04f=[];for(let _0x124d64=0x0;_0x124d64<_0x348333[_0x4430fe(0xafa)]['length'];_0x124d64++){let _0x2615ea=_0x512cee(_0x2eca2c+'_'+_0x124d64,_0x348333[_0x4430fe(0xafa)][_0x124d64]);_0x5db04f=_0x5db04f[_0x4430fe(0xaba)](_0x2615ea[_0x4430fe(0x843)]);}return _0x10d2cf[_0x4430fe(0x843)]=_0x10d2cf[_0x4430fe(0x843)][_0x4430fe(0xaba)](_0x5db04f),_0x10d2cf;}function _0xa39687(_0x3f7f0d,_0x296155){const _0x290370=_0x2273f6;_0x95cc0[_0x290370(0x8e5)](_0x3f7f0d[_0x290370(0x4fb)][_0x290370(0xba6)]===_0x296155[_0x290370(0x362)][_0x290370(0xba6)],_0x290370(0x2de));let _0x1d5c33=new _0x14efbe['Table'](_0x290370(0x372),[{'name':'majorVersion','type':_0x290370(0x95d),'value':0x1},{'name':'minorVersion','type':_0x290370(0x95d),'value':0x0},{'name':_0x290370(0x696),'type':_0x290370(0x95d),'value':0x0},{'name':_0x290370(0x779),'type':'USHORT','value':_0x3f7f0d['axisSegmentMaps']['length']}]);for(let _0x51ea20=0x0;_0x51ea20<_0x3f7f0d[_0x290370(0x4fb)][_0x290370(0xba6)];_0x51ea20++){let _0x538bc2=_0x5a66d0(_0x51ea20,_0x3f7f0d[_0x290370(0x4fb)][_0x51ea20]);_0x1d5c33['fields']=_0x1d5c33['fields'][_0x290370(0xaba)](_0x538bc2[_0x290370(0x843)]);}return _0x1d5c33;}function _0x2af98b(_0x257fbe,_0x303398,_0x2427fa){const _0x3c3d58=_0x2273f6;_0x303398||(_0x303398=0x0);let _0x122d54=new _0x43487c(_0x257fbe,_0x303398),_0x29a11a=_0x122d54[_0x3c3d58(0x260)](),_0x4da5a3=_0x122d54[_0x3c3d58(0x260)]();_0x29a11a!==0x1&&console[_0x3c3d58(0xc59)]('Unsupported\x20avar\x20table\x20version\x20'+_0x29a11a+'.'+_0x4da5a3),_0x122d54[_0x3c3d58(0x2b6)](_0x3c3d58(0x678),0x1);let _0x40b7d0=_0x122d54[_0x3c3d58(0x260)]();_0x95cc0[_0x3c3d58(0x8e5)](_0x40b7d0===_0x2427fa[_0x3c3d58(0x362)]['length'],_0x3c3d58(0x2de));let _0x4e5c59=[];for(let _0x5a0fae=0x0;_0x5a0fae<_0x40b7d0;_0x5a0fae++){let _0x231e71=[],_0x104d47=_0x122d54[_0x3c3d58(0x260)]();for(let _0x19ae87=0x0;_0x19ae87<_0x104d47;_0x19ae87++){let _0x4eab2e=_0x122d54[_0x3c3d58(0x156)](),_0x572561=_0x122d54[_0x3c3d58(0x156)]();_0x231e71['push']({'fromCoordinate':_0x4eab2e,'toCoordinate':_0x572561});}_0x4e5c59['push']({'axisValueMaps':_0x231e71});}return{'version':[_0x29a11a,_0x4da5a3],'axisSegmentMaps':_0x4e5c59};}var _0x37c027={'make':_0xa39687,'parse':_0x2af98b};function _0x273958(_0x2b2158,_0x30365a,_0x4247ba,_0x1f3ee4){const _0x22aef7=_0x2273f6;let _0x3ec421=new _0x4d43da[(_0x22aef7(0xb6f))](_0x2b2158,_0x30365a),_0x224bcd=_0x3ec421['parseTupleVariationStore'](_0x3ec421[_0x22aef7(0x7a9)],_0x4247ba[_0x22aef7(0x362)][_0x22aef7(0xba6)],_0x22aef7(0x7e9),_0x1f3ee4),_0x40fe80=_0x3ec421[_0x22aef7(0x260)](),_0x563df7=_0x3ec421[_0x22aef7(0x260)]();return _0x40fe80!==0x1&&console[_0x22aef7(0xc59)](_0x22aef7(0x812)+_0x40fe80+'.'+_0x563df7),{'version':[_0x40fe80,_0x563df7],..._0x224bcd};}function _0x36901f(){console['warn']('Writing\x20of\x20cvar\x20tables\x20is\x20not\x20yet\x20supported.');}var _0x401ba1={'make':_0x36901f,'parse':_0x273958};function _0x1034a1(_0x41c3fd,_0x4a0bf0,_0x113388,_0x411930){const _0x272abc=_0x2273f6;let _0x6db203=new _0x4d43da[(_0x272abc(0xb6f))](_0x41c3fd,_0x4a0bf0),_0x1f8a61=_0x6db203[_0x272abc(0x260)](),_0x355034=_0x6db203[_0x272abc(0x260)]();_0x1f8a61!==0x1&&console[_0x272abc(0xc59)](_0x272abc(0xaa0)+_0x1f8a61+'.'+_0x355034);let _0x273f01=_0x6db203['parseUShort']();_0x273f01!==_0x113388[_0x272abc(0x362)]['length']&&console['warn']('axisCount\x20'+_0x273f01+_0x272abc(0x389)+_0x113388['axes']['length']+_0x272abc(0xb9c));let _0x507531=_0x6db203[_0x272abc(0x260)](),_0x3feb1c=_0x6db203[_0x272abc(0xac1)](function(){return this['parseTupleRecords'](_0x507531,_0x273f01);}),_0x58acc1=_0x6db203[_0x272abc(0xc5d)](_0x273f01,_0x272abc(0x4d1),_0x411930);return{'version':[_0x1f8a61,_0x355034],'sharedTuples':_0x3feb1c,'glyphVariations':_0x58acc1};}function _0x344584(){const _0x35ef2f=_0x2273f6;console['warn'](_0x35ef2f(0x349));}var _0xa63c00={'make':_0x344584,'parse':_0x1034a1};function _0xa70359(_0x2b5e0c,_0x432b28){const _0x4aa783=_0x2273f6;let _0x4d1286={},_0x2b1d27=new _0x4d43da[(_0x4aa783(0xb6f))](_0x2b5e0c,_0x432b28);_0x4d1286['version']=_0x2b1d27[_0x4aa783(0x260)](),_0x95cc0[_0x4aa783(0x8e5)](_0x4d1286['version']<=0x1,_0x4aa783(0x321)),_0x4d1286[_0x4aa783(0x6f4)]=_0x2b1d27[_0x4aa783(0x260)](),_0x4d1286[_0x4aa783(0x566)]=[];for(let _0x2676c8=0x0;_0x2676c8<_0x4d1286[_0x4aa783(0x6f4)];_0x2676c8++)_0x4d1286[_0x4aa783(0x566)][_0x2676c8]={'rangeMaxPPEM':_0x2b1d27[_0x4aa783(0x260)](),'rangeGaspBehavior':_0x2b1d27[_0x4aa783(0x260)]()};return _0x4d1286;}function _0x50d51d(_0x5f40cd){const _0x572d0d=_0x2273f6;let _0x50b460=new _0x14efbe[(_0x572d0d(0x547))](_0x572d0d(0x299),[{'name':'version','type':_0x572d0d(0x95d),'value':0x1},{'name':_0x572d0d(0x6f4),'type':'USHORT','value':_0x5f40cd[_0x572d0d(0x6f4)]}]);for(let _0x5968da in _0x5f40cd[_0x572d0d(0x566)])_0x50b460['fields']['push']({'name':_0x572d0d(0xa5d),'type':_0x572d0d(0x95d),'value':_0x5f40cd[_0x572d0d(0x566)][_0x5968da]['rangeMaxPPEM']}),_0x50b460[_0x572d0d(0x843)]['push']({'name':_0x572d0d(0x1d9),'type':'USHORT','value':_0x5f40cd[_0x572d0d(0x566)][_0x5968da][_0x572d0d(0x1d9)]});return _0x50b460;}var _0x18edb6={'parse':_0xa70359,'make':_0x50d51d};function _0x17482a(_0xcbad27,_0x5e8f26){const _0x15c665=_0x2273f6;let _0x5c7376=new Map(),_0x2528d6=_0xcbad27[_0x15c665(0x1e6)],_0x2bea32=new _0x43487c(_0xcbad27,_0x5e8f26);if(_0x2bea32['parseUShort']()!==0x0)return _0x5c7376;_0x2bea32[_0x15c665(0x7a9)]=_0x2bea32['parseOffset32']();let _0x2a715c=_0xcbad27['byteOffset']+_0x5e8f26+_0x2bea32[_0x15c665(0x7a9)],_0x3fcded=_0x2bea32[_0x15c665(0x260)](),_0x515266=new Map();for(let _0x20f0c9=0x0;_0x20f0c9<_0x3fcded;_0x20f0c9++){let _0x40acfc=_0x2bea32[_0x15c665(0x260)](),_0x321347=_0x2bea32[_0x15c665(0x260)](),_0x4a34d1=_0x2a715c+_0x2bea32['parseOffset32'](),_0x4d82e7=_0x2bea32[_0x15c665(0x398)](),_0x38b1f4=_0x515266[_0x15c665(0x2ad)](_0x4a34d1);_0x38b1f4===void 0x0&&(_0x38b1f4=new Uint8Array(_0x2528d6,_0x4a34d1,_0x4d82e7),_0x515266[_0x15c665(0xad2)](_0x4a34d1,_0x38b1f4));for(let _0x20c4e6=_0x40acfc;_0x20c4e6<=_0x321347;_0x20c4e6++)_0x5c7376[_0x15c665(0xad2)](_0x20c4e6,_0x38b1f4);}return _0x5c7376;}function _0x27a5e8(_0x32afdd){const _0x3eaab1=_0x2273f6;let _0x97cd68=Array[_0x3eaab1(0x8c1)](_0x32afdd[_0x3eaab1(0x3ed)]())['sort'](),_0x3331dd=[],_0x4269df=[],_0x1e8fe7=new Map(),_0x5db9d8=0x0,_0x72a55c={'endGlyphID':null};for(let _0xf9abac=0x0,_0x87cbc6=_0x97cd68[_0x3eaab1(0xba6)];_0xf9abac<_0x87cbc6;_0xf9abac++){let _0x5e734b=_0x97cd68[_0xf9abac],_0x5c04f3=_0x32afdd[_0x3eaab1(0x2ad)](_0x5e734b),_0x56b451=_0x1e8fe7[_0x3eaab1(0x2ad)](_0x5c04f3);_0x56b451===void 0x0&&(_0x56b451=_0x5db9d8,_0x4269df[_0x3eaab1(0x381)](_0x5c04f3),_0x1e8fe7[_0x3eaab1(0xad2)](_0x5c04f3,_0x56b451),_0x5db9d8+=_0x5c04f3[_0x3eaab1(0xc50)]),_0x5e734b-0x1===_0x72a55c[_0x3eaab1(0x111)]&&_0x56b451===_0x72a55c['svgDocOffset']?_0x72a55c[_0x3eaab1(0x111)]=_0x5e734b:(_0x72a55c={'startGlyphID':_0x5e734b,'endGlyphID':_0x5e734b,'svgDocOffset':_0x56b451,'svgDocLength':_0x5c04f3[_0x3eaab1(0xc50)]},_0x3331dd[_0x3eaab1(0x381)](_0x72a55c));}let _0x59e9a2=_0x3331dd[_0x3eaab1(0xba6)],_0x2d284b=_0x4269df[_0x3eaab1(0xba6)],_0x2e9758=0x2+_0x59e9a2*0xc,_0x4ecae8=Array(0x4+_0x59e9a2*0x4+_0x2d284b),_0x537121=0x0;_0x4ecae8[_0x537121++]={'name':_0x3eaab1(0x250),'type':_0x3eaab1(0x95d),'value':0x0},_0x4ecae8[_0x537121++]={'name':_0x3eaab1(0x29d),'type':_0x3eaab1(0xc90),'value':0xa},_0x4ecae8[_0x537121++]={'name':_0x3eaab1(0x696),'type':_0x3eaab1(0xc90),'value':0x0},_0x4ecae8[_0x537121++]={'name':'numEntries','type':'USHORT','value':_0x59e9a2};for(let _0x50e960=0x0;_0x50e960<_0x59e9a2;_0x50e960++){let _0x110af0='documentRecord_'+_0x50e960,{startGlyphID:_0x51221c,endGlyphID:_0x2b2186,svgDocOffset:_0x4712fe,svgDocLength:_0x5e29f5}=_0x3331dd[_0x50e960];_0x4ecae8[_0x537121++]={'name':_0x110af0+_0x3eaab1(0x9ce),'type':_0x3eaab1(0x95d),'value':_0x51221c},_0x4ecae8[_0x537121++]={'name':_0x110af0+_0x3eaab1(0x8b2),'type':_0x3eaab1(0x95d),'value':_0x2b2186},_0x4ecae8[_0x537121++]={'name':_0x110af0+_0x3eaab1(0x981),'type':_0x3eaab1(0xc90),'value':_0x2e9758+_0x4712fe},_0x4ecae8[_0x537121++]={'name':_0x110af0+_0x3eaab1(0xb21),'type':_0x3eaab1(0xc90),'value':_0x5e29f5};}for(let _0x42f72f=0x0;_0x42f72f<_0x2d284b;_0x42f72f++)_0x4ecae8[_0x537121++]={'name':_0x3eaab1(0x1aa)+_0x42f72f,'type':_0x3eaab1(0x11b),'value':_0x4269df[_0x42f72f]};return new _0x14efbe['Table'](_0x3eaab1(0x574),_0x4ecae8);}var _0x333d5f={'make':_0x27a5e8,'parse':_0x17482a};function _0x3c9602(_0x5b88ab){const _0x25b31c=_0x2273f6;return Math[_0x25b31c(0x9ff)](_0x5b88ab)/Math[_0x25b31c(0x9ff)](0x2)|0x0;}function _0x14f3bf(_0x475be5){const _0x135aec=_0x2273f6;for(;_0x475be5[_0x135aec(0xba6)]%0x4!=0x0;)_0x475be5[_0x135aec(0x381)](0x0);let _0x1ad320=0x0;for(let _0x2513e0=0x0;_0x2513e0<_0x475be5[_0x135aec(0xba6)];_0x2513e0+=0x4)_0x1ad320+=(_0x475be5[_0x2513e0]<<0x18)+(_0x475be5[_0x2513e0+0x1]<<0x10)+(_0x475be5[_0x2513e0+0x2]<<0x8)+_0x475be5[_0x2513e0+0x3];return _0x1ad320%=0x2**0x20,_0x1ad320;}function _0x5bcb84(_0x4b018c,_0x51d2b5,_0x175bd1,_0x2b1a89){const _0x50d9d2=_0x2273f6;return new _0x14efbe[(_0x50d9d2(0x133))](_0x50d9d2(0x7bf),[{'name':'tag','type':_0x50d9d2(0xae2),'value':_0x4b018c===void 0x0?'':_0x4b018c},{'name':_0x50d9d2(0xb1f),'type':_0x50d9d2(0xc90),'value':_0x51d2b5===void 0x0?0x0:_0x51d2b5},{'name':_0x50d9d2(0x679),'type':_0x50d9d2(0xc90),'value':_0x175bd1===void 0x0?0x0:_0x175bd1},{'name':_0x50d9d2(0xba6),'type':_0x50d9d2(0xc90),'value':_0x2b1a89===void 0x0?0x0:_0x2b1a89}]);}function _0x89f290(_0xba8ae5){const _0x2dd614=_0x2273f6;let _0x353e3d=new _0x14efbe[(_0x2dd614(0x547))](_0x2dd614(0x3a0),[{'name':_0x2dd614(0x250),'type':_0x2dd614(0xae2),'value':_0x2dd614(0x3e9)},{'name':'numTables','type':_0x2dd614(0x95d),'value':0x0},{'name':'searchRange','type':'USHORT','value':0x0},{'name':_0x2dd614(0x9a5),'type':_0x2dd614(0x95d),'value':0x0},{'name':_0x2dd614(0x6c9),'type':'USHORT','value':0x0}]);_0x353e3d['tables']=_0xba8ae5,_0x353e3d[_0x2dd614(0x1e3)]=_0xba8ae5[_0x2dd614(0xba6)];let _0x2ab1e8=0x2**_0x3c9602(_0x353e3d['numTables']);_0x353e3d['searchRange']=0x10*_0x2ab1e8,_0x353e3d[_0x2dd614(0x9a5)]=_0x3c9602(_0x2ab1e8),_0x353e3d[_0x2dd614(0x6c9)]=_0x353e3d['numTables']*0x10-_0x353e3d['searchRange'];let _0x45cbd9=[],_0x398264=[],_0x17ecc6=_0x353e3d[_0x2dd614(0x58f)]()+_0x5bcb84()['sizeOf']()*_0x353e3d[_0x2dd614(0x1e3)];for(;_0x17ecc6%0x4!=0x0;)_0x17ecc6+=0x1,_0x398264[_0x2dd614(0x381)]({'name':_0x2dd614(0x9ef),'type':_0x2dd614(0x94c),'value':0x0});for(let _0x1af722=0x0;_0x1af722<_0xba8ae5[_0x2dd614(0xba6)];_0x1af722+=0x1){let _0x3fb924=_0xba8ae5[_0x1af722];_0x95cc0[_0x2dd614(0x8e5)](_0x3fb924[_0x2dd614(0x4ff)][_0x2dd614(0xba6)]===0x4,_0x2dd614(0x636)+_0x3fb924[_0x2dd614(0x4ff)]+_0x2dd614(0x723));let _0x4f5e60=_0x3fb924[_0x2dd614(0x58f)](),_0x574c95=_0x5bcb84(_0x3fb924['tableName'],_0x14f3bf(_0x3fb924[_0x2dd614(0xabd)]()),_0x17ecc6,_0x4f5e60);for(_0x45cbd9['push']({'name':_0x574c95['tag']+'\x20Table\x20Record','type':_0x2dd614(0x31b),'value':_0x574c95}),_0x398264[_0x2dd614(0x381)]({'name':_0x3fb924[_0x2dd614(0x4ff)]+_0x2dd614(0x941),'type':'RECORD','value':_0x3fb924}),_0x17ecc6+=_0x4f5e60,_0x95cc0[_0x2dd614(0x8e5)](!isNaN(_0x17ecc6),_0x2dd614(0xb3a));_0x17ecc6%0x4!=0x0;)_0x17ecc6+=0x1,_0x398264[_0x2dd614(0x381)]({'name':_0x2dd614(0x9ef),'type':_0x2dd614(0x94c),'value':0x0});}return _0x45cbd9[_0x2dd614(0xb29)](function(_0x25e2f3,_0x164902){const _0x5bf1b7=_0x2dd614;return _0x25e2f3[_0x5bf1b7(0x85b)]['tag']>_0x164902[_0x5bf1b7(0x85b)][_0x5bf1b7(0xbc6)]?0x1:-0x1;}),_0x353e3d[_0x2dd614(0x843)]=_0x353e3d[_0x2dd614(0x843)]['concat'](_0x45cbd9),_0x353e3d[_0x2dd614(0x843)]=_0x353e3d[_0x2dd614(0x843)][_0x2dd614(0xaba)](_0x398264),_0x353e3d;}function _0x104695(_0x237841,_0xcccdc1,_0x17f41b){const _0x2c5427=_0x2273f6;for(let _0x33499c=0x0;_0x33499c<_0xcccdc1['length'];_0x33499c+=0x1){let _0x55c311=_0x237841[_0x2c5427(0x3a7)](_0xcccdc1[_0x33499c]);if(_0x55c311>0x0)return _0x237841['glyphs'][_0x2c5427(0x2ad)](_0x55c311)[_0x2c5427(0x118)]();}return _0x17f41b;}function _0x13ef2f(_0x67301){const _0x274ad7=_0x2273f6;let _0x1eb472=0x0;for(let _0x2a1513=0x0;_0x2a1513<_0x67301['length'];_0x2a1513+=0x1)_0x1eb472+=_0x67301[_0x2a1513];return _0x1eb472/_0x67301[_0x274ad7(0xba6)];}function _0x293bbe(_0x5595d5){const _0x51720c=_0x2273f6;let _0x274ba3=[],_0x489b13=[],_0x47ec6e=[],_0x45fb01=[],_0x21350f=[],_0x1e911d=[],_0x431ab5=[],_0x2c47aa,_0x5901e2=0x0,_0x4c22d5=0x0,_0x3def8f=0x0,_0x396241=0x0,_0x414279=0x0;for(let _0x4f2b21=0x0;_0x4f2b21<_0x5595d5[_0x51720c(0x70a)][_0x51720c(0xba6)];_0x4f2b21+=0x1){let _0x2af2cc=_0x5595d5[_0x51720c(0x70a)][_0x51720c(0x2ad)](_0x4f2b21),_0x3329bf=_0x2af2cc['unicode']|0x0;if(isNaN(_0x2af2cc['advanceWidth']))throw Error(_0x51720c(0x96e)+_0x2af2cc[_0x51720c(0x37a)]+'\x20('+_0x4f2b21+_0x51720c(0x827));(_0x2c47aa>_0x3329bf||_0x2c47aa===void 0x0)&&_0x3329bf>0x0&&(_0x2c47aa=_0x3329bf),_0x5901e2<_0x3329bf&&(_0x5901e2=_0x3329bf);let _0x32c4cc=_0x5d60b5['getUnicodeRange'](_0x3329bf);if(_0x32c4cc<0x20)_0x4c22d5|=0x1<<_0x32c4cc;else{if(_0x32c4cc<0x40)_0x3def8f|=0x1<<_0x32c4cc-0x20;else{if(_0x32c4cc<0x60)_0x396241|=0x1<<_0x32c4cc-0x40;else{if(_0x32c4cc<0x7b)_0x414279|=0x1<<_0x32c4cc-0x60;else throw Error(_0x51720c(0x8ab));}}}if(_0x2af2cc['name']==='.notdef')continue;let _0x28af40=_0x2af2cc[_0x51720c(0x118)]();_0x274ba3['push'](_0x28af40['xMin']),_0x489b13[_0x51720c(0x381)](_0x28af40['yMin']),_0x47ec6e[_0x51720c(0x381)](_0x28af40[_0x51720c(0x28d)]),_0x45fb01[_0x51720c(0x381)](_0x28af40[_0x51720c(0x431)]),_0x1e911d[_0x51720c(0x381)](_0x28af40[_0x51720c(0xc82)]),_0x431ab5['push'](_0x28af40['rightSideBearing']),_0x21350f[_0x51720c(0x381)](_0x2af2cc[_0x51720c(0x355)]);}let _0x4b3ea8={'xMin':Math[_0x51720c(0xb2a)][_0x51720c(0x640)](null,_0x274ba3),'yMin':Math[_0x51720c(0xb2a)]['apply'](null,_0x489b13),'xMax':Math[_0x51720c(0x542)]['apply'](null,_0x47ec6e),'yMax':Math[_0x51720c(0x542)][_0x51720c(0x640)](null,_0x45fb01),'advanceWidthMax':Math[_0x51720c(0x542)][_0x51720c(0x640)](null,_0x21350f),'advanceWidthAvg':_0x13ef2f(_0x21350f),'minLeftSideBearing':Math[_0x51720c(0xb2a)]['apply'](null,_0x1e911d),'maxLeftSideBearing':Math[_0x51720c(0x542)][_0x51720c(0x640)](null,_0x1e911d),'minRightSideBearing':Math[_0x51720c(0xb2a)][_0x51720c(0x640)](null,_0x431ab5)};_0x4b3ea8[_0x51720c(0x163)]=_0x5595d5[_0x51720c(0x163)],_0x4b3ea8[_0x51720c(0x2be)]=_0x5595d5[_0x51720c(0x2be)];let _0x126b3c=0x0;_0x5595d5[_0x51720c(0x2c0)]>=0x258&&(_0x126b3c|=_0x5595d5[_0x51720c(0x86e)][_0x51720c(0xb4b)]),_0x5595d5[_0x51720c(0x2e7)]<0x0&&(_0x126b3c|=_0x5595d5[_0x51720c(0x86e)]['ITALIC']);let _0x41dd74=_0x40511e[_0x51720c(0x7b7)]({'flags':0x3,'unitsPerEm':_0x5595d5[_0x51720c(0xac5)],'xMin':_0x4b3ea8['xMin'],'yMin':_0x4b3ea8[_0x51720c(0xafc)],'xMax':_0x4b3ea8[_0x51720c(0x28d)],'yMax':_0x4b3ea8['yMax'],'lowestRecPPEM':0x3,'macStyle':_0x126b3c,'createdTimestamp':_0x5595d5['createdTimestamp']}),_0x750681=_0x3def11[_0x51720c(0x7b7)]({'ascender':_0x4b3ea8[_0x51720c(0x163)],'descender':_0x4b3ea8['descender'],'advanceWidthMax':_0x4b3ea8[_0x51720c(0xc18)],'minLeftSideBearing':_0x4b3ea8[_0x51720c(0x5a2)],'minRightSideBearing':_0x4b3ea8[_0x51720c(0x3d1)],'xMaxExtent':_0x4b3ea8[_0x51720c(0x5d3)]+(_0x4b3ea8[_0x51720c(0x28d)]-_0x4b3ea8[_0x51720c(0x784)]),'numberOfHMetrics':_0x5595d5['glyphs'][_0x51720c(0xba6)]}),_0x33c3ef=_0x402061[_0x51720c(0x7b7)](_0x5595d5[_0x51720c(0x70a)][_0x51720c(0xba6)]),_0x111a5c=_0x5d60b5['make'](Object[_0x51720c(0x4ac)]({'xAvgCharWidth':Math['round'](_0x4b3ea8['advanceWidthAvg']),'usFirstCharIndex':_0x2c47aa,'usLastCharIndex':_0x5901e2,'ulUnicodeRange1':_0x4c22d5,'ulUnicodeRange2':_0x3def8f,'ulUnicodeRange3':_0x396241,'ulUnicodeRange4':_0x414279,'sTypoAscender':_0x4b3ea8['ascender'],'sTypoDescender':_0x4b3ea8[_0x51720c(0x2be)],'sTypoLineGap':0x0,'usWinAscent':_0x4b3ea8['yMax'],'usWinDescent':Math[_0x51720c(0x7f7)](_0x4b3ea8[_0x51720c(0xafc)]),'ulCodePageRange1':0x1,'sxHeight':_0x104695(_0x5595d5,_0x51720c(0x4be),{'yMax':Math['round'](_0x4b3ea8[_0x51720c(0x163)]/0x2)})[_0x51720c(0x431)],'sCapHeight':_0x104695(_0x5595d5,_0x51720c(0x75d),_0x4b3ea8)[_0x51720c(0x431)],'usDefaultChar':_0x5595d5[_0x51720c(0x2d8)]('\x20')?0x20:0x0,'usBreakChar':_0x5595d5['hasChar']('\x20')?0x20:0x0},_0x5595d5['tables'][_0x51720c(0x1bc)])),_0x96f05=_0x185389[_0x51720c(0x7b7)](_0x5595d5[_0x51720c(0x70a)]),_0x394252=_0x2f2956[_0x51720c(0x7b7)](_0x5595d5[_0x51720c(0x70a)]),_0x5706a6=_0x5595d5[_0x51720c(0xac6)]('fontFamily'),_0x237ba1=_0x5595d5['getEnglishName'](_0x51720c(0x623)),_0x50174e=_0x5706a6+'\x20'+_0x237ba1,_0x55ba8b=_0x5595d5[_0x51720c(0xac6)]('postScriptName');_0x55ba8b||(_0x55ba8b=_0x5706a6['replace'](/\s/g,'')+'-'+_0x237ba1);let _0x44ce08={};for(let _0x679beb in _0x5595d5[_0x51720c(0xb8f)])_0x44ce08[_0x679beb]=_0x5595d5[_0x51720c(0xb8f)][_0x679beb];_0x44ce08[_0x51720c(0x423)]=_0x44ce08[_0x51720c(0x423)]||{},_0x44ce08[_0x51720c(0x97c)]=_0x44ce08[_0x51720c(0x97c)]||{},_0x44ce08[_0x51720c(0x95c)]=_0x44ce08[_0x51720c(0x95c)]||{};let _0x1abcaa=_0x5595d5[_0x51720c(0xb8f)]['unicode']||{},_0xe0a972=_0x5595d5[_0x51720c(0xb8f)][_0x51720c(0x97c)]||{},_0xb4b4e6=_0x5595d5[_0x51720c(0xb8f)][_0x51720c(0x95c)]||{};for(let _0x1bb4dd in _0x44ce08){if(_0x44ce08[_0x1bb4dd]=_0x44ce08[_0x1bb4dd]||{},!_0x44ce08[_0x1bb4dd]['uniqueID']){let _0x4ad66f=_0x5595d5[_0x51720c(0xac6)](_0x51720c(0x89c))||'';_0x44ce08[_0x1bb4dd][_0x51720c(0x1c4)]={'en':_0x4ad66f+':\x20'+_0x50174e};}_0x44ce08[_0x1bb4dd][_0x51720c(0x29f)]||(_0x44ce08[_0x1bb4dd][_0x51720c(0x29f)]={'en':_0x55ba8b});}_0x44ce08[_0x51720c(0x423)][_0x51720c(0x61a)]||(_0x44ce08[_0x51720c(0x423)][_0x51720c(0x61a)]=_0x1abcaa[_0x51720c(0xb3b)]||_0xe0a972[_0x51720c(0xb3b)]||_0xb4b4e6['fontFamily']),_0x44ce08[_0x51720c(0x97c)][_0x51720c(0x61a)]||(_0x44ce08[_0x51720c(0x97c)][_0x51720c(0x61a)]=_0xe0a972[_0x51720c(0xb3b)]||_0x1abcaa['fontFamily']||_0xb4b4e6['fontFamily']),_0x44ce08[_0x51720c(0x95c)]['preferredFamily']||(_0x44ce08[_0x51720c(0x95c)]['preferredFamily']=_0xb4b4e6[_0x51720c(0xb3b)]||_0x1abcaa[_0x51720c(0xb3b)]||_0xe0a972['fontFamily']),_0x44ce08[_0x51720c(0x423)][_0x51720c(0x2ac)]||(_0x44ce08[_0x51720c(0x423)][_0x51720c(0x2ac)]=_0x1abcaa[_0x51720c(0x623)]||_0xe0a972[_0x51720c(0x623)]||_0xb4b4e6[_0x51720c(0x623)]),_0x44ce08['macintosh']['preferredSubfamily']||(_0x44ce08['macintosh']['preferredSubfamily']=_0xe0a972[_0x51720c(0x623)]||_0x1abcaa[_0x51720c(0x623)]||_0xb4b4e6['fontSubfamily']),_0x44ce08[_0x51720c(0x95c)]['preferredSubfamily']||(_0x44ce08['windows'][_0x51720c(0x2ac)]=_0xb4b4e6[_0x51720c(0x623)]||_0x1abcaa[_0x51720c(0x623)]||_0xe0a972[_0x51720c(0x623)]);let _0x29c8f0=[],_0x26ca50=_0xc2ace[_0x51720c(0x7b7)](_0x44ce08,_0x29c8f0),_0x242a82=_0x29c8f0[_0x51720c(0xba6)]>0x0?_0xe6120b[_0x51720c(0x7b7)](_0x29c8f0):void 0x0,_0x369cba=_0xfdc6e9[_0x51720c(0x7b7)](_0x5595d5),_0x30404b=_0x5bf4c1[_0x51720c(0x7b7)](_0x5595d5['glyphs'],{'version':_0x5595d5[_0x51720c(0xac6)]('version'),'fullName':_0x50174e,'familyName':_0x5706a6,'weightName':_0x237ba1,'postScriptName':_0x55ba8b,'unitsPerEm':_0x5595d5['unitsPerEm'],'fontBBox':[0x0,_0x4b3ea8[_0x51720c(0xafc)],_0x4b3ea8[_0x51720c(0x163)],_0x4b3ea8[_0x51720c(0xc18)]],'topDict':_0x5595d5[_0x51720c(0x796)][_0x51720c(0x799)]&&_0x5595d5[_0x51720c(0x796)][_0x51720c(0x799)][_0x51720c(0xa10)]||{}}),_0x3b2115=_0x5595d5['metas']&&Object[_0x51720c(0x3ed)](_0x5595d5['metas'])['length']>0x0?_0x37d089['make'](_0x5595d5[_0x51720c(0x64e)]):void 0x0,_0x54626c=[_0x41dd74,_0x750681,_0x33c3ef,_0x111a5c,_0x26ca50,_0x394252,_0x369cba,_0x30404b,_0x96f05];_0x242a82&&_0x54626c[_0x51720c(0x381)](_0x242a82);let _0x33d380={'gsub':_0x2bf391,'cpal':_0x593ba6,'colr':_0x56e1e0,'stat':_0xfb2db3,'avar':_0x37c027,'cvar':_0x401ba1,'fvar':_0x31c5e4,'gvar':_0xa63c00,'gasp':_0x18edb6,'svg':_0x333d5f},_0x308b6e={'avar':[_0x5595d5[_0x51720c(0x796)][_0x51720c(0x7b0)]],'fvar':[_0x5595d5[_0x51720c(0xb8f)]]};for(let _0x414112 in _0x33d380){let _0x515b03=_0x5595d5[_0x51720c(0x796)][_0x414112];if(_0x515b03){let _0x32c201=_0x33d380[_0x414112][_0x51720c(0x7b7)]['call'](_0x5595d5,_0x515b03,..._0x308b6e[_0x414112]||[]);_0x32c201&&_0x54626c[_0x51720c(0x381)](_0x32c201);}}_0x3b2115&&_0x54626c['push'](_0x3b2115);let _0x489afb=_0x89f290(_0x54626c),_0x16fde5=_0x14f3bf(_0x489afb[_0x51720c(0xabd)]()),_0x158678=_0x489afb[_0x51720c(0x843)],_0x3251fb=!0x1;for(let _0x2e03d0=0x0;_0x2e03d0<_0x158678[_0x51720c(0xba6)];_0x2e03d0+=0x1)if(_0x158678[_0x2e03d0][_0x51720c(0x37a)]===_0x51720c(0xb41)){_0x158678[_0x2e03d0]['value'][_0x51720c(0x875)]=0xb1b0afba-_0x16fde5,_0x3251fb=!0x0;break;}if(!_0x3251fb)throw Error(_0x51720c(0x8ef));return _0x489afb;}var _0x11d47d={'make':_0x89f290,'fontToTable':_0x293bbe,'computeCheckSum':_0x14f3bf};function _0x5a7671(_0x15d5ea,_0x213086){const _0xdce90a=_0x2273f6;let _0x52808b=0x0,_0x115653=_0x15d5ea[_0xdce90a(0xba6)]-0x1;for(;_0x52808b<=_0x115653;){let _0x589950=_0x52808b+_0x115653>>>0x1,_0xb5746d=_0x15d5ea[_0x589950]['tag'];if(_0xb5746d===_0x213086)return _0x589950;_0xb5746d<_0x213086?_0x52808b=_0x589950+0x1:_0x115653=_0x589950-0x1;}return-_0x52808b-0x1;}function _0x145bd9(_0x304b3f,_0x412c3e){const _0x35b303=_0x2273f6;let _0x197381=0x0,_0x15f745=_0x304b3f[_0x35b303(0xba6)]-0x1;for(;_0x197381<=_0x15f745;){let _0x3ade71=_0x197381+_0x15f745>>>0x1,_0x50fbd2=_0x304b3f[_0x3ade71];if(_0x50fbd2===_0x412c3e)return _0x3ade71;_0x50fbd2<_0x412c3e?_0x197381=_0x3ade71+0x1:_0x15f745=_0x3ade71-0x1;}return-_0x197381-0x1;}function _0x3b71a2(_0x6c2f52,_0x6cb9d7){const _0x576845=_0x2273f6;let _0x196b23,_0x471ee6=0x0,_0x1f90a4=_0x6c2f52['length']-0x1;for(;_0x471ee6<=_0x1f90a4;){let _0x29a8c5=_0x471ee6+_0x1f90a4>>>0x1;_0x196b23=_0x6c2f52[_0x29a8c5];let _0x2928cc=_0x196b23[_0x576845(0x3c1)];if(_0x2928cc===_0x6cb9d7)return _0x196b23;_0x2928cc<_0x6cb9d7?_0x471ee6=_0x29a8c5+0x1:_0x1f90a4=_0x29a8c5-0x1;}if(_0x471ee6>0x0)return _0x196b23=_0x6c2f52[_0x471ee6-0x1],_0x6cb9d7>_0x196b23['end']?0x0:_0x196b23;}function _0x4bdb91(_0x42e51f,_0x15fe05){const _0x30c745=_0x2273f6;this[_0x30c745(0x7da)]=_0x42e51f,this[_0x30c745(0x4ff)]=_0x15fe05;}_0x4bdb91[_0x2273f6(0x505)]={'searchTag':_0x5a7671,'binSearch':_0x145bd9,'getTable':function(_0x34d888){const _0x41cbd7=_0x2273f6;let _0x1cc917=this[_0x41cbd7(0x7da)]['tables'][this[_0x41cbd7(0x4ff)]];return!_0x1cc917&&_0x34d888&&(_0x1cc917=this[_0x41cbd7(0x7da)][_0x41cbd7(0x796)][this[_0x41cbd7(0x4ff)]]=this['createDefaultTable']()),_0x1cc917;},'getScriptNames':function(){const _0xe87888=_0x2273f6;let _0x35e3a6=this[_0xe87888(0x484)]();return _0x35e3a6?_0x35e3a6['scripts'][_0xe87888(0xb06)](function(_0x1674b8){const _0x4f6b21=_0xe87888;return _0x1674b8[_0x4f6b21(0xbc6)];}):[];},'getDefaultScriptName':function(){const _0xdcc78=_0x2273f6;let _0x4f2882=this[_0xdcc78(0x484)]();if(!_0x4f2882)return;let _0x3ebed6=!0x1;for(let _0x33499a=0x0;_0x33499a<_0x4f2882[_0xdcc78(0x443)][_0xdcc78(0xba6)];_0x33499a++){let _0x76582c=_0x4f2882[_0xdcc78(0x443)][_0x33499a]['tag'];if(_0x76582c===_0xdcc78(0x676))return _0x76582c;_0x76582c===_0xdcc78(0xb7c)&&(_0x3ebed6=!0x0);}if(_0x3ebed6)return _0xdcc78(0xb7c);},'getScriptTable':function(_0x3eab12,_0xc40a10){const _0x4a21b0=_0x2273f6;let _0x85d43=this[_0x4a21b0(0x484)](_0xc40a10);if(_0x85d43){_0x3eab12=_0x3eab12||_0x4a21b0(0x676);let _0x3c5843=_0x85d43['scripts'],_0x5a879b=_0x5a7671(_0x85d43[_0x4a21b0(0x443)],_0x3eab12);if(_0x5a879b>=0x0)return _0x3c5843[_0x5a879b]['script'];if(_0xc40a10){let _0x590543={'tag':_0x3eab12,'script':{'defaultLangSys':{'reserved':0x0,'reqFeatureIndex':0xffff,'featureIndexes':[]},'langSysRecords':[]}};return _0x3c5843[_0x4a21b0(0x98b)](-0x1-_0x5a879b,0x0,_0x590543),_0x590543[_0x4a21b0(0xc73)];}}},'getLangSysTable':function(_0x220758,_0x50aa44,_0x265227){const _0x3e1dcb=_0x2273f6;let _0x453c0e=this[_0x3e1dcb(0x8cb)](_0x220758,_0x265227);if(_0x453c0e){if(!_0x50aa44||_0x50aa44===_0x3e1dcb(0x8e7)||_0x50aa44===_0x3e1dcb(0x676))return _0x453c0e[_0x3e1dcb(0xa8f)];let _0x4c3310=_0x5a7671(_0x453c0e[_0x3e1dcb(0xa84)],_0x50aa44);if(_0x4c3310>=0x0)return _0x453c0e['langSysRecords'][_0x4c3310][_0x3e1dcb(0x691)];if(_0x265227){let _0x20d122={'tag':_0x50aa44,'langSys':{'reserved':0x0,'reqFeatureIndex':0xffff,'featureIndexes':[]}};return _0x453c0e[_0x3e1dcb(0xa84)][_0x3e1dcb(0x98b)](-0x1-_0x4c3310,0x0,_0x20d122),_0x20d122[_0x3e1dcb(0x691)];}}},'getFeatureTable':function(_0x3fa834,_0x38f87e,_0x2ccd1f,_0x28af0f){const _0x4ba327=_0x2273f6;let _0x11f857=this[_0x4ba327(0xb86)](_0x3fa834,_0x38f87e,_0x28af0f);if(_0x11f857){let _0x2c1bf7,_0x1e0b14=_0x11f857[_0x4ba327(0x7c0)],_0x2417dd=this[_0x4ba327(0x7da)][_0x4ba327(0x796)][this[_0x4ba327(0x4ff)]][_0x4ba327(0x807)];for(let _0x333f8b=0x0;_0x333f8b<_0x1e0b14['length'];_0x333f8b++)if(_0x2c1bf7=_0x2417dd[_0x1e0b14[_0x333f8b]],_0x2c1bf7['tag']===_0x2ccd1f)return _0x2c1bf7[_0x4ba327(0x40e)];if(_0x28af0f){let _0x208713=_0x2417dd['length'];return _0x95cc0[_0x4ba327(0x4bd)](_0x208713===0x0||_0x2ccd1f>=_0x2417dd[_0x208713-0x1][_0x4ba327(0xbc6)],'Features\x20must\x20be\x20added\x20in\x20alphabetical\x20order.'),_0x2c1bf7={'tag':_0x2ccd1f,'feature':{'params':0x0,'lookupListIndexes':[]}},_0x2417dd['push'](_0x2c1bf7),_0x1e0b14[_0x4ba327(0x381)](_0x208713),_0x2c1bf7['feature'];}}},'getLookupTables':function(_0xd82efd,_0x4c3433,_0x5c6580,_0x46720d,_0x4f2f25){const _0x2e3e5a=_0x2273f6;let _0x403584=this['getFeatureTable'](_0xd82efd,_0x4c3433,_0x5c6580,_0x4f2f25),_0x40f294=[];if(_0x403584){let _0x39c3ad,_0x10cc2=_0x403584[_0x2e3e5a(0x56e)],_0x49eb83=this[_0x2e3e5a(0x7da)]['tables'][this[_0x2e3e5a(0x4ff)]][_0x2e3e5a(0x95f)];for(let _0x32f02c=0x0;_0x32f02c<_0x10cc2[_0x2e3e5a(0xba6)];_0x32f02c++)_0x39c3ad=_0x49eb83[_0x10cc2[_0x32f02c]],_0x39c3ad[_0x2e3e5a(0x8a6)]===_0x46720d&&_0x40f294[_0x2e3e5a(0x381)](_0x39c3ad);if(_0x40f294['length']===0x0&&_0x4f2f25){_0x39c3ad={'lookupType':_0x46720d,'lookupFlag':0x0,'subtables':[],'markFilteringSet':void 0x0};let _0x411c3b=_0x49eb83[_0x2e3e5a(0xba6)];return _0x49eb83[_0x2e3e5a(0x381)](_0x39c3ad),_0x10cc2[_0x2e3e5a(0x381)](_0x411c3b),[_0x39c3ad];}}return _0x40f294;},'getGlyphClass':function(_0x29829a,_0x340eec){const _0x4ba84d=_0x2273f6;switch(_0x29829a['format']){case 0x1:return _0x29829a[_0x4ba84d(0x170)]<=_0x340eec&&_0x340eec<_0x29829a['startGlyph']+_0x29829a[_0x4ba84d(0x83e)]['length']?_0x29829a[_0x4ba84d(0x83e)][_0x340eec-_0x29829a[_0x4ba84d(0x170)]]:0x0;case 0x2:{let _0x123fbb=_0x3b71a2(_0x29829a[_0x4ba84d(0x6b6)],_0x340eec);return _0x123fbb?_0x123fbb[_0x4ba84d(0x4c5)]:0x0;}}},'getCoverageIndex':function(_0x34d060,_0x2bc159){const _0x1bedff=_0x2273f6;switch(_0x34d060[_0x1bedff(0xc00)]){case 0x1:{let _0x5c09a8=_0x145bd9(_0x34d060[_0x1bedff(0x70a)],_0x2bc159);return _0x5c09a8>=0x0?_0x5c09a8:-0x1;}case 0x2:{let _0x474821=_0x3b71a2(_0x34d060[_0x1bedff(0x6b6)],_0x2bc159);return _0x474821?_0x474821[_0x1bedff(0x2c6)]+_0x2bc159-_0x474821[_0x1bedff(0x3c1)]:-0x1;}}},'expandCoverage':function(_0x54bc60){const _0x4b125b=_0x2273f6;if(_0x54bc60[_0x4b125b(0xc00)]===0x1)return _0x54bc60[_0x4b125b(0x70a)];{let _0x5328c2=[],_0x3a510f=_0x54bc60[_0x4b125b(0x6b6)];for(let _0x475486=0x0;_0x475486<_0x3a510f[_0x4b125b(0xba6)];_0x475486++){let _0x5a2788=_0x3a510f[_0x475486],_0x325f79=_0x5a2788[_0x4b125b(0x3c1)],_0x3bc5b3=_0x5a2788['end'];for(let _0x905129=_0x325f79;_0x905129<=_0x3bc5b3;_0x905129++)_0x5328c2[_0x4b125b(0x381)](_0x905129);}return _0x5328c2;}}};var _0x4d2da4=_0x4bdb91;function _0x1f9c9e(_0x1b840c){const _0x416e6e=_0x2273f6;_0x4d2da4[_0x416e6e(0x3f4)](this,_0x1b840c,'gpos');}_0x1f9c9e['prototype']=_0x4d2da4[_0x2273f6(0x505)],_0x1f9c9e['prototype']['init']=function(){const _0x99b13c=_0x2273f6;let _0x5a7898=this[_0x99b13c(0x7ba)]();this['defaultKerningTables']=this[_0x99b13c(0xacb)](_0x5a7898);},_0x1f9c9e[_0x2273f6(0x505)][_0x2273f6(0x4d2)]=function(_0x2015c2,_0x230202,_0x4a922a){const _0x3b00ec=_0x2273f6;for(let _0x573cdc=0x0;_0x573cdc<_0x2015c2[_0x3b00ec(0xba6)];_0x573cdc++){let _0x32491c=_0x2015c2[_0x573cdc]['subtables'];for(let _0x426c41=0x0;_0x426c41<_0x32491c[_0x3b00ec(0xba6)];_0x426c41++){let _0x41d36d=_0x32491c[_0x426c41],_0x3beb6b=this[_0x3b00ec(0x4b1)](_0x41d36d[_0x3b00ec(0x8aa)],_0x230202);if(!(_0x3beb6b<0x0))switch(_0x41d36d[_0x3b00ec(0x9a1)]){case 0x1:{let _0x424cc4=_0x41d36d[_0x3b00ec(0xb27)][_0x3beb6b];for(let _0x3d5b22=0x0;_0x3d5b22<_0x424cc4[_0x3b00ec(0xba6)];_0x3d5b22++){let _0x2349d8=_0x424cc4[_0x3d5b22];if(_0x2349d8[_0x3b00ec(0xb98)]===_0x4a922a)return _0x2349d8[_0x3b00ec(0x82c)]&&_0x2349d8[_0x3b00ec(0x82c)][_0x3b00ec(0x87b)]||0x0;}break;}case 0x2:{let _0x421d2f=this[_0x3b00ec(0x731)](_0x41d36d[_0x3b00ec(0x489)],_0x230202),_0x5ba008=this['getGlyphClass'](_0x41d36d[_0x3b00ec(0x1d1)],_0x4a922a),_0x4ecec8=_0x41d36d[_0x3b00ec(0xc5a)][_0x421d2f][_0x5ba008];return _0x4ecec8[_0x3b00ec(0x82c)]&&_0x4ecec8[_0x3b00ec(0x82c)][_0x3b00ec(0x87b)]||0x0;}}}}return 0x0;},_0x1f9c9e[_0x2273f6(0x505)][_0x2273f6(0xacb)]=function(_0x4624d3,_0x1c122d){const _0x890bb6=_0x2273f6;if(this[_0x890bb6(0x7da)][_0x890bb6(0x796)][_0x890bb6(0x9a2)])return this[_0x890bb6(0x38b)](_0x4624d3,_0x1c122d,_0x890bb6(0x7f3),0x2);};var _0x12aeea=_0x1f9c9e;function _0x25caad(_0x3fb2e8,_0x4d9af6){const _0xf06a60=_0x2273f6;let _0x131509=_0x3fb2e8['length'];if(_0x131509!==_0x4d9af6[_0xf06a60(0xba6)])return!0x1;for(let _0x1d225c=0x0;_0x1d225c<_0x131509;_0x1d225c++)if(_0x3fb2e8[_0x1d225c]!==_0x4d9af6[_0x1d225c])return!0x1;return!0x0;}function _0x3332da(_0x1f69d2,_0x259667,_0x21679d){const _0x15d0aa=_0x2273f6;let _0x33e735=0x0,_0x1e19ea=_0x1f69d2['length']-0x1,_0x598394=null;for(;_0x33e735<=_0x1e19ea;){let _0x200dcd=Math[_0x15d0aa(0x559)]((_0x33e735+_0x1e19ea)/0x2),_0x110123=_0x1f69d2[_0x200dcd],_0x3bb593=_0x110123[_0x259667];if(_0x3bb593<_0x21679d)_0x33e735=_0x200dcd+0x1;else{if(_0x3bb593>_0x21679d)_0x1e19ea=_0x200dcd-0x1;else{_0x598394=_0x110123;break;}}}return _0x598394;}function _0x15659f(_0x3698c3,_0x533bf6,_0x12d382){const _0x25ca7c=_0x2273f6;let _0x5cd6d6=0x0,_0x1bf72a=_0x3698c3[_0x25ca7c(0xba6)]-0x1;for(;_0x5cd6d6<=_0x1bf72a;){let _0x38719f=Math[_0x25ca7c(0x559)]((_0x5cd6d6+_0x1bf72a)/0x2),_0x325ab3=_0x3698c3[_0x38719f];if(_0x325ab3[_0x533bf6]<_0x12d382)_0x5cd6d6=_0x38719f+0x1;else{if(_0x325ab3[_0x533bf6]>_0x12d382)_0x1bf72a=_0x38719f-0x1;else return _0x38719f;}}return-0x1;}function _0x4a0156(_0x5ecced,_0x51f458,_0x5bef1a){const _0x31f372=_0x2273f6;let _0x4d65c7=0x0,_0x574d54=_0x5ecced[_0x31f372(0xba6)],_0x5a18ec=(_0x4172a3,_0x46d80e)=>_0x4172a3[_0x51f458]-_0x46d80e[_0x51f458];for(;_0x4d65c7<_0x574d54;){let _0x9dd410=_0x4d65c7+_0x574d54>>>0x1;_0x5a18ec(_0x5ecced[_0x9dd410],_0x5bef1a)<0x0?_0x4d65c7=_0x9dd410+0x1:_0x574d54=_0x9dd410;}return _0x5ecced[_0x31f372(0x98b)](_0x4d65c7,0x0,_0x5bef1a),_0x4d65c7;}function _0x30d491(_0xb19a10){return _0xb19a10[0x0]===0x1f&&_0xb19a10[0x1]===0x8b&&_0xb19a10[0x2]===0x8;}function _0x3423ee(_0x32d8c3){const _0x53372c=_0x2273f6;let _0x54c7a1=new DataView(_0x32d8c3[_0x53372c(0x1e6)],_0x32d8c3[_0x53372c(0x62e)],_0x32d8c3[_0x53372c(0xc50)]),_0x546cdc=0xa,_0x189049=_0x32d8c3['byteLength']-0x8,_0x146b58=_0x54c7a1['getInt8'](0x3);if(_0x146b58&0x4&&(_0x546cdc+=0x2+_0x54c7a1[_0x53372c(0xbdf)](_0x546cdc,!0x0)),_0x146b58&0x8){for(;_0x546cdc<_0x189049&&_0x32d8c3[_0x546cdc++]!==0x0;);}if(_0x146b58&0x10){for(;_0x546cdc<_0x189049&&_0x32d8c3[_0x546cdc++]!==0x0;);}if(_0x146b58&0x2&&(_0x546cdc+=0x2),_0x546cdc>=_0x189049)throw Error(_0x53372c(0x18f));let _0x515a85=_0x54c7a1['getUint32'](_0x54c7a1['byteLength']-0x4,!0x0);return _0xe89db4(_0x32d8c3[_0x53372c(0x7f4)](_0x546cdc,_0x189049),new Uint8Array(_0x515a85));}function _0x2cf25e(_0x4e8458){const _0x485cde=_0x2273f6;return{'x':_0x4e8458['x'],'y':_0x4e8458['y'],'onCurve':_0x4e8458['onCurve'],'lastPointOfContour':_0x4e8458[_0x485cde(0x246)]};}function _0x426f9b(_0x314ad0){const _0x3cdac7=_0x2273f6;return{'glyphIndex':_0x314ad0['glyphIndex'],'xScale':_0x314ad0[_0x3cdac7(0x1a6)],'scale01':_0x314ad0[_0x3cdac7(0x257)],'scale10':_0x314ad0[_0x3cdac7(0x2d5)],'yScale':_0x314ad0[_0x3cdac7(0x682)],'dx':_0x314ad0['dx'],'dy':_0x314ad0['dy']};}function _0x5c1df2(_0x410c5b){const _0x1eee21=_0x2273f6;_0x4d2da4['call'](this,_0x410c5b,_0x1eee21(0x60f));}function _0x222ee8(_0x5ba1cd,_0x35c6cd,_0x43731b){const _0x27ad6c=_0x2273f6;let _0x426c94=_0x5ba1cd[_0x27ad6c(0xa97)];for(let _0x4f1d9a=0x0;_0x4f1d9a<_0x426c94['length'];_0x4f1d9a++){let _0x4df4ac=_0x426c94[_0x4f1d9a];if(_0x4df4ac[_0x27ad6c(0x2f5)]===_0x35c6cd)return _0x4df4ac;}if(_0x43731b)return _0x426c94['push'](_0x43731b),_0x43731b;}_0x5c1df2[_0x2273f6(0x505)]=_0x4d2da4[_0x2273f6(0x505)],_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x67c)]=function(){const _0x207a8=_0x2273f6;return{'version':0x1,'scripts':[{'tag':_0x207a8(0x676),'script':{'defaultLangSys':{'reserved':0x0,'reqFeatureIndex':0xffff,'featureIndexes':[]},'langSysRecords':[]}}],'features':[],'lookups':[]};},_0x5c1df2[_0x2273f6(0x505)]['getSingle']=function(_0x4a187d,_0x152b72,_0x3fea7c){const _0x4e935b=_0x2273f6;let _0xaf6572=[],_0x5a445e=this[_0x4e935b(0x38b)](_0x152b72,_0x3fea7c,_0x4a187d,0x1);for(let _0x342008=0x0;_0x342008<_0x5a445e[_0x4e935b(0xba6)];_0x342008++){let _0x42fb0d=_0x5a445e[_0x342008][_0x4e935b(0xa97)];for(let _0x4b37d4=0x0;_0x4b37d4<_0x42fb0d[_0x4e935b(0xba6)];_0x4b37d4++){let _0x2039b3=_0x42fb0d[_0x4b37d4],_0x76fa2e=this['expandCoverage'](_0x2039b3[_0x4e935b(0x8aa)]),_0x30674b;if(_0x2039b3[_0x4e935b(0x2f5)]===0x1){let _0x54befc=_0x2039b3[_0x4e935b(0x6d0)];for(_0x30674b=0x0;_0x30674b<_0x76fa2e['length'];_0x30674b++){let _0x3f0c52=_0x76fa2e[_0x30674b];_0xaf6572[_0x4e935b(0x381)]({'sub':_0x3f0c52,'by':_0x3f0c52+_0x54befc});}}else{let _0x30849b=_0x2039b3[_0x4e935b(0x867)];for(_0x30674b=0x0;_0x30674b<_0x76fa2e[_0x4e935b(0xba6)];_0x30674b++)_0xaf6572[_0x4e935b(0x381)]({'sub':_0x76fa2e[_0x30674b],'by':_0x30849b[_0x30674b]});}}}return _0xaf6572;},_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x525)]=function(_0x4bffef,_0x51fa36,_0x2acf22){const _0x58d83b=_0x2273f6;let _0x279657=[],_0x359196=this[_0x58d83b(0x38b)](_0x51fa36,_0x2acf22,_0x4bffef,0x2);for(let _0x3a14a7=0x0;_0x3a14a7<_0x359196['length'];_0x3a14a7++){let _0x590406=_0x359196[_0x3a14a7]['subtables'];for(let _0x1a1006=0x0;_0x1a1006<_0x590406[_0x58d83b(0xba6)];_0x1a1006++){let _0x1dffcf=_0x590406[_0x1a1006],_0x25f59d=this[_0x58d83b(0xad3)](_0x1dffcf[_0x58d83b(0x8aa)]),_0x2c1c84;for(_0x2c1c84=0x0;_0x2c1c84<_0x25f59d[_0x58d83b(0xba6)];_0x2c1c84++){let _0x1069fb=_0x25f59d[_0x2c1c84],_0x1e7306=_0x1dffcf[_0x58d83b(0x32a)][_0x2c1c84];_0x279657[_0x58d83b(0x381)]({'sub':_0x1069fb,'by':_0x1e7306});}}}return _0x279657;},_0x5c1df2['prototype'][_0x2273f6(0x6ff)]=function(_0x44d5fc,_0x586eeb,_0x40029f){const _0x322729=_0x2273f6;let _0x170d74=[],_0xa8f9a3=this['getLookupTables'](_0x586eeb,_0x40029f,_0x44d5fc,0x3);for(let _0x5c6120=0x0;_0x5c6120<_0xa8f9a3[_0x322729(0xba6)];_0x5c6120++){let _0x4d32bd=_0xa8f9a3[_0x5c6120][_0x322729(0xa97)];for(let _0x7a271e=0x0;_0x7a271e<_0x4d32bd[_0x322729(0xba6)];_0x7a271e++){let _0x8be094=_0x4d32bd[_0x7a271e],_0x10d0fa=this[_0x322729(0xad3)](_0x8be094['coverage']),_0x1ff5d7=_0x8be094['alternateSets'];for(let _0x56e100=0x0;_0x56e100<_0x10d0fa[_0x322729(0xba6)];_0x56e100++)_0x170d74[_0x322729(0x381)]({'sub':_0x10d0fa[_0x56e100],'by':_0x1ff5d7[_0x56e100]});}}return _0x170d74;},_0x5c1df2[_0x2273f6(0x505)]['getLigatures']=function(_0x589ba6,_0x289546,_0x27dda0){const _0x167628=_0x2273f6;let _0x17eca9=[],_0x1271be=this[_0x167628(0x38b)](_0x289546,_0x27dda0,_0x589ba6,0x4);for(let _0x20d4bc=0x0;_0x20d4bc<_0x1271be['length'];_0x20d4bc++){let _0x2131fb=_0x1271be[_0x20d4bc]['subtables'];for(let _0x125055=0x0;_0x125055<_0x2131fb['length'];_0x125055++){let _0x2d78f9=_0x2131fb[_0x125055],_0x2c7a69=this['expandCoverage'](_0x2d78f9[_0x167628(0x8aa)]),_0x13b33b=_0x2d78f9['ligatureSets'];for(let _0x36ee1a=0x0;_0x36ee1a<_0x2c7a69[_0x167628(0xba6)];_0x36ee1a++){let _0x59efdd=_0x2c7a69[_0x36ee1a],_0x2c12dd=_0x13b33b[_0x36ee1a];for(let _0x362f30=0x0;_0x362f30<_0x2c12dd['length'];_0x362f30++){let _0x47473c=_0x2c12dd[_0x362f30];_0x17eca9[_0x167628(0x381)]({'sub':[_0x59efdd][_0x167628(0xaba)](_0x47473c[_0x167628(0x667)]),'by':_0x47473c[_0x167628(0xab2)]});}}}}return _0x17eca9;},_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x31c)]=function(_0x29fda2,_0x11a543,_0x1f7e43,_0x513848){const _0x3e3ec9=_0x2273f6;let _0x26afc0=this['getLookupTables'](_0x1f7e43,_0x513848,_0x29fda2,0x1,!0x0)[0x0],_0x186c53=_0x222ee8(_0x26afc0,0x2,{'substFormat':0x2,'coverage':{'format':0x1,'glyphs':[]},'substitute':[]});_0x95cc0[_0x3e3ec9(0x4bd)](_0x186c53['coverage'][_0x3e3ec9(0xc00)]===0x1,_0x3e3ec9(0xb4c)+_0x186c53[_0x3e3ec9(0x8aa)][_0x3e3ec9(0xc00)]);let _0x46cc0f=_0x11a543[_0x3e3ec9(0x41d)],_0x268f96=this['binSearch'](_0x186c53[_0x3e3ec9(0x8aa)]['glyphs'],_0x46cc0f);_0x268f96<0x0&&(_0x268f96=-0x1-_0x268f96,_0x186c53[_0x3e3ec9(0x8aa)][_0x3e3ec9(0x70a)][_0x3e3ec9(0x98b)](_0x268f96,0x0,_0x46cc0f),_0x186c53[_0x3e3ec9(0x867)][_0x3e3ec9(0x98b)](_0x268f96,0x0,0x0)),_0x186c53[_0x3e3ec9(0x867)][_0x268f96]=_0x11a543['by'];},_0x5c1df2[_0x2273f6(0x505)]['addMultiple']=function(_0x52d052,_0x2ee30e,_0x306cbf,_0x2ea5d8){const _0x1f3a92=_0x2273f6;_0x95cc0[_0x1f3a92(0x4bd)](_0x2ee30e['by']instanceof Array&&_0x2ee30e['by']['length']>0x1,'Multiple:\x20\x22by\x22\x20must\x20be\x20an\x20array\x20of\x20two\x20or\x20more\x20ids');let _0x1790b2=this['getLookupTables'](_0x306cbf,_0x2ea5d8,_0x52d052,0x2,!0x0)[0x0],_0x4fe8ec=_0x222ee8(_0x1790b2,0x1,{'substFormat':0x1,'coverage':{'format':0x1,'glyphs':[]},'sequences':[]});_0x95cc0['assert'](_0x4fe8ec[_0x1f3a92(0x8aa)][_0x1f3a92(0xc00)]===0x1,_0x1f3a92(0xbe9)+_0x4fe8ec[_0x1f3a92(0x8aa)][_0x1f3a92(0xc00)]);let _0x11714a=_0x2ee30e[_0x1f3a92(0x41d)],_0x45650b=this[_0x1f3a92(0x2ff)](_0x4fe8ec[_0x1f3a92(0x8aa)][_0x1f3a92(0x70a)],_0x11714a);_0x45650b<0x0&&(_0x45650b=-0x1-_0x45650b,_0x4fe8ec['coverage']['glyphs'][_0x1f3a92(0x98b)](_0x45650b,0x0,_0x11714a),_0x4fe8ec[_0x1f3a92(0x32a)][_0x1f3a92(0x98b)](_0x45650b,0x0,0x0)),_0x4fe8ec[_0x1f3a92(0x32a)][_0x45650b]=_0x2ee30e['by'];},_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x6c4)]=function(_0x3e2135,_0x552c6d,_0x5268b4,_0x5f4b27){const _0x2b1de7=_0x2273f6;let _0x1d9645=this['getLookupTables'](_0x5268b4,_0x5f4b27,_0x3e2135,0x3,!0x0)[0x0],_0x52ab5d=_0x222ee8(_0x1d9645,0x1,{'substFormat':0x1,'coverage':{'format':0x1,'glyphs':[]},'alternateSets':[]});_0x95cc0[_0x2b1de7(0x4bd)](_0x52ab5d[_0x2b1de7(0x8aa)][_0x2b1de7(0xc00)]===0x1,_0x2b1de7(0x685)+_0x52ab5d[_0x2b1de7(0x8aa)]['format']);let _0x541ec7=_0x552c6d[_0x2b1de7(0x41d)],_0x3b81c0=this[_0x2b1de7(0x2ff)](_0x52ab5d['coverage']['glyphs'],_0x541ec7);_0x3b81c0<0x0&&(_0x3b81c0=-0x1-_0x3b81c0,_0x52ab5d[_0x2b1de7(0x8aa)]['glyphs']['splice'](_0x3b81c0,0x0,_0x541ec7),_0x52ab5d[_0x2b1de7(0x9f0)][_0x2b1de7(0x98b)](_0x3b81c0,0x0,0x0)),_0x52ab5d[_0x2b1de7(0x9f0)][_0x3b81c0]=_0x552c6d['by'];},_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x913)]=function(_0xa39575,_0x2be81b,_0x558571,_0x110e9a){const _0xc9b965=_0x2273f6;let _0x6617bf=this[_0xc9b965(0x38b)](_0x558571,_0x110e9a,_0xa39575,0x4,!0x0)[0x0],_0xa326a2=_0x6617bf['subtables'][0x0];_0xa326a2||(_0xa326a2={'substFormat':0x1,'coverage':{'format':0x1,'glyphs':[]},'ligatureSets':[]},_0x6617bf[_0xc9b965(0xa97)][0x0]=_0xa326a2),_0x95cc0[_0xc9b965(0x4bd)](_0xa326a2['coverage'][_0xc9b965(0xc00)]===0x1,_0xc9b965(0x2b3)+_0xa326a2['coverage'][_0xc9b965(0xc00)]);let _0xca464d=_0x2be81b['sub'][0x0],_0x281db6=_0x2be81b[_0xc9b965(0x41d)]['slice'](0x1),_0x451ea0={'ligGlyph':_0x2be81b['by'],'components':_0x281db6},_0x31af7c=this['binSearch'](_0xa326a2[_0xc9b965(0x8aa)]['glyphs'],_0xca464d);if(_0x31af7c>=0x0){let _0x85b663=_0xa326a2[_0xc9b965(0x4e5)][_0x31af7c];for(let _0x12239a=0x0;_0x12239a<_0x85b663[_0xc9b965(0xba6)];_0x12239a++)if(_0x25caad(_0x85b663[_0x12239a][_0xc9b965(0x667)],_0x281db6))return;_0x85b663[_0xc9b965(0x381)](_0x451ea0);}else _0x31af7c=-0x1-_0x31af7c,_0xa326a2['coverage'][_0xc9b965(0x70a)][_0xc9b965(0x98b)](_0x31af7c,0x0,_0xca464d),_0xa326a2['ligatureSets']['splice'](_0x31af7c,0x0,[_0x451ea0]);},_0x5c1df2[_0x2273f6(0x505)][_0x2273f6(0x842)]=function(_0xd2a3fa,_0x15dd79,_0x70e285){const _0x52ce57=_0x2273f6;if(/ss\d\d/[_0x52ce57(0xc39)](_0xd2a3fa))return this[_0x52ce57(0x120)](_0xd2a3fa,_0x15dd79,_0x70e285);switch(_0xd2a3fa){case'aalt':case _0x52ce57(0xa8b):return this[_0x52ce57(0x120)](_0xd2a3fa,_0x15dd79,_0x70e285)[_0x52ce57(0xaba)](this['getAlternates'](_0xd2a3fa,_0x15dd79,_0x70e285));case _0x52ce57(0x59c):case _0x52ce57(0xa7e):case _0x52ce57(0x740):return this['getLigatures'](_0xd2a3fa,_0x15dd79,_0x70e285);case _0x52ce57(0xbb5):return this['getMultiple'](_0xd2a3fa,_0x15dd79,_0x70e285)[_0x52ce57(0xaba)](this[_0x52ce57(0xc53)](_0xd2a3fa,_0x15dd79,_0x70e285));case _0x52ce57(0x414):return this[_0x52ce57(0x525)](_0xd2a3fa,_0x15dd79,_0x70e285);}},_0x5c1df2['prototype'][_0x2273f6(0x30c)]=function(_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8){const _0x53e374=_0x2273f6;if(/ss\d\d/[_0x53e374(0xc39)](_0x2d59e9))return this[_0x53e374(0x31c)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8);switch(_0x2d59e9){case _0x53e374(0xa67):case _0x53e374(0xa8b):return typeof _0xedaba6['by']==_0x53e374(0x97e)?this[_0x53e374(0x31c)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8):this[_0x53e374(0x6c4)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8);case'dlig':case _0x53e374(0xa7e):case _0x53e374(0x740):return this[_0x53e374(0x913)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8);case _0x53e374(0xbb5):return _0xedaba6['by']instanceof Array?this[_0x53e374(0x27e)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8):this[_0x53e374(0x913)](_0x2d59e9,_0xedaba6,_0x868c72,_0x5f3bf8);}};var _0x4cdf04=_0x5c1df2,_0x1bb18e=class{constructor(_0x3a46ad){const _0x54e02c=_0x2273f6;this[_0x54e02c(0x501)]=0xff,this['font']=_0x3a46ad;}[_0x2273f6(0xb74)](){const _0x502c47=_0x2273f6;return this[_0x502c47(0x7da)][_0x502c47(0x796)]&&this['font']['tables']['cpal']?this['font']['tables'][_0x502c47(0xb74)]:!0x1;}['getAll'](_0x551507){const _0x40833a=_0x2273f6;let _0x1b89d2=[],_0xbbf190=this['cpal']();if(!_0xbbf190)return _0x1b89d2;for(let _0x5c5c3f=0x0;_0x5c5c3f<_0xbbf190[_0x40833a(0xbf7)][_0x40833a(0xba6)];_0x5c5c3f++){let _0x5329ab=_0xbbf190['colorRecordIndices'][_0x5c5c3f],_0x54b7e2=[];for(let _0xc70fd=_0x5329ab;_0xc70fd<_0x5329ab+_0xbbf190[_0x40833a(0x4f8)];_0xc70fd++)_0x54b7e2[_0x40833a(0x381)](_0x41da50(_0xbbf190['colorRecords'][_0xc70fd],_0x551507||_0x40833a(0x654)));_0x1b89d2[_0x40833a(0x381)](_0x54b7e2);}return _0x1b89d2;}[_0x2273f6(0x1fc)](_0x4a089c){const _0x1fd8cc=_0x2273f6;return Array['isArray'](_0x4a089c)?_0x4a089c[_0x1fd8cc(0xb06)](_0x332d8b=>_0x2ddc37(_0x332d8b,'raw')):_0x2ddc37(_0x4a089c,_0x1fd8cc(0x317));}[_0x2273f6(0x846)](_0x56a756,_0x3ffedb=[],_0xd43e2a=this[_0x2273f6(0xb74)]()['numPaletteEntries']){const _0x14067c=_0x2273f6;return _0x56a756=Number[_0x14067c(0x6c5)](_0x56a756)?this[_0x14067c(0x2ad)](_0x56a756,_0x14067c(0x317)):_0x56a756,Object[_0x14067c(0x4ac)](Array(_0xd43e2a)[_0x14067c(0x9ae)](this['defaultValue']),this[_0x14067c(0x1fc)](_0x56a756)[_0x14067c(0xaba)](this[_0x14067c(0x1fc)](_0x3ffedb)));}[_0x2273f6(0xc8f)](_0x40c12d){const _0x491eae=_0x2273f6;if(this['ensureCPAL'](Array(_0x40c12d)['fill'](this[_0x491eae(0x501)])))return;let _0x577854=this[_0x491eae(0xb74)](),_0xe1600b=_0x577854[_0x491eae(0x4f8)]+_0x40c12d,_0x3d161e=this[_0x491eae(0x502)]()['map'](_0x152167=>this[_0x491eae(0x846)](_0x152167,[],_0xe1600b));_0x577854[_0x491eae(0x4f8)]=_0xe1600b,_0x577854['colorRecords']=this['toCPALcolor'](_0x3d161e[_0x491eae(0x549)]()),this[_0x491eae(0x89d)]();}['get'](_0x3b8ef6,_0x23cb9e='hexa'){const _0x39906e=_0x2273f6;return this[_0x39906e(0x502)](_0x23cb9e)[_0x3b8ef6]||null;}[_0x2273f6(0xa19)](_0x3810fe,_0x1559cc=0x0,_0x220fb4='hexa'){return _0x3d464b(this['font'],_0x3810fe,_0x1559cc,_0x220fb4);}['setColor'](_0x518577,_0x57c5bb,_0x540bc6=0x0){const _0x580689=_0x2273f6;_0x518577=parseInt(_0x518577),_0x540bc6=parseInt(_0x540bc6);let _0x2e83ec=this[_0x580689(0x502)](_0x580689(0x317)),_0x2b7468=_0x2e83ec[_0x540bc6];if(!_0x2b7468)throw Error('paletteIndex\x20'+_0x540bc6+_0x580689(0x6d8));let _0x5884da=this[_0x580689(0xb74)](),_0x1abf7f=_0x5884da[_0x580689(0x4f8)];Array[_0x580689(0x461)](_0x57c5bb)||(_0x57c5bb=[_0x57c5bb]),_0x57c5bb[_0x580689(0xba6)]+_0x518577>_0x1abf7f&&(this[_0x580689(0xc8f)](_0x57c5bb[_0x580689(0xba6)]+_0x518577-_0x1abf7f),_0x2e83ec=this[_0x580689(0x502)](_0x580689(0x317)),_0x2b7468=_0x2e83ec[_0x540bc6]);for(let _0x316fcf=0x0;_0x316fcf<_0x57c5bb[_0x580689(0xba6)];_0x316fcf++)_0x2b7468[_0x316fcf+_0x518577]=this['toCPALcolor'](_0x57c5bb[_0x316fcf]);_0x5884da[_0x580689(0x93a)]=_0x2e83ec['flat'](),this[_0x580689(0x89d)]();}[_0x2273f6(0x30c)](_0x4fd1bf){const _0x690941=_0x2273f6;if(this[_0x690941(0x4c9)](_0x4fd1bf))return;let _0xbc4168=this[_0x690941(0xb74)](),_0x3458d5=_0xbc4168[_0x690941(0x4f8)];_0x4fd1bf&&_0x4fd1bf[_0x690941(0xba6)]?(_0x4fd1bf=this['toCPALcolor'](_0x4fd1bf),_0x4fd1bf[_0x690941(0xba6)]>_0x3458d5?this[_0x690941(0xc8f)](_0x4fd1bf['length']-_0x3458d5):_0x4fd1bf[_0x690941(0xba6)]<_0x3458d5&&(_0x4fd1bf=this['fillPalette'](_0x4fd1bf)),_0xbc4168[_0x690941(0xbf7)][_0x690941(0x381)](_0xbc4168['colorRecords']['length']),_0xbc4168[_0x690941(0x93a)][_0x690941(0x381)](..._0x4fd1bf)):(_0xbc4168[_0x690941(0xbf7)][_0x690941(0x381)](_0xbc4168[_0x690941(0x93a)]['length']),_0xbc4168[_0x690941(0x93a)][_0x690941(0x381)](...Array(_0x3458d5)[_0x690941(0x9ae)](this[_0x690941(0x501)])));}[_0x2273f6(0x297)](_0xed4f2b){const _0x107e00=_0x2273f6;let _0x4383c0=this[_0x107e00(0x502)](_0x107e00(0x317));delete _0x4383c0[_0xed4f2b];let _0x42eebf=this[_0x107e00(0xb74)]();_0x42eebf['colorRecordIndices'][_0x107e00(0x8f2)](),_0x42eebf[_0x107e00(0x93a)]=_0x4383c0[_0x107e00(0x549)]();}[_0x2273f6(0x451)](_0x15eb10,_0x551bcd){const _0x229178=_0x2273f6;if(_0x15eb10===_0x551bcd)throw Error(_0x229178(0x7ed));let _0x170884=this[_0x229178(0xb74)](),_0x100671=this['getAll'](_0x229178(0x317)),_0x534e4b=[];if(_0x551bcd>_0x170884[_0x229178(0x4f8)]-0x1)throw Error(_0x229178(0x146)+(_0x170884[_0x229178(0x4f8)]-0x1)+',\x20replacementIndex:\x20'+_0x551bcd+')');for(let _0x484bb7=0x0;_0x484bb7<_0x100671['length'];_0x484bb7++){let _0x21ca97=_0x100671[_0x484bb7][_0x229178(0xbcd)]((_0x14f464,_0x441a2b)=>_0x441a2b!==_0x15eb10);_0x534e4b['push'](_0x21ca97);}let _0x4b81f2=this[_0x229178(0x7da)][_0x229178(0x796)][_0x229178(0x4eb)];if(_0x4b81f2){let _0x4f29c7=_0x4b81f2[_0x229178(0x4ec)];for(let _0x2cd742=0x0;_0x2cd742<_0x4f29c7[_0x229178(0xba6)];_0x2cd742++){let _0x5e7e13=_0x4f29c7[_0x2cd742][_0x229178(0x805)];if(_0x5e7e13>_0x15eb10)--_0x4f29c7[_0x2cd742][_0x229178(0x805)];else{if(_0x5e7e13===_0x15eb10){let _0x5bd50a=0x0;for(let _0x5e0ab9=0x0;_0x5e0ab9<_0x100671[_0x229178(0xba6)];_0x5e0ab9++)if(_0x551bcd>_0x15eb10&&_0x551bcd<=_0x15eb10+_0x100671[_0x5e0ab9][_0x229178(0xba6)]){_0x5bd50a++;break;}_0x4f29c7[_0x2cd742][_0x229178(0x805)]=_0x551bcd-_0x5bd50a;}}}this['font'][_0x229178(0x796)]['colr']={..._0x4b81f2,'layerRecords':_0x4f29c7};}let _0x5c22a1=_0x534e4b[_0x229178(0x549)]();for(let _0x1b463b=0x0;_0x1b463b<_0x100671[_0x229178(0xba6)];_0x1b463b++)_0x170884[_0x229178(0xbf7)][_0x1b463b]-=_0x1b463b;_0x170884[_0x229178(0x4f8)]=Math[_0x229178(0x542)](0x0,_0x170884[_0x229178(0x4f8)]-0x1),_0x170884[_0x229178(0x93a)]=this[_0x229178(0x1fc)](_0x5c22a1);}[_0x2273f6(0x4c9)](_0x54c856){const _0x23f1d7=_0x2273f6;return this[_0x23f1d7(0xb74)]()?!0x1:(_0x54c856=!_0x54c856||!_0x54c856[_0x23f1d7(0xba6)]?[this[_0x23f1d7(0x501)]]:this[_0x23f1d7(0x1fc)](_0x54c856),this[_0x23f1d7(0x7da)][_0x23f1d7(0x796)]['cpal']={'version':0x0,'numPaletteEntries':_0x54c856[_0x23f1d7(0xba6)],'colorRecords':_0x54c856,'colorRecordIndices':[0x0]},!0x0);}[_0x2273f6(0x89d)](){const _0xc189f5=_0x2273f6;let _0x1bff39=this[_0xc189f5(0xb74)](),_0x441f1d=Math[_0xc189f5(0x780)](_0x1bff39[_0xc189f5(0x93a)][_0xc189f5(0xba6)]/_0x1bff39[_0xc189f5(0x4f8)]);_0x1bff39[_0xc189f5(0xbf7)]=[];for(let _0x4f061e=0x0;_0x4f061e<_0x441f1d;_0x4f061e++)_0x1bff39[_0xc189f5(0xbf7)][_0xc189f5(0x381)](_0x4f061e*_0x1bff39[_0xc189f5(0x4f8)]);}},_0x489c33=class{constructor(_0x292494){const _0x11119b=_0x2273f6;this[_0x11119b(0x7da)]=_0x292494;}[_0x2273f6(0x983)](){const _0x1cc2f5=_0x2273f6;return this[_0x1cc2f5(0x7da)][_0x1cc2f5(0x796)][_0x1cc2f5(0x4eb)]||(this[_0x1cc2f5(0x7da)]['tables'][_0x1cc2f5(0x4eb)]={'version':0x0,'baseGlyphRecords':[],'layerRecords':[]}),this[_0x1cc2f5(0x7da)];}[_0x2273f6(0x2ad)](_0x8c6a39){const _0x2fec7c=_0x2273f6;let _0xe5d396=this[_0x2fec7c(0x7da)],_0x100e4f=[],_0x39e60d=_0xe5d396[_0x2fec7c(0x796)][_0x2fec7c(0x4eb)],_0xe38f76=_0xe5d396['tables'][_0x2fec7c(0xb74)];if(!_0x39e60d||!_0xe38f76)return _0x100e4f;let _0x56fa12=_0x3332da(_0x39e60d[_0x2fec7c(0x110)],_0x2fec7c(0x15f),_0x8c6a39);if(!_0x56fa12)return _0x100e4f;let _0x31da48=_0x56fa12['firstLayerIndex'],_0x44acc1=_0x56fa12[_0x2fec7c(0x5a6)];for(let _0xef878c=0x0;_0xef878c<_0x44acc1;_0xef878c++){let _0xa76c60=_0x39e60d[_0x2fec7c(0x4ec)][_0x31da48+_0xef878c];_0x100e4f[_0x2fec7c(0x381)]({'glyph':_0xe5d396[_0x2fec7c(0x70a)][_0x2fec7c(0x2ad)](_0xa76c60['glyphID']),'paletteIndex':_0xa76c60['paletteIndex']});}return _0x100e4f;}[_0x2273f6(0x30c)](_0x4537a0,_0x21c1e3,_0x1037f3){const _0xc97b49=_0x2273f6;let _0x37ee3d=this[_0xc97b49(0x2ad)](_0x4537a0);_0x21c1e3=Array[_0xc97b49(0x461)](_0x21c1e3)?_0x21c1e3:[_0x21c1e3],_0x1037f3===void 0x0||_0x1037f3===0x1/0x0||_0x1037f3>_0x37ee3d[_0xc97b49(0xba6)]?_0x1037f3=_0x37ee3d['length']:_0x1037f3<0x0&&(_0x1037f3=_0x37ee3d[_0xc97b49(0xba6)]+0x1+_0x1037f3%(_0x37ee3d[_0xc97b49(0xba6)]+0x1),_0x1037f3>=_0x37ee3d[_0xc97b49(0xba6)]+0x1&&(_0x1037f3-=_0x37ee3d[_0xc97b49(0xba6)]+0x1));let _0x24664b=[];for(let _0x13549a=0x0;_0x13549a<_0x1037f3;_0x13549a++){let _0xe3cb25=Number[_0xc97b49(0x6c5)](_0x37ee3d[_0x13549a][_0xc97b49(0x4d7)])?_0x37ee3d[_0x13549a][_0xc97b49(0x4d7)]:_0x37ee3d[_0x13549a]['glyph'][_0xc97b49(0x2c6)];_0x24664b[_0xc97b49(0x381)]({'glyphID':_0xe3cb25,'paletteIndex':_0x37ee3d[_0x13549a][_0xc97b49(0x805)]});}for(let _0x23de1f of _0x21c1e3){let _0x47d473=Number[_0xc97b49(0x6c5)](_0x23de1f[_0xc97b49(0x4d7)])?_0x23de1f[_0xc97b49(0x4d7)]:_0x23de1f[_0xc97b49(0x4d7)][_0xc97b49(0x2c6)];_0x24664b[_0xc97b49(0x381)]({'glyphID':_0x47d473,'paletteIndex':_0x23de1f[_0xc97b49(0x805)]});}for(let _0x3c4efd=_0x1037f3;_0x3c4efd<_0x37ee3d[_0xc97b49(0xba6)];_0x3c4efd++){let _0x468085=Number['isInteger'](_0x37ee3d[_0x3c4efd][_0xc97b49(0x4d7)])?_0x37ee3d[_0x3c4efd][_0xc97b49(0x4d7)]:_0x37ee3d[_0x3c4efd][_0xc97b49(0x4d7)][_0xc97b49(0x2c6)];_0x24664b[_0xc97b49(0x381)]({'glyphID':_0x468085,'paletteIndex':_0x37ee3d[_0x3c4efd][_0xc97b49(0x805)]});}this[_0xc97b49(0xb3c)](_0x4537a0,_0x24664b);}[_0x2273f6(0x36f)](_0xaa53fd,_0x20b2d6,_0x3cf904){const _0x1aaee3=_0x2273f6;let _0x285cba=this[_0x1aaee3(0x2ad)](_0xaa53fd);_0x285cba[_0x20b2d6]?(_0x285cba=_0x285cba[_0x1aaee3(0xb06)]((_0x56ebdc,_0x468642)=>({'glyphID':_0x56ebdc['glyph']['index'],'paletteIndex':_0x468642===_0x20b2d6?_0x3cf904:_0x56ebdc[_0x1aaee3(0x805)]})),this[_0x1aaee3(0xb3c)](_0xaa53fd,_0x285cba)):console[_0x1aaee3(0x9d7)](_0x1aaee3(0xb9f));}[_0x2273f6(0x744)](_0x407aa0,_0x4961d0,_0x3cb7a2=_0x4961d0){const _0xe1575=_0x2273f6;let _0x4bb3da=this[_0xe1575(0x2ad)](_0x407aa0);_0x4bb3da=_0x4bb3da[_0xe1575(0xb06)](_0x2c6fc7=>({'glyphID':_0x2c6fc7['glyph']['index'],'paletteIndex':_0x2c6fc7['paletteIndex']})),_0x4bb3da[_0xe1575(0x98b)](_0x4961d0,_0x3cb7a2-_0x4961d0+0x1),this[_0xe1575(0xb3c)](_0x407aa0,_0x4bb3da);}[_0x2273f6(0xb3c)](_0x1e3776,_0x15fabf){const _0x5ea2ed=_0x2273f6;this[_0x5ea2ed(0x983)]();let _0x39cc3d=this[_0x5ea2ed(0x7da)][_0x5ea2ed(0x796)]['colr'],_0x6fad0e=_0x15659f(_0x39cc3d[_0x5ea2ed(0x110)],'glyphID',_0x1e3776);if(_0x6fad0e===-0x1){let _0x5d3d55={'glyphID':_0x1e3776,'firstLayerIndex':_0x39cc3d[_0x5ea2ed(0x4ec)][_0x5ea2ed(0xba6)],'numLayers':0x0};_0x6fad0e=_0x4a0156(_0x39cc3d[_0x5ea2ed(0x110)],'glyphID',_0x5d3d55);}let _0x373f51=_0x39cc3d[_0x5ea2ed(0x110)][_0x6fad0e],_0xe59581=_0x373f51[_0x5ea2ed(0x5a6)],_0x256b7d=_0x15fabf[_0x5ea2ed(0xba6)],_0x2cc3e4=_0x256b7d-_0xe59581;if(_0x2cc3e4>0x0){let _0x2fe741=_0x15fabf[_0x5ea2ed(0x688)](_0xe59581)[_0x5ea2ed(0xb06)](_0x2f035d=>({'glyphID':_0x2f035d[_0x5ea2ed(0x15f)],'paletteIndex':_0x2f035d['paletteIndex']}));_0x39cc3d[_0x5ea2ed(0x4ec)][_0x5ea2ed(0x98b)](_0x373f51[_0x5ea2ed(0xbee)]+_0xe59581,0x0,..._0x2fe741);}else _0x2cc3e4<0x0&&_0x39cc3d[_0x5ea2ed(0x4ec)][_0x5ea2ed(0x98b)](_0x373f51['firstLayerIndex']+_0x256b7d,-_0x2cc3e4);for(let _0x14ec9a=0x0;_0x14ec9a<Math[_0x5ea2ed(0xb2a)](_0xe59581,_0x256b7d);_0x14ec9a++)_0x39cc3d[_0x5ea2ed(0x4ec)][_0x373f51[_0x5ea2ed(0xbee)]+_0x14ec9a]={'glyphID':_0x15fabf[_0x14ec9a][_0x5ea2ed(0x15f)],'paletteIndex':_0x15fabf[_0x14ec9a][_0x5ea2ed(0x805)]};if(_0x373f51['numLayers']=_0x256b7d,_0x2cc3e4!==0x0)for(let _0x46a682=0x0;_0x46a682<_0x39cc3d[_0x5ea2ed(0x110)][_0x5ea2ed(0xba6)];_0x46a682++){let _0x1e0ea6=_0x39cc3d[_0x5ea2ed(0x110)][_0x46a682];_0x46a682===_0x6fad0e||_0x1e0ea6['firstLayerIndex']<_0x373f51[_0x5ea2ed(0xbee)]||(_0x39cc3d['baseGlyphRecords'][_0x46a682][_0x5ea2ed(0xbee)]+=_0x2cc3e4);}}},_0x420b87=class{constructor(_0x615014){const _0xad021c=_0x2273f6;this[_0xad021c(0x7da)]=_0x615014,this['cache']=new WeakMap();}[_0x2273f6(0x2ad)](_0x10190b){const _0x32f447=_0x2273f6;let _0x19d76b=this[_0x32f447(0x613)](_0x10190b);return _0x19d76b&&_0x19d76b[_0x32f447(0xada)];}['getAsync'](_0x574e9b){const _0x20c6f8=_0x2273f6;let _0x5d94fb=this['getOrCreateSvgImageCacheEntry'](_0x574e9b);return _0x5d94fb&&_0x5d94fb[_0x20c6f8(0x7c4)];}[_0x2273f6(0x613)](_0x442738){const _0x1eb326=_0x2273f6;let _0x3003fc=this[_0x1eb326(0x7da)]['tables']['svg'];if(_0x3003fc===void 0x0)return;let _0x31ab47=_0x3003fc[_0x1eb326(0x2ad)](_0x442738);if(_0x31ab47===void 0x0)return;let _0x10727a=this[_0x1eb326(0x6b5)][_0x1eb326(0x2ad)](_0x31ab47);_0x10727a===void 0x0&&(_0x10727a=_0x2249d6(_0x31ab47),this[_0x1eb326(0x6b5)][_0x1eb326(0xad2)](_0x31ab47,_0x10727a));let _0x1f2f0f=_0x10727a[_0x1eb326(0x707)]['get'](_0x442738);return _0x1f2f0f===void 0x0&&(_0x1f2f0f=_0x4c6441(this['font'],_0x10727a['template'],_0x442738),_0x1f2f0f[_0x1eb326(0x7c4)][_0x1eb326(0x61c)](_0x36b489=>{const _0x35b4cf=_0x1eb326;if(_0x1f2f0f['image']=_0x36b489,typeof this[_0x35b4cf(0x7da)][_0x35b4cf(0x155)]==_0x35b4cf(0x9df))try{this[_0x35b4cf(0x7da)][_0x35b4cf(0x155)](_0x442738);}catch(_0x431380){console['error'](_0x35b4cf(0x482),_0x442738,_0x431380);}}),_0x10727a[_0x1eb326(0x707)][_0x1eb326(0xad2)](_0x442738,_0x1f2f0f)),_0x1f2f0f;}};function _0x2249d6(_0x333ce5){const _0x432793=_0x2273f6;return{'template':_0xe3ad2b(_0x333ce5)[_0x432793(0x61c)](_0x3dce95),'images':new Map()};}function _0x4c6441(_0x8c39b2,_0x68a1ce,_0x3b6412){const _0x2a3422=_0x2273f6;return{'promise':_0x68a1ce[_0x2a3422(0x61c)](_0x120604=>{const _0x267459=_0x2a3422;let _0x283ee1;typeof _0x120604==_0x267459(0x221)?_0x283ee1=_0x120604:(_0x120604[0x4]=_0x3b6412,_0x283ee1=_0x120604[_0x267459(0xb26)](''));let _0x5ebadb=_0x26c27b(_0x283ee1,_0x8c39b2['unitsPerEm']);return _0x5ebadb[_0x267459(0xada)][_0x267459(0xbd0)]()[_0x267459(0x61c)](()=>_0x5ebadb);}),'image':void 0x0};}var _0xe3ad2b=typeof DecompressionStream=='function'?_0x3093ab:_0x1729aa;function _0x1729aa(_0x1845fe){const _0x5ab2bc=_0x2273f6;try{return Promise[_0x5ab2bc(0x2df)](new TextDecoder()[_0x5ab2bc(0xbd0)](_0x30d491(_0x1845fe)?_0x3423ee(_0x1845fe):_0x1845fe));}catch(_0x191d05){return Promise[_0x5ab2bc(0xb46)](_0x191d05);}}function _0x3093ab(_0x404260){const _0x4770b0=_0x2273f6;if(_0x30d491(_0x404260))return new Response(new Response(_0x404260)[_0x4770b0(0x1cf)][_0x4770b0(0xb10)](new DecompressionStream('gzip')))[_0x4770b0(0x975)]();try{return Promise[_0x4770b0(0x2df)](new TextDecoder()['decode'](_0x404260));}catch(_0x455426){return Promise[_0x4770b0(0xb46)](_0x455426);}}function _0x3dce95(_0x46f501){const _0x526a0a=_0x2273f6;let _0x3c6c27=_0x46f501['indexOf'](_0x526a0a(0xb38)),_0x4c3f92=_0x46f501[_0x526a0a(0x709)]('>',_0x3c6c27+0x4)+0x1;if(/ id=['"]glyph\d+['"]/[_0x526a0a(0xc39)](_0x46f501[_0x526a0a(0xa94)](_0x3c6c27,_0x4c3f92)))return _0x46f501;let _0x3cb011=_0x46f501['lastIndexOf'](_0x526a0a(0x3a3));return[_0x46f501[_0x526a0a(0xa94)](0x0,_0x4c3f92),_0x526a0a(0x8c2),_0x46f501[_0x526a0a(0xa94)](_0x4c3f92,_0x3cb011),_0x526a0a(0x3ce),'',_0x526a0a(0x367),_0x46f501[_0x526a0a(0xa94)](_0x3cb011)];}function _0x26c27b(_0x4641da,_0x2cf893){const _0x29c8a9=_0x2273f6;let _0x86fadb=new DOMParser()[_0x29c8a9(0xbf6)](_0x4641da,_0x29c8a9(0x4d5))[_0x29c8a9(0x483)],_0x2b8a08=_0x86fadb[_0x29c8a9(0xb63)][_0x29c8a9(0x5b9)],_0x2e090e=_0x86fadb[_0x29c8a9(0x65c)][_0x29c8a9(0x5b9)],_0x1a9c67=_0x86fadb[_0x29c8a9(0x1ae)]['baseVal'],_0x4ad157=0x1,_0x333838=0x1;_0x2b8a08['width']>0x0&&_0x2b8a08[_0x29c8a9(0x1ae)]>0x0&&(_0x2e090e[_0x29c8a9(0x115)]===0x1?(_0x4ad157=_0x2e090e[_0x29c8a9(0xa69)]/_0x2b8a08['width'],_0x333838=_0x1a9c67[_0x29c8a9(0x115)]===0x1?_0x1a9c67[_0x29c8a9(0xa69)]/_0x2b8a08['height']:_0x4ad157):_0x1a9c67[_0x29c8a9(0x115)]===0x1?(_0x333838=_0x1a9c67[_0x29c8a9(0xa69)]/_0x2b8a08[_0x29c8a9(0x1ae)],_0x4ad157=_0x333838):_0x2cf893&&(_0x4ad157=_0x2cf893/_0x2b8a08['width'],_0x333838=_0x2cf893/_0x2b8a08[_0x29c8a9(0x1ae)]));let _0x2b4415=document['createElement'](_0x29c8a9(0x624));_0x2b4415[_0x29c8a9(0x2f9)][_0x29c8a9(0x73d)]=_0x29c8a9(0x926),_0x2b4415['style'][_0x29c8a9(0xc6b)]='hidden',_0x2b4415[_0x29c8a9(0xb7f)](_0x86fadb),document[_0x29c8a9(0x1cf)]['appendChild'](_0x2b4415);let _0x4d6906=_0x86fadb[_0x29c8a9(0xa0c)]();document['body'][_0x29c8a9(0x2b1)](_0x2b4415);let _0xf54372=(_0x4d6906['x']-_0x2b8a08['x'])*_0x4ad157,_0x43ffb5=(_0x2b8a08['y']-_0x4d6906['y'])*_0x333838,_0x484e4b=_0x4d6906[_0x29c8a9(0x65c)]*_0x4ad157,_0x2bb5fb=_0x4d6906[_0x29c8a9(0x1ae)]*_0x333838;_0x86fadb[_0x29c8a9(0x7aa)](_0x29c8a9(0xb63),[_0x4d6906['x'],_0x4d6906['y'],_0x4d6906[_0x29c8a9(0x65c)],_0x4d6906[_0x29c8a9(0x1ae)]][_0x29c8a9(0xb26)]('\x20')),_0x4ad157!==0x1&&_0x86fadb[_0x29c8a9(0x7aa)](_0x29c8a9(0x65c),_0x484e4b),_0x333838!==0x1&&_0x86fadb[_0x29c8a9(0x7aa)](_0x29c8a9(0x1ae),_0x2bb5fb);let _0x6dcfa=new Image(_0x484e4b,_0x2bb5fb);return _0x6dcfa[_0x29c8a9(0x184)]=_0x29c8a9(0x635)+encodeURIComponent(_0x86fadb['outerHTML']),{'leftSideBearing':_0xf54372,'baseline':_0x43ffb5,'image':_0x6dcfa};}var _0x13f2d8=new WeakMap();function _0x91f4a7(_0x1a9c2e,_0x1a9155,_0x46f2c2,_0x38d3bc,_0x55b6){const _0x5c4da5=_0x2273f6;let _0x5ebdfe;return(_0x1a9155&_0x38d3bc)>0x0?(_0x5ebdfe=_0x1a9c2e[_0x5c4da5(0xc25)](),(_0x1a9155&_0x55b6)===0x0&&(_0x5ebdfe=-_0x5ebdfe),_0x5ebdfe=_0x46f2c2+_0x5ebdfe):_0x5ebdfe=(_0x1a9155&_0x55b6)>0x0?_0x46f2c2:_0x46f2c2+_0x1a9c2e[_0x5c4da5(0x673)](),_0x5ebdfe;}function _0x258a8f(_0xe19c1d,_0x1a8921,_0x4aaa8e){const _0x3946e0=_0x2273f6;let _0x276ec2=new _0x4d43da['Parser'](_0x1a8921,_0x4aaa8e);_0xe19c1d[_0x3946e0(0xb19)]=_0x276ec2[_0x3946e0(0x673)](),_0xe19c1d[_0x3946e0(0x788)]=_0x276ec2['parseShort'](),_0xe19c1d[_0x3946e0(0x77f)]=_0x276ec2[_0x3946e0(0x673)](),_0xe19c1d[_0x3946e0(0x193)]=_0x276ec2[_0x3946e0(0x673)](),_0xe19c1d[_0x3946e0(0xcac)]=_0x276ec2['parseShort']();let _0x223d1c,_0x73205c;if(_0xe19c1d['_numberOfContours']>0x0){let _0xd2867d=_0xe19c1d[_0x3946e0(0x923)]=[];for(let _0x1acba7=0x0;_0x1acba7<_0xe19c1d[_0x3946e0(0xb19)];_0x1acba7+=0x1)_0xd2867d[_0x3946e0(0x381)](_0x276ec2[_0x3946e0(0x260)]());_0xe19c1d[_0x3946e0(0x764)]=_0x276ec2['parseUShort'](),_0xe19c1d[_0x3946e0(0xb22)]=[];for(let _0xcf9f6a=0x0;_0xcf9f6a<_0xe19c1d[_0x3946e0(0x764)];_0xcf9f6a+=0x1)_0xe19c1d['instructions'][_0x3946e0(0x381)](_0x276ec2[_0x3946e0(0xc25)]());let _0x1a8256=_0xd2867d[_0xd2867d['length']-0x1]+0x1;_0x223d1c=[];for(let _0x3ee4f0=0x0;_0x3ee4f0<_0x1a8256;_0x3ee4f0+=0x1)if(_0x73205c=_0x276ec2[_0x3946e0(0xc25)](),_0x223d1c[_0x3946e0(0x381)](_0x73205c),(_0x73205c&0x8)>0x0){let _0x5545a6=_0x276ec2[_0x3946e0(0xc25)]();for(let _0x1eae66=0x0;_0x1eae66<_0x5545a6;_0x1eae66+=0x1)_0x223d1c[_0x3946e0(0x381)](_0x73205c),_0x3ee4f0+=0x1;}if(_0x95cc0[_0x3946e0(0x8e5)](_0x223d1c[_0x3946e0(0xba6)]===_0x1a8256,_0x3946e0(0x88b)),_0xd2867d['length']>0x0){let _0x4e0753=[],_0xb70f9c;if(_0x1a8256>0x0){for(let _0x2f04f1=0x0;_0x2f04f1<_0x1a8256;_0x2f04f1+=0x1)_0x73205c=_0x223d1c[_0x2f04f1],_0xb70f9c={},_0xb70f9c[_0x3946e0(0x91a)]=!!(_0x73205c&0x1),_0xb70f9c[_0x3946e0(0x246)]=_0xd2867d[_0x3946e0(0x709)](_0x2f04f1)>=0x0,_0x4e0753[_0x3946e0(0x381)](_0xb70f9c);let _0x120618=0x0;for(let _0x2342a4=0x0;_0x2342a4<_0x1a8256;_0x2342a4+=0x1)_0x73205c=_0x223d1c[_0x2342a4],_0xb70f9c=_0x4e0753[_0x2342a4],_0xb70f9c['x']=_0x91f4a7(_0x276ec2,_0x73205c,_0x120618,0x2,0x10),_0x120618=_0xb70f9c['x'];let _0x205c26=0x0;for(let _0x258f79=0x0;_0x258f79<_0x1a8256;_0x258f79+=0x1)_0x73205c=_0x223d1c[_0x258f79],_0xb70f9c=_0x4e0753[_0x258f79],_0xb70f9c['y']=_0x91f4a7(_0x276ec2,_0x73205c,_0x205c26,0x4,0x20),_0x205c26=_0xb70f9c['y'];}_0xe19c1d['points']=_0x4e0753;}else _0xe19c1d[_0x3946e0(0x75c)]=[];}else{if(_0xe19c1d[_0x3946e0(0xb19)]===0x0)_0xe19c1d['points']=[];else{_0xe19c1d['isComposite']=!0x0,_0xe19c1d[_0x3946e0(0x75c)]=[],_0xe19c1d[_0x3946e0(0x667)]=[];let _0x4bbaf1=!0x0;for(;_0x4bbaf1;){_0x223d1c=_0x276ec2[_0x3946e0(0x260)]();let _0xc0aab1={'glyphIndex':_0x276ec2[_0x3946e0(0x260)](),'xScale':0x1,'scale01':0x0,'scale10':0x0,'yScale':0x1,'dx':0x0,'dy':0x0};(_0x223d1c&0x1)>0x0?(_0x223d1c&0x2)>0x0?(_0xc0aab1['dx']=_0x276ec2['parseShort'](),_0xc0aab1['dy']=_0x276ec2['parseShort']()):_0xc0aab1[_0x3946e0(0x498)]=[_0x276ec2[_0x3946e0(0x260)](),_0x276ec2[_0x3946e0(0x260)]()]:(_0x223d1c&0x2)>0x0?(_0xc0aab1['dx']=_0x276ec2[_0x3946e0(0x770)](),_0xc0aab1['dy']=_0x276ec2[_0x3946e0(0x770)]()):_0xc0aab1[_0x3946e0(0x498)]=[_0x276ec2[_0x3946e0(0xc25)](),_0x276ec2[_0x3946e0(0xc25)]()],(_0x223d1c&0x8)>0x0?_0xc0aab1[_0x3946e0(0x1a6)]=_0xc0aab1['yScale']=_0x276ec2[_0x3946e0(0x156)]():(_0x223d1c&0x40)>0x0?(_0xc0aab1['xScale']=_0x276ec2[_0x3946e0(0x156)](),_0xc0aab1[_0x3946e0(0x682)]=_0x276ec2[_0x3946e0(0x156)]()):(_0x223d1c&0x80)>0x0&&(_0xc0aab1[_0x3946e0(0x1a6)]=_0x276ec2[_0x3946e0(0x156)](),_0xc0aab1[_0x3946e0(0x257)]=_0x276ec2[_0x3946e0(0x156)](),_0xc0aab1['scale10']=_0x276ec2[_0x3946e0(0x156)](),_0xc0aab1[_0x3946e0(0x682)]=_0x276ec2[_0x3946e0(0x156)]()),_0xe19c1d[_0x3946e0(0x667)][_0x3946e0(0x381)](_0xc0aab1),_0x4bbaf1=!!(_0x223d1c&0x20);}if(_0x223d1c&0x100){_0xe19c1d['instructionLength']=_0x276ec2[_0x3946e0(0x260)](),_0xe19c1d['instructions']=[];for(let _0x5d1c8a=0x0;_0x5d1c8a<_0xe19c1d[_0x3946e0(0x764)];_0x5d1c8a+=0x1)_0xe19c1d['instructions']['push'](_0x276ec2['parseByte']());}}}}function _0x1a994c(_0x4671bf,_0x35b76e){const _0x269229=_0x2273f6;let _0x1e768d=[];for(let _0x22bcb7=0x0;_0x22bcb7<_0x4671bf[_0x269229(0xba6)];_0x22bcb7+=0x1){let _0x1527da=_0x4671bf[_0x22bcb7],_0x5f2c5c={'x':_0x35b76e['xScale']*_0x1527da['x']+_0x35b76e[_0x269229(0x2d5)]*_0x1527da['y']+_0x35b76e['dx'],'y':_0x35b76e['scale01']*_0x1527da['x']+_0x35b76e[_0x269229(0x682)]*_0x1527da['y']+_0x35b76e['dy'],'onCurve':_0x1527da[_0x269229(0x91a)],'lastPointOfContour':_0x1527da['lastPointOfContour']};_0x1e768d[_0x269229(0x381)](_0x5f2c5c);}return _0x1e768d;}function _0x322a3a(_0x2e7a94){const _0x3ef5c4=_0x2273f6;let _0x4de404=[],_0x3642d8=[];for(let _0x68b890=0x0;_0x68b890<_0x2e7a94['length'];_0x68b890+=0x1){let _0x1bb001=_0x2e7a94[_0x68b890];_0x3642d8[_0x3ef5c4(0x381)](_0x1bb001),_0x1bb001[_0x3ef5c4(0x246)]&&(_0x4de404['push'](_0x3642d8),_0x3642d8=[]);}return _0x95cc0[_0x3ef5c4(0x8e5)](_0x3642d8[_0x3ef5c4(0xba6)]===0x0,_0x3ef5c4(0x202)),_0x4de404;}function _0x3efde8(_0x1c8617){const _0x3afcf7=_0x2273f6;let _0x45c4a7=new _0x4cc193();if(!_0x1c8617)return _0x45c4a7;let _0x4273fa=_0x322a3a(_0x1c8617);for(let _0x493b4c=0x0;_0x493b4c<_0x4273fa[_0x3afcf7(0xba6)];++_0x493b4c){let _0x1390e3=_0x4273fa[_0x493b4c],_0x42a277=_0x1390e3[_0x1390e3[_0x3afcf7(0xba6)]-0x1],_0x5f19a6=_0x1390e3[0x0];if(_0x42a277['onCurve'])_0x45c4a7[_0x3afcf7(0x80a)](_0x42a277['x'],_0x42a277['y']);else{if(_0x5f19a6[_0x3afcf7(0x91a)])_0x45c4a7['moveTo'](_0x5f19a6['x'],_0x5f19a6['y']);else{let _0x17de5d={'x':(_0x42a277['x']+_0x5f19a6['x'])*0.5,'y':(_0x42a277['y']+_0x5f19a6['y'])*0.5};_0x45c4a7[_0x3afcf7(0x80a)](_0x17de5d['x'],_0x17de5d['y']);}}for(let _0xd91d9f=0x0;_0xd91d9f<_0x1390e3[_0x3afcf7(0xba6)];++_0xd91d9f)if(_0x42a277=_0x5f19a6,_0x5f19a6=_0x1390e3[(_0xd91d9f+0x1)%_0x1390e3['length']],_0x42a277[_0x3afcf7(0x91a)])_0x45c4a7[_0x3afcf7(0x5be)](_0x42a277['x'],_0x42a277['y']);else{let _0x1f8916=_0x5f19a6;_0x5f19a6['onCurve']||(_0x1f8916={'x':(_0x42a277['x']+_0x5f19a6['x'])*0.5,'y':(_0x42a277['y']+_0x5f19a6['y'])*0.5}),_0x45c4a7[_0x3afcf7(0x603)](_0x42a277['x'],_0x42a277['y'],_0x1f8916['x'],_0x1f8916['y']);}_0x45c4a7[_0x3afcf7(0x427)]();}return _0x45c4a7;}function _0x216da4(_0x2c4b9a,_0x1ba78b){const _0x400b4c=_0x2273f6;if(_0x1ba78b['isComposite']){_0x13f2d8['has'](_0x2c4b9a)||_0x13f2d8[_0x400b4c(0xad2)](_0x2c4b9a,new Set());let _0x2bcc92=_0x13f2d8[_0x400b4c(0x2ad)](_0x2c4b9a);_0x2bcc92[_0x400b4c(0x30c)](_0x1ba78b[_0x400b4c(0x2c6)]);try{for(let _0x26e95e=0x0;_0x26e95e<_0x1ba78b[_0x400b4c(0x667)][_0x400b4c(0xba6)];_0x26e95e+=0x1){let _0x381f28=_0x1ba78b[_0x400b4c(0x667)][_0x26e95e];if(_0x2bcc92['has'](_0x381f28[_0x400b4c(0x3dd)]))continue;let _0x1fe170=_0x2c4b9a[_0x400b4c(0x2ad)](_0x381f28[_0x400b4c(0x3dd)]);if(_0x1fe170[_0x400b4c(0xad9)](),_0x1fe170['points']){let _0x5a00a0;if(_0x381f28[_0x400b4c(0x498)]===void 0x0)_0x5a00a0=_0x1a994c(_0x1fe170['points'],_0x381f28);else{if(_0x381f28[_0x400b4c(0x498)][0x0]>_0x1ba78b[_0x400b4c(0x75c)][_0x400b4c(0xba6)]-0x1||_0x381f28[_0x400b4c(0x498)][0x1]>_0x1fe170[_0x400b4c(0x75c)][_0x400b4c(0xba6)]-0x1)throw Error(_0x400b4c(0x44a)+_0x1ba78b['name']);let _0x4d37a7=_0x1ba78b[_0x400b4c(0x75c)][_0x381f28[_0x400b4c(0x498)][0x0]],_0xc1179e=_0x1fe170[_0x400b4c(0x75c)][_0x381f28[_0x400b4c(0x498)][0x1]],_0x46f98d={'xScale':_0x381f28['xScale'],'scale01':_0x381f28[_0x400b4c(0x257)],'scale10':_0x381f28[_0x400b4c(0x2d5)],'yScale':_0x381f28[_0x400b4c(0x682)],'dx':0x0,'dy':0x0};_0xc1179e=_0x1a994c([_0xc1179e],_0x46f98d)[0x0],_0x46f98d['dx']=_0x4d37a7['x']-_0xc1179e['x'],_0x46f98d['dy']=_0x4d37a7['y']-_0xc1179e['y'],_0x5a00a0=_0x1a994c(_0x1fe170[_0x400b4c(0x75c)],_0x46f98d);}_0x1ba78b[_0x400b4c(0x75c)]=_0x1ba78b[_0x400b4c(0x75c)]['concat'](_0x5a00a0);}}}finally{_0x2bcc92[_0x400b4c(0x297)](_0x1ba78b['index']);}}return _0x3efde8(_0x1ba78b[_0x400b4c(0x75c)]);}function _0x3f1bfe(_0x2a8603,_0x1a33f5,_0x468643,_0x58e3dd){const _0x727cb2=_0x2273f6;let _0x520e22=new _0x31db48[(_0x727cb2(0x7b5))](_0x58e3dd);for(let _0x3237a2=0x0;_0x3237a2<_0x468643[_0x727cb2(0xba6)]-0x1;_0x3237a2+=0x1){let _0x58fa00=_0x468643[_0x3237a2];_0x58fa00===_0x468643[_0x3237a2+0x1]?_0x520e22[_0x727cb2(0x381)](_0x3237a2,_0x31db48[_0x727cb2(0x3c7)](_0x58e3dd,_0x3237a2)):_0x520e22[_0x727cb2(0x381)](_0x3237a2,_0x31db48[_0x727cb2(0x194)](_0x58e3dd,_0x3237a2,_0x258a8f,_0x2a8603,_0x1a33f5+_0x58fa00,_0x216da4));}return _0x520e22;}function _0x18046e(_0x2380ec,_0x561312,_0x424d13,_0xf20463){const _0x288c47=_0x2273f6;let _0x4455c6=new _0x31db48['GlyphSet'](_0xf20463);return _0xf20463[_0x288c47(0xb8c)]=function(_0x5a52a3){const _0x212e5a=_0x288c47;let _0x309a31=_0x424d13[_0x5a52a3];_0x309a31===_0x424d13[_0x5a52a3+0x1]?_0x4455c6[_0x212e5a(0x381)](_0x5a52a3,_0x31db48[_0x212e5a(0x3c7)](_0xf20463,_0x5a52a3)):_0x4455c6['push'](_0x5a52a3,_0x31db48['ttfGlyphLoader'](_0xf20463,_0x5a52a3,_0x258a8f,_0x2380ec,_0x561312+_0x309a31,_0x216da4));},_0x4455c6;}function _0x3a6b8f(_0x38d0ea,_0x14c51c,_0x5d0529,_0x4ec35a,_0x31f6c2){const _0x217df6=_0x2273f6;return _0x31f6c2[_0x217df6(0x7cb)]?_0x18046e(_0x38d0ea,_0x14c51c,_0x5d0529,_0x4ec35a):_0x3f1bfe(_0x38d0ea,_0x14c51c,_0x5d0529,_0x4ec35a);}var _0x4db4a9={'getPath':_0x3efde8,'parse':_0x3a6b8f},_0x2c1a53=class{constructor(_0x30c48d){const _0x3c8719=_0x2273f6;this[_0x3c8719(0x7da)]=_0x30c48d;}[_0x2273f6(0xa30)](_0x650743){const _0xdce003=_0x2273f6;for(let _0x4b61e6 in _0x650743)if(_0x4b61e6[_0xdce003(0xba6)]<0x4){let _0x34b10b=_0x4b61e6[_0xdce003(0x4f6)](0x4,'\x20');_0x650743[_0x34b10b]===void 0x0&&(_0x650743[_0x34b10b]=_0x650743[_0x4b61e6]),delete _0x650743[_0x4b61e6];}}['getNormalizedCoords'](_0x63990d){const _0x36a1fa=_0x2273f6;_0x63990d||(_0x63990d=this['font'][_0x36a1fa(0x800)]['get']());let _0xa673d7=[];this[_0x36a1fa(0xa30)](_0x63990d);for(let _0xdad39c=0x0;_0xdad39c<this['fvar']()[_0x36a1fa(0x362)]['length'];_0xdad39c++){let _0x2c67c7=this[_0x36a1fa(0x7b0)]()[_0x36a1fa(0x362)][_0xdad39c],_0x14f921=_0x63990d[_0x2c67c7[_0x36a1fa(0xbc6)]];_0x14f921===void 0x0&&(_0x14f921=_0x2c67c7[_0x36a1fa(0x501)]),_0x14f921<_0x2c67c7[_0x36a1fa(0x501)]?_0xa673d7['push']((_0x14f921-_0x2c67c7[_0x36a1fa(0x501)]+0x2**-0x34)/(_0x2c67c7[_0x36a1fa(0x501)]-_0x2c67c7[_0x36a1fa(0x5ae)]+0x2**-0x34)):_0xa673d7[_0x36a1fa(0x381)]((_0x14f921-_0x2c67c7[_0x36a1fa(0x501)]+0x2**-0x34)/(_0x2c67c7[_0x36a1fa(0xabe)]-_0x2c67c7['defaultValue']+0x2**-0x34));}if(this['avar']())for(let _0x43e240=0x0;_0x43e240<this[_0x36a1fa(0x372)]()['axisSegmentMaps']['length'];_0x43e240++){let _0x1e7425=this[_0x36a1fa(0x372)]()[_0x36a1fa(0x4fb)][_0x43e240];for(let _0x5e3251=0x0;_0x5e3251<_0x1e7425[_0x36a1fa(0xafa)]['length'];_0x5e3251++){let _0x362b00=_0x1e7425[_0x36a1fa(0xafa)][_0x5e3251];if(_0x5e3251>=0x1&&_0xa673d7[_0x43e240]<_0x362b00[_0x36a1fa(0x876)]){let _0x128233=_0x1e7425['axisValueMaps'][_0x5e3251-0x1];_0xa673d7[_0x43e240]=((_0xa673d7[_0x43e240]-_0x128233[_0x36a1fa(0x876)])*(_0x362b00['toCoordinate']-_0x128233[_0x36a1fa(0x22c)])+0x2**-0x34)/(_0x362b00[_0x36a1fa(0x876)]-_0x128233[_0x36a1fa(0x876)]+0x2**-0x34)+_0x128233[_0x36a1fa(0x22c)];break;}}}return _0xa673d7;}[_0x2273f6(0x6ba)](_0x4ba01a,_0x5b3ea6,_0x1d891e){const _0xaead59=_0x2273f6;if(_0x4ba01a['length']===0x0)return;let _0x257070=0x0;for(;_0x257070<_0x4ba01a[_0xaead59(0xba6)];){let _0x298943=_0x257070,_0x56a186=_0x257070,_0x551c4e=_0x4ba01a[_0x56a186];for(;!_0x551c4e['lastPointOfContour'];)_0x551c4e=_0x4ba01a[++_0x56a186];for(;_0x257070<=_0x56a186&&!_0x1d891e[_0x257070];)_0x257070++;if(_0x257070>_0x56a186)continue;let _0x598bcc=_0x257070,_0x207897=_0x257070;for(_0x257070++;_0x257070<=_0x56a186;)_0x1d891e[_0x257070]&&(this[_0xaead59(0x17e)](_0x207897+0x1,_0x257070-0x1,_0x207897,_0x257070,_0x5b3ea6,_0x4ba01a),_0x207897=_0x257070),_0x257070++;_0x207897===_0x598bcc?this['deltaShift'](_0x298943,_0x56a186,_0x207897,_0x5b3ea6,_0x4ba01a):(this[_0xaead59(0x17e)](_0x207897+0x1,_0x56a186,_0x207897,_0x598bcc,_0x5b3ea6,_0x4ba01a),_0x598bcc>0x0&&this[_0xaead59(0x17e)](_0x298943,_0x598bcc-0x1,_0x207897,_0x598bcc,_0x5b3ea6,_0x4ba01a)),_0x257070=_0x56a186+0x1;}}['deltaInterpolate'](_0x46f6e9,_0x57e9f6,_0xf0b607,_0x35dc85,_0x1d2d81,_0x132b16){const _0x1d9b99=_0x2273f6;if(_0x46f6e9>_0x57e9f6)return;let _0x1c82fd=['x','y'];for(let _0x3b2a3d=0x0;_0x3b2a3d<_0x1c82fd[_0x1d9b99(0xba6)];_0x3b2a3d++){let _0x15eef4=_0x1c82fd[_0x3b2a3d];if(_0x1d2d81[_0xf0b607][_0x15eef4]>_0x1d2d81[_0x35dc85][_0x15eef4]){var _0x4ab666=_0xf0b607;_0xf0b607=_0x35dc85,_0x35dc85=_0x4ab666;}let _0x4b3444=_0x1d2d81[_0xf0b607][_0x15eef4],_0x15c2cf=_0x1d2d81[_0x35dc85][_0x15eef4],_0x226524=_0x132b16[_0xf0b607][_0x15eef4],_0x1b30c8=_0x132b16[_0x35dc85][_0x15eef4];if(_0x4b3444!==_0x15c2cf||_0x226524===_0x1b30c8){let _0x2e43c=_0x4b3444===_0x15c2cf?0x0:(_0x1b30c8-_0x226524)/(_0x15c2cf-_0x4b3444);for(let _0x5d77f6=_0x46f6e9;_0x5d77f6<=_0x57e9f6;_0x5d77f6++){let _0x352760=_0x1d2d81[_0x5d77f6][_0x15eef4];_0x352760<=_0x4b3444?_0x352760+=_0x226524-_0x4b3444:_0x352760>=_0x15c2cf?_0x352760+=_0x1b30c8-_0x15c2cf:_0x352760=_0x226524+(_0x352760-_0x4b3444)*_0x2e43c,_0x132b16[_0x5d77f6][_0x15eef4]=_0x352760;}}}}[_0x2273f6(0x1b1)](_0x21ba98,_0x120070,_0x4a545e,_0x269580,_0x13fbbf){let _0x2fa3f7=_0x13fbbf[_0x4a545e]['x']-_0x269580[_0x4a545e]['x'],_0x51e589=_0x13fbbf[_0x4a545e]['y']-_0x269580[_0x4a545e]['y'];if(_0x2fa3f7!==0x0||_0x51e589!==0x0){for(let _0x1d5525=_0x21ba98;_0x1d5525<=_0x120070;_0x1d5525++)_0x1d5525!==_0x4a545e&&(_0x13fbbf[_0x1d5525]['x']+=_0x2fa3f7,_0x13fbbf[_0x1d5525]['y']+=_0x51e589);}}[_0x2273f6(0xa54)](_0x49e41e,_0x5e6a00,_0xa5f77c,_0x5ec108,_0x1a4524,_0x214659){const _0x55643b=_0x2273f6;let _0xfc9517=0x0;for(let _0x2a8ae1=0x0;_0x2a8ae1<_0x49e41e[_0x55643b(0x667)]['length'];_0x2a8ae1++){let _0x5d706b=_0x49e41e[_0x55643b(0x667)][_0x2a8ae1],_0x12a0b4=this[_0x55643b(0x7da)][_0x55643b(0x70a)][_0x55643b(0x2ad)](_0x5d706b[_0x55643b(0x3dd)]),_0x13dbf3=_0x426f9b(_0x5d706b),_0x4d5be2=_0x5ec108[_0x55643b(0x709)](_0x2a8ae1);_0x4d5be2>-0x1&&(_0x13dbf3['dx']+=Math[_0x55643b(0x157)](_0x1a4524[_0x55643b(0x4db)][_0x4d5be2]*_0x214659),_0x13dbf3['dy']+=Math[_0x55643b(0x157)](_0x1a4524[_0x55643b(0x832)][_0x4d5be2]*_0x214659));let _0x187f0e=_0x1a994c(this['getTransform'](_0x12a0b4,_0xa5f77c)[_0x55643b(0x75c)],_0x13dbf3);_0x5e6a00[_0x55643b(0x98b)](_0xfc9517,_0x187f0e[_0x55643b(0xba6)],..._0x187f0e),_0xfc9517+=_0x12a0b4[_0x55643b(0x75c)]['length'];}}[_0x2273f6(0xab5)](_0x27f551,_0x456aa4,_0x4968f5,_0x593767='gvar',_0x15b17d={}){const _0x485062=_0x2273f6;_0x4968f5||(_0x4968f5=this[_0x485062(0x7da)][_0x485062(0x800)][_0x485062(0x2ad)]());let _0x1bf892=this[_0x485062(0x8d0)](_0x4968f5),{headers:_0x5fe572,sharedPoints:_0x38c5bb}=_0x27f551,_0x1228f5=this[_0x485062(0x7b0)]()['axes']['length'],_0x373a3f;_0x593767===_0x485062(0x4d1)?_0x373a3f=_0x456aa4[_0x485062(0xb06)](_0x2cf25e):_0x593767===_0x485062(0x7e9)&&(_0x373a3f=[..._0x456aa4]);for(let _0x526d51=0x0;_0x526d51<_0x5fe572[_0x485062(0xba6)];_0x526d51++){let _0x439ea2=_0x5fe572[_0x526d51],_0xa29f17=0x1;for(let _0x5077de=0x0;_0x5077de<_0x1228f5;_0x5077de++){let _0x17a3b0=[0x0];switch(_0x593767){case _0x485062(0x4d1):_0x17a3b0=_0x439ea2[_0x485062(0x279)]?_0x439ea2[_0x485062(0x279)]:this['gvar']()[_0x485062(0xad4)][_0x439ea2['sharedTupleRecordsIndex']];break;case _0x485062(0x7e9):_0x17a3b0=_0x439ea2[_0x485062(0x279)];break;}if(_0x17a3b0[_0x5077de]!==0x0){if(_0x1bf892[_0x5077de]===0x0){_0xa29f17=0x0;break;}if(!_0x439ea2[_0x485062(0x26f)]){if(_0x1bf892[_0x5077de]<Math[_0x485062(0xb2a)](0x0,_0x17a3b0[_0x5077de])||_0x1bf892[_0x5077de]>Math['max'](0x0,_0x17a3b0[_0x5077de])){_0xa29f17=0x0;break;}_0xa29f17=(_0xa29f17*_0x1bf892[_0x5077de]+0x2**-0x34)/(_0x17a3b0[_0x5077de]+0x2**-0x34);}else{if(_0x1bf892[_0x5077de]<_0x439ea2[_0x485062(0x26f)][_0x5077de]||_0x1bf892[_0x5077de]>_0x439ea2[_0x485062(0x946)][_0x5077de]){_0xa29f17=0x0;break;}else _0xa29f17=_0x1bf892[_0x5077de]<_0x17a3b0[_0x5077de]?_0xa29f17*(_0x1bf892[_0x5077de]-_0x439ea2[_0x485062(0x26f)][_0x5077de]+0x2**-0x34)/(_0x17a3b0[_0x5077de]-_0x439ea2['intermediateStartTuple'][_0x5077de]+0x2**-0x34):_0xa29f17*(_0x439ea2[_0x485062(0x946)][_0x5077de]-_0x1bf892[_0x5077de]+0x2**-0x34)/(_0x439ea2['intermediateEndTuple'][_0x5077de]-_0x17a3b0[_0x5077de]+0x2**-0x34);}}}if(_0xa29f17===0x0)continue;let _0xb51c21=_0x439ea2[_0x485062(0xc2b)][_0x485062(0xba6)]?_0x439ea2[_0x485062(0xc2b)]:_0x38c5bb;if(_0x593767==='gvar'&&_0x15b17d[_0x485062(0x4d7)]&&_0x15b17d['glyph'][_0x485062(0xbaf)])this[_0x485062(0xa54)](_0x15b17d[_0x485062(0x4d7)],_0x373a3f,_0x4968f5,_0xb51c21,_0x439ea2,_0xa29f17);else{if(_0xb51c21[_0x485062(0xba6)]===0x0)for(let _0x315c95=0x0;_0x315c95<_0x373a3f[_0x485062(0xba6)];_0x315c95++){let _0x5b34e2=_0x373a3f[_0x315c95];_0x593767==='gvar'?_0x373a3f[_0x315c95]={'x':Math[_0x485062(0x157)](_0x5b34e2['x']+_0x439ea2['deltas'][_0x315c95]*_0xa29f17),'y':Math[_0x485062(0x157)](_0x5b34e2['y']+_0x439ea2['deltasY'][_0x315c95]*_0xa29f17),'onCurve':_0x5b34e2[_0x485062(0x91a)],'lastPointOfContour':_0x5b34e2[_0x485062(0x246)]}:_0x593767===_0x485062(0x7e9)&&(_0x373a3f[_0x315c95]=Math[_0x485062(0x157)](_0x5b34e2+_0x439ea2[_0x485062(0x4db)][_0x315c95]*_0xa29f17));}else{let _0x3eaddc;_0x593767===_0x485062(0x4d1)?_0x3eaddc=_0x373a3f[_0x485062(0xb06)](_0x2cf25e):_0x593767===_0x485062(0x7e9)&&(_0x3eaddc=_0x373a3f);let _0x420122=Array(_0x456aa4[_0x485062(0xba6)])[_0x485062(0x9ae)](!0x1);for(let _0x4ba02e=0x0;_0x4ba02e<_0xb51c21['length'];_0x4ba02e++){let _0x17c3b7=_0xb51c21[_0x4ba02e];if(_0x17c3b7<_0x456aa4[_0x485062(0xba6)]){let _0x98d70b=_0x3eaddc[_0x17c3b7];_0x593767===_0x485062(0x4d1)?(_0x420122[_0x17c3b7]=!0x0,_0x98d70b['x']+=_0x439ea2[_0x485062(0x4db)][_0x4ba02e]*_0xa29f17,_0x98d70b['y']+=_0x439ea2[_0x485062(0x832)][_0x4ba02e]*_0xa29f17):_0x593767==='cvar'&&(_0x373a3f[_0x17c3b7]=Math['round'](_0x98d70b+_0x439ea2[_0x485062(0x4db)][_0x4ba02e]*_0xa29f17));}}if(_0x593767===_0x485062(0x4d1)){this['interpolatePoints'](_0x3eaddc,_0x373a3f,_0x420122);for(let _0x383c90=0x0;_0x383c90<_0x456aa4[_0x485062(0xba6)];_0x383c90++){let _0x1d7712=_0x3eaddc[_0x383c90]['x']-_0x373a3f[_0x383c90]['x'],_0x38e43d=_0x3eaddc[_0x383c90]['y']-_0x373a3f[_0x383c90]['y'];_0x373a3f[_0x383c90]['x']=Math[_0x485062(0x157)](_0x373a3f[_0x383c90]['x']+_0x1d7712),_0x373a3f[_0x383c90]['y']=Math[_0x485062(0x157)](_0x373a3f[_0x383c90]['y']+_0x38e43d);}}}}}return _0x373a3f;}['getTransform'](_0x23a3e4,_0x213bcf){const _0x1536c4=_0x2273f6;Number[_0x1536c4(0x6c5)](_0x23a3e4)&&(_0x23a3e4=this[_0x1536c4(0x7da)][_0x1536c4(0x70a)][_0x1536c4(0x2ad)](_0x23a3e4));let _0x1c93e3=_0x23a3e4[_0x1536c4(0x1f9)],_0x47293b=!!(_0x23a3e4[_0x1536c4(0x75c)]&&_0x23a3e4['points'][_0x1536c4(0xba6)]),_0x5affbc=_0x23a3e4;if(_0x1c93e3||_0x47293b){if(_0x213bcf||(_0x213bcf=this[_0x1536c4(0x7da)][_0x1536c4(0x800)][_0x1536c4(0x2ad)]()),_0x47293b){let _0x31c1b3=this[_0x1536c4(0x4d1)]()&&this[_0x1536c4(0x4d1)]()[_0x1536c4(0xc87)][_0x23a3e4['index']];if(_0x31c1b3){let _0x4f3f1a=_0x23a3e4['points'],_0x213f9c=this['applyTupleVariationStore'](_0x31c1b3,_0x4f3f1a,_0x213bcf,_0x1536c4(0x4d1),{'glyph':_0x23a3e4});_0x5affbc=new _0x57f2d5(Object[_0x1536c4(0x4ac)]({},_0x23a3e4,{'points':_0x213f9c,'path':_0x3efde8(_0x213f9c)}));}}else{if(_0x1c93e3){let _0x2405a3=_0x23a3e4[_0x1536c4(0x1f9)](_0x213bcf);_0x5affbc=new _0x57f2d5(Object['assign']({},_0x23a3e4,{'path':_0x2405a3}));}}}return this[_0x1536c4(0x7da)][_0x1536c4(0x796)][_0x1536c4(0x256)]&&(_0x23a3e4['_advanceWidth']=_0x23a3e4[_0x1536c4(0x79b)]===void 0x0?_0x23a3e4[_0x1536c4(0x355)]:_0x23a3e4[_0x1536c4(0x79b)],_0x23a3e4[_0x1536c4(0x355)]=_0x5affbc[_0x1536c4(0x355)]=Math[_0x1536c4(0x157)](_0x23a3e4[_0x1536c4(0x79b)]+this['getVariableAdjustment'](_0x5affbc[_0x1536c4(0x2c6)],'hvar',_0x1536c4(0x355),_0x213bcf)),_0x23a3e4[_0x1536c4(0x19c)]=_0x23a3e4[_0x1536c4(0x19c)]===void 0x0?_0x23a3e4[_0x1536c4(0xc82)]:_0x23a3e4[_0x1536c4(0x19c)],_0x23a3e4[_0x1536c4(0xc82)]=_0x5affbc[_0x1536c4(0xc82)]=Math['round'](_0x23a3e4[_0x1536c4(0x19c)]+this[_0x1536c4(0x4e7)](_0x5affbc['index'],_0x1536c4(0x256),_0x1536c4(0x62d),_0x213bcf))),_0x5affbc;}['getCvarTransform'](_0x188d7b){const _0x188247=_0x2273f6;let _0x32e7e3=this[_0x188247(0x7da)]['tables'][_0x188247(0x85f)],_0x33fee5=this['cvar']();return!_0x32e7e3||!_0x32e7e3[_0x188247(0xba6)]||!_0x33fee5||!_0x33fee5['headers'][_0x188247(0xba6)]?_0x32e7e3:this[_0x188247(0xab5)](_0x33fee5,_0x32e7e3,_0x188d7b,_0x188247(0x7e9));}['getVariableAdjustment'](_0x5dfbef,_0x45e005,_0x346c33,_0x4c7f24){const _0x52492e=_0x2273f6;_0x4c7f24=_0x4c7f24||this[_0x52492e(0x7da)][_0x52492e(0x800)][_0x52492e(0x2ad)]();let _0x29ba3c,_0x46562e,_0x4a290c=this[_0x52492e(0x7da)]['tables'][_0x45e005];if(!_0x4a290c)throw Error(_0x52492e(0x391)+_0x4a290c+'\x22');if(!_0x4a290c['itemVariationStore'])throw Error('trying\x20to\x20get\x20variation\x20adjustment\x20from\x20table\x20\x22'+_0x4a290c+_0x52492e(0x704));let _0xa6c88c=_0x4a290c[_0x346c33]&&_0x4a290c[_0x346c33][_0x52492e(0xb06)][_0x52492e(0xba6)];if(_0xa6c88c){let _0x2dc3c9=_0x5dfbef;_0x2dc3c9>=_0xa6c88c&&(_0x2dc3c9=_0xa6c88c-0x1),{outerIndex:_0x29ba3c,innerIndex:_0x46562e}=_0x4a290c[_0x346c33][_0x52492e(0xb06)][_0x2dc3c9];}else _0x29ba3c=0x0,_0x46562e=_0x5dfbef;return this[_0x52492e(0x5cf)](_0x4a290c['itemVariationStore'],_0x29ba3c,_0x46562e,_0x4c7f24);}[_0x2273f6(0x5cf)](_0x44f714,_0x5533c2,_0x3efaa4,_0x53a61b){const _0x6f2c0e=_0x2273f6;if(_0x5533c2>=_0x44f714[_0x6f2c0e(0x789)][_0x6f2c0e(0xba6)])return 0x0;let _0x3a1f22=_0x44f714['itemVariationSubtables'][_0x5533c2];if(_0x3efaa4>=_0x3a1f22[_0x6f2c0e(0x9b6)][_0x6f2c0e(0xba6)])return 0x0;let _0x559a08=_0x3a1f22[_0x6f2c0e(0x9b6)][_0x3efaa4],_0x453698=this[_0x6f2c0e(0xaf5)](_0x44f714,_0x5533c2,_0x53a61b),_0x213733=0x0;for(let _0x18a3b6=0x0;_0x18a3b6<_0x3a1f22[_0x6f2c0e(0xc43)][_0x6f2c0e(0xba6)];_0x18a3b6++)_0x213733+=_0x559a08[_0x18a3b6]*_0x453698[_0x18a3b6];return _0x213733;}[_0x2273f6(0xaf5)](_0x207766,_0x5e86fc,_0x5e3e1e){const _0x50bd26=_0x2273f6;_0x5e3e1e||(_0x5e3e1e=this['font']['variation'][_0x50bd26(0x2ad)]());let _0x3ec760=_0x207766['itemVariationSubtables'][_0x5e86fc],_0x379a06=this[_0x50bd26(0x8d0)](_0x5e3e1e),_0x208373=[];for(let _0x34019c=0x0;_0x34019c<_0x3ec760[_0x50bd26(0xc43)][_0x50bd26(0xba6)];_0x34019c++){let _0x4379a5=0x1,_0x2b468c=_0x3ec760['regionIndexes'][_0x34019c],_0x5ec3c8=_0x207766[_0x50bd26(0xbb0)][_0x2b468c][_0x50bd26(0x7f8)];for(let _0x24d15a=0x0;_0x24d15a<_0x5ec3c8[_0x50bd26(0xba6)];_0x24d15a++){let _0x344466=_0x5ec3c8[_0x24d15a],_0x51c210;_0x51c210=_0x344466['startCoord']>_0x344466[_0x50bd26(0xb71)]||_0x344466[_0x50bd26(0xb71)]>_0x344466['endCoord']||_0x344466['startCoord']<0x0&&_0x344466[_0x50bd26(0x631)]>0x0&&_0x344466[_0x50bd26(0xb71)]!==0x0||_0x344466['peakCoord']===0x0?0x1:_0x379a06[_0x24d15a]<_0x344466[_0x50bd26(0xc65)]||_0x379a06[_0x24d15a]>_0x344466[_0x50bd26(0x631)]?0x0:_0x379a06[_0x24d15a]===_0x344466[_0x50bd26(0xb71)]?0x1:_0x379a06[_0x24d15a]<_0x344466[_0x50bd26(0xb71)]?(_0x379a06[_0x24d15a]-_0x344466[_0x50bd26(0xc65)]+0x2**-0x34)/(_0x344466[_0x50bd26(0xb71)]-_0x344466[_0x50bd26(0xc65)]+0x2**-0x34):(_0x344466[_0x50bd26(0x631)]-_0x379a06[_0x24d15a]+0x2**-0x34)/(_0x344466[_0x50bd26(0x631)]-_0x344466['peakCoord']+0x2**-0x34),_0x4379a5*=_0x51c210;}_0x208373[_0x34019c]=_0x4379a5;}return _0x208373;}[_0x2273f6(0x372)](){const _0x535ff0=_0x2273f6;return this[_0x535ff0(0x7da)]['tables'][_0x535ff0(0x372)];}[_0x2273f6(0x7e9)](){const _0x3211f3=_0x2273f6;return this[_0x3211f3(0x7da)][_0x3211f3(0x796)][_0x3211f3(0x7e9)];}['fvar'](){const _0x38748c=_0x2273f6;return this[_0x38748c(0x7da)][_0x38748c(0x796)][_0x38748c(0x7b0)];}[_0x2273f6(0x4d1)](){const _0xaec1c=_0x2273f6;return this[_0xaec1c(0x7da)][_0xaec1c(0x796)][_0xaec1c(0x4d1)];}[_0x2273f6(0x256)](){const _0x29d273=_0x2273f6;return this['font']['tables'][_0x29d273(0x256)];}},_0x435c37=class{constructor(_0x225c07){const _0x70c58e=_0x2273f6;this[_0x70c58e(0x7da)]=_0x225c07,this[_0x70c58e(0xa42)]=new _0x2c1a53(this[_0x70c58e(0x7da)]),this['activateDefaultVariation'](),this[_0x70c58e(0xc48)]=this[_0x70c58e(0xa42)][_0x70c58e(0xc48)][_0x70c58e(0xbc2)](this[_0x70c58e(0xa42)]);}[_0x2273f6(0x3cc)](){const _0x2b9c50=_0x2273f6;let _0x293bbf=this[_0x2b9c50(0x882)]();_0x293bbf>-0x1?this[_0x2b9c50(0xad2)](_0x293bbf):this['set'](this[_0x2b9c50(0x4c2)]());}[_0x2273f6(0x4c2)](){const _0x2e97c4=_0x2273f6;return this[_0x2e97c4(0x7b0)]()[_0x2e97c4(0x362)][_0x2e97c4(0xc71)]((_0x50c9af,_0x1b8126)=>(_0x50c9af[_0x1b8126[_0x2e97c4(0xbc6)]]=_0x1b8126[_0x2e97c4(0x501)],_0x50c9af),{});}[_0x2273f6(0x882)](){const _0x408be1=_0x2273f6;let _0x519f60=this[_0x408be1(0x4c2)](),_0x1bd490=this[_0x408be1(0x714)](_0x519f60);return _0x1bd490<0x0&&(_0x1bd490=this[_0x408be1(0x7b0)]()['instances'][_0x408be1(0x78b)](_0x547866=>_0x547866[_0x408be1(0x37a)]&&_0x547866['name']['en']==='Regular')),_0x1bd490;}[_0x2273f6(0x714)](_0x10179f){const _0x25513a=_0x2273f6;return this[_0x25513a(0x7b0)]()['instances'][_0x25513a(0x78b)](_0x4aae0f=>Object[_0x25513a(0x3ed)](_0x10179f)[_0x25513a(0xbaa)](_0x4b52df=>_0x4aae0f['coordinates'][_0x4b52df]===_0x10179f[_0x4b52df]));}[_0x2273f6(0x46d)](_0x414b96){const _0x17706e=_0x2273f6;return this[_0x17706e(0x7b0)]()[_0x17706e(0x66d)]&&this['fvar']()[_0x17706e(0x66d)][_0x414b96];}[_0x2273f6(0xad2)](_0x376ce3){const _0x3648cd=_0x2273f6;let _0x3ddc64;if(Number[_0x3648cd(0x6c5)](_0x376ce3)){let _0x4dd2fa=this[_0x3648cd(0x46d)](_0x376ce3);if(!_0x4dd2fa)throw Error('Invalid\x20instance\x20index\x20'+_0x376ce3);_0x3ddc64={..._0x4dd2fa[_0x3648cd(0x33d)]};}else _0x3ddc64=_0x376ce3,this['process'][_0x3648cd(0xa30)](_0x3ddc64);_0x3ddc64=Object['assign']({},this[_0x3648cd(0x7da)]['defaultRenderOptions'][_0x3648cd(0x800)],_0x3ddc64),this[_0x3648cd(0x7da)][_0x3648cd(0x599)]=Object[_0x3648cd(0x4ac)]({},this[_0x3648cd(0x7da)][_0x3648cd(0x599)],{'variation':_0x3ddc64});}[_0x2273f6(0x2ad)](){const _0x9baa00=_0x2273f6;return Object[_0x9baa00(0x4ac)]({},this[_0x9baa00(0x7da)][_0x9baa00(0x599)][_0x9baa00(0x800)]);}[_0x2273f6(0x372)](){const _0x5161d0=_0x2273f6;return this['font'][_0x5161d0(0x796)][_0x5161d0(0x372)];}[_0x2273f6(0x7e9)](){const _0x160e8a=_0x2273f6;return this[_0x160e8a(0x7da)][_0x160e8a(0x796)][_0x160e8a(0x7e9)];}[_0x2273f6(0x7b0)](){const _0x56b793=_0x2273f6;return this[_0x56b793(0x7da)][_0x56b793(0x796)][_0x56b793(0x7b0)];}[_0x2273f6(0x4d1)](){const _0xbd36b9=_0x2273f6;return this['font'][_0xbd36b9(0x796)][_0xbd36b9(0x4d1)];}['hvar'](){const _0x210f17=_0x2273f6;return this['font']['tables'][_0x210f17(0x256)];}},_0x1d748f=0xf4240,_0x38bbfe=0x40,_0x203359=0x2710,_0x3c4572,_0x3c4950,_0x2c7362,_0x11afe4;function _0x4a8035(_0xe7305a){const _0x41ae24=_0x2273f6;this[_0x41ae24(0x7da)]=_0xe7305a,this[_0x41ae24(0x1f0)]=function(_0x30c968){const _0x41becd=_0x41ae24;return _0x4db4a9[_0x41becd(0xad9)](_0x30c968)[_0x41becd(0x440)];},this[_0x41ae24(0x2d2)]=this['_prepState']=void 0x0,this[_0x41ae24(0x6e7)]=0x0;}function _0x296b7c(_0x591b06){return _0x591b06;}function _0x59604d(_0x1ce818){const _0x3c066d=_0x2273f6;return Math[_0x3c066d(0x586)](_0x1ce818)*Math['round'](Math[_0x3c066d(0x7f7)](_0x1ce818));}function _0x57b665(_0x3d9e2d){const _0x2b68c8=_0x2273f6;return Math[_0x2b68c8(0x586)](_0x3d9e2d)*Math[_0x2b68c8(0x157)](Math[_0x2b68c8(0x7f7)](_0x3d9e2d*0x2))/0x2;}function _0x441cfd(_0x5cd428){const _0xaed998=_0x2273f6;return Math[_0xaed998(0x586)](_0x5cd428)*(Math[_0xaed998(0x157)](Math[_0xaed998(0x7f7)](_0x5cd428)+0.5)-0.5);}function _0x3c167e(_0x2c402f){const _0x243459=_0x2273f6;return Math[_0x243459(0x586)](_0x2c402f)*Math[_0x243459(0x780)](Math[_0x243459(0x7f7)](_0x2c402f));}function _0x260af4(_0x2646ae){const _0x3f4523=_0x2273f6;return Math[_0x3f4523(0x586)](_0x2646ae)*Math['floor'](Math[_0x3f4523(0x7f7)](_0x2646ae));}var _0x4885e6=function(_0x4fd64a){const _0x49c858=_0x2273f6;let _0x33bb1e=this['srPeriod'],_0x5ee784=this[_0x49c858(0x206)],_0x3d1477=this[_0x49c858(0x3b4)],_0x14cb60=0x1;return _0x4fd64a<0x0&&(_0x4fd64a=-_0x4fd64a,_0x14cb60=-0x1),_0x4fd64a+=_0x3d1477-_0x5ee784,_0x4fd64a=Math[_0x49c858(0x74c)](_0x4fd64a/_0x33bb1e)*_0x33bb1e,_0x4fd64a+=_0x5ee784,_0x4fd64a<0x0?_0x5ee784*_0x14cb60:_0x4fd64a*_0x14cb60;},_0x55da56={'x':0x1,'y':0x0,'axis':'x','distance':function(_0x258ba2,_0x506cb3,_0x462f10,_0x3f5ae5){return(_0x462f10?_0x258ba2['xo']:_0x258ba2['x'])-(_0x3f5ae5?_0x506cb3['xo']:_0x506cb3['x']);},'interpolate':function(_0x41f1ea,_0x23789c,_0x492c81,_0x24ead8){const _0x4fac7c=_0x2273f6;let _0x24206c,_0x203870,_0x339e4c,_0x473f4f,_0x1bed90,_0x1e2839,_0x7ea901;if(!_0x24ead8||_0x24ead8===this){if(_0x24206c=_0x41f1ea['xo']-_0x23789c['xo'],_0x203870=_0x41f1ea['xo']-_0x492c81['xo'],_0x1bed90=_0x23789c['x']-_0x23789c['xo'],_0x1e2839=_0x492c81['x']-_0x492c81['xo'],_0x339e4c=Math['abs'](_0x24206c),_0x473f4f=Math[_0x4fac7c(0x7f7)](_0x203870),_0x7ea901=_0x339e4c+_0x473f4f,_0x7ea901===0x0){_0x41f1ea['x']=_0x41f1ea['xo']+(_0x1bed90+_0x1e2839)/0x2;return;}_0x41f1ea['x']=_0x41f1ea['xo']+(_0x1bed90*_0x473f4f+_0x1e2839*_0x339e4c)/_0x7ea901;return;}if(_0x24206c=_0x24ead8[_0x4fac7c(0x720)](_0x41f1ea,_0x23789c,!0x0,!0x0),_0x203870=_0x24ead8[_0x4fac7c(0x720)](_0x41f1ea,_0x492c81,!0x0,!0x0),_0x1bed90=_0x24ead8[_0x4fac7c(0x720)](_0x23789c,_0x23789c,!0x1,!0x0),_0x1e2839=_0x24ead8['distance'](_0x492c81,_0x492c81,!0x1,!0x0),_0x339e4c=Math[_0x4fac7c(0x7f7)](_0x24206c),_0x473f4f=Math[_0x4fac7c(0x7f7)](_0x203870),_0x7ea901=_0x339e4c+_0x473f4f,_0x7ea901===0x0){_0x55da56['setRelative'](_0x41f1ea,_0x41f1ea,(_0x1bed90+_0x1e2839)/0x2,_0x24ead8,!0x0);return;}_0x55da56[_0x4fac7c(0xaee)](_0x41f1ea,_0x41f1ea,(_0x1bed90*_0x473f4f+_0x1e2839*_0x339e4c)/_0x7ea901,_0x24ead8,!0x0);},'normalSlope':-0x1/0x0,'setRelative':function(_0x3399f2,_0x1a0eda,_0x337dfe,_0xf5a499,_0x5b7f1c){const _0x1c29c0=_0x2273f6;if(!_0xf5a499||_0xf5a499===this){_0x3399f2['x']=(_0x5b7f1c?_0x1a0eda['xo']:_0x1a0eda['x'])+_0x337dfe;return;}let _0x4fe72c=_0x5b7f1c?_0x1a0eda['xo']:_0x1a0eda['x'],_0x58dcac=_0x5b7f1c?_0x1a0eda['yo']:_0x1a0eda['y'],_0x48479f=_0x4fe72c+_0x337dfe*_0xf5a499['x'],_0x39364a=_0x58dcac+_0x337dfe*_0xf5a499['y'];_0x3399f2['x']=_0x48479f+(_0x3399f2['y']-_0x39364a)/_0xf5a499[_0x1c29c0(0xb2c)];},'slope':0x0,'touch':function(_0x4cd4e3){_0x4cd4e3['xTouched']=!0x0;},'touched':function(_0x442278){const _0x43ac84=_0x2273f6;return _0x442278[_0x43ac84(0xa14)];},'untouch':function(_0x5b1171){const _0x4416b1=_0x2273f6;_0x5b1171[_0x4416b1(0xa14)]=!0x1;}},_0xebd38c={'x':0x0,'y':0x1,'axis':'y','distance':function(_0x219e9b,_0x6fb799,_0x20d0f4,_0x350f7f){return(_0x20d0f4?_0x219e9b['yo']:_0x219e9b['y'])-(_0x350f7f?_0x6fb799['yo']:_0x6fb799['y']);},'interpolate':function(_0x384b7a,_0x3766a7,_0x4dfe48,_0x1bbf63){const _0x570b67=_0x2273f6;let _0x42e683,_0xe5a19c,_0x197d8b,_0x9fe0b6,_0x3e4fa5,_0x1cead3,_0x1b472d;if(!_0x1bbf63||_0x1bbf63===this){if(_0x42e683=_0x384b7a['yo']-_0x3766a7['yo'],_0xe5a19c=_0x384b7a['yo']-_0x4dfe48['yo'],_0x3e4fa5=_0x3766a7['y']-_0x3766a7['yo'],_0x1cead3=_0x4dfe48['y']-_0x4dfe48['yo'],_0x197d8b=Math[_0x570b67(0x7f7)](_0x42e683),_0x9fe0b6=Math[_0x570b67(0x7f7)](_0xe5a19c),_0x1b472d=_0x197d8b+_0x9fe0b6,_0x1b472d===0x0){_0x384b7a['y']=_0x384b7a['yo']+(_0x3e4fa5+_0x1cead3)/0x2;return;}_0x384b7a['y']=_0x384b7a['yo']+(_0x3e4fa5*_0x9fe0b6+_0x1cead3*_0x197d8b)/_0x1b472d;return;}if(_0x42e683=_0x1bbf63['distance'](_0x384b7a,_0x3766a7,!0x0,!0x0),_0xe5a19c=_0x1bbf63[_0x570b67(0x720)](_0x384b7a,_0x4dfe48,!0x0,!0x0),_0x3e4fa5=_0x1bbf63[_0x570b67(0x720)](_0x3766a7,_0x3766a7,!0x1,!0x0),_0x1cead3=_0x1bbf63['distance'](_0x4dfe48,_0x4dfe48,!0x1,!0x0),_0x197d8b=Math[_0x570b67(0x7f7)](_0x42e683),_0x9fe0b6=Math[_0x570b67(0x7f7)](_0xe5a19c),_0x1b472d=_0x197d8b+_0x9fe0b6,_0x1b472d===0x0){_0xebd38c[_0x570b67(0xaee)](_0x384b7a,_0x384b7a,(_0x3e4fa5+_0x1cead3)/0x2,_0x1bbf63,!0x0);return;}_0xebd38c[_0x570b67(0xaee)](_0x384b7a,_0x384b7a,(_0x3e4fa5*_0x9fe0b6+_0x1cead3*_0x197d8b)/_0x1b472d,_0x1bbf63,!0x0);},'normalSlope':0x0,'setRelative':function(_0x5e2b3f,_0x4f2647,_0x51cbd7,_0x243af2,_0x21e8d5){const _0x4a7177=_0x2273f6;if(!_0x243af2||_0x243af2===this){_0x5e2b3f['y']=(_0x21e8d5?_0x4f2647['yo']:_0x4f2647['y'])+_0x51cbd7;return;}let _0x5c4b3c=_0x21e8d5?_0x4f2647['xo']:_0x4f2647['x'],_0x1815ca=_0x21e8d5?_0x4f2647['yo']:_0x4f2647['y'],_0x2221c4=_0x5c4b3c+_0x51cbd7*_0x243af2['x'];_0x5e2b3f['y']=_0x1815ca+_0x51cbd7*_0x243af2['y']+_0x243af2[_0x4a7177(0xb2c)]*(_0x5e2b3f['x']-_0x2221c4);},'slope':0x1/0x0,'touch':function(_0x4e3103){const _0x29e5f0=_0x2273f6;_0x4e3103[_0x29e5f0(0xb93)]=!0x0;},'touched':function(_0x387a7f){const _0x1e55c5=_0x2273f6;return _0x387a7f[_0x1e55c5(0xb93)];},'untouch':function(_0x34bc34){_0x34bc34['yTouched']=!0x1;}};Object[_0x2273f6(0x34b)](_0x55da56),Object['freeze'](_0xebd38c);function _0x4de14a(_0x4add48,_0x4edce3){const _0x299b95=_0x2273f6;this['x']=_0x4add48,this['y']=_0x4edce3,this['axis']=void 0x0,this[_0x299b95(0xbdc)]=_0x4edce3/_0x4add48,this[_0x299b95(0xb2c)]=-_0x4add48/_0x4edce3,Object[_0x299b95(0x34b)](this);}_0x4de14a[_0x2273f6(0x505)]['distance']=function(_0x4210df,_0x444fd1,_0x45d7b5,_0x7b8d8d){const _0x117e80=_0x2273f6;return this['x']*_0x55da56[_0x117e80(0x720)](_0x4210df,_0x444fd1,_0x45d7b5,_0x7b8d8d)+this['y']*_0xebd38c['distance'](_0x4210df,_0x444fd1,_0x45d7b5,_0x7b8d8d);},_0x4de14a['prototype']['interpolate']=function(_0x34954a,_0x16c232,_0x117c1e,_0x1f2ea7){const _0x53ec64=_0x2273f6;let _0x5a1715,_0x212d67,_0x29570c,_0x42d542,_0x196099,_0x5e0d2e,_0x24fec6;if(_0x29570c=_0x1f2ea7[_0x53ec64(0x720)](_0x34954a,_0x16c232,!0x0,!0x0),_0x42d542=_0x1f2ea7[_0x53ec64(0x720)](_0x34954a,_0x117c1e,!0x0,!0x0),_0x5a1715=_0x1f2ea7['distance'](_0x16c232,_0x16c232,!0x1,!0x0),_0x212d67=_0x1f2ea7[_0x53ec64(0x720)](_0x117c1e,_0x117c1e,!0x1,!0x0),_0x196099=Math[_0x53ec64(0x7f7)](_0x29570c),_0x5e0d2e=Math[_0x53ec64(0x7f7)](_0x42d542),_0x24fec6=_0x196099+_0x5e0d2e,_0x24fec6===0x0){this[_0x53ec64(0xaee)](_0x34954a,_0x34954a,(_0x5a1715+_0x212d67)/0x2,_0x1f2ea7,!0x0);return;}this[_0x53ec64(0xaee)](_0x34954a,_0x34954a,(_0x5a1715*_0x5e0d2e+_0x212d67*_0x196099)/_0x24fec6,_0x1f2ea7,!0x0);},_0x4de14a[_0x2273f6(0x505)][_0x2273f6(0xaee)]=function(_0x5c5d26,_0x1c58a3,_0x72a11a,_0x419031,_0x28ecaf){const _0x195e7a=_0x2273f6;_0x419031=_0x419031||this;let _0x5bc546=_0x28ecaf?_0x1c58a3['xo']:_0x1c58a3['x'],_0x8d01c7=_0x28ecaf?_0x1c58a3['yo']:_0x1c58a3['y'],_0x3d59b5=_0x5bc546+_0x72a11a*_0x419031['x'],_0x17b24f=_0x8d01c7+_0x72a11a*_0x419031['y'],_0x2d5b9e=_0x419031[_0x195e7a(0xb2c)],_0x2b570b=this[_0x195e7a(0xbdc)],_0x5b8c49=_0x5c5d26['x'],_0x1d9a45=_0x5c5d26['y'];_0x5c5d26['x']=(_0x2b570b*_0x5b8c49-_0x2d5b9e*_0x3d59b5+_0x17b24f-_0x1d9a45)/(_0x2b570b-_0x2d5b9e),_0x5c5d26['y']=_0x2b570b*(_0x5c5d26['x']-_0x5b8c49)+_0x1d9a45;},_0x4de14a[_0x2273f6(0x505)][_0x2273f6(0x604)]=function(_0x1ec57b){const _0x513dc2=_0x2273f6;_0x1ec57b['xTouched']=!0x0,_0x1ec57b[_0x513dc2(0xb93)]=!0x0;};function _0x42f190(_0x362385,_0xd214c1){const _0x1fb07d=_0x2273f6;let _0x35c548=Math[_0x1fb07d(0x754)](_0x362385*_0x362385+_0xd214c1*_0xd214c1);return _0x362385/=_0x35c548,_0xd214c1/=_0x35c548,_0x362385===0x1&&_0xd214c1===0x0?_0x55da56:_0x362385===0x0&&_0xd214c1===0x1?_0xebd38c:new _0x4de14a(_0x362385,_0xd214c1);}function _0xc4dd91(_0x176475,_0x482ee,_0x26a92f,_0x18d85d){const _0x53e383=_0x2273f6;this['x']=this['xo']=Math[_0x53e383(0x157)](_0x176475*0x40)/0x40,this['y']=this['yo']=Math['round'](_0x482ee*0x40)/0x40,this[_0x53e383(0x246)]=_0x26a92f,this['onCurve']=_0x18d85d,this[_0x53e383(0xb5a)]=void 0x0,this[_0x53e383(0x861)]=void 0x0,this[_0x53e383(0xa14)]=!0x1,this[_0x53e383(0xb93)]=!0x1,Object[_0x53e383(0x8a0)](this);}_0xc4dd91[_0x2273f6(0x505)][_0x2273f6(0x3df)]=function(_0x4cf2d2){const _0x48ebd9=_0x2273f6;let _0x142587=this[_0x48ebd9(0x861)];for(;!_0x4cf2d2['touched'](_0x142587)&&_0x142587!==this;)_0x142587=_0x142587['nextPointOnContour'];return _0x142587;},_0xc4dd91['prototype'][_0x2273f6(0x9a6)]=function(_0x5b570c){const _0x282ee5=_0x2273f6;let _0x373681=this['prevPointOnContour'];for(;!_0x5b570c[_0x282ee5(0x96f)](_0x373681)&&_0x373681!==this;)_0x373681=_0x373681[_0x282ee5(0xb5a)];return _0x373681;};var _0x2da942=Object['freeze'](new _0xc4dd91(0x0,0x0)),_0x4da110={'cvCutIn':0x11/0x10,'deltaBase':0x9,'deltaShift':0.125,'loop':0x1,'minDis':0x1,'autoFlip':!0x0};function _0x3fed3d(_0x313ab7,_0x5259b9){const _0x27f44f=_0x2273f6;switch(this[_0x27f44f(0x6ce)]=_0x313ab7,this[_0x27f44f(0x523)]=[],this[_0x27f44f(0x230)]=_0x5259b9,_0x313ab7){case _0x27f44f(0x85e):this['zp0']=this[_0x27f44f(0x36a)]=this[_0x27f44f(0x109)]=0x1,this[_0x27f44f(0x980)]=this[_0x27f44f(0x332)]=this[_0x27f44f(0x3a2)]=0x0;case _0x27f44f(0x7cc):this['fv']=this['pv']=this['dpv']=_0x55da56,this[_0x27f44f(0x157)]=_0x59604d;}}_0x4a8035['prototype'][_0x2273f6(0x8b7)]=function(_0x29c275,_0x549e18){const _0x39370e=_0x2273f6;if(typeof _0x549e18!=_0x39370e(0x97e))throw Error(_0x39370e(0x10a));if(this[_0x39370e(0x6e7)]>0x2)return;let _0x4f4398=this[_0x39370e(0x7da)],_0x1e9c78=this[_0x39370e(0xc61)];if(!_0x1e9c78||_0x1e9c78[_0x39370e(0x721)]!==_0x549e18){let _0x44078f=this[_0x39370e(0x2d2)];if(!_0x44078f){_0x3fed3d[_0x39370e(0x505)]=_0x4da110,_0x44078f=this[_0x39370e(0x2d2)]=new _0x3fed3d(_0x39370e(0x290),_0x4f4398[_0x39370e(0x796)][_0x39370e(0x290)]),_0x44078f[_0x39370e(0xca5)]=[],_0x44078f['font']=_0x4f4398,_0x44078f[_0x39370e(0xa88)]=0x0,_0x44078f[_0x39370e(0x481)]=0x0;try{_0x3c4950(_0x44078f);}catch(_0x523f0f){console[_0x39370e(0x9ff)](_0x39370e(0x615)+_0x523f0f),this[_0x39370e(0x6e7)]=0x3;return;}}_0x3fed3d[_0x39370e(0x505)]=_0x44078f,_0x1e9c78=this[_0x39370e(0xc61)]=new _0x3fed3d(_0x39370e(0x7cc),_0x4f4398[_0x39370e(0x796)][_0x39370e(0x7cc)]),_0x1e9c78[_0x39370e(0x721)]=_0x549e18,_0x1e9c78[_0x39370e(0xa88)]=0x0,_0x1e9c78['callDepth']=0x0;let _0x30973e=_0x4f4398[_0x39370e(0x800)]&&_0x4f4398[_0x39370e(0x800)][_0x39370e(0xa42)][_0x39370e(0xc10)]()||_0x4f4398[_0x39370e(0x796)]['cvt'];if(_0x30973e){let _0x150f8c=_0x1e9c78[_0x39370e(0x85f)]=Array(_0x30973e[_0x39370e(0xba6)]),_0x1bbd56=_0x549e18/_0x4f4398[_0x39370e(0xac5)];for(let _0x1eff48=0x0;_0x1eff48<_0x30973e[_0x39370e(0xba6)];_0x1eff48++)_0x150f8c[_0x1eff48]=_0x30973e[_0x1eff48]*_0x1bbd56;}else _0x1e9c78[_0x39370e(0x85f)]=[];try{_0x3c4950(_0x1e9c78);}catch(_0x398a73){this[_0x39370e(0x6e7)]<0x2&&console[_0x39370e(0x9ff)](_0x39370e(0xa5e)+_0x398a73),this[_0x39370e(0x6e7)]=0x2;}}if(!(this[_0x39370e(0x6e7)]>0x1))try{return _0x2c7362(_0x29c275,_0x1e9c78);}catch(_0x2da038){this[_0x39370e(0x6e7)]<0x1&&(console['log'](_0x39370e(0x9fa)+_0x2da038),console[_0x39370e(0x9ff)](_0x39370e(0x606))),this[_0x39370e(0x6e7)]=0x1;return;}},_0x2c7362=function(_0x325751,_0xf011a){const _0x818603=_0x2273f6;let _0x9ef90b=_0xf011a[_0x818603(0x721)]/_0xf011a[_0x818603(0x7da)][_0x818603(0xac5)],_0xb21ebb=_0x9ef90b,_0x38b9a9=_0x325751[_0x818603(0x667)],_0x5a7f0a,_0x111249,_0x155da2;if(_0x3fed3d[_0x818603(0x505)]=_0xf011a,!_0x38b9a9)_0x155da2=new _0x3fed3d('glyf',_0x325751[_0x818603(0xb22)]),_0x155da2[_0x818603(0xa88)]=0x0,_0x155da2[_0x818603(0x481)]=0x0,_0x11afe4(_0x325751,_0x155da2,_0x9ef90b,_0xb21ebb),_0x111249=_0x155da2[_0x818603(0xa66)];else{let _0x417a67=_0xf011a['font'];_0x111249=[],_0x5a7f0a=[];for(let _0x32109e=0x0;_0x32109e<_0x38b9a9[_0x818603(0xba6)];_0x32109e++){let _0x459406=_0x38b9a9[_0x32109e],_0x10d20a=_0x417a67[_0x818603(0x70a)][_0x818603(0x2ad)](_0x459406['glyphIndex']);_0x155da2=new _0x3fed3d(_0x818603(0x85e),_0x10d20a[_0x818603(0xb22)]),_0x155da2[_0x818603(0xa88)]=0x0,_0x155da2[_0x818603(0x481)]=0x0,_0x11afe4(_0x10d20a,_0x155da2,_0x9ef90b,_0xb21ebb);let _0x3f5569=Math[_0x818603(0x157)](_0x459406['dx']*_0x9ef90b),_0x31968f=Math[_0x818603(0x157)](_0x459406['dy']*_0xb21ebb),_0x1ec761=_0x155da2[_0x818603(0xa66)],_0x3cf42a=_0x155da2[_0x818603(0x210)];for(let _0x1609bf=0x0;_0x1609bf<_0x1ec761[_0x818603(0xba6)];_0x1609bf++){let _0x3b93e7=_0x1ec761[_0x1609bf];_0x3b93e7[_0x818603(0xa14)]=_0x3b93e7['yTouched']=!0x1,_0x3b93e7['xo']=_0x3b93e7['x']+=_0x3f5569,_0x3b93e7['yo']=_0x3b93e7['y']+=_0x31968f;}let _0x1cb1ea=_0x111249[_0x818603(0xba6)];_0x111249[_0x818603(0x381)][_0x818603(0x640)](_0x111249,_0x1ec761);for(let _0x3706ab=0x0;_0x3706ab<_0x3cf42a[_0x818603(0xba6)];_0x3706ab++)_0x5a7f0a[_0x818603(0x381)](_0x3cf42a[_0x3706ab]+_0x1cb1ea);}_0x325751[_0x818603(0xb22)]&&!_0x155da2[_0x818603(0xbf0)]&&(_0x155da2=new _0x3fed3d(_0x818603(0x85e),_0x325751[_0x818603(0xb22)]),_0x155da2['gZone']=_0x155da2['z0']=_0x155da2['z1']=_0x155da2['z2']=_0x111249,_0x155da2['contours']=_0x5a7f0a,_0x111249[_0x818603(0x381)](new _0xc4dd91(0x0,0x0),new _0xc4dd91(Math[_0x818603(0x157)](_0x325751['advanceWidth']*_0x9ef90b),0x0)),_0x3c4950(_0x155da2),_0x111249[_0x818603(0xba6)]-=0x2);}return _0x111249;},_0x11afe4=function(_0x4c6459,_0x1573a8,_0x18c7ed,_0x415eb8){const _0x8ebe8=_0x2273f6;let _0x229a53=_0x4c6459[_0x8ebe8(0x75c)]||[],_0x546922=_0x229a53[_0x8ebe8(0xba6)],_0x34fcda=_0x1573a8[_0x8ebe8(0xa66)]=_0x1573a8['z0']=_0x1573a8['z1']=_0x1573a8['z2']=[],_0x52ddd9=_0x1573a8['contours']=[],_0x12e58c;for(let _0x424144=0x0;_0x424144<_0x546922;_0x424144++)_0x12e58c=_0x229a53[_0x424144],_0x34fcda[_0x424144]=new _0xc4dd91(_0x12e58c['x']*_0x18c7ed,_0x12e58c['y']*_0x415eb8,_0x12e58c[_0x8ebe8(0x246)],_0x12e58c['onCurve']);let _0x41423,_0x325c78;for(let _0x1b8e33=0x0;_0x1b8e33<_0x546922;_0x1b8e33++)_0x12e58c=_0x34fcda[_0x1b8e33],_0x41423||(_0x41423=_0x12e58c,_0x52ddd9['push'](_0x1b8e33)),_0x12e58c[_0x8ebe8(0x246)]?(_0x12e58c['nextPointOnContour']=_0x41423,_0x41423[_0x8ebe8(0xb5a)]=_0x12e58c,_0x41423=void 0x0):(_0x325c78=_0x34fcda[_0x1b8e33+0x1],_0x12e58c[_0x8ebe8(0x861)]=_0x325c78,_0x325c78['prevPointOnContour']=_0x12e58c);_0x1573a8[_0x8ebe8(0xbf0)]||(_0x34fcda[_0x8ebe8(0x381)](new _0xc4dd91(0x0,0x0),new _0xc4dd91(Math['round'](_0x4c6459[_0x8ebe8(0x355)]*_0x18c7ed),0x0)),_0x3c4950(_0x1573a8),_0x34fcda[_0x8ebe8(0xba6)]-=0x2);},_0x3c4950=function(_0x7f1ab8){const _0x292257=_0x2273f6;let _0x3e7ae0=_0x7f1ab8['prog'];if(!_0x3e7ae0)return;let _0x54b2b4=_0x3e7ae0[_0x292257(0xba6)],_0xb9c458;for(_0x7f1ab8['ip']=0x0;_0x7f1ab8['ip']<_0x54b2b4;_0x7f1ab8['ip']++){if(++_0x7f1ab8[_0x292257(0xa88)]>_0x1d748f)throw Error(_0x292257(0x898)+_0x1d748f);if(_0xb9c458=_0x3c4572[_0x3e7ae0[_0x7f1ab8['ip']]],!_0xb9c458)throw Error(_0x292257(0x724)+Number(_0x3e7ae0[_0x7f1ab8['ip']])[_0x292257(0x23e)](0x10));_0xb9c458(_0x7f1ab8);}};function _0x4a104b(_0x5ef84e){const _0x620ad8=_0x2273f6;let _0x33492e=_0x5ef84e[_0x620ad8(0x8d1)]=Array(_0x5ef84e[_0x620ad8(0xa66)][_0x620ad8(0xba6)]);for(let _0x157aa4=0x0;_0x157aa4<_0x33492e[_0x620ad8(0xba6)];_0x157aa4++)_0x33492e[_0x157aa4]=new _0xc4dd91(0x0,0x0);}function _0x452a6b(_0x38f424,_0x5c8cdb){const _0x197772=_0x2273f6;let _0x3e98a3=_0x38f424[_0x197772(0x230)],_0x442a74=_0x38f424['ip'],_0x1b0946=0x1,_0x113c97;do if(_0x113c97=_0x3e98a3[++_0x442a74],_0x113c97===0x58)_0x1b0946++;else{if(_0x113c97===0x59)_0x1b0946--;else{if(_0x113c97===0x40)_0x442a74+=_0x3e98a3[_0x442a74+0x1]+0x1;else{if(_0x113c97===0x41)_0x442a74+=0x2*_0x3e98a3[_0x442a74+0x1]+0x1;else{if(_0x113c97>=0xb0&&_0x113c97<=0xb7)_0x442a74+=_0x113c97-0xb0+0x1;else{if(_0x113c97>=0xb8&&_0x113c97<=0xbf)_0x442a74+=(_0x113c97-0xb8+0x1)*0x2;else{if(_0x5c8cdb&&_0x1b0946===0x1&&_0x113c97===0x1b)break;}}}}}}while(_0x1b0946>0x0);_0x38f424['ip']=_0x442a74;}function _0xd9a64a(_0x559c66,_0x3d73d1){const _0x326b25=_0x2273f6;_0x3d73d1['fv']=_0x3d73d1['pv']=_0x3d73d1[_0x326b25(0xb52)]=_0x559c66;}function _0x6275d5(_0x5c703a,_0x272f9b){const _0x3dbf1f=_0x2273f6;_0x272f9b['pv']=_0x272f9b[_0x3dbf1f(0xb52)]=_0x5c703a;}function _0x36d2df(_0x2894fd,_0x4aa603){_0x4aa603['fv']=_0x2894fd;}function _0x48076e(_0x42bb79,_0x1f3b48){const _0x3d5eb4=_0x2273f6;let _0x553881=_0x1f3b48['stack'],_0x67aa8a=_0x553881[_0x3d5eb4(0x8f2)](),_0x5c5e66=_0x553881[_0x3d5eb4(0x8f2)](),_0x265669=_0x1f3b48['z2'][_0x67aa8a],_0x27f6d2=_0x1f3b48['z1'][_0x5c5e66],_0xc0a956,_0x4c69f9;_0x42bb79?(_0xc0a956=_0x265669['y']-_0x27f6d2['y'],_0x4c69f9=_0x27f6d2['x']-_0x265669['x']):(_0xc0a956=_0x27f6d2['x']-_0x265669['x'],_0x4c69f9=_0x27f6d2['y']-_0x265669['y']),_0x1f3b48['pv']=_0x1f3b48[_0x3d5eb4(0xb52)]=_0x42f190(_0xc0a956,_0x4c69f9);}function _0x1dc7ae(_0x5c2a2e,_0x35e9fd){const _0x22ad82=_0x2273f6;let _0x390812=_0x35e9fd[_0x22ad82(0x523)],_0x46f2db=_0x390812[_0x22ad82(0x8f2)](),_0x15891e=_0x390812[_0x22ad82(0x8f2)](),_0x412345=_0x35e9fd['z2'][_0x46f2db],_0x39e6bb=_0x35e9fd['z1'][_0x15891e],_0xdd447,_0x5e6000;_0x5c2a2e?(_0xdd447=_0x412345['y']-_0x39e6bb['y'],_0x5e6000=_0x39e6bb['x']-_0x412345['x']):(_0xdd447=_0x39e6bb['x']-_0x412345['x'],_0x5e6000=_0x39e6bb['y']-_0x412345['y']),_0x35e9fd['fv']=_0x42f190(_0xdd447,_0x5e6000);}function _0x4f60d6(_0x101cee){const _0x523868=_0x2273f6;let _0x57551a=_0x101cee[_0x523868(0x523)],_0x3ae3ab=_0x57551a[_0x523868(0x8f2)]();_0x101cee['pv']=_0x101cee[_0x523868(0xb52)]=_0x42f190(_0x57551a[_0x523868(0x8f2)](),_0x3ae3ab);}function _0x415297(_0x2cadd8){const _0x14813c=_0x2273f6;let _0x4eeb1e=_0x2cadd8[_0x14813c(0x523)],_0x4ad2f4=_0x4eeb1e[_0x14813c(0x8f2)]();_0x2cadd8['fv']=_0x42f190(_0x4eeb1e[_0x14813c(0x8f2)](),_0x4ad2f4);}function _0x19e7dd(_0x175bcb){const _0x3ec2be=_0x2273f6;let _0x1bb36e=_0x175bcb[_0x3ec2be(0x523)],_0x29dd7a=_0x175bcb['pv'];_0x1bb36e[_0x3ec2be(0x381)](_0x29dd7a['x']*0x4000),_0x1bb36e['push'](_0x29dd7a['y']*0x4000);}function _0x50a05f(_0x45fb52){const _0x4d9f39=_0x2273f6;let _0x47a3d5=_0x45fb52[_0x4d9f39(0x523)],_0x195c4d=_0x45fb52['fv'];_0x47a3d5[_0x4d9f39(0x381)](_0x195c4d['x']*0x4000),_0x47a3d5['push'](_0x195c4d['y']*0x4000);}function _0x4c2c32(_0x150d88){_0x150d88['fv']=_0x150d88['pv'];}function _0x101481(_0x594e41){const _0x10a433=_0x2273f6;let _0x1a2dd9=_0x594e41[_0x10a433(0x523)],_0x53b737=_0x1a2dd9[_0x10a433(0x8f2)](),_0x3d0d49=_0x1a2dd9[_0x10a433(0x8f2)](),_0x5b66c5=_0x1a2dd9[_0x10a433(0x8f2)](),_0x3c3c1b=_0x1a2dd9[_0x10a433(0x8f2)](),_0x18f1fc=_0x1a2dd9[_0x10a433(0x8f2)](),_0x6c1da2=_0x594e41['z0'],_0x5886cc=_0x594e41['z1'],_0x345e8c=_0x6c1da2[_0x53b737],_0x571cd1=_0x6c1da2[_0x3d0d49],_0x288617=_0x5886cc[_0x5b66c5],_0x3a3060=_0x5886cc[_0x3c3c1b],_0x617c03=_0x594e41['z2'][_0x18f1fc],_0x3e94f3=_0x345e8c['x'],_0x43521c=_0x345e8c['y'],_0x8b743b=_0x571cd1['x'],_0x113608=_0x571cd1['y'],_0x204ca8=_0x288617['x'],_0x3b5990=_0x288617['y'],_0x50bef1=_0x3a3060['x'],_0x3a60d1=_0x3a3060['y'],_0x27b406=(_0x3e94f3-_0x8b743b)*(_0x3b5990-_0x3a60d1)-(_0x43521c-_0x113608)*(_0x204ca8-_0x50bef1),_0x5d565e=_0x3e94f3*_0x113608-_0x43521c*_0x8b743b,_0xd2d9a3=_0x204ca8*_0x3a60d1-_0x3b5990*_0x50bef1;_0x617c03['x']=(_0x5d565e*(_0x204ca8-_0x50bef1)-_0xd2d9a3*(_0x3e94f3-_0x8b743b))/_0x27b406,_0x617c03['y']=(_0x5d565e*(_0x3b5990-_0x3a60d1)-_0xd2d9a3*(_0x43521c-_0x113608))/_0x27b406;}function _0x4bf9d5(_0x2be7d1){const _0x40bdf1=_0x2273f6;_0x2be7d1[_0x40bdf1(0x980)]=_0x2be7d1[_0x40bdf1(0x523)][_0x40bdf1(0x8f2)]();}function _0x50c8cb(_0x10104a){const _0x65d4ce=_0x2273f6;_0x10104a[_0x65d4ce(0x332)]=_0x10104a[_0x65d4ce(0x523)][_0x65d4ce(0x8f2)]();}function _0x2bbd61(_0x1d5442){const _0xf876e9=_0x2273f6;_0x1d5442['rp2']=_0x1d5442[_0xf876e9(0x523)]['pop']();}function _0xb7ce86(_0x4f5f20){const _0x47de29=_0x2273f6;let _0x49f204=_0x4f5f20['stack'][_0x47de29(0x8f2)]();switch(_0x4f5f20[_0x47de29(0x29a)]=_0x49f204,_0x49f204){case 0x0:_0x4f5f20[_0x47de29(0x8d1)]||_0x4a104b(_0x4f5f20),_0x4f5f20['z0']=_0x4f5f20[_0x47de29(0x8d1)];break;case 0x1:_0x4f5f20['z0']=_0x4f5f20[_0x47de29(0xa66)];break;default:throw Error(_0x47de29(0x45b));}}function _0x2fe966(_0x1f9027){const _0x44f8f6=_0x2273f6;let _0x4fb163=_0x1f9027[_0x44f8f6(0x523)][_0x44f8f6(0x8f2)]();switch(_0x1f9027[_0x44f8f6(0x36a)]=_0x4fb163,_0x4fb163){case 0x0:_0x1f9027[_0x44f8f6(0x8d1)]||_0x4a104b(_0x1f9027),_0x1f9027['z1']=_0x1f9027[_0x44f8f6(0x8d1)];break;case 0x1:_0x1f9027['z1']=_0x1f9027[_0x44f8f6(0xa66)];break;default:throw Error('Invalid\x20zone\x20pointer');}}function _0x238e71(_0x2a129d){const _0x3c8aff=_0x2273f6;let _0x37fe67=_0x2a129d[_0x3c8aff(0x523)][_0x3c8aff(0x8f2)]();switch(_0x2a129d[_0x3c8aff(0x109)]=_0x37fe67,_0x37fe67){case 0x0:_0x2a129d[_0x3c8aff(0x8d1)]||_0x4a104b(_0x2a129d),_0x2a129d['z2']=_0x2a129d[_0x3c8aff(0x8d1)];break;case 0x1:_0x2a129d['z2']=_0x2a129d[_0x3c8aff(0xa66)];break;default:throw Error('Invalid\x20zone\x20pointer');}}function _0x545f62(_0x346d66){const _0x20ef57=_0x2273f6;let _0xe9440=_0x346d66[_0x20ef57(0x523)]['pop']();switch(_0x346d66[_0x20ef57(0x29a)]=_0x346d66['zp1']=_0x346d66[_0x20ef57(0x109)]=_0xe9440,_0xe9440){case 0x0:_0x346d66[_0x20ef57(0x8d1)]||_0x4a104b(_0x346d66),_0x346d66['z0']=_0x346d66['z1']=_0x346d66['z2']=_0x346d66['tZone'];break;case 0x1:_0x346d66['z0']=_0x346d66['z1']=_0x346d66['z2']=_0x346d66[_0x20ef57(0xa66)];break;default:throw Error(_0x20ef57(0x45b));}}function _0x289530(_0x2ae370){const _0x124687=_0x2273f6;_0x2ae370[_0x124687(0x426)]=_0x2ae370['stack'][_0x124687(0x8f2)](),_0x2ae370['loop']>_0x203359&&(_0x2ae370[_0x124687(0x426)]=_0x203359);}function _0x955d29(_0x39b1e4){const _0x3c452c=_0x2273f6;_0x39b1e4[_0x3c452c(0x157)]=_0x59604d;}function _0x4ec0f9(_0x11ce24){const _0x4c80e0=_0x2273f6;_0x11ce24[_0x4c80e0(0x157)]=_0x441cfd;}function _0x2d9747(_0x3d9dea){const _0x1e177c=_0x2273f6;_0x3d9dea[_0x1e177c(0x694)]=_0x3d9dea[_0x1e177c(0x523)][_0x1e177c(0x8f2)]()/0x40;}function _0x1fbc4f(_0x483a2c){_0x452a6b(_0x483a2c,!0x1);}function _0x5f4a98(_0x36114d){const _0x4601ea=_0x2273f6;let _0x342e40=_0x36114d[_0x4601ea(0x523)][_0x4601ea(0x8f2)]();_0x36114d['ip']+=_0x342e40-0x1;}function _0x4e1aaf(_0x34ccd5){const _0x2bb4be=_0x2273f6;_0x34ccd5[_0x2bb4be(0x2b8)]=_0x34ccd5[_0x2bb4be(0x523)]['pop']()/0x40;}function _0x53db0d(_0x58b4db){const _0x2da8cc=_0x2273f6;let _0x41095c=_0x58b4db[_0x2da8cc(0x523)];_0x41095c['push'](_0x41095c[_0x41095c[_0x2da8cc(0xba6)]-0x1]);}function _0xcff844(_0x10682a){const _0x4d8b01=_0x2273f6;_0x10682a[_0x4d8b01(0x523)][_0x4d8b01(0x8f2)]();}function _0x2f87d1(_0x4c4f6a){const _0x19da09=_0x2273f6;_0x4c4f6a[_0x19da09(0x523)][_0x19da09(0xba6)]=0x0;}function _0x3dd0c2(_0x2d81be){const _0x3ba020=_0x2273f6;let _0x4acc19=_0x2d81be[_0x3ba020(0x523)],_0x16e940=_0x4acc19[_0x3ba020(0x8f2)](),_0x127f19=_0x4acc19[_0x3ba020(0x8f2)]();_0x4acc19['push'](_0x16e940),_0x4acc19[_0x3ba020(0x381)](_0x127f19);}function _0x20d64b(_0x556f50){const _0x5c25e=_0x2273f6;let _0x599460=_0x556f50['stack'];_0x599460[_0x5c25e(0x381)](_0x599460[_0x5c25e(0xba6)]);}function _0x4141e2(_0x1c59ed){const _0xce2e14=_0x2273f6;let _0x36c055=_0x1c59ed['stack'],_0x339f4d=_0x36c055[_0xce2e14(0x8f2)](),_0x26e302=_0x36c055[_0xce2e14(0x8f2)]();if(_0x26e302>_0x203359&&(_0x26e302=_0x203359),++_0x1c59ed[_0xce2e14(0x481)]>_0x38bbfe)throw Error(_0xce2e14(0x460)+_0x38bbfe);let _0x519af3=_0x1c59ed['ip'],_0x1588e7=_0x1c59ed['prog'];_0x1c59ed[_0xce2e14(0x230)]=_0x1c59ed[_0xce2e14(0xca5)][_0x339f4d];for(let _0x2fb45f=0x0;_0x2fb45f<_0x26e302;_0x2fb45f++)_0x3c4950(_0x1c59ed);_0x1c59ed['ip']=_0x519af3,_0x1c59ed[_0xce2e14(0x230)]=_0x1588e7,_0x1c59ed[_0xce2e14(0x481)]--;}function _0x51640d(_0x2bbb09){const _0x4277c8=_0x2273f6;let _0x1a10aa=_0x2bbb09[_0x4277c8(0x523)][_0x4277c8(0x8f2)]();if(++_0x2bbb09[_0x4277c8(0x481)]>_0x38bbfe)throw Error(_0x4277c8(0x460)+_0x38bbfe);let _0x48acf2=_0x2bbb09['ip'],_0x51e56c=_0x2bbb09[_0x4277c8(0x230)];_0x2bbb09[_0x4277c8(0x230)]=_0x2bbb09[_0x4277c8(0xca5)][_0x1a10aa],_0x3c4950(_0x2bbb09),_0x2bbb09['ip']=_0x48acf2,_0x2bbb09['prog']=_0x51e56c,_0x2bbb09[_0x4277c8(0x481)]--;}function _0x234a55(_0x3e755d){const _0x3d5009=_0x2273f6;let _0x2a4dcc=_0x3e755d[_0x3d5009(0x523)],_0x1b1ab6=_0x2a4dcc[_0x3d5009(0x8f2)]();_0x2a4dcc[_0x3d5009(0x381)](_0x2a4dcc[_0x2a4dcc['length']-_0x1b1ab6]);}function _0x3e892c(_0x321245){const _0x30cdd8=_0x2273f6;let _0x32febc=_0x321245['stack'],_0x4bda23=_0x32febc['pop']();_0x32febc[_0x30cdd8(0x381)](_0x32febc[_0x30cdd8(0x98b)](_0x32febc[_0x30cdd8(0xba6)]-_0x4bda23,0x1)[0x0]);}function _0x3138f3(_0x430ea0){const _0x44ea4f=_0x2273f6;if(_0x430ea0[_0x44ea4f(0x6ce)]!==_0x44ea4f(0x290))throw Error(_0x44ea4f(0x87a));let _0x1d2641=_0x430ea0[_0x44ea4f(0x523)],_0x15459a=_0x430ea0[_0x44ea4f(0x230)],_0x2e4811=_0x430ea0['ip'],_0x31bf94=_0x1d2641[_0x44ea4f(0x8f2)](),_0x1ad609=_0x2e4811;for(;_0x15459a[++_0x2e4811]!==0x2d;);_0x430ea0['ip']=_0x2e4811,_0x430ea0[_0x44ea4f(0xca5)][_0x31bf94]=_0x15459a[_0x44ea4f(0x688)](_0x1ad609+0x1,_0x2e4811);}function _0x1bf276(_0x33a7ff,_0x11ff74){const _0x4dcc79=_0x2273f6;let _0x18ed56=_0x11ff74[_0x4dcc79(0x523)][_0x4dcc79(0x8f2)](),_0x34f493=_0x11ff74['z0'][_0x18ed56],_0x168e97=_0x11ff74['fv'],_0x2520ab=_0x11ff74['pv'],_0x1393cf=_0x2520ab[_0x4dcc79(0x720)](_0x34f493,_0x2da942);_0x33a7ff&&(_0x1393cf=_0x11ff74[_0x4dcc79(0x157)](_0x1393cf)),_0x168e97['setRelative'](_0x34f493,_0x2da942,_0x1393cf,_0x2520ab),_0x168e97[_0x4dcc79(0x604)](_0x34f493),_0x11ff74[_0x4dcc79(0x980)]=_0x11ff74[_0x4dcc79(0x332)]=_0x18ed56;}function _0x24bd35(_0x48e509,_0x2a0d50){const _0x593214=_0x2273f6;let _0x382c2b=_0x2a0d50['z2'],_0x43ac4b=_0x382c2b['length']-0x2,_0x2ea40f,_0x195533,_0x2de1c7;for(let _0x48b773=0x0;_0x48b773<_0x43ac4b;_0x48b773++)_0x2ea40f=_0x382c2b[_0x48b773],!_0x48e509[_0x593214(0x96f)](_0x2ea40f)&&(_0x195533=_0x2ea40f[_0x593214(0x9a6)](_0x48e509),_0x195533!==_0x2ea40f&&(_0x2de1c7=_0x2ea40f[_0x593214(0x3df)](_0x48e509),_0x195533===_0x2de1c7&&_0x48e509[_0x593214(0xaee)](_0x2ea40f,_0x2ea40f,_0x48e509[_0x593214(0x720)](_0x195533,_0x195533,!0x1,!0x0),_0x48e509,!0x0),_0x48e509['interpolate'](_0x2ea40f,_0x195533,_0x2de1c7,_0x48e509)));}function _0x499491(_0x37d421,_0x5a4153){const _0x3476ff=_0x2273f6;let _0xbe8839=_0x5a4153['stack'],_0x84c9b2=_0x37d421?_0x5a4153[_0x3476ff(0x332)]:_0x5a4153['rp2'],_0x238a83=(_0x37d421?_0x5a4153['z0']:_0x5a4153['z1'])[_0x84c9b2],_0x50bc8e=_0x5a4153['fv'],_0x238c84=_0x5a4153['pv'],_0x589114=_0x5a4153[_0x3476ff(0x426)],_0x33926b=_0x5a4153['z2'];for(;_0x589114--;){let _0x5723d8=_0x33926b[_0xbe8839[_0x3476ff(0x8f2)]()],_0x4bb149=_0x238c84[_0x3476ff(0x720)](_0x238a83,_0x238a83,!0x1,!0x0);_0x50bc8e[_0x3476ff(0xaee)](_0x5723d8,_0x5723d8,_0x4bb149,_0x238c84),_0x50bc8e[_0x3476ff(0x604)](_0x5723d8);}_0x5a4153['loop']=0x1;}function _0x31e611(_0x57c6cc,_0x2f656f){const _0x153475=_0x2273f6;let _0x339efc=_0x2f656f[_0x153475(0x523)],_0x421b5e=_0x57c6cc?_0x2f656f[_0x153475(0x332)]:_0x2f656f['rp2'],_0xf56e74=(_0x57c6cc?_0x2f656f['z0']:_0x2f656f['z1'])[_0x421b5e],_0x58ac7b=_0x2f656f['fv'],_0x4b2917=_0x2f656f['pv'],_0x3c9f35=_0x339efc[_0x153475(0x8f2)](),_0x20fa21=_0x2f656f['z2'][_0x2f656f[_0x153475(0x210)][_0x3c9f35]],_0x58ddcc=_0x20fa21,_0x2b8f57=_0x4b2917['distance'](_0xf56e74,_0xf56e74,!0x1,!0x0);do _0x58ddcc!==_0xf56e74&&_0x58ac7b['setRelative'](_0x58ddcc,_0x58ddcc,_0x2b8f57,_0x4b2917),_0x58ddcc=_0x58ddcc[_0x153475(0x861)];while(_0x58ddcc!==_0x20fa21);}function _0x10a680(_0x33ddea,_0x28d410){const _0x197fd5=_0x2273f6;let _0x20848a=_0x28d410[_0x197fd5(0x523)],_0x1fa52a=_0x33ddea?_0x28d410['rp1']:_0x28d410['rp2'],_0x530dbb=(_0x33ddea?_0x28d410['z0']:_0x28d410['z1'])[_0x1fa52a],_0x1561d0=_0x28d410['fv'],_0x29de4b=_0x28d410['pv'],_0x51468c=_0x20848a[_0x197fd5(0x8f2)](),_0xd6e9c9;switch(_0x51468c){case 0x0:_0xd6e9c9=_0x28d410[_0x197fd5(0x8d1)];break;case 0x1:_0xd6e9c9=_0x28d410[_0x197fd5(0xa66)];break;default:throw Error(_0x197fd5(0x7d7));}let _0x45254f,_0x2d68c7=_0x29de4b[_0x197fd5(0x720)](_0x530dbb,_0x530dbb,!0x1,!0x0),_0x1b9e28=_0xd6e9c9['length']-0x2;for(let _0x350506=0x0;_0x350506<_0x1b9e28;_0x350506++)_0x45254f=_0xd6e9c9[_0x350506],_0x1561d0['setRelative'](_0x45254f,_0x45254f,_0x2d68c7,_0x29de4b);}function _0x4a5e59(_0x37d631){const _0x5b70df=_0x2273f6;let _0x491bde=_0x37d631['stack'],_0x2568a8=_0x37d631[_0x5b70df(0x426)],_0x47c150=_0x37d631['fv'],_0x34c3a4=_0x491bde['pop']()/0x40,_0x1e35cd=_0x37d631['z2'];for(;_0x2568a8--;){let _0x492ff9=_0x1e35cd[_0x491bde[_0x5b70df(0x8f2)]()];_0x47c150[_0x5b70df(0xaee)](_0x492ff9,_0x492ff9,_0x34c3a4),_0x47c150[_0x5b70df(0x604)](_0x492ff9);}_0x37d631[_0x5b70df(0x426)]=0x1;}function _0x1386cf(_0x5846ee){const _0x34819d=_0x2273f6;let _0x170b22=_0x5846ee[_0x34819d(0x523)],_0xbfc55=_0x5846ee[_0x34819d(0x332)],_0x535e6c=_0x5846ee[_0x34819d(0x3a2)],_0x67e244=_0x5846ee[_0x34819d(0x426)],_0x4a8dd8=_0x5846ee['z0'][_0xbfc55],_0x251532=_0x5846ee['z1'][_0x535e6c],_0x457c3=_0x5846ee['fv'],_0x4597eb=_0x5846ee[_0x34819d(0xb52)],_0x356fe3=_0x5846ee['z2'];for(;_0x67e244--;){let _0x474fec=_0x356fe3[_0x170b22['pop']()];_0x457c3[_0x34819d(0x986)](_0x474fec,_0x4a8dd8,_0x251532,_0x4597eb),_0x457c3[_0x34819d(0x604)](_0x474fec);}_0x5846ee[_0x34819d(0x426)]=0x1;}function _0xb902a0(_0x4bedee,_0xb92ed2){const _0x453553=_0x2273f6;let _0x1b7152=_0xb92ed2[_0x453553(0x523)],_0x5690b6=_0x1b7152[_0x453553(0x8f2)]()/0x40,_0x4eb92d=_0x1b7152[_0x453553(0x8f2)](),_0x2716cb=_0xb92ed2['z1'][_0x4eb92d],_0x1a48a3=_0xb92ed2['z0'][_0xb92ed2['rp0']],_0x2b2d60=_0xb92ed2['fv'],_0x28fa0e=_0xb92ed2['pv'];_0x2b2d60[_0x453553(0xaee)](_0x2716cb,_0x1a48a3,_0x5690b6,_0x28fa0e),_0x2b2d60[_0x453553(0x604)](_0x2716cb),_0xb92ed2[_0x453553(0x332)]=_0xb92ed2[_0x453553(0x980)],_0xb92ed2[_0x453553(0x3a2)]=_0x4eb92d,_0x4bedee&&(_0xb92ed2[_0x453553(0x980)]=_0x4eb92d);}function _0x3c2269(_0x2d42bc){const _0x268741=_0x2273f6;let _0x4edd45=_0x2d42bc[_0x268741(0x523)],_0x11ca30=_0x2d42bc[_0x268741(0x980)],_0x3bbe7a=_0x2d42bc['z0'][_0x11ca30],_0xbf0955=_0x2d42bc[_0x268741(0x426)],_0x18c1cd=_0x2d42bc['fv'],_0x460277=_0x2d42bc['pv'],_0x25ec56=_0x2d42bc['z1'];for(;_0xbf0955--;){let _0x12af79=_0x25ec56[_0x4edd45[_0x268741(0x8f2)]()];_0x18c1cd[_0x268741(0xaee)](_0x12af79,_0x3bbe7a,0x0,_0x460277),_0x18c1cd[_0x268741(0x604)](_0x12af79);}_0x2d42bc[_0x268741(0x426)]=0x1;}function _0x2da1b5(_0x5c7c09){_0x5c7c09['round']=_0x57b665;}function _0xed4a3(_0x26b8a6,_0x11749d){const _0x5581fd=_0x2273f6;let _0x58618a=_0x11749d[_0x5581fd(0x523)],_0x394275=_0x58618a[_0x5581fd(0x8f2)](),_0x143dfe=_0x58618a[_0x5581fd(0x8f2)](),_0x20e595=_0x11749d['z0'][_0x143dfe],_0x74606f=_0x11749d['fv'],_0x34f629=_0x11749d['pv'],_0x28480b=_0x11749d[_0x5581fd(0x85f)][_0x394275],_0x2700c4=_0x34f629[_0x5581fd(0x720)](_0x20e595,_0x2da942);_0x26b8a6&&(Math['abs'](_0x2700c4-_0x28480b)<_0x11749d['cvCutIn']&&(_0x2700c4=_0x28480b),_0x2700c4=_0x11749d[_0x5581fd(0x157)](_0x2700c4)),_0x74606f['setRelative'](_0x20e595,_0x2da942,_0x2700c4,_0x34f629),_0x11749d[_0x5581fd(0x29a)]===0x0&&(_0x20e595['xo']=_0x20e595['x'],_0x20e595['yo']=_0x20e595['y']),_0x74606f[_0x5581fd(0x604)](_0x20e595),_0x11749d[_0x5581fd(0x980)]=_0x11749d[_0x5581fd(0x332)]=_0x143dfe;}function _0x16907e(_0x3b20d4){const _0x1b7362=_0x2273f6;let _0x318a17=_0x3b20d4['prog'],_0x4f50c5=_0x3b20d4['ip'],_0x302d8a=_0x3b20d4[_0x1b7362(0x523)],_0x17aabc=_0x318a17[++_0x4f50c5];for(let _0x54a30e=0x0;_0x54a30e<_0x17aabc;_0x54a30e++)_0x302d8a[_0x1b7362(0x381)](_0x318a17[++_0x4f50c5]);_0x3b20d4['ip']=_0x4f50c5;}function _0xbba30(_0x1a9ba7){const _0x4b6bb1=_0x2273f6;let _0x12acc6=_0x1a9ba7['ip'],_0x27f757=_0x1a9ba7['prog'],_0x4c2965=_0x1a9ba7[_0x4b6bb1(0x523)],_0x53e903=_0x27f757[++_0x12acc6];for(let _0x58c97e=0x0;_0x58c97e<_0x53e903;_0x58c97e++){let _0x183163=_0x27f757[++_0x12acc6]<<0x8|_0x27f757[++_0x12acc6];_0x183163&0x8000&&(_0x183163=-((_0x183163^0xffff)+0x1)),_0x4c2965[_0x4b6bb1(0x381)](_0x183163);}_0x1a9ba7['ip']=_0x12acc6;}function _0x350868(_0x3b91bf){const _0x32b472=_0x2273f6;let _0x3eba70=_0x3b91bf[_0x32b472(0x523)],_0x50636e=_0x3b91bf[_0x32b472(0xa60)];_0x50636e||(_0x50636e=_0x3b91bf[_0x32b472(0xa60)]=[]);let _0x38ea64=_0x3eba70[_0x32b472(0x8f2)](),_0x4c474d=_0x3eba70[_0x32b472(0x8f2)]();_0x50636e[_0x4c474d]=_0x38ea64;}function _0x383e02(_0x4e69d5){const _0x1ec58a=_0x2273f6;let _0x184c39=_0x4e69d5[_0x1ec58a(0x523)],_0x18a727=_0x4e69d5[_0x1ec58a(0xa60)],_0x36c68a=_0x184c39['pop'](),_0x5ee93d=_0x18a727&&_0x18a727[_0x36c68a]||0x0;_0x184c39[_0x1ec58a(0x381)](_0x5ee93d);}function _0x3690d1(_0x262326){const _0x50f7fb=_0x2273f6;let _0x34c655=_0x262326[_0x50f7fb(0x523)],_0x49c478=_0x34c655[_0x50f7fb(0x8f2)](),_0x52c162=_0x34c655[_0x50f7fb(0x8f2)]();_0x262326[_0x50f7fb(0x85f)][_0x52c162]=_0x49c478/0x40;}function _0x45a0a9(_0x5033f6){const _0x2f6744=_0x2273f6;let _0x1e2e94=_0x5033f6['stack'],_0x2101c9=_0x1e2e94[_0x2f6744(0x8f2)]();_0x1e2e94[_0x2f6744(0x381)](_0x5033f6['cvt'][_0x2101c9]*0x40);}function _0x4f8fbb(_0x28c67c,_0x59a198){const _0x395a98=_0x2273f6;let _0x1d8933=_0x59a198['stack'],_0x92e44b=_0x1d8933['pop'](),_0x24cd8c=_0x59a198['z2'][_0x92e44b];_0x1d8933[_0x395a98(0x381)](_0x59a198[_0x395a98(0xb52)][_0x395a98(0x720)](_0x24cd8c,_0x2da942,_0x28c67c,!0x1)*0x40);}function _0x1d0185(_0x365f7c,_0x46ed8e){const _0x45b95b=_0x2273f6;let _0x408ae3=_0x46ed8e['stack'],_0x2805cd=_0x408ae3[_0x45b95b(0x8f2)](),_0x5118b5=_0x408ae3[_0x45b95b(0x8f2)](),_0x33012e=_0x46ed8e['z1'][_0x2805cd],_0x520bd3=_0x46ed8e['z0'][_0x5118b5],_0x252d7f=_0x46ed8e['dpv'][_0x45b95b(0x720)](_0x520bd3,_0x33012e,_0x365f7c,_0x365f7c);_0x46ed8e[_0x45b95b(0x523)]['push'](Math['round'](_0x252d7f*0x40));}function _0xc57e9(_0x13aafa){const _0x5565f2=_0x2273f6;_0x13aafa[_0x5565f2(0x523)][_0x5565f2(0x381)](_0x13aafa['ppem']);}function _0x96602f(_0x2d0bd4){const _0x46cb75=_0x2273f6;_0x2d0bd4[_0x46cb75(0x2ab)]=!0x0;}function _0x19a4ad(_0x4f16bb){const _0x3bbdf2=_0x2273f6;let _0x533a1a=_0x4f16bb[_0x3bbdf2(0x523)],_0x4acec5=_0x533a1a[_0x3bbdf2(0x8f2)](),_0x33e3aa=_0x533a1a[_0x3bbdf2(0x8f2)]();_0x533a1a[_0x3bbdf2(0x381)](+(_0x33e3aa<_0x4acec5));}function _0x173733(_0x1afad8){const _0x200fc1=_0x2273f6;let _0x32a398=_0x1afad8[_0x200fc1(0x523)],_0x230c7d=_0x32a398[_0x200fc1(0x8f2)](),_0x2f05d4=_0x32a398[_0x200fc1(0x8f2)]();_0x32a398['push'](+(_0x2f05d4<=_0x230c7d));}function _0x1dd064(_0x3d5b75){const _0x4ff079=_0x2273f6;let _0x45a22b=_0x3d5b75[_0x4ff079(0x523)],_0x437d4e=_0x45a22b[_0x4ff079(0x8f2)](),_0xb974e=_0x45a22b['pop']();_0x45a22b[_0x4ff079(0x381)](+(_0xb974e>_0x437d4e));}function _0x322303(_0x4fa49c){const _0x3532df=_0x2273f6;let _0x269865=_0x4fa49c[_0x3532df(0x523)],_0x2cbf2e=_0x269865[_0x3532df(0x8f2)](),_0x157b09=_0x269865['pop']();_0x269865['push'](+(_0x157b09>=_0x2cbf2e));}function _0x41bea7(_0x1d2f6c){const _0x30d0bd=_0x2273f6;let _0x34fb64=_0x1d2f6c[_0x30d0bd(0x523)],_0x40d4fa=_0x34fb64['pop'](),_0x1e41a2=_0x34fb64['pop']();_0x34fb64[_0x30d0bd(0x381)](+(_0x40d4fa===_0x1e41a2));}function _0x20c84f(_0x49648f){const _0x41065f=_0x2273f6;let _0x34f132=_0x49648f['stack'],_0x565806=_0x34f132[_0x41065f(0x8f2)](),_0x35042b=_0x34f132[_0x41065f(0x8f2)]();_0x34f132[_0x41065f(0x381)](_0x565806===_0x35042b?0x0:0x1);}function _0x2a989f(_0x495b75){const _0x4836e1=_0x2273f6;let _0x23c216=_0x495b75[_0x4836e1(0x523)],_0x3d7e84=_0x23c216[_0x4836e1(0x8f2)]();_0x23c216[_0x4836e1(0x381)](Math[_0x4836e1(0x74c)](_0x3d7e84)&0x1?0x1:0x0);}function _0x449154(_0x49ee89){const _0x409e7b=_0x2273f6;let _0x422510=_0x49ee89[_0x409e7b(0x523)],_0x3b1f2c=_0x422510[_0x409e7b(0x8f2)]();_0x422510[_0x409e7b(0x381)](Math[_0x409e7b(0x74c)](_0x3b1f2c)&0x1?0x0:0x1);}function _0x560db2(_0x5d4a24){const _0xadbefd=_0x2273f6;_0x5d4a24[_0xadbefd(0x523)][_0xadbefd(0x8f2)]()||_0x452a6b(_0x5d4a24,!0x0);}function _0x24c5d8(_0x3da77e){}function _0xa25163(_0x99fe2b){const _0x4da480=_0x2273f6;let _0x5e0814=_0x99fe2b[_0x4da480(0x523)],_0x4d841a=_0x5e0814[_0x4da480(0x8f2)](),_0x10aa81=_0x5e0814[_0x4da480(0x8f2)]();_0x5e0814[_0x4da480(0x381)](_0x4d841a&&_0x10aa81?0x1:0x0);}function _0xf0da47(_0xe2d6a1){const _0xaff0e4=_0x2273f6;let _0x101892=_0xe2d6a1[_0xaff0e4(0x523)],_0x31bfed=_0x101892['pop'](),_0x4fdb34=_0x101892[_0xaff0e4(0x8f2)]();_0x101892[_0xaff0e4(0x381)](_0x31bfed||_0x4fdb34?0x1:0x0);}function _0x6a55b4(_0x315ac9){const _0x68856=_0x2273f6;let _0x3afdca=_0x315ac9[_0x68856(0x523)],_0x319853=_0x3afdca[_0x68856(0x8f2)]();_0x3afdca[_0x68856(0x381)](+!_0x319853);}function _0x4edd6b(_0x163198,_0x234ef5){const _0x2d0f08=_0x2273f6;let _0x9961e9=_0x234ef5[_0x2d0f08(0x523)],_0x4bd96e=_0x9961e9[_0x2d0f08(0x8f2)](),_0x518446=_0x234ef5['fv'],_0x1539cf=_0x234ef5['pv'],_0x1280cd=_0x234ef5[_0x2d0f08(0x721)],_0xb1fac6=_0x234ef5[_0x2d0f08(0xb37)]+(_0x163198-0x1)*0x10,_0x3a39a2=_0x234ef5['deltaShift'],_0x4fdc25=_0x234ef5['z0'];for(let _0xd1b8b9=0x0;_0xd1b8b9<_0x4bd96e;_0xd1b8b9++){let _0x1dd8da=_0x9961e9[_0x2d0f08(0x8f2)](),_0x20f626=_0x9961e9[_0x2d0f08(0x8f2)]();if(_0xb1fac6+((_0x20f626&0xf0)>>0x4)!==_0x1280cd)continue;let _0x220e84=(_0x20f626&0xf)-0x8;_0x220e84>=0x0&&_0x220e84++;let _0x44ed12=_0x4fdc25[_0x1dd8da];_0x518446[_0x2d0f08(0xaee)](_0x44ed12,_0x44ed12,_0x220e84*_0x3a39a2,_0x1539cf);}}function _0x33d7b4(_0x28ad64){const _0x11ddc6=_0x2273f6;_0x28ad64[_0x11ddc6(0xb37)]=_0x28ad64[_0x11ddc6(0x523)]['pop']();}function _0x25e007(_0x5aec07){const _0xaf0f4b=_0x2273f6;_0x5aec07[_0xaf0f4b(0x1b1)]=0.5**_0x5aec07[_0xaf0f4b(0x523)][_0xaf0f4b(0x8f2)]();}function _0x2c3570(_0x57e168){const _0x2bb0d6=_0x2273f6;let _0x337df9=_0x57e168[_0x2bb0d6(0x523)],_0x765a4a=_0x337df9['pop'](),_0x2ba370=_0x337df9[_0x2bb0d6(0x8f2)]();_0x337df9[_0x2bb0d6(0x381)](_0x2ba370+_0x765a4a);}function _0x4bbcf3(_0x59e41d){const _0x2d07bb=_0x2273f6;let _0x573238=_0x59e41d[_0x2d07bb(0x523)],_0x5749f9=_0x573238['pop'](),_0x2986bf=_0x573238[_0x2d07bb(0x8f2)]();_0x573238[_0x2d07bb(0x381)](_0x2986bf-_0x5749f9);}function _0x587cc2(_0x6a504a){const _0x287564=_0x2273f6;let _0x5dd5d1=_0x6a504a[_0x287564(0x523)],_0x269760=_0x5dd5d1[_0x287564(0x8f2)](),_0x4951a1=_0x5dd5d1['pop']();_0x5dd5d1['push'](_0x4951a1*0x40/_0x269760);}function _0x22cbf9(_0x489460){const _0x118f44=_0x2273f6;let _0xb884f1=_0x489460[_0x118f44(0x523)],_0x2d0abe=_0xb884f1['pop'](),_0x178d72=_0xb884f1[_0x118f44(0x8f2)]();_0xb884f1[_0x118f44(0x381)](_0x178d72*_0x2d0abe/0x40);}function _0x258075(_0x1cfa22){const _0x2a927e=_0x2273f6;let _0x20580d=_0x1cfa22['stack'],_0x541503=_0x20580d[_0x2a927e(0x8f2)]();_0x20580d[_0x2a927e(0x381)](Math[_0x2a927e(0x7f7)](_0x541503));}function _0xdf05a(_0x9c2d72){const _0x267bdd=_0x2273f6;let _0x145406=_0x9c2d72[_0x267bdd(0x523)],_0x347a5b=_0x145406[_0x267bdd(0x8f2)]();_0x145406['push'](-_0x347a5b);}function _0x4a952e(_0x4258a1){const _0xf3542f=_0x2273f6;let _0x460129=_0x4258a1[_0xf3542f(0x523)],_0x170f94=_0x460129[_0xf3542f(0x8f2)]();_0x460129[_0xf3542f(0x381)](Math[_0xf3542f(0x559)](_0x170f94/0x40)*0x40);}function _0x1d1fe6(_0x19a84e){const _0x5d7095=_0x2273f6;let _0x145ce8=_0x19a84e[_0x5d7095(0x523)],_0x39c0e9=_0x145ce8[_0x5d7095(0x8f2)]();_0x145ce8['push'](Math['ceil'](_0x39c0e9/0x40)*0x40);}function _0x2457dc(_0x482d62,_0x36bf46){const _0x1542d6=_0x2273f6;let _0x9d2f10=_0x36bf46[_0x1542d6(0x523)],_0x509093=_0x9d2f10[_0x1542d6(0x8f2)]();_0x9d2f10[_0x1542d6(0x381)](_0x36bf46[_0x1542d6(0x157)](_0x509093/0x40)*0x40);}function _0x1d8eb7(_0x6b007a){const _0x2bc0f7=_0x2273f6;let _0xa35ed6=_0x6b007a['stack'],_0x62c3b8=_0xa35ed6[_0x2bc0f7(0x8f2)](),_0x2460a8=_0xa35ed6[_0x2bc0f7(0x8f2)]();_0x6b007a[_0x2bc0f7(0x85f)][_0x2460a8]=_0x62c3b8*_0x6b007a[_0x2bc0f7(0x721)]/_0x6b007a[_0x2bc0f7(0x7da)][_0x2bc0f7(0xac5)];}function _0x1a7627(_0x802b8f,_0x4968cd){const _0x303613=_0x2273f6;let _0x34b93f=_0x4968cd['stack'],_0x184cf2=_0x34b93f[_0x303613(0x8f2)](),_0x7542c=_0x4968cd['ppem'],_0x250ec7=_0x4968cd[_0x303613(0xb37)]+(_0x802b8f-0x1)*0x10,_0xe87872=_0x4968cd['deltaShift'];for(let _0x1c934e=0x0;_0x1c934e<_0x184cf2;_0x1c934e++){let _0x3d60a3=_0x34b93f['pop'](),_0x538b74=_0x34b93f[_0x303613(0x8f2)]();if(_0x250ec7+((_0x538b74&0xf0)>>0x4)!==_0x7542c)continue;let _0x58968e=(_0x538b74&0xf)-0x8;_0x58968e>=0x0&&_0x58968e++;let _0xce54d5=_0x58968e*_0xe87872;_0x4968cd[_0x303613(0x85f)][_0x3d60a3]+=_0xce54d5;}}function _0x37db6f(_0x153c73){const _0x575d1c=_0x2273f6;let _0x156667=_0x153c73[_0x575d1c(0x523)][_0x575d1c(0x8f2)]();_0x153c73['round']=_0x4885e6;let _0x457f59;switch(_0x156667&0xc0){case 0x0:_0x457f59=0.5;break;case 0x40:_0x457f59=0x1;break;case 0x80:_0x457f59=0x2;break;default:throw Error(_0x575d1c(0x984));}switch(_0x153c73[_0x575d1c(0xa91)]=_0x457f59,_0x156667&0x30){case 0x0:_0x153c73[_0x575d1c(0x206)]=0x0;break;case 0x10:_0x153c73[_0x575d1c(0x206)]=0.25*_0x457f59;break;case 0x20:_0x153c73['srPhase']=0.5*_0x457f59;break;case 0x30:_0x153c73['srPhase']=0.75*_0x457f59;break;default:throw Error(_0x575d1c(0x984));}_0x156667&=0xf,_0x156667===0x0?_0x153c73['srThreshold']=0x0:_0x153c73[_0x575d1c(0x3b4)]=(_0x156667/0x8-0.5)*_0x457f59;}function _0x3e5f60(_0x58b8f4){const _0x5b7ab6=_0x2273f6;let _0x45d9a0=_0x58b8f4['stack']['pop']();_0x58b8f4[_0x5b7ab6(0x157)]=_0x4885e6;let _0x3e3426;switch(_0x45d9a0&0xc0){case 0x0:_0x3e3426=Math[_0x5b7ab6(0x754)](0x2)/0x2;break;case 0x40:_0x3e3426=Math[_0x5b7ab6(0x754)](0x2);break;case 0x80:_0x3e3426=0x2*Math[_0x5b7ab6(0x754)](0x2);break;default:throw Error(_0x5b7ab6(0x39c));}switch(_0x58b8f4[_0x5b7ab6(0xa91)]=_0x3e3426,_0x45d9a0&0x30){case 0x0:_0x58b8f4[_0x5b7ab6(0x206)]=0x0;break;case 0x10:_0x58b8f4['srPhase']=0.25*_0x3e3426;break;case 0x20:_0x58b8f4['srPhase']=0.5*_0x3e3426;break;case 0x30:_0x58b8f4[_0x5b7ab6(0x206)]=0.75*_0x3e3426;break;default:throw Error('invalid\x20S45ROUND\x20value');}_0x45d9a0&=0xf,_0x45d9a0===0x0?_0x58b8f4['srThreshold']=0x0:_0x58b8f4[_0x5b7ab6(0x3b4)]=(_0x45d9a0/0x8-0.5)*_0x3e3426;}function _0x35d2a5(_0xff2039){const _0x4e6312=_0x2273f6;_0xff2039[_0x4e6312(0x157)]=_0x296b7c;}function _0x587af2(_0x1685ab){const _0x309d89=_0x2273f6;_0x1685ab[_0x309d89(0x157)]=_0x3c167e;}function _0x49963c(_0x58eb80){_0x58eb80['round']=_0x260af4;}function _0x532968(_0x36f824){const _0x36a3a6=_0x2273f6;_0x36f824['stack'][_0x36a3a6(0x8f2)]();}function _0x57d83a(_0x1f7de6,_0x1100a0){const _0x30014e=_0x2273f6;let _0x56cda1=_0x1100a0[_0x30014e(0x523)],_0x482b39=_0x56cda1[_0x30014e(0x8f2)](),_0x19d856=_0x56cda1[_0x30014e(0x8f2)](),_0x41281c=_0x1100a0['z2'][_0x482b39],_0x3c236a=_0x1100a0['z1'][_0x19d856],_0xc5edaa,_0x387e33;_0x1f7de6?(_0xc5edaa=_0x41281c['y']-_0x3c236a['y'],_0x387e33=_0x3c236a['x']-_0x41281c['x']):(_0xc5edaa=_0x3c236a['x']-_0x41281c['x'],_0x387e33=_0x3c236a['y']-_0x41281c['y']),_0x1100a0[_0x30014e(0xb52)]=_0x42f190(_0xc5edaa,_0x387e33);}function _0x51b1c4(_0x418b92){const _0x2a32e7=_0x2273f6;let _0x204a6e=_0x418b92[_0x2a32e7(0x523)],_0x5b8d94=_0x204a6e['pop'](),_0x4f0271=0x0;_0x5b8d94&0x1&&(_0x4f0271=0x23),_0x5b8d94&0x20&&(_0x4f0271|=0x1000),_0x204a6e['push'](_0x4f0271);}function _0x48e4f8(_0x3ac492){const _0x7f8577=_0x2273f6;let _0x520031=_0x3ac492['stack'],_0x25bd2b=_0x520031[_0x7f8577(0x8f2)](),_0xc600ae=_0x520031[_0x7f8577(0x8f2)](),_0x42cb5c=_0x520031[_0x7f8577(0x8f2)]();_0x520031[_0x7f8577(0x381)](_0xc600ae),_0x520031[_0x7f8577(0x381)](_0x25bd2b),_0x520031[_0x7f8577(0x381)](_0x42cb5c);}function _0xc45ec0(_0x61eb3d){const _0x39bf54=_0x2273f6;let _0x2bef94=_0x61eb3d['stack'],_0x15d6fa=_0x2bef94[_0x39bf54(0x8f2)](),_0x21c4e5=_0x2bef94[_0x39bf54(0x8f2)]();_0x2bef94['push'](Math[_0x39bf54(0x542)](_0x21c4e5,_0x15d6fa));}function _0x1834a1(_0xb67cc2){const _0xd24d30=_0x2273f6;let _0x3f7c2a=_0xb67cc2[_0xd24d30(0x523)],_0x397dd6=_0x3f7c2a[_0xd24d30(0x8f2)](),_0x538d5c=_0x3f7c2a[_0xd24d30(0x8f2)]();_0x3f7c2a[_0xd24d30(0x381)](Math['min'](_0x538d5c,_0x397dd6));}function _0x3cab1c(_0x45d008){const _0x544937=_0x2273f6;_0x45d008[_0x544937(0x523)][_0x544937(0x8f2)]();}function _0x5f4e55(_0xda5928){const _0x401c4e=_0x2273f6;let _0x27bf1f=_0xda5928['stack']['pop'](),_0x34e691=_0xda5928['stack']['pop']();switch(_0x27bf1f){case 0x1:_0xda5928['inhibitGridFit']=!!_0x34e691;return;case 0x2:_0xda5928[_0x401c4e(0xb69)]=!!_0x34e691;return;default:throw Error(_0x401c4e(0xcae));}}function _0x49337e(_0x50a114,_0x324050){const _0x3de3d1=_0x2273f6;let _0x4ea7c2=_0x324050[_0x3de3d1(0x523)],_0x2ff467=_0x324050[_0x3de3d1(0x230)],_0x41f018=_0x324050['ip'];for(let _0x3e9902=0x0;_0x3e9902<_0x50a114;_0x3e9902++)_0x4ea7c2[_0x3de3d1(0x381)](_0x2ff467[++_0x41f018]);_0x324050['ip']=_0x41f018;}function _0x24b292(_0x2b5584,_0x2ac1ec){const _0x1228d2=_0x2273f6;let _0x5d0b21=_0x2ac1ec['ip'],_0x479e94=_0x2ac1ec[_0x1228d2(0x230)],_0x50583f=_0x2ac1ec[_0x1228d2(0x523)];for(let _0x247660=0x0;_0x247660<_0x2b5584;_0x247660++){let _0x2f8440=_0x479e94[++_0x5d0b21]<<0x8|_0x479e94[++_0x5d0b21];_0x2f8440&0x8000&&(_0x2f8440=-((_0x2f8440^0xffff)+0x1)),_0x50583f['push'](_0x2f8440);}_0x2ac1ec['ip']=_0x5d0b21;}function _0x55e2a6(_0x48e66b,_0x33983f,_0x18705f,_0x37dcaf,_0x27f152,_0xd7a2af){const _0x56588a=_0x2273f6;let _0x269203=_0xd7a2af[_0x56588a(0x523)],_0x477510=_0x48e66b&&_0x269203['pop'](),_0x246f42=_0x269203[_0x56588a(0x8f2)](),_0x50ac36=_0xd7a2af[_0x56588a(0x980)],_0x22ebb0=_0xd7a2af['z0'][_0x50ac36],_0x25cd7d=_0xd7a2af['z1'][_0x246f42],_0x1a1ecf=_0xd7a2af[_0x56588a(0x694)],_0x212c83=_0xd7a2af['fv'],_0xb12735=_0xd7a2af[_0x56588a(0xb52)],_0x297cbc,_0x5b3c8c,_0x24f478;_0x297cbc=_0xb12735[_0x56588a(0x720)](_0x25cd7d,_0x22ebb0,!0x0,!0x0),_0x5b3c8c=_0x297cbc>=0x0?0x1:-0x1,_0x297cbc=Math[_0x56588a(0x7f7)](_0x297cbc),_0x48e66b&&(_0x24f478=_0xd7a2af[_0x56588a(0x85f)][_0x477510],_0x37dcaf&&Math['abs'](_0x297cbc-_0x24f478)<_0xd7a2af['cvCutIn']&&(_0x297cbc=_0x24f478)),_0x18705f&&_0x297cbc<_0x1a1ecf&&(_0x297cbc=_0x1a1ecf),_0x37dcaf&&(_0x297cbc=_0xd7a2af[_0x56588a(0x157)](_0x297cbc)),_0x212c83[_0x56588a(0xaee)](_0x25cd7d,_0x22ebb0,_0x5b3c8c*_0x297cbc,_0xb12735),_0x212c83[_0x56588a(0x604)](_0x25cd7d),_0xd7a2af['rp1']=_0xd7a2af[_0x56588a(0x980)],_0xd7a2af['rp2']=_0x246f42,_0x33983f&&(_0xd7a2af[_0x56588a(0x980)]=_0x246f42);}_0x3c4572=[_0xd9a64a[_0x2273f6(0xbc2)](void 0x0,_0xebd38c),_0xd9a64a[_0x2273f6(0xbc2)](void 0x0,_0x55da56),_0x6275d5[_0x2273f6(0xbc2)](void 0x0,_0xebd38c),_0x6275d5[_0x2273f6(0xbc2)](void 0x0,_0x55da56),_0x36d2df[_0x2273f6(0xbc2)](void 0x0,_0xebd38c),_0x36d2df[_0x2273f6(0xbc2)](void 0x0,_0x55da56),_0x48076e[_0x2273f6(0xbc2)](void 0x0,0x0),_0x48076e['bind'](void 0x0,0x1),_0x1dc7ae[_0x2273f6(0xbc2)](void 0x0,0x0),_0x1dc7ae[_0x2273f6(0xbc2)](void 0x0,0x1),_0x4f60d6,_0x415297,_0x19e7dd,_0x50a05f,_0x4c2c32,_0x101481,_0x4bf9d5,_0x50c8cb,_0x2bbd61,_0xb7ce86,_0x2fe966,_0x238e71,_0x545f62,_0x289530,_0x955d29,_0x4ec0f9,_0x2d9747,_0x1fbc4f,_0x5f4a98,_0x4e1aaf,void 0x0,void 0x0,_0x53db0d,_0xcff844,_0x2f87d1,_0x3dd0c2,_0x20d64b,_0x234a55,_0x3e892c,void 0x0,void 0x0,void 0x0,_0x4141e2,_0x51640d,_0x3138f3,void 0x0,_0x1bf276['bind'](void 0x0,0x0),_0x1bf276['bind'](void 0x0,0x1),_0x24bd35[_0x2273f6(0xbc2)](void 0x0,_0xebd38c),_0x24bd35[_0x2273f6(0xbc2)](void 0x0,_0x55da56),_0x499491['bind'](void 0x0,0x0),_0x499491[_0x2273f6(0xbc2)](void 0x0,0x1),_0x31e611[_0x2273f6(0xbc2)](void 0x0,0x0),_0x31e611[_0x2273f6(0xbc2)](void 0x0,0x1),_0x10a680['bind'](void 0x0,0x0),_0x10a680[_0x2273f6(0xbc2)](void 0x0,0x1),_0x4a5e59,_0x1386cf,_0xb902a0[_0x2273f6(0xbc2)](void 0x0,0x0),_0xb902a0['bind'](void 0x0,0x1),_0x3c2269,_0x2da1b5,_0xed4a3['bind'](void 0x0,0x0),_0xed4a3[_0x2273f6(0xbc2)](void 0x0,0x1),_0x16907e,_0xbba30,_0x350868,_0x383e02,_0x3690d1,_0x45a0a9,_0x4f8fbb['bind'](void 0x0,0x0),_0x4f8fbb['bind'](void 0x0,0x1),void 0x0,_0x1d0185[_0x2273f6(0xbc2)](void 0x0,0x0),_0x1d0185[_0x2273f6(0xbc2)](void 0x0,0x1),_0xc57e9,void 0x0,_0x96602f,void 0x0,void 0x0,_0x19a4ad,_0x173733,_0x1dd064,_0x322303,_0x41bea7,_0x20c84f,_0x2a989f,_0x449154,_0x560db2,_0x24c5d8,_0xa25163,_0xf0da47,_0x6a55b4,_0x4edd6b[_0x2273f6(0xbc2)](void 0x0,0x1),_0x33d7b4,_0x25e007,_0x2c3570,_0x4bbcf3,_0x587cc2,_0x22cbf9,_0x258075,_0xdf05a,_0x4a952e,_0x1d1fe6,_0x2457dc['bind'](void 0x0,0x0),_0x2457dc[_0x2273f6(0xbc2)](void 0x0,0x1),_0x2457dc[_0x2273f6(0xbc2)](void 0x0,0x2),_0x2457dc[_0x2273f6(0xbc2)](void 0x0,0x3),void 0x0,void 0x0,void 0x0,void 0x0,_0x1d8eb7,_0x4edd6b['bind'](void 0x0,0x2),_0x4edd6b[_0x2273f6(0xbc2)](void 0x0,0x3),_0x1a7627[_0x2273f6(0xbc2)](void 0x0,0x1),_0x1a7627[_0x2273f6(0xbc2)](void 0x0,0x2),_0x1a7627[_0x2273f6(0xbc2)](void 0x0,0x3),_0x37db6f,_0x3e5f60,void 0x0,void 0x0,_0x35d2a5,void 0x0,_0x587af2,_0x49963c,_0xcff844,_0xcff844,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,_0x532968,_0x57d83a['bind'](void 0x0,0x0),_0x57d83a[_0x2273f6(0xbc2)](void 0x0,0x1),_0x51b1c4,void 0x0,_0x48e4f8,_0xc45ec0,_0x1834a1,_0x3cab1c,_0x5f4e55,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,void 0x0,_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x1),_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x2),_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x3),_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x4),_0x49337e['bind'](void 0x0,0x5),_0x49337e['bind'](void 0x0,0x6),_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x7),_0x49337e[_0x2273f6(0xbc2)](void 0x0,0x8),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x1),_0x24b292['bind'](void 0x0,0x2),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x3),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x4),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x5),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x6),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x7),_0x24b292[_0x2273f6(0xbc2)](void 0x0,0x8),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x0,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x0,0x0,0x1),_0x55e2a6['bind'](void 0x0,0x0,0x0,0x0,0x0,0x2),_0x55e2a6['bind'](void 0x0,0x0,0x0,0x0,0x0,0x3),_0x55e2a6['bind'](void 0x0,0x0,0x0,0x0,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x0,0x1,0x1),_0x55e2a6['bind'](void 0x0,0x0,0x0,0x0,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x0,0x1,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x0,0x1,0x1,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x0,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x0,0x0,0x1),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x0,0x0,0x2),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x0,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x0,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x0,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x0,0x1,0x2),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x0,0x1,0x3),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x1,0x0,0x0),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x1,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x1,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x1,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x1,0x1,0x0),_0x55e2a6['bind'](void 0x0,0x0,0x1,0x1,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x1,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x0,0x1,0x1,0x1,0x3),_0x55e2a6['bind'](void 0x0,0x1,0x0,0x0,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x0,0x1,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x1,0x0),_0x55e2a6['bind'](void 0x0,0x1,0x0,0x1,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x0,0x1,0x1,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x1,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x0,0x1,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x0,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x0,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x0,0x2),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x0,0x3),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x1,0x0),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x1,0x1),_0x55e2a6[_0x2273f6(0xbc2)](void 0x0,0x1,0x1,0x1,0x1,0x2),_0x55e2a6['bind'](void 0x0,0x1,0x1,0x1,0x1,0x3)];var _0x529b79=_0x4a8035;function _0x92e459(_0x58cf9b){const _0x52d8d7=_0x2273f6;this['char']=_0x58cf9b,this[_0x52d8d7(0x1b6)]={},this[_0x52d8d7(0x3aa)]=null;}function _0x54e500(_0x5b748,_0x6b953f,_0x482704){const _0x36d0c5=_0x2273f6;this[_0x36d0c5(0xc17)]=_0x482704,this[_0x36d0c5(0x87e)]=_0x5b748,this['endOffset']=_0x6b953f;}function _0x3a720a(_0x454668,_0x17b612,_0xa87447){const _0x405be5=_0x2273f6;this['contextName']=_0x454668,this[_0x405be5(0x949)]=null,this[_0x405be5(0x6b6)]=[],this[_0x405be5(0xa4d)]=_0x17b612,this['checkEnd']=_0xa87447;}function _0x50249b(_0x42521e,_0x2b898b){const _0x399011=_0x2273f6;this[_0x399011(0x12b)]=_0x42521e,this['index']=_0x2b898b,this[_0x399011(0xba6)]=_0x42521e[_0x399011(0xba6)],this[_0x399011(0x2c3)]=_0x42521e[_0x2b898b],this[_0x399011(0x368)]=_0x42521e[_0x399011(0x688)](0x0,_0x2b898b),this[_0x399011(0x570)]=_0x42521e[_0x399011(0x688)](_0x2b898b+0x1);}function _0x4c491e(_0x1ba52b){const _0x4cbde3=_0x2273f6;this[_0x4cbde3(0x218)]=_0x1ba52b,this[_0x4cbde3(0xa4a)]=[];}function _0x5c6c98(_0x248f74){const _0x1319ce=_0x2273f6;let _0x46dc79=[_0x1319ce(0x3c1),_0x1319ce(0x392),_0x1319ce(0x91b),_0x1319ce(0x374),'contextStart',_0x1319ce(0x650),_0x1319ce(0x1f7),'removeToken',_0x1319ce(0x605),'replaceToken',_0x1319ce(0x7dc),'composeRUD','updateContextsRanges'];for(let _0x28500c=0x0;_0x28500c<_0x46dc79[_0x1319ce(0xba6)];_0x28500c++){let _0x47670c=_0x46dc79[_0x28500c];Object[_0x1319ce(0x18b)](this[_0x1319ce(0x4f1)],_0x47670c,{'value':new _0x4c491e(_0x47670c)});}if(_0x248f74)for(let _0x2ccae8=0x0;_0x2ccae8<_0x46dc79['length'];_0x2ccae8++){let _0x405036=_0x46dc79[_0x2ccae8],_0x112a78=_0x248f74[_0x405036];typeof _0x112a78=='function'&&this[_0x1319ce(0x4f1)][_0x405036][_0x1319ce(0x5c1)](_0x112a78);}let _0x1ef802=[_0x1319ce(0x1f7),_0x1319ce(0x80d),'removeRange','replaceToken',_0x1319ce(0x7dc),_0x1319ce(0x199)];for(let _0x519fd9=0x0;_0x519fd9<_0x1ef802[_0x1319ce(0xba6)];_0x519fd9++){let _0x463c9b=_0x1ef802[_0x519fd9];this['events'][_0x463c9b]['subscribe'](this[_0x1319ce(0x706)]);}}function _0x13b4f7(_0x1abdbf){const _0x35b026=_0x2273f6;this[_0x35b026(0xb43)]=[],this['registeredContexts']={},this[_0x35b026(0x711)]=[],this[_0x35b026(0x4f1)]={},this[_0x35b026(0x9b9)]=[],_0x5c6c98['call'](this,_0x1abdbf);}_0x92e459['prototype'][_0x2273f6(0x45c)]=function(_0x13bb47,_0x596da7){const _0x36d032=_0x2273f6;return this['state'][_0x13bb47]=_0x596da7,this[_0x36d032(0x3aa)]={'key':_0x13bb47,'value':this[_0x36d032(0x1b6)][_0x13bb47]},this[_0x36d032(0x3aa)];},_0x92e459[_0x2273f6(0x505)][_0x2273f6(0xaf6)]=function(_0x1a61b8){const _0x5d32ec=_0x2273f6;return this[_0x5d32ec(0x1b6)][_0x1a61b8]||null;},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x99d)]=function(_0x222882){const _0x391714=_0x2273f6;return _0x222882>=0x0&&_0x222882<this[_0x391714(0xb43)]['length'];},_0x13b4f7['prototype'][_0x2273f6(0x199)]=function(_0x4151be){const _0x3e1e64=_0x2273f6;let _0x155494=_0x4151be['map'](_0xb62ffd=>this[_0xb62ffd[0x0]]['apply'](this,_0xb62ffd['slice'](0x1)[_0x3e1e64(0xaba)](!0x0))),_0x1a8fcb=_0x33532a=>typeof _0x33532a==_0x3e1e64(0x961)&&Object['prototype'][_0x3e1e64(0x9d6)][_0x3e1e64(0x3f4)](_0x33532a,_0x3e1e64(0x9ba));if(_0x155494[_0x3e1e64(0xbaa)](_0x1a8fcb))return{'FAIL':_0x3e1e64(0x53b),'report':_0x155494[_0x3e1e64(0xbcd)](_0x1a8fcb)};this[_0x3e1e64(0x3b6)](_0x3e1e64(0x199),[_0x155494['filter'](_0x26bf77=>!_0x1a8fcb(_0x26bf77))]);},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x7dc)]=function(_0x2cb65c,_0xf984e4,_0x305415,_0x2a3c43){const _0x263f3e=_0x2273f6;_0xf984e4=_0xf984e4===null?this[_0x263f3e(0xb43)][_0x263f3e(0xba6)]:_0xf984e4;let _0x3f3f80=_0x305415[_0x263f3e(0xbaa)](_0x3c998d=>_0x3c998d instanceof _0x92e459);if(!isNaN(_0x2cb65c)&&this['inboundIndex'](_0x2cb65c)&&_0x3f3f80){let _0x181c81=this[_0x263f3e(0xb43)][_0x263f3e(0x98b)]['apply'](this[_0x263f3e(0xb43)],[_0x2cb65c,_0xf984e4][_0x263f3e(0xaba)](_0x305415));return _0x2a3c43||this[_0x263f3e(0x3b6)](_0x263f3e(0xc5f),[_0x2cb65c,_0xf984e4,_0x305415]),[_0x181c81,_0x305415];}else return{'FAIL':_0x263f3e(0x7b2)};},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xc5f)]=function(_0x52ef7b,_0x40c2da,_0x6469f2){const _0x50a1ea=_0x2273f6;if(!isNaN(_0x52ef7b)&&this[_0x50a1ea(0x99d)](_0x52ef7b)&&_0x40c2da instanceof _0x92e459){let _0x18950e=this[_0x50a1ea(0xb43)][_0x50a1ea(0x98b)](_0x52ef7b,0x1,_0x40c2da);return _0x6469f2||this[_0x50a1ea(0x3b6)](_0x50a1ea(0xc5f),[_0x52ef7b,_0x40c2da]),[_0x18950e[0x0],_0x40c2da];}else return{'FAIL':_0x50a1ea(0xc0b)};},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x605)]=function(_0x4d967a,_0x352016,_0x1757ea){const _0x11c51e=_0x2273f6;_0x352016=isNaN(_0x352016)?this[_0x11c51e(0xb43)][_0x11c51e(0xba6)]:_0x352016;let _0x28d75a=this['tokens'][_0x11c51e(0x98b)](_0x4d967a,_0x352016);return _0x1757ea||this[_0x11c51e(0x3b6)]('removeRange',[_0x28d75a,_0x4d967a,_0x352016]),_0x28d75a;},_0x13b4f7[_0x2273f6(0x505)]['removeToken']=function(_0x9ded07,_0x144366){const _0x47c316=_0x2273f6;if(!isNaN(_0x9ded07)&&this['inboundIndex'](_0x9ded07)){let _0x57a16a=this[_0x47c316(0xb43)][_0x47c316(0x98b)](_0x9ded07,0x1);return _0x144366||this['dispatch'](_0x47c316(0x80d),[_0x57a16a,_0x9ded07]),_0x57a16a;}else return{'FAIL':_0x47c316(0x48e)};},_0x13b4f7['prototype'][_0x2273f6(0x1f7)]=function(_0x44ba9e,_0x52bd37,_0x5085d1){const _0x16046a=_0x2273f6;return _0x44ba9e[_0x16046a(0xbaa)](_0x395744=>_0x395744 instanceof _0x92e459)?(this[_0x16046a(0xb43)][_0x16046a(0x98b)][_0x16046a(0x640)](this[_0x16046a(0xb43)],[_0x52bd37,0x0][_0x16046a(0xaba)](_0x44ba9e)),_0x5085d1||this['dispatch']('insertToken',[_0x44ba9e,_0x52bd37]),_0x44ba9e):{'FAIL':'insertToken:\x20invalid\x20token(s).'};},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x9f2)]=function(_0x523649,_0x39ba21,_0x52a610){const _0x1b35b0=_0x2273f6;this[_0x1b35b0(0x4f1)][_0x1b35b0(0x374)][_0x1b35b0(0x5c1)](function(_0x20edb1,_0x38fdda){const _0xad9bff=_0x1b35b0;let _0x34e14f=[_0x20edb1,_0x38fdda],_0x47f73b=_0x39ba21===null||_0x39ba21[_0xad9bff(0x640)](this,_0x34e14f)===!0x0,_0x385cad=[_0x20edb1,_0x38fdda];if(_0x47f73b){let _0x48b2be=_0x52a610['apply'](this,_0x385cad);_0x20edb1[_0xad9bff(0x45c)](_0x523649,_0x48b2be);}}),this[_0x1b35b0(0x9b9)][_0x1b35b0(0x381)](_0x523649);},_0x4c491e[_0x2273f6(0x505)][_0x2273f6(0x5c1)]=function(_0x568a81){const _0x128d1d=_0x2273f6;return typeof _0x568a81==_0x128d1d(0x9df)?this['subscribers'][_0x128d1d(0x381)](_0x568a81)-0x1:{'FAIL':_0x128d1d(0x4cc)+this['eventId']+_0x128d1d(0x73f)};},_0x4c491e[_0x2273f6(0x505)][_0x2273f6(0x307)]=function(_0x381ee1){const _0x56e12b=_0x2273f6;this[_0x56e12b(0xa4a)][_0x56e12b(0x98b)](_0x381ee1,0x1);},_0x50249b[_0x2273f6(0x505)][_0x2273f6(0xae8)]=function(_0x5c35ac){const _0x24e420=_0x2273f6;this[_0x24e420(0x2c6)]=_0x5c35ac,this[_0x24e420(0x2c3)]=this[_0x24e420(0x12b)][_0x5c35ac],this[_0x24e420(0x368)]=this['context'][_0x24e420(0x688)](0x0,_0x5c35ac),this['lookahead']=this['context'][_0x24e420(0x688)](_0x5c35ac+0x1);},_0x50249b[_0x2273f6(0x505)][_0x2273f6(0x2ad)]=function(_0x5bccc0){const _0x3eb119=_0x2273f6;switch(!0x0){case _0x5bccc0===0x0:return this[_0x3eb119(0x2c3)];case _0x5bccc0<0x0&&Math[_0x3eb119(0x7f7)](_0x5bccc0)<=this[_0x3eb119(0x368)]['length']:return this[_0x3eb119(0x368)][_0x3eb119(0x688)](_0x5bccc0)[0x0];case _0x5bccc0>0x0&&_0x5bccc0<=this[_0x3eb119(0x570)]['length']:return this['lookahead'][_0x5bccc0-0x1];default:return null;}},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xc16)]=function(_0x33b4bf){const _0x475737=_0x2273f6;if(_0x33b4bf instanceof _0x54e500)return this[_0x475737(0xc77)](_0x33b4bf)['map'](_0x14d244=>_0x14d244['char'])[_0x475737(0xb26)]('');},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xab1)]=function(){const _0x1103a3=_0x2273f6;return this[_0x1103a3(0xb43)]['map'](_0x57dfed=>_0x57dfed['char'])[_0x1103a3(0xb26)]('');},_0x13b4f7['prototype'][_0x2273f6(0x2f2)]=function(_0x2e2ccb){const _0x6b1a6f=_0x2273f6;return this[_0x6b1a6f(0x1ee)][_0x2e2ccb]||null;},_0x13b4f7[_0x2273f6(0x505)]['on']=function(_0x3a14b3,_0x4bba7e){const _0x37da9c=_0x2273f6;let _0x46d19a=this[_0x37da9c(0x4f1)][_0x3a14b3];return _0x46d19a?_0x46d19a[_0x37da9c(0x5c1)](_0x4bba7e):null;},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x3b6)]=function(_0x2d0cf7,_0x23eef8){const _0x420f74=_0x2273f6;let _0x54c564=this[_0x420f74(0x4f1)][_0x2d0cf7];if(_0x54c564 instanceof _0x4c491e){for(let _0x4e9d60=0x0;_0x4e9d60<_0x54c564[_0x420f74(0xa4a)][_0x420f74(0xba6)];_0x4e9d60++)_0x54c564['subscribers'][_0x4e9d60][_0x420f74(0x640)](this,_0x23eef8||[]);}},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x6fe)]=function(_0x278227,_0x35d539,_0xfa246b){const _0x277a1e=_0x2273f6;if(this[_0x277a1e(0x2f2)](_0x278227))return{'FAIL':_0x277a1e(0x21a)+_0x278227+'\x27\x20is\x20already\x20registered.'};if(typeof _0x35d539!=_0x277a1e(0x9df))return{'FAIL':_0x277a1e(0x8fc)};if(typeof _0xfa246b!=_0x277a1e(0x9df))return{'FAIL':_0x277a1e(0x950)};let _0x564cae=new _0x3a720a(_0x278227,_0x35d539,_0xfa246b);return this[_0x277a1e(0x1ee)][_0x278227]=_0x564cae,this[_0x277a1e(0x711)][_0x277a1e(0x381)](_0x564cae),_0x564cae;},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xc77)]=function(_0x5c87c1){const _0xad0cf2=_0x2273f6;let _0xa11bf0=_0x5c87c1[_0xad0cf2(0x87e)]+_0x5c87c1[_0xad0cf2(0xa5c)];return[][_0xad0cf2(0xaba)](this[_0xad0cf2(0xb43)][_0xad0cf2(0x688)](_0x5c87c1[_0xad0cf2(0x87e)],_0xa11bf0));},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x954)]=function(_0x3a1955){const _0x1301a4=_0x2273f6;let _0x59446d=this[_0x1301a4(0x2f2)](_0x3a1955);return _0x59446d?_0x59446d[_0x1301a4(0x6b6)]:{'FAIL':'context\x20checker\x20\x27'+_0x3a1955+_0x1301a4(0x371)};},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x6ef)]=function(){const _0x1257ce=_0x2273f6;let _0x39417b=this['registeredContexts'];for(let _0x4c2389 in _0x39417b)if(Object['prototype'][_0x1257ce(0x9d6)][_0x1257ce(0x3f4)](_0x39417b,_0x4c2389)){let _0x4ad5b9=_0x39417b[_0x4c2389];_0x4ad5b9[_0x1257ce(0x6b6)]=[];}},_0x13b4f7['prototype'][_0x2273f6(0x706)]=function(){const _0x392eaa=_0x2273f6;this[_0x392eaa(0x6ef)]();let _0x138b4d=this[_0x392eaa(0xb43)][_0x392eaa(0xb06)](_0x51e3fc=>_0x51e3fc[_0x392eaa(0x58e)]);for(let _0x5408b2=0x0;_0x5408b2<_0x138b4d[_0x392eaa(0xba6)];_0x5408b2++){let _0x339a6f=new _0x50249b(_0x138b4d,_0x5408b2);this[_0x392eaa(0x4f3)](_0x339a6f);}this[_0x392eaa(0x3b6)](_0x392eaa(0x706),[this['registeredContexts']]);},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xc3b)]=function(_0x51bb5c,_0x416b66){const _0x3a72d9=_0x2273f6;let _0xb0ef38=this[_0x3a72d9(0x2f2)](_0x416b66)[_0x3a72d9(0x949)][_0x3a72d9(0x87e)],_0x59b1c6=new _0x54e500(_0xb0ef38,_0x51bb5c,_0x416b66),_0x309dbb=this[_0x3a72d9(0x2f2)](_0x416b66)[_0x3a72d9(0x6b6)];return _0x59b1c6[_0x3a72d9(0x1a2)]=_0x416b66+'.'+_0x309dbb['length'],_0x309dbb[_0x3a72d9(0x381)](_0x59b1c6),this[_0x3a72d9(0x2f2)](_0x416b66)[_0x3a72d9(0x949)]=null,_0x59b1c6;},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0x4f3)]=function(_0x2408a3){const _0x534170=_0x2273f6;let _0x2fc56c=_0x2408a3[_0x534170(0x2c6)];for(let _0x12b4a8=0x0;_0x12b4a8<this['contextCheckers'][_0x534170(0xba6)];_0x12b4a8++){let _0x1b8595=this[_0x534170(0x711)][_0x12b4a8],_0xb01ce3=_0x1b8595[_0x534170(0xc17)],_0x225373=this[_0x534170(0x2f2)](_0xb01ce3)[_0x534170(0x949)];if(!_0x225373&&_0x1b8595['checkStart'](_0x2408a3)&&(_0x225373=new _0x54e500(_0x2fc56c,null,_0xb01ce3),this[_0x534170(0x2f2)](_0xb01ce3)['openRange']=_0x225373,this[_0x534170(0x3b6)]('contextStart',[_0xb01ce3,_0x2fc56c])),_0x225373&&_0x1b8595[_0x534170(0x19b)](_0x2408a3)){let _0x4c9c34=_0x2fc56c-_0x225373[_0x534170(0x87e)]+0x1,_0x54a214=this[_0x534170(0xc3b)](_0x4c9c34,_0xb01ce3);this[_0x534170(0x3b6)](_0x534170(0x650),[_0xb01ce3,_0x54a214]);}}},_0x13b4f7[_0x2273f6(0x505)][_0x2273f6(0xc4f)]=function(_0x4c6263){const _0x2e039f=_0x2273f6;this[_0x2e039f(0xb43)]=[],this['resetContextsRanges']();let _0x7f972a=Array[_0x2e039f(0x8c1)](_0x4c6263);this[_0x2e039f(0x3b6)](_0x2e039f(0x3c1));for(let _0x104f0c=0x0;_0x104f0c<_0x7f972a['length'];_0x104f0c++){let _0x176212=_0x7f972a[_0x104f0c],_0x59fd9e=new _0x50249b(_0x7f972a,_0x104f0c);this[_0x2e039f(0x3b6)](_0x2e039f(0x91b),[_0x59fd9e]),this[_0x2e039f(0x4f3)](_0x59fd9e);let _0x2b6f07=new _0x92e459(_0x176212);this[_0x2e039f(0xb43)]['push'](_0x2b6f07),this[_0x2e039f(0x3b6)]('newToken',[_0x2b6f07,_0x59fd9e]);}return this['dispatch'](_0x2e039f(0x392),[this[_0x2e039f(0xb43)]]),this['tokens'];};var _0x2374f6=_0x13b4f7;function _0x73ff01(_0x49ed25){return/[\u0600-\u065F\u066A-\u06D2\u06FA-\u06FF]/['test'](_0x49ed25);}function _0x12da31(_0x2b1d82){const _0x545799=_0x2273f6;return/[\u0630\u0690\u0621\u0631\u0661\u0671\u0622\u0632\u0672\u0692\u06C2\u0623\u0673\u0693\u06C3\u0624\u0694\u06C4\u0625\u0675\u0695\u06C5\u06E5\u0676\u0696\u06C6\u0627\u0677\u0697\u06C7\u0648\u0688\u0698\u06C8\u0689\u0699\u06C9\u068A\u06CA\u066B\u068B\u06CB\u068C\u068D\u06CD\u06FD\u068E\u06EE\u06FE\u062F\u068F\u06CF\u06EF]/[_0x545799(0xc39)](_0x2b1d82);}function _0x3381b2(_0x383d0d){const _0x117602=_0x2273f6;return/[\u0600-\u0605\u060C-\u060E\u0610-\u061B\u061E\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED]/[_0x117602(0xc39)](_0x383d0d);}function _0x69ca5c(_0x2b7de2){return/[\u0E00-\u0E7F]/['test'](_0x2b7de2);}function _0x2dc30f(_0x2eb60b){return/[A-z]/['test'](_0x2eb60b);}function _0x598a00(_0x22c972){const _0x31a5f8=_0x2273f6;return/\s/[_0x31a5f8(0xc39)](_0x22c972);}function _0x2b98d0(_0x410fc0){const _0x4842ec=_0x2273f6;this['font']=_0x410fc0,this[_0x4842ec(0x807)]={};}function _0x2ef941(_0xb64563){const _0x1928e6=_0x2273f6;this['id']=_0xb64563['id'],this[_0x1928e6(0xbc6)]=_0xb64563[_0x1928e6(0xbc6)],this[_0x1928e6(0xacf)]=_0xb64563[_0x1928e6(0xacf)];}function _0xa0858f(_0x255123,_0x1ac2d6){const _0x407a57=_0x2273f6;if(!_0x255123)return-0x1;switch(_0x1ac2d6[_0x407a57(0xc00)]){case 0x1:return _0x1ac2d6[_0x407a57(0x70a)][_0x407a57(0x709)](_0x255123);case 0x2:{let _0x1cb632=_0x1ac2d6['ranges'];for(let _0x1a3a62=0x0;_0x1a3a62<_0x1cb632['length'];_0x1a3a62++){let _0x148811=_0x1cb632[_0x1a3a62];if(_0x255123>=_0x148811['start']&&_0x255123<=_0x148811['end']){let _0x13e692=_0x255123-_0x148811[_0x407a57(0x3c1)];return _0x148811[_0x407a57(0x2c6)]+_0x13e692;}}break;}default:return-0x1;}return-0x1;}function _0x6eeb9(_0x313ab0,_0xbd632a){const _0x64ad9b=_0x2273f6;return _0xa0858f(_0x313ab0,_0xbd632a['coverage'])===-0x1?null:_0x313ab0+_0xbd632a[_0x64ad9b(0x6d0)];}function _0x2663f6(_0xadd3ab,_0x3c3264){const _0x418157=_0x2273f6;let _0x4c22e4=_0xa0858f(_0xadd3ab,_0x3c3264['coverage']);return _0x4c22e4===-0x1?null:_0x3c3264[_0x418157(0x867)][_0x4c22e4];}function _0x5602d7(_0x5f16a0,_0x429146){const _0x119208=_0x2273f6;let _0xdc2a07=[];for(let _0x40c011=0x0;_0x40c011<_0x5f16a0['length'];_0x40c011++){let _0x760068=_0x5f16a0[_0x40c011],_0x278ce9=_0x429146['current'];_0x278ce9=Array[_0x119208(0x461)](_0x278ce9)?_0x278ce9[0x0]:_0x278ce9;let _0xe0f49=_0xa0858f(_0x278ce9,_0x760068);_0xe0f49!==-0x1&&_0xdc2a07[_0x119208(0x381)](_0xe0f49);}return _0xdc2a07['length']===_0x5f16a0[_0x119208(0xba6)]?_0xdc2a07:-0x1;}function _0x15546e(_0x387a3d,_0x3abf43){const _0x3ae3ff=_0x2273f6;let _0x2348f9=_0x3abf43[_0x3ae3ff(0x712)][_0x3ae3ff(0xba6)]+_0x3abf43[_0x3ae3ff(0x1a8)][_0x3ae3ff(0xba6)]+_0x3abf43[_0x3ae3ff(0x4e6)][_0x3ae3ff(0xba6)];if(_0x387a3d[_0x3ae3ff(0x12b)][_0x3ae3ff(0xba6)]<_0x2348f9)return[];let _0x1bfc5c=_0x5602d7(_0x3abf43[_0x3ae3ff(0x712)],_0x387a3d);if(_0x1bfc5c===-0x1)return[];let _0x3afb8c=_0x3abf43[_0x3ae3ff(0x712)][_0x3ae3ff(0xba6)]-0x1;if(_0x387a3d[_0x3ae3ff(0x570)][_0x3ae3ff(0xba6)]<_0x3abf43['lookaheadCoverage'][_0x3ae3ff(0xba6)])return[];let _0xcf1f4c=_0x387a3d[_0x3ae3ff(0x570)][_0x3ae3ff(0x688)](_0x3afb8c);for(;_0xcf1f4c[_0x3ae3ff(0xba6)]&&_0x3381b2(_0xcf1f4c[0x0]['char']);)_0xcf1f4c['shift']();let _0x588c0c=new _0x50249b(_0xcf1f4c,0x0),_0x52a47c=_0x5602d7(_0x3abf43[_0x3ae3ff(0x1a8)],_0x588c0c),_0x476098=[]['concat'](_0x387a3d[_0x3ae3ff(0x368)]);for(_0x476098[_0x3ae3ff(0x72a)]();_0x476098[_0x3ae3ff(0xba6)]&&_0x3381b2(_0x476098[0x0][_0x3ae3ff(0x58e)]);)_0x476098[_0x3ae3ff(0x5b2)]();if(_0x476098['length']<_0x3abf43['backtrackCoverage'][_0x3ae3ff(0xba6)])return[];let _0x2f71db=new _0x50249b(_0x476098,0x0),_0x334abc=_0x5602d7(_0x3abf43['backtrackCoverage'],_0x2f71db),_0x377361=_0x1bfc5c[_0x3ae3ff(0xba6)]===_0x3abf43[_0x3ae3ff(0x712)][_0x3ae3ff(0xba6)]&&_0x52a47c[_0x3ae3ff(0xba6)]===_0x3abf43['lookaheadCoverage'][_0x3ae3ff(0xba6)]&&_0x334abc[_0x3ae3ff(0xba6)]===_0x3abf43[_0x3ae3ff(0x4e6)][_0x3ae3ff(0xba6)],_0x168774=[];if(_0x377361)for(let _0x17d16f=0x0;_0x17d16f<_0x3abf43['lookupRecords'][_0x3ae3ff(0xba6)];_0x17d16f++){let _0x23027c=_0x3abf43[_0x3ae3ff(0x503)][_0x17d16f],_0x39be6f=_0x23027c['lookupListIndex'],_0x257c19=this['getLookupByIndex'](_0x39be6f);for(let _0x58fc4e=0x0;_0x58fc4e<_0x257c19[_0x3ae3ff(0xa97)][_0x3ae3ff(0xba6)];_0x58fc4e++){let _0x23bdce=_0x257c19[_0x3ae3ff(0xa97)][_0x58fc4e],_0x43aba5,_0x41ab33=this[_0x3ae3ff(0x5e0)](_0x257c19,_0x23bdce);if(_0x41ab33==='71'?(_0x41ab33=this[_0x3ae3ff(0x5e0)](_0x23bdce,_0x23bdce['extension']),_0x43aba5=this['getLookupMethod'](_0x23bdce,_0x23bdce[_0x3ae3ff(0x108)]),_0x23bdce=_0x23bdce[_0x3ae3ff(0x108)]):_0x43aba5=this[_0x3ae3ff(0x269)](_0x257c19,_0x23bdce),_0x41ab33==='12'){let _0x43325e=_0x387a3d[_0x3ae3ff(0x2ad)](_0x23027c[_0x3ae3ff(0x792)]),_0x2fbfd6=_0x43aba5(_0x43325e);_0x2fbfd6&&_0x168774[_0x3ae3ff(0x381)](_0x2fbfd6);}else{if(_0x41ab33==='21'){let _0xe2a237=_0x387a3d['get'](_0x23027c[_0x3ae3ff(0x792)]),_0x902c6d=_0x43aba5(_0xe2a237);_0x902c6d&&_0x168774[_0x3ae3ff(0x381)](_0x902c6d);}else throw Error('Substitution\x20type\x20'+_0x41ab33+_0x3ae3ff(0x48b));}}}return _0x168774;}function _0x3ebd5c(_0x52ba92,_0x51edda){const _0x571fb2=_0x2273f6;let _0x571cc6=_0x52ba92[_0x571fb2(0x2c3)],_0x5565b6=_0xa0858f(_0x571cc6,_0x51edda[_0x571fb2(0x8aa)]);if(_0x5565b6===-0x1)return null;let _0x1edfc0,_0x2b2bb0=_0x51edda[_0x571fb2(0x4e5)][_0x5565b6];for(let _0x1e7954=0x0;_0x1e7954<_0x2b2bb0[_0x571fb2(0xba6)];_0x1e7954++){_0x1edfc0=_0x2b2bb0[_0x1e7954];for(let _0x15de5e=0x0;_0x15de5e<_0x1edfc0[_0x571fb2(0x667)][_0x571fb2(0xba6)]&&_0x52ba92[_0x571fb2(0x570)][_0x15de5e]===_0x1edfc0[_0x571fb2(0x667)][_0x15de5e];_0x15de5e++)if(_0x15de5e===_0x1edfc0[_0x571fb2(0x667)][_0x571fb2(0xba6)]-0x1)return _0x1edfc0;}return null;}function _0x5514ba(_0x534baa,_0x53e82d){const _0x89079e=_0x2273f6;let _0xca899d=_0x534baa['current'];if(_0xa0858f(_0xca899d,_0x53e82d[_0x89079e(0x8aa)])===-0x1)return null;for(let _0x507f78 of _0x53e82d[_0x89079e(0xb70)])for(let _0x158c52 of _0x507f78){let _0x46357d=!0x0;for(let _0x432656=0x0;_0x432656<_0x158c52[_0x89079e(0x526)][_0x89079e(0xba6)];_0x432656++)if(_0x534baa[_0x89079e(0x570)][_0x432656]!==_0x158c52[_0x89079e(0x526)][_0x432656]){_0x46357d=!0x1;break;}if(_0x46357d){let _0x3b53a5=[];_0x3b53a5[_0x89079e(0x381)](_0xca899d);for(let _0x7156ef=0x0;_0x7156ef<_0x158c52['input'][_0x89079e(0xba6)];_0x7156ef++)_0x3b53a5[_0x89079e(0x381)](_0x158c52['input'][_0x7156ef]);let _0x433686=(_0x466e14,_0x49d7c6)=>{let {lookupListIndex:_0x3b9023,sequenceIndex:_0xfcbf3b}=_0x49d7c6,{subtables:_0x18a0d4}=this['getLookupByIndex'](_0x3b9023);for(let _0xd0b19 of _0x18a0d4)_0xa0858f(_0x466e14[_0xfcbf3b],_0xd0b19['coverage'])!==-0x1&&(_0x466e14[_0xfcbf3b]=_0xd0b19['deltaGlyphId']);};for(let _0xca337d=0x0;_0xca337d<_0x158c52[_0x89079e(0x503)][_0x89079e(0xba6)];_0xca337d++){let _0x591192=_0x158c52[_0x89079e(0x503)][_0xca337d];_0x433686(_0x3b53a5,_0x591192);}return _0x3b53a5;}}return null;}function _0x2ffaf6(_0x2afca5,_0x283f16){const _0x2ca3c1=_0x2273f6;if(_0x2afca5[_0x2ca3c1(0x12b)]['length']<_0x283f16[_0x2ca3c1(0x879)][_0x2ca3c1(0xba6)])return[];for(let _0x1bc553=0x0;_0x1bc553<_0x283f16['coverages'][_0x2ca3c1(0xba6)];_0x1bc553++){let _0x49bcf3=_0x2afca5['get'](_0x1bc553);if(_0x49bcf3=Array[_0x2ca3c1(0x461)](_0x49bcf3)?_0x49bcf3[0x0]:_0x49bcf3,_0xa0858f(_0x49bcf3,_0x283f16['coverages'][_0x1bc553])===-0x1)return[];}let _0x4b172a=[];for(let _0xca9cc0=0x0;_0xca9cc0<_0x283f16[_0x2ca3c1(0x503)][_0x2ca3c1(0xba6)];_0xca9cc0++){let _0x4a3cf6=_0x283f16['lookupRecords'][_0xca9cc0],_0x546a12=_0x4a3cf6['lookupListIndex'],_0x3a3db9=this[_0x2ca3c1(0x112)](_0x546a12);for(let _0x1d9722=0x0;_0x1d9722<_0x3a3db9[_0x2ca3c1(0xa97)][_0x2ca3c1(0xba6)];_0x1d9722++){let _0x4dd3b1=_0x3a3db9[_0x2ca3c1(0xa97)][_0x1d9722],_0x128f75,_0xf99a1f=this[_0x2ca3c1(0x5e0)](_0x3a3db9,_0x4dd3b1);if(_0xf99a1f==='71'?(_0xf99a1f=this[_0x2ca3c1(0x5e0)](_0x4dd3b1,_0x4dd3b1['extension']),_0x128f75=this[_0x2ca3c1(0x269)](_0x4dd3b1,_0x4dd3b1[_0x2ca3c1(0x108)]),_0x4dd3b1=_0x4dd3b1[_0x2ca3c1(0x108)]):_0x128f75=this[_0x2ca3c1(0x269)](_0x3a3db9,_0x4dd3b1),_0xf99a1f==='12'){let _0x2cae20=_0x2afca5['get'](_0x4a3cf6[_0x2ca3c1(0x792)]),_0x2a8a2e=_0x128f75(_0x2cae20);_0x2a8a2e&&_0x4b172a['push'](_0x2a8a2e);}else{if(_0xf99a1f==='21'){let _0x2df530=_0x2afca5['get'](_0x4a3cf6[_0x2ca3c1(0x792)]),_0x29933e=_0x128f75(_0x2df530);_0x29933e&&_0x4b172a['push'](_0x29933e);}}}}return _0x4b172a;}function _0x1aee73(_0x4521bc,_0x35f475){const _0x2132ff=_0x2273f6;let _0x2667c2=_0xa0858f(_0x4521bc,_0x35f475[_0x2132ff(0x8aa)]);return _0x2667c2===-0x1?null:_0x35f475[_0x2132ff(0x32a)][_0x2667c2];}_0x2b98d0[_0x2273f6(0x505)][_0x2273f6(0xbbb)]=function(){const _0x41e8b0=_0x2273f6;let _0x45d791=this[_0x41e8b0(0x7da)][_0x41e8b0(0x796)][_0x41e8b0(0x60f)][_0x41e8b0(0x443)];for(let _0x3af0b5=0x0;_0x3af0b5<_0x45d791['length'];_0x3af0b5++){let _0x1b4b39=_0x45d791[_0x3af0b5];if(_0x1b4b39[_0x41e8b0(0xbc6)]===_0x41e8b0(0x676))return _0x1b4b39[_0x41e8b0(0xc73)][_0x41e8b0(0xa8f)][_0x41e8b0(0x7c0)];}return[];},_0x2b98d0['prototype'][_0x2273f6(0xabb)]=function(_0xe95877){const _0x3fdd21=_0x2273f6;if(!this['font'][_0x3fdd21(0x796)][_0x3fdd21(0x60f)])return[];if(!_0xe95877)return this[_0x3fdd21(0xbbb)]();let _0x371bef=this[_0x3fdd21(0x7da)][_0x3fdd21(0x796)][_0x3fdd21(0x60f)][_0x3fdd21(0x443)];for(let _0x5163a8=0x0;_0x5163a8<_0x371bef[_0x3fdd21(0xba6)];_0x5163a8++){let _0x3e5ce5=_0x371bef[_0x5163a8];if(_0x3e5ce5[_0x3fdd21(0xbc6)]===_0xe95877&&_0x3e5ce5[_0x3fdd21(0xc73)][_0x3fdd21(0xa8f)])return _0x3e5ce5['script']['defaultLangSys'][_0x3fdd21(0x7c0)];{let _0x5a2b40=_0x3e5ce5['langSysRecords'];if(_0x5a2b40)for(let _0x45c00a=0x0;_0x45c00a<_0x5a2b40[_0x3fdd21(0xba6)];_0x45c00a++){let _0x45d76a=_0x5a2b40[_0x45c00a];if(_0x45d76a['tag']===_0xe95877)return _0x45d76a[_0x3fdd21(0x691)][_0x3fdd21(0x7c0)];}}}return this[_0x3fdd21(0xbbb)]();},_0x2b98d0[_0x2273f6(0x505)][_0x2273f6(0x386)]=function(_0x36176c,_0x4812c9){const _0x375a05=_0x2273f6;let _0x197383={};for(let _0x33fc8c=0x0;_0x33fc8c<_0x36176c[_0x375a05(0xba6)];_0x33fc8c++){let _0x378dd2=_0x36176c[_0x33fc8c][_0x375a05(0xbc6)];_0x197383[_0x378dd2]=_0x36176c[_0x33fc8c]['feature'];}this[_0x375a05(0x807)][_0x4812c9][_0x375a05(0x9d8)]=_0x197383;},_0x2b98d0[_0x2273f6(0x505)]['getScriptFeatures']=function(_0x469984){const _0x5c5c68=_0x2273f6;let _0x21a71a=this['features'][_0x469984];if(Object[_0x5c5c68(0x505)][_0x5c5c68(0x9d6)][_0x5c5c68(0x3f4)](this[_0x5c5c68(0x807)],_0x469984))return _0x21a71a;let _0x3a7435=this[_0x5c5c68(0xabb)](_0x469984);if(!_0x3a7435)return null;let _0x58667b=this[_0x5c5c68(0x7da)][_0x5c5c68(0x796)][_0x5c5c68(0x60f)];return _0x21a71a=_0x3a7435[_0x5c5c68(0xb06)](_0x40b8a7=>_0x58667b[_0x5c5c68(0x807)][_0x40b8a7]),this[_0x5c5c68(0x807)][_0x469984]=_0x21a71a,this['mapTagsToFeatures'](_0x21a71a,_0x469984),_0x21a71a;},_0x2b98d0['prototype']['getSubstitutionType']=function(_0x4e0de0,_0x46aed1){const _0x2191bc=_0x2273f6;return _0x4e0de0[_0x2191bc(0x8a6)]['toString']()+_0x46aed1[_0x2191bc(0x2f5)][_0x2191bc(0x23e)]();},_0x2b98d0[_0x2273f6(0x505)][_0x2273f6(0x269)]=function(_0x275c82,_0x328ed7){const _0x499ae9=_0x2273f6;let _0x4d2804=this[_0x499ae9(0x5e0)](_0x275c82,_0x328ed7);switch(_0x4d2804){case'11':return _0xaa35=>_0x6eeb9[_0x499ae9(0x640)](this,[_0xaa35,_0x328ed7]);case'12':return _0x4b88f5=>_0x2663f6[_0x499ae9(0x640)](this,[_0x4b88f5,_0x328ed7]);case'63':return _0x1c52b2=>_0x15546e[_0x499ae9(0x640)](this,[_0x1c52b2,_0x328ed7]);case'41':return _0xc63112=>_0x3ebd5c[_0x499ae9(0x640)](this,[_0xc63112,_0x328ed7]);case'21':return _0x12b104=>_0x1aee73[_0x499ae9(0x640)](this,[_0x12b104,_0x328ed7]);case'51':return _0x58faa5=>_0x5514ba[_0x499ae9(0x640)](this,[_0x58faa5,_0x328ed7]);case'53':return _0x2476e5=>_0x2ffaf6[_0x499ae9(0x640)](this,[_0x2476e5,_0x328ed7]);default:throw Error(_0x499ae9(0x96c)+_0x4d2804+'\x20lookupType:\x20'+_0x275c82[_0x499ae9(0x8a6)]+'\x20-\x20substFormat:\x20'+_0x328ed7['substFormat']+_0x499ae9(0xa78));}},_0x2b98d0[_0x2273f6(0x505)]['lookupFeature']=function(_0x3a218a){const _0x11fb7b=_0x2273f6;let _0x45106e=_0x3a218a[_0x11fb7b(0x31a)],_0x3687cf=_0x45106e[_0x11fb7b(0x2c6)],_0x2f23a7=this['getFeature']({'tag':_0x3a218a[_0x11fb7b(0xbc6)],'script':_0x3a218a[_0x11fb7b(0xc73)]});if(!_0x2f23a7)return Error(_0x11fb7b(0x4cf)+(this[_0x11fb7b(0x7da)][_0x11fb7b(0xb8f)][_0x11fb7b(0x423)]||this[_0x11fb7b(0x7da)][_0x11fb7b(0xb8f)][_0x11fb7b(0x95c)]||this[_0x11fb7b(0x7da)][_0x11fb7b(0xb8f)][_0x11fb7b(0x97c)])[_0x11fb7b(0x117)]['en']+_0x11fb7b(0x5bb)+_0x3a218a['tag']+_0x11fb7b(0x55d)+_0x3a218a[_0x11fb7b(0xc73)]+'\x27.');let _0x31fbe5=this[_0x11fb7b(0x537)](_0x2f23a7),_0x584d2d=[][_0x11fb7b(0xaba)](_0x45106e['context']);for(let _0x162b74=0x0;_0x162b74<_0x31fbe5[_0x11fb7b(0xba6)];_0x162b74++){let _0x39f4e9=_0x31fbe5[_0x162b74],_0x4f0fe6=this['getLookupSubtables'](_0x39f4e9);for(let _0x1a3b8b=0x0;_0x1a3b8b<_0x4f0fe6[_0x11fb7b(0xba6)];_0x1a3b8b++){let _0x3f2e36=_0x4f0fe6[_0x1a3b8b],_0x560559=this['getSubstitutionType'](_0x39f4e9,_0x3f2e36),_0x39bab7;_0x560559==='71'?(_0x560559=this[_0x11fb7b(0x5e0)](_0x3f2e36,_0x3f2e36[_0x11fb7b(0x108)]),_0x39bab7=this[_0x11fb7b(0x269)](_0x3f2e36,_0x3f2e36[_0x11fb7b(0x108)]),_0x3f2e36=_0x3f2e36[_0x11fb7b(0x108)]):_0x39bab7=this['getLookupMethod'](_0x39f4e9,_0x3f2e36);let _0x43ec2e;switch(_0x560559){case'11':_0x43ec2e=_0x39bab7(_0x45106e[_0x11fb7b(0x2c3)]),_0x43ec2e&&_0x584d2d['splice'](_0x3687cf,0x1,new _0x2ef941({'id':0xb,'tag':_0x3a218a[_0x11fb7b(0xbc6)],'substitution':_0x43ec2e}));break;case'12':_0x43ec2e=_0x39bab7(_0x45106e[_0x11fb7b(0x2c3)]),_0x43ec2e&&_0x584d2d[_0x11fb7b(0x98b)](_0x3687cf,0x1,new _0x2ef941({'id':0xc,'tag':_0x3a218a[_0x11fb7b(0xbc6)],'substitution':_0x43ec2e}));break;case'63':_0x43ec2e=_0x39bab7(_0x45106e),Array['isArray'](_0x43ec2e)&&_0x43ec2e[_0x11fb7b(0xba6)]&&_0x584d2d[_0x11fb7b(0x98b)](_0x3687cf,0x1,new _0x2ef941({'id':0x3f,'tag':_0x3a218a['tag'],'substitution':_0x43ec2e}));break;case'41':_0x43ec2e=_0x39bab7(_0x45106e),_0x43ec2e&&_0x584d2d['splice'](_0x3687cf,0x1,new _0x2ef941({'id':0x29,'tag':_0x3a218a['tag'],'substitution':_0x43ec2e}));break;case'21':_0x43ec2e=_0x39bab7(_0x45106e[_0x11fb7b(0x2c3)]),_0x43ec2e&&_0x584d2d[_0x11fb7b(0x98b)](_0x3687cf,0x1,new _0x2ef941({'id':0x15,'tag':_0x3a218a[_0x11fb7b(0xbc6)],'substitution':_0x43ec2e}));break;case'51':case'53':_0x43ec2e=_0x39bab7(_0x45106e),Array['isArray'](_0x43ec2e)&&_0x43ec2e['length']&&_0x584d2d[_0x11fb7b(0x98b)](_0x3687cf,0x1,new _0x2ef941({'id':parseInt(_0x560559),'tag':_0x3a218a[_0x11fb7b(0xbc6)],'substitution':_0x43ec2e}));break;}_0x45106e=new _0x50249b(_0x584d2d,_0x3687cf),!(Array[_0x11fb7b(0x461)](_0x43ec2e)&&!_0x43ec2e[_0x11fb7b(0xba6)])&&(_0x43ec2e=null);}}return _0x584d2d[_0x11fb7b(0xba6)]?_0x584d2d:null;},_0x2b98d0['prototype'][_0x2273f6(0x94a)]=function(_0x305ef9){const _0x5a0c8f=_0x2273f6;if(!_0x305ef9[_0x5a0c8f(0xc73)])return!0x1;this[_0x5a0c8f(0x639)](_0x305ef9[_0x5a0c8f(0xc73)]);let _0x4abc93=Object[_0x5a0c8f(0x505)][_0x5a0c8f(0x9d6)][_0x5a0c8f(0x3f4)](this[_0x5a0c8f(0x807)],_0x305ef9[_0x5a0c8f(0xc73)]);if(!_0x305ef9[_0x5a0c8f(0xbc6)])return _0x4abc93;let _0x266177=this[_0x5a0c8f(0x807)][_0x305ef9[_0x5a0c8f(0xc73)]][_0x5a0c8f(0x790)](_0xe159a=>_0xe159a[_0x5a0c8f(0xbc6)]===_0x305ef9[_0x5a0c8f(0xbc6)]);return _0x4abc93&&_0x266177;},_0x2b98d0[_0x2273f6(0x505)]['getLookupSubtables']=function(_0x3a4add){return _0x3a4add['subtables']||null;},_0x2b98d0[_0x2273f6(0x505)][_0x2273f6(0x112)]=function(_0x432c22){const _0x1d8f5f=_0x2273f6;return this[_0x1d8f5f(0x7da)][_0x1d8f5f(0x796)][_0x1d8f5f(0x60f)][_0x1d8f5f(0x95f)][_0x432c22]||null;},_0x2b98d0['prototype'][_0x2273f6(0x537)]=function(_0x578d87){const _0x50b42b=_0x2273f6;return _0x578d87[_0x50b42b(0x56e)][_0x50b42b(0xb06)](this['getLookupByIndex']['bind'](this));},_0x2b98d0[_0x2273f6(0x505)][_0x2273f6(0x842)]=function(_0x46ced0){const _0x49d46f=_0x2273f6;if(!this[_0x49d46f(0x7da)])return{'FAIL':'No\x20font\x20was\x20found'};Object['prototype'][_0x49d46f(0x9d6)][_0x49d46f(0x3f4)](this['features'],_0x46ced0[_0x49d46f(0xc73)])||this[_0x49d46f(0x639)](_0x46ced0['script']);let _0x1deaf2=this[_0x49d46f(0x807)][_0x46ced0['script']];return _0x1deaf2?_0x1deaf2['tags'][_0x46ced0[_0x49d46f(0xbc6)]]?this[_0x49d46f(0x807)][_0x46ced0[_0x49d46f(0xc73)]][_0x49d46f(0x9d8)][_0x46ced0[_0x49d46f(0xbc6)]]:null:{'FAIL':_0x49d46f(0x276)+_0x46ced0['script']};};var _0x1b61c1=_0x2b98d0;function _0x20a80f(_0x4620fb){const _0x4b5029=_0x2273f6;let _0x5883e2=_0x4620fb[_0x4b5029(0x2c3)],_0x2b488d=_0x4620fb[_0x4b5029(0x2ad)](-0x1);return _0x2b488d===null&&_0x73ff01(_0x5883e2)||!_0x73ff01(_0x2b488d)&&_0x73ff01(_0x5883e2);}function _0x33da95(_0x45993b){const _0xb3e641=_0x2273f6;let _0x52c4af=_0x45993b[_0xb3e641(0x2ad)](0x1);return _0x52c4af===null||!_0x73ff01(_0x52c4af);}var _0x56385a={'startCheck':_0x20a80f,'endCheck':_0x33da95};function _0x17c787(_0x303b5c){const _0x4f99b2=_0x2273f6;let _0x3fc276=_0x303b5c[_0x4f99b2(0x2c3)],_0x1583d3=_0x303b5c[_0x4f99b2(0x2ad)](-0x1);return(_0x73ff01(_0x3fc276)||_0x3381b2(_0x3fc276))&&!_0x73ff01(_0x1583d3);}function _0x525b2b(_0x5c6de4){const _0x1228c9=_0x2273f6;let _0xe19dc2=_0x5c6de4['get'](0x1);switch(!0x0){case _0xe19dc2===null:return!0x0;case!_0x73ff01(_0xe19dc2)&&!_0x3381b2(_0xe19dc2):{let _0x142e91=_0x598a00(_0xe19dc2);if(!_0x142e91)return!0x0;if(_0x142e91){let _0x150c58=!0x1;if(_0x150c58=_0x5c6de4['lookahead'][_0x1228c9(0x790)](_0x5ba550=>_0x73ff01(_0x5ba550)||_0x3381b2(_0x5ba550)),!_0x150c58)return!0x0;}break;}default:return!0x1;}}var _0x3115dc={'startCheck':_0x17c787,'endCheck':_0x525b2b};function _0x5ced20(_0x2ee717,_0x4788ac,_0x46d771){const _0x2ff845=_0x2273f6;_0x4788ac[_0x46d771][_0x2ff845(0x45c)](_0x2ee717[_0x2ff845(0xbc6)],_0x2ee717[_0x2ff845(0xacf)]);}function _0x2078eb(_0x3387f3,_0xc50d48,_0x420cf2){const _0x47571f=_0x2273f6;_0xc50d48[_0x420cf2][_0x47571f(0x45c)](_0x3387f3[_0x47571f(0xbc6)],_0x3387f3['substitution']);}function _0x869b80(_0x5b615b,_0x55b015,_0x1b56b7){const _0x4ee9ae=_0x2273f6;for(let _0x3ad172=0x0;_0x3ad172<_0x5b615b['substitution'][_0x4ee9ae(0xba6)];_0x3ad172++){let _0x1fb360=_0x5b615b['substitution'][_0x3ad172],_0x3d4f35=_0x55b015[_0x1b56b7+_0x3ad172];if(Array[_0x4ee9ae(0x461)](_0x1fb360)){_0x1fb360['length']?_0x3d4f35[_0x4ee9ae(0x45c)](_0x5b615b[_0x4ee9ae(0xbc6)],_0x1fb360[0x0]):_0x3d4f35['setState'](_0x4ee9ae(0x520),!0x0);continue;}_0x3d4f35[_0x4ee9ae(0x45c)](_0x5b615b[_0x4ee9ae(0xbc6)],_0x1fb360);}}function _0x34cc91(_0x3e0057,_0x364035,_0x2ede36){const _0x2fb82a=_0x2273f6;let _0x56c8cc=_0x364035[_0x2ede36];_0x56c8cc[_0x2fb82a(0x45c)](_0x3e0057[_0x2fb82a(0xbc6)],_0x3e0057[_0x2fb82a(0xacf)][_0x2fb82a(0xab2)]);let _0x4051ab=_0x3e0057[_0x2fb82a(0xacf)][_0x2fb82a(0x667)][_0x2fb82a(0xba6)];for(let _0x328f87=0x0;_0x328f87<_0x4051ab;_0x328f87++)_0x56c8cc=_0x364035[_0x2ede36+_0x328f87+0x1],_0x56c8cc[_0x2fb82a(0x45c)]('deleted',!0x0);}var _0x3fb7d4={0xb:_0x5ced20,0xc:_0x2078eb,0x3f:_0x869b80,0x29:_0x34cc91,0x33:_0x869b80,0x35:_0x869b80};function _0x218697(_0x5ce8b5,_0x40f23b,_0x570777){_0x5ce8b5 instanceof _0x2ef941&&_0x3fb7d4[_0x5ce8b5['id']]&&_0x3fb7d4[_0x5ce8b5['id']](_0x5ce8b5,_0x40f23b,_0x570777);}var _0x189491=_0x218697;function _0xcd4ad6(_0x41c9f0){const _0x56b1a8=_0x2273f6;let _0x2a4c8a=[][_0x56b1a8(0xaba)](_0x41c9f0[_0x56b1a8(0x368)]);for(let _0xf023c3=_0x2a4c8a['length']-0x1;_0xf023c3>=0x0;_0xf023c3--){let _0x2e6eb2=_0x2a4c8a[_0xf023c3],_0xca1737=_0x12da31(_0x2e6eb2),_0x17accd=_0x3381b2(_0x2e6eb2);if(!_0xca1737&&!_0x17accd)return!0x0;if(_0xca1737)return!0x1;}return!0x1;}function _0x5a0458(_0x3a9496){const _0x5968fe=_0x2273f6;if(_0x12da31(_0x3a9496[_0x5968fe(0x2c3)]))return!0x1;for(let _0x26198e=0x0;_0x26198e<_0x3a9496['lookahead']['length'];_0x26198e++){let _0x69223=_0x3a9496[_0x5968fe(0x570)][_0x26198e];if(!_0x3381b2(_0x69223))return!0x0;}return!0x1;}function _0x30b8e6(_0x2fab0e){const _0x3597bc=_0x2273f6;let _0x1654d8=_0x3597bc(0x4fa),_0x49fff1=this[_0x3597bc(0x474)][_0x1654d8],_0x409250=this['tokenizer'][_0x3597bc(0xc77)](_0x2fab0e);if(_0x409250[_0x3597bc(0xba6)]===0x1)return;let _0x4090fa=new _0x50249b(_0x409250[_0x3597bc(0xb06)](_0x34d8f7=>_0x34d8f7[_0x3597bc(0xaf6)](_0x3597bc(0x3dd))),0x0),_0x1c6be9=new _0x50249b(_0x409250['map'](_0x359102=>_0x359102[_0x3597bc(0x58e)]),0x0);for(let _0x23e709=0x0;_0x23e709<_0x409250['length'];_0x23e709++){let _0x1ff9ac=_0x409250[_0x23e709];if(_0x3381b2(_0x1ff9ac[_0x3597bc(0x58e)]))continue;_0x4090fa[_0x3597bc(0xae8)](_0x23e709),_0x1c6be9[_0x3597bc(0xae8)](_0x23e709);let _0x57a4af=0x0;_0xcd4ad6(_0x1c6be9)&&(_0x57a4af|=0x1),_0x5a0458(_0x1c6be9)&&(_0x57a4af|=0x2);let _0x457427;switch(_0x57a4af){case 0x1:_0x457427=_0x3597bc(0xc80);break;case 0x2:_0x457427=_0x3597bc(0xb99);break;case 0x3:_0x457427='medi';break;}if(_0x49fff1[_0x3597bc(0x709)](_0x457427)===-0x1)continue;let _0x325352=this[_0x3597bc(0xae1)][_0x3597bc(0x611)]({'tag':_0x457427,'script':_0x1654d8,'contextParams':_0x4090fa});if(_0x325352 instanceof Error){console[_0x3597bc(0xa80)](_0x325352[_0x3597bc(0x497)]);continue;}for(let _0x356507=0x0;_0x356507<_0x325352[_0x3597bc(0xba6)];_0x356507++){let _0x1b7b86=_0x325352[_0x356507];_0x1b7b86 instanceof _0x2ef941&&(_0x189491(_0x1b7b86,_0x409250,_0x356507),_0x4090fa[_0x3597bc(0x12b)][_0x356507]=_0x1b7b86[_0x3597bc(0xacf)]);}}}var _0x14bfdb=_0x30b8e6;function _0x12ff06(_0x54e4bb,_0x1f19cd){const _0x5a59e8=_0x2273f6;return new _0x50249b(_0x54e4bb[_0x5a59e8(0xb06)](_0x1c6c20=>_0x1c6c20[_0x5a59e8(0x3aa)]['value']),_0x1f19cd||0x0);}function _0x14179d(_0xeb315c){const _0x4ed673=_0x2273f6;let _0x57557c=this['tokenizer'][_0x4ed673(0xc77)](_0xeb315c),_0x14c441=_0x12ff06(_0x57557c);for(let _0x4d31f4=0x0;_0x4d31f4<_0x14c441[_0x4ed673(0x12b)][_0x4ed673(0xba6)];_0x4d31f4++){_0x14c441[_0x4ed673(0xae8)](_0x4d31f4);let _0xbb15af=this[_0x4ed673(0xae1)][_0x4ed673(0x611)]({'tag':'rlig','script':_0x4ed673(0x4fa),'contextParams':_0x14c441});if(_0xbb15af[_0x4ed673(0xba6)]){for(let _0x14151d=0x0;_0x14151d<_0xbb15af[_0x4ed673(0xba6)];_0x14151d++){let _0x445696=_0xbb15af[_0x14151d];_0x189491(_0x445696,_0x57557c,_0x4d31f4);}_0x14c441=_0x12ff06(_0x57557c);}}}var _0xd14a2d=_0x14179d;function _0x5dafd9(_0xf9604b){const _0x337357=_0x2273f6;return _0xf9604b[_0x337357(0x2c6)]===0x0&&_0xf9604b[_0x337357(0x12b)][_0x337357(0xba6)]>0x1;}function _0x5ad8ee(_0x27f59f){const _0x4a3da4=_0x2273f6;return _0x27f59f['index']===_0x27f59f[_0x4a3da4(0x12b)][_0x4a3da4(0xba6)]-0x1;}var _0x31b5f1={'startCheck':_0x5dafd9,'endCheck':_0x5ad8ee};function _0x5b3e4b(_0x28c8ad,_0xf79fb){const _0x57e7f4=_0x2273f6;return new _0x50249b(_0x28c8ad[_0x57e7f4(0xb06)](_0x2d75af=>_0x2d75af[_0x57e7f4(0x3aa)][_0x57e7f4(0x85b)]),_0xf79fb||0x0);}function _0x4763f4(_0x1bbabc){const _0x26586c=_0x2273f6;let _0x24cf08='delf',_0x4c4608=_0x26586c(0xbb5),_0x4078e4=this[_0x26586c(0xc98)][_0x26586c(0xc77)](_0x1bbabc),_0x54f971=_0x5b3e4b(_0x4078e4);for(let _0x51eecc=0x0;_0x51eecc<_0x54f971[_0x26586c(0x12b)]['length'];_0x51eecc++){if(!this[_0x26586c(0xae1)]['getFeature']({'tag':_0x4c4608,'script':_0x24cf08,'contextParams':_0x54f971}))continue;_0x54f971[_0x26586c(0xae8)](_0x51eecc);let _0x219963=this[_0x26586c(0xae1)][_0x26586c(0x611)]({'tag':_0x4c4608,'script':_0x24cf08,'contextParams':_0x54f971});if(_0x219963[_0x26586c(0xba6)]){for(let _0x29816a=0x0;_0x29816a<_0x219963['length'];_0x29816a++){let _0x53315b=_0x219963[_0x29816a];_0x189491(_0x53315b,_0x4078e4,_0x51eecc);}_0x54f971=_0x5b3e4b(_0x4078e4);}}}var _0x54ab83=_0x4763f4;function _0x2edfc8(_0x241581){const _0x18c1a3=_0x2273f6;let _0x179fbb=_0x241581['current'],_0x29430c=_0x241581[_0x18c1a3(0x2ad)](-0x1);return _0x29430c===null&&_0x2dc30f(_0x179fbb)||!_0x2dc30f(_0x29430c)&&_0x2dc30f(_0x179fbb);}function _0x4e3497(_0x95d09e){const _0x5cde38=_0x2273f6;let _0x1d725e=_0x95d09e[_0x5cde38(0x2ad)](0x1);return _0x1d725e===null||!_0x2dc30f(_0x1d725e);}var _0x2ed5ae={'startCheck':_0x2edfc8,'endCheck':_0x4e3497};function _0x117a6e(_0xbf3c42,_0x5d455f){const _0x54360e=_0x2273f6;return new _0x50249b(_0xbf3c42[_0x54360e(0xb06)](_0x757b1e=>_0x757b1e['activeState'][_0x54360e(0x85b)]),_0x5d455f||0x0);}function _0x363709(_0x313662){const _0x244e63=_0x2273f6;let _0x58417a=this[_0x244e63(0xc98)]['getRangeTokens'](_0x313662),_0x3001a8=_0x117a6e(_0x58417a);for(let _0xb40f3e=0x0;_0xb40f3e<_0x3001a8['context'][_0x244e63(0xba6)];_0xb40f3e++){_0x3001a8['setCurrentIndex'](_0xb40f3e);let _0xa520ff=this[_0x244e63(0xae1)][_0x244e63(0x611)]({'tag':_0x244e63(0xa7e),'script':_0x244e63(0xb7c),'contextParams':_0x3001a8});if(_0xa520ff[_0x244e63(0xba6)]){for(let _0x5550e7=0x0;_0x5550e7<_0xa520ff[_0x244e63(0xba6)];_0x5550e7++){let _0x4da26b=_0xa520ff[_0x5550e7];_0x189491(_0x4da26b,_0x58417a,_0xb40f3e);}_0x3001a8=_0x117a6e(_0x58417a);}}}var _0x39b6ec=_0x363709;function _0x1c46b3(_0x2b79da){const _0xadb9b3=_0x2273f6;let _0x19b482=_0x2b79da[_0xadb9b3(0x2c3)],_0x369c80=_0x2b79da['get'](-0x1);return _0x369c80===null&&_0x69ca5c(_0x19b482)||!_0x69ca5c(_0x369c80)&&_0x69ca5c(_0x19b482);}function _0x4b318f(_0x4c9118){const _0x39db12=_0x2273f6;let _0x2194e5=_0x4c9118[_0x39db12(0x2ad)](0x1);return _0x2194e5===null||!_0x69ca5c(_0x2194e5);}var _0x21f643={'startCheck':_0x1c46b3,'endCheck':_0x4b318f};function _0x4de806(_0x19b13b,_0x289484){const _0x40838b=_0x2273f6;return new _0x50249b(_0x19b13b[_0x40838b(0xb06)](_0x458fb2=>_0x458fb2['activeState']['value']),_0x289484||0x0);}function _0x4834ae(_0xed7273){const _0x4f7975=_0x2273f6;let _0x281e8b=this['tokenizer'][_0x4f7975(0xc77)](_0xed7273),_0x30beda=_0x4de806(_0x281e8b,0x0);for(let _0x11458f=0x0;_0x11458f<_0x30beda[_0x4f7975(0x12b)][_0x4f7975(0xba6)];_0x11458f++){_0x30beda[_0x4f7975(0xae8)](_0x11458f);let _0x46e3a1=this[_0x4f7975(0xae1)][_0x4f7975(0x611)]({'tag':_0x4f7975(0xbb5),'script':_0x4f7975(0x293),'contextParams':_0x30beda});if(_0x46e3a1[_0x4f7975(0xba6)]){for(let _0x52fcd9=0x0;_0x52fcd9<_0x46e3a1['length'];_0x52fcd9++){let _0x528adc=_0x46e3a1[_0x52fcd9];_0x189491(_0x528adc,_0x281e8b,_0x11458f);}_0x30beda=_0x4de806(_0x281e8b,_0x11458f);}}}var _0x439521=_0x4834ae;function _0x2366cf(_0x317a7c,_0x3fcaa1){const _0x4c58b1=_0x2273f6;return new _0x50249b(_0x317a7c[_0x4c58b1(0xb06)](_0x368cb7=>_0x368cb7[_0x4c58b1(0x3aa)][_0x4c58b1(0x85b)]),_0x3fcaa1||0x0);}function _0x5f4181(_0x483380){const _0x383643=_0x2273f6;let _0x17003f=this[_0x383643(0xc98)][_0x383643(0xc77)](_0x483380),_0x12f68d=_0x2366cf(_0x17003f,0x0);for(let _0x54412b=0x0;_0x54412b<_0x12f68d[_0x383643(0x12b)]['length'];_0x54412b++){_0x12f68d[_0x383643(0xae8)](_0x54412b);let _0x1f0857=this[_0x383643(0xae1)][_0x383643(0x611)]({'tag':'liga','script':_0x383643(0x293),'contextParams':_0x12f68d});if(_0x1f0857[_0x383643(0xba6)]){for(let _0x399fd7=0x0;_0x399fd7<_0x1f0857[_0x383643(0xba6)];_0x399fd7++){let _0x3e05d7=_0x1f0857[_0x399fd7];_0x189491(_0x3e05d7,_0x17003f,_0x54412b);}_0x12f68d=_0x2366cf(_0x17003f,_0x54412b);}}}var _0x52fac7=_0x5f4181;function _0x51bcc8(_0x39a855,_0x2391f0){const _0x31ede3=_0x2273f6;return new _0x50249b(_0x39a855[_0x31ede3(0xb06)](_0xa1bf64=>_0xa1bf64[_0x31ede3(0x3aa)][_0x31ede3(0x85b)]),_0x2391f0||0x0);}function _0x4b1833(_0x1ee81d){const _0x4ba6d7=_0x2273f6;let _0x1d2747=this[_0x4ba6d7(0xc98)]['getRangeTokens'](_0x1ee81d),_0x4e030a=_0x51bcc8(_0x1d2747,0x0);for(let _0x235fb4=0x0;_0x235fb4<_0x4e030a[_0x4ba6d7(0x12b)][_0x4ba6d7(0xba6)];_0x235fb4++){_0x4e030a[_0x4ba6d7(0xae8)](_0x235fb4);let _0x3b0a0a=this[_0x4ba6d7(0xae1)]['lookupFeature']({'tag':_0x4ba6d7(0x740),'script':'thai','contextParams':_0x4e030a});if(_0x3b0a0a[_0x4ba6d7(0xba6)]){for(let _0x4d30e6=0x0;_0x4d30e6<_0x3b0a0a[_0x4ba6d7(0xba6)];_0x4d30e6++){let _0x3e62f7=_0x3b0a0a[_0x4d30e6];_0x189491(_0x3e62f7,_0x1d2747,_0x235fb4);}_0x4e030a=_0x51bcc8(_0x1d2747,_0x235fb4);}}}var _0x29723b=_0x4b1833;function _0x13ee61(_0x4a1b66){const _0x12b5d0=_0x2273f6;if(_0x4a1b66===null)return!0x1;let _0x150909=_0x4a1b66[_0x12b5d0(0x449)](0x0);return _0x150909>=0x180b&&_0x150909<=0x180d||_0x150909>=0xfe00&&_0x150909<=0xfe0f||_0x150909>=0xe0100&&_0x150909<=0xe01ef;}function _0x2e25d8(_0x49863a){const _0x4d306f=_0x2273f6;let _0x10efe3=_0x49863a[_0x4d306f(0x2c3)],_0x223c1e=_0x49863a[_0x4d306f(0x2ad)](0x1);return _0x223c1e===null&&_0x13ee61(_0x10efe3)||_0x13ee61(_0x223c1e);}function _0x255400(_0x12a8a9){const _0x496dcc=_0x2273f6;let _0x1083b5=_0x12a8a9[_0x496dcc(0x2ad)](0x1);return _0x1083b5===null||!_0x13ee61(_0x1083b5);}var _0x3e02bd={'startCheck':_0x2e25d8,'endCheck':_0x255400};function _0x326be0(_0x1e358b){const _0x42096f=_0x2273f6;let _0x38981d=this[_0x42096f(0xae1)][_0x42096f(0x7da)],_0x5a3c87=this[_0x42096f(0xc98)]['getRangeTokens'](_0x1e358b);if(_0x5a3c87[0x1]['setState'](_0x42096f(0x520),!0x0),_0x38981d['tables'][_0x42096f(0x28e)]&&_0x38981d[_0x42096f(0x796)]['cmap'][_0x42096f(0x186)]){let _0x175e0f=_0x5a3c87[0x0][_0x42096f(0x58e)][_0x42096f(0x449)](0x0),_0x50e743=_0x5a3c87[0x1][_0x42096f(0x58e)][_0x42096f(0x449)](0x0),_0x4b2593=_0x38981d[_0x42096f(0x796)][_0x42096f(0x28e)][_0x42096f(0x186)][_0x50e743];if(_0x4b2593!==void 0x0&&_0x4b2593[_0x42096f(0x2da)]){let _0xa21d13=_0x4b2593[_0x42096f(0x2da)][_0x42096f(0x649)];if(_0xa21d13[_0x175e0f]){let _0x123a3b=_0xa21d13[_0x175e0f][_0x42096f(0x15f)];_0x38981d[_0x42096f(0x70a)][_0x42096f(0x70a)][_0x123a3b]!==void 0x0&&_0x5a3c87[0x0]['setState'](_0x42096f(0x3dd),_0x123a3b);}}}}var _0x263cb7=_0x326be0;function _0x215cfe(_0x1efb5c){const _0x7f016d=_0x2273f6;this[_0x7f016d(0x50f)]=_0x1efb5c||_0x7f016d(0xb77),this[_0x7f016d(0xc98)]=new _0x2374f6(),this[_0x7f016d(0x474)]={};}_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x8dc)]=function(_0x5710f1){this['text']=_0x5710f1;},_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x622)]={'ccmpReplacementCheck':_0x31b5f1,'latinWordCheck':_0x2ed5ae,'arabicWordCheck':_0x56385a,'arabicSentenceCheck':_0x3115dc,'thaiWordCheck':_0x21f643,'unicodeVariationSequenceCheck':_0x3e02bd};function _0x3b21f3(_0x4672c3){const _0x541925=_0x2273f6;let _0x4f9d36=this['contextChecks'][_0x4672c3+'Check'];return this['tokenizer']['registerContextChecker'](_0x4672c3,_0x4f9d36[_0x541925(0x6e6)],_0x4f9d36[_0x541925(0x7cd)]);}function _0x3952af(){const _0xb499ff=_0x2273f6;return _0x3b21f3[_0xb499ff(0x3f4)](this,'ccmpReplacement'),_0x3b21f3[_0xb499ff(0x3f4)](this,'latinWord'),_0x3b21f3[_0xb499ff(0x3f4)](this,_0xb499ff(0x18c)),_0x3b21f3[_0xb499ff(0x3f4)](this,_0xb499ff(0x681)),_0x3b21f3[_0xb499ff(0x3f4)](this,'thaiWord'),_0x3b21f3[_0xb499ff(0x3f4)](this,_0xb499ff(0xc8a)),this['tokenizer'][_0xb499ff(0xc4f)](this[_0xb499ff(0x975)]);}function _0x4fa29b(){const _0x25d9be=_0x2273f6;let _0x191a18=this[_0x25d9be(0xc98)][_0x25d9be(0x954)](_0x25d9be(0x681));for(let _0x4b524b=0x0;_0x4b524b<_0x191a18[_0x25d9be(0xba6)];_0x4b524b++){let _0x2da912=_0x191a18[_0x4b524b],_0x3b5d61=this['tokenizer']['getRangeTokens'](_0x2da912);this[_0x25d9be(0xc98)][_0x25d9be(0x7dc)](_0x2da912[_0x25d9be(0x87e)],_0x2da912[_0x25d9be(0xa5c)],_0x3b5d61['reverse']());}}_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x528)]=function(_0x1cc171,_0x1fc9d8){const _0x2f5664=_0x2273f6;let _0x5d9b8a=_0x1fc9d8[_0x2f5664(0xbcd)](_0xd5c471=>this[_0x2f5664(0xae1)][_0x2f5664(0x94a)]({'script':_0x1cc171,'tag':_0xd5c471}));Object[_0x2f5664(0x505)][_0x2f5664(0x9d6)][_0x2f5664(0x3f4)](this['featuresTags'],_0x1cc171)?this[_0x2f5664(0x474)][_0x1cc171]=this[_0x2f5664(0x474)][_0x1cc171][_0x2f5664(0xaba)](_0x5d9b8a):this[_0x2f5664(0x474)][_0x1cc171]=_0x5d9b8a;},_0x215cfe['prototype'][_0x2273f6(0x967)]=function(_0xac45a0,_0x3736fd){const _0xf2b5ae=_0x2273f6;if(!_0xac45a0)throw Error(_0xf2b5ae(0x669));this[_0xf2b5ae(0xae1)]||(this['query']=new _0x1b61c1(_0xac45a0));for(let _0x127444=0x0;_0x127444<_0x3736fd[_0xf2b5ae(0xba6)];_0x127444++){let _0x12a08a=_0x3736fd[_0x127444];this[_0xf2b5ae(0xae1)][_0xf2b5ae(0x94a)]({'script':_0x12a08a[_0xf2b5ae(0xc73)]})&&this[_0xf2b5ae(0x528)](_0x12a08a[_0xf2b5ae(0xc73)],_0x12a08a[_0xf2b5ae(0x9d8)]);}},_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x9f2)]=function(_0xa84e3e,_0x9a5eda,_0x27532f){const _0x18456f=_0x2273f6;this[_0x18456f(0xc98)][_0x18456f(0x9f2)](_0xa84e3e,_0x9a5eda,_0x27532f);};function _0x5e6e22(){const _0x40860a=_0x2273f6;if(this[_0x40860a(0xc98)][_0x40860a(0x9b9)][_0x40860a(0x709)](_0x40860a(0x3dd))===-0x1)throw Error(_0x40860a(0xa39));}function _0x2edb33(){const _0x4c291b=_0x2273f6;if(!Object[_0x4c291b(0x505)][_0x4c291b(0x9d6)][_0x4c291b(0x3f4)](this['featuresTags'],_0x4c291b(0x4fa)))return;_0x5e6e22[_0x4c291b(0x3f4)](this);let _0x2a4687=this[_0x4c291b(0xc98)][_0x4c291b(0x954)](_0x4c291b(0x18c));for(let _0x3af50d=0x0;_0x3af50d<_0x2a4687['length'];_0x3af50d++){let _0x2e632a=_0x2a4687[_0x3af50d];_0x14bfdb[_0x4c291b(0x3f4)](this,_0x2e632a);}}function _0x3b6872(){const _0x358a1d=_0x2273f6;_0x5e6e22[_0x358a1d(0x3f4)](this);let _0x506559=this[_0x358a1d(0xc98)][_0x358a1d(0x954)](_0x358a1d(0x1e5));for(let _0x25d3f8=0x0;_0x25d3f8<_0x506559[_0x358a1d(0xba6)];_0x25d3f8++){let _0x3253b0=_0x506559[_0x25d3f8];_0x54ab83[_0x358a1d(0x3f4)](this,_0x3253b0);}}function _0x15c921(){const _0x4d5435=_0x2273f6;if(!this[_0x4d5435(0x6ec)]('arab',_0x4d5435(0x740)))return;_0x5e6e22['call'](this);let _0x2024a4=this[_0x4d5435(0xc98)][_0x4d5435(0x954)](_0x4d5435(0x18c));for(let _0x45a322=0x0;_0x45a322<_0x2024a4[_0x4d5435(0xba6)];_0x45a322++){let _0x10ede8=_0x2024a4[_0x45a322];_0xd14a2d[_0x4d5435(0x3f4)](this,_0x10ede8);}}function _0x5181c4(){const _0x139259=_0x2273f6;if(!this[_0x139259(0x6ec)](_0x139259(0xb7c),_0x139259(0xa7e)))return;_0x5e6e22[_0x139259(0x3f4)](this);let _0x324787=this['tokenizer']['getContextRanges'](_0x139259(0xa6a));for(let _0x4f34bf=0x0;_0x4f34bf<_0x324787[_0x139259(0xba6)];_0x4f34bf++){let _0x2c1c61=_0x324787[_0x4f34bf];_0x39b6ec[_0x139259(0x3f4)](this,_0x2c1c61);}}function _0x25afb6(){const _0x49ba4b=_0x2273f6;let _0x5ad522=this[_0x49ba4b(0xc98)][_0x49ba4b(0x954)](_0x49ba4b(0xc8a));for(let _0x5e0dfb=0x0;_0x5e0dfb<_0x5ad522[_0x49ba4b(0xba6)];_0x5e0dfb++){let _0x7d4fb0=_0x5ad522[_0x5e0dfb];_0x263cb7[_0x49ba4b(0x3f4)](this,_0x7d4fb0);}}function _0x2286ce(){const _0x31edcb=_0x2273f6;_0x5e6e22['call'](this);let _0x59c9c2=this[_0x31edcb(0xc98)][_0x31edcb(0x954)](_0x31edcb(0xb12));for(let _0x354fab=0x0;_0x354fab<_0x59c9c2[_0x31edcb(0xba6)];_0x354fab++){let _0x399924=_0x59c9c2[_0x354fab];this[_0x31edcb(0x6ec)]('thai',_0x31edcb(0xa7e))&&_0x52fac7['call'](this,_0x399924),this[_0x31edcb(0x6ec)](_0x31edcb(0x293),_0x31edcb(0x740))&&_0x29723b[_0x31edcb(0x3f4)](this,_0x399924),this[_0x31edcb(0x6ec)](_0x31edcb(0x293),'ccmp')&&_0x439521['call'](this,_0x399924);}}_0x215cfe['prototype'][_0x2273f6(0xc7d)]=function(_0x5c8e05){const _0x55fa06=_0x2273f6;return!!this[_0x55fa06(0xc98)][_0x55fa06(0x2f2)](_0x5c8e05);},_0x215cfe[_0x2273f6(0x505)]['applyFeaturesToContexts']=function(){const _0x13e43d=_0x2273f6;this[_0x13e43d(0xc7d)](_0x13e43d(0x1e5))&&_0x3b6872[_0x13e43d(0x3f4)](this),this[_0x13e43d(0xc7d)](_0x13e43d(0x18c))&&(_0x2edb33[_0x13e43d(0x3f4)](this),_0x15c921['call'](this)),this[_0x13e43d(0xc7d)](_0x13e43d(0xa6a))&&_0x5181c4[_0x13e43d(0x3f4)](this),this[_0x13e43d(0xc7d)](_0x13e43d(0x681))&&_0x4fa29b[_0x13e43d(0x3f4)](this),this[_0x13e43d(0xc7d)](_0x13e43d(0xb12))&&_0x2286ce[_0x13e43d(0x3f4)](this),this[_0x13e43d(0xc7d)]('unicodeVariationSequence')&&_0x25afb6[_0x13e43d(0x3f4)](this);},_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x6ec)]=function(_0x16c2bd,_0x20aaa1){const _0x29d822=_0x2273f6;return(this['featuresTags'][_0x16c2bd]||[])[_0x29d822(0x709)](_0x20aaa1)!==-0x1;},_0x215cfe['prototype'][_0x2273f6(0x21e)]=function(_0x362985){const _0x3947a2=_0x2273f6;(!this[_0x3947a2(0x975)]||this['text']!==_0x362985)&&(this[_0x3947a2(0x8dc)](_0x362985),_0x3952af[_0x3947a2(0x3f4)](this),this[_0x3947a2(0x66a)]());},_0x215cfe['prototype'][_0x2273f6(0x181)]=function(_0x1b77a1){const _0x57746d=_0x2273f6;return this[_0x57746d(0x21e)](_0x1b77a1),this[_0x57746d(0xc98)][_0x57746d(0xab1)]();},_0x215cfe[_0x2273f6(0x505)][_0x2273f6(0x831)]=function(_0x3eb2c1){const _0x53907c=_0x2273f6;this[_0x53907c(0x21e)](_0x3eb2c1);let _0x8d8e39=[];for(let _0x3f2aa4=0x0;_0x3f2aa4<this[_0x53907c(0xc98)]['tokens'][_0x53907c(0xba6)];_0x3f2aa4++){let _0x89c00f=this[_0x53907c(0xc98)][_0x53907c(0xb43)][_0x3f2aa4];if(_0x89c00f[_0x53907c(0x1b6)]['deleted'])continue;let _0x2e6963=_0x89c00f[_0x53907c(0x3aa)][_0x53907c(0x85b)];_0x8d8e39[_0x53907c(0x381)](Array[_0x53907c(0x461)](_0x2e6963)?_0x2e6963[0x0]:_0x2e6963);}return _0x8d8e39;};var _0x3faa13=_0x215cfe;function _0x34a544(_0x530479){const _0x138e55=_0x2273f6;return{'fontFamily':{'en':_0x530479['familyName']||'\x20'},'fontSubfamily':{'en':_0x530479[_0x138e55(0xaf4)]||'\x20'},'fullName':{'en':_0x530479['fullName']||_0x530479[_0x138e55(0x4d0)]+'\x20'+_0x530479['styleName']},'postScriptName':{'en':_0x530479['postScriptName']||(_0x530479[_0x138e55(0x4d0)]+_0x530479[_0x138e55(0xaf4)])[_0x138e55(0xbf8)](/\s/g,'')},'designer':{'en':_0x530479[_0x138e55(0x5ab)]||'\x20'},'designerURL':{'en':_0x530479[_0x138e55(0xae5)]||'\x20'},'manufacturer':{'en':_0x530479[_0x138e55(0x89c)]||'\x20'},'manufacturerURL':{'en':_0x530479[_0x138e55(0xc76)]||'\x20'},'license':{'en':_0x530479[_0x138e55(0x769)]||'\x20'},'licenseURL':{'en':_0x530479[_0x138e55(0x252)]||'\x20'},'version':{'en':_0x530479[_0x138e55(0x250)]||'Version\x200.1'},'description':{'en':_0x530479[_0x138e55(0x5b4)]||'\x20'},'copyright':{'en':_0x530479[_0x138e55(0xb6e)]||'\x20'},'trademark':{'en':_0x530479[_0x138e55(0x7fd)]||'\x20'}};}function _0x353c82(_0x48934d){const _0x4491c4=_0x2273f6;if(_0x48934d=_0x48934d||{},_0x48934d[_0x4491c4(0x796)]=_0x48934d['tables']||{},!_0x48934d[_0x4491c4(0x3b1)]){if(!_0x48934d[_0x4491c4(0x4d0)])throw Error(_0x4491c4(0x9ac));if(!_0x48934d[_0x4491c4(0xaf4)])throw Error(_0x4491c4(0x4e4));if(!_0x48934d[_0x4491c4(0xac5)])throw Error('When\x20creating\x20a\x20new\x20Font\x20object,\x20unitsPerEm\x20is\x20required.');if(!_0x48934d[_0x4491c4(0x163)])throw Error(_0x4491c4(0x968));if(_0x48934d['descender']>0x0)throw Error(_0x4491c4(0xa73));this['names']={},this[_0x4491c4(0xb8f)][_0x4491c4(0x423)]=_0x34a544(_0x48934d),this[_0x4491c4(0xb8f)]['macintosh']=_0x34a544(_0x48934d),this[_0x4491c4(0xb8f)][_0x4491c4(0x95c)]=_0x34a544(_0x48934d),this[_0x4491c4(0xac5)]=_0x48934d[_0x4491c4(0xac5)]||0x3e8,this[_0x4491c4(0x163)]=_0x48934d[_0x4491c4(0x163)],this[_0x4491c4(0x2be)]=_0x48934d[_0x4491c4(0x2be)],this['createdTimestamp']=_0x48934d[_0x4491c4(0x236)],this[_0x4491c4(0x2e7)]=_0x48934d[_0x4491c4(0x2e7)]||0x0,this['weightClass']=_0x48934d['weightClass']||0x0;let _0x4ef9f6=0x0;_0x48934d[_0x4491c4(0x748)]?_0x4ef9f6=_0x48934d[_0x4491c4(0x748)]:(this['italicAngle']<0x0?_0x4ef9f6|=this[_0x4491c4(0x912)]['ITALIC']:this['italicAngle']>0x0&&(_0x4ef9f6|=this[_0x4491c4(0x912)]['OBLIQUE']),this[_0x4491c4(0x2c0)]>=0x258&&(_0x4ef9f6|=this[_0x4491c4(0x912)][_0x4491c4(0xb4b)]),_0x4ef9f6===0x0&&(_0x4ef9f6=this[_0x4491c4(0x912)][_0x4491c4(0x19e)])),(!_0x48934d[_0x4491c4(0x25f)]||!Array[_0x4491c4(0x461)](_0x48934d[_0x4491c4(0x25f)]))&&(_0x48934d[_0x4491c4(0x25f)]=[0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0]),this[_0x4491c4(0x796)]=Object[_0x4491c4(0x4ac)](_0x48934d[_0x4491c4(0x796)],{'os2':Object[_0x4491c4(0x4ac)]({'usWeightClass':_0x48934d['weightClass']||this[_0x4491c4(0x6b9)][_0x4491c4(0x17a)],'usWidthClass':_0x48934d[_0x4491c4(0x172)]||this[_0x4491c4(0x379)][_0x4491c4(0x17a)],'bFamilyType':_0x48934d[_0x4491c4(0x25f)][0x0]||0x0,'bSerifStyle':_0x48934d['panose'][0x1]||0x0,'bWeight':_0x48934d['panose'][0x2]||0x0,'bProportion':_0x48934d['panose'][0x3]||0x0,'bContrast':_0x48934d[_0x4491c4(0x25f)][0x4]||0x0,'bStrokeVariation':_0x48934d[_0x4491c4(0x25f)][0x5]||0x0,'bArmStyle':_0x48934d[_0x4491c4(0x25f)][0x6]||0x0,'bLetterform':_0x48934d[_0x4491c4(0x25f)][0x7]||0x0,'bMidline':_0x48934d[_0x4491c4(0x25f)][0x8]||0x0,'bXHeight':_0x48934d[_0x4491c4(0x25f)][0x9]||0x0,'fsSelection':_0x4ef9f6},_0x48934d[_0x4491c4(0x796)]['os2'])});}this[_0x4491c4(0x232)]=!0x0,this[_0x4491c4(0x70a)]=new _0x31db48['GlyphSet'](this,_0x48934d[_0x4491c4(0x70a)]||[]),this[_0x4491c4(0x8bb)]=new _0x1ada5e(this),this[_0x4491c4(0x73d)]=new _0x12aeea(this),this['substitution']=new _0x4cdf04(this),this[_0x4491c4(0x796)]=this[_0x4491c4(0x796)]||{},this['tables']=new Proxy(this[_0x4491c4(0x796)],{'set':(_0x3bb754,_0x2eddd0,_0x34497a)=>(_0x3bb754[_0x2eddd0]=_0x34497a,_0x3bb754['fvar']&&(_0x3bb754[_0x4491c4(0x4d1)]||_0x3bb754[_0x4491c4(0x2d1)])&&!this['variation']&&(this[_0x4491c4(0x800)]=new _0x435c37(this)),!0x0)}),this[_0x4491c4(0x24b)]=new _0x1bb18e(this),this['layers']=new _0x489c33(this),this[_0x4491c4(0xa36)]=new _0x420b87(this),this[_0x4491c4(0xb8c)]=null,this[_0x4491c4(0x301)]={},Object[_0x4491c4(0x18b)](this,_0x4491c4(0x51c),{'get':function(){const _0x64b13f=_0x4491c4;return this[_0x64b13f(0x95a)]?this[_0x64b13f(0x95a)]:this[_0x64b13f(0xcab)]===_0x64b13f(0x535)?this[_0x64b13f(0x95a)]=new _0x529b79(this):null;}});}_0x353c82['prototype'][_0x2273f6(0x2d8)]=function(_0x46a314){return this['encoding']['charToGlyphIndex'](_0x46a314)>0x0;},_0x353c82[_0x2273f6(0x505)]['charToGlyphIndex']=function(_0x28b462){const _0x5edc4c=_0x2273f6;return this[_0x5edc4c(0x8bb)]['charToGlyphIndex'](_0x28b462);},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x1ea)]=function(_0x26076a){const _0x3bdd6f=_0x2273f6;let _0x2f37bb=this[_0x3bdd6f(0x3a7)](_0x26076a),_0x556ab0=this[_0x3bdd6f(0x70a)]['get'](_0x2f37bb);return _0x556ab0||(_0x556ab0=this['glyphs'][_0x3bdd6f(0x2ad)](0x0)),_0x556ab0;},_0x353c82['prototype'][_0x2273f6(0x274)]=function(_0x3013b9){const _0x2308e9=_0x2273f6;return this[_0x2308e9(0x599)][_0x2308e9(0x807)]['map'](_0x52d260=>_0x52d260[_0x2308e9(0xc73)]===_0x2308e9(0xb7c)?{'script':_0x2308e9(0xb7c),'tags':_0x52d260[_0x2308e9(0x9d8)]['filter'](_0xe462f0=>_0x3013b9[_0xe462f0])}:_0x52d260);},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0xade)]=function(_0x40482a,_0x98efe0){const _0x18c3f1=_0x2273f6;let _0x5da1bd=new _0x3faa13();_0x5da1bd[_0x18c3f1(0x9f2)](_0x18c3f1(0x3dd),null,_0xeb3f58=>this[_0x18c3f1(0x3a7)](_0xeb3f58[_0x18c3f1(0x58e)]));let _0x1899a9=_0x98efe0?this[_0x18c3f1(0x274)](_0x98efe0['features']):this[_0x18c3f1(0x599)][_0x18c3f1(0x807)];return _0x5da1bd['applyFeatures'](this,_0x1899a9),_0x5da1bd['getTextGlyphs'](_0x40482a);},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x434)]=function(_0x5ce7c5,_0x469864){const _0x22b646=_0x2273f6;let _0x405837=this[_0x22b646(0xade)](_0x5ce7c5,_0x469864),_0x2c3d8b=_0x405837[_0x22b646(0xba6)],_0x35d3c3=Array(_0x2c3d8b),_0x3ec111=this[_0x22b646(0x70a)][_0x22b646(0x2ad)](0x0);for(let _0x2e9b57=0x0;_0x2e9b57<_0x2c3d8b;_0x2e9b57+=0x1)_0x35d3c3[_0x2e9b57]=this[_0x22b646(0x70a)][_0x22b646(0x2ad)](_0x405837[_0x2e9b57])||_0x3ec111;return _0x35d3c3;},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x955)]=function(_0x4ee4ac){const _0x1b8a60=_0x2273f6;return this[_0x1b8a60(0x20b)][_0x1b8a60(0x955)](_0x4ee4ac);},_0x353c82[_0x2273f6(0x505)]['nameToGlyph']=function(_0x254b03){const _0x28210b=_0x2273f6;let _0xfc4dfa=this[_0x28210b(0x955)](_0x254b03),_0x220e60=this[_0x28210b(0x70a)][_0x28210b(0x2ad)](_0xfc4dfa);return _0x220e60||(_0x220e60=this['glyphs']['get'](0x0)),_0x220e60;},_0x353c82['prototype'][_0x2273f6(0x97a)]=function(_0x925293){const _0x4f32fa=_0x2273f6;return this[_0x4f32fa(0x20b)][_0x4f32fa(0x97a)]?this[_0x4f32fa(0x20b)][_0x4f32fa(0x97a)](_0x925293):'';},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x4d2)]=function(_0x36a402,_0xd11813){const _0xe9cbbb=_0x2273f6;_0x36a402=_0x36a402['index']||_0x36a402,_0xd11813=_0xd11813[_0xe9cbbb(0x2c6)]||_0xd11813;let _0x5ae321=this[_0xe9cbbb(0x73d)][_0xe9cbbb(0x205)];return _0x5ae321?this[_0xe9cbbb(0x73d)][_0xe9cbbb(0x4d2)](_0x5ae321,_0x36a402,_0xd11813):this[_0xe9cbbb(0x3b0)][_0x36a402+','+_0xd11813]||0x0;},_0x353c82['prototype'][_0x2273f6(0x599)]={'kerning':!0x0,'features':[{'script':'arab','tags':['init',_0x2273f6(0xc78),_0x2273f6(0xc80),_0x2273f6(0x740)]},{'script':_0x2273f6(0xb7c),'tags':['liga',_0x2273f6(0x740)]},{'script':'thai','tags':[_0x2273f6(0xa7e),_0x2273f6(0x740),'ccmp']}],'hinting':!0x1,'usePalette':0x0,'drawLayers':!0x0,'drawSVG':!0x0},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x9c2)]=function(_0x1cddda,_0x223bbb,_0x30bbc2,_0x4ab04a,_0x3b4e96,_0x21c6f2){const _0x3762c1=_0x2273f6;_0x223bbb=_0x223bbb===void 0x0?0x0:_0x223bbb,_0x30bbc2=_0x30bbc2===void 0x0?0x0:_0x30bbc2,_0x4ab04a=_0x4ab04a===void 0x0?0x48:_0x4ab04a,_0x3b4e96=Object[_0x3762c1(0x4ac)]({},this[_0x3762c1(0x599)],_0x3b4e96);let _0xa2c105=0x1/this[_0x3762c1(0xac5)]*_0x4ab04a,_0x477bec=this[_0x3762c1(0x434)](_0x1cddda,_0x3b4e96),_0x553b8d;if(_0x3b4e96[_0x3762c1(0x1f4)]){let _0x236bd7=_0x3b4e96[_0x3762c1(0xc73)]||this[_0x3762c1(0x73d)][_0x3762c1(0x7ba)]();_0x553b8d=this[_0x3762c1(0x73d)]['getKerningTables'](_0x236bd7,_0x3b4e96[_0x3762c1(0x370)]);}for(let _0x1ed49e=0x0;_0x1ed49e<_0x477bec[_0x3762c1(0xba6)];_0x1ed49e+=0x1){let _0x2aa137=_0x477bec[_0x1ed49e];if(_0x21c6f2[_0x3762c1(0x3f4)](this,_0x2aa137,_0x223bbb,_0x30bbc2,_0x4ab04a,_0x3b4e96),_0x2aa137[_0x3762c1(0x355)]&&(_0x223bbb+=_0x2aa137[_0x3762c1(0x355)]*_0xa2c105),_0x3b4e96['kerning']&&_0x1ed49e<_0x477bec['length']-0x1){let _0x558014=_0x553b8d?this[_0x3762c1(0x73d)][_0x3762c1(0x4d2)](_0x553b8d,_0x2aa137[_0x3762c1(0x2c6)],_0x477bec[_0x1ed49e+0x1]['index']):this[_0x3762c1(0x4d2)](_0x2aa137,_0x477bec[_0x1ed49e+0x1]);_0x223bbb+=_0x558014*_0xa2c105;}_0x3b4e96['letterSpacing']?_0x223bbb+=_0x3b4e96[_0x3762c1(0x344)]*_0x4ab04a:_0x3b4e96[_0x3762c1(0xa31)]&&(_0x223bbb+=_0x3b4e96['tracking']/0x3e8*_0x4ab04a);}return _0x223bbb;},_0x353c82['prototype'][_0x2273f6(0xad9)]=function(_0x1b9a71,_0x42f500,_0x5d1d78,_0x17bd9e,_0x13e67f){const _0x47cb39=_0x2273f6;_0x13e67f=Object[_0x47cb39(0x4ac)]({},this['defaultRenderOptions'],_0x13e67f);let _0x1790e9=new _0x4cc193();if(_0x1790e9[_0x47cb39(0x8c0)]=[],_0x59cf37(this,_0x1790e9,_0x17bd9e),_0x1790e9[_0x47cb39(0xa25)]){let _0x47aa1f=0x1/(_0x1790e9[_0x47cb39(0xac5)]||0x3e8)*_0x17bd9e;_0x1790e9['strokeWidth']*=_0x47aa1f;}return this[_0x47cb39(0x9c2)](_0x1b9a71,_0x42f500,_0x5d1d78,_0x17bd9e,_0x13e67f,(_0x1fdfd7,_0x13e6eb,_0x2405eb,_0x4842df)=>{const _0x530e9e=_0x47cb39;let _0xc08cbb=_0x1fdfd7['getPath'](_0x13e6eb,_0x2405eb,_0x4842df,_0x13e67f,this);if(_0x13e67f[_0x530e9e(0x9b4)]||_0x13e67f[_0x530e9e(0xa1b)]){let _0x5e83bf=_0xc08cbb['_layers'];if(_0x5e83bf&&_0x5e83bf[_0x530e9e(0xba6)]){for(let _0x134cf0=0x0;_0x134cf0<_0x5e83bf['length'];_0x134cf0++){let _0x4b8a73=_0x5e83bf[_0x134cf0];_0x1790e9[_0x530e9e(0x8c0)][_0x530e9e(0x381)](_0x4b8a73);}return;}}_0x1790e9['extend'](_0xc08cbb);}),_0x1790e9;},_0x353c82['prototype']['getPaths']=function(_0x1ff0fb,_0x5855cc,_0x42b83b,_0x214732,_0x107812){const _0x5b1244=_0x2273f6;_0x107812=Object[_0x5b1244(0x4ac)]({},this[_0x5b1244(0x599)],_0x107812);let _0x32665d=[];return this[_0x5b1244(0x9c2)](_0x1ff0fb,_0x5855cc,_0x42b83b,_0x214732,_0x107812,function(_0x440664,_0x483d0e,_0x2eeec2,_0x30af8a){const _0x124101=_0x5b1244;let _0x3040aa=_0x440664[_0x124101(0xad9)](_0x483d0e,_0x2eeec2,_0x30af8a,_0x107812,this);_0x32665d['push'](_0x3040aa);}),_0x32665d;},_0x353c82[_0x2273f6(0x505)]['getAdvanceWidth']=function(_0x58234b,_0x25bcd8,_0x4b526b){const _0x1a4235=_0x2273f6;return _0x4b526b=Object[_0x1a4235(0x4ac)]({},this[_0x1a4235(0x599)],_0x4b526b),this[_0x1a4235(0x9c2)](_0x58234b,0x0,0x0,_0x25bcd8,_0x4b526b,function(){});},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x90c)]=function(_0x3ab124,_0x15d41a,_0x5b5793,_0x46d603,_0x919fbe,_0x94d542){const _0x532dd8=_0x2273f6;this[_0x532dd8(0xad9)](_0x15d41a,_0x5b5793,_0x46d603,_0x919fbe,_0x94d542)[_0x532dd8(0x90c)](_0x3ab124);},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x466)]=function(_0x4108a0,_0x141718,_0x410332,_0x1b514d,_0x15fe7a,_0x25664b){const _0xa76c92=_0x2273f6;_0x25664b=Object[_0xa76c92(0x4ac)]({},this['defaultRenderOptions'],_0x25664b),this['forEachGlyph'](_0x141718,_0x410332,_0x1b514d,_0x15fe7a,_0x25664b,function(_0x1ad7af,_0x215e23,_0x50d623,_0x5cf0ed){_0x1ad7af['drawPoints'](_0x4108a0,_0x215e23,_0x50d623,_0x5cf0ed,_0x25664b,this);});},_0x353c82[_0x2273f6(0x505)]['drawMetrics']=function(_0x2385f8,_0x534ad8,_0x4a69d5,_0x46be21,_0x2128f0,_0x5e35ac){const _0x536af8=_0x2273f6;_0x5e35ac=Object['assign']({},this[_0x536af8(0x599)],_0x5e35ac),this[_0x536af8(0x9c2)](_0x534ad8,_0x4a69d5,_0x46be21,_0x2128f0,_0x5e35ac,function(_0x7a7892,_0x25e2cb,_0x62fd85,_0x3829d0){const _0x14722d=_0x536af8;_0x7a7892[_0x14722d(0xbce)](_0x2385f8,_0x25e2cb,_0x62fd85,_0x3829d0);});},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0xac6)]=function(_0x40a709){const _0x574d0e=_0x2273f6;let _0x3c5658=(this[_0x574d0e(0xb8f)][_0x574d0e(0x423)]||this[_0x574d0e(0xb8f)]['macintosh']||this[_0x574d0e(0xb8f)][_0x574d0e(0x95c)])[_0x40a709];if(_0x3c5658)return _0x3c5658['en'];},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0xc46)]=function(){const _0x42576d=_0x2273f6;let _0xa1aed0=[],_0x56ee08=this;function _0x552105(_0x317040,_0x3f9437){const _0x3f3f4e=_0x57a5;_0x317040||(console[_0x3f3f4e(0xc59)](_0x3f3f4e(0xaab)+_0x3f9437),_0xa1aed0[_0x3f3f4e(0x381)](_0x3f9437));}function _0x157429(_0x1351c8){const _0x4c7e8a=_0x57a5;let _0x25395c=_0x56ee08[_0x4c7e8a(0xac6)](_0x1351c8);_0x552105(_0x25395c&&_0x25395c['trim']()[_0x4c7e8a(0xba6)]>0x0,_0x4c7e8a(0x1af)+_0x1351c8+'\x20specified.');}if(_0x157429('fontFamily'),_0x157429(_0x42576d(0x3c6)),_0x157429('manufacturer'),_0x157429('copyright'),_0x157429(_0x42576d(0x250)),_0x552105(this[_0x42576d(0xac5)]>0x0,_0x42576d(0x235)),this[_0x42576d(0x796)][_0x42576d(0x4eb)]){let _0x18dc2c=this['tables'][_0x42576d(0x4eb)][_0x42576d(0x110)],_0x1d857c=-0x1;for(let _0x10630b=0x0;_0x10630b<_0x18dc2c[_0x42576d(0xba6)];_0x10630b++){let _0x455b4c=_0x18dc2c[_0x10630b]['glyphID'];if(_0x552105(_0x1d857c<_0x18dc2c[_0x10630b][_0x42576d(0x15f)],_0x42576d(0x229)+_0x455b4c+'\x20comes\x20after\x20'+_0x1d857c),_0x1d857c>_0x18dc2c[_0x10630b][_0x42576d(0x15f)])break;_0x1d857c=_0x455b4c;}}return _0xa1aed0;},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x1e8)]=function(){const _0x5308ca=_0x2273f6;return _0x11d47d[_0x5308ca(0xa2f)](this);},_0x353c82['prototype'][_0x2273f6(0xae0)]=function(){const _0x3727fe=_0x2273f6;return console[_0x3727fe(0xc59)](_0x3727fe(0x1f1)),this['toArrayBuffer']();},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x129)]=function(){const _0x2d7f55=_0x2273f6;let _0x5b2df5=this[_0x2d7f55(0x1e8)]()[_0x2d7f55(0xabd)](),_0x53eac0=new ArrayBuffer(_0x5b2df5[_0x2d7f55(0xba6)]),_0x38f03e=new Uint8Array(_0x53eac0);for(let _0x14d7f0=0x0;_0x14d7f0<_0x5b2df5[_0x2d7f55(0xba6)];_0x14d7f0++)_0x38f03e[_0x14d7f0]=_0x5b2df5[_0x14d7f0];return _0x53eac0;},_0x353c82['prototype'][_0x2273f6(0x237)]=function(){const _0xd1991b=_0x2273f6;console[_0xd1991b(0x9d7)]('DEPRECATED:\x20platform-specific\x20actions\x20are\x20to\x20be\x20implemented\x20on\x20user-side');},_0x353c82['prototype'][_0x2273f6(0x912)]={'ITALIC':0x1,'UNDERSCORE':0x2,'NEGATIVE':0x4,'OUTLINED':0x8,'STRIKEOUT':0x10,'BOLD':0x20,'REGULAR':0x40,'USER_TYPO_METRICS':0x80,'WWS':0x100,'OBLIQUE':0x200},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x86e)]={'BOLD':0x1,'ITALIC':0x2,'UNDERLINE':0x4,'OUTLINED':0x8,'SHADOW':0x10,'CONDENSED':0x20,'EXTENDED':0x40},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x379)]={'ULTRA_CONDENSED':0x1,'EXTRA_CONDENSED':0x2,'CONDENSED':0x3,'SEMI_CONDENSED':0x4,'MEDIUM':0x5,'SEMI_EXPANDED':0x6,'EXPANDED':0x7,'EXTRA_EXPANDED':0x8,'ULTRA_EXPANDED':0x9},_0x353c82[_0x2273f6(0x505)][_0x2273f6(0x6b9)]={'THIN':0x64,'EXTRA_LIGHT':0xc8,'LIGHT':0x12c,'NORMAL':0x190,'MEDIUM':0x1f4,'SEMI_BOLD':0x258,'BOLD':0x2bc,'EXTRA_BOLD':0x320,'BLACK':0x384};var _0x3f953c=_0x353c82;function _0x6dcad9(_0x2ed41d,_0x4b1467){const _0x484c37=_0x2273f6;let _0x4b7edc=new _0x4d43da['Parser'](_0x2ed41d,_0x4b1467),_0x3f4e0c=_0x4b7edc[_0x484c37(0x260)](),_0x4945a4=_0x4b7edc[_0x484c37(0x260)]();return _0x3f4e0c!==0x1&&console[_0x484c37(0xc59)](_0x484c37(0x857)+_0x3f4e0c+'.'+_0x4945a4),{'version':[_0x3f4e0c,_0x4945a4],'itemVariationStore':_0x4b7edc[_0x484c37(0xac1)](function(){return this['parseItemVariationStore']();}),'advanceWidth':_0x4b7edc[_0x484c37(0xac1)](function(){return this['parseDeltaSetIndexMap']();}),'lsb':_0x4b7edc[_0x484c37(0xac1)](function(){return this['parseDeltaSetIndexMap']();}),'rsb':_0x4b7edc[_0x484c37(0xac1)](function(){const _0x95e99d=_0x484c37;return this[_0x95e99d(0xc5e)]();})};}function _0x783e18(){const _0x3e36a3=_0x2273f6;console[_0x3e36a3(0xc59)]('Writing\x20of\x20hvar\x20tables\x20is\x20not\x20yet\x20supported.');}var _0x3e9860={'make':_0x783e18,'parse':_0x6dcad9},_0x5c0b40=function(){const _0x252588=_0x2273f6;return{'coverage':this[_0x252588(0x3ee)](_0x43487c[_0x252588(0x8aa)]),'attachPoints':this['parseList'](_0x43487c['pointer'](_0x43487c[_0x252588(0x609)]))};},_0x350241=function(){const _0x3a9e18=_0x2273f6;var _0x3cf029=this[_0x3a9e18(0x260)]();if(_0x95cc0[_0x3a9e18(0x8e5)](_0x3cf029===0x1||_0x3cf029===0x2||_0x3cf029===0x3,_0x3a9e18(0xbc7)),_0x3cf029===0x1)return{'coordinate':this['parseShort']()};if(_0x3cf029===0x2)return{'pointindex':this[_0x3a9e18(0x673)]()};if(_0x3cf029===0x3)return{'coordinate':this['parseShort']()};},_0x95ab20=function(){const _0x5c004=_0x2273f6;return this[_0x5c004(0x341)](_0x43487c[_0x5c004(0x507)](_0x350241));},_0x2539f6=function(){const _0x1a239f=_0x2273f6;return{'coverage':this['parsePointer'](_0x43487c[_0x1a239f(0x8aa)]),'ligGlyphs':this[_0x1a239f(0x341)](_0x43487c[_0x1a239f(0x507)](_0x95ab20))};},_0x3a5103=function(){const _0x3d4a72=_0x2273f6;return this[_0x3d4a72(0x260)](),this[_0x3d4a72(0x341)](_0x43487c[_0x3d4a72(0x507)](_0x43487c[_0x3d4a72(0x8aa)]));};function _0x59820f(_0x8d1c3c,_0x10b182){const _0x7939da=_0x2273f6;_0x10b182=_0x10b182||0x0;let _0x437fd0=new _0x43487c(_0x8d1c3c,_0x10b182),_0x2cf90e=_0x437fd0[_0x7939da(0x738)](0x1);_0x95cc0[_0x7939da(0x8e5)](_0x2cf90e===0x1||_0x2cf90e===1.2||_0x2cf90e===1.3,'Unsupported\x20GDEF\x20table\x20version.');var _0x5954ea={'version':_0x2cf90e,'classDef':_0x437fd0[_0x7939da(0x3ee)](_0x43487c[_0x7939da(0x948)]),'attachList':_0x437fd0['parsePointer'](_0x5c0b40),'ligCaretList':_0x437fd0[_0x7939da(0x3ee)](_0x2539f6),'markAttachClassDef':_0x437fd0[_0x7939da(0x3ee)](_0x43487c['classDef'])};return _0x2cf90e>=1.2&&(_0x5954ea[_0x7939da(0x5b6)]=_0x437fd0['parsePointer'](_0x3a5103)),_0x5954ea;}var _0x2dc46b={'parse':_0x59820f},_0x33dc33=Array(0xa);_0x33dc33[0x1]=function(){const _0x3dc0b8=_0x2273f6;let _0x517067=this[_0x3dc0b8(0x679)]+this['relativeOffset'],_0x3673b6=this['parseUShort']();if(_0x3673b6===0x1)return{'posFormat':0x1,'coverage':this[_0x3dc0b8(0x3ee)](_0x43487c['coverage']),'value':this[_0x3dc0b8(0x88e)]()};if(_0x3673b6===0x2)return{'posFormat':0x2,'coverage':this[_0x3dc0b8(0x3ee)](_0x43487c[_0x3dc0b8(0x8aa)]),'values':this[_0x3dc0b8(0x3c0)]()};_0x95cc0[_0x3dc0b8(0x4bd)](!0x1,'0x'+_0x517067[_0x3dc0b8(0x23e)](0x10)+_0x3dc0b8(0x491));},_0x33dc33[0x2]=function(){const _0x1d560c=_0x2273f6;let _0x5728c1=this[_0x1d560c(0x679)]+this[_0x1d560c(0x7a9)],_0x1185a1=this[_0x1d560c(0x260)]();_0x95cc0[_0x1d560c(0x4bd)](_0x1185a1===0x1||_0x1185a1===0x2,'0x'+_0x5728c1[_0x1d560c(0x23e)](0x10)+':\x20GPOS\x20lookup\x20type\x202\x20format\x20must\x20be\x201\x20or\x202.');let _0x2eede2=this[_0x1d560c(0x3ee)](_0x43487c[_0x1d560c(0x8aa)]),_0x1c2ebd=this['parseUShort'](),_0x20e19e=this[_0x1d560c(0x260)]();if(_0x1185a1===0x1)return{'posFormat':_0x1185a1,'coverage':_0x2eede2,'valueFormat1':_0x1c2ebd,'valueFormat2':_0x20e19e,'pairSets':this[_0x1d560c(0x341)](_0x43487c[_0x1d560c(0x507)](_0x43487c[_0x1d560c(0x782)](function(){const _0x4a5e1d=_0x1d560c;return{'secondGlyph':this[_0x4a5e1d(0x260)](),'value1':this[_0x4a5e1d(0x88e)](_0x1c2ebd),'value2':this[_0x4a5e1d(0x88e)](_0x20e19e)};})))};if(_0x1185a1===0x2){let _0x439b96=this[_0x1d560c(0x3ee)](_0x43487c[_0x1d560c(0x948)]),_0x1cac0b=this[_0x1d560c(0x3ee)](_0x43487c[_0x1d560c(0x948)]),_0x49efe6=this[_0x1d560c(0x260)](),_0x11708a=this[_0x1d560c(0x260)]();return{'posFormat':_0x1185a1,'coverage':_0x2eede2,'valueFormat1':_0x1c2ebd,'valueFormat2':_0x20e19e,'classDef1':_0x439b96,'classDef2':_0x1cac0b,'class1Count':_0x49efe6,'class2Count':_0x11708a,'classRecords':this[_0x1d560c(0x341)](_0x49efe6,_0x43487c['list'](_0x11708a,function(){const _0x151dda=_0x1d560c;return{'value1':this[_0x151dda(0x88e)](_0x1c2ebd),'value2':this['parseValueRecord'](_0x20e19e)};}))};}},_0x33dc33[0x3]=function(){const _0x24ffa8=_0x2273f6;return{'error':_0x24ffa8(0xbd7)};},_0x33dc33[0x4]=function(){const _0x277440=_0x2273f6;return{'error':_0x277440(0x171)};},_0x33dc33[0x5]=function(){return{'error':'GPOS\x20Lookup\x205\x20not\x20supported'};},_0x33dc33[0x6]=function(){return{'error':'GPOS\x20Lookup\x206\x20not\x20supported'};},_0x33dc33[0x7]=function(){const _0x13c79a=_0x2273f6;return{'error':_0x13c79a(0x47a)};},_0x33dc33[0x8]=function(){const _0x52b4dd=_0x2273f6;return{'error':_0x52b4dd(0xaa5)};},_0x33dc33[0x9]=function(){return{'error':'GPOS\x20Lookup\x209\x20not\x20supported'};};function _0x2f9953(_0x222cd9,_0x5988fb){const _0x2c9adf=_0x2273f6;_0x5988fb=_0x5988fb||0x0;let _0x35f393=new _0x43487c(_0x222cd9,_0x5988fb),_0x51763c=_0x35f393[_0x2c9adf(0x738)](0x1);return _0x95cc0['argument'](_0x51763c===0x1||_0x51763c===1.1,_0x2c9adf(0xbcb)+_0x51763c),_0x51763c===0x1?{'version':_0x51763c,'scripts':_0x35f393['parseScriptList'](),'features':_0x35f393['parseFeatureList'](),'lookups':_0x35f393['parseLookupList'](_0x33dc33)}:{'version':_0x51763c,'scripts':_0x35f393[_0x2c9adf(0x410)](),'features':_0x35f393[_0x2c9adf(0x5a4)](),'lookups':_0x35f393[_0x2c9adf(0x7e2)](_0x33dc33),'variations':_0x35f393[_0x2c9adf(0xc83)]()};}var _0x514b56=Array(0xa);function _0x11c5b9(_0xf1e6a2){const _0x2b0cd1=_0x2273f6;return new _0x14efbe[(_0x2b0cd1(0x547))](_0x2b0cd1(0x5da),[{'name':_0x2b0cd1(0x250),'type':_0x2b0cd1(0xc90),'value':0x10000},{'name':_0x2b0cd1(0x443),'type':_0x2b0cd1(0x34a),'value':new _0x14efbe[(_0x2b0cd1(0x213))](_0xf1e6a2[_0x2b0cd1(0x443)])},{'name':'features','type':_0x2b0cd1(0x34a),'value':new _0x14efbe['FeatureList'](_0xf1e6a2[_0x2b0cd1(0x807)])},{'name':_0x2b0cd1(0x95f),'type':'TABLE','value':new _0x14efbe[(_0x2b0cd1(0xa1a))](_0xf1e6a2[_0x2b0cd1(0x95f)],_0x514b56)}]);}var _0x192123={'parse':_0x2f9953,'make':_0x11c5b9};function _0x5b90e0(_0x35823d){const _0x112f72=_0x2273f6;let _0x4495e7={};_0x35823d['skip'](_0x112f72(0x678));let _0x329a16=_0x35823d[_0x112f72(0x260)]();_0x95cc0[_0x112f72(0x8e5)](_0x329a16===0x0,_0x112f72(0x37b)),_0x35823d[_0x112f72(0x2b6)](_0x112f72(0x678),0x2);let _0x138ab7=_0x35823d[_0x112f72(0x260)]();_0x35823d[_0x112f72(0x2b6)](_0x112f72(0x678),0x3);for(let _0x3f667d=0x0;_0x3f667d<_0x138ab7;_0x3f667d+=0x1){let _0x352cdf=_0x35823d[_0x112f72(0x260)](),_0x4dc7ac=_0x35823d[_0x112f72(0x260)](),_0x428efd=_0x35823d[_0x112f72(0x673)]();_0x4495e7[_0x352cdf+','+_0x4dc7ac]=_0x428efd;}return _0x4495e7;}function _0x46492c(_0x16ff61){const _0x394abc=_0x2273f6;let _0xb1c310={};_0x16ff61[_0x394abc(0x2b6)](_0x394abc(0x678)),_0x16ff61[_0x394abc(0x398)]()>0x1&&console[_0x394abc(0xc59)](_0x394abc(0x412)),_0x16ff61[_0x394abc(0x2b6)](_0x394abc(0xb0b));let _0x129bbb=_0x16ff61[_0x394abc(0x260)]()&0xff;if(_0x16ff61['skip'](_0x394abc(0x678)),_0x129bbb===0x0){let _0xe915a7=_0x16ff61['parseUShort']();_0x16ff61[_0x394abc(0x2b6)]('uShort',0x3);for(let _0x198591=0x0;_0x198591<_0xe915a7;_0x198591+=0x1){let _0x1dc9e6=_0x16ff61[_0x394abc(0x260)](),_0x3503c0=_0x16ff61[_0x394abc(0x260)](),_0x38d475=_0x16ff61[_0x394abc(0x673)]();_0xb1c310[_0x1dc9e6+','+_0x3503c0]=_0x38d475;}}return _0xb1c310;}function _0x47ce46(_0x2868e4,_0x288d36){const _0x3069b7=_0x2273f6;let _0x351034=new _0x4d43da[(_0x3069b7(0xb6f))](_0x2868e4,_0x288d36),_0x513f3c=_0x351034[_0x3069b7(0x260)]();if(_0x513f3c===0x0)return _0x5b90e0(_0x351034);if(_0x513f3c===0x1)return _0x46492c(_0x351034);throw Error(_0x3069b7(0x3f5)+_0x513f3c+').');}var _0x2c786f={'parse':_0x47ce46};function _0x1c77f2(_0x5daf3e,_0x18c138,_0x13d9da,_0x4ea6b3){const _0x4f0871=_0x2273f6;let _0x4b341f=new _0x4d43da[(_0x4f0871(0xb6f))](_0x5daf3e,_0x18c138),_0x7fd03a=_0x4ea6b3?_0x4b341f[_0x4f0871(0x260)]:_0x4b341f['parseULong'],_0x7b50f3=[];for(let _0x4e7dc1=0x0;_0x4e7dc1<_0x13d9da+0x1;_0x4e7dc1+=0x1){let _0x3dcb0e=_0x7fd03a['call'](_0x4b341f);_0x4ea6b3&&(_0x3dcb0e*=0x2),_0x7b50f3[_0x4f0871(0x381)](_0x3dcb0e);}return _0x7b50f3;}var _0xdc5334={'parse':_0x1c77f2};function _0x16b353(_0x44eaa6,_0x2f6f9f){const _0x30b59b=_0x2273f6;let _0x96d01e=[],_0x356014=0xc;for(let _0x12c2ca=0x0;_0x12c2ca<_0x2f6f9f;_0x12c2ca+=0x1){let _0x22d5f5=_0x4d43da[_0x30b59b(0x813)](_0x44eaa6,_0x356014),_0x389109=_0x4d43da[_0x30b59b(0x2f7)](_0x44eaa6,_0x356014+0x4),_0x2b5567=_0x4d43da[_0x30b59b(0x2f7)](_0x44eaa6,_0x356014+0x8),_0x1c8786=_0x4d43da[_0x30b59b(0x2f7)](_0x44eaa6,_0x356014+0xc);_0x96d01e[_0x30b59b(0x381)]({'tag':_0x22d5f5,'checksum':_0x389109,'offset':_0x2b5567,'length':_0x1c8786,'compression':!0x1}),_0x356014+=0x10;}return _0x96d01e;}function _0x170cfd(_0x5229d1,_0x1e61cf){const _0x3966ab=_0x2273f6;let _0x5d745a=[],_0x24d613=0x2c;for(let _0x1c64e6=0x0;_0x1c64e6<_0x1e61cf;_0x1c64e6+=0x1){let _0x4383e9=_0x4d43da['getTag'](_0x5229d1,_0x24d613),_0x503ba0=_0x4d43da[_0x3966ab(0x2f7)](_0x5229d1,_0x24d613+0x4),_0x200e62=_0x4d43da[_0x3966ab(0x2f7)](_0x5229d1,_0x24d613+0x8),_0x2e0793=_0x4d43da[_0x3966ab(0x2f7)](_0x5229d1,_0x24d613+0xc),_0x961c9d;_0x961c9d=_0x200e62<_0x2e0793&&_0x3966ab(0x700),_0x5d745a[_0x3966ab(0x381)]({'tag':_0x4383e9,'offset':_0x503ba0,'compression':_0x961c9d,'compressedLength':_0x200e62,'length':_0x2e0793}),_0x24d613+=0x14;}return _0x5d745a;}function _0x305a19(_0x36bbf3,_0x6226bd){const _0x5149db=_0x2273f6;if(_0x6226bd[_0x5149db(0x9ab)]===_0x5149db(0x700)){let _0x5f4fb0=new Uint8Array(_0x36bbf3['buffer'],_0x6226bd[_0x5149db(0x679)]+0x2,_0x6226bd['compressedLength']-0x2),_0x4e9b83=new Uint8Array(_0x6226bd['length']);if(_0xe89db4(_0x5f4fb0,_0x4e9b83),_0x4e9b83[_0x5149db(0xc50)]!==_0x6226bd[_0x5149db(0xba6)])throw Error('Decompression\x20error:\x20'+_0x6226bd[_0x5149db(0xbc6)]+_0x5149db(0xa90));return{'data':new DataView(_0x4e9b83[_0x5149db(0x1e6)],0x0),'offset':0x0};}else return{'data':_0x36bbf3,'offset':_0x6226bd[_0x5149db(0x679)]};}function _0x229ef4(_0xe0384b,_0x15d6f1={}){const _0x5c50e4=_0x2273f6;let _0x59d1cf,_0x12c62f,_0x4b1123=new _0x3f953c({'empty':!0x0});_0xe0384b[_0x5c50e4(0x6d2)]!==ArrayBuffer&&(_0xe0384b=new Uint8Array(_0xe0384b)['buffer']);let _0x58b5d5=new DataView(_0xe0384b,0x0),_0x361d41,_0x24ffa4=[],_0x10a45c=_0x4d43da['getTag'](_0x58b5d5,0x0);if(_0x10a45c==='\x00\x01\x00\x00'||_0x10a45c===_0x5c50e4(0x2fd)||_0x10a45c===_0x5c50e4(0x292))_0x4b1123[_0x5c50e4(0xcab)]=_0x5c50e4(0x535),_0x361d41=_0x4d43da[_0x5c50e4(0x26c)](_0x58b5d5,0x4),_0x24ffa4=_0x16b353(_0x58b5d5,_0x361d41);else{if(_0x10a45c==='OTTO')_0x4b1123['outlinesFormat']='cff',_0x361d41=_0x4d43da['getUShort'](_0x58b5d5,0x4),_0x24ffa4=_0x16b353(_0x58b5d5,_0x361d41);else{if(_0x10a45c==='wOFF'){let _0x2826e9=_0x4d43da['getTag'](_0x58b5d5,0x4);if(_0x2826e9===_0x5c50e4(0xb3f))_0x4b1123[_0x5c50e4(0xcab)]=_0x5c50e4(0x535);else{if(_0x2826e9===_0x5c50e4(0x3e9))_0x4b1123[_0x5c50e4(0xcab)]='cff';else throw Error(_0x5c50e4(0x77b)+_0x10a45c);}_0x361d41=_0x4d43da[_0x5c50e4(0x26c)](_0x58b5d5,0xc),_0x24ffa4=_0x170cfd(_0x58b5d5,_0x361d41);}else{if(_0x10a45c===_0x5c50e4(0xb91))throw Error('WOFF2\x20require\x20an\x20external\x20decompressor\x20library,\x20see\x20examples\x20at:\x20https://github.com/opentypejs/opentype.js/issues/183#issuecomment-1147228025');else throw Error(_0x5c50e4(0x1be)+_0x10a45c);}}}let _0x547b88,_0x15d7bc,_0x15af1e,_0x1f6562,_0x4b5de3,_0x5d8fa5,_0x32af4e,_0x263e65,_0x55139f,_0x55c29c,_0xfdf66c,_0x57a898,_0x556e4b,_0x55b752,_0x570eca,_0x1b1181,_0x4ba43a,_0x2a0d41;for(let _0x3f9389=0x0;_0x3f9389<_0x361d41;_0x3f9389+=0x1){let _0x3c93dc=_0x24ffa4[_0x3f9389],_0xc95d3;switch(_0x3c93dc[_0x5c50e4(0xbc6)]){case _0x5c50e4(0x372):_0x32af4e=_0x3c93dc;break;case _0x5c50e4(0x28e):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x28e)]=_0x2f2956[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123[_0x5c50e4(0x8bb)]=new _0xb4bad6(_0x4b1123[_0x5c50e4(0x796)]['cmap']);break;case _0x5c50e4(0xb67):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x2a0d41=new _0x4d43da['Parser'](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x85f)]=_0x2a0d41[_0x5c50e4(0xc58)](_0x3c93dc[_0x5c50e4(0xba6)]/0x2);break;case _0x5c50e4(0x7b0):_0x15af1e=_0x3c93dc;break;case _0x5c50e4(0x7ef):_0x1f6562=_0x3c93dc;break;case _0x5c50e4(0x4d1):_0x4b5de3=_0x3c93dc;break;case _0x5c50e4(0x7e9):_0x5d8fa5=_0x3c93dc;break;case'fpgm':_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x2a0d41=new _0x4d43da[(_0x5c50e4(0xb6f))](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123['tables'][_0x5c50e4(0x290)]=_0x2a0d41['parseByteList'](_0x3c93dc[_0x5c50e4(0xba6)]);break;case _0x5c50e4(0x137):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x137)]=_0x40511e[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123[_0x5c50e4(0xac5)]=_0x4b1123[_0x5c50e4(0x796)]['head'][_0x5c50e4(0xac5)],_0x59d1cf=_0x4b1123['tables']['head']['indexToLocFormat'];break;case _0x5c50e4(0x3e1):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)]['hhea']=_0x3def11[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123['ascender']=_0x4b1123[_0x5c50e4(0x796)]['hhea'][_0x5c50e4(0x163)],_0x4b1123[_0x5c50e4(0x2be)]=_0x4b1123[_0x5c50e4(0x796)]['hhea']['descender'],_0x4b1123[_0x5c50e4(0x4fe)]=_0x4b1123[_0x5c50e4(0x796)]['hhea'][_0x5c50e4(0x4fe)];break;case _0x5c50e4(0xa3d):_0x556e4b=_0x3c93dc;break;case'hmtx':_0x57a898=_0x3c93dc;break;case _0x5c50e4(0xa08):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x12c62f=_0xe6120b['parse'](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);break;case _0x5c50e4(0x2cd):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x4eb)]=_0x56e1e0[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);break;case _0x5c50e4(0x6c0):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0xb74)]=_0x593ba6[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);break;case'maxp':_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123['tables']['maxp']=_0x402061[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123['numGlyphs']=_0x4b1123[_0x5c50e4(0x796)]['maxp']['numGlyphs'];break;case _0x5c50e4(0x37a):_0x1b1181=_0x3c93dc;break;case'OS/2':_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123['tables'][_0x5c50e4(0x1bc)]=_0x5d60b5[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);break;case _0x5c50e4(0x9e3):_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x9e3)]=_0xfdc6e9['parse'](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123['glyphNames']=new _0x585723(_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x9e3)]);break;case'prep':_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x2a0d41=new _0x4d43da[(_0x5c50e4(0xb6f))](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]),_0x4b1123[_0x5c50e4(0x796)]['prep']=_0x2a0d41[_0x5c50e4(0xbe6)](_0x3c93dc[_0x5c50e4(0xba6)]);break;case _0x5c50e4(0x85e):_0x263e65=_0x3c93dc;break;case _0x5c50e4(0x3d4):_0x570eca=_0x3c93dc;break;case'CFF\x20':_0x547b88=_0x3c93dc;break;case'CFF2':_0x15d7bc=_0x3c93dc;break;case _0x5c50e4(0x7f3):_0x55b752=_0x3c93dc;break;case _0x5c50e4(0x930):_0x55139f=_0x3c93dc;break;case _0x5c50e4(0x5da):_0x55c29c=_0x3c93dc;break;case'GSUB':_0xfdf66c=_0x3c93dc;break;case'meta':_0x4ba43a=_0x3c93dc;break;case _0x5c50e4(0x299):try{_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x299)]=_0x18edb6['parse'](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);}catch(_0x396a31){console['warn']('Failed\x20to\x20parse\x20gasp\x20table,\x20skipping.'),console['warn'](_0x396a31);}break;case'SVG\x20':_0xc95d3=_0x305a19(_0x58b5d5,_0x3c93dc),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0xa7b)]=_0x333d5f[_0x5c50e4(0x54d)](_0xc95d3[_0x5c50e4(0xb81)],_0xc95d3[_0x5c50e4(0x679)]);break;default:break;}}let _0x227443=_0x305a19(_0x58b5d5,_0x1b1181);if(_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x37a)]=_0xc2ace[_0x5c50e4(0x54d)](_0x227443[_0x5c50e4(0xb81)],_0x227443['offset'],_0x12c62f),_0x4b1123['names']=_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x37a)],_0x263e65&&_0x570eca){let _0x191b15=_0x59d1cf===0x0,_0x2b0567=_0x305a19(_0x58b5d5,_0x570eca),_0x4f20ca=_0xdc5334[_0x5c50e4(0x54d)](_0x2b0567[_0x5c50e4(0xb81)],_0x2b0567[_0x5c50e4(0x679)],_0x4b1123[_0x5c50e4(0x54e)],_0x191b15),_0x4fdca5=_0x305a19(_0x58b5d5,_0x263e65);_0x4b1123[_0x5c50e4(0x70a)]=_0x4db4a9['parse'](_0x4fdca5[_0x5c50e4(0xb81)],_0x4fdca5[_0x5c50e4(0x679)],_0x4f20ca,_0x4b1123,_0x15d6f1);}else{if(_0x547b88){let _0x16a7b6=_0x305a19(_0x58b5d5,_0x547b88);_0x5bf4c1[_0x5c50e4(0x54d)](_0x16a7b6[_0x5c50e4(0xb81)],_0x16a7b6[_0x5c50e4(0x679)],_0x4b1123,_0x15d6f1);}else{if(_0x15d7bc){let _0x41e00f=_0x305a19(_0x58b5d5,_0x15d7bc);_0x5bf4c1[_0x5c50e4(0x54d)](_0x41e00f[_0x5c50e4(0xb81)],_0x41e00f[_0x5c50e4(0x679)],_0x4b1123,_0x15d6f1);}else throw Error(_0x5c50e4(0x5e7));}}let _0x45ce84=_0x305a19(_0x58b5d5,_0x57a898);if(_0x185389[_0x5c50e4(0x54d)](_0x4b1123,_0x45ce84[_0x5c50e4(0xb81)],_0x45ce84[_0x5c50e4(0x679)],_0x4b1123['numberOfHMetrics'],_0x4b1123[_0x5c50e4(0x54e)],_0x4b1123[_0x5c50e4(0x70a)],_0x15d6f1),_0x526fc9(_0x4b1123,_0x15d6f1),_0x55b752){let _0x9e45d4=_0x305a19(_0x58b5d5,_0x55b752);_0x4b1123['kerningPairs']=_0x2c786f[_0x5c50e4(0x54d)](_0x9e45d4[_0x5c50e4(0xb81)],_0x9e45d4[_0x5c50e4(0x679)]);}else _0x4b1123[_0x5c50e4(0x3b0)]={};if(_0x55139f){let _0x1f4521=_0x305a19(_0x58b5d5,_0x55139f);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x322)]=_0x2dc46b[_0x5c50e4(0x54d)](_0x1f4521[_0x5c50e4(0xb81)],_0x1f4521[_0x5c50e4(0x679)]);}if(_0x55c29c){let _0x5b8c73=_0x305a19(_0x58b5d5,_0x55c29c);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x9a2)]=_0x192123['parse'](_0x5b8c73[_0x5c50e4(0xb81)],_0x5b8c73['offset']),_0x4b1123[_0x5c50e4(0x73d)][_0x5c50e4(0xb99)]();}if(_0xfdf66c){let _0x1c1fe5=_0x305a19(_0x58b5d5,_0xfdf66c);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x60f)]=_0x2bf391[_0x5c50e4(0x54d)](_0x1c1fe5['data'],_0x1c1fe5[_0x5c50e4(0x679)]);}if(_0x15af1e){let _0x22fcf7=_0x305a19(_0x58b5d5,_0x15af1e);_0x4b1123[_0x5c50e4(0x796)]['fvar']=_0x31c5e4[_0x5c50e4(0x54d)](_0x22fcf7[_0x5c50e4(0xb81)],_0x22fcf7[_0x5c50e4(0x679)],_0x4b1123[_0x5c50e4(0xb8f)]);}if(_0x1f6562){let _0x388c5f=_0x305a19(_0x58b5d5,_0x1f6562);_0x4b1123[_0x5c50e4(0x796)]['stat']=_0xfb2db3['parse'](_0x388c5f[_0x5c50e4(0xb81)],_0x388c5f['offset'],_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x7b0)]);}if(_0x4b5de3){_0x15af1e||console[_0x5c50e4(0xc59)](_0x5c50e4(0x733)),_0x263e65||console[_0x5c50e4(0xc59)](_0x5c50e4(0xa16));let _0x8c41e5=_0x305a19(_0x58b5d5,_0x4b5de3);_0x4b1123[_0x5c50e4(0x796)]['gvar']=_0xa63c00[_0x5c50e4(0x54d)](_0x8c41e5[_0x5c50e4(0xb81)],_0x8c41e5['offset'],_0x4b1123[_0x5c50e4(0x796)]['fvar'],_0x4b1123[_0x5c50e4(0x70a)]);}if(_0x5d8fa5){_0x15af1e||console[_0x5c50e4(0xc59)](_0x5c50e4(0xc67)),_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x85f)]||console[_0x5c50e4(0xc59)]('This\x20font\x20provides\x20a\x20cvar\x20table,\x20but\x20no\x20cvt\x20table\x20which\x20could\x20be\x20made\x20variable.'),_0x263e65||console['warn'](_0x5c50e4(0xa16));let _0x116264=_0x305a19(_0x58b5d5,_0x5d8fa5);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x7e9)]=_0x401ba1[_0x5c50e4(0x54d)](_0x116264[_0x5c50e4(0xb81)],_0x116264['offset'],_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x7b0)],_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x85f)]||[]);}if(_0x32af4e){_0x15af1e||console[_0x5c50e4(0xc59)](_0x5c50e4(0x839));let _0xdd0a7f=_0x305a19(_0x58b5d5,_0x32af4e);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x372)]=_0x37c027['parse'](_0xdd0a7f[_0x5c50e4(0xb81)],_0xdd0a7f[_0x5c50e4(0x679)],_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0x7b0)]);}if(_0x556e4b){_0x15af1e||console[_0x5c50e4(0xc59)](_0x5c50e4(0x486)),_0x57a898||console[_0x5c50e4(0xc59)](_0x5c50e4(0x26b));let _0x824bcb=_0x305a19(_0x58b5d5,_0x556e4b);_0x4b1123[_0x5c50e4(0x796)]['hvar']=_0x3e9860[_0x5c50e4(0x54d)](_0x824bcb[_0x5c50e4(0xb81)],_0x824bcb['offset'],_0x4b1123[_0x5c50e4(0x796)]['fvar']);}if(_0x4ba43a){let _0x18c80=_0x305a19(_0x58b5d5,_0x4ba43a);_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0xb51)]=_0x37d089[_0x5c50e4(0x54d)](_0x18c80[_0x5c50e4(0xb81)],_0x18c80[_0x5c50e4(0x679)]),_0x4b1123['metas']=_0x4b1123[_0x5c50e4(0x796)][_0x5c50e4(0xb51)];}return _0x4b1123[_0x5c50e4(0x24b)]=new _0x1bb18e(_0x4b1123),_0x4b1123;}function _0x30823f(){const _0x5313fa=_0x2273f6;console[_0x5313fa(0x9d7)](_0x5313fa(0x475));}function _0x5d777b(){const _0xa6174a=_0x2273f6;console[_0xa6174a(0x9d7)](_0xa6174a(0xba5));}return _0x38dab6(_0x2352e8);})());(function(_0x557f48,_0x18d5dd){const _0x14e2a5=_0x57a5;typeof define==_0x14e2a5(0x9df)&&define['amd']?define(_0x18d5dd):typeof _0x5da5e7==_0x14e2a5(0x961)&&_0x5da5e7[_0x14e2a5(0x7b6)]?_0x5da5e7[_0x14e2a5(0x7b6)]=_0x18d5dd():_0x557f48[_0x14e2a5(0x82a)]=_0x18d5dd();}(typeof self<'u'?self:_0x36bc23,()=>({..._0x58e398,'default':_0x58e398})));})();function _0x392f31(_0x137fef){return(0x0,_0x2621d2['parse'])(_0x137fef);}function _0x188ff5(_0x11eae9){const _0x5a7d85=_0x59d572;return(_0x11eae9==null?void 0x0:_0x11eae9[_0x5a7d85(0x5ba)])==='/Type1'||(_0x11eae9==null?void 0x0:_0x11eae9[_0x5a7d85(0x8f3)])===_0x5a7d85(0xa65);}function _0x760d79(_0x33ce4f,_0x225f22,_0x901837,_0x159f92,_0x2bca7e,_0x318bf9){const _0x4b4f97=_0x59d572;if(Array[_0x4b4f97(0x8c1)](_0x901837)[_0x4b4f97(0x790)](_0x2b63b8=>_0x225f22[_0x4b4f97(0x1ea)](_0x2b63b8)['index']===0x0))return!0x1;let _0x1c05c2=_0x225f22[_0x4b4f97(0xad9)](_0x901837,_0x159f92,_0x2bca7e,_0x318bf9);_0x33ce4f[_0x4b4f97(0x995)]();for(let _0x1ae376 of _0x1c05c2['commands'])switch(_0x1ae376[_0x4b4f97(0x2c1)]){case'M':var _0xe39b3b,_0x45edaa;_0x33ce4f[_0x4b4f97(0x80a)]((_0xe39b3b=_0x1ae376['x'])==null?0x0:_0xe39b3b,(_0x45edaa=_0x1ae376['y'])==null?0x0:_0x45edaa);break;case'L':var _0x750563,_0x417b5a;_0x33ce4f[_0x4b4f97(0x5be)]((_0x750563=_0x1ae376['x'])==null?0x0:_0x750563,(_0x417b5a=_0x1ae376['y'])==null?0x0:_0x417b5a);break;case'C':var _0x39e67f,_0x368d37,_0x1d9973,_0x130ba,_0x42ced2,_0x1c7feb;_0x33ce4f[_0x4b4f97(0x942)]((_0x39e67f=_0x1ae376['x1'])==null?0x0:_0x39e67f,(_0x368d37=_0x1ae376['y1'])==null?0x0:_0x368d37,(_0x1d9973=_0x1ae376['x2'])==null?0x0:_0x1d9973,(_0x130ba=_0x1ae376['y2'])==null?0x0:_0x130ba,(_0x42ced2=_0x1ae376['x'])==null?0x0:_0x42ced2,(_0x1c7feb=_0x1ae376['y'])==null?0x0:_0x1c7feb);break;case'Q':var _0x41c006,_0xcd858b,_0x171107,_0xf4159f;_0x33ce4f[_0x4b4f97(0x603)]((_0x41c006=_0x1ae376['x1'])==null?0x0:_0x41c006,(_0xcd858b=_0x1ae376['y1'])==null?0x0:_0xcd858b,(_0x171107=_0x1ae376['x'])==null?0x0:_0x171107,(_0xf4159f=_0x1ae376['y'])==null?0x0:_0xf4159f);break;case'Z':_0x33ce4f[_0x4b4f97(0x427)]();break;}return!0x0;}function _0x11bd08(_0x2fa646,_0x5879ce={}){const _0x4612ea=_0x59d572;var _0x18cfdb,_0x16cb5c,_0x337009,_0x44472d;let _0x23e960=(_0x18cfdb=_0x5879ce[_0x4612ea(0x68e)])==null?0x1:_0x18cfdb,_0x291c48=(_0x16cb5c=_0x5879ce['devicePixelRatio'])==null?0x1:_0x16cb5c,_0x2b9eda=_0x2fa646['pdfBoxes'][_0x4612ea(0xca2)],_0x29454e=(_0x337009=_0x2fa646[_0x4612ea(0x336)][_0x4612ea(0x58c)])==null?_0x2b9eda:_0x337009,_0x26a37c=Math[_0x4612ea(0x542)](0x0,_0x29454e[0x2]-_0x29454e[0x0]),_0x576caf=Math[_0x4612ea(0x542)](0x0,_0x29454e[0x3]-_0x29454e[0x1]),_0x738204=(0x0,_0x21fa40[_0x4612ea(0xb35)])((0x0,_0x21fa40[_0x4612ea(0x7c3)])(_0x26a37c))*_0x23e960,_0x243420=(0x0,_0x21fa40[_0x4612ea(0xb35)])((0x0,_0x21fa40[_0x4612ea(0x7c3)])(_0x576caf))*_0x23e960,_0x525754=(_0x44472d=_0x2fa646[_0x4612ea(0x814)])==null?0x0:_0x44472d,_0x1f6997=_0x525754===0x5a||_0x525754===0x10e,_0x5d1115=_0x1f6997?_0x243420:_0x738204,_0x2f5c70=_0x1f6997?_0x738204:_0x243420,_0x26ecd2=Math[_0x4612ea(0x542)](0x1,Math['ceil'](_0x5d1115*_0x291c48)),_0x2e911=Math[_0x4612ea(0x542)](0x1,Math[_0x4612ea(0x780)](_0x2f5c70*_0x291c48)),_0x25f72d=-(0x0,_0x21fa40['emuToCssPx'])((0x0,_0x21fa40['ptToEmu'])(_0x29454e[0x0]-_0x2b9eda[0x0]))*_0x23e960,_0xcb395a=-(0x0,_0x21fa40[_0x4612ea(0xb35)])((0x0,_0x21fa40['ptToEmu'])(_0x2b9eda[0x3]-_0x29454e[0x3]))*_0x23e960;return{'zoom':_0x23e960,'devicePixelRatio':_0x291c48,'widthCssPx':_0x5d1115,'heightCssPx':_0x2f5c70,'widthDevicePx':_0x26ecd2,'heightDevicePx':_0x2e911,'canvasScaleX':_0x5d1115>0x0?_0x26ecd2/_0x5d1115:_0x291c48,'canvasScaleY':_0x2f5c70>0x0?_0x2e911/_0x2f5c70:_0x291c48,'rotation':_0x525754,'visibleBox':_0x29454e,'mediaBox':_0x2b9eda,'contentOffsetXCssPx':_0x25f72d,'contentOffsetYCssPx':_0xcb395a};}let _0x3e4bd7=_0x59d572(0x870);function _0x52097d(_0x47389a){'@babel/helpers - typeof';const _0x287042=_0x59d572;return _0x52097d=typeof Symbol==_0x287042(0x9df)&&typeof Symbol[_0x287042(0xc44)]==_0x287042(0xb5b)?function(_0x2d6cf3){return typeof _0x2d6cf3;}:function(_0x540717){const _0x8ee91f=_0x287042;return _0x540717&&typeof Symbol==_0x8ee91f(0x9df)&&_0x540717[_0x8ee91f(0x6d2)]===Symbol&&_0x540717!==Symbol[_0x8ee91f(0x505)]?_0x8ee91f(0xb5b):typeof _0x540717;},_0x52097d(_0x47389a);}function _0x48b593(_0x2f211e,_0x54b668){const _0x13e160=_0x59d572;if(_0x52097d(_0x2f211e)!='object'||!_0x2f211e)return _0x2f211e;var _0x32f5f4=_0x2f211e[Symbol[_0x13e160(0x92b)]];if(_0x32f5f4!==void 0x0){var _0x368a47=_0x32f5f4[_0x13e160(0x3f4)](_0x2f211e,_0x54b668||_0x13e160(0x703));if(_0x52097d(_0x368a47)!=_0x13e160(0x961))return _0x368a47;throw TypeError(_0x13e160(0x95b));}return(_0x54b668===_0x13e160(0x221)?String:Number)(_0x2f211e);}function _0x80d976(_0x5453a2){const _0x4fd049=_0x59d572;var _0x19d6b7=_0x48b593(_0x5453a2,_0x4fd049(0x221));return _0x52097d(_0x19d6b7)=='symbol'?_0x19d6b7:_0x19d6b7+'';}function _0x22e50d(_0x2dca13,_0x914040,_0x5de6ae){const _0x273d4b=_0x59d572;return(_0x914040=_0x80d976(_0x914040))in _0x2dca13?Object[_0x273d4b(0x18b)](_0x2dca13,_0x914040,{'value':_0x5de6ae,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x2dca13[_0x914040]=_0x5de6ae,_0x2dca13;}let _0xde34c4=function(_0x53e15b){const _0x40d74c=_0x59d572;return _0x53e15b[_0x40d74c(0x380)]=_0x40d74c(0x77c),_0x53e15b[_0x40d74c(0x46c)]='unit-updated',_0x53e15b['LOCAL_UPDATED']='local-updated',_0x53e15b[_0x40d74c(0x52f)]='ephemeral-updated',_0x53e15b[_0x40d74c(0x626)]=_0x40d74c(0x326),_0x53e15b[_0x40d74c(0x9bb)]='detached',_0x53e15b;}({}),_0x289aee=(0x0,_0x2894d3['createIdentifier'])(_0x59d572(0x601));var _0xb00623=class extends _0x2894d3['Disposable']{constructor(..._0x54862c){const _0x39bee3=_0x59d572;super(..._0x54862c),_0x22e50d(this,_0x39bee3(0x643),new Map()),_0x22e50d(this,_0x39bee3(0x8d2),new _0x3fc99d[(_0x39bee3(0xa3f))]()),_0x22e50d(this,'changed$',this[_0x39bee3(0x8d2)]['asObservable']());}['attachUnit'](_0xb57a77){const _0x16c4b1=_0x59d572;let _0x502b00=_0xb57a77['getUnitId'](),_0x1f286=this[_0x16c4b1(0x643)][_0x16c4b1(0x2ad)](_0x502b00);if(_0x1f286)return _0x1f286[_0x16c4b1(0x1b6)];let _0x2e39a9={'unitId':_0x502b00,'local':(0x0,_0x21fa40[_0x16c4b1(0xa89)])({'sessionId':_0x16c4b1(0x656)+_0x502b00,'documentId':_0x502b00,'baseUnitRevision':_0xb57a77['getRev']()}),'ephemeral':(0x0,_0x21fa40[_0x16c4b1(0xc89)])()};return this[_0x16c4b1(0x643)]['set'](_0x502b00,{'model':_0xb57a77,'state':_0x2e39a9,'pageRevisions':new Map(),'recordedBatchIds':new Set()}),this[_0x16c4b1(0xaf0)](_0x16c4b1(0x77c),_0x2e39a9),_0x2e39a9;}[_0x59d572(0x79d)](_0x59c0af){const _0x390477=_0x59d572;return this[_0x390477(0x643)][_0x390477(0x297)](_0x59c0af)?(this['_changed$'][_0x390477(0x91b)]({'type':_0x390477(0x149),'unitId':_0x59c0af}),!0x0):!0x1;}[_0x59d572(0xaf6)](_0x6b25ba){const _0x46eeb4=_0x59d572;var _0xeeedfd;return(_0xeeedfd=this[_0x46eeb4(0x643)][_0x46eeb4(0x2ad)](_0x6b25ba))==null?void 0x0:_0xeeedfd['state'];}[_0x59d572(0x178)](_0x5e1bfb){const _0x272f59=_0x59d572;let _0x242dee=this['_records'][_0x272f59(0x2ad)](_0x5e1bfb);if(_0x242dee)return{'durable':_0x242dee[_0x272f59(0x538)][_0x272f59(0x989)](),'local':_0x242dee['state']['local'],'ephemeral':_0x242dee[_0x272f59(0x1b6)][_0x272f59(0x75f)]};}['refreshUnit'](_0x29ca6a){const _0x27efd8=_0x59d572;let _0x2e5e69=this[_0x27efd8(0x643)][_0x27efd8(0x2ad)](_0x29ca6a);return _0x2e5e69?(new Set([..._0x2e5e69[_0x27efd8(0x538)]['getDocument']()[_0x27efd8(0x664)]['map'](_0x14cc10=>_0x14cc10['id']),...Object['keys'](_0x2e5e69['model']['getEditState']()['pagePatches'])])[_0x27efd8(0xc9d)](_0x20d496=>{const _0x3cd4b1=_0x27efd8;var _0x4da26f;_0x2e5e69[_0x3cd4b1(0xc6c)]['set'](_0x20d496,((_0x4da26f=_0x2e5e69[_0x3cd4b1(0xc6c)][_0x3cd4b1(0x2ad)](_0x20d496))==null?0x0:_0x4da26f)+0x1);}),this[_0x27efd8(0xaf0)](_0x27efd8(0x82e),_0x2e5e69[_0x27efd8(0x1b6)]),!0x0):!0x1;}[_0x59d572(0xb76)](_0x185436,_0x3de157){const _0x1e7234=_0x59d572;let _0x8650db=this[_0x1e7234(0x643)][_0x1e7234(0x2ad)](_0x185436);if(!_0x8650db)return;let _0x257339=_0x3de157(_0x8650db[_0x1e7234(0x1b6)][_0x1e7234(0x828)]);if(_0x257339[_0x1e7234(0x401)]!==_0x185436)throw Error(_0x1e7234(0x131)+_0x257339[_0x1e7234(0x401)]+_0x1e7234(0x7b3)+_0x185436+'\x22.');let _0x32434d={..._0x8650db[_0x1e7234(0x1b6)],'local':_0x257339};return this[_0x1e7234(0x643)][_0x1e7234(0xad2)](_0x185436,{..._0x8650db,'state':_0x32434d}),this[_0x1e7234(0xaf0)](_0x1e7234(0x159),_0x32434d),_0x32434d;}[_0x59d572(0x46b)](_0x16a31e,_0x488ab7){const _0xf609ae=_0x59d572;let _0x46924f=this['_records']['get'](_0x16a31e);if(!_0x46924f)return;let _0x20ac1a={..._0x46924f[_0xf609ae(0x1b6)],'ephemeral':_0x488ab7(_0x46924f[_0xf609ae(0x1b6)]['ephemeral'])};return this[_0xf609ae(0x643)][_0xf609ae(0xad2)](_0x16a31e,{..._0x46924f,'state':_0x20ac1a}),this['_emit'](_0xf609ae(0x536),_0x20ac1a),_0x20ac1a;}['updateViewport'](_0x48cefb,_0x42c87e){const _0x100717=_0x59d572;let _0x37f33e=this[_0x100717(0x643)]['get'](_0x48cefb);if(!_0x37f33e)return;let _0x4a5433={'zoom':0x1,'scrollX':0x0,'scrollY':0x0,..._0x37f33e[_0x100717(0x1b6)][_0x100717(0x75f)][_0x100717(0x809)],..._0x42c87e},_0x2e3df5={..._0x37f33e[_0x100717(0x1b6)],'local':_0x42c87e[_0x100717(0x2ed)]?{..._0x37f33e[_0x100717(0x1b6)]['local'],'selection':{..._0x37f33e[_0x100717(0x1b6)][_0x100717(0x828)][_0x100717(0xb23)],'activePageId':_0x42c87e[_0x100717(0x2ed)]}}:_0x37f33e[_0x100717(0x1b6)][_0x100717(0x828)],'ephemeral':{..._0x37f33e[_0x100717(0x1b6)][_0x100717(0x75f)],'viewport':_0x4a5433}};return this[_0x100717(0x643)][_0x100717(0xad2)](_0x48cefb,{..._0x37f33e,'state':_0x2e3df5}),this[_0x100717(0xaf0)]('viewport-updated',_0x2e3df5),_0x2e3df5;}[_0x59d572(0x8b5)](_0x11a107,_0x48656a,_0x566c41=!0x1){const _0x4607c9=_0x59d572;let _0x4c463d=this[_0x4607c9(0x643)][_0x4607c9(0x2ad)](_0x11a107);return!_0x4c463d||_0x4c463d[_0x4607c9(0x81f)][_0x4607c9(0x66b)](_0x48656a['id'])?!0x1:(_0x4c463d[_0x4607c9(0x81f)][_0x4607c9(0x30c)](_0x48656a['id']),_0x46a29c(_0x4c463d[_0x4607c9(0x538)],_0x48656a)['forEach'](_0x3e0368=>{const _0x20a704=_0x4607c9;var _0x52cac3;_0x4c463d['pageRevisions'][_0x20a704(0xad2)](_0x3e0368,((_0x52cac3=_0x4c463d[_0x20a704(0xc6c)]['get'](_0x3e0368))==null?0x0:_0x52cac3)+0x1);}),_0x566c41&&this[_0x4607c9(0xaf0)](_0x4607c9(0x82e),_0x4c463d[_0x4607c9(0x1b6)]),!0x0);}[_0x59d572(0x282)](_0x5704c9,_0xfa902d){const _0xc60e85=_0x59d572;var _0x40ba31,_0x36e08a;return(_0x40ba31=(_0x36e08a=this[_0xc60e85(0x643)][_0xc60e85(0x2ad)](_0x5704c9))==null?void 0x0:_0x36e08a[_0xc60e85(0xc6c)][_0xc60e85(0x2ad)](_0xfa902d))==null?0x0:_0x40ba31;}[_0x59d572(0x1b9)](_0x54af24,_0x165db9,_0x2105db=0x0){const _0x5e068e=_0x59d572;var _0x5bb629;let _0x23a541=this[_0x5e068e(0x643)][_0x5e068e(0x2ad)](_0x54af24);if(_0x23a541)return(0x0,_0x21fa40['createPdfPageCacheEpoch'])(_0x23a541[_0x5e068e(0x538)][_0x5e068e(0x15a)](),(_0x5bb629=_0x23a541['pageRevisions'][_0x5e068e(0x2ad)](_0x165db9))==null?0x0:_0x5bb629,_0x2105db);}[_0x59d572(0xa9e)](){const _0x3c213d=_0x59d572;this[_0x3c213d(0x643)]['clear'](),this[_0x3c213d(0x8d2)][_0x3c213d(0x7f2)](),super['dispose']();}['_emit'](_0x1583de,_0xd658b6){const _0x615b4c=_0x59d572;this[_0x615b4c(0x8d2)][_0x615b4c(0x91b)]({'type':_0x1583de,'unitId':_0xd658b6[_0x615b4c(0x400)],'state':_0xd658b6});}};function _0x46a29c(_0x3aac81,_0x4734aa){const _0x1e7682=_0x59d572;let _0x43a90f=new Set(),_0xe5c18e=new Set(),_0x569ac0=new Set(),_0x1356b8=new Set(),_0x1bce19=new Set();_0x4734aa['mutations'][_0x1e7682(0xc9d)](_0x49375e=>{const _0x3f9754=_0x1e7682;_0x2287c7(_0x49375e[_0x3f9754(0x5f8)],_0x43a90f,_0xe5c18e,_0x569ac0,_0x1356b8,_0x1bce19),_0x2287c7(_0x49375e['payload'],_0x43a90f,_0xe5c18e,_0x569ac0,_0x1356b8,_0x1bce19);});let _0x17d90b=(0x0,_0x21fa40[_0x1e7682(0x3ab)])(_0x3aac81[_0x1e7682(0x989)]()),_0x20ca6c=(0x0,_0x21fa40['getPdfDocumentRuntimeIndex'])(_0x3aac81['getDocument']());return _0xe5c18e[_0x1e7682(0xc9d)](_0x3cfbd3=>{const _0x2ddbc8=_0x1e7682;var _0x314fff;let _0x272a7d=_0x17d90b[_0x2ddbc8(0x6df)][_0x2ddbc8(0x2ad)](_0x3cfbd3);_0x272a7d&&_0x43a90f[_0x2ddbc8(0x30c)](_0x272a7d),(_0x314fff=_0x20ca6c[_0x2ddbc8(0x404)][_0x2ddbc8(0x2ad)](_0x3cfbd3))==null||_0x314fff['forEach'](_0x4b9252=>_0x43a90f[_0x2ddbc8(0x30c)](_0x4b9252));}),_0x569ac0[_0x1e7682(0xc9d)](_0x406283=>{const _0x1c0327=_0x1e7682;var _0x256370,_0x7f3941;(_0x256370=_0x17d90b[_0x1c0327(0x76e)][_0x1c0327(0x2ad)](_0x406283))==null||_0x256370['forEach'](_0x43b057=>_0x43a90f['add'](_0x43b057)),(_0x7f3941=_0x20ca6c['pageIdsByTextStoryId'][_0x1c0327(0x2ad)](_0x406283))==null||_0x7f3941[_0x1c0327(0xc9d)](_0x2d18dc=>_0x43a90f[_0x1c0327(0x30c)](_0x2d18dc));}),_0x1356b8[_0x1e7682(0xc9d)](_0x4b1855=>{const _0x240770=_0x1e7682;var _0x592fbc;let _0x2bfb81=(_0x592fbc=_0x3aac81['getDocument']()[_0x240770(0x791)][_0x4b1855])==null?void 0x0:_0x592fbc['pageId'];_0x2bfb81&&_0x20ca6c[_0x240770(0x1ef)][_0x240770(0x66b)](_0x2bfb81)&&_0x43a90f[_0x240770(0x30c)](_0x2bfb81);}),_0x1bce19[_0x1e7682(0xc9d)](_0x5b2cf6=>{const _0x554a55=_0x1e7682;var _0x4c9a72;(_0x4c9a72=_0x20ca6c[_0x554a55(0x8e6)]['get'](_0x5b2cf6))==null||_0x4c9a72['forEach'](_0x481f73=>_0x43a90f[_0x554a55(0x30c)](_0x481f73));}),_0x43a90f['size']===0x0&&_0x4734aa[_0x1e7682(0x3c8)][_0x1e7682(0xba6)]>0x0&&(_0x3aac81[_0x1e7682(0x15a)]()[_0x1e7682(0x664)]['forEach'](_0x1ae3f9=>_0x43a90f[_0x1e7682(0x30c)](_0x1ae3f9['id'])),Object[_0x1e7682(0x3ed)](_0x3aac81['getEditState']()['pagePatches'])[_0x1e7682(0xc9d)](_0x3e090c=>_0x43a90f[_0x1e7682(0x30c)](_0x3e090c))),_0x43a90f;}function _0x2287c7(_0x1e2594,_0x93bd44,_0x546e10,_0x4da180,_0x4e50c6,_0x3b9b00,_0x5dd4a8='',_0x10c097=0x0,_0x4d35aa=new WeakSet()){const _0x39867d=_0x59d572;if(typeof _0x1e2594==_0x39867d(0x221)){_0x5dd4a8==='pageId'||_0x5dd4a8==='pageIds'||_0x5dd4a8['endsWith'](_0x39867d(0x25a))||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0x2eb))?_0x93bd44[_0x39867d(0x30c)](_0x1e2594):_0x5dd4a8===_0x39867d(0x826)||_0x5dd4a8===_0x39867d(0x5a9)||_0x5dd4a8['endsWith'](_0x39867d(0xc09))||_0x5dd4a8['endsWith']('ObjectIds')?_0x546e10['add'](_0x1e2594):_0x5dd4a8===_0x39867d(0x6b8)||_0x5dd4a8===_0x39867d(0x3bb)||_0x5dd4a8[_0x39867d(0x58a)]('StoryId')||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0x819))?_0x4da180['add'](_0x1e2594):_0x5dd4a8==='displayListId'||_0x5dd4a8===_0x39867d(0x217)||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0x9f4))||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0xb60))?_0x4e50c6['add'](_0x1e2594):(_0x5dd4a8==='assetId'||_0x5dd4a8===_0x39867d(0x291)||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0xc2f))||_0x5dd4a8['endsWith'](_0x39867d(0xb56))||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0x8a9))||_0x5dd4a8['endsWith'](_0x39867d(0x23b))||_0x5dd4a8[_0x39867d(0x58a)]('PatternId')||_0x5dd4a8[_0x39867d(0x58a)](_0x39867d(0x2a0)))&&_0x3b9b00['add'](_0x1e2594);return;}if(!(!_0x1e2594||typeof _0x1e2594!=_0x39867d(0x961)||_0x10c097>0x6||_0x4d35aa['has'](_0x1e2594))){if(_0x4d35aa[_0x39867d(0x30c)](_0x1e2594),Array['isArray'](_0x1e2594)){_0x1e2594[_0x39867d(0xc9d)](_0x1a1fe0=>_0x2287c7(_0x1a1fe0,_0x93bd44,_0x546e10,_0x4da180,_0x4e50c6,_0x3b9b00,_0x5dd4a8,_0x10c097+0x1,_0x4d35aa));return;}Object[_0x39867d(0x8a2)](_0x1e2594)['forEach'](([_0x5d59bd,_0xbedbfd])=>{const _0x3a6ebe=_0x39867d;_0x5d59bd==='page'&&_0xbedbfd&&typeof _0xbedbfd==_0x3a6ebe(0x961)&&typeof _0xbedbfd['id']=='string'&&_0x93bd44[_0x3a6ebe(0x30c)](_0xbedbfd['id']),_0x2287c7(_0xbedbfd,_0x93bd44,_0x546e10,_0x4da180,_0x4e50c6,_0x3b9b00,_0x5d59bd,_0x10c097+0x1,_0x4d35aa);});}}function _0x4a4ad7(_0x3ecda5,_0x529388){return function(_0x55adeb,_0x5c0625){_0x529388(_0x55adeb,_0x5c0625,_0x3ecda5);};}function _0x3ef5be(_0xb0a147,_0x298303,_0x13c622,_0x51de94){const _0x54767e=_0x59d572;var _0x5844b6=arguments[_0x54767e(0xba6)],_0x1b02d2=_0x5844b6<0x3?_0x298303:_0x51de94===null?_0x51de94=Object[_0x54767e(0x80e)](_0x298303,_0x13c622):_0x51de94,_0x89c194;if(typeof Reflect==_0x54767e(0x961)&&typeof Reflect[_0x54767e(0xbc9)]==_0x54767e(0x9df))_0x1b02d2=Reflect[_0x54767e(0xbc9)](_0xb0a147,_0x298303,_0x13c622,_0x51de94);else{for(var _0x27c9f8=_0xb0a147[_0x54767e(0xba6)]-0x1;_0x27c9f8>=0x0;_0x27c9f8--)(_0x89c194=_0xb0a147[_0x27c9f8])&&(_0x1b02d2=(_0x5844b6<0x3?_0x89c194(_0x1b02d2):_0x5844b6>0x3?_0x89c194(_0x298303,_0x13c622,_0x1b02d2):_0x89c194(_0x298303,_0x13c622))||_0x1b02d2);}return _0x5844b6>0x3&&_0x1b02d2&&Object[_0x54767e(0x18b)](_0x298303,_0x13c622,_0x1b02d2),_0x1b02d2;}let _0x4e4eea=(0x0,_0x2894d3[_0x59d572(0x11f)])('pdfs-ui.pdf-editor-command.service'),_0x2803b6=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(_0x2f7751,_0xd7689,_0x258a16,_0x4fae59){const _0x9c4223=_0x59d572;super(),this[_0x9c4223(0xa02)]=_0x2f7751,this[_0x9c4223(0x59a)]=_0xd7689,this['_instanceService']=_0x258a16,this[_0x9c4223(0x44d)]=_0x4fae59,_0x22e50d(this,_0x9c4223(0x4f2),new Map());let _0x10e80f=this[_0x9c4223(0x44d)][_0x9c4223(0xa59)][_0x9c4223(0x5c1)](_0x1dc434=>{const _0x222665=_0x9c4223;_0x1dc434['type']===_0x222665(0x149)&&(this[_0x222665(0x4f2)]['delete'](_0x1dc434[_0x222665(0x400)]),this[_0x222665(0x59a)][_0x222665(0x2ba)](_0x1dc434['unitId']));});this[_0x9c4223(0x17b)]((0x0,_0x2894d3[_0x9c4223(0xca0)])(()=>_0x10e80f[_0x9c4223(0x307)]()));}async['execute'](_0x444c03,_0x268d0d,_0x313c81,_0x5d8f56){const _0x276ab7=_0x59d572;var _0x4643f5,_0x4c3c05;let _0x359ee7=this['_instanceService'][_0x276ab7(0x9ad)](_0x444c03,_0x2894d3['UniverInstanceType'][_0x276ab7(0x25e)]);if(!_0x359ee7)return this[_0x276ab7(0x2af)](_0x444c03,_0x276ab7(0x921));let _0x123d58=this['_runtimeService'][_0x276ab7(0x178)](_0x444c03);if(!_0x123d58)return this[_0x276ab7(0x2af)](_0x444c03,_0x276ab7(0x6f1),_0x359ee7['getRev']());let _0x2c77b3=(_0x4643f5=_0x5d8f56[_0x276ab7(0x337)])==null?Date['now']():_0x4643f5,_0x27161f=_0x268d0d[_0x276ab7(0x1ad)]({'documentId':_0x444c03,'actorId':_0x5d8f56[_0x276ab7(0x939)],'clientId':_0x5d8f56[_0x276ab7(0x51e)],'editState':_0x359ee7['getEditState'](),'selection':_0x123d58[_0x276ab7(0x828)][_0x276ab7(0xb23)],'baseRevision':_0x359ee7[_0x276ab7(0x989)]()[_0x276ab7(0x7e0)],'now':_0x2c77b3,'createId':(_0x4c3c05=_0x5d8f56[_0x276ab7(0x78d)])==null?_0x399739=>this[_0x276ab7(0x992)](_0x444c03,_0x399739):_0x4c3c05},_0x313c81);return this[_0x276ab7(0x314)](_0x444c03,_0x359ee7,_0x123d58,_0x27161f,_0x2c77b3);}async[_0x59d572(0x458)](_0x45d21a,_0x1b4114,_0x5641b1){const _0xf8cb93=_0x59d572;var _0x124900;let _0x4a36ae=this[_0xf8cb93(0x67d)][_0xf8cb93(0x9ad)](_0x45d21a,_0x2894d3[_0xf8cb93(0x79c)]['UNIVER_PDF']);if(!_0x4a36ae)return this[_0xf8cb93(0x2af)](_0x45d21a,'unit-not-found');let _0x38e4e1=this[_0xf8cb93(0x44d)]['getStateParts'](_0x45d21a);return _0x38e4e1?this[_0xf8cb93(0x314)](_0x45d21a,_0x4a36ae,_0x38e4e1,_0x1b4114,(_0x124900=_0x5641b1['now'])==null?Date[_0xf8cb93(0x337)]():_0x124900):this[_0xf8cb93(0x2af)](_0x45d21a,'runtime-not-found',_0x4a36ae[_0xf8cb93(0x24e)]());}[_0x59d572(0x793)](_0x29926d,_0x82a55){const _0x106387=_0x59d572;return this['_executeStandardHistory'](_0x29926d,_0x106387(0x793));}[_0x59d572(0x69a)](_0x1e20dd,_0x5351e4){const _0xd33ff8=_0x59d572;return this[_0xd33ff8(0x820)](_0x1e20dd,_0xd33ff8(0x69a));}['applyHistory'](_0x2ceb49,_0x280203,_0x32dd21,_0x20ff3c){const _0xc90413=_0x59d572;return this[_0xc90413(0x4b8)](_0x2ceb49,_0x20ff3c,_0x32dd21,_0x280203);}async[_0x59d572(0x314)](_0x2aec74,_0x1bc1f9,_0x3a7a4c,_0x287604,_0x131574){const _0x2ab6fd=_0x59d572;return _0x287604[_0x2ab6fd(0xa8e)]&&_0x287604['batch']['documentId']!==_0x2aec74?this[_0x2ab6fd(0x2af)](_0x2aec74,'invalid-result',_0x1bc1f9[_0x2ab6fd(0x24e)](),_0x287604):_0x287604['batch']?await this[_0x2ab6fd(0xa02)][_0x2ab6fd(0x860)](_0x21fa40[_0x2ab6fd(0xbe2)]['id'],{'unitId':_0x2aec74,'expectedRevision':_0x1bc1f9[_0x2ab6fd(0x24e)](),'batch':_0x287604[_0x2ab6fd(0xa8e)]})?(this[_0x2ab6fd(0xb85)](_0x2aec74,_0x3a7a4c,_0x287604,_0x1bc1f9[_0x2ab6fd(0x24e)](),_0x131574),this[_0x2ab6fd(0x20f)](_0x2aec74,_0x1bc1f9),_0x287604[_0x2ab6fd(0xa8e)]['mutations'][_0x2ab6fd(0xbaa)](_0x2935ba=>!!_0x2935ba[_0x2ab6fd(0x385)])&&(this['_instanceService'][_0x2ab6fd(0x6c3)](_0x2aec74),this[_0x2ab6fd(0x59a)][_0x2ab6fd(0xa9b)]({'unitID':_0x2aec74,'id':_0x287604[_0x2ab6fd(0xa8e)]['id'],'undoMutations':[{'id':_0x3e4bd7,'params':{'unitId':_0x2aec74,'batchId':_0x287604[_0x2ab6fd(0xa8e)]['id'],'direction':_0x2ab6fd(0x793)}}],'redoMutations':[{'id':_0x3e4bd7,'params':{'unitId':_0x2aec74,'batchId':_0x287604[_0x2ab6fd(0xa8e)]['id'],'direction':_0x2ab6fd(0x69a)}}]})),{'accepted':!0x0,'status':_0x2ab6fd(0x309),'unitId':_0x2aec74,'revision':_0x1bc1f9[_0x2ab6fd(0x24e)](),'result':_0x287604}):this[_0x2ab6fd(0x2af)](_0x2aec74,_0x2ab6fd(0x7fb),_0x1bc1f9[_0x2ab6fd(0x24e)](),_0x287604):(this['_updateLocalResult'](_0x2aec74,_0x3a7a4c,_0x287604,_0x1bc1f9[_0x2ab6fd(0x24e)](),_0x131574),{'accepted':!0x0,'status':_0x2ab6fd(0x309),'unitId':_0x2aec74,'revision':_0x1bc1f9['getRev'](),'result':_0x287604});}async['_executeStandardHistory'](_0x48b293,_0x5f595b){const _0x55e490=_0x59d572;let _0xb28c08=this[_0x55e490(0x67d)][_0x55e490(0x9ad)](_0x48b293,_0x2894d3[_0x55e490(0x79c)][_0x55e490(0x25e)]);return _0xb28c08?(this[_0x55e490(0x67d)][_0x55e490(0x6c3)](_0x48b293),await this['_commandService'][_0x55e490(0x860)](_0x5f595b==='undo'?_0x2894d3[_0x55e490(0xac8)]['id']:_0x2894d3[_0x55e490(0x874)]['id'])?{'accepted':!0x0,'status':_0x55e490(0x309),'unitId':_0x48b293,'revision':_0xb28c08[_0x55e490(0x24e)]()}:this[_0x55e490(0x2af)](_0x48b293,_0x55e490(0x7fb),_0xb28c08[_0x55e490(0x24e)]())):this['_failure'](_0x48b293,_0x55e490(0x921));}[_0x59d572(0x4b8)](_0x3651e7,_0x5ed5fd,_0x198070,_0x1e53c7){const _0x1657c9=_0x59d572;var _0x4bb000;let _0x25908e=this[_0x1657c9(0x67d)]['getUnit'](_0x3651e7,_0x2894d3[_0x1657c9(0x79c)][_0x1657c9(0x25e)]);if(!_0x25908e)return this[_0x1657c9(0x2af)](_0x3651e7,'unit-not-found');let _0xe51832=this['_runtimeService'][_0x1657c9(0x178)](_0x3651e7);if(!_0xe51832)return this[_0x1657c9(0x2af)](_0x3651e7,_0x1657c9(0x6f1),_0x25908e[_0x1657c9(0x24e)]());let _0x4a47b=(0x0,_0x21fa40[_0x1657c9(0x9e6)])(_0xe51832),_0x50e4ff=_0x198070===_0x1657c9(0x793)?_0x4a47b[_0x1657c9(0x48a)][_0x1657c9(0x263)]['at'](-0x1):_0x4a47b[_0x1657c9(0x48a)][_0x1657c9(0xc32)]['at'](-0x1);if(_0x1e53c7&&_0x50e4ff!==_0x1e53c7)return this['_failure'](_0x3651e7,_0x1657c9(0x7fb),_0x25908e[_0x1657c9(0x24e)]());let _0x364dc7=_0x50e4ff?(0x0,_0x21fa40[_0x1657c9(0x5af)])(_0x4a47b[_0x1657c9(0x1fb)])[_0x1657c9(0x34d)]['get'](_0x50e4ff):void 0x0,_0x4dd2b4=_0x198070==='undo'?_0x364dc7==null?void 0x0:_0x364dc7[_0x1657c9(0x3c8)][_0x1657c9(0xb06)](_0x42c996=>_0x42c996['inverse'])['reverse']():_0x364dc7==null?void 0x0:_0x364dc7['mutations'];if(!_0x364dc7||!(_0x4dd2b4!=null&&_0x4dd2b4[_0x1657c9(0xbaa)](Boolean)))return{'accepted':!0x0,'status':'accepted','unitId':_0x3651e7,'revision':_0x25908e[_0x1657c9(0x24e)]()};let _0xa6613b=(_0x4bb000=_0x5ed5fd['now'])==null?Date[_0x1657c9(0x337)]():_0x4bb000,_0x5a5ce1=_0x4dd2b4[_0x1657c9(0xb06)]((_0x2332ed,_0x2eb3bb)=>({..._0x2332ed,'id':this['_createId'](_0x3651e7,_0x1657c9(0x9f5)),'actorId':_0x5ed5fd[_0x1657c9(0x939)],'clientId':_0x5ed5fd[_0x1657c9(0x51e)],'sequence':_0x2eb3bb+0x1,'timestamp':_0xa6613b,'source':_0x198070===_0x1657c9(0x793)?_0x21fa40[_0x1657c9(0x5ef)][_0x1657c9(0x41e)]:_0x21fa40[_0x1657c9(0x5ef)][_0x1657c9(0x275)],'baseRevision':_0x25908e[_0x1657c9(0x989)]()['revision']})),_0x4d7fb2={'id':this['_createId'](_0x3651e7,_0x1657c9(0xa8e)),'documentId':_0x3651e7,'actorId':_0x5ed5fd[_0x1657c9(0x939)],'reason':_0x21fa40[_0x1657c9(0x1d7)]['HISTORY'],'mutations':_0x5a5ce1,'createdAt':_0xa6613b,'atomic':_0x364dc7[_0x1657c9(0x343)],'baseRevision':_0x25908e[_0x1657c9(0x989)]()[_0x1657c9(0x7e0)]};if(!this[_0x1657c9(0xa02)][_0x1657c9(0x6a4)](_0x21fa40['ApplyPdfMutationBatchMutation']['id'],{'unitId':_0x3651e7,'expectedRevision':_0x25908e[_0x1657c9(0x24e)](),'batch':_0x4d7fb2}))return this[_0x1657c9(0x2af)](_0x3651e7,'rejected',_0x25908e[_0x1657c9(0x24e)](),{'batch':_0x4d7fb2});let _0x1f64fb=_0x198070===_0x1657c9(0x793)?(0x0,_0x21fa40['undoPdfEditorSession'])(_0x4a47b):(0x0,_0x21fa40[_0x1657c9(0x123)])(_0x4a47b),_0x4c884f=(0x0,_0x21fa40[_0x1657c9(0x499)])(_0x1f64fb)['local'],_0x1bf03d=Object[_0x1657c9(0xb1d)](_0x5a5ce1[_0x1657c9(0xb06)](_0x24aa88=>[_0x24aa88['id'],{'mutationId':_0x24aa88['id'],'serverRevision':_0x25908e['getRev'](),'acknowledgedAt':_0xa6613b}]));return this[_0x1657c9(0x44d)][_0x1657c9(0x8b5)](_0x3651e7,_0x4d7fb2),this[_0x1657c9(0x44d)]['updateLocal'](_0x3651e7,_0x557b7d=>({..._0x4c884f,'baseUnitRevision':_0x25908e[_0x1657c9(0x24e)](),'mutationLog':{..._0x557b7d[_0x1657c9(0x1fb)],'batches':[..._0x557b7d['mutationLog'][_0x1657c9(0xa37)],_0x4d7fb2],'acknowledgedMutationIds':{..._0x557b7d[_0x1657c9(0x1fb)][_0x1657c9(0xa4c)],..._0x1bf03d}}})),this[_0x1657c9(0x20f)](_0x3651e7,_0x25908e),{'accepted':!0x0,'status':_0x1657c9(0x309),'unitId':_0x3651e7,'revision':_0x25908e[_0x1657c9(0x24e)](),'result':{'batch':_0x4d7fb2,'selection':_0x1f64fb[_0x1657c9(0xb23)]}};}[_0x59d572(0x20f)](_0x5875a1,_0x6445cb){const _0x48fd4d=_0x59d572;var _0x4b224a,_0x7088e8,_0x154a3e;let _0x61506d=this['_runtimeService'][_0x48fd4d(0x178)](_0x5875a1);if(!_0x61506d)return;let _0x48767b=(0x0,_0x21fa40[_0x48fd4d(0x8ba)])(_0x6445cb[_0x48fd4d(0x15a)](),(0x0,_0x21fa40['composePdfEditorSessionState'])(_0x61506d)),_0x4dd9fb=new Set(_0x48767b[_0x48fd4d(0xb06)](_0x589153=>_0x589153['id'])),_0x121eba=_0x4dd9fb['has']((_0x4b224a=_0x61506d['local']['selection']['activePageId'])==null?'':_0x4b224a)?_0x61506d[_0x48fd4d(0x828)][_0x48fd4d(0xb23)]['activePageId']:(_0x7088e8=_0x48767b[0x0])==null?void 0x0:_0x7088e8['id'];_0x121eba&&(_0x61506d[_0x48fd4d(0x828)][_0x48fd4d(0xb23)][_0x48fd4d(0x2ed)]&&!_0x4dd9fb[_0x48fd4d(0x66b)](_0x61506d[_0x48fd4d(0x828)][_0x48fd4d(0xb23)][_0x48fd4d(0x2ed)])&&this[_0x48fd4d(0x44d)]['updateLocal'](_0x5875a1,_0x4a000e=>{const _0x471234=_0x48fd4d;let {focus:_0x2bf991,primaryAnchorId:_0xcb4f74,..._0x4644e6}=_0x4a000e[_0x471234(0xb23)];return{..._0x4a000e,'selection':{..._0x4644e6,'activePageId':_0x121eba,'anchors':[]}};}),(_0x154a3e=_0x61506d[_0x48fd4d(0x75f)][_0x48fd4d(0x809)])!=null&&_0x154a3e[_0x48fd4d(0x2ed)]&&!_0x4dd9fb[_0x48fd4d(0x66b)](_0x61506d[_0x48fd4d(0x75f)]['viewport'][_0x48fd4d(0x2ed)])&&this[_0x48fd4d(0x44d)]['updateEphemeral'](_0x5875a1,_0x328715=>({..._0x328715,'viewport':{..._0x328715[_0x48fd4d(0x809)],'activePageId':_0x121eba}})));}[_0x59d572(0xb85)](_0x3385a9,_0x2497e3,_0x2622a5,_0x17c6f8,_0x2868c2){const _0x53654b=_0x59d572;_0x2622a5[_0x53654b(0xa8e)]&&this[_0x53654b(0x44d)]['recordMutationBatch'](_0x3385a9,_0x2622a5[_0x53654b(0xa8e)]);let _0x42986a=(0x0,_0x21fa40[_0x53654b(0x499)])(_0x2622a5[_0x53654b(0xa8e)]?(0x0,_0x21fa40[_0x53654b(0x8f1)])((0x0,_0x21fa40['composePdfEditorSessionState'])(_0x2497e3),_0x2622a5[_0x53654b(0xa8e)],{'applyDurable':!0x1,'recordPending':!0x1}):(0x0,_0x21fa40['composePdfEditorSessionState'])(_0x2497e3)),_0x3da93c=_0x2622a5[_0x53654b(0xa8e)]?Object['fromEntries'](_0x2622a5[_0x53654b(0xa8e)][_0x53654b(0x3c8)][_0x53654b(0xb06)](_0x2a82b8=>[_0x2a82b8['id'],{'mutationId':_0x2a82b8['id'],'serverRevision':_0x17c6f8,'acknowledgedAt':_0x2868c2}])):{};this[_0x53654b(0x44d)][_0x53654b(0xb76)](_0x3385a9,_0x40ea3b=>{const _0x443cae=_0x53654b;var _0xc27292;return{..._0x42986a['local'],'baseUnitRevision':_0x17c6f8,'selection':(_0xc27292=_0x2622a5['selection'])==null?_0x42986a[_0x443cae(0x828)]['selection']:_0xc27292,'drafts':_0x2622a5['draft']===null?{}:_0x2622a5['draft']?{..._0x42986a['local'][_0x443cae(0x80b)],[_0x2622a5[_0x443cae(0x222)]['id']]:_0x2622a5[_0x443cae(0x222)]}:_0x42986a[_0x443cae(0x828)][_0x443cae(0x80b)],'mutationLog':{..._0x42986a[_0x443cae(0x828)][_0x443cae(0x1fb)],'acknowledgedMutationIds':{..._0x40ea3b[_0x443cae(0x1fb)][_0x443cae(0xa4c)],..._0x3da93c}}};});}[_0x59d572(0x992)](_0x12529d,_0x5b9ee3){const _0x38c779=_0x59d572;var _0x4f69f4;let _0x48ea73=((_0x4f69f4=this[_0x38c779(0x4f2)][_0x38c779(0x2ad)](_0x12529d))==null?0x0:_0x4f69f4)+0x1;return this[_0x38c779(0x4f2)][_0x38c779(0xad2)](_0x12529d,_0x48ea73),_0x12529d+':'+_0x5b9ee3+':'+_0x48ea73;}[_0x59d572(0x2af)](_0x1ada89,_0x200481,_0x117e36,_0x229aea){return{'accepted':!0x1,'status':_0x200481,'unitId':_0x1ada89,..._0x117e36===void 0x0?{}:{'revision':_0x117e36},..._0x229aea?{'result':_0x229aea}:{}};}};_0x2803b6=_0x3ef5be([_0x4a4ad7(0x0,_0x2894d3[_0x59d572(0x727)]),_0x4a4ad7(0x1,_0x2894d3[_0x59d572(0x2e0)]),_0x4a4ad7(0x2,_0x2894d3[_0x59d572(0x50a)]),_0x4a4ad7(0x3,_0x289aee)],_0x2803b6);let _0x4988f9=new Set([_0x59d572(0x14a),_0x59d572(0x9cf),'image/gif',_0x59d572(0x988),_0x59d572(0xc62),_0x59d572(0x9a3)]);function _0x276a2c(_0x4e8f25={}){const _0x6f1576=_0x59d572;var _0x3a625e,_0x56a690;return new _0x4cfad3((_0x3a625e=_0x4e8f25['createSource'])==null?_0x30ff74:_0x3a625e,(_0x56a690=_0x4e8f25[_0x6f1576(0xbd0)])==null?_0x475694:_0x56a690);}function _0x2fcb1e(_0x3cb340,_0x4fea0d={}){const _0x362374=_0x59d572;var _0x35e108;return new _0x16795a(_0x3cb340,(_0x35e108=_0x4fea0d[_0x362374(0xbd0)])==null?_0x475694:_0x35e108);}var _0x4cfad3=class{constructor(_0x4e98e9,_0x43c758){const _0x16add2=_0x59d572;this[_0x16add2(0x2c7)]=_0x4e98e9,this[_0x16add2(0x7df)]=_0x43c758,_0x22e50d(this,_0x16add2(0x880),_0x22f6a2()),_0x22e50d(this,_0x16add2(0x308),new _0x3fc99d['Subject']()),_0x22e50d(this,_0x16add2(0x56c),0x0),_0x22e50d(this,_0x16add2(0xa59),this['_changedSubject']['asObservable']());}[_0x59d572(0x8f9)](_0xa29a3d){const _0x382d80=_0x59d572;let _0x4bbf1a;try{_0x4bbf1a=_0x44c1b7(_0xa29a3d['type']);}catch(_0x10795a){return Promise[_0x382d80(0xb46)](_0x10795a);}let _0x4257b8=this['_state'],_0x464d87=_0x4257b8['saves']['get'](_0xa29a3d);if(_0x464d87)return _0x464d87[_0x382d80(0x85c)]+=0x1,_0x464d87[_0x382d80(0x7c4)];let _0x4dfffb;try{_0x4dfffb=this[_0x382d80(0x2c7)]();}catch(_0x5e0299){return Promise['reject'](_0x5e0299);}if(!(0x0,_0x21fa40[_0x382d80(0x6a2)])(_0x4dfffb))return Promise[_0x382d80(0xb46)](TypeError(_0x382d80(0x390)));if(_0x4257b8[_0x382d80(0xbae)]['has'](_0x4dfffb))return Promise['reject'](Error(_0x382d80(0x69c)+_0x4dfffb+_0x382d80(0xa1f)));_0x4257b8['reservedSources'][_0x382d80(0x30c)](_0x4dfffb);let _0xdef316={'file':_0xa29a3d,'source':_0x4dfffb,'leaseCount':0x1},_0x563895=this[_0x382d80(0x12c)](_0xa29a3d,_0x4bbf1a,_0x4dfffb,_0x4257b8,_0xdef316);return _0xdef316[_0x382d80(0x7c4)]=_0x563895,_0x4257b8[_0x382d80(0x9f8)][_0x382d80(0xad2)](_0xa29a3d,_0xdef316),_0x563895['catch'](()=>{const _0x52ffb4=_0x382d80;_0x4257b8[_0x52ffb4(0x9f8)][_0x52ffb4(0x2ad)](_0xa29a3d)===_0xdef316&&_0x4257b8[_0x52ffb4(0x9f8)][_0x52ffb4(0x297)](_0xa29a3d);}),_0x563895;}[_0x59d572(0x2df)](_0x278ff4){const _0x1c53bc=_0x59d572;var _0x3583b4;return(_0x3583b4=this[_0x1c53bc(0x880)][_0x1c53bc(0x8a2)]['get'](_0x278ff4))==null?void 0x0:_0x3583b4[_0x1c53bc(0xada)];}['release'](_0x24e12e){const _0xf2e55b=_0x59d572;let _0x28a478=this['_state'],_0x544f97=_0x28a478[_0xf2e55b(0x8a2)][_0xf2e55b(0x2ad)](_0x24e12e);if(!_0x544f97||(--_0x544f97['leaseCount'],_0x544f97['leaseCount']>0x0))return;_0x28a478[_0xf2e55b(0x8a2)][_0xf2e55b(0x297)](_0x24e12e),_0x28a478[_0xf2e55b(0xbae)][_0xf2e55b(0x297)](_0x24e12e),_0x28a478[_0xf2e55b(0x9f8)][_0xf2e55b(0x2ad)](_0x544f97[_0xf2e55b(0x439)])===_0x544f97&&_0x28a478[_0xf2e55b(0x9f8)][_0xf2e55b(0x297)](_0x544f97['file']);let _0x44037b=_0x544f97[_0xf2e55b(0xada)];_0x544f97[_0xf2e55b(0xada)]=void 0x0,_0x44037b&&_0x387e32(_0x44037b);}[_0x59d572(0xa9e)](){const _0x466b53=_0x59d572;let _0xd0744f=this[_0x466b53(0x880)],_0x17b748=[..._0xd0744f[_0x466b53(0x8a2)][_0x466b53(0xaaf)]()][_0x466b53(0x13c)](_0x31f546=>{const _0x562aa9=_0x466b53;let _0x3ffde2=_0x31f546[_0x562aa9(0xada)];return _0x31f546[_0x562aa9(0xada)]=void 0x0,_0x3ffde2?[_0x3ffde2]:[];});this[_0x466b53(0x880)]=_0x22f6a2(),_0xd0744f[_0x466b53(0x8a2)]['clear'](),_0xd0744f[_0x466b53(0x9f8)]=new WeakMap(),_0xd0744f[_0x466b53(0xbae)][_0x466b53(0x5d2)]();let _0x48fe6c;for(let _0x59ecf9 of _0x17b748)try{_0x387e32(_0x59ecf9);}catch(_0x4e322c){_0x48fe6c!=null||(_0x48fe6c=_0x4e322c);}if(_0x48fe6c!==void 0x0)throw _0x48fe6c;}async['_decodeAndStore'](_0x47b37d,_0x3c0305,_0x57ef57,_0xb1d12e,_0x4a7fdc){const _0x22c90b=_0x59d572;try{let _0x5e609a=await this[_0x22c90b(0x7df)](_0x47b37d);if(!_0x543f6d(_0x5e609a['width'])||!_0x543f6d(_0x5e609a[_0x22c90b(0x1ae)]))throw _0x387e32(_0x5e609a[_0x22c90b(0xada)]),RangeError(_0x22c90b(0x212));if(this[_0x22c90b(0x880)]!==_0xb1d12e)throw _0x387e32(_0x5e609a[_0x22c90b(0xada)]),Error(_0x22c90b(0xc6f));if(_0xb1d12e['entries'][_0x22c90b(0x66b)](_0x57ef57))throw _0x387e32(_0x5e609a[_0x22c90b(0xada)]),Error(_0x22c90b(0x69c)+_0x57ef57+_0x22c90b(0xa1f));let _0x4ae86f={'source':_0x57ef57,'imageSourceType':_0x2894d3[_0x22c90b(0x985)][_0x22c90b(0x772)],'width':_0x5e609a[_0x22c90b(0x65c)],'height':_0x5e609a['height'],'mimeType':_0x3c0305,'fileName':_0x47b37d['name'],'byteLength':_0x47b37d[_0x22c90b(0x71b)]};return _0x4a7fdc[_0x22c90b(0xada)]=_0x5e609a['image'],_0xb1d12e[_0x22c90b(0x8a2)]['set'](_0x57ef57,_0x4a7fdc),this[_0x22c90b(0x37c)](),_0x4ae86f;}catch(_0x535af2){throw _0xb1d12e[_0x22c90b(0x8a2)][_0x22c90b(0x2ad)](_0x57ef57)===_0x4a7fdc&&_0xb1d12e[_0x22c90b(0x8a2)]['delete'](_0x57ef57),_0xb1d12e['saves'][_0x22c90b(0x2ad)](_0x47b37d)===_0x4a7fdc&&_0xb1d12e['saves'][_0x22c90b(0x297)](_0x47b37d),_0xb1d12e[_0x22c90b(0xbae)]['delete'](_0x57ef57),_0x535af2;}}[_0x59d572(0x37c)](){this['_changedSubject']['next'](++this['_generation']);}},_0x16795a=class{constructor(_0x5dd47c,_0x412a07){const _0x3689dd=_0x59d572;this[_0x3689dd(0x7df)]=_0x412a07,_0x22e50d(this,_0x3689dd(0x310),void 0x0),_0x22e50d(this,_0x3689dd(0x85d),new Map()),_0x22e50d(this,_0x3689dd(0xa99),new Set()),_0x22e50d(this,_0x3689dd(0x308),new _0x3fc99d['Subject']()),_0x22e50d(this,_0x3689dd(0x56c),0x0),_0x22e50d(this,'_disposed',!0x1),_0x22e50d(this,_0x3689dd(0xa59),this[_0x3689dd(0x308)][_0x3689dd(0x5c6)]()),this[_0x3689dd(0x310)]=_0x5dd47c[_0x3689dd(0x2ad)](_0x2894d3[_0x3689dd(0x17c)]);}async[_0x59d572(0x8f9)](_0x4ba69e){const _0x371482=_0x59d572;let _0x1fd36f=_0x44c1b7(_0x4ba69e['type']),_0x571ec4=await this[_0x371482(0x7df)](_0x4ba69e);if(!_0x543f6d(_0x571ec4[_0x371482(0x65c)])||!_0x543f6d(_0x571ec4[_0x371482(0x1ae)]))throw _0x387e32(_0x571ec4[_0x371482(0xada)]),RangeError(_0x371482(0x212));try{let _0x35b69e=await this['_imageIoService'][_0x371482(0xcaa)](_0x4ba69e);if(!_0x35b69e||_0x35b69e['status']!==_0x2894d3[_0x371482(0x4b5)][_0x371482(0x86c)]||_0x35b69e[_0x371482(0x57c)]!==_0x2894d3[_0x371482(0x985)]['UUID']||!_0x35b69e[_0x371482(0x419)])throw Error(_0x371482(0x7e3));let _0x237f6b=this[_0x371482(0x85d)][_0x371482(0x2ad)](_0x35b69e[_0x371482(0x419)]);return _0x237f6b&&_0x237f6b!==_0x571ec4[_0x371482(0xada)]&&_0x387e32(_0x237f6b),this[_0x371482(0x85d)][_0x371482(0xad2)](_0x35b69e[_0x371482(0x419)],_0x571ec4[_0x371482(0xada)]),this[_0x371482(0x37c)](),{'source':_0x35b69e[_0x371482(0x419)],'imageSourceType':_0x2894d3[_0x371482(0x985)]['UUID'],'width':_0x571ec4[_0x371482(0x65c)],'height':_0x571ec4['height'],'mimeType':_0x1fd36f,'fileName':_0x4ba69e[_0x371482(0x37a)],'byteLength':_0x4ba69e['size']};}catch(_0x58141e){throw _0x387e32(_0x571ec4[_0x371482(0xada)]),_0x58141e;}}[_0x59d572(0x2df)](_0xa8703d){const _0x34690f=_0x59d572;let _0x1cc20b=this[_0x34690f(0x85d)]['get'](_0xa8703d);if(_0x1cc20b)return _0x1cc20b;let _0x122863=this['_imageIoService'][_0x34690f(0x85a)](_0xa8703d,_0x2894d3[_0x34690f(0x985)]['UUID']);if(_0x122863)return _0x122863;this[_0x34690f(0x2ce)](_0xa8703d);}[_0x59d572(0xaf2)](_0x3d0e0d){const _0x5a1f8b=_0x59d572;let _0x39f643=this[_0x5a1f8b(0x85d)]['get'](_0x3d0e0d);_0x39f643&&(this[_0x5a1f8b(0x85d)][_0x5a1f8b(0x297)](_0x3d0e0d),_0x387e32(_0x39f643));}['dispose'](){const _0x49004d=_0x59d572;this[_0x49004d(0x373)]=!0x0,this[_0x49004d(0xa99)][_0x49004d(0x5d2)]();for(let _0x3b3154 of this[_0x49004d(0x85d)][_0x49004d(0xaaf)]())_0x387e32(_0x3b3154);this['_images'][_0x49004d(0x5d2)]();}['_ensureRemoteImage'](_0x2bd617){const _0x3df8b7=_0x59d572;this['_disposed']||this['_loadingSources'][_0x3df8b7(0x66b)](_0x2bd617)||globalThis[_0x3df8b7(0x154)]===void 0x0||(this['_loadingSources'][_0x3df8b7(0x30c)](_0x2bd617),this[_0x3df8b7(0x8e0)](_0x2bd617));}async[_0x59d572(0x8e0)](_0x1f5946){const _0x483e85=_0x59d572;try{let _0x5d546e=await this['_imageIoService'][_0x483e85(0x272)](_0x1f5946);if(!_0x5d546e||this[_0x483e85(0x373)])return;await new Promise((_0x4fe033,_0x4055dc)=>{const _0x4acb38=_0x483e85;let _0x20bfae=new globalThis['Image']();_0x20bfae[_0x4acb38(0x835)]=_0x4acb38(0xa48),_0x20bfae[_0x4acb38(0x1bd)]=()=>{const _0x237da4=_0x4acb38;if(this[_0x237da4(0x373)]){_0x387e32(_0x20bfae),_0x4fe033();return;}_0x20bfae[_0x237da4(0xc0c)](_0x237da4(0x8e8));let _0x3c3f34=this[_0x237da4(0x85d)]['get'](_0x1f5946);_0x3c3f34&&_0x3c3f34!==_0x20bfae&&_0x387e32(_0x3c3f34),this[_0x237da4(0x85d)][_0x237da4(0xad2)](_0x1f5946,_0x20bfae),this[_0x237da4(0x310)]['addImageSourceCache'](_0x1f5946,_0x2894d3[_0x237da4(0x985)][_0x237da4(0x772)],_0x20bfae),this[_0x237da4(0x37c)](),_0x4fe033();},_0x20bfae[_0x4acb38(0x86b)]=()=>{const _0x4af8cc=_0x4acb38;_0x20bfae['setAttribute'](_0x4af8cc(0x8e8),'true'),_0x4055dc(Error(_0x4af8cc(0x477)+_0x1f5946+'.'));},_0x20bfae[_0x4acb38(0x184)]=_0x5d546e;});}catch(_0x1df405){console[_0x483e85(0x9d7)](_0x1df405);}finally{this[_0x483e85(0xa99)][_0x483e85(0x297)](_0x1f5946);}}[_0x59d572(0x37c)](){const _0x2d5c54=_0x59d572;this[_0x2d5c54(0x308)][_0x2d5c54(0x91b)](++this[_0x2d5c54(0x56c)]);}};function _0x449966(_0x273605){const _0x2c79c0=_0x59d572;return _0x4988f9[_0x2c79c0(0x66b)](_0x3f947f(_0x273605));}async function _0x475694(_0x30af9d){const _0x579e65=_0x59d572;var _0xc5961d;if(typeof globalThis[_0x579e65(0xac3)]==_0x579e65(0x9df)){let _0x509039=await globalThis[_0x579e65(0xac3)](_0x30af9d);return{'image':_0x509039,'width':_0x509039[_0x579e65(0x65c)],'height':_0x509039[_0x579e65(0x1ae)]};}if(globalThis['Image']===void 0x0||typeof((_0xc5961d=globalThis['URL'])==null?void 0x0:_0xc5961d[_0x579e65(0xc3a)])!=_0x579e65(0x9df))throw TypeError('The\x20current\x20runtime\x20cannot\x20decode\x20browser\x20image\x20files.');let _0x7e85f5=globalThis[_0x579e65(0x378)][_0x579e65(0xc3a)](_0x30af9d);try{let _0x5261c1=await new Promise((_0x23f85a,_0x57eb0)=>{const _0x268ae0=_0x579e65;let _0x1bb5f6=new globalThis[(_0x268ae0(0x154))]();_0x1bb5f6[_0x268ae0(0x1bd)]=()=>_0x23f85a(_0x1bb5f6),_0x1bb5f6[_0x268ae0(0x86b)]=()=>_0x57eb0(Error(_0x268ae0(0xbfd)+_0x30af9d[_0x268ae0(0x37a)]+'.')),_0x1bb5f6[_0x268ae0(0x184)]=_0x7e85f5;});return{'image':_0x5261c1,'width':_0x5261c1['naturalWidth'],'height':_0x5261c1['naturalHeight']};}finally{globalThis[_0x579e65(0x378)]['revokeObjectURL'](_0x7e85f5);}}function _0x30ff74(){const _0x3a7d77=_0x59d572;return _0x3a7d77(0x23a)+(0x0,_0x2894d3[_0x3a7d77(0x8d7)])();}function _0x44c1b7(_0x50134c){const _0x3364ef=_0x59d572;let _0x1a00a9=_0x3f947f(_0x50134c);if(!_0x449966(_0x1a00a9))throw TypeError('Unsupported\x20image\x20MIME\x20type:\x20'+(_0x50134c||_0x3364ef(0xb3d))+'.');return _0x1a00a9;}function _0x3f947f(_0x536f9c){const _0x271592=_0x59d572;return _0x536f9c['trim']()[_0x271592(0x3ba)](';',0x1)[0x0][_0x271592(0x4d9)]()['toLowerCase']();}function _0x22f6a2(){return{'entries':new Map(),'saves':new WeakMap(),'reservedSources':new Set()};}function _0x543f6d(_0x5636a2){const _0x2a7ab2=_0x59d572;return Number[_0x2a7ab2(0x771)](_0x5636a2)&&_0x5636a2>0x0;}function _0x387e32(_0x4dee22){const _0x117dd0=_0x59d572;typeof _0x4dee22[_0x117dd0(0x408)]=='function'&&_0x4dee22[_0x117dd0(0x408)]();}let _0x1dcaf0=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(_0xf989eb,_0x5b469e,_0x55ad5d,_0x5d36ab){const _0x329174=_0x59d572;super(),this[_0x329174(0x67d)]=_0xf989eb,this[_0x329174(0xa02)]=_0x5b469e,this[_0x329174(0x44d)]=_0x55ad5d,_0x22e50d(this,_0x329174(0xc85),void 0x0),_0x22e50d(this,_0x329174(0x310),void 0x0),_0x22e50d(this,_0x329174(0x39f),new Map()),_0x22e50d(this,_0x329174(0x2fb),new Map()),_0x22e50d(this,'_loadingFontAssets',new Set()),_0x22e50d(this,_0x329174(0x46e),new Set()),_0x22e50d(this,_0x329174(0x45f),new Set()),_0x22e50d(this,_0x329174(0xb4f),new Set()),_0x22e50d(this,'_fontResourceUrls',new Map()),_0x22e50d(this,_0x329174(0xa0d),new _0x3fc99d[(_0x329174(0xa3f))]()),_0x22e50d(this,'_resourceChangedSubject',new _0x3fc99d['Subject']()),_0x22e50d(this,_0x329174(0xb36),new _0x3fc99d[(_0x329174(0xa3f))]()),_0x22e50d(this,'_textEditExitRequestedSubject',new _0x3fc99d[(_0x329174(0xa3f))]()),_0x22e50d(this,_0x329174(0x350),void 0x0),_0x22e50d(this,_0x329174(0x81e),0x0),_0x22e50d(this,_0x329174(0xa27),0x0),_0x22e50d(this,_0x329174(0x1b8),!0x1),_0x22e50d(this,_0x329174(0x14c),void 0x0),_0x22e50d(this,_0x329174(0xb33),this[_0x329174(0xa0d)][_0x329174(0x5c6)]()),_0x22e50d(this,_0x329174(0xc20),this[_0x329174(0xa26)][_0x329174(0x5c6)]()),_0x22e50d(this,_0x329174(0x5cc),this[_0x329174(0xb36)][_0x329174(0x5c6)]()),_0x22e50d(this,_0x329174(0xbbc),this[_0x329174(0xa6b)][_0x329174(0x5c6)]()),this[_0x329174(0x310)]=_0x5d36ab[_0x329174(0x66b)](_0x2894d3[_0x329174(0x17c)])?_0x5d36ab[_0x329174(0x2ad)](_0x2894d3[_0x329174(0x17c)]):null,this[_0x329174(0xc85)]=this['_imageIoService']?_0x2fcb1e(_0x5d36ab):_0x276a2c(),this[_0x329174(0x14c)]=this[_0x329174(0xc85)][_0x329174(0xa59)],this[_0x329174(0x350)]=this[_0x329174(0x14c)][_0x329174(0x5c1)](()=>this[_0x329174(0x608)]());}['getResourceRevision'](){return this['_resourceRevision'];}['requestTextEditExit'](_0x1f42f2){const _0x527d54=_0x59d572;this[_0x527d54(0xa6b)][_0x527d54(0x91b)](_0x1f42f2);}async[_0x59d572(0xab0)](){const _0x4e35f2=_0x59d572;let _0xa748c4=this[_0x4e35f2(0x99f)]();if(!_0xa748c4)return!0x1;let _0x106088=_0x11bd08(_0xa748c4['page'],{'zoom':_0xa748c4[_0x4e35f2(0x68e)]}),_0x1a4a05=_0x21aa08(_0x106088[_0x4e35f2(0x2c9)],_0x106088['heightCssPx'],_0xa748c4[_0x4e35f2(0x68e)],0xb0,0x2c,0.24),_0x31be22=await this['_commandService'][_0x4e35f2(0x1ad)](_0xa748c4['model'][_0x4e35f2(0x49e)](),_0x21fa40[_0x4e35f2(0x30d)],{'pageId':_0xa748c4['page']['id'],'text':'','bbox':_0x1a4a05,'zIndex':_0xa748c4[_0x4e35f2(0x7e1)]},_0x423e90());return _0x31be22['accepted']&&this[_0x4e35f2(0xb36)][_0x4e35f2(0x91b)](_0xa748c4[_0x4e35f2(0x538)][_0x4e35f2(0x49e)]()),_0x31be22[_0x4e35f2(0x309)];}async[_0x59d572(0x575)](){const _0x347b4f=_0x59d572;let _0x308530=this[_0x347b4f(0x99f)]();if(!_0x308530)return!0x1;let _0x11f28e=_0x11bd08(_0x308530['page'],{'zoom':_0x308530['zoom']}),_0x21653f=await this[_0x347b4f(0xa02)]['execute'](_0x308530['model'][_0x347b4f(0x49e)](),_0x21fa40['pdfAddParagraphCommand'],{'pageId':_0x308530[_0x347b4f(0x175)]['id'],'text':'','bbox':_0x21aa08(_0x11f28e['widthCssPx'],_0x11f28e[_0x347b4f(0xc23)],_0x308530[_0x347b4f(0x68e)],_0x11f28e[_0x347b4f(0x2c9)]-0x60,0x48,0.32),'zIndex':_0x308530[_0x347b4f(0x7e1)]},_0x423e90());return _0x21653f[_0x347b4f(0x309)]&&this[_0x347b4f(0xb36)][_0x347b4f(0x91b)](_0x308530[_0x347b4f(0x538)][_0x347b4f(0x49e)]()),_0x21653f['accepted'];}async[_0x59d572(0x6e2)](){const _0x474350=_0x59d572;let _0x5bc1fd=this[_0x474350(0x99f)]();if(!_0x5bc1fd)return!0x1;let _0x2664ac=_0x11bd08(_0x5bc1fd[_0x474350(0x175)],{'zoom':_0x5bc1fd[_0x474350(0x68e)]});return(await this[_0x474350(0xa02)]['execute'](_0x5bc1fd['model'][_0x474350(0x49e)](),_0x21fa40[_0x474350(0x2cb)],{'pageId':_0x5bc1fd['page']['id'],'bbox':_0x21aa08(_0x2664ac['widthCssPx'],_0x2664ac[_0x474350(0xc23)],_0x5bc1fd[_0x474350(0x68e)],_0x2664ac[_0x474350(0x2c9)]-0x60,0xc,0.42),'zIndex':_0x5bc1fd[_0x474350(0x7e1)]},_0x423e90()))[_0x474350(0x309)];}async[_0x59d572(0x26d)](_0x106c81){const _0x5ca6a5=_0x59d572;let _0x590434=this[_0x5ca6a5(0x99f)]();if(!_0x590434)return!0x1;let _0x255250=_0x11bd08(_0x590434[_0x5ca6a5(0x175)],{'zoom':_0x590434[_0x5ca6a5(0x68e)]}),_0xd6a183=_0x236842({'viewportWidthCssPx':_0x255250[_0x5ca6a5(0x2c9)],'viewportHeightCssPx':_0x255250['heightCssPx'],'zoom':_0x590434[_0x5ca6a5(0x68e)],'rows':_0x106c81[_0x5ca6a5(0x86a)],'columns':_0x106c81[_0x5ca6a5(0x189)]});return(await this[_0x5ca6a5(0xa02)][_0x5ca6a5(0x1ad)](_0x590434[_0x5ca6a5(0x538)][_0x5ca6a5(0x49e)](),_0x21fa40[_0x5ca6a5(0xbbf)],{'pageId':_0x590434[_0x5ca6a5(0x175)]['id'],'bbox':_0xd6a183[_0x5ca6a5(0xa01)],'rowCount':_0x106c81[_0x5ca6a5(0x86a)],'columnCount':_0x106c81[_0x5ca6a5(0x189)],'cellTexts':Array[_0x5ca6a5(0x8c1)]({'length':_0x106c81['rows']*_0x106c81[_0x5ca6a5(0x189)]},()=>''),'defaultCellStyle':{'padding':{'top':_0xd6a183[_0x5ca6a5(0x9ef)],'right':_0xd6a183[_0x5ca6a5(0x9ef)],'bottom':_0xd6a183[_0x5ca6a5(0x9ef)],'left':_0xd6a183['padding']}},'zIndex':_0x590434['zIndex']},_0x423e90()))['accepted'];}async[_0x59d572(0x71c)](_0x4e1274){const _0x5a53bc=_0x59d572;let _0x51911b=this[_0x5a53bc(0x99f)]();if(!_0x51911b)return!0x1;let _0x456495=_0x11bd08(_0x51911b[_0x5a53bc(0x175)],{'zoom':_0x51911b['zoom']}),_0x5bd68b=await this[_0x5a53bc(0xa02)][_0x5a53bc(0x1ad)](_0x51911b[_0x5a53bc(0x538)][_0x5a53bc(0x49e)](),_0x21fa40[_0x5a53bc(0x45e)],{'pageId':_0x51911b[_0x5a53bc(0x175)]['id'],'bbox':_0x21aa08(_0x456495[_0x5a53bc(0x2c9)],_0x456495[_0x5a53bc(0xc23)],_0x51911b[_0x5a53bc(0x68e)],0x168,0xb4,0.24),'kind':_0x4e1274['startsWith'](_0x5a53bc(0x463))?_0x21fa40[_0x5a53bc(0x683)][_0x5a53bc(0x64d)]:_0x21fa40[_0x5a53bc(0x683)][_0x5a53bc(0x81a)],'presetId':_0x4e1274,'text':'','zIndex':_0x51911b[_0x5a53bc(0x7e1)]},_0x423e90());return _0x5bd68b[_0x5a53bc(0x309)]&&this['_textEditRequestedSubject'][_0x5a53bc(0x91b)](_0x51911b[_0x5a53bc(0x538)][_0x5a53bc(0x49e)]()),_0x5bd68b[_0x5a53bc(0x309)];}async['insertImage'](_0x3ad738){const _0xa81bcb=_0x59d572;let _0x37edaf=this[_0xa81bcb(0x99f)]();if(!_0x37edaf)return!0x1;let _0x5cf16e=await this[_0xa81bcb(0xc85)][_0xa81bcb(0x8f9)](_0x3ad738),_0x39bd1f=_0xa81bcb(0xab6)+(0x0,_0x2894d3[_0xa81bcb(0x8d7)])(0xc),_0x5a0079={'asset':{'id':_0x39bd1f,'type':_0x21fa40['PdfAssetType'][_0xa81bcb(0x93b)],'width':_0x5cf16e[_0xa81bcb(0x65c)],'height':_0x5cf16e[_0xa81bcb(0x1ae)]},'source':_0x5cf16e[_0xa81bcb(0x419)],'imageSourceType':_0x5cf16e[_0xa81bcb(0x57c)],'mimeType':_0x5cf16e['mimeType'],'fileName':_0x5cf16e[_0xa81bcb(0x168)],'byteLength':_0x5cf16e[_0xa81bcb(0xc50)]};try{let _0x4cb738=await this[_0xa81bcb(0xa02)][_0xa81bcb(0x1ad)](_0x37edaf[_0xa81bcb(0x538)][_0xa81bcb(0x49e)](),_0x21fa40[_0xa81bcb(0x6b0)],{'pageId':_0x37edaf[_0xa81bcb(0x175)]['id'],'assetId':_0x39bd1f,'resource':_0x5a0079,'bbox':_0x1669a1({'width':(0x0,_0x21fa40['cssPxToEmu'])(_0x5cf16e[_0xa81bcb(0x65c)]),'height':(0x0,_0x21fa40['cssPxToEmu'])(_0x5cf16e['height'])},_0x1e6e5c(_0x37edaf['page'])),'zIndex':_0x37edaf['zIndex']},_0x423e90());return _0x4cb738[_0xa81bcb(0x309)]||this['_imageAdapter']['release'](_0x5cf16e[_0xa81bcb(0x419)]),_0x4cb738[_0xa81bcb(0x309)];}catch(_0x3a6869){throw this['_imageAdapter']['release'](_0x5cf16e[_0xa81bcb(0x419)]),_0x3a6869;}}async[_0x59d572(0x3f6)](){const _0x240e77=_0x59d572;let _0x214a95=this['_getContext']();if(!_0x214a95)return!0x1;let _0x4a42e1=_0x214a95[_0x240e77(0x6c2)]+0x1,_0x1d3e7b=(0x0,_0x21fa40[_0x240e77(0x518)])({'id':_0x240e77(0x462)+(0x0,_0x2894d3[_0x240e77(0x8d7)])(0xc),'index':_0x4a42e1,'size':{..._0x214a95[_0x240e77(0x175)][_0x240e77(0x71b)]},'rotation':_0x214a95[_0x240e77(0x175)][_0x240e77(0x814)],'pdfBoxes':_0x214a95[_0x240e77(0x175)][_0x240e77(0x336)]}),_0x4aaa2b=await this[_0x240e77(0xa02)]['execute'](_0x214a95[_0x240e77(0x538)]['getUnitId'](),_0x21fa40[_0x240e77(0x32e)],{'page':_0x1d3e7b,'atIndex':_0x4a42e1},_0x423e90());return _0x4aaa2b[_0x240e77(0x309)]&&this[_0x240e77(0x44d)]['updateEphemeral'](_0x214a95[_0x240e77(0x538)][_0x240e77(0x49e)](),_0x119102=>({..._0x119102,'viewport':{'zoom':_0x214a95[_0x240e77(0x68e)],'scrollX':0x0,'scrollY':0x0,..._0x119102[_0x240e77(0x809)],'activePageId':_0x1d3e7b['id']}})),_0x4aaa2b[_0x240e77(0x309)];}[_0x59d572(0x11d)](_0x189cbd,_0x1f8dca){const _0x3ddade=_0x59d572;let _0xec796b=_0x189cbd['managedResources'][_0x1f8dca];return _0xec796b?this['_imageAdapter'][_0x3ddade(0x2df)](_0xec796b['source']):void 0x0;}['resolveResourceImage'](_0x468408){const _0x428194=_0x59d572;if(!(!_0x468408||_0x468408['kind']!==_0x21fa40[_0x428194(0x271)]['UNIVERSER_RESOURCE']))return this['_imageAdapter']['resolve'](_0x468408[_0x428194(0x419)]);}[_0x59d572(0x1ec)](_0xdaeb35,_0x5b728b){const _0x17cb0b=_0x59d572;var _0x5a660b;if(!_0xdaeb35||_0xdaeb35['kind']!==_0x21fa40[_0x17cb0b(0x271)][_0x17cb0b(0x38d)])return;let _0x25f087=_0x201200(_0xdaeb35['mimeType']);if(!_0x25f087)return;let _0x443850=_0x17cb0b(0x12a)+_0xb6c16d(_0x5b728b);if(this['_fontFaces'][_0x17cb0b(0x66b)](_0x5b728b))return _0x111fe7(_0x443850);this[_0x17cb0b(0x1b8)]||this['_loadingFontAssets'][_0x17cb0b(0x66b)](_0x5b728b)||this[_0x17cb0b(0x46e)][_0x17cb0b(0x66b)](_0x5b728b)||globalThis['FontFace']===void 0x0||typeof((_0x5a660b=globalThis[_0x17cb0b(0xb09)])==null||(_0x5a660b=_0x5a660b[_0x17cb0b(0x261)])==null?void 0x0:_0x5a660b['add'])!=_0x17cb0b(0x9df)||(this[_0x17cb0b(0x51a)][_0x17cb0b(0x30c)](_0x5b728b),this[_0x17cb0b(0x187)](_0x5b728b,_0x443850,_0xdaeb35[_0x17cb0b(0x419)],_0x25f087));}[_0x59d572(0x7fe)](_0x5ce79c,_0xf8797c){const _0x5d7d5c=_0x59d572;if(!_0x5ce79c||_0x5ce79c['kind']!==_0x21fa40['PdfAssetStorageKind'][_0x5d7d5c(0x38d)]||!_0x201200(_0x5ce79c[_0x5d7d5c(0x23d)]))return;let _0x4fe197=this['_fontOutlines']['get'](_0xf8797c);if(_0x4fe197)return _0x4fe197;this[_0x5d7d5c(0x1b8)]||this[_0x5d7d5c(0x45f)][_0x5d7d5c(0x66b)](_0xf8797c)||this[_0x5d7d5c(0xb4f)]['has'](_0xf8797c)||typeof globalThis[_0x5d7d5c(0x8af)]!='function'||(this['_loadingFontOutlines']['add'](_0xf8797c),this[_0x5d7d5c(0x6dc)](_0xf8797c,_0x5ce79c['source']));}[_0x59d572(0xa9e)](){const _0x1749a3=_0x59d572;this[_0x1749a3(0x1b8)]=!0x0;for(let _0x4a96f9 of this[_0x1749a3(0x39f)][_0x1749a3(0xaaf)]()){var _0x4d13b6;(_0x4d13b6=globalThis[_0x1749a3(0xb09)])==null||(_0x4d13b6=_0x4d13b6['fonts'])==null||_0x4d13b6['delete'](_0x4a96f9);}this['_fontFaces']['clear'](),this[_0x1749a3(0x2fb)][_0x1749a3(0x5d2)](),this[_0x1749a3(0x51a)][_0x1749a3(0x5d2)](),this[_0x1749a3(0x46e)]['clear'](),this['_loadingFontOutlines'][_0x1749a3(0x5d2)](),this['_failedFontOutlines'][_0x1749a3(0x5d2)](),this[_0x1749a3(0x6a0)]['clear'](),this[_0x1749a3(0x350)]['unsubscribe'](),this[_0x1749a3(0xa0d)]['complete'](),this[_0x1749a3(0xa26)]['complete'](),this[_0x1749a3(0xb36)][_0x1749a3(0x7f2)](),this[_0x1749a3(0xa6b)][_0x1749a3(0x7f2)](),this['_imageAdapter'][_0x1749a3(0xa9e)](),super[_0x1749a3(0xa9e)]();}async[_0x59d572(0x187)](_0xefa198,_0x47b357,_0x39bb18,_0x4d2667){const _0x1fec94=_0x59d572;try{let _0x4de73d=await this[_0x1fec94(0x35b)](_0xefa198,_0x39bb18);if(!_0x4de73d||this['_fontResourcesDisposed'])return;let _0xf05780=new globalThis[(_0x1fec94(0x29b))](_0x47b357,_0x1fec94(0xbcf)+JSON[_0x1fec94(0x9aa)](_0x4de73d)+')\x20format(\x22'+_0x4d2667+'\x22)');if(await _0xf05780['load'](),this[_0x1fec94(0x1b8)])return;globalThis[_0x1fec94(0xb09)]['fonts']['add'](_0xf05780),this[_0x1fec94(0x39f)][_0x1fec94(0xad2)](_0xefa198,_0xf05780),this[_0x1fec94(0xa0d)]['next'](++this[_0x1fec94(0x81e)]),this['_notifyResourceChanged']();}catch(_0x18e4da){this[_0x1fec94(0x46e)][_0x1fec94(0x30c)](_0xefa198),console[_0x1fec94(0x9d7)](_0x1fec94(0x3f3)+_0xefa198+'.',_0x18e4da);}finally{this['_loadingFontAssets'][_0x1fec94(0x297)](_0xefa198);}}async[_0x59d572(0x6dc)](_0x4ca27c,_0x134e1c){const _0x972f43=_0x59d572;try{let _0x415131=await this[_0x972f43(0x35b)](_0x4ca27c,_0x134e1c);if(!_0x415131||this['_fontResourcesDisposed'])return;let _0x28258c=await globalThis[_0x972f43(0x8af)](_0x415131);if(!_0x28258c['ok'])throw Error(_0x972f43(0x6e4)+_0x28258c[_0x972f43(0x52d)]);let _0x52d254=_0x392f31(await _0x28258c[_0x972f43(0x174)]());if(this[_0x972f43(0x1b8)])return;this[_0x972f43(0x2fb)][_0x972f43(0xad2)](_0x4ca27c,_0x52d254),this[_0x972f43(0xa0d)][_0x972f43(0x91b)](++this['_fontGeneration']),this['_notifyResourceChanged']();}catch(_0x5c3c95){this[_0x972f43(0xb4f)][_0x972f43(0x30c)](_0x4ca27c),console['error']('Unable\x20to\x20parse\x20PDF\x20font\x20outline\x20'+_0x4ca27c+'.',_0x5c3c95);}finally{this['_loadingFontOutlines'][_0x972f43(0x297)](_0x4ca27c);}}[_0x59d572(0x35b)](_0x25aae8,_0x27277c){const _0x275a4f=_0x59d572;let _0x517b63=this['_fontResourceUrls'][_0x275a4f(0x2ad)](_0x25aae8);return _0x517b63||(_0x517b63=this[_0x275a4f(0x310)]?this['_imageIoService'][_0x275a4f(0x272)](_0x27277c):Promise[_0x275a4f(0x2df)](_0x27277c),this['_fontResourceUrls'][_0x275a4f(0xad2)](_0x25aae8,_0x517b63)),_0x517b63;}['_notifyResourceChanged'](){const _0x4f2d68=_0x59d572;this[_0x4f2d68(0xa26)][_0x4f2d68(0x91b)](++this[_0x4f2d68(0xa27)]);}['_getContext'](){const _0x27cb2c=_0x59d572;var _0x1a5a8b,_0x4bb4e4,_0x1d880c,_0x325c6c,_0x5244bd,_0x17c71a;let _0x56e8b0=this[_0x27cb2c(0x67d)][_0x27cb2c(0x561)](_0x2894d3['UniverInstanceType'][_0x27cb2c(0x25e)]);if(!_0x56e8b0)return null;let _0x2809f2=this[_0x27cb2c(0x44d)]['getStateParts'](_0x56e8b0[_0x27cb2c(0x49e)]());if(!_0x2809f2)return null;let _0x5bbce8=(0x0,_0x21fa40[_0x27cb2c(0x8ba)])(_0x56e8b0[_0x27cb2c(0x15a)](),(0x0,_0x21fa40[_0x27cb2c(0x9e6)])(_0x2809f2)),_0x5312e8=(_0x1a5a8b=(_0x4bb4e4=(_0x1d880c=_0x2809f2[_0x27cb2c(0x75f)][_0x27cb2c(0x809)])==null?void 0x0:_0x1d880c['activePageId'])==null?_0x2809f2[_0x27cb2c(0x828)][_0x27cb2c(0xb23)][_0x27cb2c(0x2ed)]:_0x4bb4e4)==null?(_0x325c6c=_0x5bbce8[0x0])==null?void 0x0:_0x325c6c['id']:_0x1a5a8b,_0x1b899a=_0x5bbce8[_0x27cb2c(0x78b)](_0x128f4e=>_0x128f4e['id']===_0x5312e8),_0x47c5ec=_0x5bbce8[_0x1b899a];if(!_0x47c5ec)return null;let _0x346f17=(0x0,_0x21fa40['getPdfEditorEditStateRuntimeIndex'])(_0x2809f2[_0x27cb2c(0x33a)])[_0x27cb2c(0x973)][_0x27cb2c(0x2ad)](_0x47c5ec['id']);return{'model':_0x56e8b0,'page':_0x47c5ec,'pageIndex':_0x1b899a,'zoom':(_0x5244bd=(_0x17c71a=_0x2809f2[_0x27cb2c(0x75f)][_0x27cb2c(0x809)])==null?void 0x0:_0x17c71a[_0x27cb2c(0x68e)])==null?0x1:_0x5244bd,'zIndex':_0x346f17===void 0x0?0x0:_0x346f17+0x1};}};_0x1dcaf0=_0x3ef5be([_0x4a4ad7(0x0,_0x2894d3[_0x59d572(0x50a)]),_0x4a4ad7(0x1,_0x4e4eea),_0x4a4ad7(0x2,_0x289aee),_0x4a4ad7(0x3,(0x0,_0x2894d3[_0x59d572(0xbd8)])(_0x2894d3['Injector']))],_0x1dcaf0);function _0x201200(_0x51bf0b){const _0x42a091=_0x59d572;var _0x1ccbfd;switch(_0x51bf0b==null||(_0x1ccbfd=_0x51bf0b[_0x42a091(0x3ba)](';',0x1)[0x0])==null?void 0x0:_0x1ccbfd[_0x42a091(0x4d9)]()[_0x42a091(0x1c2)]()){case _0x42a091(0xb79):case _0x42a091(0x854):return _0x42a091(0x82a);case _0x42a091(0x774):case _0x42a091(0x258):return _0x42a091(0x535);case _0x42a091(0x5d5):return _0x42a091(0x5c8);case _0x42a091(0xc2d):return _0x42a091(0x15b);default:return;}}function _0xb6c16d(_0x5e8f92){const _0x39a8f2=_0x59d572;return _0x5e8f92[_0x39a8f2(0xbf8)](/[^A-Za-z0-9_]/g,'_')[_0x39a8f2(0xbf8)](/^_+|_+$/g,'')||'font';}function _0x111fe7(_0x5b041f){const _0x58015=_0x59d572;return'\x22'+_0x5b041f['replace'](/\\/g,'\x5c\x5c')[_0x58015(0xbf8)](/"/g,'\x5c\x22')+'\x22';}function _0x21aa08(_0x18b7e0,_0x24b3b3,_0x162a41,_0x272de4,_0x38eaf1,_0x515206){const _0x2ffeed=_0x59d572;let _0x2ec0f6=Math['max'](0x1,Math['min'](_0x272de4,_0x18b7e0-0x60)),_0x58a031=Math[_0x2ffeed(0x542)](0x1,Math[_0x2ffeed(0xb2a)](_0x38eaf1,_0x24b3b3-0x60)),_0x897492=Math[_0x2ffeed(0x542)](0x30,(_0x18b7e0-_0x2ec0f6)/0x2),_0x5c7670=Math[_0x2ffeed(0x542)](0x30,Math['min'](_0x24b3b3*_0x515206,_0x24b3b3-0x30-_0x58a031)),_0x14200a=_0x296c19=>(0x0,_0x21fa40[_0x2ffeed(0x14f)])(_0x296c19/_0x162a41);return[_0x14200a(_0x897492),_0x14200a(_0x5c7670),_0x14200a(_0x897492+_0x2ec0f6),_0x14200a(_0x5c7670+_0x58a031)];}function _0x423e90(){const _0xc366af=_0x59d572;return{'actorId':_0xc366af(0x3f9),'clientId':'pdf-ui'};}let _0x21633b={'id':_0x59d572(0x57b),'type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':_0xeb1cb5=>_0xeb1cb5[_0x59d572(0x2ad)](_0x1dcaf0)[_0x59d572(0xab0)]()},_0x4a4ac1={'id':'pdf.operation.insert.paragraph','type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':_0x273eb7=>_0x273eb7[_0x59d572(0x2ad)](_0x1dcaf0)[_0x59d572(0x575)]()},_0x5cec20={'id':'pdf.operation.insert.image','type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':_0x54208f=>{const _0x2d1e98=_0x59d572;let _0x26b262=globalThis[_0x2d1e98(0xb09)];if(!_0x26b262)return!0x1;let _0x314f13=_0x54208f[_0x2d1e98(0x2ad)](_0x1dcaf0),_0x157f43=_0x26b262['createElement']('input');return _0x157f43[_0x2d1e98(0x2c1)]=_0x2d1e98(0x439),_0x157f43[_0x2d1e98(0x219)]=_0x2d1e98(0x492),_0x157f43['addEventListener']('change',()=>{const _0x2ccd37=_0x2d1e98;var _0x1ea242;let _0x480e8e=(_0x1ea242=_0x157f43[_0x2ccd37(0x76f)])==null?void 0x0:_0x1ea242[0x0];_0x157f43[_0x2ccd37(0x85b)]='',_0x480e8e&&_0x314f13['insertImage'](_0x480e8e)['catch'](()=>!0x1);},{'once':!0x0}),_0x157f43[_0x2d1e98(0x348)](),!0x0;}},_0x4e5f47={'id':'pdf.operation.insert.divider','type':_0x2894d3['CommandType'][_0x59d572(0xaa7)],'handler':_0x3abea3=>_0x3abea3[_0x59d572(0x2ad)](_0x1dcaf0)[_0x59d572(0x6e2)]()},_0x34f394={'id':'pdf.operation.insert.table','type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':(_0x5f1d29,_0xdd50bf)=>_0xdd50bf?_0x5f1d29[_0x59d572(0x2ad)](_0x1dcaf0)['insertTable'](_0xdd50bf):!0x1},_0x44c0ee={'id':_0x59d572(0x629),'type':_0x2894d3[_0x59d572(0x46f)]['OPERATION'],'handler':(_0x1aa3ba,_0x3651bd)=>{const _0x46794c=_0x59d572;var _0x3dfc9e;return _0x1aa3ba[_0x46794c(0x2ad)](_0x1dcaf0)[_0x46794c(0x71c)]((_0x3dfc9e=_0x3651bd==null?void 0x0:_0x3651bd[_0x46794c(0x85b)])==null?_0x21fa40['PdfListPresetId'][_0x46794c(0x5ee)]:_0x3dfc9e);}},_0xf9f9bc={'id':_0x59d572(0x30b),'type':_0x2894d3[_0x59d572(0x46f)]['OPERATION'],'handler':_0x3a0ee9=>_0x3a0ee9[_0x59d572(0x2ad)](_0x1dcaf0)[_0x59d572(0x3f6)]()},_0x5cbdf3=[_0x21633b,_0x4a4ac1,_0x5cec20,_0x4e5f47,_0x34f394,_0x44c0ee,_0xf9f9bc];function _0x2835fc(_0x63c844,_0x45f7a0){const _0x35b232=_0x59d572;var _0x3cbbbe;let _0x568ebb=(0x0,_0x21fa40[_0x35b232(0x65d)])(_0x63c844),_0x2efe7b=(_0x3cbbbe=_0x568ebb[_0x35b232(0x513)][_0x35b232(0x2ad)](_0x45f7a0))==null?[]:_0x3cbbbe,_0x1da72d=[];return _0x2efe7b[_0x35b232(0xc9d)]((_0x161c06,_0x2e0554)=>{const _0x9bb37b=_0x35b232;var _0x54fa8c,_0x455a29,_0x52e20c,_0x3a87b3,_0x10f754,_0x5f2fba,_0x21569a,_0x1aad3c,_0xc7d004,_0x41940a,_0x272e60,_0xeda0c0,_0x4e40c1,_0xb927ec,_0x44be1c,_0x32983d,_0x30e626,_0x693d5a,_0x1f5e83,_0x693122,_0x58943e,_0x3f5c8a,_0x127485;let _0x57a1ae=_0x63c844[_0x9bb37b(0x41f)][_0x161c06];if(!_0x57a1ae||!_0x6388eb(_0x57a1ae))return;let _0x10ddb6=(_0x54fa8c=(_0x455a29=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x455a29[_0x9bb37b(0xbe5)])==null?_0x568ebb[_0x9bb37b(0x908)]['get'](_0x57a1ae['id']):_0x54fa8c,_0x1c268a=_0x10ddb6?_0x582aa7(_0x63c844,_0x10ddb6):void 0x0;_0x1da72d[_0x9bb37b(0x381)]({'id':_0x57a1ae['id'],'pageId':_0x45f7a0,'bbox':_0x57a1ae[_0x9bb37b(0xa01)],'widgetObjectId':_0x57a1ae['id'],'fieldObjectId':_0x10ddb6==null?_0x1c268a==null?void 0x0:_0x1c268a['id']:_0x10ddb6,'fieldName':(_0x52e20c=(_0x3a87b3=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x3a87b3['fieldName'])==null?_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0x37a)]:_0x52e20c,'fieldType':(_0x10f754=(_0x5f2fba=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x5f2fba[_0x9bb37b(0x6e3)])==null?_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0x6e3)]:_0x10f754,'value':(_0x21569a=(_0x1aad3c=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x1aad3c[_0x9bb37b(0x85b)])==null?_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0x85b)]:_0x21569a,'choices':(_0xc7d004=(_0x41940a=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x41940a[_0x9bb37b(0x262)])==null?_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0x262)]:_0xc7d004,'appearanceState':(_0x272e60=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x272e60[_0x9bb37b(0xbab)],'onValue':(_0xeda0c0=_0x57a1ae['widget'])==null?void 0x0:_0xeda0c0[_0x9bb37b(0xa72)],'normalAppearanceDisplayListId':(_0x4e40c1=(_0xb927ec=_0x57a1ae['widget'])==null?void 0x0:_0xb927ec[_0x9bb37b(0x6ab)])==null?_0x57a1ae['normalAppearanceDisplayListId']:_0x4e40c1,'normalAppearanceAssetId':(_0x44be1c=(_0x32983d=_0x57a1ae['widget'])==null?void 0x0:_0x32983d[_0x9bb37b(0x767)])==null?_0x57a1ae[_0x9bb37b(0x767)]:_0x44be1c,'defaultAppearance':(_0x30e626=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x30e626[_0x9bb37b(0x393)],'needsAppearance':(_0x693d5a=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x693d5a[_0x9bb37b(0x3a5)],'quadding':(_0x1f5e83=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x1f5e83[_0x9bb37b(0x424)],'backgroundColor':(_0x693122=_0x57a1ae['widget'])==null?void 0x0:_0x693122['backgroundColor'],'borderColor':(_0x58943e=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x58943e[_0x9bb37b(0x10e)],'borderWidth':(_0x3f5c8a=_0x57a1ae[_0x9bb37b(0x896)])==null?void 0x0:_0x3f5c8a[_0x9bb37b(0xc19)],'source':_0x57a1ae['source']?{..._0x57a1ae['source'],'pageId':(_0x127485=_0x57a1ae[_0x9bb37b(0x419)]['pageId'])==null?_0x45f7a0:_0x127485}:{'pageId':_0x45f7a0},'zIndex':_0x2e0554,'readOnly':_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0xa62)],'required':_0x1c268a==null?void 0x0:_0x1c268a[_0x9bb37b(0x150)]});}),_0x1da72d['sort']((_0x54a374,_0x309fc0)=>{const _0x101a53=_0x35b232;var _0x422e66,_0x2613f9;return((_0x422e66=_0x54a374[_0x101a53(0x7e1)])==null?0x0:_0x422e66)-((_0x2613f9=_0x309fc0['zIndex'])==null?0x0:_0x2613f9);});}function _0x6388eb(_0x5757a4){const _0x941bdf=_0x59d572;return _0x5757a4['type']===_0x21fa40['PdfObjectType']['ANNOTATION']&&_0x5757a4[_0x941bdf(0xbb9)]===_0x21fa40['PdfAnnotationType']['WIDGET']&&!!_0x5757a4['widget'];}function _0x582aa7(_0x1cd417,_0x575199){let _0x36d959=_0x1cd417['objects'][_0x575199];return _0x4ee7c4(_0x36d959)?_0x36d959:void 0x0;}function _0x4ee7c4(_0xcbc39a){const _0x5a2b38=_0x59d572;return!!_0xcbc39a&&_0xcbc39a['type']===_0x21fa40[_0x5a2b38(0x8bf)][_0x5a2b38(0xad7)];}function _0x2add1b(_0x89539a,_0x631d78,_0xe84803={}){const _0x428154=_0x59d572;var _0x2ac8c1,_0x5d7e4d;let _0x2812cb=((_0x2ac8c1=_0xe84803['page'])==null?void 0x0:_0x2ac8c1['id'])===_0x631d78?_0xe84803['page']:(0x0,_0x21fa40['getPdfDocumentRuntimeIndex'])(_0x89539a)[_0x428154(0x1ef)]['get'](_0x631d78);if(!_0x2812cb)return[];let _0xf819a7=(_0x5d7e4d=_0xe84803['maxFormDepth'])==null?0x8:_0x5d7e4d,_0x3e0544=[];return _0x12d8fd(_0x89539a,_0x2812cb['id'],_0xe84803[_0x428154(0x327)])[_0x428154(0xc9d)]((_0x2453c2,_0x555ea1)=>{const _0x2ccf43=_0x428154;let _0x57fdc4={'page':_0x2812cb,'displayListId':_0x2453c2['id'],'localPdfBox':_0x2812cb[_0x2ccf43(0x336)][_0x2ccf43(0xca2)],'operationPath':[],'zBase':_0x555ea1*0xf4240,'depth':0x0,'pdfPointToPageModelPoint':(_0xa2691c,_0x578cc9)=>_0x3bb877(_0x2812cb,_0xa2691c,_0x578cc9)};_0x22b863(_0x89539a,_0x2453c2[_0x2ccf43(0xa6d)],_0x57fdc4,_0xf819a7,_0x3e0544);}),_0x3e0544;}function _0x3c96bd(_0x3af730,_0x39bec4,_0x431f5b={}){const _0x18de52=_0x59d572;var _0x58fa8b,_0x465268;let _0x32c0a0=((_0x58fa8b=_0x431f5b['page'])==null?void 0x0:_0x58fa8b['id'])===_0x39bec4?_0x431f5b[_0x18de52(0x175)]:(0x0,_0x21fa40[_0x18de52(0x65d)])(_0x3af730)[_0x18de52(0x1ef)][_0x18de52(0x2ad)](_0x39bec4);if(!_0x32c0a0)return[];let _0x5be445=(_0x465268=_0x431f5b[_0x18de52(0xbeb)])==null?0x8:_0x465268,_0x5f5acd=[];return _0x12d8fd(_0x3af730,_0x32c0a0['id'],_0x431f5b['rootDisplayListIds'])['forEach']((_0x546c3d,_0x19409f)=>{const _0x15a647=_0x18de52;let _0x5c16c3={'page':_0x32c0a0,'displayListId':_0x546c3d['id'],'localPdfBox':_0x32c0a0[_0x15a647(0x336)][_0x15a647(0xca2)],'operationPath':[],'zBase':_0x19409f*0xf4240,'depth':0x0,'pdfPointToPageModelPoint':(_0xb901ce,_0x5ed6ce)=>_0x3bb877(_0x32c0a0,_0xb901ce,_0x5ed6ce)};_0x1ea524(_0x3af730,_0x546c3d['ops'],_0x5c16c3,_0x5be445,_0x5f5acd);}),_0x5f5acd;}function _0x12d8fd(_0x4cd15d,_0x11f4f2,_0x1affcf){const _0x5963af=_0x59d572;var _0x16e1ea;return _0x1affcf?_0x1affcf[_0x5963af(0x13c)](_0x2e8e0a=>{const _0x5826ee=_0x5963af;let _0x3e481a=_0x4cd15d[_0x5826ee(0x791)][_0x2e8e0a];return _0x3e481a?[_0x3e481a]:[];}):((_0x16e1ea=(0x0,_0x21fa40[_0x5963af(0x65d)])(_0x4cd15d)['displayListIdsByPage'][_0x5963af(0x2ad)](_0x11f4f2))==null?[]:_0x16e1ea)['flatMap'](_0x64cca4=>{let _0x4268aa=_0x4cd15d['displayLists'][_0x64cca4];return _0x4268aa?[_0x4268aa]:[];});}function _0x1ea524(_0x396f82,_0x578e04,_0x203d90,_0x15a976,_0x397cb7){const _0xcc78d7=_0x59d572;_0x578e04[_0xcc78d7(0xc9d)]((_0xc14a94,_0x509393)=>{const _0x45ae6=_0xcc78d7;var _0x570ab0,_0x2b5c72,_0x25aa65,_0xcb6a58;if(_0xc14a94['type']!==_0x21fa40[_0x45ae6(0xa18)][_0x45ae6(0xc79)]||_0x203d90[_0x45ae6(0x95e)]>=_0x15a976)return;let _0x638166=_0x3e8a27(_0x396f82,_0xc14a94,_0x203d90,_0x509393);_0x638166&&_0x397cb7[_0x45ae6(0x381)](_0x638166);let _0x3f164d=(_0x570ab0=_0xc14a94[_0x45ae6(0x1b7)])==null?_0xc14a94[_0x45ae6(0x9c4)]?(_0x2b5c72=_0x396f82['assets'][_0x45ae6(0x201)][_0xc14a94[_0x45ae6(0x9c4)]])==null?void 0x0:_0x2b5c72['displayListId']:void 0x0:_0x570ab0,_0x59e041=_0x3f164d?_0x396f82[_0x45ae6(0x791)][_0x3f164d]:void 0x0;if(!_0x59e041)return;let _0x4ce538=_0xc14a94['assetId']?_0x396f82[_0x45ae6(0xc33)][_0x45ae6(0x201)][_0xc14a94['assetId']]:void 0x0,_0x277069=(_0x25aa65=_0x4f14d7((_0xcb6a58=_0xc14a94[_0x45ae6(0xa01)])==null?_0x4ce538==null?void 0x0:_0x4ce538['bbox']:_0xcb6a58))==null?[0x0,0x0,0x1,0x1]:_0x25aa65,_0x35f12f=_0x392e0e(_0xc14a94);if(!_0x35f12f)return;let _0x32299f={'page':_0x203d90[_0x45ae6(0x175)],'displayListId':_0x59e041['id'],'localPdfBox':_0x277069,'operationPath':[..._0x203d90[_0x45ae6(0xb54)],{'displayListId':_0x203d90['displayListId'],'operatorId':_0xc14a94['id'],'resourceName':_0xc14a94[_0x45ae6(0xb7b)],'objectRef':_0xc14a94['objectRef'],'assetId':_0xc14a94[_0x45ae6(0x9c4)]}],'zBase':_0x203d90[_0x45ae6(0x8e3)]+(_0x509393+0x1)*0x2710,'depth':_0x203d90[_0x45ae6(0x95e)]+0x1,'pdfPointToPageModelPoint':(_0x3a49cf,_0x51ecfd)=>{const _0x3480ba=_0x45ae6;let [_0x36d888,_0x1a1f46]=_0x406585(_0x3a49cf,_0x51ecfd,_0x35f12f);return _0x203d90[_0x3480ba(0x4ae)](_0x36d888,_0x1a1f46);}};_0x1ea524(_0x396f82,_0x59e041[_0x45ae6(0xa6d)],_0x32299f,_0x15a976,_0x397cb7);});}function _0x3e8a27(_0x4ee657,_0x5da594,_0x3002c9,_0x4dcd86){const _0x28f60e=_0x59d572;var _0x5a7f0f,_0xf427ec,_0x8ced44,_0xe9214e,_0x1ff724;let _0x8b83c8=_0x5da594[_0x28f60e(0x9c4)]?_0x4ee657[_0x28f60e(0xc33)][_0x28f60e(0x201)][_0x5da594[_0x28f60e(0x9c4)]]:void 0x0,_0x59dfa5=_0x4f14d7((_0x5a7f0f=_0x5da594[_0x28f60e(0xa01)])==null?_0x8b83c8==null?void 0x0:_0x8b83c8[_0x28f60e(0xa01)]:_0x5a7f0f),_0x798a20=_0x392e0e(_0x5da594);if(!_0x59dfa5||!_0x798a20)return;let _0x413257=[..._0x3002c9[_0x28f60e(0xb54)],{'displayListId':_0x3002c9[_0x28f60e(0x1b7)],'operatorId':_0x5da594['id'],'resourceName':_0x5da594[_0x28f60e(0xb7b)],'objectRef':_0x5da594[_0x28f60e(0x798)],'assetId':_0x5da594[_0x28f60e(0x9c4)]}],_0x2e919c=_0x38fa2d(_0x59dfa5,_0x3002c9,_0x798a20),_0x5f55ae=(_0xf427ec=_0x5da594[_0x28f60e(0x1b7)])==null?_0x8b83c8==null?void 0x0:_0x8b83c8['displayListId']:_0xf427ec,_0x416477=Array[_0x28f60e(0x8c1)](new Set(_0x413257[_0x28f60e(0xb06)](_0x15bba3=>_0x15bba3[_0x28f60e(0x1b7)])[_0x28f60e(0xbcd)](Boolean))),_0x456abf={..._0x5da594[_0x28f60e(0x419)],'pageId':_0x3002c9[_0x28f60e(0x175)]['id'],'operatorIds':_0x5d618e((_0x8ced44=_0x5da594[_0x28f60e(0x419)])==null?void 0x0:_0x8ced44[_0x28f60e(0xa2c)],[_0x5da594['id']]),'displayListIds':_0x416477,'operationPath':_0x413257,'resourceRefs':(_0xe9214e=(_0x1ff724=_0x5da594['source'])==null?void 0x0:_0x1ff724['resourceRefs'])==null?[{'kind':_0x28f60e(0x141),'name':_0x5da594[_0x28f60e(0xb7b)],'ref':_0x5da594['objectRef'],'assetId':_0x5da594[_0x28f60e(0x9c4)]}]:_0xe9214e};return{'id':_0x413257[_0x28f60e(0xb06)](_0x4c76bf=>_0x4c76bf['operatorId'])[_0x28f60e(0xbcd)](Boolean)[_0x28f60e(0xb26)]('::')||_0x5da594['id'],'pageId':_0x3002c9[_0x28f60e(0x175)]['id'],'bbox':_0x2e919c,'assetId':_0x5da594[_0x28f60e(0x9c4)],'objectRef':_0x5da594[_0x28f60e(0x798)],'resourceName':_0x5da594[_0x28f60e(0xb7b)],'displayListId':_0x5f55ae,'source':_0x456abf,'zIndex':_0x3002c9['zBase']+_0x4dcd86};}function _0x22b863(_0x564464,_0x3a9069,_0x1abd6b,_0x4f531a,_0x83ec86){_0x3a9069['forEach']((_0x5d3f5b,_0x7a81f0)=>{const _0x253b0d=_0x57a5;var _0xa86581,_0x5e73fe,_0x420768,_0x57bb3c;if(_0x5d3f5b[_0x253b0d(0x2c1)]===_0x21fa40[_0x253b0d(0xa18)][_0x253b0d(0x97d)]){let _0x2c7828=_0x2a7137(_0x5d3f5b,_0x1abd6b,_0x7a81f0);_0x2c7828&&_0x83ec86[_0x253b0d(0x381)](_0x2c7828);return;}if(_0x5d3f5b[_0x253b0d(0x2c1)]!==_0x21fa40[_0x253b0d(0xa18)][_0x253b0d(0xc79)]||_0x1abd6b[_0x253b0d(0x95e)]>=_0x4f531a)return;let _0x5d23d6=(_0xa86581=_0x5d3f5b[_0x253b0d(0x1b7)])==null?_0x5d3f5b[_0x253b0d(0x9c4)]?(_0x5e73fe=_0x564464[_0x253b0d(0xc33)][_0x253b0d(0x201)][_0x5d3f5b['assetId']])==null?void 0x0:_0x5e73fe[_0x253b0d(0x1b7)]:void 0x0:_0xa86581,_0xf7450=_0x5d23d6?_0x564464[_0x253b0d(0x791)][_0x5d23d6]:void 0x0;if(!_0xf7450)return;let _0x129c47=_0x5d3f5b[_0x253b0d(0x9c4)]?_0x564464[_0x253b0d(0xc33)][_0x253b0d(0x201)][_0x5d3f5b['assetId']]:void 0x0,_0x12879b=(_0x420768=_0x4f14d7((_0x57bb3c=_0x5d3f5b[_0x253b0d(0xa01)])==null?_0x129c47==null?void 0x0:_0x129c47['bbox']:_0x57bb3c))==null?[0x0,0x0,0x1,0x1]:_0x420768,_0x3fb407=_0x392e0e(_0x5d3f5b);if(!_0x3fb407)return;let _0xfe4729=[..._0x1abd6b[_0x253b0d(0xb54)],{'displayListId':_0x1abd6b[_0x253b0d(0x1b7)],'operatorId':_0x5d3f5b['id'],'resourceName':_0x5d3f5b[_0x253b0d(0xb7b)],'objectRef':_0x5d3f5b['objectRef'],'assetId':_0x5d3f5b[_0x253b0d(0x9c4)]}],_0x3f9d8b={'page':_0x1abd6b['page'],'displayListId':_0xf7450['id'],'localPdfBox':_0x12879b,'operationPath':_0xfe4729,'zBase':_0x1abd6b[_0x253b0d(0x8e3)]+(_0x7a81f0+0x1)*0x2710,'depth':_0x1abd6b['depth']+0x1,'pdfPointToPageModelPoint':(_0x54eae7,_0xf66625)=>{const _0x244746=_0x253b0d;let [_0x4a2f35,_0x475066]=_0x406585(_0x54eae7,_0xf66625,_0x3fb407);return _0x1abd6b[_0x244746(0x4ae)](_0x4a2f35,_0x475066);}};_0x22b863(_0x564464,_0xf7450[_0x253b0d(0xa6d)],_0x3f9d8b,_0x4f531a,_0x83ec86);});}function _0x2a7137(_0x56d981,_0xac371f,_0x52d32c){const _0xa6eada=_0x59d572;var _0x1482f3;let _0x59352e=_0x56d981['runs'][_0xa6eada(0xb06)](_0x1e3c57=>_0x1e3c57[_0xa6eada(0x975)])[_0xa6eada(0xb26)]('');if(!_0x59352e||_0x59352e[_0xa6eada(0x4d9)]()[_0xa6eada(0xba6)]===0x0)return;let _0x5a302a=_0x24c8a1(_0x56d981);if(!_0x5a302a)return;let _0x228b32=[..._0xac371f[_0xa6eada(0xb54)],{'displayListId':_0xac371f[_0xa6eada(0x1b7)],'operatorId':_0x56d981['id']}],_0x490bc7=_0xac371f[_0xa6eada(0x95e)]===0x0?_0x5a302a:_0x1d0f1c(_0x5a302a,_0xac371f),_0x3929e1=Array['from'](new Set(_0x228b32[_0xa6eada(0xb06)](_0x25ba9b=>_0x25ba9b['displayListId'])['filter'](Boolean))),_0x1263a0={..._0x56d981[_0xa6eada(0x419)],'pageId':_0xac371f[_0xa6eada(0x175)]['id'],'operatorIds':_0x5d618e((_0x1482f3=_0x56d981[_0xa6eada(0x419)])==null?void 0x0:_0x1482f3[_0xa6eada(0xa2c)],[_0x56d981['id']]),'displayListIds':_0x3929e1,'operationPath':_0x228b32};return{'id':_0x228b32[_0xa6eada(0xb06)](_0x75cf65=>_0x75cf65[_0xa6eada(0x121)])[_0xa6eada(0xbcd)](Boolean)[_0xa6eada(0xb26)]('::')||_0x56d981['id'],'pageId':_0xac371f[_0xa6eada(0x175)]['id'],'bbox':_0x490bc7,'text':_0x59352e,'runs':_0x209303(_0x56d981[_0xa6eada(0x416)]),'displayOperationIds':[_0x56d981['id']],'source':_0x1263a0,'zIndex':_0xac371f['zBase']+_0x52d32c};}function _0x24c8a1(_0x370cf2){const _0x23c0d1=_0x59d572;let _0x354d65=_0x370cf2[_0x23c0d1(0x701)];if(!_0x354d65||_0x370cf2[_0x23c0d1(0x416)][_0x23c0d1(0xba6)]===0x0)return;let _0x58434a=Math['max'](..._0x370cf2[_0x23c0d1(0x416)]['map'](_0x12ada6=>_0x12ada6[_0x23c0d1(0x845)]||0xc)),_0x238f79=_0x1aca63(_0x370cf2),_0xd9ecbf=(0x0,_0x21fa40[_0x23c0d1(0x7c3)])(_0x58434a*0.9),_0x3f8d87=(0x0,_0x21fa40[_0x23c0d1(0x7c3)])(_0x58434a*0.3),_0x38215a=[_0x4820b2(0x0,-_0xd9ecbf,_0x354d65),_0x4820b2(_0x238f79,-_0xd9ecbf,_0x354d65),_0x4820b2(0x0,_0x3f8d87,_0x354d65),_0x4820b2(_0x238f79,_0x3f8d87,_0x354d65)],_0x1b1d69=_0x38215a['map'](_0x2a9f08=>_0x2a9f08[0x0]),_0x5261d1=_0x38215a['map'](_0x19058e=>_0x19058e[0x1]);return[Math[_0x23c0d1(0xb2a)](..._0x1b1d69),Math[_0x23c0d1(0xb2a)](..._0x5261d1),Math[_0x23c0d1(0x542)](..._0x1b1d69),Math['max'](..._0x5261d1)];}function _0x1aca63(_0x343023){const _0x2a0c9d=_0x59d572;var _0x2f83a1,_0x1aa6a7;let _0x5e59d7=((_0x2f83a1=(_0x1aa6a7=_0x343023[_0x2a0c9d(0x1f6)])==null?void 0x0:_0x1aa6a7['horizontalScale'])==null?0x64:_0x2f83a1)/0x64;return _0x343023[_0x2a0c9d(0x416)][_0x2a0c9d(0xc71)]((_0x4e459a,_0x1fd381)=>{const _0x2cdd23=_0x2a0c9d;var _0x31e3e1,_0xe4a344,_0x17ef88;let _0x3a87bb=(_0x31e3e1=_0x1fd381[_0x2cdd23(0x70a)])==null||(_0x31e3e1=_0x31e3e1[_0x2cdd23(0x644)])==null?void 0x0:_0x31e3e1[_0x2cdd23(0xc71)]((_0x2fcce8,_0x267f65)=>_0x2fcce8+(0x0,_0x21fa40[_0x2cdd23(0x7c3)])(_0x267f65),0x0),_0x3a2194=typeof _0x3a87bb==_0x2cdd23(0x97e)&&Number[_0x2cdd23(0x771)](_0x3a87bb)?_0x3a87bb:(0x0,_0x21fa40[_0x2cdd23(0x7c3)])((_0x1fd381[_0x2cdd23(0x845)]||0xc)*Array[_0x2cdd23(0x8c1)](_0x1fd381[_0x2cdd23(0x975)])[_0x2cdd23(0xba6)]*0.52),_0x1bc90d=Array['from'](_0x1fd381[_0x2cdd23(0x975)])[_0x2cdd23(0xba6)],_0x2fe6e8=(0x0,_0x21fa40[_0x2cdd23(0x7c3)])((_0xe4a344=_0x1fd381['charSpacing'])==null?0x0:_0xe4a344)*Math['max'](0x0,_0x1bc90d-0x1),_0x26a506=(0x0,_0x21fa40['ptToEmu'])((_0x17ef88=_0x1fd381[_0x2cdd23(0x60d)])==null?0x0:_0x17ef88)*Array[_0x2cdd23(0x8c1)](_0x1fd381[_0x2cdd23(0x975)])[_0x2cdd23(0xbcd)](_0x100d36=>_0x100d36==='\x20')[_0x2cdd23(0xba6)];return _0x4e459a+Math[_0x2cdd23(0x157)]((_0x3a2194+_0x2fe6e8+_0x26a506)*_0x5e59d7);},0x0);}function _0x1d0f1c(_0x5beaf6,_0x171a8d){const _0x1e22dc=_0x59d572;let _0x2f3c58=[_0x5630bd(_0x5beaf6[0x0],_0x5beaf6[0x1],_0x171a8d),_0x5630bd(_0x5beaf6[0x2],_0x5beaf6[0x1],_0x171a8d),_0x5630bd(_0x5beaf6[0x0],_0x5beaf6[0x3],_0x171a8d),_0x5630bd(_0x5beaf6[0x2],_0x5beaf6[0x3],_0x171a8d)],_0x186f5d=_0x2f3c58[_0x1e22dc(0xb06)](_0x58f90b=>_0x58f90b[0x0]),_0x4d3988=_0x2f3c58['map'](_0x460a61=>_0x460a61[0x1]);return[Math['min'](..._0x186f5d),Math[_0x1e22dc(0xb2a)](..._0x4d3988),Math[_0x1e22dc(0x542)](..._0x186f5d),Math[_0x1e22dc(0x542)](..._0x4d3988)];}function _0x5630bd(_0x12b52f,_0x3b16ac,_0xa2f97c){const _0x2f3e36=_0x59d572;let _0x422f9c=_0xa2f97c[_0x2f3e36(0x7c7)][0x0]+(0x0,_0x21fa40[_0x2f3e36(0x59d)])(_0x12b52f),_0x1f3bb6=_0xa2f97c[_0x2f3e36(0x7c7)][0x3]-(0x0,_0x21fa40[_0x2f3e36(0x59d)])(_0x3b16ac);return _0xa2f97c[_0x2f3e36(0x4ae)](_0x422f9c,_0x1f3bb6);}function _0x38fa2d(_0x1fe43b,_0x560e1a,_0x32bf21){const _0x9fad27=_0x59d572;let _0x4da61a=[_0x406585(_0x1fe43b[0x0],_0x1fe43b[0x1],_0x32bf21),_0x406585(_0x1fe43b[0x2],_0x1fe43b[0x1],_0x32bf21),_0x406585(_0x1fe43b[0x0],_0x1fe43b[0x3],_0x32bf21),_0x406585(_0x1fe43b[0x2],_0x1fe43b[0x3],_0x32bf21)][_0x9fad27(0xb06)](([_0x5233e3,_0xe5a72b])=>_0x560e1a[_0x9fad27(0x4ae)](_0x5233e3,_0xe5a72b)),_0x4a3dd5=_0x4da61a[_0x9fad27(0xb06)](_0x152e9c=>_0x152e9c[0x0]),_0x2cb9e9=_0x4da61a['map'](_0x33e57d=>_0x33e57d[0x1]);return[Math[_0x9fad27(0xb2a)](..._0x4a3dd5),Math['min'](..._0x2cb9e9),Math[_0x9fad27(0x542)](..._0x4a3dd5),Math['max'](..._0x2cb9e9)];}function _0x3bb877(_0x5075e6,_0x13b5d9,_0x1c15a5){const _0x35bda4=_0x59d572;let _0x39481e=_0x5075e6['pdfBoxes'][_0x35bda4(0xca2)];return[(0x0,_0x21fa40['ptToEmu'])(_0x13b5d9-_0x39481e[0x0]),(0x0,_0x21fa40[_0x35bda4(0x7c3)])(_0x39481e[0x3]-_0x1c15a5)];}function _0x392e0e(_0x238469){const _0x5269fe=_0x59d572;var _0x35747a;return _0x238469[_0x5269fe(0x701)]&&_0x238469[_0x5269fe(0x86d)]?_0x29a12f(_0x238469[_0x5269fe(0x701)],_0x238469[_0x5269fe(0x86d)]):(_0x35747a=_0x238469[_0x5269fe(0x701)])==null?_0x238469['matrix']:_0x35747a;}function _0x4f14d7(_0x57991f){const _0x302d90=_0x59d572;if(!(!_0x57991f||_0x57991f[_0x302d90(0xba6)]!==0x4||!_0x57991f['every'](_0x419ca6=>Number[_0x302d90(0x771)](_0x419ca6))))return[Math[_0x302d90(0xb2a)](_0x57991f[0x0],_0x57991f[0x2]),Math['min'](_0x57991f[0x1],_0x57991f[0x3]),Math[_0x302d90(0x542)](_0x57991f[0x0],_0x57991f[0x2]),Math[_0x302d90(0x542)](_0x57991f[0x1],_0x57991f[0x3])];}function _0x29a12f(_0x342073,_0x44f3c7){return[_0x342073[0x0]*_0x44f3c7[0x0]+_0x342073[0x2]*_0x44f3c7[0x1],_0x342073[0x1]*_0x44f3c7[0x0]+_0x342073[0x3]*_0x44f3c7[0x1],_0x342073[0x0]*_0x44f3c7[0x2]+_0x342073[0x2]*_0x44f3c7[0x3],_0x342073[0x1]*_0x44f3c7[0x2]+_0x342073[0x3]*_0x44f3c7[0x3],_0x342073[0x0]*_0x44f3c7[0x4]+_0x342073[0x2]*_0x44f3c7[0x5]+_0x342073[0x4],_0x342073[0x1]*_0x44f3c7[0x4]+_0x342073[0x3]*_0x44f3c7[0x5]+_0x342073[0x5]];}function _0x406585(_0x5d9354,_0x1ece59,_0x20b20b){return[_0x20b20b[0x0]*_0x5d9354+_0x20b20b[0x2]*_0x1ece59+_0x20b20b[0x4],_0x20b20b[0x1]*_0x5d9354+_0x20b20b[0x3]*_0x1ece59+_0x20b20b[0x5]];}function _0x4820b2(_0x202fc4,_0x589852,_0x4d0992){return[_0x4d0992[0x0]*_0x202fc4+_0x4d0992[0x2]*_0x589852+_0x4d0992[0x4],_0x4d0992[0x1]*_0x202fc4+_0x4d0992[0x3]*_0x589852+_0x4d0992[0x5]];}function _0x5d618e(_0x2d5afb,_0x5acb24){const _0x385e19=_0x59d572;return Array[_0x385e19(0x8c1)](new Set([..._0x2d5afb==null?[]:_0x2d5afb,..._0x5acb24]));}function _0x209303(_0x33e883){return _0x33e883['map'](_0x2dbc0c=>({..._0x2dbc0c}));}let _0x20e35e=(0x0,_0x2894d3[_0x59d572(0x11f)])(_0x59d572(0x39e));var _0x3f19b0=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(_0x11f090=0xc,_0x49f970=_0x4d4b62()){const _0x5da693=_0x59d572;super(),this[_0x5da693(0xa15)]=_0x11f090,this[_0x5da693(0x83c)]=_0x49f970,_0x22e50d(this,_0x5da693(0x643),new Map()),_0x22e50d(this,_0x5da693(0x865),new WeakMap());}['attachUnit'](_0x58c614){const _0x74298c=_0x59d572;this[_0x74298c(0x73c)](_0x58c614);}[_0x59d572(0x79d)](_0x105659){const _0x393474=_0x59d572;let _0x18ac8e=this['_records'][_0x393474(0x2ad)](_0x105659);return _0x18ac8e?(this[_0x393474(0xbde)](_0x18ac8e),this[_0x393474(0x643)][_0x393474(0x297)](_0x105659)):!0x1;}[_0x59d572(0xb1e)](_0x1735a7,_0x2ce4d7,_0x41a0c3){const _0x18dff7=_0x59d572;let _0x1205a8=this[_0x18dff7(0x73c)](_0x1735a7),_0x319e17=_0x1205a8[_0x18dff7(0x664)][_0x18dff7(0x2ad)](_0x2ce4d7);if(_0x319e17)return this[_0x18dff7(0x6fb)](_0x1205a8['pages'],_0x2ce4d7,_0x319e17),_0x319e17[_0x18dff7(0xc15)];let _0x441976=_0x2640bb(_0x1205a8[_0x18dff7(0xb09)],_0x1205a8[_0x18dff7(0x2c6)],_0x2ce4d7,_0x41a0c3);if(_0x441976){for(_0x1205a8['pages'][_0x18dff7(0xad2)](_0x2ce4d7,{'region':_0x441976});_0x1205a8[_0x18dff7(0x664)][_0x18dff7(0x71b)]>Math['max'](0x1,this[_0x18dff7(0xa15)]);){let _0x114444=_0x1205a8['pages'][_0x18dff7(0x3ed)]()[_0x18dff7(0x91b)]()[_0x18dff7(0x85b)];if(!_0x114444)break;_0x1205a8['pages']['delete'](_0x114444);}return _0x441976;}}['activatePage'](_0x3a95ed,_0x271e32,_0x29cb63){const _0x3a5be0=_0x59d572;var _0x3c5c31,_0x137273;let _0x111988=this[_0x3a5be0(0x73c)](_0x3a95ed),_0x1a9376=_0x29cb63==null?_0x111988[_0x3a5be0(0xb09)]['pages']:_0x29cb63,_0x366d3d=_0x29cb63?(_0x3c5c31=this[_0x3a5be0(0x937)](_0x1a9376)[_0x3a5be0(0x2ad)](_0x271e32))==null?-0x1:_0x3c5c31:(_0x137273=_0x111988[_0x3a5be0(0x2c6)]['pageIndexById']['get'](_0x271e32))==null?-0x1:_0x137273,_0xb559e2=_0x366d3d<0x0?_0x111988[_0x3a5be0(0x2c6)]['pageById'][_0x3a5be0(0x2ad)](_0x271e32):_0x1a9376[_0x366d3d];this['preparePage'](_0x3a95ed,_0x271e32,_0xb559e2);let _0x48e8e8=_0x366d3d<0x0?[]:[_0x1a9376[_0x366d3d-0x1],_0x1a9376[_0x366d3d+0x1]][_0x3a5be0(0xbcd)](_0x56473f=>!!_0x56473f),_0x3ba55d={'active':!0x0,'handles':new Set()};return _0x111988[_0x3a5be0(0xa40)][_0x3a5be0(0x30c)](_0x3ba55d),_0x48e8e8[_0x3a5be0(0xc9d)](_0x3f2c48=>{const _0x3f68a7=_0x3a5be0;let _0x3f6ede=this['_scheduler'][_0x3f68a7(0x522)](()=>{const _0x342cb4=_0x3f68a7;_0x3ba55d[_0x342cb4(0xbe7)]['delete'](_0x3f6ede),!(!_0x3ba55d[_0x342cb4(0xc96)]||this[_0x342cb4(0x643)][_0x342cb4(0x2ad)](_0x3a95ed[_0x342cb4(0x49e)]())!==_0x111988||_0x3a95ed[_0x342cb4(0x15a)]()!==_0x111988['document'])&&(this[_0x342cb4(0xb1e)](_0x3a95ed,_0x3f2c48['id'],_0x3f2c48),_0x3ba55d[_0x342cb4(0xbe7)][_0x342cb4(0x71b)]===0x0&&_0x111988['prewarmTasks'][_0x342cb4(0x297)](_0x3ba55d));});_0x3ba55d[_0x3f68a7(0xbe7)][_0x3f68a7(0x30c)](_0x3f6ede);}),()=>{const _0x322276=_0x3a5be0;_0x3ba55d['active']&&(_0x3ba55d[_0x322276(0xc96)]=!0x1,_0x3ba55d['handles'][_0x322276(0xc9d)](_0x107405=>this[_0x322276(0x83c)][_0x322276(0x9fc)](_0x107405)),_0x3ba55d['handles'][_0x322276(0x5d2)](),_0x111988[_0x322276(0xa40)][_0x322276(0x297)](_0x3ba55d));};}[_0x59d572(0xb13)](_0x33e73e,_0xce6d85){const _0x417be1=_0x59d572;var _0xa834cb;return(_0xa834cb=this['_records'][_0x417be1(0x2ad)](_0x33e73e))==null||(_0xa834cb=_0xa834cb[_0x417be1(0x664)][_0x417be1(0x2ad)](_0xce6d85))==null?void 0x0:_0xa834cb[_0x417be1(0xc15)];}[_0x59d572(0xbe1)](_0x95882d,_0x331cd3){const _0x1c208a=_0x59d572;var _0x377745;return(_0x377745=this[_0x1c208a(0x73c)](_0x95882d)[_0x1c208a(0x2c6)][_0x1c208a(0x6a6)]['get'](_0x331cd3))==null?-0x1:_0x377745;}[_0x59d572(0x544)](_0x11289a,_0x2348bf,_0x231636,_0x2ac290='',_0x19662c=(0x0,_0x21fa40['createPdfPageCacheEpoch'])(_0x11289a['getDocument'](),_0x231636['editState'][_0x59d572(0x7e0)])){const _0x582367=_0x59d572;var _0x3e7dc3,_0x465f1c;let _0x199ca1=this[_0x582367(0xb1e)](_0x11289a,_0x2348bf),_0x38bdea=this[_0x582367(0x643)]['get'](_0x11289a[_0x582367(0x49e)]()),_0x42e3cb=_0x38bdea==null?void 0x0:_0x38bdea[_0x582367(0x664)][_0x582367(0x2ad)](_0x2348bf);if(!_0x199ca1||!_0x42e3cb)return;let _0x497bce=(_0x3e7dc3=_0x42e3cb['projections'])==null?void 0x0:_0x3e7dc3[_0x582367(0x2ad)](_0x2ac290);if(_0x497bce&&(0x0,_0x21fa40['isSamePdfPageProjectionEpoch'])(_0x497bce[_0x582367(0x18e)],_0x19662c))return _0x42e3cb[_0x582367(0x433)][_0x582367(0x297)](_0x2ac290),_0x42e3cb['projections'][_0x582367(0xad2)](_0x2ac290,_0x497bce),_0x497bce[_0x582367(0xb09)];let _0x199f22=(0x0,_0x21fa40[_0x582367(0x242)])({'document':_0x199ca1[_0x582367(0xb09)],'session':_0x231636,'pageId':_0x2348bf,'sourcePage':_0x199ca1[_0x582367(0x175)],'objectIds':_0x199ca1[_0x582367(0x5a9)],'displayListIds':_0x199ca1['displayListIds']});if(!_0x199f22)return;let _0x24f405=(_0x465f1c=_0x42e3cb[_0x582367(0x433)])==null?new Map():_0x465f1c;for(_0x24f405[_0x582367(0xad2)](_0x2ac290,{'epoch':_0x19662c,'document':_0x199f22}),_0x42e3cb[_0x582367(0x433)]=_0x24f405;_0x24f405[_0x582367(0x71b)]>0x3;){let _0x1dffa2=_0x24f405[_0x582367(0x3ed)]()[_0x582367(0x91b)]()[_0x582367(0x85b)];if(_0x1dffa2===void 0x0)break;_0x24f405[_0x582367(0x297)](_0x1dffa2);}return _0x199f22;}[_0x59d572(0xa9e)](){const _0x461f94=_0x59d572;this[_0x461f94(0x643)][_0x461f94(0xc9d)](_0x4893de=>this[_0x461f94(0xbde)](_0x4893de)),this[_0x461f94(0x643)][_0x461f94(0x5d2)](),super[_0x461f94(0xa9e)]();}['_ensureRecord'](_0x5922fa){const _0x55e75f=_0x59d572;let _0x20c4e8=_0x5922fa['getUnitId'](),_0x21b0a8=_0x5922fa[_0x55e75f(0x15a)](),_0x3cafab=this['_records'][_0x55e75f(0x2ad)](_0x20c4e8);if((_0x3cafab==null?void 0x0:_0x3cafab[_0x55e75f(0xb09)])===_0x21b0a8)return _0x3cafab;_0x3cafab&&this[_0x55e75f(0xbde)](_0x3cafab);let _0x96f4c5={'model':_0x5922fa,'document':_0x21b0a8,'index':(0x0,_0x21fa40[_0x55e75f(0x65d)])(_0x21b0a8),'pages':new Map(),'prewarmTasks':new Set()};return this[_0x55e75f(0x643)][_0x55e75f(0xad2)](_0x20c4e8,_0x96f4c5),_0x96f4c5;}['_destroyRecord'](_0x4a65ba){const _0x333e47=_0x59d572;_0x4a65ba['prewarmTasks']['forEach'](_0x41732f=>{const _0x3a4988=_0x57a5;_0x41732f[_0x3a4988(0xc96)]=!0x1,_0x41732f[_0x3a4988(0xbe7)]['forEach'](_0x3913a7=>this[_0x3a4988(0x83c)][_0x3a4988(0x9fc)](_0x3913a7)),_0x41732f[_0x3a4988(0xbe7)]['clear']();}),_0x4a65ba[_0x333e47(0xa40)][_0x333e47(0x5d2)](),_0x4a65ba[_0x333e47(0x664)][_0x333e47(0x5d2)]();}['_touch'](_0x47b87a,_0x426cb1,_0x3f6d3f){const _0x43c1e0=_0x59d572;_0x47b87a[_0x43c1e0(0x297)](_0x426cb1),_0x47b87a[_0x43c1e0(0xad2)](_0x426cb1,_0x3f6d3f);}[_0x59d572(0x937)](_0x3d74b1){const _0x4faeda=_0x59d572;let _0x17265c=this[_0x4faeda(0x865)][_0x4faeda(0x2ad)](_0x3d74b1);if(_0x17265c)return _0x17265c;let _0x333324=new Map();return _0x3d74b1[_0x4faeda(0xc9d)]((_0xc105ad,_0x582b16)=>_0x333324[_0x4faeda(0xad2)](_0xc105ad['id'],_0x582b16)),this[_0x4faeda(0x865)][_0x4faeda(0xad2)](_0x3d74b1,_0x333324),_0x333324;}};function _0x4d4b62(){return{'schedule'(_0x2006da){const _0x581ab8=_0x57a5;return typeof globalThis[_0x581ab8(0xba0)]==_0x581ab8(0x9df)?{'kind':_0x581ab8(0xb9d),'id':globalThis['requestIdleCallback'](()=>_0x2006da())}:{'kind':_0x581ab8(0x75a),'id':globalThis[_0x581ab8(0x888)](_0x2006da,0x0)};},'cancel'(_0x54ac70){const _0x3a18f3=_0x57a5;let _0x4fcafc=_0x54ac70;if(_0x4fcafc[_0x3a18f3(0x395)]===_0x3a18f3(0xb9d)&&typeof globalThis[_0x3a18f3(0x59e)]==_0x3a18f3(0x9df)){globalThis['cancelIdleCallback'](_0x4fcafc['id']);return;}_0x4fcafc['kind']===_0x3a18f3(0x75a)&&globalThis[_0x3a18f3(0x81d)](_0x4fcafc['id']);}};}function _0x2640bb(_0xb557c5,_0x1e464a,_0x31ead8,_0x46ee72){const _0x42d2d0=_0x59d572;var _0x3fc8a0,_0x1903e0,_0x337c50,_0x3f88ef,_0x19991c,_0x44c7b4;let _0x21d3e0=_0x46ee72==null?_0x1e464a[_0x42d2d0(0x1ef)][_0x42d2d0(0x2ad)](_0x31ead8):_0x46ee72;if(!_0x21d3e0)return;let _0x237a9c=[...(_0x3fc8a0=_0x1e464a[_0x42d2d0(0x513)][_0x42d2d0(0x2ad)](_0x31ead8))==null?_0x52db6f(_0x21d3e0['layers'][_0x42d2d0(0x13c)](_0x21ba44=>_0x21ba44[_0x42d2d0(0x5a9)])):_0x3fc8a0],_0x39e7ef=[...(_0x1903e0=_0x1e464a[_0x42d2d0(0x9ca)]['get'](_0x31ead8))==null?[]:_0x1903e0],_0xc52ef=[...(_0x337c50=_0x1e464a[_0x42d2d0(0x6f6)][_0x42d2d0(0x2ad)](_0x31ead8))==null?[]:_0x337c50],_0x3861be=[...(_0x3f88ef=_0x1e464a['rootDisplayListIds'][_0x42d2d0(0x2ad)](_0x31ead8))==null?[]:_0x3f88ef],_0x244edc=[...(_0x19991c=_0x1e464a[_0x42d2d0(0x1f5)][_0x42d2d0(0x2ad)](_0x31ead8))==null?[]:_0x19991c],_0x2f3166=_0xa2aee7(_0xb557c5,_0x21d3e0,_0x237a9c,_0x244edc,_0x39e7ef,_0xc52ef,_0x1e464a[_0x42d2d0(0x447)](_0x21d3e0['id']));return{'pageId':_0x31ead8,'pageIndex':(_0x44c7b4=_0x1e464a[_0x42d2d0(0x6a6)]['get'](_0x31ead8))==null?_0x21d3e0[_0x42d2d0(0x2c6)]:_0x44c7b4,'page':_0x21d3e0,'document':_0x2f3166,'objectIds':_0x237a9c,'rootDisplayListIds':_0x3861be,'displayListIds':_0x244edc,'nativeTextTargets':_0x2add1b(_0xb557c5,_0x31ead8,{'page':_0x21d3e0,'rootDisplayListIds':_0x3861be}),'nativeFormXObjectTargets':_0x3c96bd(_0xb557c5,_0x31ead8,{'page':_0x21d3e0,'rootDisplayListIds':_0x3861be}),'formFieldTargets':_0x2835fc(_0xb557c5,_0x31ead8)};}function _0xa2aee7(_0x3f0642,_0x540463,_0x1794de,_0x5de233,_0x4e2fa5,_0x2cc87f,_0x18f55f){const _0x3043c7=_0x59d572;return{..._0x3f0642,'pages':[_0x540463],'objects':_0x4fdeec(_0x3f0642[_0x3043c7(0x41f)],_0x1794de),'displayLists':_0x4fdeec(_0x3f0642[_0x3043c7(0x791)],_0x5de233),'textStories':_0x4fdeec(_0x3f0642[_0x3043c7(0x452)],_0x4e2fa5),'assets':{'fonts':_0x4fdeec(_0x3f0642[_0x3043c7(0xc33)][_0x3043c7(0x261)],_0x2cc87f),'images':_0x4fdeec(_0x3f0642['assets'][_0x3043c7(0x707)],_0x2cc87f),'formXObjects':_0x4fdeec(_0x3f0642[_0x3043c7(0xc33)]['formXObjects'],_0x2cc87f),'colorProfiles':_0x4fdeec(_0x3f0642[_0x3043c7(0xc33)][_0x3043c7(0x7ab)],_0x2cc87f),'patterns':_0x4fdeec(_0x3f0642['assets'][_0x3043c7(0x43c)],_0x2cc87f),'shadings':_0x4fdeec(_0x3f0642['assets'][_0x3043c7(0xaff)],_0x2cc87f),'attachments':_0x4fdeec(_0x3f0642[_0x3043c7(0xc33)][_0x3043c7(0xbf3)],_0x2cc87f),'streams':_0x4fdeec(_0x3f0642['assets'][_0x3043c7(0x53c)],_0x2cc87f)},'edits':{..._0x3f0642[_0x3043c7(0x15c)],'suppressions':Object['fromEntries'](_0x18f55f[_0x3043c7(0xb06)](_0x59fbb3=>[_0x59fbb3['id'],_0x59fbb3]))}};}function _0x4fdeec(_0x34ebe3,_0x3b7fdb){const _0x29b9ee=_0x59d572;return Object[_0x29b9ee(0xb1d)](_0x3b7fdb['flatMap'](_0x32c146=>_0x32c146 in _0x34ebe3?[[_0x32c146,_0x34ebe3[_0x32c146]]]:[]));}function _0x52db6f(_0x429ff4){const _0x3082fc=_0x59d572;return Array[_0x3082fc(0x8c1)](new Set(_0x429ff4));}let _0x38af88=class extends _0x2894d3[_0x59d572(0x917)]{constructor(_0x1103d6,_0x3ec5b9,_0x5052b8,_0x482803){const _0x5c9e18=_0x59d572;super(),this[_0x5c9e18(0x67d)]=_0x1103d6,this[_0x5c9e18(0x44d)]=_0x3ec5b9,this[_0x5c9e18(0x3e6)]=_0x5052b8,this[_0x5c9e18(0xa02)]=_0x482803,this[_0x5c9e18(0xc41)]();}[_0x59d572(0xc41)](){const _0x3ccadb=_0x59d572;this['_instanceService'][_0x3ccadb(0x3bc)](_0x2894d3[_0x3ccadb(0x79c)]['UNIVER_PDF'])[_0x3ccadb(0x1a1)]((0x0,_0x3fc99d[_0x3ccadb(0x936)])(this[_0x3ccadb(0x49f)]))['subscribe'](({unit:_0x3a6d09})=>{const _0x8733e=_0x3ccadb;this['_runtimeService']['attachUnit'](_0x3a6d09),this['_pageRegionService'][_0x8733e(0x972)](_0x3a6d09);}),this[_0x3ccadb(0x67d)][_0x3ccadb(0xb2b)](_0x2894d3[_0x3ccadb(0x79c)][_0x3ccadb(0x25e)])['pipe']((0x0,_0x3fc99d[_0x3ccadb(0x936)])(this[_0x3ccadb(0x49f)]))['subscribe'](_0x2946d5=>{const _0x24a382=_0x3ccadb;this[_0x24a382(0x44d)][_0x24a382(0x79d)](_0x2946d5[_0x24a382(0x49e)]()),this[_0x24a382(0x3e6)][_0x24a382(0x79d)](_0x2946d5['getUnitId']());}),this[_0x3ccadb(0x67d)]['getAllUnitsForType'](_0x2894d3[_0x3ccadb(0x79c)][_0x3ccadb(0x25e)])[_0x3ccadb(0xc9d)](_0x4afc25=>{const _0x89fa7c=_0x3ccadb;this[_0x89fa7c(0x44d)]['attachUnit'](_0x4afc25),this['_pageRegionService'][_0x89fa7c(0x972)](_0x4afc25);}),this[_0x3ccadb(0x17b)](this[_0x3ccadb(0xa02)][_0x3ccadb(0x8b9)](_0x5e5797=>{const _0x414ca2=_0x3ccadb;var _0x4f82db;if(_0x5e5797['id']===_0x21fa40[_0x414ca2(0xbe2)]['id']){let _0x53bf7c=_0x5e5797[_0x414ca2(0x743)];_0x53bf7c!=null&&_0x53bf7c[_0x414ca2(0x400)]&&_0x53bf7c['batch']&&globalThis[_0x414ca2(0x888)](()=>this['_runtimeService'][_0x414ca2(0x8b5)](_0x53bf7c[_0x414ca2(0x400)],_0x53bf7c[_0x414ca2(0xa8e)],!0x0),0x0);return;}if(_0x5e5797['id']!==_0x21fa40[_0x414ca2(0xac4)]['id'])return;let _0x245692=(_0x4f82db=_0x5e5797[_0x414ca2(0x743)])==null?void 0x0:_0x4f82db[_0x414ca2(0x400)];_0x245692&&this[_0x414ca2(0x44d)][_0x414ca2(0xc72)](_0x245692);}));}};_0x38af88=_0x3ef5be([_0x4a4ad7(0x0,_0x2894d3['IUniverInstanceService']),_0x4a4ad7(0x1,_0x289aee),_0x4a4ad7(0x2,_0x20e35e),_0x4a4ad7(0x3,_0x2894d3[_0x59d572(0x727)])],_0x38af88);var _0x5108fa=_0x59d572(0x40c),_0x784caa=_0x59d572(0x4ad);let _0x50bc17=[{'id':_0x3e4bd7,'type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xc45)],'handler':(_0x3c9752,_0x55be3a)=>!!(_0x55be3a&&_0x3c9752['get'](_0x4e4eea)[_0x59d572(0x29c)](_0x55be3a[_0x59d572(0x400)],_0x55be3a[_0x59d572(0x5bc)],_0x55be3a[_0x59d572(0x445)],{'actorId':'pdf-ui','clientId':_0x59d572(0x3f9)})[_0x59d572(0x309)])}],_0xdc78b0={'id':_0x59d572(0x84d),'type':_0x2894d3[_0x59d572(0x46f)]['OPERATION'],'handler':_0x2a66f0=>_0x1551bd(_0x2a66f0['get'](_0x2894d3[_0x59d572(0x50a)]))?_0x2a66f0[_0x59d572(0x2ad)](_0x2894d3['ICommandService'])['executeCommand'](_0x2894d3[_0x59d572(0xac8)]['id']):!0x1},_0x443b32={'id':_0x59d572(0x692),'type':_0x2894d3['CommandType'][_0x59d572(0xaa7)],'handler':_0x623da8=>_0x1551bd(_0x623da8[_0x59d572(0x2ad)](_0x2894d3['IUniverInstanceService']))?_0x623da8[_0x59d572(0x2ad)](_0x2894d3[_0x59d572(0x727)])['executeCommand'](_0x2894d3[_0x59d572(0x874)]['id']):!0x1},_0x5d9c21={'id':_0x59d572(0x73b),'type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':(_0x2167f6,_0x1c7ba6)=>{const _0x274f80=_0x59d572;let _0x1c5fdb=_0x1551bd(_0x2167f6[_0x274f80(0x2ad)](_0x2894d3[_0x274f80(0x50a)]));return!_0x1c5fdb||!_0x1c7ba6?!0x1:!!_0x2167f6['get'](_0x289aee)[_0x274f80(0xb76)](_0x1c5fdb[_0x274f80(0x49e)](),_0x5767e9=>({..._0x5767e9,'mode':_0x1c7ba6[_0x274f80(0x7d3)]}));}},_0x1a39fe={'id':_0x59d572(0x871),'type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':(_0x57a6c7,_0x2e9c32)=>{const _0x2d8c5e=_0x59d572;var _0x232e8b;let _0x25a2f0=_0x1551bd(_0x57a6c7[_0x2d8c5e(0x2ad)](_0x2894d3[_0x2d8c5e(0x50a)])),_0x177554=_0x57a6c7[_0x2d8c5e(0x2ad)](_0x289aee),_0x3f161c=_0x25a2f0?_0x177554['getStateParts'](_0x25a2f0[_0x2d8c5e(0x49e)]()):void 0x0,_0x45b9ac=(_0x232e8b=_0x3f161c==null?void 0x0:_0x3f161c[_0x2d8c5e(0x828)]['selection'][_0x2d8c5e(0x60c)]['find'](_0xe3fb4d=>_0xe3fb4d['id']===_0x3f161c[_0x2d8c5e(0x828)]['selection']['primaryAnchorId']))==null?_0x3f161c==null?void 0x0:_0x3f161c[_0x2d8c5e(0x828)]['selection'][_0x2d8c5e(0x60c)][0x0]:_0x232e8b,_0x1f7938=_0x45b9ac&&'objectId'in _0x45b9ac?_0x45b9ac['objectId']:void 0x0,_0x49a8a0=_0x1f7938?_0x3f161c==null?void 0x0:_0x3f161c['durable']['overlayObjects'][_0x1f7938]:void 0x0;return!_0x25a2f0||!_0x2e9c32||!_0x1f7938||!_0x49a8a0?!0x1:_0x57a6c7['get'](_0x4e4eea)[_0x2d8c5e(0x1ad)](_0x25a2f0[_0x2d8c5e(0x49e)](),_0x21fa40[_0x2d8c5e(0x9bd)],{'pageId':_0x49a8a0[_0x2d8c5e(0x8ee)],'objectId':_0x1f7938,'axis':_0x2e9c32['axis']},_0x330d23())[_0x2d8c5e(0x61c)](_0x4a9d78=>_0x4a9d78[_0x2d8c5e(0x309)]);}},_0x23ae61={'id':'pdf.operation.toggle-view','type':_0x2894d3['CommandType'][_0x59d572(0xaa7)],'handler':(_0x314668,_0x1b24e6)=>{const _0x5373fc=_0x59d572;let _0x145151=_0x1551bd(_0x314668[_0x5373fc(0x2ad)](_0x2894d3[_0x5373fc(0x50a)]));return!_0x145151||!_0x1b24e6?!0x1:!!_0x314668[_0x5373fc(0x2ad)](_0x289aee)[_0x5373fc(0x46b)](_0x145151[_0x5373fc(0x49e)](),_0x1a9cfe=>{const _0xc1f7a3=_0x5373fc;var _0x1732b2;let _0x325796=(_0x1732b2=_0x1a9cfe[_0xc1f7a3(0x947)])==null?{'showAnnotations':!0x0,'showBounds':!0x1,'showRaw':!0x1}:_0x1732b2;return{..._0x1a9cfe,'view':{..._0x325796,[_0x1b24e6[_0xc1f7a3(0x585)]]:!_0x325796[_0x1b24e6['key']]}};});}},_0x2b45f2={'id':_0x59d572(0x595),'type':_0x2894d3[_0x59d572(0x46f)][_0x59d572(0xaa7)],'handler':(_0x9621f5,_0x3fda93)=>{const _0x25e847=_0x59d572;let _0x297044=_0x5238f6(_0x9621f5['get'](_0x2894d3[_0x25e847(0x50a)]),_0x9621f5[_0x25e847(0x2ad)](_0x289aee));return!_0x297044||!_0x3fda93?!0x1:_0x9621f5[_0x25e847(0x2ad)](_0x4e4eea)[_0x25e847(0x1ad)](_0x297044['model'][_0x25e847(0x49e)](),_0x21fa40['pdfReorderObjectCommand'],{'objectId':_0x297044[_0x25e847(0x826)],'pageId':_0x297044[_0x25e847(0x8ee)],'delta':_0x3fda93['delta']},_0x330d23())['then'](_0x4bef3c=>_0x4bef3c[_0x25e847(0x309)]);}},_0x9f6b45={'id':_0x59d572(0x511),'type':_0x2894d3['CommandType'][_0x59d572(0xaa7)],'handler':_0x483c0e=>{const _0x26aabd=_0x59d572;let _0x5c8243=_0x5238f6(_0x483c0e[_0x26aabd(0x2ad)](_0x2894d3[_0x26aabd(0x50a)]),_0x483c0e[_0x26aabd(0x2ad)](_0x289aee));return _0x5c8243?_0x483c0e[_0x26aabd(0x2ad)](_0x4e4eea)[_0x26aabd(0x1ad)](_0x5c8243[_0x26aabd(0x538)][_0x26aabd(0x49e)](),_0x21fa40[_0x26aabd(0x6cc)],{'objectIds':[_0x5c8243['objectId']],'pageId':_0x5c8243[_0x26aabd(0x8ee)]},_0x330d23())[_0x26aabd(0x61c)](_0x38c6b8=>_0x38c6b8[_0x26aabd(0x309)]):!0x1;}},_0x1d77d4=[_0xdc78b0,_0x443b32,_0x5d9c21,_0x1a39fe,_0x23ae61,_0x2b45f2,_0x9f6b45];function _0x1551bd(_0x30ca4c){const _0x1efc10=_0x59d572;var _0x1e30da;return(_0x1e30da=_0x30ca4c[_0x1efc10(0x561)](_0x2894d3[_0x1efc10(0x79c)]['UNIVER_PDF']))==null?null:_0x1e30da;}function _0x330d23(){const _0x291155=_0x59d572;return{'actorId':'pdf-ui','clientId':_0x291155(0x3f9)};}function _0x5238f6(_0x2f217a,_0x3937ca){const _0x1dfa4b=_0x59d572;var _0x8db04;let _0x2e6f3a=_0x1551bd(_0x2f217a),_0x760e97=_0x2e6f3a?_0x3937ca[_0x1dfa4b(0x178)](_0x2e6f3a[_0x1dfa4b(0x49e)]()):void 0x0,_0x2a944d=(_0x8db04=_0x760e97==null?void 0x0:_0x760e97['local'][_0x1dfa4b(0xb23)]['anchors'][_0x1dfa4b(0x816)](_0x360f76=>_0x360f76['id']===_0x760e97[_0x1dfa4b(0x828)][_0x1dfa4b(0xb23)][_0x1dfa4b(0x8cf)]))==null?_0x760e97==null?void 0x0:_0x760e97['local'][_0x1dfa4b(0xb23)][_0x1dfa4b(0x60c)][0x0]:_0x8db04,_0x510f42=_0x2a944d&&_0x1dfa4b(0x826)in _0x2a944d?_0x2a944d[_0x1dfa4b(0x826)]:void 0x0,_0x34f7aa=_0x510f42?_0x760e97==null?void 0x0:_0x760e97[_0x1dfa4b(0x33a)][_0x1dfa4b(0x24a)][_0x510f42]:void 0x0;return _0x2e6f3a&&_0x510f42&&_0x34f7aa?{'model':_0x2e6f3a,'objectId':_0x510f42,'pageId':_0x34f7aa['pageId']}:void 0x0;}let _0x2a5452={'editor':{'enabled':!0x0}};function _0x5866af({ref:_0x155a15,..._0x4f57b2}){const _0x3d7876=_0x59d572;let {icon:_0x212583,id:_0xd8cee3,className:_0x50b57d,extend:_0x20b0e3,..._0x197a0f}=_0x4f57b2,_0x3be079=(_0x3d7876(0x53f)+_0xd8cee3+'\x20'+(_0x50b57d||''))['trim'](),_0x4b0a36=(0x0,_0x558781[_0x3d7876(0x945)])('_'+_0x589dd3());return _0x2e8e87(_0x212583,''+_0xd8cee3,{'defIds':_0x212583['defIds'],'idSuffix':_0x4b0a36[_0x3d7876(0x2c3)]},{'ref':_0x155a15,'className':_0x3be079,..._0x197a0f},_0x20b0e3);}function _0x2e8e87(_0x1cd5c4,_0x36eccb,_0x3dcbc8,_0x1c678f,_0x5ddf9f){const _0x5ddb8b=_0x59d572;return(0x0,_0x558781['createElement'])(_0x1cd5c4[_0x5ddb8b(0xbc6)],{'key':_0x36eccb,..._0x20c777(_0x1cd5c4,_0x3dcbc8,_0x5ddf9f),..._0x1c678f},(_0xf3a94(_0x1cd5c4,_0x3dcbc8)[_0x5ddb8b(0x806)]||[])['map']((_0x53edc3,_0x15dc3a)=>_0x2e8e87(_0x53edc3,_0x36eccb+'-'+_0x1cd5c4[_0x5ddb8b(0xbc6)]+'-'+_0x15dc3a,_0x3dcbc8,void 0x0,_0x5ddf9f)));}function _0x20c777(_0x2d72c3,_0x3629db,_0x507fde){const _0x5c48d1=_0x59d572;let _0x159a9a={..._0x2d72c3[_0x5c48d1(0x7d9)]};_0x507fde!=null&&_0x507fde[_0x5c48d1(0x42b)]&&_0x159a9a['fill']===_0x5c48d1(0x42b)&&(_0x159a9a[_0x5c48d1(0x9ae)]=_0x507fde[_0x5c48d1(0x42b)]),_0x507fde!=null&&_0x507fde[_0x5c48d1(0x42b)]&&_0x159a9a['stroke']===_0x5c48d1(0x42b)&&(_0x159a9a[_0x5c48d1(0xa25)]=_0x507fde['colorChannel1']),_0x2d72c3[_0x5c48d1(0xbc6)]===_0x5c48d1(0x84b)&&_0x159a9a['id']&&(_0x159a9a['id']+=_0x3629db[_0x5c48d1(0xc03)]),Object[_0x5c48d1(0x8a2)](_0x159a9a)[_0x5c48d1(0xc9d)](([_0x5a7cbf,_0x592a26])=>{const _0x2cb927=_0x5c48d1;_0x5a7cbf===_0x2cb927(0x84b)&&typeof _0x592a26==_0x2cb927(0x221)&&(_0x159a9a[_0x5a7cbf]=_0x592a26[_0x2cb927(0xbf8)](/url\(#(.*)\)/,_0x2cb927(0x167)+_0x3629db['idSuffix']+')'));});let {defIds:_0x12319a}=_0x3629db;return!_0x12319a||_0x12319a[_0x5c48d1(0xba6)]===0x0?_0x159a9a:(_0x2d72c3[_0x5c48d1(0xbc6)]===_0x5c48d1(0x9d9)&&_0x159a9a[_0x5c48d1(0x836)]&&(_0x159a9a[_0x5c48d1(0x836)]+=_0x3629db[_0x5c48d1(0xc03)]),Object[_0x5c48d1(0x8a2)](_0x159a9a)[_0x5c48d1(0xc9d)](([_0x1b743d,_0x1faa79])=>{const _0x1b29e5=_0x5c48d1;typeof _0x1faa79==_0x1b29e5(0x221)&&(_0x159a9a[_0x1b743d]=_0x1faa79[_0x1b29e5(0xbf8)](/url\(#(.*)\)/,_0x1b29e5(0x167)+_0x3629db[_0x1b29e5(0xc03)]+')'));}),_0x159a9a);}function _0xf3a94(_0x328e54,_0x1a354e){const _0x1afe64=_0x59d572;var _0x13b0eb;let {defIds:_0x1d95ba}=_0x1a354e;return!_0x1d95ba||_0x1d95ba['length']===0x0?_0x328e54:_0x328e54['tag']===_0x1afe64(0xaa1)&&(_0x13b0eb=_0x328e54[_0x1afe64(0x806)])!=null&&_0x13b0eb['length']?{..._0x328e54,'children':_0x328e54[_0x1afe64(0x806)][_0x1afe64(0xb06)](_0x71f946=>typeof _0x71f946[_0x1afe64(0x7d9)]['id']==_0x1afe64(0x221)&&_0x1d95ba&&_0x1d95ba[_0x1afe64(0x8a8)](_0x71f946[_0x1afe64(0x7d9)]['id'])?{..._0x71f946,'attrs':{..._0x71f946[_0x1afe64(0x7d9)],'id':_0x71f946[_0x1afe64(0x7d9)]['id']+_0x1a354e[_0x1afe64(0xc03)]}}:_0x71f946)}:_0x328e54;}function _0x589dd3(){const _0x54fbac=_0x59d572;return Math[_0x54fbac(0x6cf)]()[_0x54fbac(0x23e)](0x24)[_0x54fbac(0xa94)](0x2,0x8);}_0x5866af[_0x59d572(0x4b3)]='UniverIcon';let _0x27b1a6={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':'1em','height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x74d),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':'M11.8097\x201.14783C12.1411\x201.14783\x2012.4097\x201.41646\x2012.4097\x201.74783V3.297H14.1541C14.4855\x203.297\x2014.7541\x203.56563\x2014.7541\x203.897C14.7541\x204.22837\x2014.4855\x204.497\x2014.1541\x204.497H12.4097V6.24167C12.4097\x206.57304\x2012.1411\x206.84167\x2011.8097\x206.84167C11.4783\x206.84167\x2011.2097\x206.57304\x2011.2097\x206.24167V4.497H9.6603C9.32893\x204.497\x209.0603\x204.22837\x209.0603\x203.897C9.0603\x203.56563\x209.32893\x203.297\x209.6603\x203.297H11.2097V1.74783C11.2097\x201.41646\x2011.4783\x201.14783\x2011.8097\x201.14783Z'}}]},_0x1e9f0e=(0x0,_0x558781['forwardRef'])(function(_0x4d4269,_0x131fa8){const _0x3fcdac=_0x59d572;return(0x0,_0x558781[_0x3fcdac(0xc7e)])(_0x5866af,Object[_0x3fcdac(0x4ac)]({},_0x4d4269,{'id':_0x3fcdac(0xa53),'ref':_0x131fa8,'icon':_0x27b1a6}));});_0x1e9f0e[_0x59d572(0x4b3)]='AddImageIcon';let _0x2cc432={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x251)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x35f)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x143)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x63b)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x3e3)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x2d0)}}]},_0x3a385c=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x29fe25,_0x491a9f){const _0x2da0c9=_0x59d572;return(0x0,_0x558781[_0x2da0c9(0xc7e)])(_0x5866af,Object[_0x2da0c9(0x4ac)]({},_0x29fe25,{'id':_0x2da0c9(0x78f),'ref':_0x491a9f,'icon':_0x2cc432}));});_0x3a385c['displayName']='AddNoteIcon';let _0x2e6845={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x59d572(0x339),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x59d572(0x661),'fillRule':_0x59d572(0x128),'clipRule':'evenodd'}}]},_0xff6248=(0x0,_0x558781['forwardRef'])(function(_0x1ae7e3,_0x60faf2){const _0x61c34f=_0x59d572;return(0x0,_0x558781[_0x61c34f(0xc7e)])(_0x5866af,Object['assign']({},_0x1ae7e3,{'id':_0x61c34f(0x13e),'ref':_0x60faf2,'icon':_0x2e6845}));});_0xff6248['displayName']=_0x59d572(0x5bd);let _0x565bf6={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0x339),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x645),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x39b7fb=(0x0,_0x558781['forwardRef'])(function(_0x18899b,_0x305fd7){const _0x4b5ef9=_0x59d572;return(0x0,_0x558781[_0x4b5ef9(0xc7e)])(_0x5866af,Object[_0x4b5ef9(0x4ac)]({},_0x18899b,{'id':_0x4b5ef9(0xa46),'ref':_0x305fd7,'icon':_0x565bf6}));});_0x39b7fb[_0x59d572(0x4b3)]='ArrowUpIcon';let _0x299896={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':'M4.65791\x201.30005C3.77355\x201.30005\x203.05664\x202.01696\x203.05664\x202.90132V12.8588C3.05664\x2013.8755\x203.88086\x2014.6998\x204.89759\x2014.6998H9.1016C11.2233\x2014.6998\x2012.9433\x2012.9798\x2012.9433\x2010.8581C12.9433\x209.13925\x2011.8145\x207.68407\x2010.2578\x207.1934C10.8806\x206.56856\x2011.2655\x205.70659\x2011.2655\x204.75472C11.2655\x202.84676\x209.71883\x201.30005\x207.81087\x201.30005H4.65791ZM4.25664\x202.90132C4.25664\x202.6797\x204.4363\x202.50005\x204.65791\x202.50005H7.81087C9.05609\x202.50005\x2010.0655\x203.5095\x2010.0655\x204.75472C10.0655\x205.99993\x209.05609\x207.00938\x207.81087\x207.00938H4.25664V2.90132ZM4.25664\x2012.8588V8.21636H9.1016C10.5606\x208.21636\x2011.7433\x209.39909\x2011.7433\x2010.8581C11.7433\x2012.317\x2010.5606\x2013.4998\x209.1016\x2013.4998H4.89759C4.5436\x2013.4998\x204.25664\x2013.2128\x204.25664\x2012.8588Z','fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x1845ce=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x1568f9,_0x16f442){const _0x5c4983=_0x59d572;return(0x0,_0x558781[_0x5c4983(0xc7e)])(_0x5866af,Object[_0x5c4983(0x4ac)]({},_0x1568f9,{'id':_0x5c4983(0x456),'ref':_0x16f442,'icon':_0x299896}));});_0x1845ce[_0x59d572(0x4b3)]=_0x59d572(0xb28);let _0xffa913={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':'0\x200\x2017\x2017','width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x67e),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0xafb)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':'M8.73904\x206.78345C9.12366\x206.78345\x209.43546\x207.10742\x209.43546\x207.50706V8.41159C9.43546\x208.81123\x209.12366\x209.13521\x208.73904\x209.13521C8.35441\x209.13521\x208.04261\x208.81123\x208.04261\x208.41159V7.50706C8.04261\x207.10742\x208.35441\x206.78345\x208.73904\x206.78345Z'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x929)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0xad0),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x2798fb=(0x0,_0x558781['forwardRef'])(function(_0x4b603c,_0x35e446){const _0x39c4d6=_0x59d572;return(0x0,_0x558781[_0x39c4d6(0xc7e)])(_0x5866af,Object[_0x39c4d6(0x4ac)]({},_0x4b603c,{'id':_0x39c4d6(0x3b7),'ref':_0x35e446,'icon':_0xffa913}));});_0x2798fb[_0x59d572(0x4b3)]=_0x59d572(0x429);let _0xfc02cd={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':'1em','height':_0x59d572(0xae4)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x59d572(0x2d6),'fillRule':'evenodd','clipRule':_0x59d572(0x128)}}]},_0x463179=(0x0,_0x558781['forwardRef'])(function(_0x5ecd32,_0x24e4c5){const _0x300d90=_0x59d572;return(0x0,_0x558781[_0x300d90(0xc7e)])(_0x5866af,Object['assign']({},_0x5ecd32,{'id':_0x300d90(0x2f1),'ref':_0x24e4c5,'icon':_0xfc02cd}));});_0x463179[_0x59d572(0x4b3)]=_0x59d572(0x8b0);let _0x33e372={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':'1em','height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x387)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x3f7)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x47f)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0xaa8),'fillRule':'evenodd','clipRule':'evenodd'}}]},_0x38a263=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x23aa05,_0x446d72){const _0x4c7f17=_0x59d572;return(0x0,_0x558781[_0x4c7f17(0xc7e)])(_0x5866af,Object[_0x4c7f17(0x4ac)]({},_0x23aa05,{'id':_0x4c7f17(0x411),'ref':_0x446d72,'icon':_0x33e372}));});_0x38a263[_0x59d572(0x4b3)]='DeleteIcon';let _0x241c86={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':'0\x200\x2016\x2016','width':'1em','height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0xa71)}},{'tag':'path','attrs':{'fill':_0x59d572(0x19a),'d':'M4.17734\x203.13985C4.17734\x202.77258\x204.47507\x202.47485\x204.84234\x202.47485H6.94754C7.31481\x202.47485\x207.61254\x202.77258\x207.61254\x203.13985C7.61254\x203.50712\x207.31481\x203.80485\x206.94754\x203.80485H4.84234C4.47507\x203.80485\x204.17734\x203.50712\x204.17734\x203.13985Z'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':'M8.38775\x203.13985C8.38775\x202.77258\x208.68548\x202.47485\x209.05275\x202.47485H11.158C11.5252\x202.47485\x2011.823\x202.77258\x2011.823\x203.13985C11.823\x203.50712\x2011.5252\x203.80485\x2011.158\x203.80485H9.05275C8.68548\x203.80485\x208.38775\x203.50712\x208.38775\x203.13985Z'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x21c)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x35c)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x152)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0xb39)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x165)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x22a)}}]},_0x168564=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x37f8e9,_0x5274c6){const _0x39e81f=_0x59d572;return(0x0,_0x558781[_0x39e81f(0xc7e)])(_0x5866af,Object['assign']({},_0x37f8e9,{'id':_0x39e81f(0x7ee),'ref':_0x5274c6,'icon':_0x241c86}));});_0x168564['displayName']=_0x59d572(0x96d);let _0x307873={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x59d572(0xa61),'viewBox':'0\x200\x2016\x2016','width':'1em','height':'1em'},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x31e),'fillRule':'evenodd','clipRule':'evenodd'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0xca6),'fillRule':_0x59d572(0x128),'clipRule':'evenodd'}}]},_0x27eb81=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x2104b3,_0x592a56){const _0x6e5c62=_0x59d572;return(0x0,_0x558781[_0x6e5c62(0xc7e)])(_0x5866af,Object[_0x6e5c62(0x4ac)]({},_0x2104b3,{'id':_0x6e5c62(0x96b),'ref':_0x592a56,'icon':_0x307873}));});_0x27eb81[_0x59d572(0x4b3)]=_0x59d572(0x755);let _0xa5c73a={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x6d5),'strokeLinecap':'round','strokeLinejoin':'round','strokeWidth':1.3}},{'tag':'path','attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x490),'strokeLinecap':_0x59d572(0x157),'strokeLinejoin':'round','strokeWidth':1.3}},{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x5dc),'strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0xc7a),'strokeLinecap':'round','strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x4a6),'strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}},{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0xc7c),'strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}}]},_0x5655a7=(0x0,_0x558781[_0x59d572(0x488)])(function(_0xac5fc3,_0x4edc3d){const _0x312c58=_0x59d572;return(0x0,_0x558781[_0x312c58(0xc7e)])(_0x5866af,Object[_0x312c58(0x4ac)]({},_0xac5fc3,{'id':_0x312c58(0x6f2),'ref':_0x4edc3d,'icon':_0xa5c73a}));});_0x5655a7[_0x59d572(0x4b3)]=_0x59d572(0x690);let _0x1654b3={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0xb75),'strokeLinecap':'round','strokeLinejoin':_0x59d572(0x157),'strokeWidth':1.3}},{'tag':'path','attrs':{'stroke':'currentColor','d':'M3.3\x2013.4L8\x209.8L12.7\x2013.4H3.3Z','strokeLinecap':_0x59d572(0x157),'strokeLinejoin':_0x59d572(0x157),'strokeWidth':1.3}},{'tag':_0x59d572(0x36c),'attrs':{'stroke':'currentColor','d':_0x59d572(0x61f),'strokeLinecap':'round','strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x59d572(0x19a),'d':'M6.2\x208H7.8','strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x5f6),'strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}},{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':'M14\x208H14.2','strokeLinecap':_0x59d572(0x157),'strokeWidth':1.2}}]},_0x329f39=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x24436c,_0x3ffe6e){const _0x5ed5f1=_0x59d572;return(0x0,_0x558781[_0x5ed5f1(0xc7e)])(_0x5866af,Object['assign']({},_0x24436c,{'id':_0x5ed5f1(0x67f),'ref':_0x3ffe6e,'icon':_0x1654b3}));});_0x329f39[_0x59d572(0x4b3)]='FlipVerticalIcon';let _0x1d2397={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x847)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0xb83)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x234)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':'M3.33315\x2012.9004C3.00178\x2012.9004\x202.73315\x2013.169\x202.73315\x2013.5004C2.73315\x2013.8318\x203.00178\x2014.1004\x203.33315\x2014.1004H12.6665C12.9979\x2014.1004\x2013.2665\x2013.8318\x2013.2665\x2013.5004C13.2665\x2013.169\x2012.9979\x2012.9004\x2012.6665\x2012.9004H3.33315Z'}}]},_0x33c63b=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x155533,_0x1a6994){const _0x103cd5=_0x59d572;return(0x0,_0x558781[_0x103cd5(0xc7e)])(_0x5866af,Object['assign']({},_0x155533,{'id':_0x103cd5(0x363),'ref':_0x1a6994,'icon':_0x1d2397}));});_0x33c63b[_0x59d572(0x4b3)]=_0x59d572(0xae3);let _0x3f0ea6={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x927)}}]},_0x37bb06=(0x0,_0x558781['forwardRef'])(function(_0x384a65,_0x24baa9){const _0x17346b=_0x59d572;return(0x0,_0x558781[_0x17346b(0xc7e)])(_0x5866af,Object[_0x17346b(0x4ac)]({},_0x384a65,{'id':_0x17346b(0x455),'ref':_0x24baa9,'icon':_0x3f0ea6}));});_0x37bb06[_0x59d572(0x4b3)]=_0x59d572(0x228);let _0x42f9ce={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0xb55),'width':'1em','height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x847)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x9fd)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x234)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x958)}}]},_0xa20d1d=(0x0,_0x558781['forwardRef'])(function(_0x274392,_0x1b5783){const _0x32796a=_0x59d572;return(0x0,_0x558781[_0x32796a(0xc7e)])(_0x5866af,Object[_0x32796a(0x4ac)]({},_0x274392,{'id':_0x32796a(0x32b),'ref':_0x1b5783,'icon':_0x42f9ce}));});_0xa20d1d[_0x59d572(0x4b3)]=_0x59d572(0x6c8);let _0x4d69f5={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':'1em'},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x713),'fillRule':_0x59d572(0x128),'clipRule':'evenodd'}}]},_0x17fb5f=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x58a3b8,_0x49636f){const _0x5ec11c=_0x59d572;return(0x0,_0x558781[_0x5ec11c(0xc7e)])(_0x5866af,Object['assign']({},_0x58a3b8,{'id':_0x5ec11c(0x8a4),'ref':_0x49636f,'icon':_0x4d69f5}));});_0x17fb5f[_0x59d572(0x4b3)]=_0x59d572(0x2bc);let _0x31cbac={'tag':'svg','attrs':{'xmlns':_0x59d572(0x3e2),'fill':'none','viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':'path','attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x847)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':'M4.66665\x205.56641C4.33528\x205.56641\x204.06665\x205.83504\x204.06665\x206.16641C4.06665\x206.49778\x204.33528\x206.76641\x204.66665\x206.76641H14C14.3314\x206.76641\x2014.6\x206.49778\x2014.6\x206.16641C14.6\x205.83504\x2014.3314\x205.56641\x2014\x205.56641H4.66665Z'}},{'tag':'path','attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x234)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x7ae)}}]},_0x560a25=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x240c92,_0x1590d4){const _0x58b840=_0x59d572;return(0x0,_0x558781[_0x58b840(0xc7e)])(_0x5866af,Object[_0x58b840(0x4ac)]({},_0x240c92,{'id':'right-justifying-icon','ref':_0x1590d4,'icon':_0x31cbac}));});_0x560a25['displayName']=_0x59d572(0x934);let _0x45f508={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb84),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'stroke':_0x59d572(0x19a),'d':_0x59d572(0x9b8),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x4fceb6=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x42b502,_0xdbf080){const _0x15b9b7=_0x59d572;return(0x0,_0x558781[_0x15b9b7(0xc7e)])(_0x5866af,Object[_0x15b9b7(0x4ac)]({},_0x42b502,{'id':_0x15b9b7(0x7eb),'ref':_0xdbf080,'icon':_0x45f508}));});_0x4fceb6[_0x59d572(0x4b3)]=_0x59d572(0x702);let _0x31601f={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x52c),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x5748db=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x49cc41,_0x10059c){const _0x1f2f7b=_0x59d572;return(0x0,_0x558781[_0x1f2f7b(0xc7e)])(_0x5866af,Object[_0x1f2f7b(0x4ac)]({},_0x49cc41,{'id':_0x1f2f7b(0x17f),'ref':_0x10059c,'icon':_0x31601f}));});_0x5748db[_0x59d572(0x4b3)]=_0x59d572(0xad8);let _0x4cfdd1={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0x630),'width':_0x59d572(0xae4),'height':'1em'},'children':[{'tag':'g','attrs':{'fill':'currentColor','clipPath':_0x59d572(0xb1c)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'d':_0x59d572(0x25c)}},{'tag':_0x59d572(0x36c),'attrs':{'d':_0x59d572(0x240)}}]},{'tag':_0x59d572(0xaa1),'attrs':{},'children':[{'tag':_0x59d572(0x546),'attrs':{'id':_0x59d572(0x360)},'children':[{'tag':'path','attrs':{'fill':_0x59d572(0x2e5),'d':_0x59d572(0x61b),'transform':_0x59d572(0x70f)}}]}]}],'defIds':['text-icon_clip0_1293_26']},_0x169bee=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x12ff77,_0x34cd48){const _0x314170=_0x59d572;return(0x0,_0x558781[_0x314170(0xc7e)])(_0x5866af,Object[_0x314170(0x4ac)]({},_0x12ff77,{'id':_0x314170(0x43a),'ref':_0x34cd48,'icon':_0x4cfdd1}));});_0x169bee['displayName']=_0x59d572(0xb65);let _0x76ede1={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0xc3f)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x9bf)}}]},_0x344e95=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x5ddf8c,_0x523236){const _0x417306=_0x59d572;return(0x0,_0x558781['createElement'])(_0x5866af,Object[_0x417306(0x4ac)]({},_0x5ddf8c,{'id':_0x417306(0xb9e),'ref':_0x523236,'icon':_0x76ede1}));});_0x344e95[_0x59d572(0x4b3)]=_0x59d572(0x9e0);let _0x8fbb0e={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0x630),'width':_0x59d572(0xae4),'height':_0x59d572(0xae4)},'children':[{'tag':'path','attrs':{'fill':_0x59d572(0x42b),'d':'M1.98682\x2013.4992C1.98682\x2012.5603\x202.74793\x2011.7992\x203.68682\x2011.7992H14.2868C15.2257\x2011.7992\x2015.9868\x2012.5603\x2015.9868\x2013.4992V13.4992C15.9868\x2014.4381\x2015.2257\x2015.1992\x2014.2868\x2015.1992H3.68682C2.74793\x2015.1992\x201.98682\x2014.4381\x201.98682\x2013.4992V13.4992Z'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x4a5),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x472e9e=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x3a0b26,_0x494980){const _0x165b7a=_0x59d572;return(0x0,_0x558781[_0x165b7a(0xc7e)])(_0x5866af,Object[_0x165b7a(0x4ac)]({},_0x3a0b26,{'id':_0x165b7a(0xb08),'ref':_0x494980,'icon':_0x8fbb0e}));});_0x472e9e['displayName']='FontColorDoubleIcon';let _0x2d011d={'tag':_0x59d572(0xa7b),'attrs':{'xmlns':_0x59d572(0x3e2),'fill':_0x59d572(0xa61),'viewBox':_0x59d572(0xb55),'width':_0x59d572(0xae4),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x59d572(0x19a),'d':'M4.96372\x202.59116C5.19803\x202.35684\x205.19803\x201.97695\x204.96372\x201.74263C4.7294\x201.50832\x204.3495\x201.50832\x204.11519\x201.74263L2.53945\x203.31837L1.96372\x202.74263C1.7294\x202.50832\x201.3495\x202.50832\x201.11519\x202.74263C0.880874\x202.97695\x200.880874\x203.35684\x201.11519\x203.59116L2.11519\x204.59116C2.3495\x204.82547\x202.7294\x204.82547\x202.96372\x204.59116L4.96372\x202.59116Z'}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0x303)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0xc66)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x79e)}},{'tag':'path','attrs':{'fill':_0x59d572(0x19a),'d':_0x59d572(0xa38),'fillRule':'evenodd','clipRule':_0x59d572(0x128)}},{'tag':_0x59d572(0x36c),'attrs':{'fill':'currentColor','d':_0x59d572(0x596),'fillRule':_0x59d572(0x128),'clipRule':_0x59d572(0x128)}}]},_0x394b1f=(0x0,_0x558781[_0x59d572(0x488)])(function(_0x4e6a2c,_0x81f711){const _0x33a4cd=_0x59d572;return(0x0,_0x558781[_0x33a4cd(0xc7e)])(_0x5866af,Object['assign']({},_0x4e6a2c,{'id':_0x33a4cd(0x22b),'ref':_0x81f711,'icon':_0x2d011d}));});_0x394b1f['displayName']='TodoListDoubleIcon';let _0x11e715=_0x59d572(0x19f);function _0x444489(_0x16308b){const _0x1c2c78=_0x59d572;return _0x5403a4(_0x558195(_0x5d9c21['id'],'ShortcutIcon',_0x1c2c78(0x52b),{'mode':_0x21fa40['PdfEditorToolMode'][_0x1c2c78(0x311)]}),_0x16308b,_0xd0da92=>(_0xd0da92==null?void 0x0:_0xd0da92[_0x1c2c78(0x828)]['mode'])===_0x21fa40[_0x1c2c78(0x62b)][_0x1c2c78(0x311)]);}function _0x3885d5(_0x2672f6){const _0x1376f8=_0x59d572;return _0x5403a4(_0x558195(_0x1376f8(0x16d),'TextIcon',_0x1376f8(0x1e1),{'mode':_0x21fa40[_0x1376f8(0x62b)]['TEXT']},_0x5d9c21['id']),_0x2672f6,_0x27d547=>(_0x27d547==null?void 0x0:_0x27d547[_0x1376f8(0x828)]['mode'])===_0x21fa40['PdfEditorToolMode'][_0x1376f8(0x97d)]);}function _0x5672da(_0x25b745){const _0x567de2=_0x59d572;return _0x56b921(_0x558195('pdf.menu.flip.horizontal',_0x567de2(0x690),_0x567de2(0x8e2),{'axis':'horizontal'},_0x1a39fe['id']),_0x25b745);}function _0x560a96(_0x43c763){const _0x5dcb20=_0x59d572;return _0x56b921(_0x558195(_0x5dcb20(0x71f),_0x5dcb20(0xae9),_0x5dcb20(0x32d),{'axis':_0x5dcb20(0x951)},_0x1a39fe['id']),_0x43c763);}function _0x20c05d(_0x1eb6c0){const _0x550960=_0x59d572;return _0x5403a4(_0x558195(_0x550960(0x4d4),_0x550960(0x429),_0x550960(0xb2e),{'key':_0x550960(0xbff)},_0x23ae61['id']),_0x1eb6c0,_0x48d35c=>{const _0x18dfe8=_0x550960;var _0x5c4e54,_0x3826da;return(_0x5c4e54=_0x48d35c==null||(_0x3826da=_0x48d35c[_0x18dfe8(0x75f)][_0x18dfe8(0x947)])==null?void 0x0:_0x3826da['showAnnotations'])==null||_0x5c4e54;});}function _0x9f98f9(_0x17c043){const _0x4028ea=_0x59d572;return _0x5403a4(_0x558195(_0x4028ea(0x238),'ShortcutIcon',_0x4028ea(0x3b5),{'key':'showBounds'},_0x23ae61['id']),_0x17c043,_0x315a7d=>{const _0x424278=_0x4028ea;var _0x31ae21,_0x5ea166;return(_0x31ae21=_0x315a7d==null||(_0x5ea166=_0x315a7d[_0x424278(0x75f)]['view'])==null?void 0x0:_0x5ea166[_0x424278(0x2a7)])!=null&&_0x31ae21;});}function _0x9890dc(_0x14ffa2){const _0x31b418=_0x59d572;return _0x5403a4(_0x558195('pdf.menu.view.raw',_0x31b418(0x702),_0x31b418(0x148),{'key':_0x31b418(0x2b4)},_0x23ae61['id']),_0x14ffa2,_0x3a9d40=>{const _0x1f140e=_0x31b418;var _0x11dec2,_0x29bf58;return(_0x11dec2=_0x3a9d40==null||(_0x29bf58=_0x3a9d40['ephemeral'][_0x1f140e(0x947)])==null?void 0x0:_0x29bf58[_0x1f140e(0x2b4)])!=null&&_0x11dec2;});}function _0x4bce30(){const _0x1a9f83=_0x59d572;return{'id':_0x1a9f83(0x7bc),'commandId':_0x21633b['id'],'type':_0x480239[_0x1a9f83(0x591)]['BUTTON'],'icon':_0x1a9f83(0xb65),'tooltip':_0x1a9f83(0x68b)};}function _0x5c115c(){const _0x3e695f=_0x59d572;return{'id':_0x3e695f(0x5f2),'commandId':_0x4a4ac1['id'],'type':_0x480239['MenuItemType'][_0x3e695f(0x7ac)],'icon':'LeftJustifyingIcon','tooltip':_0x3e695f(0x1b4)};}function _0x4584ea(){const _0x2dac22=_0x59d572;return{'id':_0x2dac22(0x6e8),'commandId':_0x5cec20['id'],'type':_0x480239[_0x2dac22(0x591)][_0x2dac22(0x7ac)],'icon':'AddImageIcon','tooltip':_0x2dac22(0x531)};}function _0x3b0f09(){const _0x4bb148=_0x59d572;return{'id':_0x4bb148(0x8ff),'commandId':_0x4e5f47['id'],'type':_0x480239[_0x4bb148(0x591)][_0x4bb148(0x7ac)],'icon':'DividerIcon','tooltip':_0x4bb148(0x407)};}function _0x7a8163(){const _0x5afb81=_0x59d572;return{'id':'pdf.menu.insert.table','type':_0x480239[_0x5afb81(0x591)][_0x5afb81(0x2b0)],'icon':_0x5afb81(0xad8),'tooltip':_0x5afb81(0xa8c),'slot':!0x0,'selections':[{'label':{'name':_0x11e715,'hoverable':!0x1,'selectable':!0x1}}]};}let _0x5b87e3=[{'label':_0x59d572(0x7bd),'value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x5ee)]},{'label':_0x59d572(0xc88),'value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x442)]},{'label':_0x59d572(0xc36),'value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0xc4a)]},{'label':'pdfs-ui.ribbon.listPresets.diamond','value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x45a)]},{'label':'pdfs-ui.ribbon.listPresets.check','value':_0x21fa40['PdfListPresetId'][_0x59d572(0x1d0)]},{'label':_0x59d572(0x68c),'value':_0x21fa40['PdfListPresetId']['UNORDERED_ARROW']},{'label':'pdfs-ui.ribbon.listPresets.decimal','value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x77a)]},{'label':_0x59d572(0x2a4),'value':_0x21fa40['PdfListPresetId'][_0x59d572(0x9c1)]},{'label':'pdfs-ui.ribbon.listPresets.decimalNested','value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x31f)]},{'label':_0x59d572(0x6d7),'value':_0x21fa40[_0x59d572(0x750)][_0x59d572(0x8f6)]},{'label':_0x59d572(0x652),'value':_0x21fa40[_0x59d572(0x750)]['ORDERED_NUMBER_ALPHA']},{'label':'pdfs-ui.ribbon.listPresets.leadingZero','value':_0x21fa40['PdfListPresetId'][_0x59d572(0x1cd)]}];function _0x3bff34(){const _0x1f7a17=_0x59d572;return{'id':_0x1f7a17(0x725),'type':_0x480239['MenuItemType'][_0x1f7a17(0x2b0)],'icon':_0x1f7a17(0x28c),'tooltip':_0x1f7a17(0xa11),'selectionsCommandId':_0x44c0ee['id'],'selections':_0x5b87e3};}function _0x1c8ff9(){const _0x27052c=_0x59d572;return{'id':_0xf9f9bc['id'],'commandId':_0xf9f9bc['id'],'type':_0x480239['MenuItemType'][_0x27052c(0x7ac)],'icon':'AddNoteIcon','tooltip':_0x27052c(0xa50)};}function _0x558195(_0x245bd9,_0x4ec1a7,_0x3be2d0,_0x30a5ca,_0x184082=_0x245bd9){const _0x4003b5=_0x59d572;return{'id':_0x245bd9,'commandId':_0x184082,'type':_0x480239[_0x4003b5(0x591)][_0x4003b5(0x7ac)],'icon':_0x4ec1a7,'tooltip':_0x3be2d0,..._0x30a5ca?{'params':_0x30a5ca}:{}};}function _0x5403a4(_0x30c3e4,_0x47e87c,_0x1353a0){const _0xb21703=_0x59d572;return _0x47e87c?{..._0x30c3e4,'activated$':_0x41b653(_0x47e87c)['pipe']((0x0,_0x3fc99d['map'])(_0x1353a0),(0x0,_0x3fc99d[_0xb21703(0x277)])())}:_0x30c3e4;}function _0x56b921(_0x41462d,_0x2a82a9){const _0x132594=_0x59d572;return _0x2a82a9?{..._0x41462d,'disabled$':_0x41b653(_0x2a82a9)[_0x132594(0x1a1)]((0x0,_0x3fc99d['map'])(_0x143fbc=>!_0x4cdf09(_0x143fbc)),(0x0,_0x3fc99d['distinctUntilChanged'])())}:_0x41462d;}function _0x41b653(_0x578243){const _0x3696e3=_0x59d572;let _0x54cc4b=_0x578243[_0x3696e3(0x2ad)](_0x2894d3[_0x3696e3(0x50a)]),_0x1744d7=_0x578243[_0x3696e3(0x2ad)](_0x289aee);return _0x1744d7['changed$'][_0x3696e3(0x1a1)]((0x0,_0x3fc99d[_0x3696e3(0xbd2)])(void 0x0),(0x0,_0x3fc99d[_0x3696e3(0xb06)])(()=>{const _0x28f938=_0x3696e3;let _0x47f724=_0x54cc4b[_0x28f938(0x561)](_0x2894d3[_0x28f938(0x79c)][_0x28f938(0x25e)]);return _0x47f724?_0x1744d7[_0x28f938(0x178)](_0x47f724[_0x28f938(0x49e)]()):void 0x0;}));}function _0x4cdf09(_0x51b949){const _0x562139=_0x59d572;var _0x19f906;let _0x1d5894=(_0x19f906=_0x51b949==null?void 0x0:_0x51b949[_0x562139(0x828)][_0x562139(0xb23)][_0x562139(0x60c)]['find'](_0x1025e9=>_0x1025e9['id']===_0x51b949[_0x562139(0x828)][_0x562139(0xb23)][_0x562139(0x8cf)]))==null?_0x51b949==null?void 0x0:_0x51b949['local']['selection'][_0x562139(0x60c)][0x0]:_0x19f906,_0x1ec521=_0x1d5894&&_0x562139(0x826)in _0x1d5894?_0x1d5894[_0x562139(0x826)]:void 0x0;return!!(_0x1ec521&&_0x51b949!=null&&_0x51b949[_0x562139(0x33a)][_0x562139(0x24a)][_0x1ec521]);}function _0x570138(){const _0x375044=_0x59d572;var _0x7e5055,_0x5350b2;let _0x3886d1=(0x0,_0x480239[_0x375044(0xb03)])(_0x2894d3[_0x375044(0x727)]),_0x134167=(0x0,_0x480239['useDependency'])(_0x2894d3[_0x375044(0x3e8)]),[_0x1e48b2,_0x18333d]=(0x0,_0x558781[_0x375044(0x674)])(0x3),[_0xa87df1,_0x2c72a5]=(0x0,_0x558781[_0x375044(0x674)])(0x4),[_0x2ad1af,_0x522ba1]=(0x0,_0x558781[_0x375044(0x674)])(null),_0x4c5c34=(_0x7e5055=_0x2ad1af==null?void 0x0:_0x2ad1af[_0x375044(0x86a)])==null?_0x1e48b2:_0x7e5055,_0x106dd6=(_0x5350b2=_0x2ad1af==null?void 0x0:_0x2ad1af['columns'])==null?_0xa87df1:_0x5350b2,_0x2bd2ed=(_0x3ebdaa,_0x41c82d)=>_0x3886d1[_0x375044(0x860)](_0x34f394['id'],{'rows':_0x3ebdaa,'columns':_0x41c82d});return(0x0,_0x2cdc8e[_0x375044(0x139)])(_0x375044(0x638),{'className':_0x375044(0x388),'onClick':_0x3a37c9=>_0x3a37c9['stopPropagation'](),'onMouseDown':_0x46c27e=>_0x46c27e[_0x375044(0x48c)](),'onMouseLeave':()=>_0x522ba1(null),'children':[(0x0,_0x2cdc8e[_0x375044(0x965)])(_0x375044(0x624),{'className':'univer-grid\x20univer-gap-0.5','style':{'gridTemplateColumns':'repeat(10,\x20minmax(0,\x201fr))'},'children':Array[_0x375044(0x8c1)]({'length':0x8},(_0x132031,_0x447703)=>Array['from']({'length':0xa},(_0x679211,_0x1daa4f)=>{const _0x4a129e=_0x375044;let _0x527f95=_0x447703+0x1,_0x4b0fc1=_0x1daa4f+0x1,_0x1f954f=_0x527f95<=_0x4c5c34&&_0x4b0fc1<=_0x106dd6;return(0x0,_0x2cdc8e[_0x4a129e(0x965)])(_0x4c8ef3['Button'],{'type':'button','variant':_0x4a129e(0x975),'aria-label':_0x4b0fc1+_0x4a129e(0x6c6)+_0x527f95,'className':(0x0,_0x4c8ef3[_0x4a129e(0x715)])(_0x4a129e(0x1fa),_0x1f954f?_0x4a129e(0xae7):'univer-border-gray-200\x20univer-bg-gray-50\x20dark:!univer-border-gray-600\x20dark:!univer-bg-gray-800'),'onMouseEnter':()=>_0x522ba1({'rows':_0x527f95,'columns':_0x4b0fc1}),'onFocus':()=>_0x522ba1({'rows':_0x527f95,'columns':_0x4b0fc1}),'onClick':()=>void _0x2bd2ed(_0x527f95,_0x4b0fc1)},_0x527f95+':'+_0x4b0fc1);}))}),(0x0,_0x2cdc8e['jsxs'])(_0x375044(0x624),{'className':'univer-mt-2\x20univer-text-center\x20univer-text-sm\x20univer-font-medium','children':[_0x106dd6,'\x20×\x20',_0x4c5c34]}),(0x0,_0x2cdc8e[_0x375044(0x139)])(_0x375044(0x624),{'className':'univer-mt-2\x20univer-grid\x20univer-grid-cols-2\x20univer-gap-2\x20univer-border-0\x20univer-border-t\x20univer-border-solid\x20univer-border-gray-200\x20univer-pt-2\x20dark:!univer-border-gray-700','children':[(0x0,_0x2cdc8e[_0x375044(0x139)])(_0x375044(0x476),{'className':_0x375044(0xacc),'children':[(0x0,_0x2cdc8e[_0x375044(0x965)])(_0x375044(0xa12),{'children':_0x134167['t']('pdfs-ui.tableSizePicker.rows')}),(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3[_0x375044(0x9eb)],{'min':0x1,'max':0x32,'precision':0x0,'value':_0x1e48b2,'onChange':_0x3dd343=>_0x18333d(_0x50c166(_0x3dd343))})]}),(0x0,_0x2cdc8e[_0x375044(0x139)])(_0x375044(0x476),{'className':_0x375044(0xacc),'children':[(0x0,_0x2cdc8e['jsx'])(_0x375044(0xa12),{'children':_0x134167['t'](_0x375044(0x6de))}),(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3[_0x375044(0x9eb)],{'min':0x1,'max':0x32,'precision':0x0,'value':_0xa87df1,'onChange':_0x3b073b=>_0x2c72a5(_0x50c166(_0x3b073b))})]}),(0x0,_0x2cdc8e[_0x375044(0x965)])(_0x4c8ef3[_0x375044(0x12e)],{'className':_0x375044(0x72e),'variant':_0x375044(0xa85),'onClick':()=>void _0x2bd2ed(_0x1e48b2,_0xa87df1),'children':_0x134167['t']('pdfs-ui.tableSizePicker.insert')})]})]});}function _0x50c166(_0x283caa){const _0x41607c=_0x59d572;return Math[_0x41607c(0xb2a)](Math['max'](Math[_0x41607c(0x559)](_0x283caa==null?0x1:_0x283caa),0x1),0x32);}let _0x28131b=function(_0x3ed0b5){const _0x45219a=_0x59d572;return _0x3ed0b5['X']='x',_0x3ed0b5['Y']='y',_0x3ed0b5[_0x45219a(0xb7d)]=_0x45219a(0x65c),_0x3ed0b5[_0x45219a(0xc31)]=_0x45219a(0x1ae),_0x3ed0b5;}({});function _0x13cc2f(_0x3fc802,_0x20c674,_0x2f2fd2){const _0xefdc64=_0x59d572;let [_0x18a3d0,_0x52e8e0,_0x3cad3c,_0x46df2b]=_0x3fc802;if(![_0x18a3d0,_0x52e8e0,_0x3cad3c,_0x46df2b,_0x2f2fd2]['every'](Number[_0xefdc64(0x771)]))return[_0x18a3d0,_0x52e8e0,_0x3cad3c,_0x46df2b];let _0x3543e4=_0x3cad3c-_0x18a3d0,_0x35f9fb=_0x46df2b-_0x52e8e0,_0x2beab2=(0x0,_0x21fa40[_0xefdc64(0x14f)])(_0x2f2fd2);switch(_0x20c674){case'x':return[_0x2beab2,_0x52e8e0,_0x2beab2+_0x3543e4,_0x46df2b];case'y':return[_0x18a3d0,_0x2beab2,_0x3cad3c,_0x2beab2+_0x35f9fb];case'width':return[_0x18a3d0,_0x52e8e0,_0x18a3d0+(0x0,_0x21fa40[_0xefdc64(0x14f)])(Math['max'](0x1,_0x2f2fd2)),_0x46df2b];case _0xefdc64(0x1ae):return[_0x18a3d0,_0x52e8e0,_0x3cad3c,_0x52e8e0+(0x0,_0x21fa40['cssPxToEmu'])(Math[_0xefdc64(0x542)](0x1,_0x2f2fd2))];default:return[_0x18a3d0,_0x52e8e0,_0x3cad3c,_0x46df2b];}}let _0x3e493c=function(_0x216cd2){const _0x146ff2=_0x59d572;return _0x216cd2['ALIGN']=_0x146ff2(0x9da),_0x216cd2[_0x146ff2(0x191)]=_0x146ff2(0x5fd),_0x216cd2['INDENT']=_0x146ff2(0xc74),_0x216cd2[_0x146ff2(0xbea)]=_0x146ff2(0xc68),_0x216cd2[_0x146ff2(0x6a9)]=_0x146ff2(0x8fa),_0x216cd2[_0x146ff2(0x785)]='paragraphSpacingBefore',_0x216cd2[_0x146ff2(0x6dd)]=_0x146ff2(0x214),_0x216cd2;}({});function _0x488107(_0x542c13,_0x3ecd7a){const _0x4e7ffc=_0x59d572;var _0x14043b,_0x2aed49;let _0x4569c8=(_0x14043b=_0x542c13[_0x4e7ffc(0x430)]['overlayObjects'][_0x3ecd7a])==null?void 0x0:_0x14043b[_0x4e7ffc(0x961)];if(!_0x4569c8||_0x4569c8[_0x4e7ffc(0x2c1)]!==_0x21fa40[_0x4e7ffc(0x8bf)][_0x4e7ffc(0x1a5)]&&_0x4569c8[_0x4e7ffc(0x2c1)]!==_0x21fa40[_0x4e7ffc(0x8bf)]['TEXT_RUN'])return;let _0x3a793c=_0x542c13[_0x4e7ffc(0xb23)]['anchors'][_0x4e7ffc(0x816)](_0x30b609=>_0x30b609[_0x4e7ffc(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x4e7ffc(0xc6a)]&&'objectId'in _0x30b609&&_0x30b609[_0x4e7ffc(0x826)]===_0x3ecd7a);if((_0x3a793c==null?void 0x0:_0x3a793c[_0x4e7ffc(0x395)])===_0x21fa40[_0x4e7ffc(0x7f9)][_0x4e7ffc(0xc6a)]&&_0x3a793c[_0x4e7ffc(0x6b8)]&&_0x3a793c['runId']){var _0x555506;return(_0x555506=_0x542c13[_0x4e7ffc(0x430)]['overlayTextStories'][_0x3a793c[_0x4e7ffc(0x6b8)]])==null?void 0x0:_0x555506[_0x4e7ffc(0x416)][_0x3a793c[_0x4e7ffc(0x5d4)]];}let _0x328bbc=_0x4569c8[_0x4e7ffc(0x2c1)]===_0x21fa40[_0x4e7ffc(0x8bf)][_0x4e7ffc(0x1a5)]?(_0x2aed49=_0x4569c8['runs'])==null?[]:_0x2aed49:[_0x4569c8[_0x4e7ffc(0xaa9)]];if(!_0x3a793c||!(_0x4e7ffc(0x53a)in _0x3a793c))return _0x328bbc[0x0];let _0x2e450e=Math[_0x4e7ffc(0x542)](0x0,_0x3a793c[_0x4e7ffc(0x53a)][_0x4e7ffc(0x3c1)]),_0x2a589b=0x0;for(let [_0x3b688f,_0x2020e3]of _0x328bbc['entries']()){let _0x4d87b1=_0x2a589b+_0x2020e3[_0x4e7ffc(0x975)][_0x4e7ffc(0xba6)];if(_0x2e450e<_0x4d87b1||_0x3b688f===_0x328bbc[_0x4e7ffc(0xba6)]-0x1)return _0x2020e3;_0x2a589b=_0x4d87b1;}return _0x328bbc[0x0];}function _0x434c39(_0x136ec6,_0x3570be){const _0x4d18ca=_0x59d572;var _0x4c3571;let _0x436157=(_0x4c3571=_0x136ec6[_0x4d18ca(0x430)][_0x4d18ca(0x24a)][_0x3570be])==null?void 0x0:_0x4c3571[_0x4d18ca(0x961)];if(!_0x436157||_0x436157[_0x4d18ca(0x2c1)]!==_0x21fa40[_0x4d18ca(0x8bf)]['TEXT_BOX'])return;let _0x39d5c1=_0x136ec6[_0x4d18ca(0xb23)]['anchors'][_0x4d18ca(0x816)](_0x245c61=>_0x245c61[_0x4d18ca(0x395)]===_0x21fa40[_0x4d18ca(0x7f9)][_0x4d18ca(0xc6a)]&&_0x4d18ca(0x826)in _0x245c61&&_0x245c61[_0x4d18ca(0x826)]===_0x3570be),_0x125b86=_0x39d5c1&&_0x4d18ca(0x6b8)in _0x39d5c1&&_0x39d5c1[_0x4d18ca(0x6b8)]?_0x39d5c1[_0x4d18ca(0x6b8)]:_0x436157[_0x4d18ca(0x848)];if(!_0x125b86)return;let _0x1ab49b=_0x136ec6[_0x4d18ca(0x430)]['overlayTextStories'][_0x125b86];if(!_0x1ab49b)return;let _0x588780=_0x39d5c1&&_0x4d18ca(0x5d4)in _0x39d5c1?_0x39d5c1[_0x4d18ca(0x5d4)]:void 0x0,_0x59e629=_0x588780?_0x1ab49b[_0x4d18ca(0x878)][_0x4d18ca(0x816)](_0x13e81c=>_0x13e81c[_0x4d18ca(0xc0a)]['includes'](_0x588780)):_0x1ab49b[_0x4d18ca(0x878)][0x0];return _0x59e629?{'storyId':_0x125b86,'block':_0x59e629}:void 0x0;}function _0xb72c18(_0xbbc72e,_0x165d17){const _0x28098c=_0x59d572;var _0x226246,_0x16d0f6;let _0x50b599=(_0x226246=_0xbbc72e[_0x28098c(0x430)][_0x28098c(0x209)][_0x165d17])==null?void 0x0:_0x226246[_0x28098c(0x2f9)];if(_0x50b599&&_0x28098c(0xa25)in _0x50b599){var _0x3ac0c0;return(_0x3ac0c0=_0x50b599[_0x28098c(0xa25)])==null?void 0x0:_0x3ac0c0;}let _0x31445c=(_0x16d0f6=_0xbbc72e[_0x28098c(0x430)]['overlayObjects'][_0x165d17])==null?void 0x0:_0x16d0f6['object'];return(_0x31445c==null?void 0x0:_0x31445c[_0x28098c(0x2c1)])===_0x21fa40['PdfObjectType'][_0x28098c(0x655)]?_0x31445c[_0x28098c(0xa25)]:void 0x0;}function _0x335111(_0x5f4bf0){const _0x2af8ef=_0x59d572;let _0x4a1622=_0x5f4bf0[_0x2af8ef(0xb23)][_0x2af8ef(0x8cf)]?_0x5f4bf0['selection'][_0x2af8ef(0x60c)][_0x2af8ef(0x816)](_0x12c013=>_0x12c013['id']===_0x5f4bf0[_0x2af8ef(0xb23)][_0x2af8ef(0x8cf)]):void 0x0,_0x463051=_0x1e9975(_0x4a1622)?_0x4a1622:_0x5f4bf0[_0x2af8ef(0xb23)]['anchors'][_0x2af8ef(0x816)](_0x1e9975);if(!_0x463051||!('objectId'in _0x463051)||!_0x463051[_0x2af8ef(0x826)]||!(_0x2af8ef(0x7ea)in _0x463051)||!_0x463051[_0x2af8ef(0x7ea)])return;let _0x45e0e7=_0x5f4bf0['editState'][_0x2af8ef(0x24a)][_0x463051[_0x2af8ef(0x826)]];if(!_0x45e0e7||_0x45e0e7[_0x2af8ef(0x961)][_0x2af8ef(0x2c1)]!==_0x21fa40[_0x2af8ef(0x8bf)][_0x2af8ef(0x34a)])return;let _0x7b2f9a=_0x45e0e7[_0x2af8ef(0x961)],_0x4ed722=_0x7b2f9a[_0x2af8ef(0x7a2)][_0x2af8ef(0x816)](_0x1e2e19=>_0x1e2e19['id']===_0x463051['cellId']);if(!_0x4ed722)return;let _0x391db1=_0x5f4bf0[_0x2af8ef(0x430)][_0x2af8ef(0x5c0)][_0x4ed722[_0x2af8ef(0x7de)]];return{'tableId':_0x7b2f9a['id'],'cellId':_0x4ed722['id'],'pageId':_0x45e0e7[_0x2af8ef(0x8ee)],'table':_0x7b2f9a,'cell':_0x4ed722,'style':(0x0,_0x21fa40[_0x2af8ef(0xb90)])(_0x7b2f9a,_0x4ed722),'storyId':_0x4ed722[_0x2af8ef(0x7de)],'story':_0x391db1,'block':_0x391db1==null?void 0x0:_0x391db1[_0x2af8ef(0x878)][0x0]};}function _0x1e2bb9(_0x435685){const _0x5bf352=_0x59d572;let _0x33ec3e=_0x435685['selection'][_0x5bf352(0x8cf)]?_0x435685[_0x5bf352(0xb23)][_0x5bf352(0x60c)][_0x5bf352(0x816)](_0x416595=>_0x416595['id']===_0x435685[_0x5bf352(0xb23)]['primaryAnchorId']):void 0x0,_0x5d4935=_0x33ec3e&&_0x5bf352(0x826)in _0x33ec3e?_0x33ec3e:_0x435685['selection'][_0x5bf352(0x60c)][_0x5bf352(0x816)](_0x3f91d2=>_0x5bf352(0x826)in _0x3f91d2&&_0x3f91d2[_0x5bf352(0x826)]);if(!_0x5d4935||!(_0x5bf352(0x826)in _0x5d4935)||!_0x5d4935['objectId'])return;let _0x518a55=_0x435685['editState']['overlayObjects'][_0x5d4935['objectId']];if(!(!_0x518a55||_0x518a55[_0x5bf352(0x961)][_0x5bf352(0x2c1)]!==_0x21fa40['PdfObjectType'][_0x5bf352(0x34a)]))return{'tableId':_0x518a55[_0x5bf352(0x961)]['id'],'pageId':_0x518a55['pageId'],'table':_0x518a55[_0x5bf352(0x961)]};}function _0x5ded97(_0x22235b,_0x410e0a){const _0x1e59eb=_0x59d572;let _0x50550f=_0x1e2bb9(_0x22235b),_0x355ec6=_0x335111(_0x22235b);if(_0x355ec6){var _0x4b6aa3,_0x390da7;let _0x23a50b=(_0x4b6aa3=_0x355ec6[_0x1e59eb(0x2f9)][_0x1e59eb(0x9ae)])==null?void 0x0:_0x4b6aa3[_0x1e59eb(0x6aa)];return{'title':_0x410e0a['t'](_0x1e59eb(0xab4)),'sections':[_0x59a629(_0x355ec6[_0x1e59eb(0x4af)],_0x410e0a),_0x39efa6(_0x1e59eb(0x543),_0x410e0a['t']('pdfs-ui.inspector.sections.cell'),[_0x286210('cellBackground',_0x410e0a['t'](_0x1e59eb(0x5ac)),_0x1e59eb(0x6aa),typeof _0x23a50b==_0x1e59eb(0x221)?_0x23a50b:''),_0x286210(_0x1e59eb(0xbc5),_0x410e0a['t'](_0x1e59eb(0xb8a)),_0x1e59eb(0x8db),(_0x390da7=_0x355ec6[_0x1e59eb(0x2f9)]['verticalAlign'])==null?_0x21fa40[_0x1e59eb(0xc1f)][_0x1e59eb(0xa9f)]:_0x390da7)]),..._0x355ec6[_0x1e59eb(0x413)]?[_0x2e578a(_0x355ec6['block'],_0x410e0a)]:[]]};}let _0x22a4cb=(0x0,_0x21fa40[_0x1e59eb(0x959)])(_0x22235b);if(_0x50550f&&_0x22a4cb[_0x1e59eb(0x395)]===_0x1e59eb(0x961))return{'title':_0x410e0a['t']('pdfs-ui.ribbon.actions.table'),'sections':[_0x59a629(_0x50550f['table'],_0x410e0a),_0x23552d(_0x22a4cb['bbox'],_0x410e0a),_0x13ff6e(_0x410e0a)]};switch(_0x22a4cb[_0x1e59eb(0x395)]){case'text':{var _0x47de9b,_0x43757f,_0x51842c;let _0x361ced=_0x488107(_0x22235b,_0x22a4cb[_0x1e59eb(0x826)]),_0x41e0b8=_0x434c39(_0x22235b,_0x22a4cb[_0x1e59eb(0x826)]);return{'title':_0x410e0a['t'](_0x1e59eb(0x11a)),'sections':[_0x39efa6(_0x1e59eb(0x975),_0x410e0a['t']('pdfs-ui.inspector.sections.text'),[_0x286210('fontFamily',_0x410e0a['t'](_0x1e59eb(0x89f)),_0x1e59eb(0x975),(_0x47de9b=(_0x43757f=_0x361ced==null?void 0x0:_0x361ced[_0x1e59eb(0xb3b)])==null?_0x361ced==null?void 0x0:_0x361ced[_0x1e59eb(0x83d)]:_0x43757f)==null?'':_0x47de9b),_0x286210(_0x1e59eb(0x845),_0x410e0a['t'](_0x1e59eb(0x567)),_0x1e59eb(0x97e),(_0x51842c=_0x361ced==null?void 0x0:_0x361ced[_0x1e59eb(0x845)])==null?0xc:_0x51842c,'pt')]),..._0x41e0b8?[_0x2e578a(_0x41e0b8[_0x1e59eb(0x413)],_0x410e0a)]:[],_0x23552d(_0x22a4cb[_0x1e59eb(0xa01)],_0x410e0a),_0x13ff6e(_0x410e0a)]};}case _0x1e59eb(0xada):return{'title':_0x410e0a['t'](_0x1e59eb(0x265)),'sections':[_0x23552d(_0x22a4cb['bbox'],_0x410e0a),_0x39efa6(_0x1e59eb(0xada),_0x410e0a['t'](_0x1e59eb(0x4f0)),[],[_0x376e4e('replaceImage',_0x410e0a['t']('pdfs-ui.inspector.actions.replaceImage')),_0x376e4e(_0x1e59eb(0x659),_0x410e0a['t'](_0x1e59eb(0x8b6))),_0x376e4e('flipHorizontal',_0x410e0a['t'](_0x1e59eb(0x7db))),_0x376e4e(_0x1e59eb(0x666),_0x410e0a['t'](_0x1e59eb(0xb78)))]),_0x13ff6e(_0x410e0a)]};case _0x1e59eb(0x402):var _0x2e8692,_0x7c8533,_0x101e80;return{'title':_0x410e0a['t']('pdfs-ui.inspector.titles.formXObject'),'sections':[_0x23552d(_0x22a4cb[_0x1e59eb(0xa01)],_0x410e0a),_0x39efa6(_0x1e59eb(0x419),_0x410e0a['t'](_0x1e59eb(0x56a)),[_0x286210(_0x1e59eb(0x798),_0x410e0a['t'](_0x1e59eb(0xa2a)),_0x1e59eb(0x8c7),(_0x2e8692=_0x22a4cb[_0x1e59eb(0x798)])==null?'':_0x2e8692),_0x286210(_0x1e59eb(0x791),_0x410e0a['t'](_0x1e59eb(0x93f)),'readonly',(_0x7c8533=(_0x101e80=_0x22a4cb[_0x1e59eb(0x217)])==null?void 0x0:_0x101e80[_0x1e59eb(0xb26)](',\x20'))==null?'':_0x7c8533)]),_0x13ff6e(_0x410e0a)]};case _0x1e59eb(0xad5):var _0x315a08,_0x4a4229;return{'title':_0x410e0a['t']('pdfs-ui.inspector.titles.formField'),'sections':[_0x39efa6(_0x1e59eb(0xad5),_0x410e0a['t']('pdfs-ui.inspector.sections.formField'),[_0x286210(_0x1e59eb(0xa2e),_0x410e0a['t'](_0x1e59eb(0x71d)),_0x1e59eb(0x8c7),(_0x315a08=_0x22a4cb[_0x1e59eb(0xa2e)])==null?'':_0x315a08),_0x286210(_0x1e59eb(0x6e3),_0x410e0a['t'](_0x1e59eb(0x422)),_0x1e59eb(0x8c7),(_0x4a4229=_0x22a4cb['fieldType'])==null?'':_0x4a4229)])]};case _0x1e59eb(0x175):return{'title':_0x410e0a['t'](_0x1e59eb(0x829)),'sections':[_0x39efa6(_0x1e59eb(0x175),_0x410e0a['t'](_0x1e59eb(0xc05)),[_0x286210('pageId',_0x410e0a['t']('pdfs-ui.inspector.fields.pageId'),_0x1e59eb(0x8c7),_0x22a4cb['pageId'])],[_0x376e4e(_0x1e59eb(0x42a),_0x410e0a['t']('pdfs-ui.inspector.actions.addText')),_0x376e4e('pageGeometry',_0x410e0a['t'](_0x1e59eb(0xb2f))),_0x376e4e(_0x1e59eb(0x670),_0x410e0a['t']('pdfs-ui.inspector.actions.exportPatch'))])]};case'source':var _0xb1a3cb,_0xc75168,_0x13171c;return{'title':_0x410e0a['t'](_0x1e59eb(0x87d)),'sections':[_0x39efa6(_0x1e59eb(0x419),_0x410e0a['t'](_0x1e59eb(0x56a)),[_0x286210(_0x1e59eb(0x8ee),_0x410e0a['t'](_0x1e59eb(0x16c)),_0x1e59eb(0x8c7),(_0xb1a3cb=_0x22a4cb[_0x1e59eb(0x8ee)])==null?'':_0xb1a3cb),_0x286210('operators',_0x410e0a['t'](_0x1e59eb(0x376)),_0x1e59eb(0x8c7),(_0xc75168=(_0x13171c=_0x22a4cb[_0x1e59eb(0xa04)])==null?void 0x0:_0x13171c['join'](',\x20'))==null?'':_0xc75168)],[_0x376e4e(_0x1e59eb(0x670),_0x410e0a['t'](_0x1e59eb(0x781)))])]};case'object':if(_0x22a4cb[_0x1e59eb(0x8d3)]===_0x21fa40[_0x1e59eb(0x8bf)][_0x1e59eb(0x655)]){let _0x4931af=_0xb72c18(_0x22235b,_0x22a4cb[_0x1e59eb(0x826)]);return{'title':_0x410e0a['t'](_0x1e59eb(0x407)),'sections':[_0x39efa6(_0x1e59eb(0x36c),_0x410e0a['t']('pdfs-ui.ribbon.actions.divider'),[_0x286210(_0x1e59eb(0x9d4),_0x410e0a['t'](_0x1e59eb(0x407)),_0x1e59eb(0x6aa),typeof(_0x4931af==null?void 0x0:_0x4931af[_0x1e59eb(0x6aa)])==_0x1e59eb(0x221)?_0x4931af[_0x1e59eb(0x6aa)]:'')]),_0x23552d(_0x22a4cb[_0x1e59eb(0xa01)],_0x410e0a),_0x13ff6e(_0x410e0a)]};}return{'title':_0x410e0a['t'](_0x1e59eb(0xa93)),'sections':[_0x23552d(_0x22a4cb['bbox'],_0x410e0a),_0x13ff6e(_0x410e0a)]};default:return{'title':_0x410e0a['t'](_0x1e59eb(0xc91)),'sections':[_0x39efa6(_0x1e59eb(0xb09),_0x410e0a['t']('pdfs-ui.inspector.sections.document'),[_0x286210(_0x1e59eb(0x401),_0x410e0a['t'](_0x1e59eb(0x6b4)),'readonly',_0x22235b['documentId']),_0x286210(_0x1e59eb(0x7e0),_0x410e0a['t'](_0x1e59eb(0x2e3)),_0x1e59eb(0x8c7),_0x22235b[_0x1e59eb(0x430)][_0x1e59eb(0x7e0)])],[_0x376e4e('addText',_0x410e0a['t'](_0x1e59eb(0x5b7))),_0x376e4e('exportPatch',_0x410e0a['t']('pdfs-ui.inspector.actions.exportPatch'))])]};}}function _0x23552d(_0x18ebe7,_0x379414){const _0x3c5885=_0x59d572;return _0x39efa6(_0x3c5885(0x701),_0x379414['t'](_0x3c5885(0x1b2)),[_0x286210('x',_0x379414['t'](_0x3c5885(0x4e2)),'number',(0x0,_0x21fa40[_0x3c5885(0xb35)])(_0x18ebe7[0x0]),'px'),_0x286210('y',_0x379414['t'](_0x3c5885(0x315)),_0x3c5885(0x97e),(0x0,_0x21fa40['emuToCssPx'])(_0x18ebe7[0x1]),'px'),_0x286210(_0x3c5885(0x65c),_0x379414['t'](_0x3c5885(0xaa2)),_0x3c5885(0x97e),(0x0,_0x21fa40[_0x3c5885(0xb35)])(_0x18ebe7[0x2]-_0x18ebe7[0x0]),'px'),_0x286210(_0x3c5885(0x1ae),_0x379414['t'](_0x3c5885(0xc2a)),_0x3c5885(0x97e),(0x0,_0x21fa40[_0x3c5885(0xb35)])(_0x18ebe7[0x3]-_0x18ebe7[0x1]),'px')]);}function _0x1e9975(_0x32112b){const _0x13de59=_0x59d572;return!!(_0x32112b&&(_0x32112b[_0x13de59(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x13de59(0xb64)]||_0x32112b[_0x13de59(0x395)]===_0x21fa40[_0x13de59(0x7f9)][_0x13de59(0xc6a)]&&'cellId'in _0x32112b&&_0x32112b['cellId']));}function _0x59a629(_0x2abc76,_0x2ab28f){const _0x3cbfb5=_0x59d572;var _0x31dd7f;return _0x39efa6(_0x3cbfb5(0x4af),_0x2ab28f['t'](_0x3cbfb5(0x2a8)),[_0x286210(_0x3cbfb5(0x44f),_0x2ab28f['t'](_0x3cbfb5(0x2a8)),_0x3cbfb5(0x8c7),(_0x31dd7f=_0x2abc76[_0x3cbfb5(0x7f5)])==null?_0x21fa40['DEFAULT_PDF_TABLE_STYLE_ID']:_0x31dd7f)]);}function _0x2e578a(_0x353982,_0x302e42){const _0x1957dc=_0x59d572;var _0x4fe6e2,_0x4faf26,_0x4d26c5,_0x530531,_0x34d78a,_0x32c60d,_0x5db048;return _0x39efa6(_0x1957dc(0x1a4),_0x302e42['t'](_0x1957dc(0x1b4)),[_0x286210('paragraphAlign',_0x302e42['t']('pdfs-ui.inspector.fields.align'),_0x1957dc(0x8db),(_0x4fe6e2=_0x353982[_0x1957dc(0xbd5)])==null?'left':_0x4fe6e2),_0x286210(_0x1957dc(0x5fd),_0x302e42['t'](_0x1957dc(0x4ab)),'number',(_0x4faf26=_0x353982['lineHeight'])==null?1.2:_0x4faf26),_0x286210(_0x1957dc(0xc74),_0x302e42['t'](_0x1957dc(0x43b)),'number',(0x0,_0x21fa40['emuToCssPx'])((_0x4d26c5=_0x353982[_0x1957dc(0x7a3)])==null?0x0:_0x4d26c5),'px'),_0x286210('paragraphFirstLineIndent',_0x302e42['t'](_0x1957dc(0x89a)),_0x1957dc(0x97e),(0x0,_0x21fa40[_0x1957dc(0xb35)])((_0x530531=_0x353982['firstLineIndent'])==null?0x0:_0x530531),'px'),_0x286210(_0x1957dc(0x8fa),_0x302e42['t'](_0x1957dc(0x72c)),_0x1957dc(0x97e),(0x0,_0x21fa40[_0x1957dc(0xb35)])((_0x34d78a=_0x353982[_0x1957dc(0xa13)])==null?0x0:_0x34d78a),'px'),_0x286210(_0x1957dc(0xa63),_0x302e42['t']('pdfs-ui.inspector.fields.before'),_0x1957dc(0x97e),(0x0,_0x21fa40[_0x1957dc(0xb35)])((_0x32c60d=_0x353982[_0x1957dc(0xbec)])==null?0x0:_0x32c60d),'px'),_0x286210(_0x1957dc(0x214),_0x302e42['t'](_0x1957dc(0x333)),_0x1957dc(0x97e),(0x0,_0x21fa40[_0x1957dc(0xb35)])((_0x5db048=_0x353982[_0x1957dc(0x16a)])==null?0x0:_0x5db048),'px')]);}function _0x13ff6e(_0x3f71e4){const _0x46e28d=_0x59d572;return _0x39efa6(_0x46e28d(0x911),_0x3f71e4['t'](_0x46e28d(0x593)),[],[_0x376e4e('bringForward',_0x3f71e4['t'](_0x46e28d(0x361))),_0x376e4e('sendBackward',_0x3f71e4['t'](_0x46e28d(0x752)))]);}function _0x39efa6(_0x1f9cc3,_0x35449f,_0x9239cf=[],_0x4a0974=[]){return{'id':_0x1f9cc3,'title':_0x35449f,'fields':_0x9239cf,'actions':_0x4a0974};}function _0x286210(_0x572dd4,_0x434557,_0x55186d,_0x3bda35,_0xfd6665){const _0xb5fcc3=_0x59d572;return{'id':_0x572dd4,'label':_0x434557,'type':_0x55186d,'value':_0xfd6665==='px'&&typeof _0x3bda35==_0xb5fcc3(0x97e)?Math['round'](_0x3bda35):_0x3bda35,'unit':_0xfd6665};}function _0x376e4e(_0x540e72,_0x26f172,_0x7e03a3=!0x0){return{'id':_0x540e72,'label':_0x26f172,'enabled':_0x7e03a3};}function _0x2e25c6({value:_0x39834a,ariaLabel:_0x5f5434,onChange:_0x17dce4}){const _0x4d80ea=_0x59d572;let [_0x49b178,_0xd091f8]=(0x0,_0x558781['useState'])(!0x1);return(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3[_0x4d80ea(0xc84)],{'overlay':(0x0,_0x2cdc8e['jsx'])(_0x4d80ea(0x624),{'className':_0x4d80ea(0xb5f),'children':(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3[_0x4d80ea(0xa20)],{'value':_0x39834a,'onChange':_0x56ecdf=>{_0x17dce4(_0x56ecdf),_0xd091f8(!0x1);}})}),'open':_0x49b178,'onOpenChange':_0xd091f8,'children':(0x0,_0x2cdc8e['jsxs'])(_0x4c8ef3[_0x4d80ea(0x12e)],{'type':_0x4d80ea(0x20a),'variant':_0x4d80ea(0x975),'aria-expanded':_0x49b178,'aria-label':_0x5f5434,'children':[(0x0,_0x2cdc8e[_0x4d80ea(0x965)])(_0x472e9e,{'extend':{'colorChannel1':_0x39834a}}),(0x0,_0x2cdc8e[_0x4d80ea(0x965)])(_0x17fb5f,{})]})});}function _0x3d7ae3(){const _0x1518dd=_0x59d572;let _0x4fbb12=(0x0,_0x480239['useDependency'])(_0x2894d3[_0x1518dd(0x50a)]),_0x170610=(0x0,_0x480239[_0x1518dd(0xb03)])(_0x289aee),_0x36aa6f=(0x0,_0x480239[_0x1518dd(0x472)])(()=>_0x4fbb12[_0x1518dd(0x1c0)](_0x2894d3[_0x1518dd(0x79c)][_0x1518dd(0x25e)]),_0x4fbb12[_0x1518dd(0x561)](_0x2894d3['UniverInstanceType'][_0x1518dd(0x25e)]),void 0x0,[_0x4fbb12]);(0x0,_0x480239[_0x1518dd(0x472)])(()=>_0x170610[_0x1518dd(0xa59)][_0x1518dd(0x1a1)]((0x0,_0x3fc99d['filter'])(_0x23dc86=>_0x23dc86[_0x1518dd(0x400)]===(_0x36aa6f==null?void 0x0:_0x36aa6f['getUnitId']()))),void 0x0,!0x1,[_0x36aa6f,_0x170610]);let _0x33cd29=_0x36aa6f?_0x170610[_0x1518dd(0x178)](_0x36aa6f[_0x1518dd(0x49e)]()):void 0x0,_0x34796c=_0x36aa6f==null?void 0x0:_0x36aa6f[_0x1518dd(0x15a)](),_0x3fea53=(0x0,_0x558781[_0x1518dd(0x6fd)])(()=>_0x34796c&&_0x33cd29?{..._0x34796c,'pages':(0x0,_0x21fa40[_0x1518dd(0x8ba)])(_0x34796c,(0x0,_0x21fa40[_0x1518dd(0x9e6)])(_0x33cd29))}:_0x34796c,[_0x34796c,_0x33cd29==null?void 0x0:_0x33cd29[_0x1518dd(0x33a)],_0x33cd29==null?void 0x0:_0x33cd29['local'][_0x1518dd(0x1fb)]]);return _0x36aa6f?{'model':_0x36aa6f,'document':_0x3fea53,'viewport':_0x33cd29==null?void 0x0:_0x33cd29['ephemeral'][_0x1518dd(0x809)]}:{};}function _0xfb341c(_0x3728b1,_0xa4d2be,_0x688713){const _0x1e651b=_0x59d572;_0x3728b1[_0x1e651b(0x92f)](_0xa4d2be,_0x688713);}let _0x45417f=[_0x59d572(0x634),'light',_0x59d572(0x9f6),_0x59d572(0x899)],_0x16a431={'bestMatch':_0x59d572(0x50c),'light':'pdfs-ui.tableTheme.light','medium':'pdfs-ui.tableTheme.medium','minimal':'pdfs-ui.tableTheme.minimal'},_0x2eddbe=[{'key':_0x59d572(0x4ef),'labelKey':_0x59d572(0x506)},{'key':'lastRow','labelKey':_0x59d572(0xc64)},{'key':_0x59d572(0x802),'labelKey':'pdfs-ui.tableTheme.bandedRows'},{'key':_0x59d572(0x306),'labelKey':_0x59d572(0x885)},{'key':'lastCol','labelKey':_0x59d572(0x9be)},{'key':'bandCol','labelKey':'pdfs-ui.tableTheme.bandedColumns'}];function _0x1e04d4(_0x32152){const _0x3a1647=_0x59d572;var _0x3b05ba;let {onApplyTheme:_0x1d7306,onChangeOptions:_0x39d160,palette:_0x5e2982,table:_0x51fea9}=_0x32152,_0x1fe371=(0x0,_0x480239[_0x3a1647(0xb03)])(_0x2894d3[_0x3a1647(0x3e8)]),_0x4bc7c0=_0x1fe371[_0x3a1647(0x93e)](),_0x51eff5=(_0x3b05ba=_0x51fea9[_0x3a1647(0x62c)])==null?{}:_0x3b05ba,_0x484967=(0x0,_0x21fa40[_0x3a1647(0x6e1)])(_0x5e2982);return(0x0,_0x2cdc8e[_0x3a1647(0x139)])('div',{'className':_0x3a1647(0x582),'dir':_0x4bc7c0,'children':[(0x0,_0x2cdc8e[_0x3a1647(0x139)])(_0x3a1647(0x624),{'children':[(0x0,_0x2cdc8e[_0x3a1647(0x965)])(_0x3a1647(0x624),{'className':_0x3a1647(0x943),'children':_0x1fe371['t'](_0x3a1647(0x98c))}),(0x0,_0x2cdc8e[_0x3a1647(0x965)])(_0x3a1647(0x624),{'className':'univer-grid\x20univer-grid-cols-2\x20univer-gap-2','children':_0x2eddbe[_0x3a1647(0xb06)](({key:_0x15da51,labelKey:_0x4724cb})=>(0x0,_0x2cdc8e['jsx'])(_0x2f295e,{'active':!!_0x51eff5[_0x15da51],'label':_0x1fe371['t'](_0x4724cb),'onClick':()=>_0x39d160({..._0x51eff5,[_0x15da51]:!_0x51eff5[_0x15da51]})},_0x15da51))})]}),(0x0,_0x2cdc8e[_0x3a1647(0x965)])(_0x3a1647(0x624),{'className':_0x3a1647(0x92e),'children':_0x45417f[_0x3a1647(0xb06)](_0x260ee1=>(0x0,_0x2cdc8e['jsxs'])(_0x3a1647(0x624),{'children':[(0x0,_0x2cdc8e[_0x3a1647(0x965)])(_0x3a1647(0x624),{'className':_0x3a1647(0x943),'children':_0x1fe371['t'](_0x16a431[_0x260ee1])}),(0x0,_0x2cdc8e[_0x3a1647(0x965)])(_0x3a1647(0x624),{'className':'univer-grid\x20univer-grid-cols-4\x20univer-gap-2','children':_0x21fa40[_0x3a1647(0x1e7)][_0x3a1647(0xbcd)](_0x2584c6=>_0x2584c6[_0x3a1647(0x53d)]===_0x260ee1)[_0x3a1647(0xb06)]((_0x1885b3,_0x475057)=>{const _0x1069fc=_0x3a1647;var _0x2bec45,_0xd4859e;let _0x563db4=_0x51fea9[_0x1069fc(0x7f5)]===_0x1885b3['id'],_0x130cec=_0x1fe371['t'](_0x16a431[_0x260ee1])+'\x20'+(_0x475057+0x1);return(0x0,_0x2cdc8e[_0x1069fc(0x965)])('button',{'type':_0x1069fc(0x20a),'aria-label':_0x130cec,'aria-pressed':_0x563db4,'title':(_0x2bec45=(_0xd4859e=_0x484967[_0x1885b3['id']])==null?void 0x0:_0xd4859e[_0x1069fc(0x37a)])==null?_0x130cec:_0x2bec45,'className':(0x0,_0x4c8ef3[_0x1069fc(0x715)])(_0x1069fc(0xc9a),{'univer-border-primary-500\x20univer-ring-2\x20univer-ring-primary-100\x20dark:!univer-border-primary-400\x20dark:!univer-ring-primary-900':_0x563db4,'univer-border-transparent':!_0x563db4}),'onClick':()=>_0x1d7306(_0x1885b3['id']),'children':(0x0,_0x2cdc8e['jsx'])(_0x313f6c,{'styleId':_0x1885b3['id'],'options':_0x51eff5,'palette':_0x5e2982,'direction':_0x4bc7c0})},_0x1885b3['id']);})})]},_0x260ee1))})]});}function _0x2f295e(_0x58fa25){const _0x385333=_0x59d572;let {active:_0x4fa67d,label:_0x2ef57d,onClick:_0x3006be}=_0x58fa25;return(0x0,_0x2cdc8e[_0x385333(0x965)])(_0x4c8ef3['Checkbox'],{'checked':_0x4fa67d,'className':_0x385333(0xb16),'contentClassName':_0x385333(0x196),'onChange':_0x3006be,'children':_0x2ef57d});}function _0x313f6c(_0x240f6d){const _0x4ec599=_0x59d572;let {direction:_0x1ad128,options:_0x568b98,palette:_0x1683bc,styleId:_0x58dd55}=_0x240f6d,_0x250848=_0x2d874e(_0x58dd55,_0x568b98),_0x43bb3c=(0x0,_0x21fa40['buildDefaultPdfTableThemes'])(_0x1683bc);return(0x0,_0x2cdc8e[_0x4ec599(0x965)])(_0x4ec599(0xa12),{'className':_0x4ec599(0x8f4),'children':_0x250848[_0x4ec599(0x7a2)][_0x4ec599(0xb06)]((_0x53b17a,_0x520b86)=>{const _0x5d9dbe=_0x4ec599;var _0x1435ae,_0x2b4043,_0x2c04db,_0x4da31c,_0x43f671,_0x11ca66,_0x55c0a7,_0x253d46,_0x3be911,_0x20262b,_0x11f98a,_0x3142ee,_0x17aadc,_0x513a6c,_0x3ccce7,_0x4454a2,_0x4aba0a,_0x13fe9f,_0x17cafe,_0x2d78b2,_0x4b3b53,_0x402c92,_0x392f99,_0x18c45e,_0x262782,_0x42494f;let _0x1b8cbc=(0x0,_0x21fa40[_0x5d9dbe(0xb90)])(_0x250848,_0x53b17a,_0x43bb3c),_0x3d24c2=Math[_0x5d9dbe(0x559)](_0x520b86/0x5),_0x5cdb31=_0x520b86%0x5,_0x5c7035=(_0x1435ae=(_0x2b4043=(_0x2c04db=(_0x4da31c=_0x1b8cbc[_0x5d9dbe(0x23c)])==null?void 0x0:_0x4da31c[_0x5d9dbe(0xc94)])==null?(_0x43f671=_0x1b8cbc[_0x5d9dbe(0x23c)])==null?void 0x0:_0x43f671[_0x5d9dbe(0x354)]:_0x2c04db)==null?(_0x11ca66=_0x1b8cbc[_0x5d9dbe(0x23c)])==null?void 0x0:_0x11ca66[_0x5d9dbe(0x268)]:_0x2b4043)==null?(_0x55c0a7=_0x1b8cbc[_0x5d9dbe(0x23c)])==null?void 0x0:_0x55c0a7[_0x5d9dbe(0x331)]:_0x1435ae;return(0x0,_0x2cdc8e['jsx'])(_0x5d9dbe(0xa12),{'style':{'background':typeof((_0x253d46=_0x1b8cbc[_0x5d9dbe(0x9ae)])==null?void 0x0:_0x253d46[_0x5d9dbe(0x6aa)])==_0x5d9dbe(0x221)?_0x1b8cbc[_0x5d9dbe(0x9ae)]['color']:_0x5d9dbe(0x919),'borderTop':_0x3d24c2===0x0?_0x5d9dbe(0xc11)+((_0x3be911=(_0x20262b=(_0x11f98a=_0x1b8cbc[_0x5d9dbe(0x23c)])==null||(_0x11f98a=_0x11f98a[_0x5d9dbe(0x268)])==null?void 0x0:_0x11f98a[_0x5d9dbe(0x6aa)])==null?_0x5c7035==null?void 0x0:_0x5c7035['color']:_0x20262b)==null?'transparent':_0x3be911):void 0x0,'borderRight':_0x1ad128==='rtl'?_0x5cdb31===0x0?'1px\x20solid\x20'+((_0x3142ee=(_0x17aadc=(_0x513a6c=_0x1b8cbc[_0x5d9dbe(0x23c)])==null||(_0x513a6c=_0x513a6c[_0x5d9dbe(0x331)])==null?void 0x0:_0x513a6c[_0x5d9dbe(0x6aa)])==null?_0x5c7035==null?void 0x0:_0x5c7035['color']:_0x17aadc)==null?_0x5d9dbe(0x919):_0x3142ee):void 0x0:_0x5d9dbe(0xc11)+((_0x3ccce7=(_0x4454a2=(_0x4aba0a=_0x1b8cbc['borders'])==null||(_0x4aba0a=_0x4aba0a[_0x5d9dbe(0xc94)])==null?void 0x0:_0x4aba0a['color'])==null?_0x5c7035==null?void 0x0:_0x5c7035[_0x5d9dbe(0x6aa)]:_0x4454a2)==null?_0x5d9dbe(0x919):_0x3ccce7),'borderBottom':_0x5d9dbe(0xc11)+((_0x13fe9f=(_0x17cafe=(_0x2d78b2=_0x1b8cbc[_0x5d9dbe(0x23c)])==null||(_0x2d78b2=_0x2d78b2[_0x5d9dbe(0x354)])==null?void 0x0:_0x2d78b2[_0x5d9dbe(0x6aa)])==null?_0x5c7035==null?void 0x0:_0x5c7035[_0x5d9dbe(0x6aa)]:_0x17cafe)==null?_0x5d9dbe(0x919):_0x13fe9f),'borderLeft':_0x1ad128===_0x5d9dbe(0x6f7)?_0x5d9dbe(0xc11)+((_0x4b3b53=(_0x402c92=(_0x392f99=_0x1b8cbc['borders'])==null||(_0x392f99=_0x392f99['right'])==null?void 0x0:_0x392f99[_0x5d9dbe(0x6aa)])==null?_0x5c7035==null?void 0x0:_0x5c7035[_0x5d9dbe(0x6aa)]:_0x402c92)==null?_0x5d9dbe(0x919):_0x4b3b53):_0x5cdb31===0x0?_0x5d9dbe(0xc11)+((_0x18c45e=(_0x262782=(_0x42494f=_0x1b8cbc[_0x5d9dbe(0x23c)])==null||(_0x42494f=_0x42494f['left'])==null?void 0x0:_0x42494f[_0x5d9dbe(0x6aa)])==null?_0x5c7035==null?void 0x0:_0x5c7035[_0x5d9dbe(0x6aa)]:_0x262782)==null?_0x5d9dbe(0x919):_0x18c45e):void 0x0}},_0x53b17a['id']);})});}function _0x2d874e(_0x491f4e,_0x5cfd4c){const _0x5dff04=_0x59d572;let _0x33ebbf=Array[_0x5dff04(0x8c1)]({'length':0x4},(_0xfe93a8,_0x3938a1)=>({'id':_0x5dff04(0x2c2)+_0x3938a1,'height':0x1})),_0x3a8f96=Array[_0x5dff04(0x8c1)]({'length':0x5},(_0x19c55a,_0x527ecb)=>({'id':_0x5dff04(0x2e8)+_0x527ecb,'width':0x1}));return{'id':'pdf-table-theme-preview','type':_0x21fa40[_0x5dff04(0x8bf)]['TABLE'],'editability':_0x21fa40[_0x5dff04(0x5ed)]['SEMANTIC'],'bbox':[0x0,0x0,0x5,0x4],'rows':_0x33ebbf,'columns':_0x3a8f96,'cells':_0x33ebbf['flatMap'](_0x635ef=>_0x3a8f96[_0x5dff04(0xb06)](_0x14ea0e=>({'id':_0x635ef['id']+'_'+_0x14ea0e['id'],'rowId':_0x635ef['id'],'columnId':_0x14ea0e['id'],'rowSpan':0x1,'columnSpan':0x1,'contentStoryId':''}))),'styleId':_0x491f4e,'options':_0x5cfd4c};}let _0x429209=_0x59d572(0xc7f);function _0x43994e(){const _0x3e6e3c=_0x59d572;var _0x2c46b4;let _0x155291=(0x0,_0x480239[_0x3e6e3c(0xb03)])(_0x2894d3[_0x3e6e3c(0x3e8)]),_0x75b59a=(0x0,_0x480239[_0x3e6e3c(0xb03)])(_0x2894d3['ThemeService']),_0x2a7454=(0x0,_0x480239['useDependency'])(_0x4e4eea),_0x1ff02b=(0x0,_0x480239[_0x3e6e3c(0xb03)])(_0x289aee),_0x583ca4=(0x0,_0x480239[_0x3e6e3c(0xb03)])(_0x1dcaf0),{model:_0x34b63e}=_0x3d7ae3(),_0x511bb8=_0x34b63e?_0x1ff02b[_0x3e6e3c(0x178)](_0x34b63e[_0x3e6e3c(0x49e)]()):void 0x0;if(!_0x34b63e||!_0x511bb8)return null;let _0x3e0d4c=(0x0,_0x21fa40['composePdfEditorSessionState'])(_0x511bb8),_0x2806ec=_0x5ded97(_0x3e0d4c,_0x155291),_0x2e6c96=(_0x2c46b4=_0x3e0d4c[_0x3e6e3c(0xb23)][_0x3e6e3c(0x60c)][_0x3e6e3c(0x816)](_0x3d3d45=>_0x3d3d45['id']===_0x3e0d4c[_0x3e6e3c(0xb23)][_0x3e6e3c(0x8cf)]))==null?_0x3e0d4c['selection'][_0x3e6e3c(0x60c)][0x0]:_0x2c46b4,_0x5163e4=_0x2e6c96&&_0x3e6e3c(0x826)in _0x2e6c96?_0x2e6c96[_0x3e6e3c(0x826)]:void 0x0,_0x51b098=_0x5163e4?_0x3e0d4c[_0x3e6e3c(0x430)][_0x3e6e3c(0x24a)][_0x5163e4]:void 0x0,_0x433be7=_0x5163e4?_0x488107(_0x3e0d4c,_0x5163e4):void 0x0,_0x410ca7=_0x5163e4?_0x434c39(_0x3e0d4c,_0x5163e4):void 0x0,_0x48317d=_0x5163e4?_0xb72c18(_0x3e0d4c,_0x5163e4):void 0x0,_0x2de0a8=(_0x51b098==null?void 0x0:_0x51b098[_0x3e6e3c(0x961)][_0x3e6e3c(0x2c1)])===_0x21fa40[_0x3e6e3c(0x8bf)][_0x3e6e3c(0x1a5)]?_0x51b098[_0x3e6e3c(0x961)][_0x3e6e3c(0x3b8)]:void 0x0,_0x4ecc2e=_0x335111(_0x3e0d4c),_0x407dd3=_0x1e2bb9(_0x3e0d4c),_0x3c41a9=(0x0,_0x21fa40[_0x3e6e3c(0xadc)])(_0x460a8d=>_0x75b59a['getColorFromTheme'](_0x460a8d)),_0x4125dc=(_0x5d307,_0x398065)=>_0x2a7454['execute'](_0x34b63e[_0x3e6e3c(0x49e)](),_0x5d307,_0x398065,{'actorId':'pdf-ui','clientId':'pdf-ui'}),_0x4215cf=_0x206c90=>{const _0x1ba5d5=_0x3e6e3c;var _0x2aba52,_0xddb67a,_0x271e25;let _0x3526db=_0x1ff02b[_0x1ba5d5(0x178)](_0x34b63e[_0x1ba5d5(0x49e)]()),_0xdc1334=_0x3526db?(0x0,_0x21fa40['composePdfEditorSessionState'])(_0x3526db):_0x3e0d4c,_0x2113b7=(_0x2aba52=_0xdc1334[_0x1ba5d5(0xb23)]['anchors']['find'](_0x26e3d6=>_0x26e3d6['id']===_0xdc1334[_0x1ba5d5(0xb23)][_0x1ba5d5(0x8cf)]))==null?_0xdc1334[_0x1ba5d5(0xb23)]['anchors'][0x0]:_0x2aba52,_0x1d22f5=_0x2113b7&&_0x1ba5d5(0x826)in _0x2113b7?_0x2113b7[_0x1ba5d5(0x826)]:_0x5163e4;if(!_0x1d22f5)return;let _0x548b42=_0x2113b7&&_0x1ba5d5(0x53a)in _0x2113b7?_0x2113b7['range']:void 0x0,_0x3c0681=(_0xddb67a=(_0x271e25=_0xdc1334['editState'][_0x1ba5d5(0x24a)][_0x1d22f5])==null?void 0x0:_0x271e25[_0x1ba5d5(0x8ee)])==null?_0x51b098==null?void 0x0:_0x51b098[_0x1ba5d5(0x8ee)]:_0xddb67a;return _0x548b42&&_0x548b42[_0x1ba5d5(0x3c1)]!==_0x548b42[_0x1ba5d5(0x392)]?_0x4125dc(_0x21fa40['pdfUpdateTextRangeStyleCommand'],{'pageId':_0x3c0681,'objectId':_0x1d22f5,'range':_0x548b42,'textStyle':_0x206c90}):_0x4125dc(_0x21fa40['pdfUpdateTextStyleCommand'],{'pageId':_0x3c0681,'objectId':_0x1d22f5,'textStyle':_0x206c90});},_0xdffd18=(_0x11cf48,_0x8486a3)=>{const _0x86193a=_0x3e6e3c;if(_0x51b098&&_0x5163e4&&Object[_0x86193a(0xaaf)](_0x28131b)[_0x86193a(0x8a8)](_0x11cf48['id']))return _0x4125dc(_0x21fa40[_0x86193a(0x369)],{'pageId':_0x51b098['pageId'],'objectId':_0x5163e4,'bbox':_0x13cc2f(_0x51b098[_0x86193a(0x961)][_0x86193a(0xa01)],_0x11cf48['id'],Number(_0x8486a3)),'previousBbox':_0x51b098[_0x86193a(0x961)]['bbox'],'previousTransform':_0x51b098[_0x86193a(0x961)][_0x86193a(0x701)]});if(_0x11cf48['id']===_0x86193a(0xb3b))return _0x4215cf({'fontFamily':String(_0x8486a3)});if(_0x11cf48['id']===_0x86193a(0x845))return _0x4215cf({'fontSize':Number(_0x8486a3)});if(_0x4ecc2e&&_0x11cf48['id']==='cellBackground')return _0x4125dc(_0x21fa40['pdfUpdateTableCellStyleCommand'],{'tableId':_0x4ecc2e[_0x86193a(0x6be)],'cellId':_0x4ecc2e['cellId'],'pageId':_0x4ecc2e[_0x86193a(0x8ee)],'patch':{'fill':{'color':String(_0x8486a3)}},'currentStyle':_0x4ecc2e[_0x86193a(0x2f9)]});if(_0x4ecc2e&&_0x11cf48['id']==='cellVerticalAlign')return _0x4125dc(_0x21fa40[_0x86193a(0x4b2)],{'tableId':_0x4ecc2e[_0x86193a(0x6be)],'cellId':_0x4ecc2e[_0x86193a(0x7ea)],'pageId':_0x4ecc2e[_0x86193a(0x8ee)],'patch':{'verticalAlign':_0x8486a3},'currentStyle':_0x4ecc2e[_0x86193a(0x2f9)]});if(_0x5163e4&&_0x51b098&&_0x48317d&&_0x11cf48['id']===_0x86193a(0x9d4))return _0x4125dc(_0x21fa40['pdfUpdateObjectStrokeCommand'],{'pageId':_0x51b098[_0x86193a(0x8ee)],'objectId':_0x5163e4,'stroke':{..._0x48317d,'color':String(_0x8486a3)}});if(!_0x410ca7||!Object[_0x86193a(0xaaf)](_0x3e493c)[_0x86193a(0x8a8)](_0x11cf48['id']))return;let _0x263503=_0x11cf48['id']==='paragraphAlign'?{'align':_0x8486a3}:_0x11cf48['id']==='paragraphLineHeight'?{'lineHeight':Number(_0x8486a3)}:{[_0x58b54a(_0x11cf48['id'])]:(0x0,_0x21fa40[_0x86193a(0x14f)])(Number(_0x8486a3))};return _0x4125dc(_0x21fa40[_0x86193a(0xc22)],{'storyId':_0x410ca7[_0x86193a(0x6b8)],'blockId':_0x410ca7[_0x86193a(0x413)]['id'],'patch':_0x263503,'currentBlock':_0x410ca7[_0x86193a(0x413)]});},_0x31680a=(_0x572261,_0x1fb9e8)=>{const _0x473d61=_0x3e6e3c;var _0x226dfa;if(_0x407dd3)return _0x4125dc(_0x21fa40[_0x473d61(0x557)],{'tableId':_0x407dd3[_0x473d61(0x6be)],'pageId':_0x407dd3[_0x473d61(0x8ee)],'styleId':_0x572261,'options':(_0x226dfa=_0x1fb9e8==null?_0x407dd3[_0x473d61(0x4af)]['options']:_0x1fb9e8)==null?{}:_0x226dfa});},_0x334b82=_0x259a5a=>{const _0x584a44=_0x3e6e3c;if(!(!_0x5163e4||!_0x51b098)){if(_0x259a5a===_0x584a44(0xc04)||_0x259a5a===_0x584a44(0x4b4))return _0x4125dc(_0x21fa40[_0x584a44(0x30e)],{'objectId':_0x5163e4,'pageId':_0x51b098[_0x584a44(0x8ee)],'delta':_0x259a5a===_0x584a44(0xc04)?0x1:-0x1});if(_0x259a5a===_0x584a44(0x1e2)||_0x259a5a===_0x584a44(0x666))return _0x4125dc(_0x21fa40['pdfFlipObjectCommand'],{'objectId':_0x5163e4,'pageId':_0x51b098[_0x584a44(0x8ee)],'axis':_0x259a5a==='flipHorizontal'?_0x584a44(0x890):'vertical'});}},_0x2f1f44=_0x4f8690=>(0x0,_0x2cdc8e['jsx'])(_0x5d09f0,{'field':_0x4f8690,'onChange':_0x4c990a=>_0xdffd18(_0x4f8690,_0x4c990a)},_0x4f8690['id']);return(0x0,_0x2cdc8e[_0x3e6e3c(0x965)])(_0x3e6e3c(0x624),{'className':_0x3e6e3c(0x722),'data-pdf-inspector':'true','onMouseDownCapture':_0x2dbbcf=>{const _0x25889e=_0x3e6e3c;var _0x5a1f10,_0x33d143;(_0x5a1f10=(_0x33d143=_0x2dbbcf[_0x25889e(0x5f8)])[_0x25889e(0x9e1)])!=null&&_0x5a1f10[_0x25889e(0x3f4)](_0x33d143,_0x25889e(0x20a))&&_0x2dbbcf[_0x25889e(0xb59)]();},'children':_0x2806ec[_0x3e6e3c(0xa3e)][_0x3e6e3c(0xb06)](_0x213e8f=>{const _0x22b00a=_0x3e6e3c;let _0x59c196=_0x213e8f[_0x22b00a(0x843)]['filter'](_0x5a3067=>_0x5a3067['id']!==_0x22b00a(0x44f));return(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x4c8ef3[_0x22b00a(0x313)],{'label':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x22b00a(0xa12),{'className':_0x22b00a(0x2b9),'children':_0x213e8f[_0x22b00a(0x5c9)]}),'children':(0x0,_0x2cdc8e[_0x22b00a(0x139)])('div',{'className':_0x22b00a(0x625),'children':[_0x213e8f['id']==='table'&&_0x407dd3&&(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x1e04d4,{'table':_0x407dd3[_0x22b00a(0x4af)],'palette':_0x3c41a9,'onApplyTheme':_0xcbedd5=>_0x31680a(_0xcbedd5),'onChangeOptions':_0x3a5daa=>{const _0x43c7a7=_0x22b00a;var _0x15752c;return _0x31680a((_0x15752c=_0x407dd3[_0x43c7a7(0x4af)]['styleId'])==null?_0x21fa40[_0x43c7a7(0xc69)]:_0x15752c,_0x3a5daa);}}),_0x213e8f['id']==='transform'?(0x0,_0x2cdc8e['jsxs'])(_0x2cdc8e['Fragment'],{'children':[(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x4c8ef3[_0x22b00a(0x328)],{'children':_0x59c196[_0x22b00a(0x688)](0x0,0x2)[_0x22b00a(0xb06)](_0x2f1f44)}),(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x4c8ef3[_0x22b00a(0x328)],{'children':_0x59c196['slice'](0x2,0x4)[_0x22b00a(0xb06)](_0x2f1f44)})]}):_0x59c196[_0x22b00a(0xb06)](_0x2f1f44),_0x213e8f['id']==='text'&&_0x433be7&&(0x0,_0x2cdc8e[_0x22b00a(0x139)])(_0x2cdc8e['Fragment'],{'children':[(0x0,_0x2cdc8e[_0x22b00a(0x139)])(_0x22b00a(0x624),{'className':_0x22b00a(0xa4b),'children':[(0x0,_0x2cdc8e[_0x22b00a(0x139)])(_0x22b00a(0x624),{'className':'univer-flex\x20univer-items-center\x20univer-gap-1','children':[(0x0,_0x2cdc8e['jsx'])(_0x2e25c6,{'value':typeof _0x433be7[_0x22b00a(0x9ae)]==_0x22b00a(0x221)?_0x433be7['fill']:'#111111','ariaLabel':_0x213e8f[_0x22b00a(0x5c9)],'onChange':_0x3c1dd4=>_0x4215cf({'fill':_0x3c1dd4})}),[{'id':_0x22b00a(0x576),'label':_0x155291['t'](_0x22b00a(0x974)),'active':_0x433be7[_0x22b00a(0x576)],'icon':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x1845ce,{}),'onClick':()=>_0x4215cf({'bold':!_0x433be7[_0x22b00a(0x576)]})},{'id':_0x22b00a(0x763),'label':_0x155291['t']('pdfs-ui.inspector.fields.italic'),'active':_0x433be7[_0x22b00a(0x763)],'icon':(0x0,_0x2cdc8e['jsx'])(_0x37bb06,{}),'onClick':()=>_0x4215cf({'italic':!_0x433be7['italic']})},{'id':_0x22b00a(0x7ce),'label':_0x155291['t'](_0x22b00a(0xbf2)),'active':_0x433be7[_0x22b00a(0x7ce)],'icon':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x344e95,{}),'onClick':()=>_0x4215cf({'underline':!_0x433be7[_0x22b00a(0x7ce)]})}]['map'](_0x3ed918=>(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x4c8ef3[_0x22b00a(0x12e)],{'aria-label':_0x3ed918[_0x22b00a(0x476)],'aria-pressed':!!_0x3ed918[_0x22b00a(0xc96)],'type':_0x22b00a(0x20a),'variant':_0x3ed918[_0x22b00a(0xc96)]?_0x22b00a(0xa85):'text','onClick':_0x3ed918[_0x22b00a(0x50e)],'children':_0x3ed918[_0x22b00a(0xc1b)]},_0x3ed918['id']))]}),(0x0,_0x2cdc8e['jsx'])(_0x22b00a(0x624),{'className':_0x22b00a(0x384),'children':[{'anchor':_0x21fa40[_0x22b00a(0x938)][_0x22b00a(0x9b3)],'label':_0x155291['t']('pdfs-ui.inspector.fields.left'),'icon':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0xa20d1d,{})},{'anchor':_0x21fa40['PdfTextAnchor'][_0x22b00a(0x745)],'label':_0x155291['t']('pdfs-ui.inspector.fields.center'),'icon':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x33c63b,{})},{'anchor':_0x21fa40[_0x22b00a(0x938)][_0x22b00a(0x281)],'label':_0x155291['t'](_0x22b00a(0x8cc)),'icon':(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x560a25,{})}]['map'](({anchor:_0x2f59b4,label:_0x43ec34,icon:_0x1d607a})=>(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3[_0x22b00a(0x12e)],{'aria-label':_0x43ec34,'aria-pressed':_0x2de0a8===_0x2f59b4,'type':_0x22b00a(0x20a),'variant':_0x2de0a8===_0x2f59b4?_0x22b00a(0xa85):_0x22b00a(0x975),'onClick':()=>_0x4125dc(_0x21fa40['pdfUpdateTextStyleCommand'],{'pageId':_0x51b098==null?void 0x0:_0x51b098[_0x22b00a(0x8ee)],'objectId':_0x5163e4,'textAnchor':_0x2f59b4}),'children':_0x1d607a},_0x2f59b4))})]}),(0x0,_0x2cdc8e['jsx'])(_0x4c8ef3['Button'],{'className':_0x22b00a(0x1c1),'variant':_0x22b00a(0xa85),'onClick':()=>_0x583ca4[_0x22b00a(0x881)](_0x34b63e[_0x22b00a(0x49e)]()),'children':_0x155291['t'](_0x22b00a(0x693))})]}),!!_0x213e8f[_0x22b00a(0xb6d)]['length']&&(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x22b00a(0x624),{'className':_0x22b00a(0xc9b),'children':_0x213e8f['actions'][_0x22b00a(0xbcd)](_0x2e4e94=>[_0x22b00a(0xc04),_0x22b00a(0x4b4),_0x22b00a(0x1e2),'flipVertical'][_0x22b00a(0x8a8)](_0x2e4e94['id']))[_0x22b00a(0xb06)](_0x51510e=>(0x0,_0x2cdc8e[_0x22b00a(0x965)])(_0x4c8ef3[_0x22b00a(0x12e)],{'disabled':_0x51510e[_0x22b00a(0x717)]===!0x1,'onClick':()=>_0x334b82(_0x51510e['id']),'children':_0x51510e['label']},_0x51510e['id']))})]})},_0x213e8f['id']);})});}function _0x5d09f0({field:_0x502af1,onChange:_0x5a84ca}){const _0x31d310=_0x59d572;var _0x2ae75a,_0x3ba7b1,_0x69a5f,_0x32ea52,_0x6beca6,_0x10b196,_0x24797d;let _0x49261d=(0x0,_0x480239[_0x31d310(0xb03)])(_0x2894d3[_0x31d310(0x3e8)]),_0x1fd5c5=_0x502af1[_0x31d310(0x2c1)]==='readonly'?(0x0,_0x2cdc8e[_0x31d310(0x965)])('div',{'className':_0x31d310(0x226),'title':String((_0x2ae75a=_0x502af1[_0x31d310(0x85b)])==null?'':_0x2ae75a),'children':String((_0x3ba7b1=_0x502af1[_0x31d310(0x85b)])==null?'':_0x3ba7b1)}):_0x502af1['id']===_0x31d310(0xb3b)?(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x480239[_0x31d310(0x3ca)],{'ariaLabel':_0x502af1[_0x31d310(0x476)],'className':(0x0,_0x4c8ef3['clsx'])(_0x31d310(0xbb7),_0x4c8ef3[_0x31d310(0x89b)]),'inputClassName':_0x31d310(0x278),'title':String((_0x69a5f=_0x502af1[_0x31d310(0x85b)])==null?'':_0x69a5f),'value':String((_0x32ea52=_0x502af1[_0x31d310(0x85b)])==null?'':_0x32ea52),'onChange':_0x5a84ca}):_0x502af1[_0x31d310(0x2c1)]===_0x31d310(0x97e)?(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x4c8ef3[_0x31d310(0x9eb)],{'className':_0x31d310(0x1c1),'value':Number((_0x6beca6=_0x502af1[_0x31d310(0x85b)])==null?0x0:_0x6beca6),'min':_0x502af1['id']===_0x31d310(0x845)?0x1:void 0x0,'formatter':_0x193ce7=>_0x502af1[_0x31d310(0x658)]?_0x193ce7+'\x20'+_0x502af1[_0x31d310(0x658)]:String(_0x193ce7),'parser':_0x5c897a=>{const _0x13825f=_0x31d310;var _0x5e8bd7,_0x3696a2;return(_0x5e8bd7=_0x5c897a==null?void 0x0:_0x5c897a[_0x13825f(0xbf8)]((_0x3696a2=_0x502af1[_0x13825f(0x658)])==null?'':_0x3696a2,'')[_0x13825f(0x4d9)]())==null?'':_0x5e8bd7;},'onChange':_0x23b196=>_0x23b196!==null&&_0x5a84ca(_0x23b196)}):_0x502af1[_0x31d310(0x2c1)]===_0x31d310(0x8db)?(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x4c8ef3[_0x31d310(0x1e0)],{'className':_0x31d310(0x1c1),'value':String((_0x10b196=_0x502af1[_0x31d310(0x85b)])==null?'':_0x10b196),'options':_0x502af1['id']===_0x31d310(0xbc5)?[{'value':_0x31d310(0x268),'label':_0x49261d['t'](_0x31d310(0x5d6))},{'value':_0x31d310(0x130),'label':_0x49261d['t'](_0x31d310(0x399))},{'value':_0x31d310(0x354),'label':_0x49261d['t'](_0x31d310(0x4b6))}]:[{'value':'left','label':_0x49261d['t'](_0x31d310(0xb80))},{'value':_0x31d310(0xa0f),'label':_0x49261d['t']('pdfs-ui.inspector.fields.center')},{'value':'right','label':_0x49261d['t'](_0x31d310(0x8cc))}],'onChange':_0x1cce49=>_0x5a84ca(String(_0x1cce49))}):_0x502af1[_0x31d310(0x2c1)]===_0x31d310(0x6aa)?(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x2e25c6,{'value':String(_0x502af1[_0x31d310(0x85b)]||_0x31d310(0x14d)),'ariaLabel':_0x502af1['label'],'onChange':_0x5a84ca}):(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x4c8ef3['Input'],{'value':String((_0x24797d=_0x502af1['value'])==null?'':_0x24797d),'onChange':_0x5a84ca});return(0x0,_0x2cdc8e[_0x31d310(0x965)])(_0x4c8ef3[_0x31d310(0x313)],{'className':_0x31d310(0x56f),'label':_0x502af1[_0x31d310(0x476)],'children':_0x1fd5c5});}function _0x58b54a(_0x1f73cd){const _0x499d82=_0x59d572;switch(_0x1f73cd){case _0x499d82(0xc68):return _0x499d82(0x65a);case'paragraphRightIndent':return _0x499d82(0xa13);case _0x499d82(0xa63):return'spacingBefore';case _0x499d82(0x214):return'spacingAfter';default:return _0x499d82(0x7a3);}}let _0x270cb9=class extends _0x2894d3['Disposable']{constructor(_0x329162,_0x23c4e1){const _0x2f185b=_0x59d572;super(),this[_0x2f185b(0x2a2)]=_0x329162,this[_0x2f185b(0x982)]=_0x23c4e1,this[_0x2f185b(0x808)](),this[_0x2f185b(0xb2d)]();}[_0x59d572(0x808)](){const _0x617756=_0x59d572;this[_0x617756(0x17b)](this[_0x617756(0x2a2)][_0x617756(0xc57)](_0x11e715,_0x570138)),this[_0x617756(0x17b)](this[_0x617756(0x2a2)][_0x617756(0xc57)](_0x429209,_0x43994e));}['_registerIcons'](){const _0x2a857e=_0x59d572;this[_0x2a857e(0x17b)](this['_iconManager'][_0x2a857e(0xc57)]({'AddImageIcon':_0x1e9f0e,'AddNoteIcon':_0x3a385c,'ArrowDownIcon':_0xff6248,'ArrowUpIcon':_0x39b7fb,'CopyIcon':_0x463179,'CommentIcon':_0x2798fb,'DeleteIcon':_0x38a263,'DividerIcon':_0x168564,'FlipHorizontalIcon':_0x5655a7,'FlipVerticalIcon':_0x329f39,'LeftJustifyingIcon':_0xa20d1d,'ShapeLineIcon':_0x4fceb6,'TableIcon':_0x5748db,'TextIcon':_0x169bee,'TodoListDoubleIcon':_0x394b1f}));}};_0x270cb9=_0x3ef5be([_0x4a4ad7(0x0,(0x0,_0x2894d3[_0x59d572(0xbd8)])(_0x480239['ComponentManager'])),_0x4a4ad7(0x1,(0x0,_0x2894d3[_0x59d572(0xbd8)])(_0x480239[_0x59d572(0x27d)]))],_0x270cb9);let _0x1577d3=class extends _0x2894d3['Disposable']{constructor(_0x47b403,_0x130d16,_0x515c57){const _0x497a57=_0x59d572;super(),this[_0x497a57(0x91f)]=_0x130d16,this[_0x497a57(0x4a0)]=_0x515c57,_0x22e50d(this,_0x497a57(0x69f),void 0x0),_0x22e50d(this,'_unitId',void 0x0),this['disposeWithMe'](_0x47b403[_0x497a57(0x1c0)](_0x2894d3[_0x497a57(0x79c)][_0x497a57(0x25e)])[_0x497a57(0x5c1)](_0x57c224=>this[_0x497a57(0xac9)](_0x57c224==null?void 0x0:_0x57c224[_0x497a57(0x49e)]())));}[_0x59d572(0xa9e)](){const _0x724719=_0x59d572;var _0x17bc7f;(_0x17bc7f=this[_0x724719(0x69f)])==null||_0x17bc7f[_0x724719(0xa9e)](),this[_0x724719(0x69f)]=void 0x0,super[_0x724719(0xa9e)]();}[_0x59d572(0xac9)](_0x147f43){const _0x4a3c84=_0x59d572;var _0x5b3243;_0x147f43!==this['_unitId']&&((_0x5b3243=this['_panel'])==null||_0x5b3243[_0x4a3c84(0xa9e)](),this[_0x4a3c84(0x69f)]=void 0x0,this['_unitId']=_0x147f43,_0x147f43&&(this['_panel']=this[_0x4a3c84(0x91f)][_0x4a3c84(0x5e9)]({'id':_0x429209,'width':0x140,'header':{'title':this[_0x4a3c84(0x4a0)]['t'](_0x4a3c84(0x5eb))},'children':{'label':_0x429209},'onClose':()=>{const _0x313c25=_0x4a3c84;this[_0x313c25(0x69f)]=void 0x0;}})));}};_0x1577d3=_0x3ef5be([_0x4a4ad7(0x0,_0x2894d3[_0x59d572(0x50a)]),_0x4a4ad7(0x1,_0x480239[_0x59d572(0x3d7)]),_0x4a4ad7(0x2,(0x0,_0x2894d3[_0x59d572(0xbd8)])(_0x2894d3[_0x59d572(0x3e8)]))],_0x1577d3);let _0x23e62c=function(_0x5b4153){const _0x286374=_0x59d572;return _0x5b4153[_0x286374(0x1c7)]=_0x286374(0x918),_0x5b4153[_0x286374(0x618)]=_0x286374(0x50b),_0x5b4153[_0x286374(0x176)]=_0x286374(0x6bd),_0x5b4153[_0x286374(0x34c)]=_0x286374(0x551),_0x5b4153[_0x286374(0x903)]=_0x286374(0x297),_0x5b4153;}({}),_0x3c0cd7=(0x0,_0x2894d3['createIdentifier'])('pdfs-ui.pdf-page-thumbnail-action.service'),_0xf3040b=(0x0,_0x2894d3[_0x59d572(0x11f)])(_0x59d572(0xbdb));var _0x498683=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(..._0x1f7e62){const _0x5ee73b=_0x59d572;super(..._0x1f7e62),_0x22e50d(this,'_context$',new _0x3fc99d['BehaviorSubject'](null)),_0x22e50d(this,'context$',this[_0x5ee73b(0x512)]['asObservable']());}get[_0x59d572(0x12b)](){const _0x47dce3=_0x59d572;return _0x17245c(this[_0x47dce3(0x512)][_0x47dce3(0x85b)]);}['setContext'](_0x24d8f5){const _0x5c1789=_0x59d572;this[_0x5c1789(0x512)][_0x5c1789(0x91b)](_0x17245c(_0x24d8f5));}['clearContext'](){const _0x36fae3=_0x59d572;this[_0x36fae3(0x512)][_0x36fae3(0x85b)]&&this[_0x36fae3(0x512)][_0x36fae3(0x91b)](null);}[_0x59d572(0xa9e)](){const _0x410632=_0x59d572;this[_0x410632(0x512)][_0x410632(0x7f2)](),super[_0x410632(0xa9e)]();}};function _0x32c586(_0x5990bf){const _0x33d16a=_0x59d572;return{'canMoveUp':_0x5990bf[_0x33d16a(0x6c2)]>0x0,'canMoveDown':_0x5990bf[_0x33d16a(0x6c2)]>=0x0&&_0x5990bf['pageIndex']<_0x5990bf['pageCount']-0x1,'canCopy':!0x0,'canRotateClockwise':!0x0,'canDelete':_0x5990bf[_0x33d16a(0x8c4)]>0x1};}function _0x17245c(_0xe04155){return _0xe04155?{..._0xe04155}:null;}function _0x55aace(_0x4f6c46,_0x26ee39){const _0x229e00=_0x59d572;return{'id':_0x4f6c46,'type':_0x2894d3[_0x229e00(0x46f)]['OPERATION'],'handler':_0x26c40d=>_0xa9e6c4(_0x26c40d,_0x26ee39)};}async function _0xa9e6c4(_0xecaf9c,_0x4a23a8){const _0x2ed0cb=_0x59d572;let _0x321a18=_0xecaf9c[_0x2ed0cb(0x2ad)](_0xf3040b),_0x1721fd=_0x321a18[_0x2ed0cb(0x12b)];if(!_0x1721fd)return!0x1;let _0x4bbfd2=await _0xecaf9c['get'](_0x3c0cd7)[_0x2ed0cb(0x1ad)](_0x4a23a8,_0x1721fd);return _0x4bbfd2&&_0x321a18['clearContext'](),_0x4bbfd2;}let _0x51dc47=_0x55aace(_0x59d572(0x30f),_0x59d572(0x918)),_0x14897a=_0x55aace('pdfs-ui.operation.page-thumbnail.move-down',_0x59d572(0x50b)),_0x14ea96=_0x55aace(_0x59d572(0xa3c),_0x59d572(0x6bd)),_0x5c3236=_0x55aace('pdfs-ui.operation.page-thumbnail.rotate-clockwise','rotate-clockwise'),_0x32887d=_0x55aace(_0x59d572(0x5b3),'delete'),_0x5cfb25=[_0x51dc47,_0x14897a,_0x14ea96,_0x5c3236,_0x32887d];function _0x219650(){const _0x4f1b66=_0x59d572;return _0x26342(_0x21633b['id'],_0x4f1b66(0x72f));}function _0x4368d1(){const _0x3fccf2=_0x59d572;return _0x26342('pdf.menu.canvas.edit-text',_0x3fccf2(0x8b3),_0x5d9c21['id'],{'mode':_0x21fa40[_0x3fccf2(0x62b)][_0x3fccf2(0x97d)]});}function _0x1bcd03(){const _0x133f87=_0x59d572;return _0x26342(_0x133f87(0x94f),_0x133f87(0x571),_0x1a39fe['id'],{'axis':_0x133f87(0x890)});}function _0x310e3f(){const _0x1ee528=_0x59d572;return _0x26342(_0x1ee528(0x9f9),_0x1ee528(0xa1d),_0x1a39fe['id'],{'axis':'vertical'});}function _0x2ae4a2(){const _0x5d7aa7=_0x59d572;return _0x26342('pdf.menu.canvas.bring-forward',_0x5d7aa7(0x27f),_0x2b45f2['id'],{'delta':0x1});}function _0x217631(){const _0x557fed=_0x59d572;return _0x26342(_0x557fed(0x88d),'pdfs-ui.contextMenu.sendBackward',_0x2b45f2['id'],{'delta':-0x1});}function _0x42fa0e(){const _0x4d8d8e=_0x59d572;return _0x26342(_0x9f6b45['id'],_0x4d8d8e(0xbda));}function _0x26342(_0x3e4e90,_0x181339,_0x1b1c67=_0x3e4e90,_0xb1afd1){const _0x23e3dd=_0x59d572;return{'id':_0x3e4e90,'commandId':_0x1b1c67,'type':_0x480239[_0x23e3dd(0x591)]['BUTTON'],'title':_0x181339,..._0xb1afd1?{'params':_0xb1afd1}:{}};}function _0x31ba9e(_0x1a4258,_0x4f9215,_0x2c0128,_0x2e33cf){return _0x5b80fd=>{const _0x1de668=_0x57a5;let _0x51b738=_0x5b80fd[_0x1de668(0x2ad)](_0xf3040b),_0x25a619=_0x5b80fd[_0x1de668(0x2ad)](_0x3c0cd7),_0x5d0a90=_0x5b80fd[_0x1de668(0x2ad)](_0x2894d3[_0x1de668(0x3e8)])['t'](_0x4f9215);return{'id':_0x1a4258,'type':_0x480239['MenuItemType'][_0x1de668(0x7ac)],'title':_0x5d0a90,'tooltip':_0x5d0a90,'icon':_0x2c0128,'disabled$':_0x51b738[_0x1de668(0xa32)][_0x1de668(0x1a1)]((0x0,_0x3fc99d[_0x1de668(0xb06)])(_0x5024e5=>!_0x5024e5||!_0x25a619['getState'](_0x5024e5)[_0x2e33cf]),(0x0,_0x3fc99d[_0x1de668(0x277)])())};};}let _0x2f58f8=_0x31ba9e(_0x51dc47['id'],_0x59d572(0x273),_0x59d572(0x663),_0x59d572(0x2a6)),_0x222b26=_0x31ba9e(_0x14897a['id'],_0x59d572(0xc24),'ArrowDownIcon',_0x59d572(0xc34)),_0x20bf7a=_0x31ba9e(_0x14ea96['id'],_0x59d572(0xb0f),_0x59d572(0x8b0),_0x59d572(0x68a)),_0x54697f=_0x31ba9e(_0x5c3236['id'],_0x59d572(0x8c8),_0x59d572(0x920),_0x59d572(0x43f)),_0x554534=_0x31ba9e(_0x32887d['id'],_0x59d572(0x1b3),_0x59d572(0x1dc),_0x59d572(0x93c)),_0x3c5b33={[_0x480239[_0x59d572(0x2d7)][_0x59d572(0x9b3)]]:{[_0x480239[_0x59d572(0x200)]['FORMAT']]:{[_0xf9f9bc['id']]:{'order':-0x1,'menuItemFactory':_0x1c8ff9},[_0x5d9c21['id']]:{'order':0x0,'menuItemFactory':_0x444489},'pdf.menu.tool.text':{'order':0x1,'menuItemFactory':_0x3885d5},'pdf.menu.flip.horizontal':{'order':0x2,'menuItemFactory':_0x5672da},[_0x1a39fe['id']]:{'order':0x3,'menuItemFactory':_0x560a96}}},[_0x480239[_0x59d572(0x2d7)][_0x59d572(0x4b7)]]:{[_0x480239['RibbonInsertGroup'][_0x59d572(0x509)]]:{[_0x21633b['id']]:{'order':0xa,'menuItemFactory':_0x4bce30},[_0x4a4ac1['id']]:{'order':0xb,'menuItemFactory':_0x5c115c},[_0x5cec20['id']]:{'order':0xc,'menuItemFactory':_0x4584ea},[_0x4e5f47['id']]:{'order':0xd,'menuItemFactory':_0x3b0f09},[_0x34f394['id']]:{'order':0xe,'menuItemFactory':_0x7a8163},[_0x44c0ee['id']]:{'order':0xf,'menuItemFactory':_0x3bff34}}},[_0x480239['RibbonPosition'][_0x59d572(0x76c)]]:{[_0x480239[_0x59d572(0x2ae)][_0x59d572(0x4cb)]]:{[_0x23ae61['id']]:{'order':0x0,'menuItemFactory':_0x20c05d},'pdf.menu.view.bounds':{'order':0x1,'menuItemFactory':_0x9f98f9},'pdf.menu.view.raw':{'order':0x2,'menuItemFactory':_0x9890dc}}}},_0x5b958a={'pdfs.contextMenu.page-thumbnail':{[_0x480239[_0x59d572(0x2db)][_0x59d572(0x25b)]]:{[_0x51dc47['id']]:{'order':0x0,'menuItemFactory':_0x2f58f8},[_0x14897a['id']]:{'order':0x1,'menuItemFactory':_0x222b26},[_0x14ea96['id']]:{'order':0x2,'menuItemFactory':_0x20bf7a},[_0x5c3236['id']]:{'order':0x3,'menuItemFactory':_0x54697f},[_0x32887d['id']]:{'order':0x4,'menuItemFactory':_0x554534}}}},_0x3e7b46={'pdfs.contextMenu.canvas':{[_0x480239[_0x59d572(0x2db)][_0x59d572(0x25b)]]:{[_0x21633b['id']]:{'order':0x0,'menuItemFactory':_0x219650},'pdf.menu.canvas.edit-text':{'order':0x1,'menuItemFactory':_0x4368d1},'pdf.menu.canvas.flip-horizontal':{'order':0x2,'menuItemFactory':_0x1bcd03},'pdf.menu.canvas.flip-vertical':{'order':0x3,'menuItemFactory':_0x310e3f},'pdf.menu.canvas.bring-forward':{'order':0x4,'menuItemFactory':_0x2ae4a2},'pdf.menu.canvas.send-backward':{'order':0x5,'menuItemFactory':_0x217631},'pdf.operation.delete-selection':{'order':0x6,'menuItemFactory':_0x42fa0e}}}},_0x5aa2a6=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(_0x5cdfda,_0x4f440c){const _0x1bb8c2=_0x59d572;super(),this[_0x1bb8c2(0x7b8)]=_0x5cdfda,this[_0x1bb8c2(0xa02)]=_0x4f440c,this[_0x1bb8c2(0x7b8)][_0x1bb8c2(0xa64)](_0x5b958a),this['_menuManagerService'][_0x1bb8c2(0xa64)](_0x3e7b46),_0x5cfb25[_0x1bb8c2(0xc9d)](_0x2c6790=>{const _0x44e3b3=_0x1bb8c2;this[_0x44e3b3(0x17b)](this[_0x44e3b3(0xa02)][_0x44e3b3(0x448)](_0x2c6790));});}};_0x5aa2a6=_0x3ef5be([_0x4a4ad7(0x0,_0x480239[_0x59d572(0x37d)]),_0x4a4ad7(0x1,_0x2894d3[_0x59d572(0x727)])],_0x5aa2a6);let _0x383125=class extends _0x2894d3['Disposable']{constructor(_0x24748e){const _0x33bb40=_0x59d572;super(),_0x24748e[_0x33bb40(0x48f)](_0x3c5b33);}};_0x383125=_0x3ef5be([_0x4a4ad7(0x0,_0x480239[_0x59d572(0x37d)])],_0x383125);function _0x289788(_0x23f7ef,_0x2c55c8){const _0x16c9dd=_0x59d572;let _0x375be4=_0x8b1958(Math[_0x16c9dd(0xb2a)](_0x23f7ef[0x0],_0x23f7ef[0x2]),_0x2c55c8),_0x49e8ef=_0x8b1958(Math[_0x16c9dd(0xb2a)](_0x23f7ef[0x1],_0x23f7ef[0x3]),_0x2c55c8),_0x34b3d5=_0x8b1958(Math[_0x16c9dd(0x542)](_0x23f7ef[0x0],_0x23f7ef[0x2]),_0x2c55c8),_0x14ba57=_0x8b1958(Math['max'](_0x23f7ef[0x1],_0x23f7ef[0x3]),_0x2c55c8);return{'x':_0x375be4,'y':_0x49e8ef,'width':_0x34b3d5-_0x375be4,'height':_0x14ba57-_0x49e8ef};}function _0x8b1958(_0x157a04,_0x4edc28){const _0xca98af=_0x59d572;return(0x0,_0x21fa40[_0xca98af(0xb35)])(_0x157a04)*_0x4edc28[_0xca98af(0x68e)];}function _0x254b4d(_0x1f534d,_0x4966e7,_0x14dd04){const _0x5bfd2f=_0x59d572;if(!_0x4966e7)return[..._0x1f534d];let [_0x253bc8,_0x369b38,_0x346660,_0x393322,_0x4ae0c2,_0x154cda]=_0x4966e7,_0x52773f=_0x253bc8*_0x393322-_0x369b38*_0x346660;if(Math[_0x5bfd2f(0x7f7)](_0x52773f)<1e-8)return;let _0x4f1f70=_0x1f534d[0x0]-_0x8b1958(_0x4ae0c2,_0x14dd04),_0x2f4e51=_0x1f534d[0x1]-_0x8b1958(_0x154cda,_0x14dd04);return[(_0x393322*_0x4f1f70-_0x346660*_0x2f4e51)/_0x52773f,(-_0x369b38*_0x4f1f70+_0x253bc8*_0x2f4e51)/_0x52773f];}let _0x2c32ba=_0x59d572(0xcad);function _0x5ad460(_0xdb8bef,_0x2b217d={}){const _0x30d07f=_0x59d572;var _0x3f7e6d,_0x3bf15d;let _0x419477=_0xdb8bef[_0x30d07f(0x83d)]?(_0x3f7e6d=_0x2b217d['document'])==null?void 0x0:_0x3f7e6d[_0x30d07f(0xc33)][_0x30d07f(0x261)][_0xdb8bef[_0x30d07f(0x83d)]]:void 0x0,_0x2a46c1=_0x419477&&_0x2b217d[_0x30d07f(0xb09)]?(_0x3bf15d=_0x2b217d['fontFamilyResolver'])==null?void 0x0:_0x3bf15d[_0x30d07f(0x3f4)](_0x2b217d,{'document':_0x2b217d[_0x30d07f(0xb09)],'font':_0x419477,'run':_0xdb8bef}):void 0x0;if(_0x2a46c1)return _0x3ff2c3(_0x2a46c1);let _0xbdedd1=_0x5a0371(_0x419477,_0xdb8bef[_0x30d07f(0xb3b)]);return _0xbdedd1?_0x7705f8(_0xbdedd1):_0x2c32ba;}function _0x372f47(_0x508e06,_0x151ff1,_0x52672d={}){const _0x299bee=_0x59d572;return''+(_0x508e06[_0x299bee(0x763)]?'italic\x20':'')+(_0x508e06[_0x299bee(0x576)]?'bold\x20':'')+_0x151ff1[_0x299bee(0xc51)](0x2)+_0x299bee(0x132)+_0x5ad460(_0x508e06,_0x52672d);}function _0x1e8e66(_0x59e43b){const _0x1ece89=_0x59d572;var _0x14a085,_0x2618af,_0x84e348,_0xb8b36;let _0x4e4a85=_0x569e79(_0x59e43b[_0x1ece89(0x975)]),_0x58f0d6=(_0x14a085=_0x59e43b[_0x1ece89(0x416)][0x0])==null?{'text':_0x4e4a85,'fontSize':0xc}:_0x14a085,_0x2acbc5=(0x0,_0x21fa40[_0x1ece89(0xb35)])((0x0,_0x21fa40[_0x1ece89(0x7c3)])(_0x58f0d6['fontSize']||0xc))*((_0x2618af=_0x59e43b[_0x1ece89(0xbf1)])==null?0x1:_0x2618af),_0x307d4b=_0x2acbc5*((_0x84e348=_0x59e43b[_0x1ece89(0x803)])==null?1.2:_0x84e348),_0x11fd9d=(_0xb8b36=_0x59e43b[_0x1ece89(0x92a)])==null?0x4:_0xb8b36,_0x594744=_0x372f47(_0x58f0d6,_0x2acbc5,_0x59e43b),_0x16150a=_0x59e43b['boxCssPx']['x']+_0x11fd9d,_0x4cd344=_0x59e43b['boxCssPx']['y']+_0x11fd9d,_0x3d20dd=Math[_0x1ece89(0x542)](0x0,_0x59e43b[_0x1ece89(0x969)][_0x1ece89(0x65c)]-_0x11fd9d*0x2),_0x5ef8bf=_0x405e42(_0x4e4a85)[_0x1ece89(0xb06)]((_0x3a1c62,_0xebb139)=>{const _0x808e47=_0x1ece89;let _0x5433b9=_0x59e43b[_0x808e47(0x5ad)](_0x3a1c62[_0x808e47(0x975)],_0x594744),_0x515314=_0x5e7248(_0x59e43b['textAnchor'],_0x16150a,_0x3d20dd,_0x5433b9),_0x467f9b=_0x4cd344+_0xebb139*_0x307d4b;return{'lineIndex':_0xebb139,'text':_0x3a1c62[_0x808e47(0x975)],'startOffset':_0x3a1c62['startOffset'],'endOffset':_0x3a1c62[_0x808e47(0xa5c)],'x':_0x515314,'y':_0x467f9b,'baselineY':_0x467f9b+_0x2acbc5,'width':_0x5433b9,'height':_0x307d4b,'font':_0x594744,'fontSizeCssPx':_0x2acbc5};});return{'text':_0x4e4a85,'textLength':_0x4e4a85[_0x1ece89(0xba6)],'boxCssPx':_0x59e43b[_0x1ece89(0x969)],'paddingCssPx':_0x11fd9d,'lineHeightCssPx':_0x307d4b,'fontSizeCssPx':_0x2acbc5,'font':_0x594744,'lines':_0x5ef8bf,'measureText':_0x59e43b[_0x1ece89(0x5ad)]};}function _0x125cb0(_0x3555b2,_0x5cb1a3){const _0x1ea420=_0x59d572;let _0x20422f=_0x52f6e1(_0x3555b2,_0x5cb1a3),_0x46df0f=_0x53f202(_0x5cb1a3,_0x20422f[_0x1ea420(0xb95)],_0x20422f['endOffset']),_0x24ef8e=_0x20422f[_0x1ea420(0x975)]['slice'](0x0,_0x46df0f-_0x20422f[_0x1ea420(0xb95)]);return{'x':_0x20422f['x']+_0x3c576b(_0x3555b2,_0x24ef8e,_0x20422f[_0x1ea420(0x7da)]),'y':_0x20422f['y'],'width':0x1,'height':_0x20422f[_0x1ea420(0x1ae)]};}function _0x6910b5(_0x5a9cfd,_0x1626f7){const _0xa0f195=_0x59d572;let _0x27ab27=_0x18cacd(_0x5a9cfd,_0x1626f7[0x1]),_0x36ae1a=_0x1626f7[0x0]-_0x27ab27['x'];if(_0x36ae1a<=0x0)return _0x27ab27['startOffset'];if(_0x36ae1a>=_0x27ab27[_0xa0f195(0x65c)])return _0x27ab27[_0xa0f195(0xa5c)];let _0x3e2c61=0x0,_0x22ca0b=_0x27ab27[_0xa0f195(0x975)]['length'];for(;_0x3e2c61<_0x22ca0b;){let _0x54591d=Math[_0xa0f195(0x559)]((_0x3e2c61+_0x22ca0b)/0x2);_0x36ae1a<(_0x3c576b(_0x5a9cfd,_0x27ab27[_0xa0f195(0x975)][_0xa0f195(0x688)](0x0,_0x54591d),_0x27ab27[_0xa0f195(0x7da)])+_0x3c576b(_0x5a9cfd,_0x27ab27[_0xa0f195(0x975)][_0xa0f195(0x688)](0x0,_0x54591d+0x1),_0x27ab27[_0xa0f195(0x7da)]))/0x2?_0x22ca0b=_0x54591d:_0x3e2c61=_0x54591d+0x1;}return _0x27ab27[_0xa0f195(0xb95)]+_0x3e2c61;}function _0x3813ef(_0x5df10a,_0x54600a){const _0x549644=_0x59d572;let _0x5dea27=_0x53f202(Math['min'](_0x54600a['start'],_0x54600a[_0x549644(0x392)]),0x0,_0x5df10a[_0x549644(0x4da)]),_0x1e66c0=_0x53f202(Math['max'](_0x54600a[_0x549644(0x3c1)],_0x54600a[_0x549644(0x392)]),0x0,_0x5df10a[_0x549644(0x4da)]);return _0x5dea27===_0x1e66c0?[]:_0x5df10a[_0x549644(0x9b2)][_0x549644(0x13c)](_0x307f08=>{const _0x2d951a=_0x549644;let _0x1392a7=Math[_0x2d951a(0x542)](_0x5dea27,_0x307f08[_0x2d951a(0xb95)]),_0x1cae26=Math[_0x2d951a(0xb2a)](_0x1e66c0,_0x307f08[_0x2d951a(0xa5c)]);if(_0x1392a7>=_0x1cae26)return[];let _0x572efa=_0x307f08['text']['slice'](0x0,_0x1392a7-_0x307f08[_0x2d951a(0xb95)]),_0x2b093d=_0x307f08[_0x2d951a(0x975)][_0x2d951a(0x688)](_0x1392a7-_0x307f08[_0x2d951a(0xb95)],_0x1cae26-_0x307f08['startOffset']),_0x32de20=_0x307f08['x']+_0x3c576b(_0x5df10a,_0x572efa,_0x307f08[_0x2d951a(0x7da)]),_0x36a624=_0x3c576b(_0x5df10a,_0x2b093d,_0x307f08[_0x2d951a(0x7da)]);return[{'x':_0x32de20,'y':_0x307f08['y'],'width':_0x36a624,'height':_0x307f08[_0x2d951a(0x1ae)]}];});}function _0x26e9f0(_0xad57ac){const _0x58a775=_0x59d572;let _0x387659=_0xad57ac[_0x58a775(0xbf8)](/\r\n/g,'\x0a')[_0x58a775(0xbf8)](/\r/g,'\x0a')['split']('\x0a');return _0x387659['length']?_0x387659:[''];}function _0x405e42(_0x389e98){const _0xa0cd92=_0x59d572;let _0x4a8b9c=[],_0x1c5075=0x0;for(let _0x5da8a8=0x0;_0x5da8a8<_0x389e98[_0xa0cd92(0xba6)];_0x5da8a8++)_0x389e98[_0x5da8a8]==='\x0a'&&(_0x4a8b9c[_0xa0cd92(0x381)]({'text':_0x389e98[_0xa0cd92(0x688)](_0x1c5075,_0x5da8a8),'startOffset':_0x1c5075,'endOffset':_0x5da8a8}),_0x1c5075=_0x5da8a8+0x1);return _0x4a8b9c[_0xa0cd92(0x381)]({'text':_0x389e98[_0xa0cd92(0x688)](_0x1c5075),'startOffset':_0x1c5075,'endOffset':_0x389e98[_0xa0cd92(0xba6)]}),_0x4a8b9c;}function _0x52f6e1(_0x12953e,_0x351f79){const _0x14365a=_0x59d572;var _0x54e8c6;let _0x8b3a=_0x53f202(_0x351f79,0x0,_0x12953e[_0x14365a(0x4da)]);for(let _0x28b54b of _0x12953e['lines'])if(_0x8b3a<=_0x28b54b['endOffset'])return _0x28b54b;return(_0x54e8c6=_0x12953e[_0x14365a(0x9b2)][_0x12953e['lines'][_0x14365a(0xba6)]-0x1])==null?{'lineIndex':0x0,'text':'','startOffset':0x0,'endOffset':0x0,'x':_0x12953e['boxCssPx']['x']+_0x12953e['paddingCssPx'],'y':_0x12953e['boxCssPx']['y']+_0x12953e['paddingCssPx'],'baselineY':_0x12953e[_0x14365a(0x969)]['y']+_0x12953e['paddingCssPx']+_0x12953e['fontSizeCssPx'],'width':0x0,'height':_0x12953e[_0x14365a(0x42f)],'font':_0x12953e[_0x14365a(0x7da)],'fontSizeCssPx':_0x12953e[_0x14365a(0x358)]}:_0x54e8c6;}function _0x18cacd(_0x1d1b95,_0x5ca7fb){const _0xc2806b=_0x59d572;var _0xe12664;for(let _0x4548a8 of _0x1d1b95[_0xc2806b(0x9b2)])if(_0x5ca7fb<_0x4548a8['y']+_0x4548a8['height'])return _0x4548a8;return(_0xe12664=_0x1d1b95[_0xc2806b(0x9b2)][_0x1d1b95[_0xc2806b(0x9b2)]['length']-0x1])==null?_0x52f6e1(_0x1d1b95,_0x1d1b95['textLength']):_0xe12664;}function _0x3c576b(_0x4c1c49,_0x7908aa,_0x3ea29c){return _0x4c1c49['measureText'](_0x7908aa,_0x3ea29c);}function _0x5e7248(_0x57073c,_0x1345b9,_0x3feab6,_0x1aec2c){const _0x4f04f6=_0x59d572;switch(_0x57073c){case _0x21fa40[_0x4f04f6(0x938)][_0x4f04f6(0x745)]:return _0x1345b9+Math[_0x4f04f6(0x542)](0x0,(_0x3feab6-_0x1aec2c)/0x2);case _0x21fa40[_0x4f04f6(0x938)][_0x4f04f6(0x281)]:return _0x1345b9+Math[_0x4f04f6(0x542)](0x0,_0x3feab6-_0x1aec2c);case _0x21fa40[_0x4f04f6(0x938)][_0x4f04f6(0x9b3)]:default:return _0x1345b9;}}function _0x569e79(_0x5504db){const _0x49ade1=_0x59d572;return _0x5504db[_0x49ade1(0xbf8)](/\r\n/g,'\x0a')[_0x49ade1(0xbf8)](/\r/g,'\x0a');}function _0x53f202(_0x3710a4,_0x1b60a2,_0x2a1ac0){const _0x400e3b=_0x59d572;return Math[_0x400e3b(0x542)](_0x1b60a2,Math[_0x400e3b(0xb2a)](_0x2a1ac0,Math[_0x400e3b(0x74c)](_0x3710a4)));}function _0x5a0371(_0x484397,_0x417121){const _0x36fb80=_0x59d572;var _0x55d1bd,_0x10bef7,_0x3ddefd;let _0x3ca9be=(_0x55d1bd=(_0x10bef7=(_0x3ddefd=_0x484397==null?void 0x0:_0x484397[_0x36fb80(0x858)])==null?_0x484397==null?void 0x0:_0x484397[_0x36fb80(0x29f)]:_0x3ddefd)==null?_0x417121:_0x10bef7)==null?'':_0x55d1bd,_0x578303=_0x3ca9be[_0x36fb80(0x3dc)]('/')?_0x3ca9be[_0x36fb80(0x688)](0x1):_0x3ca9be,_0x31f117=(_0x578303[_0x36fb80(0x8a8)]('+')?_0x578303[_0x36fb80(0x688)](_0x578303[_0x36fb80(0x709)]('+')+0x1):_0x578303)[_0x36fb80(0xbf8)](/[^A-Za-z0-9 _-]/g,'')[_0x36fb80(0x4d9)]();return!_0x484397&&/^F\d+$/i[_0x36fb80(0xc39)](_0x31f117)?'':_0x31f117;}function _0x7705f8(_0x3ac71a){const _0x1d53d2=_0x59d572;let _0x455e87=_0x3ac71a[_0x1d53d2(0xc97)]();return _0x455e87==='ARIAL'||_0x455e87['includes'](_0x1d53d2(0x22d))?_0x2c32ba:_0x455e87[_0x1d53d2(0x8a8)](_0x1d53d2(0x59b))||_0x455e87['includes']('SERIF')?_0x1d53d2(0x91e):_0x14cbc3(_0x3ac71a)||_0x3ac71a[_0x1d53d2(0x8a8)](',')?_0x3ac71a:_0x2b083c(_0x3ac71a)+',\x20'+_0x2c32ba;}function _0x3ff2c3(_0x19e788){const _0x30b6a3=_0x59d572;let _0x1cc6f5=_0x19e788[_0x30b6a3(0x4d9)]();return!_0x1cc6f5||_0x1cc6f5[_0x30b6a3(0x8a8)](',')?_0x1cc6f5||_0x2c32ba:_0x1cc6f5+',\x20'+_0x2c32ba;}function _0x2b083c(_0x4f18c2){const _0xf7bddd=_0x59d572;return'\x22'+_0x4f18c2['replace'](/\\/g,'\x5c\x5c')[_0xf7bddd(0xbf8)](/"/g,'\x5c\x22')+'\x22';}function _0x14cbc3(_0x5d9d9d){const _0x54f6f4=_0x59d572;return['serif','sans-serif','monospace','cursive',_0x54f6f4(0xb0e),'system-ui'][_0x54f6f4(0x8a8)](_0x5d9d9d[_0x54f6f4(0x1c2)]());}function _0x350cc0(_0x4ada07){const _0xf0f29c=_0x59d572;var _0xa92f09,_0x6f65de,_0x51999b;let _0x35fcad=(_0xa92f09=_0x4ada07[_0xf0f29c(0x92a)])==null?0x4:_0xa92f09,_0x32306c=(_0x6f65de=_0x4ada07[_0xf0f29c(0xbf1)])==null?0x1:_0x6f65de,_0x16b1cc=_0x4ada07[_0xf0f29c(0x969)]['x']+_0x35fcad,_0x2a3537=_0x4ada07[_0xf0f29c(0x969)]['x']+_0x4ada07[_0xf0f29c(0x969)][_0xf0f29c(0x65c)]-_0x35fcad,_0x56bd84=new Map((0x0,_0x21fa40[_0xf0f29c(0xa79)])(_0x4ada07[_0xf0f29c(0x8a3)])[_0xf0f29c(0xb06)](_0x501200=>[_0x501200['blockId'],_0x501200])),_0x5d29ac=_0x4ada07[_0xf0f29c(0x8a3)]['blocks'][_0xf0f29c(0xb06)](_0x5437cb=>_0x40d887(_0x4ada07[_0xf0f29c(0x8a3)],_0x5437cb)),_0x5495fc=_0x5d29ac[_0xf0f29c(0xb26)]('\x0a'),_0x25a9f2=[],_0xee5455=0x0,_0x190a17=_0x4ada07[_0xf0f29c(0x969)]['y']+_0x35fcad;_0x4ada07[_0xf0f29c(0x8a3)][_0xf0f29c(0x878)][_0xf0f29c(0xc9d)]((_0x70da63,_0x403d58)=>{const _0x3ed43f=_0xf0f29c;var _0x8334e4;let _0x176ab5=(_0x8334e4=_0x5d29ac[_0x403d58])==null?'':_0x8334e4,_0x59084a=_0x148c4c(_0x4ada07['story'],_0x70da63,_0x176ab5),_0x391daa=_0x56bd84['get'](_0x70da63['id']),_0x462ac2=_0x391daa==null?void 0x0:_0x391daa[_0x3ed43f(0x66c)],_0x35d495=_0x66f534(_0x70da63['spacingBefore'],_0x32306c),_0x13a0ea=_0x66f534(_0x70da63[_0x3ed43f(0x16a)],_0x32306c),_0x48e3c1=_0x66f534(_0x70da63[_0x3ed43f(0x7a3)],_0x32306c),_0x1adc5c=_0x66f534(_0x70da63[_0x3ed43f(0xa13)],_0x32306c),_0x38a61e=_0x66f534(_0x70da63['firstLineIndent'],_0x32306c),_0x1e52f2=_0x66f534(_0x462ac2==null?void 0x0:_0x462ac2[_0x3ed43f(0xa57)],_0x32306c),_0x534184=_0x16b1cc+_0x48e3c1+_0x1e52f2,_0xe7fc0=_0x534184+_0x38a61e,_0x542320=_0x2a3537-_0x1adc5c,_0x2d6b6c=_0x983fff(_0x4ada07,_0x70da63,_0x32306c),_0x37bba3=(0x0,_0x21fa40['emuToCssPx'])((0x0,_0x21fa40['ptToEmu'])(_0x59084a['fontSize']||0xc))*_0x32306c,_0x2cf0fb=_0x372f47(_0x59084a,_0x37bba3,_0x4ada07),_0x1a196e=_0x1d1089(_0x176ab5,_0x59f413=>Math[_0x3ed43f(0x542)](0x1,_0x542320-(_0x59f413===0x0?_0xe7fc0:_0x534184)),(_0x5bdf6d,_0x33ac2d)=>_0x30f20d(_0x4ada07,_0x176ab5,_0x2d6b6c,_0x5bdf6d,_0x33ac2d,_0x2cf0fb)),_0x168cca=_0x190a17+_0x35d495,_0x470f2a=_0x168cca,_0x4fb623=_0x1a196e[_0x3ed43f(0xb06)]((_0x3f5d52,_0x48f895)=>{const _0x5ac764=_0x3ed43f;var _0x580cac,_0x32dda8;let _0x998de1=_0x48f895===0x0?_0xe7fc0:_0x534184,_0x2ff86d=Math[_0x5ac764(0x542)](0x1,_0x542320-_0x998de1),_0x35223b=_0x4e080e(_0x4ada07,_0x176ab5,_0x2d6b6c,_0x3f5d52,_0xee5455,_0x998de1,_0x2cf0fb,_0x37bba3,_0x59084a['fill']),_0x3c0767=_0x35223b['reduce']((_0x40760b,_0x1a7e83)=>_0x40760b+_0x1a7e83[_0x5ac764(0x65c)],0x0),_0x3cb95c=_0x3dbda7(_0x70da63[_0x5ac764(0xbd5)],_0x998de1,_0x2ff86d,_0x3c0767);if(_0x3cb95c!==_0x998de1){let _0x4ec89f=_0x3cb95c-_0x998de1;for(let _0x461e31 of _0x35223b)_0x461e31['x']+=_0x4ec89f;}let _0x1d2edc=Math[_0x5ac764(0x542)](_0x37bba3,..._0x35223b[_0x5ac764(0xb06)](_0x394ee0=>_0x394ee0[_0x5ac764(0x358)])),_0x466304=_0x1d2edc*_0x2cb0b8(_0x70da63[_0x5ac764(0x803)]),_0x40b363=_0x35223b[0x0],_0x45e37e={'blockId':_0x70da63['id'],'text':_0x176ab5[_0x5ac764(0x688)](_0x3f5d52['startOffset'],_0x3f5d52[_0x5ac764(0xa5c)]),'startOffset':_0xee5455+_0x3f5d52[_0x5ac764(0xb95)],'endOffset':_0xee5455+_0x3f5d52['endOffset'],'x':_0x3cb95c,'y':_0x470f2a,'baselineY':_0x470f2a+_0x1d2edc,'width':_0x3c0767,'height':_0x466304,'font':(_0x580cac=_0x40b363==null?void 0x0:_0x40b363['font'])==null?_0x2cf0fb:_0x580cac,'fontSizeCssPx':_0x1d2edc,'fill':(_0x32dda8=_0x40b363==null?void 0x0:_0x40b363['fill'])==null?_0x59084a[_0x5ac764(0x9ae)]:_0x32dda8,'spans':_0x35223b};return _0x470f2a+=_0x466304,_0x45e37e;}),_0x98d16f=Math[_0x3ed43f(0x542)](_0x168cca,_0x470f2a),_0x5f14d5=_0x4fb623[0x0],_0x298793={'blockId':_0x70da63['id'],'text':_0x176ab5,'startOffset':_0xee5455,'endOffset':_0xee5455+_0x176ab5['length'],'y':_0x168cca,'bottom':_0x98d16f,'bodyX':_0x534184,'lines':_0x4fb623,'runRanges':_0x2d6b6c};if(_0x391daa&&_0x5f14d5){var _0x224dcb,_0x5bbd42;let _0x50a9a6={..._0x59084a,..._0x462ac2==null?void 0x0:_0x462ac2[_0x3ed43f(0x145)],'text':_0x391daa['marker'],'fontSize':(_0x224dcb=_0x462ac2==null||(_0x5bbd42=_0x462ac2[_0x3ed43f(0x145)])==null?void 0x0:_0x5bbd42[_0x3ed43f(0x845)])==null?_0x59084a[_0x3ed43f(0x845)]:_0x224dcb},_0x4eadff=_0x372f47(_0x50a9a6,(0x0,_0x21fa40[_0x3ed43f(0xb35)])((0x0,_0x21fa40['ptToEmu'])(_0x50a9a6['fontSize']||0xc))*_0x32306c,_0x4ada07),_0xe59cde=_0x4ada07['measureText'](_0x391daa[_0x3ed43f(0xbe3)],_0x4eadff),_0x218b01=_0x66f534(_0x462ac2==null?void 0x0:_0x462ac2[_0x3ed43f(0x897)],_0x32306c),_0x1468be=_0x66f534(_0x462ac2==null?void 0x0:_0x462ac2[_0x3ed43f(0x7c5)],_0x32306c),_0x49f9b0=Math[_0x3ed43f(0x542)](_0x16b1cc,_0x534184-_0x218b01),_0xdf61e9=Math[_0x3ed43f(0x542)](_0x16b1cc,_0x49f9b0-_0x1468be);_0x298793[_0x3ed43f(0xbe3)]=_0x391daa['marker'],_0x298793[_0x3ed43f(0x6d3)]=_0x1b3a44(_0x462ac2==null?void 0x0:_0x462ac2[_0x3ed43f(0xb17)],_0xdf61e9,_0x49f9b0,_0xe59cde),_0x298793[_0x3ed43f(0x97b)]=_0x5f14d5['baselineY'],_0x298793[_0x3ed43f(0x78a)]=_0x4eadff,_0x298793['markerFill']=_0x50a9a6[_0x3ed43f(0x9ae)];}_0x25a9f2[_0x3ed43f(0x381)](_0x298793),_0x190a17=_0x98d16f+_0x13a0ea,_0xee5455+=_0x176ab5['length']+ +(_0x403d58<_0x4ada07[_0x3ed43f(0x8a3)][_0x3ed43f(0x878)][_0x3ed43f(0xba6)]-0x1);});let _0x5e51fe=Math[_0xf0f29c(0x542)](0x0,_0x190a17-(_0x4ada07[_0xf0f29c(0x969)]['y']+_0x35fcad)),_0x5a1278=Math[_0xf0f29c(0x542)](0x0,_0x5e51fe+_0x35fcad*0x2),_0x28d82a=Math[_0xf0f29c(0x542)](0x0,(_0x51999b=_0x4ada07[_0xf0f29c(0xca9)])==null?_0x4ada07[_0xf0f29c(0x969)][_0xf0f29c(0x1ae)]:_0x51999b),_0x5a587b=Math[_0xf0f29c(0xb2a)](_0x5a1278,_0x28d82a);return{'text':_0x5495fc,'textLength':_0x5495fc[_0xf0f29c(0xba6)],'blocks':_0x25a9f2,'contentHeightCssPx':_0x5e51fe,'requiredHeightCssPx':_0x5a1278,'appliedHeightCssPx':_0x5a587b,'overflow':_0x5a1278-_0x28d82a>0.5,'measureText':_0x4ada07['measureText']};}function _0x570816(_0x22e049,_0x1181e0){const _0x429d28=_0x59d572;var _0x173ad3;let _0x40bcb8=_0x22e049[_0x429d28(0x878)][_0x429d28(0x13c)](_0x392b00=>_0x392b00[_0x429d28(0x9b2)][_0x429d28(0xb06)](_0x57df02=>({'block':_0x392b00,'line':_0x57df02}))),_0xf631=(_0x173ad3=_0x40bcb8[_0x429d28(0x816)](({line:_0x2616bd})=>_0x1181e0[0x1]<_0x2616bd['y']+_0x2616bd['height']))==null?_0x40bcb8[_0x40bcb8[_0x429d28(0xba6)]-0x1]:_0x173ad3;if(!_0xf631)return;let {block:_0x485e86,line:_0x26ccdd}=_0xf631,_0x2b7cf6=_0x1181e0[0x0]-_0x26ccdd['x'],_0x56c3c0=_0x26ccdd[_0x429d28(0xb95)];if(_0x2b7cf6>=_0x26ccdd['width'])_0x56c3c0=_0x26ccdd[_0x429d28(0xa5c)];else{if(_0x2b7cf6>0x0){let _0x2d5b82=_0x26ccdd['startOffset'],_0x2da844=_0x26ccdd[_0x429d28(0xa5c)];for(;_0x2d5b82<_0x2da844;){let _0x472706=Math['floor']((_0x2d5b82+_0x2da844)/0x2);_0x2b7cf6<(_0x5d99f8(_0x22e049,_0x26ccdd,_0x26ccdd[_0x429d28(0xb95)],_0x472706)+_0x5d99f8(_0x22e049,_0x26ccdd,_0x26ccdd[_0x429d28(0xb95)],_0x472706+0x1))/0x2?_0x2da844=_0x472706:_0x2d5b82=_0x472706+0x1;}_0x56c3c0=_0x2d5b82;}}let _0x54a031=_0x5a8c0c(_0x56c3c0-_0x485e86['startOffset'],0x0,_0x485e86[_0x429d28(0x975)][_0x429d28(0xba6)]),_0x1ce066=_0x415c51(_0x485e86,_0x54a031);if(_0x1ce066)return{'blockId':_0x485e86[_0x429d28(0x9fb)],'offset':_0x54a031,'storyOffset':_0x56c3c0,'runId':_0x1ce066[_0x429d28(0x5d4)],'runOffset':_0x5a8c0c(_0x54a031-_0x1ce066[_0x429d28(0xb95)],0x0,_0x1ce066[_0x429d28(0xaa9)][_0x429d28(0x975)]['length'])};}function _0x1d427a(_0x1ca93d,_0x1def29,_0x361a0f){const _0x29a9ef=_0x59d572;var _0x1ea76b;let _0x3d59fc=_0x1ca93d[_0x29a9ef(0x878)][_0x29a9ef(0x816)](_0x12b7f3=>_0x12b7f3[_0x29a9ef(0x9fb)]===_0x1def29);if(!_0x3d59fc)return;let _0x55a5c3=_0x5a8c0c(_0x361a0f,0x0,_0x3d59fc[_0x29a9ef(0x975)][_0x29a9ef(0xba6)])+_0x3d59fc[_0x29a9ef(0xb95)],_0x3756db=(_0x1ea76b=_0x3d59fc[_0x29a9ef(0x9b2)]['find'](_0x4fa8e3=>_0x55a5c3<=_0x4fa8e3[_0x29a9ef(0xa5c)]))==null?_0x3d59fc[_0x29a9ef(0x9b2)][_0x3d59fc[_0x29a9ef(0x9b2)][_0x29a9ef(0xba6)]-0x1]:_0x1ea76b;if(!_0x3756db)return;let _0x20c118=_0x5a8c0c(_0x55a5c3,_0x3756db[_0x29a9ef(0xb95)],_0x3756db[_0x29a9ef(0xa5c)]);return{'x':_0x3756db['x']+_0x5d99f8(_0x1ca93d,_0x3756db,_0x3756db[_0x29a9ef(0xb95)],_0x20c118),'y':_0x3756db['y'],'width':0x1,'height':_0x3756db[_0x29a9ef(0x1ae)]};}function _0x406d93(_0x156299,_0x53ba75,_0x1453d8){const _0xdd7888=_0x59d572;let _0x455cc9=_0x156299[_0xdd7888(0x878)][_0xdd7888(0x816)](_0xbd8804=>_0xbd8804[_0xdd7888(0x9fb)]===_0x53ba75);if(!_0x455cc9)return[];let _0x14a3d5=_0x455cc9[_0xdd7888(0xb95)]+_0x5a8c0c(Math[_0xdd7888(0xb2a)](_0x1453d8[_0xdd7888(0x3c1)],_0x1453d8[_0xdd7888(0x392)]),0x0,_0x455cc9[_0xdd7888(0x975)]['length']),_0x39111f=_0x455cc9[_0xdd7888(0xb95)]+_0x5a8c0c(Math[_0xdd7888(0x542)](_0x1453d8[_0xdd7888(0x3c1)],_0x1453d8[_0xdd7888(0x392)]),0x0,_0x455cc9[_0xdd7888(0x975)][_0xdd7888(0xba6)]);return _0x14a3d5===_0x39111f?[]:_0x455cc9[_0xdd7888(0x9b2)][_0xdd7888(0x13c)](_0xe79065=>{const _0x3f4197=_0xdd7888;let _0x43cf91=Math[_0x3f4197(0x542)](_0x14a3d5,_0xe79065[_0x3f4197(0xb95)]),_0x312583=Math[_0x3f4197(0xb2a)](_0x39111f,_0xe79065['endOffset']);return _0x43cf91>=_0x312583?[]:[{'x':_0xe79065['x']+_0x5d99f8(_0x156299,_0xe79065,_0xe79065['startOffset'],_0x43cf91),'y':_0xe79065['y'],'width':_0x5d99f8(_0x156299,_0xe79065,_0x43cf91,_0x312583),'height':_0xe79065[_0x3f4197(0x1ae)]}];});}function _0x983fff(_0x5c4014,_0x448a79,_0x2616c6){const _0x5f134c=_0x59d572;let _0x44b039=[],_0x2f7644=0x0;for(let _0x588121 of _0x448a79[_0x5f134c(0xc0a)]){let _0x1e8e3c=_0x5c4014[_0x5f134c(0x8a3)][_0x5f134c(0x416)][_0x588121];if(!_0x1e8e3c)continue;let _0x560c9e=(0x0,_0x21fa40[_0x5f134c(0xb35)])((0x0,_0x21fa40[_0x5f134c(0x7c3)])(_0x1e8e3c[_0x5f134c(0x845)]||0xc))*_0x2616c6;_0x44b039[_0x5f134c(0x381)]({'runId':_0x588121,'run':_0x1e8e3c,'startOffset':_0x2f7644,'endOffset':_0x2f7644+_0x1e8e3c['text'][_0x5f134c(0xba6)],'font':_0x372f47(_0x1e8e3c,_0x560c9e,_0x5c4014),'fontSizeCssPx':_0x560c9e}),_0x2f7644+=_0x1e8e3c[_0x5f134c(0x975)][_0x5f134c(0xba6)];}return _0x44b039;}function _0x4e080e(_0x3d2e75,_0x2c0f82,_0x2e56b6,_0x30df28,_0x5092c4,_0x3d075a,_0x2e4a9f,_0x545587,_0x26a5cc){const _0x260ed5=_0x59d572;let _0x5ed1c9=[],_0x26c81c=_0x3d075a;for(let _0x28e848 of _0x2e56b6){let _0x476822=Math[_0x260ed5(0x542)](_0x30df28[_0x260ed5(0xb95)],_0x28e848[_0x260ed5(0xb95)]),_0x4da5cf=Math['min'](_0x30df28[_0x260ed5(0xa5c)],_0x28e848[_0x260ed5(0xa5c)]);if(_0x476822>=_0x4da5cf)continue;let _0xc708ef=_0x2c0f82['slice'](_0x476822,_0x4da5cf),_0x136836=_0x3d2e75['measureText'](_0xc708ef,_0x28e848[_0x260ed5(0x7da)]);_0x5ed1c9['push']({'runId':_0x28e848[_0x260ed5(0x5d4)],'text':_0xc708ef,'startOffset':_0x5092c4+_0x476822,'endOffset':_0x5092c4+_0x4da5cf,'runStartOffset':_0x476822-_0x28e848['startOffset'],'runEndOffset':_0x4da5cf-_0x28e848[_0x260ed5(0xb95)],'x':_0x26c81c,'width':_0x136836,'font':_0x28e848[_0x260ed5(0x7da)],'fontSizeCssPx':_0x28e848[_0x260ed5(0x358)],'fill':_0x28e848[_0x260ed5(0xaa9)][_0x260ed5(0x9ae)]}),_0x26c81c+=_0x136836;}if(!_0x5ed1c9[_0x260ed5(0xba6)]){var _0x5b4728,_0x3cf883;_0x5ed1c9[_0x260ed5(0x381)]({'runId':(_0x5b4728=(_0x3cf883=_0x2e56b6[0x0])==null?void 0x0:_0x3cf883[_0x260ed5(0x5d4)])==null?'':_0x5b4728,'text':'','startOffset':_0x5092c4+_0x30df28['startOffset'],'endOffset':_0x5092c4+_0x30df28[_0x260ed5(0xa5c)],'runStartOffset':_0x30df28[_0x260ed5(0xb95)],'runEndOffset':_0x30df28[_0x260ed5(0xa5c)],'x':_0x3d075a,'width':0x0,'font':_0x2e4a9f,'fontSizeCssPx':_0x545587,'fill':_0x26a5cc});}return _0x5ed1c9;}function _0x30f20d(_0x1f1c9c,_0x55db17,_0x1bfe84,_0x2d4413,_0x42e01b,_0x4b099e){const _0x158b69=_0x59d572;let _0x45baf7=0x0;for(let _0x279b7e of _0x1bfe84){let _0x440dcc=Math[_0x158b69(0x542)](_0x2d4413,_0x279b7e[_0x158b69(0xb95)]),_0xaf1826=Math[_0x158b69(0xb2a)](_0x42e01b,_0x279b7e[_0x158b69(0xa5c)]);_0x440dcc<_0xaf1826&&(_0x45baf7+=_0x1f1c9c[_0x158b69(0x5ad)](_0x55db17[_0x158b69(0x688)](_0x440dcc,_0xaf1826),_0x279b7e[_0x158b69(0x7da)]));}return _0x1bfe84[_0x158b69(0xba6)]?_0x45baf7:_0x1f1c9c['measureText'](_0x55db17['slice'](_0x2d4413,_0x42e01b),_0x4b099e);}function _0x5d99f8(_0x2b56b0,_0x189635,_0x1e795d,_0x2b03cd){const _0x15406f=_0x59d572;let _0x15fb19=0x0;for(let _0x2a6813 of _0x189635[_0x15406f(0x94d)]){let _0x40a4b7=Math[_0x15406f(0x542)](_0x1e795d,_0x2a6813[_0x15406f(0xb95)]),_0x4928c2=Math[_0x15406f(0xb2a)](_0x2b03cd,_0x2a6813[_0x15406f(0xa5c)]);if(_0x40a4b7<_0x4928c2){let _0x45babb=_0x40a4b7-_0x2a6813[_0x15406f(0xb95)],_0x226c5a=_0x4928c2-_0x2a6813[_0x15406f(0xb95)];_0x15fb19+=_0x2b56b0[_0x15406f(0x5ad)](_0x2a6813[_0x15406f(0x975)][_0x15406f(0x688)](_0x45babb,_0x226c5a),_0x2a6813[_0x15406f(0x7da)]);}}return _0x15fb19;}function _0x415c51(_0x10fdcf,_0x45bb12){const _0x52198c=_0x59d572;var _0x221377;return(_0x221377=_0x10fdcf[_0x52198c(0x396)][_0x52198c(0x816)](_0x4cac30=>_0x45bb12<_0x4cac30[_0x52198c(0xa5c)]))==null?_0x10fdcf[_0x52198c(0x396)][_0x10fdcf['runRanges'][_0x52198c(0xba6)]-0x1]:_0x221377;}function _0x40d887(_0x2b7ee3,_0x2e9d06){const _0x276eef=_0x59d572;return _0x2e9d06[_0x276eef(0xc0a)][_0x276eef(0xb06)](_0x200ee2=>{const _0x30eb17=_0x276eef;var _0x4a4555,_0x5d81cb;return(_0x4a4555=(_0x5d81cb=_0x2b7ee3[_0x30eb17(0x416)][_0x200ee2])==null?void 0x0:_0x5d81cb[_0x30eb17(0x975)])==null?'':_0x4a4555;})[_0x276eef(0xb26)]('');}function _0x148c4c(_0x3dfa6a,_0x1f2076,_0x2cdf8e){const _0x42c6b8=_0x59d572;let _0x1a18bb=_0x1f2076['runIds'][_0x42c6b8(0xb06)](_0x4db041=>_0x3dfa6a[_0x42c6b8(0x416)][_0x4db041])[_0x42c6b8(0x816)](Boolean);return _0x1a18bb==null?{'text':_0x2cdf8e,'fontSize':0xc}:_0x1a18bb;}function _0x2cb0b8(_0x27ba8b){return _0x27ba8b&&_0x27ba8b>0x0&&_0x27ba8b<=0x4?_0x27ba8b:1.2;}function _0x66f534(_0x56ff14,_0x8c5555){const _0x3f038d=_0x59d572;return _0x56ff14?(0x0,_0x21fa40[_0x3f038d(0xb35)])(_0x56ff14)*_0x8c5555:0x0;}function _0x3dbda7(_0x17ca8e,_0x3e8f15,_0x23484f,_0x5278a8){const _0xeb7a3f=_0x59d572;switch(_0x17ca8e){case _0xeb7a3f(0xa0f):return _0x3e8f15+Math['max'](0x0,(_0x23484f-_0x5278a8)/0x2);case'right':return _0x3e8f15+Math['max'](0x0,_0x23484f-_0x5278a8);default:return _0x3e8f15;}}function _0x1b3a44(_0x2c63d3,_0x5cb241,_0x4c7ebf,_0x2b52c4){const _0x1b103a=_0x59d572;switch(_0x2c63d3){case _0x21fa40[_0x1b103a(0xb15)][_0x1b103a(0x9b3)]:return _0x5cb241;case _0x21fa40[_0x1b103a(0xb15)][_0x1b103a(0x485)]:return _0x5cb241+Math[_0x1b103a(0x542)](0x0,(_0x4c7ebf-_0x5cb241-_0x2b52c4)/0x2);case _0x21fa40[_0x1b103a(0xb15)][_0x1b103a(0x281)]:default:return Math[_0x1b103a(0x542)](_0x5cb241,_0x4c7ebf-_0x2b52c4);}}function _0x5a8c0c(_0x258198,_0x345b07,_0x3e36b1){const _0x56b30e=_0x59d572;return Math[_0x56b30e(0x542)](_0x345b07,Math['min'](_0x3e36b1,Math[_0x56b30e(0x74c)](_0x258198)));}function _0x1d1089(_0x3503cf,_0x5885ac,_0x2d2648){const _0x2dfcf8=_0x59d572;let _0x49612a=[],_0x171fea=0x0;for(let _0x2d8b25=0x0;_0x2d8b25<=_0x3503cf[_0x2dfcf8(0xba6)];_0x2d8b25+=0x1)_0x2d8b25<_0x3503cf[_0x2dfcf8(0xba6)]&&_0x3503cf[_0x2d8b25]!=='\x0a'||(_0x1be907(_0x3503cf,_0x171fea,_0x2d8b25,_0x5885ac,_0x2d2648,_0x49612a),_0x171fea=_0x2d8b25+0x1);return _0x49612a['length']?_0x49612a:[{'startOffset':0x0,'endOffset':0x0}];}function _0x1be907(_0x17f5b6,_0x209253,_0x52147b,_0x30f9a7,_0x5fe64d,_0x4ed181){const _0x20bc28=_0x59d572;if(_0x209253===_0x52147b){_0x4ed181[_0x20bc28(0x381)]({'startOffset':_0x209253,'endOffset':_0x52147b});return;}let _0x221512=_0x209253;for(;_0x221512<_0x52147b;){var _0x432fcf;let _0x351f11=_0x221512,_0xa81655=-0x1,_0x4f583c=_0x30f9a7(_0x4ed181[_0x20bc28(0xba6)]);for(let _0x3eb7a6=_0x221512;_0x3eb7a6<_0x52147b;_0x3eb7a6+=0x1){var _0x4ef2ca;if(/\s/[_0x20bc28(0xc39)]((_0x4ef2ca=_0x17f5b6[_0x3eb7a6])==null?'':_0x4ef2ca)&&(_0xa81655=_0x3eb7a6),_0x5fe64d(_0x221512,_0x3eb7a6+0x1)>_0x4f583c)break;_0x351f11=_0x3eb7a6+0x1;}if(_0x351f11===_0x52147b){_0x4ed181['push']({'startOffset':_0x221512,'endOffset':_0x52147b});return;}_0x351f11===_0x221512&&(_0x351f11=Math[_0x20bc28(0xb2a)](_0x52147b,_0x221512+0x1));let _0x354bce=_0xa81655>=_0x221512&&_0xa81655<_0x351f11?_0xa81655:_0x351f11;for(_0x4ed181[_0x20bc28(0x381)]({'startOffset':_0x221512,'endOffset':_0x354bce}),_0x221512=_0x354bce;_0x221512<_0x52147b&&/\s/[_0x20bc28(0xc39)]((_0x432fcf=_0x17f5b6[_0x221512])==null?'':_0x432fcf);)_0x221512+=0x1;}}function _0x20455b(_0xf2e56b){const _0x287d11=_0x59d572;let _0x2b478f={'zoom':_0xf2e56b[_0x287d11(0x68e)]},_0x421540=_0xf2e56b[_0x287d11(0x4af)][_0x287d11(0x7a2)]['map'](_0x3e8994=>{const _0x518876=_0x287d11;var _0xbb7e72,_0xb185f2;let _0x5238a6=_0x289788((0x0,_0x21fa40[_0x518876(0x4e1)])(_0xf2e56b[_0x518876(0x4af)],_0x3e8994),_0x2b478f),_0xc503e2=(0x0,_0x21fa40[_0x518876(0xb90)])(_0xf2e56b[_0x518876(0x4af)],_0x3e8994),_0x1ef070=_0x3df64e(_0x5238a6,_0xc503e2,_0xf2e56b[_0x518876(0x68e)]),_0x4f14f9=_0xf2e56b[_0x518876(0xbe4)][_0x3e8994[_0x518876(0x7de)]],_0x19bb88=_0x4f14f9?_0x350cc0({'story':_0x4f14f9,'boxCssPx':_0x1ef070,'maxHeightCssPx':_0x1ef070[_0x518876(0x1ae)],'paddingCssPx':0x0,'fontSizeScale':_0xf2e56b['zoom'],'measureText':_0xf2e56b[_0x518876(0x5ad)],'document':_0xf2e56b[_0x518876(0xb09)],'fontFamilyResolver':_0xf2e56b['fontFamilyResolver']}):void 0x0,_0x53fefc=_0xa4f0a4(_0xc503e2[_0x518876(0x294)],_0x1ef070[_0x518876(0x1ae)],(_0xbb7e72=_0x19bb88==null?void 0x0:_0x19bb88[_0x518876(0x406)])==null?0x0:_0xbb7e72),_0x111911=_0x19bb88&&_0x53fefc>0x0?_0x12826e(_0x19bb88,_0x53fefc):_0x19bb88;return{'cell':_0x3e8994,'style':_0xc503e2,'outerBoxCssPx':_0x5238a6,'contentBoxCssPx':_0x1ef070,'story':_0x4f14f9,'storyLayout':_0x111911,'textOffsetYCssPx':_0x53fefc,'overflow':(_0xb185f2=_0x111911==null?void 0x0:_0x111911[_0x518876(0x1df)])!=null&&_0xb185f2};});return{'table':_0xf2e56b['table'],'zoom':_0xf2e56b[_0x287d11(0x68e)],'boxCssPx':_0x289788(_0xf2e56b[_0x287d11(0x4af)][_0x287d11(0xa01)],_0x2b478f),'cells':_0x421540};}function _0xa4f0a4(_0xdec119,_0x52d7cc,_0x1c7832){const _0x4c3ee0=_0x59d572;let _0x34abb5=Math[_0x4c3ee0(0x542)](0x0,_0x52d7cc-_0x1c7832);return _0xdec119===_0x21fa40[_0x4c3ee0(0xc1f)][_0x4c3ee0(0xc1e)]?_0x34abb5:_0xdec119===_0x21fa40[_0x4c3ee0(0xc1f)]['MIDDLE']?_0x34abb5/0x2:0x0;}function _0x12826e(_0x2a8d9b,_0x274ec9){const _0x43d8dd=_0x59d572;return{..._0x2a8d9b,'blocks':_0x2a8d9b['blocks'][_0x43d8dd(0xb06)](_0x4464df=>({..._0x4464df,'y':_0x4464df['y']+_0x274ec9,'bottom':_0x4464df[_0x43d8dd(0x354)]+_0x274ec9,'markerBaselineY':_0x4464df['markerBaselineY']===void 0x0?void 0x0:_0x4464df[_0x43d8dd(0x97b)]+_0x274ec9,'lines':_0x4464df['lines'][_0x43d8dd(0xb06)](_0x3fb1aa=>({..._0x3fb1aa,'y':_0x3fb1aa['y']+_0x274ec9,'baselineY':_0x3fb1aa['baselineY']+_0x274ec9}))}))};}function _0x83330b(_0x540afd,_0xc5847a){const _0x2f72c2=_0x59d572;let _0x18b38b=_0x540afd[_0x2f72c2(0x969)]['x']+_0x540afd[_0x2f72c2(0x969)][_0x2f72c2(0x65c)],_0x120fd9=_0x540afd['boxCssPx']['y']+_0x540afd[_0x2f72c2(0x969)][_0x2f72c2(0x1ae)];return _0x540afd['cells'][_0x2f72c2(0x816)](_0x39ad60=>{const _0x9876bf=_0x2f72c2;let _0x1a9e17=_0x39ad60[_0x9876bf(0xa34)],_0x4b2579=_0x1a9e17['x']+_0x1a9e17[_0x9876bf(0x65c)],_0x331263=_0x1a9e17['y']+_0x1a9e17[_0x9876bf(0x1ae)];return _0xc5847a[0x0]>=_0x1a9e17['x']&&(_0xc5847a[0x0]<_0x4b2579||_0x4b2579===_0x18b38b&&_0xc5847a[0x0]<=_0x4b2579)&&_0xc5847a[0x1]>=_0x1a9e17['y']&&(_0xc5847a[0x1]<_0x331263||_0x331263===_0x120fd9&&_0xc5847a[0x1]<=_0x331263);});}function _0x3df64e(_0x2062d3,_0x1d30d8,_0x4ead89){const _0xcbaeee=_0x59d572;let _0x25d41c=_0x1d30d8[_0xcbaeee(0x9ef)],_0x4cf29e=_0x70e875(_0x25d41c==null?void 0x0:_0x25d41c[_0xcbaeee(0x268)],_0x4ead89),_0x20368a=_0x70e875(_0x25d41c==null?void 0x0:_0x25d41c[_0xcbaeee(0xc94)],_0x4ead89),_0x16e1ff=_0x70e875(_0x25d41c==null?void 0x0:_0x25d41c['bottom'],_0x4ead89),_0x3819b6=_0x70e875(_0x25d41c==null?void 0x0:_0x25d41c[_0xcbaeee(0x331)],_0x4ead89);return{'x':_0x2062d3['x']+_0x3819b6,'y':_0x2062d3['y']+_0x4cf29e,'width':Math[_0xcbaeee(0x542)](0x0,_0x2062d3[_0xcbaeee(0x65c)]-_0x3819b6-_0x20368a),'height':Math[_0xcbaeee(0x542)](0x0,_0x2062d3[_0xcbaeee(0x1ae)]-_0x4cf29e-_0x16e1ff)};}function _0x70e875(_0x383b8d,_0x380a67){const _0xd5c4e=_0x59d572;return Math[_0xd5c4e(0x542)](0x0,_0x8b1958(_0x383b8d==null?0x0:_0x383b8d,{'zoom':_0x380a67}));}function _0x39d103(_0x52c5a5){const _0x37b5aa=_0x59d572;let _0x5af7a6=_0x52c5a5[_0x37b5aa(0xbbe)][_0x37b5aa(0x430)][_0x37b5aa(0x24a)][_0x52c5a5['state'][_0x37b5aa(0x826)]],_0x39af67=_0x5af7a6==null?void 0x0:_0x5af7a6[_0x37b5aa(0x961)];if(!_0x5af7a6||!_0x39af67)return;let _0x356948=_0x254b4d(_0x52c5a5[_0x37b5aa(0x641)],_0x39af67[_0x37b5aa(0x701)],_0x52c5a5[_0x37b5aa(0x809)]);if(!_0x356948)return;if(_0x39af67[_0x37b5aa(0x2c1)]===_0x21fa40[_0x37b5aa(0x8bf)][_0x37b5aa(0x34a)])return _0x552b7e(_0x52c5a5,_0x39af67,_0x5af7a6[_0x37b5aa(0x8ee)],_0x356948);if(_0x39af67[_0x37b5aa(0x2c1)]===_0x21fa40[_0x37b5aa(0x8bf)][_0x37b5aa(0x1a5)]&&_0x39af67['textStoryId']){let _0x2dfa33=_0x4997f7(_0x52c5a5,_0x39af67,_0x39af67[_0x37b5aa(0x848)],_0x356948);if(_0x2dfa33)return _0x2dfa33;}if(_0x39af67[_0x37b5aa(0x2c1)]!==_0x21fa40[_0x37b5aa(0x8bf)][_0x37b5aa(0x1a5)]&&_0x39af67[_0x37b5aa(0x2c1)]!==_0x21fa40[_0x37b5aa(0x8bf)][_0x37b5aa(0x592)])return;let _0x35e5e8=_0x1e8e66({'boxCssPx':_0x289788(_0x39af67['bbox'],_0x52c5a5[_0x37b5aa(0x809)]),'text':_0x52c5a5[_0x37b5aa(0x1b6)][_0x37b5aa(0x975)],'runs':_0x177a9a(_0x39af67),'textAnchor':_0x39af67['type']===_0x21fa40[_0x37b5aa(0x8bf)][_0x37b5aa(0x1a5)]?_0x39af67[_0x37b5aa(0x3b8)]:void 0x0,'fontSizeScale':_0x52c5a5[_0x37b5aa(0x809)][_0x37b5aa(0x68e)],'measureText':_0x52c5a5['measureText'],'document':_0x52c5a5['document']});return{'pageId':_0x5af7a6[_0x37b5aa(0x8ee)],'objectId':_0x39af67['id'],'cellId':_0x52c5a5['state']['cellId'],'storyId':_0x52c5a5[_0x37b5aa(0x1b6)][_0x37b5aa(0x6b8)],'blockId':_0x52c5a5[_0x37b5aa(0x1b6)][_0x37b5aa(0x9fb)],'runId':_0x52c5a5[_0x37b5aa(0x1b6)][_0x37b5aa(0x5d4)],'offset':_0x6910b5(_0x35e5e8,_0x356948)};}function _0x2849bd(_0xa046cb,_0x4740c1,_0x18b9a2){const _0x20ebe4=_0x59d572;let _0x4236a=_0xa046cb[_0x20ebe4(0xaf6)]();if(!_0x4236a||!_0x49a806(_0x4236a,_0x18b9a2))return{'handled':!0x1,'state':_0x4236a,'commandResults':[]};let _0x5ada9b=_0x4740c1(),_0x288377=_0xa046cb[_0x20ebe4(0x588)](_0x18b9a2);return _0x288377[_0x20ebe4(0x4f7)]?{..._0x288377,'commandResults':_0xc9f238(_0x5ada9b,_0x4740c1())}:{..._0x288377,'commandResults':[]};}function _0x552b7e(_0x5483c8,_0x40d88d,_0x183bc0,_0x581ac3){const _0x18ec2c=_0x59d572;let _0x2260e6=_0x83330b(_0x20455b({'table':_0x40d88d,'stories':Object[_0x18ec2c(0xb1d)](_0x40d88d[_0x18ec2c(0x7a2)][_0x18ec2c(0x13c)](_0xc37dcb=>{const _0x5039f4=_0x18ec2c;let _0x546d71=_0x47e3dc(_0x5483c8,_0xc37dcb[_0x5039f4(0x7de)]);return _0x546d71?[[_0x546d71['id'],_0x546d71]]:[];})),'zoom':_0x5483c8[_0x18ec2c(0x809)][_0x18ec2c(0x68e)],'measureText':_0x5483c8[_0x18ec2c(0x5ad)],'document':_0x5483c8[_0x18ec2c(0xb09)]}),_0x581ac3),_0x309d51=_0x2260e6!=null&&_0x2260e6[_0x18ec2c(0x366)]?_0x570816(_0x2260e6[_0x18ec2c(0x366)],_0x581ac3):void 0x0;if(!(!(_0x2260e6!=null&&_0x2260e6[_0x18ec2c(0x8a3)])||!_0x309d51))return{'pageId':_0x183bc0,'objectId':_0x40d88d['id'],'cellId':_0x2260e6[_0x18ec2c(0x543)]['id'],'storyId':_0x2260e6['story']['id'],'blockId':_0x309d51[_0x18ec2c(0x9fb)],'runId':_0x309d51[_0x18ec2c(0x5d4)],'offset':_0x309d51[_0x18ec2c(0xbac)]};}function _0x4997f7(_0x171d4b,_0x597f1c,_0x1343db,_0x1455d7){const _0x6caf6c=_0x59d572;var _0x3456fe;let _0x3ae3d3=_0x47e3dc(_0x171d4b,_0x1343db);if(!_0x3ae3d3)return;let _0x585b31=_0x570816(_0x350cc0({'story':_0x3ae3d3,'boxCssPx':_0x289788(_0x597f1c[_0x6caf6c(0xa01)],_0x171d4b['viewport']),'fontSizeScale':_0x171d4b['viewport'][_0x6caf6c(0x68e)],'measureText':_0x171d4b['measureText'],'document':_0x171d4b[_0x6caf6c(0xb09)]}),_0x1455d7);if(_0x585b31)return{'pageId':(_0x3456fe=_0x171d4b[_0x6caf6c(0xbbe)][_0x6caf6c(0x430)][_0x6caf6c(0x24a)][_0x597f1c['id']])==null?void 0x0:_0x3456fe['pageId'],'objectId':_0x597f1c['id'],'storyId':_0x3ae3d3['id'],'blockId':_0x585b31[_0x6caf6c(0x9fb)],'runId':_0x585b31[_0x6caf6c(0x5d4)],'offset':_0x585b31['runOffset']};}function _0x47e3dc(_0x544931,_0x92663){const _0x4fe787=_0x59d572;var _0x118bf4;let _0x8fdb01=_0x544931[_0x4fe787(0xbbe)][_0x4fe787(0x430)][_0x4fe787(0x5c0)][_0x92663],_0x17921d=_0x8fdb01==null?(_0x118bf4=_0x544931[_0x4fe787(0xb09)])==null||(_0x118bf4=_0x118bf4[_0x4fe787(0x452)])==null?void 0x0:_0x118bf4[_0x92663]:_0x8fdb01,_0x38d3fb=_0x8fdb01?_0x17921d:_0x17921d?(0x0,_0x21fa40[_0x4fe787(0x2a3)])(_0x17921d,_0x544931['session'][_0x4fe787(0x430)][_0x4fe787(0xcaf)][_0x92663]):void 0x0;return!_0x38d3fb||_0x544931[_0x4fe787(0x1b6)][_0x4fe787(0x6b8)]!==_0x92663||!_0x544931[_0x4fe787(0x1b6)][_0x4fe787(0x5d4)]||!_0x38d3fb['runs'][_0x544931[_0x4fe787(0x1b6)][_0x4fe787(0x5d4)]]?_0x38d3fb:{..._0x38d3fb,'runs':{..._0x38d3fb[_0x4fe787(0x416)],[_0x544931[_0x4fe787(0x1b6)][_0x4fe787(0x5d4)]]:{..._0x38d3fb[_0x4fe787(0x416)][_0x544931[_0x4fe787(0x1b6)]['runId']],'text':_0x544931[_0x4fe787(0x1b6)][_0x4fe787(0x975)]}}};}function _0x49a806(_0x42b468,_0x153ecc){const _0x5c7b25=_0x59d572;let _0x2f5a32=_0x42b468['selection'][_0x5c7b25(0x3c1)]===0x0&&_0x42b468[_0x5c7b25(0xb23)][_0x5c7b25(0x392)]===0x0;return!!(_0x42b468[_0x5c7b25(0x6b8)]&&_0x42b468['blockId']&&_0x42b468[_0x5c7b25(0x5d4)]&&(_0x153ecc[_0x5c7b25(0x585)]==='Enter'||_0x42b468[_0x5c7b25(0x7ea)]&&_0x153ecc[_0x5c7b25(0x585)]===_0x5c7b25(0xc93)||_0x42b468[_0x5c7b25(0x8b4)]&&_0x153ecc['key']===_0x5c7b25(0xc93)||_0x153ecc[_0x5c7b25(0x585)]===_0x5c7b25(0x5f3)&&_0x2f5a32&&(!_0x42b468[_0x5c7b25(0x8b4)]||_0x42b468['text']['length']===0x0)));}function _0xc9f238(_0x562727,_0x14ee10){const _0x5d3f94=_0x59d572;let _0x5c4d88=(0x0,_0x21fa40[_0x5d3f94(0x220)])(_0x562727[_0x5d3f94(0x1fb)],_0x14ee10['mutationLog']);return _0x5c4d88[_0x5d3f94(0xba6)]?_0x5c4d88['map']((_0x571257,_0x4ab2f3)=>({'batch':_0x571257,..._0x4ab2f3===_0x5c4d88[_0x5d3f94(0xba6)]-0x1?{'selection':_0x14ee10['selection']}:{}})):[{'selection':_0x14ee10[_0x5d3f94(0xb23)]}];}function _0x177a9a(_0x4da9a){const _0x5998b3=_0x59d572;var _0x213db2;return _0x4da9a[_0x5998b3(0x2c1)]===_0x21fa40[_0x5998b3(0x8bf)][_0x5998b3(0x592)]?[_0x4da9a[_0x5998b3(0xaa9)]]:(_0x213db2=_0x4da9a['runs'])!=null&&_0x213db2['length']?_0x4da9a['runs']:[{'text':'','fontSize':0xc}];}function _0x569cff(_0x1c26ef){let _0x43a16c,_0x336764=_0xf1569f=>(_0x43a16c=_0xf1569f,_0x43a16c&&_0x581be8(_0x43a16c),_0x43a16c),_0x581be8=_0x2cb21b=>{const _0x1e1461=_0x57a5;var _0x583eb5,_0x44728c,_0x3b289c;let _0x1f4341=_0x1c26ef['getSession']();(_0x583eb5=_0x1c26ef[_0x1e1461(0xa5b)])==null||_0x583eb5[_0x1e1461(0x3f4)](_0x1c26ef,{..._0x1f4341,'selection':{'activePageId':_0x2cb21b[_0x1e1461(0x8ee)],'primaryAnchorId':_0x1e1461(0xb8d)+_0x2cb21b['objectId'],'updatedAt':(_0x44728c=(_0x3b289c=_0x1c26ef[_0x1e1461(0x337)])==null?void 0x0:_0x3b289c[_0x1e1461(0x3f4)](_0x1c26ef))==null?Date[_0x1e1461(0x337)]():_0x44728c,'focus':{'objectId':_0x2cb21b[_0x1e1461(0x826)],'caretOffset':_0x2cb21b[_0x1e1461(0xb23)][_0x1e1461(0x392)]},'anchors':[{'id':'selection_'+_0x2cb21b[_0x1e1461(0x826)],'kind':_0x21fa40[_0x1e1461(0x7f9)]['TEXT_RANGE'],'pageId':_0x2cb21b['pageId'],'objectId':_0x2cb21b['objectId'],'cellId':_0x2cb21b[_0x1e1461(0x7ea)],'storyId':_0x2cb21b[_0x1e1461(0x6b8)],'runId':_0x2cb21b['runId'],'range':_0x2cb21b[_0x1e1461(0xb23)]}]}});},_0x7439d0=_0xf53427=>{const _0x49e120=_0x57a5;var _0xf9729b,_0x39fb05;return{'documentId':_0xf53427['documentId'],'actorId':_0x1c26ef[_0x49e120(0x939)],'clientId':_0x1c26ef[_0x49e120(0x51e)],'editState':_0xf53427[_0x49e120(0x430)],'selection':_0xf53427[_0x49e120(0xb23)],'baseRevision':_0xf53427[_0x49e120(0x430)][_0x49e120(0x7e0)],'now':(_0xf9729b=(_0x39fb05=_0x1c26ef[_0x49e120(0x337)])==null?void 0x0:_0x39fb05['call'](_0x1c26ef))==null?Date['now']():_0xf9729b,'createId':_0x1c26ef['createId']};};return{'startObjectEdit'(_0x1d70d1){const _0xa0969f=_0x57a5;var _0x103025,_0x51caed,_0x10a79f,_0x45645c,_0x5270d5,_0x9e6123;let _0xd305b5=_0x1c26ef[_0xa0969f(0x3d5)](),_0xd74ab1=_0xd305b5[_0xa0969f(0x430)][_0xa0969f(0x24a)][_0x1d70d1[_0xa0969f(0x826)]],_0x4ab92c=_0xd74ab1==null?void 0x0:_0xd74ab1[_0xa0969f(0x961)];if(!_0xd74ab1||!_0x4ab92c||!_0x5a3d5c(_0x4ab92c)&&_0x4ab92c[_0xa0969f(0x2c1)]!==_0x21fa40[_0xa0969f(0x8bf)]['TABLE'])return;let _0x530e31=_0x4ea001(_0xd305b5,_0x4ab92c,_0x1d70d1);if(_0x4ab92c[_0xa0969f(0x2c1)]===_0x21fa40[_0xa0969f(0x8bf)][_0xa0969f(0x34a)]&&!_0x530e31)return;let _0xcf4e23=(_0x103025=_0x530e31==null?void 0x0:_0x530e31['text'])==null?_0x5a3d5c(_0x4ab92c)?_0x4195ad(_0x4ab92c):'':_0x103025,_0x5e0ed9=(_0x51caed=_0x1d70d1[_0xa0969f(0x8ee)])==null?_0xd74ab1[_0xa0969f(0x8ee)]:_0x51caed,_0xe0681c=(_0x10a79f=(_0x45645c=_0x1d70d1[_0xa0969f(0x53a)])==null?_0x23a02b(_0xd305b5,_0x1d70d1['objectId']):_0x45645c)==null?{'start':_0xcf4e23['length'],'end':_0xcf4e23[_0xa0969f(0xba6)]}:_0x10a79f,_0x3c730a=_0x242972(_0xe0681c,_0xcf4e23[_0xa0969f(0xba6)]);return _0x336764({'pageId':_0x5e0ed9,'objectId':_0x1d70d1['objectId'],'cellId':_0x530e31==null?void 0x0:_0x530e31[_0xa0969f(0x7ea)],'originalText':_0xcf4e23,'text':_0xcf4e23,'selection':_0x3c730a,'selectionAnchor':_0x46c879(_0xe0681c['start'],0x0,_0xcf4e23[_0xa0969f(0xba6)]),'selectionFocus':_0x46c879(_0xe0681c[_0xa0969f(0x392)],0x0,_0xcf4e23['length']),'storyId':_0x530e31==null?void 0x0:_0x530e31[_0xa0969f(0x6b8)],'blockId':_0x530e31==null?void 0x0:_0x530e31['block']['id'],'runId':_0x530e31==null?void 0x0:_0x530e31[_0xa0969f(0x5d4)],'listId':_0x530e31==null||(_0x5270d5=_0x530e31[_0xa0969f(0x413)]['listItem'])==null?void 0x0:_0x5270d5[_0xa0969f(0x8b4)],'listLevel':_0x530e31==null||(_0x9e6123=_0x530e31[_0xa0969f(0x413)]['listItem'])==null?void 0x0:_0x9e6123[_0xa0969f(0x886)]});},'getState'(){return _0x43a16c?_0x2e2420(_0x43a16c):void 0x0;},'setSelection'(_0x1e87c8){const _0x3c84d9=_0x57a5;if(_0x43a16c)return _0x336764({..._0x43a16c,'selection':_0x242972(_0x1e87c8,_0x43a16c[_0x3c84d9(0x975)][_0x3c84d9(0xba6)]),'selectionAnchor':_0x46c879(_0x1e87c8[_0x3c84d9(0x3c1)],0x0,_0x43a16c[_0x3c84d9(0x975)][_0x3c84d9(0xba6)]),'selectionFocus':_0x46c879(_0x1e87c8[_0x3c84d9(0x392)],0x0,_0x43a16c['text'][_0x3c84d9(0xba6)])});},'beginSelection'(_0x16ca07){const _0x3c6b08=_0x57a5;if(!_0x43a16c)return;let _0x4808db=_0x46c879(_0x16ca07,0x0,_0x43a16c['text'][_0x3c6b08(0xba6)]);return _0x336764({..._0x43a16c,'selection':{'start':_0x4808db,'end':_0x4808db},'selectionAnchor':_0x4808db,'selectionFocus':_0x4808db});},'extendSelection'(_0x2ea678){const _0x74c743=_0x57a5;var _0x569668;if(!_0x43a16c)return;let _0x545bfa=_0x46c879((_0x569668=_0x43a16c[_0x74c743(0x971)])==null?_0x43a16c[_0x74c743(0xb23)][_0x74c743(0x3c1)]:_0x569668,0x0,_0x43a16c[_0x74c743(0x975)][_0x74c743(0xba6)]),_0x1b8408=_0x46c879(_0x2ea678,0x0,_0x43a16c[_0x74c743(0x975)][_0x74c743(0xba6)]);return _0x336764({..._0x43a16c,'selection':{'start':Math['min'](_0x545bfa,_0x1b8408),'end':Math['max'](_0x545bfa,_0x1b8408)},'selectionAnchor':_0x545bfa,'selectionFocus':_0x1b8408});},'insertText'(_0x1e17fa){const _0x2f3780=_0x57a5;if(!_0x43a16c||!_0x1e17fa)return _0x43a16c?_0x2e2420(_0x43a16c):void 0x0;let _0x277077=_0x1e17fa[_0x2f3780(0xbf8)](/\r\n/g,'\x0a')[_0x2f3780(0xbf8)](/\r/g,'\x0a'),_0x1d6273=_0x39fc74(_0x43a16c[_0x2f3780(0x975)],_0x43a16c['selection'],_0x277077);return _0x336764({..._0x43a16c,'text':_0x1d6273['text'],'selection':{'start':_0x1d6273[_0x2f3780(0x679)],'end':_0x1d6273[_0x2f3780(0x679)]},'selectionAnchor':_0x1d6273[_0x2f3780(0x679)],'selectionFocus':_0x1d6273[_0x2f3780(0x679)]});},'replaceText'(_0x1988fb,_0x431c65){const _0x19a22b=_0x57a5;if(!_0x43a16c)return;let _0x79d9cb=_0x1988fb[_0x19a22b(0xbf8)](/\r\n/g,'\x0a')['replace'](/\r/g,'\x0a');return _0x336764({..._0x43a16c,'text':_0x79d9cb,'selection':_0x242972(_0x431c65,_0x79d9cb[_0x19a22b(0xba6)]),'selectionAnchor':_0x46c879(_0x431c65[_0x19a22b(0x3c1)],0x0,_0x79d9cb[_0x19a22b(0xba6)]),'selectionFocus':_0x46c879(_0x431c65[_0x19a22b(0x392)],0x0,_0x79d9cb[_0x19a22b(0xba6)])});},'handleKeyDown'(_0x22c608){const _0x309e05=_0x57a5;if(!_0x43a16c||_0x22c608['ctrlKey']||_0x22c608[_0x309e05(0xc60)]||_0x22c608[_0x309e05(0xa43)])return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};if(_0x43a16c['storyId']&&_0x43a16c[_0x309e05(0x9fb)]&&_0x43a16c[_0x309e05(0x5d4)]&&_0x43a16c[_0x309e05(0x8b4)]){if(_0x22c608[_0x309e05(0x585)]===_0x309e05(0x454))return _0x613652();if(_0x22c608['key']==='Tab')return _0x3a7f61(_0x22c608[_0x309e05(0xa23)]?-0x1:0x1);if(_0x22c608['key']===_0x309e05(0x5f3)&&_0x43a16c[_0x309e05(0x975)][_0x309e05(0xba6)]===0x0&&_0x43a16c['selection'][_0x309e05(0x3c1)]===0x0&&_0x43a16c[_0x309e05(0xb23)][_0x309e05(0x392)]===0x0)return _0xee3c33();}if(_0x43a16c[_0x309e05(0x7ea)]&&_0x22c608['key']===_0x309e05(0xc93))return _0x43d686(_0x22c608[_0x309e05(0xa23)]?-0x1:0x1);if(_0x5e7a95(_0x43a16c)){if(_0x22c608[_0x309e05(0x585)]===_0x309e05(0x454))return _0x5b97f2();if(_0x22c608['key']===_0x309e05(0x5f3)&&_0x43a16c[_0x309e05(0xb23)]['start']===0x0&&_0x43a16c[_0x309e05(0xb23)][_0x309e05(0x392)]===0x0)return _0x37f0cf();}switch(_0x22c608[_0x309e05(0x585)]){case _0x309e05(0x5f3):return _0x1c4f36(_0x374d5a(_0x43a16c));case _0x309e05(0x9d1):return _0x1c4f36(_0x3b05ee(_0x43a16c));case _0x309e05(0x454):return _0x1c4f36(_0x2eefbe(_0x43a16c,'\x0a'));case'ArrowLeft':return _0x1c4f36(_0x4a9c8d(_0x43a16c,-0x1,!!_0x22c608[_0x309e05(0xa23)]));case _0x309e05(0xb24):return _0x1c4f36(_0x4a9c8d(_0x43a16c,0x1,!!_0x22c608[_0x309e05(0xa23)]));case _0x309e05(0x41c):return _0x1c4f36(_0x1f4fbc(_0x43a16c,0x0,!!_0x22c608[_0x309e05(0xa23)]));case _0x309e05(0x57d):return _0x1c4f36(_0x1f4fbc(_0x43a16c,_0x43a16c[_0x309e05(0x975)]['length'],!!_0x22c608[_0x309e05(0xa23)]));default:return{'handled':!0x1,'state':_0x2e2420(_0x43a16c)};}},'commit'(){const _0xf42d62=_0x57a5;var _0x44e657;if(!_0x43a16c)return _0x1c26ef['getSession']();let _0x517a69=_0x1c26ef[_0xf42d62(0x3d5)]();if(_0x43a16c[_0xf42d62(0x975)]!==_0x43a16c[_0xf42d62(0x689)]){var _0x44bc88,_0x9e1e26;let _0x339404=_0x5e7a95(_0x43a16c)?_0x43a16c:void 0x0,_0x39e4d0=_0x339404?(_0x44bc88=_0x1c26ef[_0xf42d62(0x6bb)])==null?void 0x0:_0x44bc88[_0xf42d62(0x3f4)](_0x1c26ef,_0x2e2420(_0x339404),_0x517a69,{'kind':_0xf42d62(0x403),'structurePreviewApplied':!0x1}):void 0x0,_0x34bd12=_0x339404&&_0x39e4d0?_0x21fa40[_0xf42d62(0xba3)][_0xf42d62(0x1ad)](_0x7439d0(_0x517a69),{'pageId':_0x339404[_0xf42d62(0x8ee)],'objectId':_0x339404[_0xf42d62(0x826)],'storyId':_0x339404[_0xf42d62(0x6b8)],'runId':_0x339404[_0xf42d62(0x5d4)],'text':_0x339404[_0xf42d62(0x975)],'previousText':_0x339404[_0xf42d62(0x689)],..._0x39e4d0}):_0x21fa40['pdfEditTextCommand'][_0xf42d62(0x1ad)](_0x7439d0(_0x517a69),{'pageId':_0x43a16c[_0xf42d62(0x8ee)],'objectId':_0x43a16c[_0xf42d62(0x826)],'storyId':_0x43a16c[_0xf42d62(0x6b8)],'runId':_0x43a16c[_0xf42d62(0x5d4)],'text':_0x43a16c[_0xf42d62(0x975)],'previousText':_0x43a16c[_0xf42d62(0x689)]});_0x517a69=_0x584edc(_0x517a69,_0x34bd12),(_0x9e1e26=_0x1c26ef[_0xf42d62(0xa5b)])==null||_0x9e1e26['call'](_0x1c26ef,_0x517a69);}let _0x4b5e9f=_0x21fa40[_0xf42d62(0x365)]['execute'](_0x7439d0(_0x517a69),{'pageId':_0x43a16c['pageId'],'objectId':_0x43a16c[_0xf42d62(0x826)],'storyId':_0x43a16c['storyId'],'runId':_0x43a16c['runId'],'range':_0x43a16c[_0xf42d62(0xb23)]});return _0x517a69=_0x584edc(_0x517a69,_0x4b5e9f),(_0x44e657=_0x1c26ef[_0xf42d62(0xa5b)])==null||_0x44e657[_0xf42d62(0x3f4)](_0x1c26ef,_0x517a69),_0x43a16c={..._0x43a16c,'originalText':_0x43a16c[_0xf42d62(0x975)]},_0x43a16c[_0xf42d62(0x7ea)]&&(_0x581be8(_0x43a16c),_0x517a69=_0x1c26ef[_0xf42d62(0x3d5)]()),_0x517a69;},'cancel'(){_0x43a16c=void 0x0;}};function _0x1c4f36(_0xf4bc9d){return _0xf4bc9d?{'handled':!0x0,'state':_0x336764(_0xf4bc9d)}:{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};}function _0x613652(){const _0x4b4061=_0x57a5;var _0xeb5360,_0x489c2e,_0x25462a,_0x4dc598;if(!(_0x43a16c!=null&&_0x43a16c[_0x4b4061(0x6b8)])||!_0x43a16c[_0x4b4061(0x9fb)]||!_0x43a16c[_0x4b4061(0x5d4)]||!_0x43a16c['listId'])return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};if(_0x43a16c['text']['length']===0x0)return _0xee3c33();let _0x81fa70=_0x242972(_0x43a16c[_0x4b4061(0xb23)],_0x43a16c[_0x4b4061(0x975)][_0x4b4061(0xba6)]),_0x4852f5=_0x43a16c['text'][_0x4b4061(0x688)](0x0,_0x81fa70[_0x4b4061(0x3c1)]),_0x3bf3df=_0x43a16c[_0x4b4061(0x975)][_0x4b4061(0x688)](_0x81fa70['end']),_0x5f3de8=_0x489317({..._0x43a16c,'text':_0x4852f5}),_0x5d5c2=_0x5f3de8[_0x4b4061(0x430)][_0x4b4061(0x5c0)][_0x43a16c['storyId']],_0x257f47=(_0xeb5360=_0x5d5c2==null?void 0x0:_0x5d5c2['blocks']['findIndex'](_0x5c4d1c=>_0x5c4d1c['id']===_0x43a16c[_0x4b4061(0x9fb)]))==null?-0x1:_0xeb5360;if(!_0x5d5c2||_0x257f47<0x0)return{'handled':!0x1,'state':_0x2e2420(_0x43a16c)};let _0x26f1a9=_0x1a03f2(_0x1c26ef,_0x4b4061(0x413)),_0x1ba83e=_0x1a03f2(_0x1c26ef,_0x4b4061(0xaa9)),_0x21b44a=_0x21fa40[_0x4b4061(0x27b)][_0x4b4061(0x1ad)](_0x7439d0(_0x5f3de8),{'storyId':_0x43a16c['storyId'],'listId':_0x43a16c[_0x4b4061(0x8b4)],'index':_0x257f47+0x1,'text':_0x3bf3df,'level':(_0x489c2e=_0x43a16c[_0x4b4061(0x38f)])==null?0x0:_0x489c2e,'blockId':_0x26f1a9,'runId':_0x1ba83e});return _0x5f3de8=_0x584edc(_0x5f3de8,_0x21b44a),(_0x25462a=_0x1c26ef[_0x4b4061(0xa5b)])==null||_0x25462a[_0x4b4061(0x3f4)](_0x1c26ef,_0x5f3de8),{'handled':!0x0,'state':_0x336764({'pageId':_0x43a16c['pageId'],'objectId':_0x43a16c[_0x4b4061(0x826)],'originalText':_0x3bf3df,'text':_0x3bf3df,'selection':{'start':0x0,'end':0x0},'selectionAnchor':0x0,'selectionFocus':0x0,'storyId':_0x43a16c[_0x4b4061(0x6b8)],'blockId':_0x26f1a9,'runId':_0x1ba83e,'listId':_0x43a16c[_0x4b4061(0x8b4)],'listLevel':(_0x4dc598=_0x43a16c['listLevel'])==null?0x0:_0x4dc598})};}function _0x5b97f2(){const _0x5404f7=_0x57a5;var _0x4840fa,_0x54222d;if(!_0x43a16c||!_0x5e7a95(_0x43a16c))return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};let _0x113541=_0x2e2420(_0x43a16c),_0x44b094=_0x1c26ef[_0x5404f7(0x3d5)](),_0x4e91c0=_0x242972(_0x113541['selection'],_0x113541[_0x5404f7(0x975)]['length']),_0xb2d305=_0x113541[_0x5404f7(0x975)][_0x5404f7(0x688)](_0x4e91c0[_0x5404f7(0x392)]),_0x4f6c5f=_0x1a03f2(_0x1c26ef,_0x5404f7(0x413)),_0x1ef5ea=_0x1a03f2(_0x1c26ef,_0x5404f7(0xaa9)),_0x56a5de=_0x1a93ba(_0x44b094,_0x21fa40['pdfSplitParagraphCommand'][_0x5404f7(0x1ad)](_0x7439d0(_0x44b094),{'pageId':_0x113541['pageId'],'objectId':_0x113541[_0x5404f7(0x826)],'storyId':_0x113541[_0x5404f7(0x6b8)],'blockId':_0x113541[_0x5404f7(0x9fb)],'runId':_0x113541[_0x5404f7(0x5d4)],'blockIdAfter':_0x4f6c5f,'runIdAfter':_0x1ef5ea,'text':_0x113541[_0x5404f7(0x975)],'previousText':_0x113541[_0x5404f7(0x689)],'range':_0x4e91c0,'previousBbox':[0x0,0x0,0x0,0x0],'nextBbox':[0x0,0x0,0x0,0x0],'pageBottom':0x2**0x35-0x1})),_0x3f5c8b=_0x56a5de?(_0x4840fa=_0x1c26ef['resolveParagraphCommitLayout'])==null?void 0x0:_0x4840fa[_0x5404f7(0x3f4)](_0x1c26ef,_0x113541,_0x56a5de,{'kind':_0x5404f7(0x3ba),'structurePreviewApplied':!0x0}):void 0x0;if(!_0x3f5c8b)return _0x1c4f36(_0x2eefbe(_0x113541,'\x0a'));let _0x1a978c=_0x21fa40[_0x5404f7(0x7f0)]['execute'](_0x7439d0(_0x44b094),{'pageId':_0x113541[_0x5404f7(0x8ee)],'objectId':_0x113541[_0x5404f7(0x826)],'storyId':_0x113541[_0x5404f7(0x6b8)],'blockId':_0x113541[_0x5404f7(0x9fb)],'runId':_0x113541[_0x5404f7(0x5d4)],'blockIdAfter':_0x4f6c5f,'runIdAfter':_0x1ef5ea,'text':_0x113541[_0x5404f7(0x975)],'previousText':_0x113541[_0x5404f7(0x689)],'range':_0x4e91c0,..._0x3f5c8b}),_0x9afe09=_0x584edc(_0x44b094,_0x1a978c);return(_0x54222d=_0x1c26ef['setSession'])==null||_0x54222d['call'](_0x1c26ef,_0x9afe09),_0x1a978c[_0x5404f7(0xa8e)]?{'handled':!0x0,'state':_0x336764({'pageId':_0x113541[_0x5404f7(0x8ee)],'objectId':_0x113541[_0x5404f7(0x826)],'originalText':_0xb2d305,'text':_0xb2d305,'selection':{'start':0x0,'end':0x0},'selectionAnchor':0x0,'selectionFocus':0x0,'storyId':_0x113541[_0x5404f7(0x6b8)],'blockId':_0x4f6c5f,'runId':_0x1ef5ea})}:{'handled':!0x1,'state':_0x2e2420(_0x113541)};}function _0x37f0cf(){const _0x320259=_0x57a5;var _0x6919f,_0xe02b5f,_0x3ec7a0;if(!_0x43a16c||!_0x5e7a95(_0x43a16c))return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};let _0x5cd18c=_0x2e2420(_0x43a16c),_0x5c8e6f=_0x1c26ef['getSession'](),_0x7fb9fc=_0x5c8e6f[_0x320259(0x430)][_0x320259(0x5c0)][_0x5cd18c[_0x320259(0x6b8)]],_0x4be9f4=(_0x6919f=_0x7fb9fc==null?void 0x0:_0x7fb9fc['blocks'][_0x320259(0x78b)](_0x427337=>_0x427337['id']===_0x5cd18c['blockId']))==null?-0x1:_0x6919f,_0x51289d=_0x4be9f4>0x0?_0x7fb9fc==null?void 0x0:_0x7fb9fc[_0x320259(0x878)][_0x4be9f4-0x1]:void 0x0,_0x3ce53a=_0x4be9f4>=0x0?_0x7fb9fc==null?void 0x0:_0x7fb9fc[_0x320259(0x878)][_0x4be9f4]:void 0x0;if(!_0x51289d||(_0x3ce53a==null?void 0x0:_0x3ce53a[_0x320259(0xc0a)][0x0])!==_0x5cd18c[_0x320259(0x5d4)])return _0x1c4f36(_0x374d5a(_0x5cd18c));let _0xd90105=_0x1a93ba(_0x5c8e6f,_0x21fa40[_0x320259(0xbc8)]['execute'](_0x7439d0(_0x5c8e6f),{'pageId':_0x5cd18c[_0x320259(0x8ee)],'objectId':_0x5cd18c[_0x320259(0x826)],'storyId':_0x5cd18c[_0x320259(0x6b8)],'blockId':_0x5cd18c[_0x320259(0x9fb)],'runId':_0x5cd18c[_0x320259(0x5d4)],'text':_0x5cd18c[_0x320259(0x975)],'previousText':_0x5cd18c['originalText'],'previousBbox':[0x0,0x0,0x0,0x0],'nextBbox':[0x0,0x0,0x0,0x0],'pageBottom':0x2**0x35-0x1})),_0x406cf4=_0xd90105?(_0xe02b5f=_0x1c26ef['resolveParagraphCommitLayout'])==null?void 0x0:_0xe02b5f[_0x320259(0x3f4)](_0x1c26ef,_0x5cd18c,_0xd90105,{'kind':_0x320259(0x5fc),'structurePreviewApplied':!0x0}):void 0x0;if(!_0x406cf4)return _0x1c4f36(_0x374d5a(_0x5cd18c));let _0x44c33d=_0x21fa40[_0x320259(0xbc8)]['execute'](_0x7439d0(_0x5c8e6f),{'pageId':_0x5cd18c[_0x320259(0x8ee)],'objectId':_0x5cd18c[_0x320259(0x826)],'storyId':_0x5cd18c[_0x320259(0x6b8)],'blockId':_0x5cd18c['blockId'],'runId':_0x5cd18c[_0x320259(0x5d4)],'text':_0x5cd18c[_0x320259(0x975)],'previousText':_0x5cd18c[_0x320259(0x689)],..._0x406cf4}),_0x5366e7=_0x584edc(_0x5c8e6f,_0x44c33d);return(_0x3ec7a0=_0x1c26ef[_0x320259(0xa5b)])==null||_0x3ec7a0[_0x320259(0x3f4)](_0x1c26ef,_0x5366e7),_0x44c33d[_0x320259(0xa8e)]?{'handled':!0x0,'state':_0x336764({'pageId':_0x5cd18c[_0x320259(0x8ee)],'objectId':_0x5cd18c[_0x320259(0x826)],'originalText':_0x5cd18c['text'],'text':_0x5cd18c['text'],'selection':{'start':0x0,'end':0x0},'selectionAnchor':0x0,'selectionFocus':0x0,'storyId':_0x5cd18c[_0x320259(0x6b8)],'blockId':_0x51289d['id'],'runId':_0x5cd18c[_0x320259(0x5d4)]})}:{'handled':!0x1,'state':_0x2e2420(_0x5cd18c)};}function _0x3a7f61(_0x16391a){const _0x167564=_0x57a5;var _0x58b2e2,_0x47774e,_0x11c753,_0x4bd38c;if(!(_0x43a16c!=null&&_0x43a16c[_0x167564(0x6b8)])||!_0x43a16c[_0x167564(0x9fb)]||!_0x43a16c[_0x167564(0x8b4)])return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};let _0x420f83=_0x489317(_0x43a16c),_0x247c03=_0x21fa40[_0x167564(0x8c6)]['execute'](_0x7439d0(_0x420f83),{'storyId':_0x43a16c[_0x167564(0x6b8)],'blockId':_0x43a16c[_0x167564(0x9fb)],'delta':_0x16391a});_0x420f83=_0x584edc(_0x420f83,_0x247c03),(_0x58b2e2=_0x1c26ef[_0x167564(0xa5b)])==null||_0x58b2e2[_0x167564(0x3f4)](_0x1c26ef,_0x420f83);let _0x2ba9b6=(_0x47774e=_0x420f83[_0x167564(0x430)][_0x167564(0x5c0)][_0x43a16c[_0x167564(0x6b8)]])==null?void 0x0:_0x47774e['blocks'][_0x167564(0x816)](_0x57e02b=>_0x57e02b['id']===_0x43a16c[_0x167564(0x9fb)]);return{'handled':!0x0,'state':_0x336764({..._0x43a16c,'originalText':_0x43a16c[_0x167564(0x975)],'listId':_0x2ba9b6==null||(_0x11c753=_0x2ba9b6[_0x167564(0x494)])==null?void 0x0:_0x11c753[_0x167564(0x8b4)],'listLevel':_0x2ba9b6==null||(_0x4bd38c=_0x2ba9b6[_0x167564(0x494)])==null?void 0x0:_0x4bd38c[_0x167564(0x886)]})};}function _0xee3c33(){const _0x5d6e5e=_0x57a5;var _0xa1ad7a;if(!(_0x43a16c!=null&&_0x43a16c[_0x5d6e5e(0x6b8)])||!_0x43a16c[_0x5d6e5e(0x9fb)])return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};let _0x3b04a3=_0x489317(_0x43a16c),_0x4014b7=_0x21fa40[_0x5d6e5e(0x417)][_0x5d6e5e(0x1ad)](_0x7439d0(_0x3b04a3),{'storyId':_0x43a16c[_0x5d6e5e(0x6b8)],'blockId':_0x43a16c[_0x5d6e5e(0x9fb)]});return _0x3b04a3=_0x584edc(_0x3b04a3,_0x4014b7),(_0xa1ad7a=_0x1c26ef[_0x5d6e5e(0xa5b)])==null||_0xa1ad7a['call'](_0x1c26ef,_0x3b04a3),{'handled':!0x0,'state':_0x336764({..._0x43a16c,'originalText':_0x43a16c[_0x5d6e5e(0x975)],'listId':void 0x0,'listLevel':void 0x0})};}function _0x489317(_0x187f74){const _0x2baebc=_0x57a5;var _0x29bb17;let _0x40ac00=_0x1c26ef[_0x2baebc(0x3d5)]();if(_0x187f74[_0x2baebc(0x975)]===_0x187f74['originalText'])return _0x40ac00;let _0x57d9f3=_0x21fa40[_0x2baebc(0xc4c)][_0x2baebc(0x1ad)](_0x7439d0(_0x40ac00),{'pageId':_0x187f74[_0x2baebc(0x8ee)],'objectId':_0x187f74['objectId'],'storyId':_0x187f74[_0x2baebc(0x6b8)],'runId':_0x187f74[_0x2baebc(0x5d4)],'text':_0x187f74[_0x2baebc(0x975)],'previousText':_0x187f74[_0x2baebc(0x689)]});return _0x40ac00=_0x584edc(_0x40ac00,_0x57d9f3),(_0x29bb17=_0x1c26ef[_0x2baebc(0xa5b)])==null||_0x29bb17['call'](_0x1c26ef,_0x40ac00),_0x40ac00;}function _0x43d686(_0x1be70a){const _0x1eed26=_0x57a5;var _0x490c36,_0x453577;if(!(_0x43a16c!=null&&_0x43a16c[_0x1eed26(0x7ea)]))return{'handled':!0x1,'state':_0x43a16c?_0x2e2420(_0x43a16c):void 0x0};let _0xbb9525=_0x2e2420(_0x43a16c),_0x54181e=_0x489317(_0xbb9525),_0x34aceb=_0x54181e[_0x1eed26(0x430)][_0x1eed26(0x24a)][_0xbb9525[_0x1eed26(0x826)]];if((_0x34aceb==null?void 0x0:_0x34aceb[_0x1eed26(0x961)][_0x1eed26(0x2c1)])!==_0x21fa40[_0x1eed26(0x8bf)][_0x1eed26(0x34a)])return{'handled':!0x1,'state':_0x2e2420(_0xbb9525)};let _0x2be56b=new Map(_0x34aceb[_0x1eed26(0x961)][_0x1eed26(0x86a)][_0x1eed26(0xb06)]((_0xd051b6,_0x362f48)=>[_0xd051b6['id'],_0x362f48])),_0x181dc6=new Map(_0x34aceb[_0x1eed26(0x961)][_0x1eed26(0x189)]['map']((_0x2df865,_0x36785b)=>[_0x2df865['id'],_0x36785b])),_0x69718f=[..._0x34aceb[_0x1eed26(0x961)]['cells']][_0x1eed26(0xb29)]((_0x30b033,_0x13029d)=>{const _0x1ff826=_0x1eed26;var _0x24dec2,_0x2c68fd,_0x13f852,_0x24a154;return((_0x24dec2=_0x2be56b['get'](_0x30b033[_0x1ff826(0x84e)]))==null?0x0:_0x24dec2)-((_0x2c68fd=_0x2be56b[_0x1ff826(0x2ad)](_0x13029d[_0x1ff826(0x84e)]))==null?0x0:_0x2c68fd)||((_0x13f852=_0x181dc6[_0x1ff826(0x2ad)](_0x30b033[_0x1ff826(0x760)]))==null?0x0:_0x13f852)-((_0x24a154=_0x181dc6[_0x1ff826(0x2ad)](_0x13029d['columnId']))==null?0x0:_0x24a154);}),_0x441d2a=_0x69718f[_0x1eed26(0x78b)](_0x274df1=>_0x274df1['id']===_0xbb9525[_0x1eed26(0x7ea)]);if(_0x441d2a<0x0||!_0x69718f[_0x1eed26(0xba6)])return{'handled':!0x1,'state':_0x2e2420(_0xbb9525)};let _0x144742=_0x69718f[(_0x441d2a+_0x1be70a+_0x69718f[_0x1eed26(0xba6)])%_0x69718f[_0x1eed26(0xba6)]],_0x4713c0=_0x4ea001(_0x54181e,_0x34aceb[_0x1eed26(0x961)],{'pageId':_0x34aceb[_0x1eed26(0x8ee)],'objectId':_0x34aceb[_0x1eed26(0x961)]['id'],'cellId':_0x144742['id']});return _0x4713c0?{'handled':!0x0,'state':_0x336764({'pageId':_0x34aceb['pageId'],'objectId':_0x34aceb[_0x1eed26(0x961)]['id'],'cellId':_0x144742['id'],'originalText':_0x4713c0[_0x1eed26(0x975)],'text':_0x4713c0['text'],'selection':{'start':0x0,'end':0x0},'selectionAnchor':0x0,'selectionFocus':0x0,'storyId':_0x4713c0[_0x1eed26(0x6b8)],'blockId':_0x4713c0[_0x1eed26(0x413)]['id'],'runId':_0x4713c0['runId'],'listId':(_0x490c36=_0x4713c0['block'][_0x1eed26(0x494)])==null?void 0x0:_0x490c36[_0x1eed26(0x8b4)],'listLevel':(_0x453577=_0x4713c0[_0x1eed26(0x413)]['listItem'])==null?void 0x0:_0x453577[_0x1eed26(0x886)]})}:{'handled':!0x1,'state':_0x2e2420(_0xbb9525)};}}function _0x584edc(_0x4ecbb2,_0x3540b7){const _0x5d0610=_0x59d572;var _0x35bb80;let _0x5d8979=_0x3540b7['batch']?(0x0,_0x21fa40['applyPdfEditorMutationBatch'])(_0x4ecbb2,_0x3540b7[_0x5d0610(0xa8e)],{'selectionAfter':_0x3540b7[_0x5d0610(0xb23)]}):_0x4ecbb2;return{..._0x5d8979,'selection':(_0x35bb80=_0x3540b7[_0x5d0610(0xb23)])==null?_0x5d8979[_0x5d0610(0xb23)]:_0x35bb80};}function _0x2eefbe(_0x31322d,_0x23e08c){const _0x58c534=_0x59d572;let _0x16e97f=_0x39fc74(_0x31322d[_0x58c534(0x975)],_0x31322d[_0x58c534(0xb23)],_0x23e08c);return{..._0x31322d,'text':_0x16e97f[_0x58c534(0x975)],'selection':{'start':_0x16e97f[_0x58c534(0x679)],'end':_0x16e97f[_0x58c534(0x679)]},'selectionAnchor':_0x16e97f[_0x58c534(0x679)],'selectionFocus':_0x16e97f['offset']};}function _0x374d5a(_0xb2b8c1){const _0x5035be=_0x59d572;let _0x128ca7=_0x242972(_0xb2b8c1[_0x5035be(0xb23)],_0xb2b8c1[_0x5035be(0x975)][_0x5035be(0xba6)]);return _0x128ca7[_0x5035be(0x3c1)]===_0x128ca7[_0x5035be(0x392)]?_0x128ca7[_0x5035be(0x3c1)]<=0x0?_0xb2b8c1:_0x2eefbe({..._0xb2b8c1,'selection':{'start':_0x128ca7[_0x5035be(0x3c1)]-0x1,'end':_0x128ca7['end']}},''):_0x2eefbe(_0xb2b8c1,'');}function _0x3b05ee(_0x5a0282){const _0x27450a=_0x59d572;let _0x58c864=_0x242972(_0x5a0282[_0x27450a(0xb23)],_0x5a0282[_0x27450a(0x975)]['length']);return _0x58c864[_0x27450a(0x3c1)]===_0x58c864['end']?_0x58c864[_0x27450a(0x392)]>=_0x5a0282[_0x27450a(0x975)]['length']?_0x5a0282:_0x2eefbe({..._0x5a0282,'selection':{'start':_0x58c864[_0x27450a(0x3c1)],'end':_0x58c864['end']+0x1}},''):_0x2eefbe(_0x5a0282,'');}function _0x4a9c8d(_0x4ffa22,_0x1d14dd,_0x592272){const _0x394153=_0x59d572;let _0x2bf363=_0x242972(_0x4ffa22[_0x394153(0xb23)],_0x4ffa22[_0x394153(0x975)][_0x394153(0xba6)]);if(_0x592272){var _0x1180ca;return _0x1f4fbc(_0x4ffa22,_0x46c879((_0x1180ca=_0x4ffa22[_0x394153(0x243)])==null?_0x2bf363[_0x394153(0x392)]:_0x1180ca,0x0,_0x4ffa22[_0x394153(0x975)][_0x394153(0xba6)])+_0x1d14dd,!0x0);}return _0x2bf363[_0x394153(0x3c1)]===_0x2bf363[_0x394153(0x392)]?_0x1f4fbc(_0x4ffa22,_0x2bf363[_0x394153(0x3c1)]+_0x1d14dd,!0x1):_0x1f4fbc(_0x4ffa22,_0x1d14dd<0x0?_0x2bf363[_0x394153(0x3c1)]:_0x2bf363[_0x394153(0x392)],!0x1);}function _0x1a93ba(_0x49fb4d,_0x1b63de){if(!_0x1b63de['batch'])return;let _0x59449b=(0x0,_0x21fa40['applyPdfEditorMutationBatch'])(_0x49fb4d,_0x1b63de['batch'],{'recordLog':!0x1,'recordPending':!0x1,'recordHistory':!0x1,'clearRedo':!0x1});return _0x59449b===_0x49fb4d?void 0x0:_0x59449b;}function _0x1f4fbc(_0x5a1cda,_0x30683e,_0xe62e9a){const _0x3aed80=_0x59d572;var _0x9cc740;let _0x371a3c=_0x46c879(_0x30683e,0x0,_0x5a1cda[_0x3aed80(0x975)][_0x3aed80(0xba6)]),_0x153a8f=_0xe62e9a?_0x46c879((_0x9cc740=_0x5a1cda['selectionAnchor'])==null?_0x5a1cda['selection']['start']:_0x9cc740,0x0,_0x5a1cda['text']['length']):_0x371a3c;return{..._0x5a1cda,'selection':_0x242972({'start':_0x153a8f,'end':_0x371a3c},_0x5a1cda[_0x3aed80(0x975)][_0x3aed80(0xba6)]),'selectionAnchor':_0x153a8f,'selectionFocus':_0x371a3c};}function _0x39fc74(_0x446b5c,_0x1a262c,_0x4609ef){const _0x495d8b=_0x59d572;let _0x4f3cd2=_0x242972(_0x1a262c,_0x446b5c[_0x495d8b(0xba6)]);return{'text':''+_0x446b5c['slice'](0x0,_0x4f3cd2[_0x495d8b(0x3c1)])+_0x4609ef+_0x446b5c['slice'](_0x4f3cd2['end']),'offset':_0x4f3cd2['start']+_0x4609ef['length']};}function _0x242972(_0x1169b2,_0x5f03c4){const _0x3ccd82=_0x59d572;return{'start':_0x46c879(Math['min'](_0x1169b2[_0x3ccd82(0x3c1)],_0x1169b2[_0x3ccd82(0x392)]),0x0,_0x5f03c4),'end':_0x46c879(Math['max'](_0x1169b2[_0x3ccd82(0x3c1)],_0x1169b2[_0x3ccd82(0x392)]),0x0,_0x5f03c4)};}function _0x23a02b(_0x428cfc,_0xa648f8){const _0x3ed7f5=_0x59d572;let _0x1fc76e=_0x428cfc[_0x3ed7f5(0xb23)][_0x3ed7f5(0x60c)][_0x3ed7f5(0x816)](_0x22c253=>_0x22c253[_0x3ed7f5(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x3ed7f5(0xc6a)]&&_0x3ed7f5(0x826)in _0x22c253&&_0x22c253[_0x3ed7f5(0x826)]===_0xa648f8&&_0x3ed7f5(0x53a)in _0x22c253);return _0x1fc76e&&_0x3ed7f5(0x53a)in _0x1fc76e?_0x1fc76e[_0x3ed7f5(0x53a)]:void 0x0;}function _0x5a3d5c(_0x37d464){const _0x1070b1=_0x59d572;return _0x37d464[_0x1070b1(0x2c1)]===_0x21fa40['PdfObjectType'][_0x1070b1(0x1a5)]||_0x37d464['type']===_0x21fa40['PdfObjectType'][_0x1070b1(0x592)];}function _0x4195ad(_0x283d81){const _0x1d1d9d=_0x59d572;if(_0x283d81['type']===_0x21fa40[_0x1d1d9d(0x8bf)]['TEXT_BOX']){var _0x984d00,_0x5c8712;return(_0x984d00=(_0x5c8712=_0x283d81['runs'])==null?void 0x0:_0x5c8712['map'](_0x244bb3=>_0x244bb3[_0x1d1d9d(0x975)])[_0x1d1d9d(0xb26)](''))==null?'':_0x984d00;}return _0x283d81['run'][_0x1d1d9d(0x975)];}function _0x5e7a95(_0x2d7675){const _0x864729=_0x59d572;return!!(_0x2d7675['storyId']&&_0x2d7675[_0x864729(0x9fb)]&&_0x2d7675[_0x864729(0x5d4)]&&!_0x2d7675[_0x864729(0x8b4)]&&!_0x2d7675[_0x864729(0x7ea)]);}function _0x4ea001(_0x5a4ce0,_0x1ab445,_0x410489){const _0x6c5785=_0x59d572;var _0x1086d4,_0x8ef17f;if(_0x1ab445['type']!==_0x21fa40[_0x6c5785(0x8bf)][_0x6c5785(0x1a5)]&&_0x1ab445['type']!==_0x21fa40[_0x6c5785(0x8bf)]['TABLE'])return;let _0x188dbf=_0x1ab445[_0x6c5785(0x2c1)]===_0x21fa40[_0x6c5785(0x8bf)][_0x6c5785(0x34a)]?_0x410489[_0x6c5785(0x7ea)]?_0x1ab445['cells']['find'](_0x98b890=>_0x98b890['id']===_0x410489[_0x6c5785(0x7ea)]):_0x410489[_0x6c5785(0x6b8)]?_0x1ab445[_0x6c5785(0x7a2)][_0x6c5785(0x816)](_0x134f98=>_0x134f98['contentStoryId']===_0x410489[_0x6c5785(0x6b8)]):void 0x0:void 0x0,_0x283d87=(_0x1086d4=_0x410489[_0x6c5785(0x6b8)])==null?_0x1ab445[_0x6c5785(0x2c1)]===_0x21fa40[_0x6c5785(0x8bf)]['TEXT_BOX']?_0x1ab445[_0x6c5785(0x848)]:_0x188dbf==null?void 0x0:_0x188dbf[_0x6c5785(0x7de)]:_0x1086d4;if(!_0x283d87)return;let _0xdc8333=_0x5a4ce0[_0x6c5785(0x430)][_0x6c5785(0x5c0)][_0x283d87];if(!_0xdc8333)return;let _0x4f208a=_0x410489['blockId']?_0xdc8333[_0x6c5785(0x878)]['find'](_0x578bce=>_0x578bce['id']===_0x410489[_0x6c5785(0x9fb)]):_0x410489[_0x6c5785(0x5d4)]?_0xdc8333[_0x6c5785(0x878)][_0x6c5785(0x816)](_0x530e44=>_0x530e44[_0x6c5785(0xc0a)]['includes'](_0x410489['runId'])):_0xdc8333[_0x6c5785(0x878)][0x0],_0x1758e3=(_0x8ef17f=_0x410489['runId'])==null?_0x4f208a==null?void 0x0:_0x4f208a[_0x6c5785(0xc0a)][0x0]:_0x8ef17f,_0x1cd588=_0x1758e3?_0xdc8333[_0x6c5785(0x416)][_0x1758e3]:void 0x0;return _0x4f208a&&_0x1758e3&&_0x1cd588?{'storyId':_0x283d87,'block':_0x4f208a,'runId':_0x1758e3,'text':_0x1cd588[_0x6c5785(0x975)],'cellId':_0x188dbf==null?void 0x0:_0x188dbf['id']}:void 0x0;}let _0x184a58=0x0;function _0x1a03f2(_0x304bdc,_0x517054){const _0x5844ba=_0x59d572;var _0x3692c8,_0x375eaa;return(_0x3692c8=(_0x375eaa=_0x304bdc['createId'])==null?void 0x0:_0x375eaa[_0x5844ba(0x3f4)](_0x304bdc,_0x517054))==null?_0x5844ba(0x204)+_0x517054+'_'+ ++_0x184a58:_0x3692c8;}function _0x2e2420(_0x149ff7){return{..._0x149ff7,'selection':{..._0x149ff7['selection']}};}function _0x46c879(_0x449fd6,_0x437c6a,_0x29ef1c){const _0x11c0dd=_0x59d572;return Math[_0x11c0dd(0x542)](_0x437c6a,Math[_0x11c0dd(0xb2a)](_0x29ef1c,Math[_0x11c0dd(0x74c)](_0x449fd6)));}function _0x14df37(_0x4ef6d5){return{'handleKeyDown'(_0x4572b0){const _0x318d60=_0x57a5;let _0x533956=_0x4ef6d5[_0x318d60(0x3d5)]();if(_0x4572b0[_0x318d60(0xa6c)])return{'handled':!0x1,'session':_0x533956};if(_0x5be9d0(_0x4572b0)){var _0x26eff7,_0x52da2a,_0x502984;let _0x38a1ee=(_0x26eff7=(_0x52da2a=_0x4ef6d5[_0x318d60(0x8fe)])==null?void 0x0:_0x52da2a['call'](_0x4ef6d5,_0x533956))==null?(0x0,_0x21fa40[_0x318d60(0x6e0)])(_0x533956):_0x26eff7;return(_0x502984=_0x4ef6d5[_0x318d60(0xa5b)])==null||_0x502984[_0x318d60(0x3f4)](_0x4ef6d5,_0x38a1ee),{'handled':!0x0,'session':_0x38a1ee,'reason':_0x318d60(0x793)};}if(_0x5912fd(_0x4572b0)){var _0x42d749,_0x357baa,_0x5c7e95;let _0x5c8bf3=(_0x42d749=(_0x357baa=_0x4ef6d5[_0x318d60(0xb6a)])==null?void 0x0:_0x357baa[_0x318d60(0x3f4)](_0x4ef6d5,_0x533956))==null?(0x0,_0x21fa40['redoPdfEditorSession'])(_0x533956):_0x42d749;return(_0x5c7e95=_0x4ef6d5[_0x318d60(0xa5b)])==null||_0x5c7e95['call'](_0x4ef6d5,_0x5c8bf3),{'handled':!0x0,'session':_0x5c8bf3,'reason':_0x318d60(0x69a)};}if(_0x4572b0[_0x318d60(0x585)]===_0x318d60(0x68f)){var _0x29502e;return(_0x29502e=_0x4ef6d5[_0x318d60(0x756)])==null||_0x29502e['call'](_0x4ef6d5),{'handled':!0x0,'session':_0x533956,'reason':_0x318d60(0x815)};}let _0x13f2c4=_0x2f32dd(_0x4572b0,_0x4ef6d5[_0x318d60(0x809)]);if(_0x13f2c4){let {commandResult:_0x430bc3,session:_0x49e3ee}=_0x4eb327(_0x533956,_0x13f2c4,_0x4ef6d5);if(_0x49e3ee!==_0x533956){var _0x575751;return(_0x575751=_0x4ef6d5[_0x318d60(0xa5b)])==null||_0x575751[_0x318d60(0x3f4)](_0x4ef6d5,_0x49e3ee),{'handled':!0x0,'session':_0x49e3ee,'commandResult':_0x430bc3,'reason':_0x318d60(0x7c6)};}return{'handled':!0x1,'session':_0x533956};}if(_0x4572b0['key']===_0x318d60(0x9d1)||_0x4572b0[_0x318d60(0x585)]===_0x318d60(0x5f3)){let {commandResult:_0x1413f0,session:_0x4f666f}=_0x4cc221(_0x533956,_0x4ef6d5);if(_0x4f666f!==_0x533956){var _0x1450fd;return(_0x1450fd=_0x4ef6d5['setSession'])==null||_0x1450fd[_0x318d60(0x3f4)](_0x4ef6d5,_0x4f666f),{'handled':!0x0,'session':_0x4f666f,'commandResult':_0x1413f0,'reason':'delete'};}}return{'handled':!0x1,'session':_0x533956};}};}function _0x4eb327(_0x43bed7,_0x5e232c,_0x5a1a2d){const _0x26a8fe=_0x59d572;let _0x4e37ae=_0x273840(_0x43bed7);if(!_0x4e37ae[_0x26a8fe(0xba6)])return{'session':_0x43bed7};let _0x3172de=_0x21fa40['pdfMoveObjectsCommand'][_0x26a8fe(0x1ad)]({'documentId':_0x43bed7[_0x26a8fe(0x401)],'actorId':_0x5a1a2d[_0x26a8fe(0x939)],'clientId':_0x5a1a2d['clientId'],'editState':_0x43bed7[_0x26a8fe(0x430)],'selection':_0x43bed7[_0x26a8fe(0xb23)],'baseRevision':_0x43bed7[_0x26a8fe(0x430)]['revision'],'now':_0x44f3af(_0x5a1a2d),'createId':_0x5a1a2d['createId']},{'placements':_0x4e37ae[_0x26a8fe(0xb06)](_0x1ad055=>{const _0xe2144a=_0x26a8fe;let _0x2e2685=_0x43bed7['editState']['overlayObjects'][_0x1ad055[_0xe2144a(0x826)]];return{'pageId':_0x2e2685[_0xe2144a(0x8ee)],'objectId':_0x1ad055['objectId'],'bbox':_0x2e2685[_0xe2144a(0x961)][_0xe2144a(0x701)]?_0x2e2685[_0xe2144a(0x961)]['bbox']:_0x5db4e8(_0x2e2685[_0xe2144a(0x961)][_0xe2144a(0xa01)],_0x5e232c[0x0],_0x5e232c[0x1]),'previousBbox':_0x2e2685['object']['bbox'],'transform':_0x2e2685['object'][_0xe2144a(0x701)]?_0x15641a(_0x57064c(_0x5e232c[0x0],_0x5e232c[0x1]),_0x2e2685[_0xe2144a(0x961)][_0xe2144a(0x701)]):void 0x0,'previousTransform':_0x2e2685[_0xe2144a(0x961)][_0xe2144a(0x701)]};})});return{'session':_0x49327b(_0x43bed7,_0x3172de),'commandResult':_0x3172de};}function _0x4cc221(_0x130f22,_0xbafd20){const _0x5a599a=_0x59d572;let _0x2978a4=_0x273840(_0x130f22);if(!_0x2978a4['length'])return{'session':_0x130f22};let _0x6dcea0=_0x21fa40[_0x5a599a(0x6cc)]['execute']({'documentId':_0x130f22[_0x5a599a(0x401)],'actorId':_0xbafd20['actorId'],'clientId':_0xbafd20['clientId'],'editState':_0x130f22[_0x5a599a(0x430)],'selection':_0x130f22['selection'],'baseRevision':_0x130f22[_0x5a599a(0x430)]['revision'],'now':_0x44f3af(_0xbafd20),'createId':_0xbafd20[_0x5a599a(0x78d)]},{'objectIds':_0x2978a4['map'](_0x3765d1=>_0x3765d1['objectId'])});return{'session':_0x49327b(_0x130f22,_0x6dcea0),'commandResult':_0x6dcea0};}function _0x2f32dd(_0x384ddf,_0x2024da){const _0x5aa972=_0x59d572;if(_0x384ddf[_0x5aa972(0xc63)]||_0x384ddf[_0x5aa972(0xc60)]||_0x384ddf[_0x5aa972(0xa43)])return;let _0x3988d0=(0x0,_0x21fa40[_0x5aa972(0x14f)])((_0x384ddf['shiftKey']?0xa:0x1)/_0x2024da[_0x5aa972(0x68e)]);switch(_0x384ddf['key']){case _0x5aa972(0x421):return[-_0x3988d0,0x0];case _0x5aa972(0xb24):return[_0x3988d0,0x0];case _0x5aa972(0x9e4):return[0x0,-_0x3988d0];case _0x5aa972(0x138):return[0x0,_0x3988d0];default:return;}}function _0x5db4e8(_0xe1f799,_0x447f2c,_0x16f58d){return[_0xe1f799[0x0]+_0x447f2c,_0xe1f799[0x1]+_0x16f58d,_0xe1f799[0x2]+_0x447f2c,_0xe1f799[0x3]+_0x16f58d];}function _0x5be9d0(_0x3cad76){const _0x5e512e=_0x59d572;return!!(_0x3cad76[_0x5e512e(0xc63)]||_0x3cad76[_0x5e512e(0xc60)])&&!_0x3cad76[_0x5e512e(0xa23)]&&_0x3cad76[_0x5e512e(0x585)][_0x5e512e(0x1c2)]()==='z';}function _0x5912fd(_0x33aeac){const _0x4c2007=_0x59d572;return!!(_0x33aeac[_0x4c2007(0xc63)]||_0x33aeac[_0x4c2007(0xc60)])&&(_0x33aeac[_0x4c2007(0x585)][_0x4c2007(0x1c2)]()==='y'||!!_0x33aeac[_0x4c2007(0xa23)]&&_0x33aeac[_0x4c2007(0x585)][_0x4c2007(0x1c2)]()==='z');}function _0x273840(_0x48f037){const _0x1134f3=_0x59d572;let _0x2b1fe1=_0x48f037['selection'][_0x1134f3(0x60c)][_0x1134f3(0x13c)](_0x158fff=>_0x158fff[_0x1134f3(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x1134f3(0x510)]&&_0x1134f3(0x826)in _0x158fff&&_0x48f037[_0x1134f3(0x430)][_0x1134f3(0x24a)][_0x158fff['objectId']]?[{'objectId':_0x158fff['objectId']}]:[]);if(_0x2b1fe1[_0x1134f3(0xba6)])return _0x2b1fe1;let _0x47f476=(0x0,_0x21fa40[_0x1134f3(0x959)])(_0x48f037);return _0x1134f3(0x826)in _0x47f476&&_0x47f476[_0x1134f3(0x826)]&&_0x48f037[_0x1134f3(0x430)][_0x1134f3(0x24a)][_0x47f476[_0x1134f3(0x826)]]?[{'objectId':_0x47f476[_0x1134f3(0x826)]}]:[];}function _0x49327b(_0x1dea7c,_0x3aa54d){const _0x5e32d5=_0x59d572;var _0xeaf5f9;let _0x17bd3f=_0x3aa54d['batch']?(0x0,_0x21fa40['applyPdfEditorMutationBatch'])(_0x1dea7c,_0x3aa54d[_0x5e32d5(0xa8e)]):_0x1dea7c;return{..._0x17bd3f,'selection':(_0xeaf5f9=_0x3aa54d[_0x5e32d5(0xb23)])==null?_0x17bd3f[_0x5e32d5(0xb23)]:_0xeaf5f9};}function _0x57064c(_0x4561f1,_0x22edb8){return[0x1,0x0,0x0,0x1,_0x4561f1,_0x22edb8];}function _0x15641a(_0x275525,_0x46bf66){return[_0x275525[0x0]*_0x46bf66[0x0]+_0x275525[0x2]*_0x46bf66[0x1],_0x275525[0x1]*_0x46bf66[0x0]+_0x275525[0x3]*_0x46bf66[0x1],_0x275525[0x0]*_0x46bf66[0x2]+_0x275525[0x2]*_0x46bf66[0x3],_0x275525[0x1]*_0x46bf66[0x2]+_0x275525[0x3]*_0x46bf66[0x3],_0x275525[0x0]*_0x46bf66[0x4]+_0x275525[0x2]*_0x46bf66[0x5]+_0x275525[0x4],_0x275525[0x1]*_0x46bf66[0x4]+_0x275525[0x3]*_0x46bf66[0x5]+_0x275525[0x5]];}function _0x44f3af(_0x531226){const _0x19f7e4=_0x59d572;var _0x521c28,_0x292e4d;return(_0x521c28=(_0x292e4d=_0x531226[_0x19f7e4(0x337)])==null?void 0x0:_0x292e4d[_0x19f7e4(0x3f4)](_0x531226))==null?Date[_0x19f7e4(0x337)]():_0x521c28;}function _0x46b9bc(_0x35447c,_0x810253){const _0x568ca2=_0x59d572;var _0x3a47a6,_0x56d43b;let _0x41f3cc=_0x35447c['selection'][_0x568ca2(0x60c)][_0x568ca2(0x816)](_0x1b433e=>_0x1b433e[_0x568ca2(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x568ca2(0xbc1)]);if(!_0x41f3cc)return;let _0x1179c1=(_0x3a47a6=_0x41f3cc[_0x568ca2(0x419)])==null?void 0x0:_0x3a47a6['operationPath'],_0x58d372=(_0x56d43b=_0x41f3cc['displayOperationIds'])==null?[]:_0x56d43b;return _0x810253['find'](_0x5882e6=>{const _0x327371=_0x568ca2;var _0x25cc50,_0x3e7b55,_0x14cced,_0x1579af;return _0x1179c1&&_0x13069a((_0x25cc50=_0x5882e6['source'])==null?void 0x0:_0x25cc50[_0x327371(0xb54)],_0x1179c1)?!0x0:((_0x3e7b55=(_0x14cced=_0x5882e6['displayOperationIds'])==null?(_0x1579af=_0x5882e6['source'])==null?void 0x0:_0x1579af[_0x327371(0xa2c)]:_0x14cced)==null?[_0x5882e6['id']]:_0x3e7b55)[_0x327371(0x790)](_0x3b0bf8=>_0x58d372[_0x327371(0x8a8)](_0x3b0bf8));});}function _0x13069a(_0x209b69,_0x22a8ff){const _0x4368ab=_0x59d572;return!_0x209b69||!_0x22a8ff||_0x209b69['length']!==_0x22a8ff[_0x4368ab(0xba6)]?!0x1:_0x209b69[_0x4368ab(0xbaa)]((_0x2eb874,_0x3e34fe)=>{const _0x7e4a6a=_0x4368ab;let _0xabeaab=_0x22a8ff[_0x3e34fe];return _0x2eb874[_0x7e4a6a(0x1b7)]===(_0xabeaab==null?void 0x0:_0xabeaab[_0x7e4a6a(0x1b7)])&&_0x2eb874['operatorId']===_0xabeaab[_0x7e4a6a(0x121)]&&_0x2eb874[_0x7e4a6a(0xb7b)]===_0xabeaab['resourceName']&&_0x2eb874[_0x7e4a6a(0x798)]===_0xabeaab[_0x7e4a6a(0x798)]&&_0x2eb874[_0x7e4a6a(0x9c4)]===_0xabeaab[_0x7e4a6a(0x9c4)];});}function _0x478845(_0x4c96eb){const _0x56d2c1=_0x59d572;if(_0x4c96eb)return _0x56d2c1(0x419)in _0x4c96eb?_0x4c96eb[_0x56d2c1(0x419)]:_0x4c96eb;}let _0x445cd6=new Set(['','0','false',_0x59d572(0x66e),'/off']);function _0x5cf8af(_0x3296b6){const _0x21eee6=_0x59d572;return _0x3296b6===!0x0?!0x0:_0x3296b6===!0x1||_0x3296b6==null?!0x1:typeof _0x3296b6==_0x21eee6(0x97e)?_0x3296b6!==0x0:typeof _0x3296b6==_0x21eee6(0x221)&&!_0x445cd6[_0x21eee6(0x66b)](_0x3296b6[_0x21eee6(0x4d9)]()[_0x21eee6(0x1c2)]());}function _0x43124f(_0xbe2cc1){const _0x21bfd8=_0x59d572;return Array[_0x21bfd8(0x461)](_0xbe2cc1)?_0xbe2cc1[_0x21bfd8(0xb06)](_0x1a8c47=>String(_0x1a8c47))[_0x21bfd8(0xb26)](',\x20'):_0xbe2cc1==null?'':String(_0xbe2cc1);}function _0x39fe9c(_0x43e709,_0x409ed2,_0x495b7a={}){const _0xf4b073=_0x59d572;var _0x317847;_0x120ba0(_0x43e709,_0x409ed2['cells']),_0x2359bd(_0x43e709,_0x409ed2),_0x301514(_0x43e709,_0x409ed2['cells']),((_0x317847=_0x495b7a[_0xf4b073(0x935)])==null||_0x317847)&&_0x594731(_0x43e709,_0x409ed2['cells']);}function _0x120ba0(_0x11260a,_0x4b237f){const _0x25448b=_0x59d572;for(let _0x48b79d of _0x4b237f){var _0x91c08,_0x5bf398;if(!((_0x91c08=_0x48b79d[_0x25448b(0x2f9)]['fill'])!=null&&_0x91c08[_0x25448b(0x6aa)]))continue;let _0x451a6b=_0x48b79d['outerBoxCssPx'];_0x11260a['fillStyle']=_0xf77a38(_0x48b79d[_0x25448b(0x2f9)][_0x25448b(0x9ae)][_0x25448b(0x6aa)],_0x25448b(0x919)),_0x11260a['globalAlpha']=(_0x5bf398=_0x48b79d[_0x25448b(0x2f9)]['fill'][_0x25448b(0x91d)])==null?0x1:_0x5bf398,_0x11260a[_0x25448b(0x428)](_0x451a6b['x'],_0x451a6b['y'],_0x451a6b[_0x25448b(0x65c)],_0x451a6b['height']);}_0x11260a['globalAlpha']=0x1;}function _0x2359bd(_0xfa2593,_0x5ad70f){const _0x49bd3a=_0x59d572;var _0x49e8d0;let _0x4ccd7e=new Map();for(let _0x2c50e4 of _0x5ad70f['cells'])for(let _0x11ad1f of _0x50f913(_0x2c50e4)){let _0xe22aa9=_0x324a5f(_0x11ad1f),_0x316fd1=_0x4ccd7e[_0x49bd3a(0x2ad)](_0xe22aa9);(!_0x316fd1||!_0x316fd1[_0x49bd3a(0xa25)]&&_0x11ad1f[_0x49bd3a(0xa25)])&&_0x4ccd7e[_0x49bd3a(0xad2)](_0xe22aa9,_0x11ad1f);}for(let _0x263b38 of _0x4ccd7e[_0x49bd3a(0xaaf)]()){var _0x583f13,_0x37e234,_0x41479a,_0x391dc9;let _0x52733e=_0x263b38['stroke'];_0xfa2593['strokeStyle']=_0xf77a38(_0x52733e==null?void 0x0:_0x52733e[_0x49bd3a(0x6aa)],_0x49bd3a(0xa0a)),_0xfa2593[_0x49bd3a(0x521)]=(_0x52733e==null?void 0x0:_0x52733e[_0x49bd3a(0x65c)])===void 0x0?0x1:Math[_0x49bd3a(0x542)](0x0,(0x0,_0x21fa40['emuToCssPx'])(_0x52733e[_0x49bd3a(0x65c)])*_0x5ad70f[_0x49bd3a(0x68e)]),_0xfa2593[_0x49bd3a(0x7bb)]=(_0x583f13=_0x52733e==null?void 0x0:_0x52733e[_0x49bd3a(0x91d)])==null?0x1:_0x583f13,(_0x37e234=_0xfa2593[_0x49bd3a(0x39d)])==null||_0x37e234['call'](_0xfa2593,((_0x41479a=_0x52733e==null?void 0x0:_0x52733e['dash'])==null?[]:_0x41479a)['map'](_0x33bf64=>(0x0,_0x21fa40[_0x49bd3a(0xb35)])(_0x33bf64)*_0x5ad70f[_0x49bd3a(0x68e)])),_0xfa2593['lineDashOffset']=(0x0,_0x21fa40[_0x49bd3a(0xb35)])((_0x391dc9=_0x52733e==null?void 0x0:_0x52733e['dashPhase'])==null?0x0:_0x391dc9)*_0x5ad70f[_0x49bd3a(0x68e)],_0xfa2593[_0x49bd3a(0x995)](),_0xfa2593[_0x49bd3a(0x80a)](_0x263b38['x1'],_0x263b38['y1']),_0xfa2593[_0x49bd3a(0x5be)](_0x263b38['x2'],_0x263b38['y2']),_0xfa2593['stroke']();}_0xfa2593['globalAlpha']=0x1,(_0x49e8d0=_0xfa2593[_0x49bd3a(0x39d)])==null||_0x49e8d0[_0x49bd3a(0x3f4)](_0xfa2593,[]);}function _0x301514(_0x16ef58,_0x5d1218){const _0x3a2042=_0x59d572;_0x16ef58[_0x3a2042(0xb34)]=_0x3a2042(0xb72);for(let _0x92f074 of _0x5d1218){var _0x452a4d,_0x690913;for(let _0xd1b071 of(_0x452a4d=(_0x690913=_0x92f074['storyLayout'])==null?void 0x0:_0x690913['blocks'])==null?[]:_0x452a4d){_0xd1b071['marker']&&_0xd1b071[_0x3a2042(0x6d3)]!==void 0x0&&_0xd1b071[_0x3a2042(0x97b)]!==void 0x0&&_0xd1b071[_0x3a2042(0x78a)]&&(_0x16ef58[_0x3a2042(0x7da)]=_0xd1b071[_0x3a2042(0x78a)],_0x16ef58[_0x3a2042(0x3d0)]=_0xf77a38(_0xd1b071['markerFill'],'#111111'),_0x16ef58[_0x3a2042(0x7bb)]=0x1,_0x16ef58['fillText'](_0xd1b071[_0x3a2042(0xbe3)],_0xd1b071[_0x3a2042(0x6d3)],_0xd1b071['markerBaselineY']));for(let _0x202211 of _0xd1b071[_0x3a2042(0x9b2)])for(let _0xab4323 of _0x202211[_0x3a2042(0x94d)])_0x16ef58[_0x3a2042(0x7da)]=_0xab4323[_0x3a2042(0x7da)],_0x16ef58[_0x3a2042(0x3d0)]=_0xf77a38(_0xab4323[_0x3a2042(0x9ae)],_0x3a2042(0x797)),_0x16ef58['globalAlpha']=0x1,_0x16ef58[_0x3a2042(0x7e4)](_0xab4323['text'],_0xab4323['x'],_0x202211[_0x3a2042(0x5f0)]);}}}function _0x594731(_0x12adb9,_0x5edb78){const _0x36c845=_0x59d572;for(let _0x22bda2 of _0x5edb78){if(!_0x22bda2[_0x36c845(0x1df)])continue;let _0x5e7e5b=_0x22bda2[_0x36c845(0xa34)];_0x12adb9[_0x36c845(0x3d0)]=_0x36c845(0x57e),_0x12adb9[_0x36c845(0x7bb)]=0x1,_0x12adb9[_0x36c845(0x428)](_0x5e7e5b['x']+Math[_0x36c845(0x542)](0x0,_0x5e7e5b['width']-0x3),_0x5e7e5b['y']+Math[_0x36c845(0x542)](0x0,_0x5e7e5b[_0x36c845(0x1ae)]-0xc),0x3,0xc);}}function _0x50f913(_0x44b860){const _0x487ca7=_0x59d572;var _0x12a1f8,_0x55e8fb,_0x378a36,_0x1db497;let _0x7793cc=_0x44b860[_0x487ca7(0xa34)],_0x539cb5=_0x7793cc['x']+_0x7793cc['width'],_0x246bd3=_0x7793cc['y']+_0x7793cc[_0x487ca7(0x1ae)];return[{'x1':_0x7793cc['x'],'y1':_0x7793cc['y'],'x2':_0x539cb5,'y2':_0x7793cc['y'],'stroke':(_0x12a1f8=_0x44b860[_0x487ca7(0x2f9)][_0x487ca7(0x23c)])==null?void 0x0:_0x12a1f8[_0x487ca7(0x268)]},{'x1':_0x539cb5,'y1':_0x7793cc['y'],'x2':_0x539cb5,'y2':_0x246bd3,'stroke':(_0x55e8fb=_0x44b860[_0x487ca7(0x2f9)][_0x487ca7(0x23c)])==null?void 0x0:_0x55e8fb[_0x487ca7(0xc94)]},{'x1':_0x7793cc['x'],'y1':_0x246bd3,'x2':_0x539cb5,'y2':_0x246bd3,'stroke':(_0x378a36=_0x44b860['style'][_0x487ca7(0x23c)])==null?void 0x0:_0x378a36[_0x487ca7(0x354)]},{'x1':_0x7793cc['x'],'y1':_0x7793cc['y'],'x2':_0x7793cc['x'],'y2':_0x246bd3,'stroke':(_0x1db497=_0x44b860[_0x487ca7(0x2f9)][_0x487ca7(0x23c)])==null?void 0x0:_0x1db497[_0x487ca7(0x331)]}];}function _0x324a5f(_0x3c3ebd){const _0x11f098=_0x59d572;let _0x287581=_0x3c3ebd['x1'][_0x11f098(0xc51)](0x4)+','+_0x3c3ebd['y1'][_0x11f098(0xc51)](0x4),_0x44b291=_0x3c3ebd['x2'][_0x11f098(0xc51)](0x4)+','+_0x3c3ebd['y2']['toFixed'](0x4);return _0x287581<_0x44b291?_0x287581+':'+_0x44b291:_0x44b291+':'+_0x287581;}function _0xf77a38(_0x48e465,_0x2a3149){const _0x4e4ea8=_0x59d572;return typeof _0x48e465==_0x4e4ea8(0x221)?_0x48e465:Array[_0x4e4ea8(0x461)](_0x48e465)?'#'+_0x48e465['slice'](0x0,0x3)[_0x4e4ea8(0xb06)](_0xe79f28=>Math[_0x4e4ea8(0x542)](0x0,Math[_0x4e4ea8(0xb2a)](0xff,Math['round'](_0xe79f28*0xff))))[_0x4e4ea8(0xb06)](_0x145e9f=>_0x145e9f[_0x4e4ea8(0x23e)](0x10)[_0x4e4ea8(0x6da)](0x2,'0'))[_0x4e4ea8(0xb26)](''):_0x2a3149;}function _0x137bb8(_0x3ee6d9,_0x311871){const _0x363560=_0x59d572;var _0x29c842,_0x72a960;let _0x25149f=[...(_0x29c842=(0x0,_0x21fa40['getPdfEditorEditStateRuntimeIndex'])(_0x311871['editState'])[_0x363560(0xca7)]['get'](_0x311871[_0x363560(0x8ee)]))==null?[]:_0x29c842][_0x363560(0xbcd)](_0x3d71e3=>!_0x311871[_0x363560(0x6f3)]||_0x311871[_0x363560(0x6f3)]['has'](_0x3d71e3['object']['id']))[_0x363560(0xbcd)](_0x471eb4=>_0x471eb4[_0x363560(0x961)][_0x363560(0xad1)]!==!0x1)[_0x363560(0xb29)]((_0x581fbd,_0x29860c)=>_0x581fbd[_0x363560(0x7e1)]-_0x29860c['zIndex']);_0x3ee6d9[_0x363560(0x8f9)]();for(let _0x5e6e10 of _0x25149f)_0x477a53(_0x3ee6d9,_0x5e6e10[_0x363560(0x961)],_0x311871,_0x5e6e10[_0x363560(0x961)]['id']);_0x5d34fa(_0x3ee6d9,_0x311871),((_0x72a960=_0x311871['showSelection'])==null||_0x72a960)&&_0x445639(_0x3ee6d9,_0x311871),_0x3ee6d9[_0x363560(0x91c)]();}function _0x477a53(_0x245a65,_0x4f4394,_0x4ae4c9,_0x3b4c3a){const _0x5e9d5d=_0x59d572;switch(_0x245a65['save'](),_0x29034e(_0x245a65,_0x4f4394,_0x4ae4c9[_0x5e9d5d(0x809)]),_0x4f4394[_0x5e9d5d(0x2c1)]){case _0x21fa40['PdfObjectType']['TEXT_BOX']:_0x2e86c2(_0x245a65,_0x4f4394,_0x4ae4c9)||_0x37fe87(_0x245a65,_0x27234b(_0x4f4394,_0x3b4c3a,_0x4ae4c9),_0x4ae4c9);break;case _0x21fa40[_0x5e9d5d(0x8bf)][_0x5e9d5d(0x592)]:_0x451587(_0x245a65,_0x48bc6c(_0x4f4394,_0x3b4c3a,_0x4ae4c9),_0x4ae4c9);break;case _0x21fa40[_0x5e9d5d(0x8bf)][_0x5e9d5d(0x93b)]:if(_0x3d3737(_0x245a65,_0x4f4394,_0x4ae4c9))break;_0x551e32(_0x245a65,_0x4f4394,_0x4ae4c9);break;case _0x21fa40[_0x5e9d5d(0x8bf)][_0x5e9d5d(0x598)]:if(_0x43384a(_0x245a65,_0x4f4394,_0x4ae4c9))break;_0x551e32(_0x245a65,_0x4f4394,_0x4ae4c9);break;case _0x21fa40[_0x5e9d5d(0x8bf)][_0x5e9d5d(0x655)]:_0x2a8c58(_0x245a65,_0x4f4394,_0x4ae4c9);break;case _0x21fa40['PdfObjectType']['TABLE']:_0x1af44f(_0x245a65,_0x4f4394,_0x4ae4c9);break;case _0x21fa40[_0x5e9d5d(0x8bf)][_0x5e9d5d(0x164)]:default:_0x551e32(_0x245a65,_0x4f4394,_0x4ae4c9);}_0x245a65[_0x5e9d5d(0x91c)]();}function _0x1af44f(_0x4c909b,_0x2a59eb,_0x42bbca){const _0x11ea82=_0x59d572;_0x39fe9c(_0x4c909b,_0xcaa343(_0x4c909b,_0x2a59eb,_0x42bbca),{'showOverflow':_0x42bbca[_0x11ea82(0x4aa)]!==!0x1&&_0x45335b(_0x42bbca,_0x2a59eb['id'])});}function _0xcaa343(_0x347cb6,_0x119a84,_0x328428){const _0x16c860=_0x59d572;return _0x20455b({'table':_0x119a84,'stories':Object[_0x16c860(0xb1d)](_0x119a84[_0x16c860(0x7a2)][_0x16c860(0x13c)](_0x4a2a2b=>{const _0x273d63=_0x16c860;let _0xd8f0e0=_0x371e52(_0x119a84,_0x4a2a2b[_0x273d63(0x7de)],_0x328428);return _0xd8f0e0?[[_0xd8f0e0['id'],_0xd8f0e0]]:[];})),'zoom':_0x328428[_0x16c860(0x809)][_0x16c860(0x68e)],'measureText':(_0x374d0c,_0x48e0de)=>_0x116f72(_0x347cb6,_0x374d0c,_0x48e0de),'document':_0x328428['document'],'fontFamilyResolver':_0x328428[_0x16c860(0x987)]});}function _0x371e52(_0x1fddbf,_0x251e79,_0x465514){const _0x1a9cf2=_0x59d572;var _0xee3d9e;let _0xae753f=_0x465514[_0x1a9cf2(0x430)][_0x1a9cf2(0x5c0)][_0x251e79],_0x44d6e9=_0xae753f==null?(_0xee3d9e=_0x465514['document'])==null||(_0xee3d9e=_0xee3d9e[_0x1a9cf2(0x452)])==null?void 0x0:_0xee3d9e[_0x251e79]:_0xae753f;if(!_0x44d6e9)return;let _0x2c40c4=_0xae753f?_0x44d6e9:(0x0,_0x21fa40[_0x1a9cf2(0x2a3)])(_0x44d6e9,_0x465514[_0x1a9cf2(0x430)][_0x1a9cf2(0xcaf)][_0x251e79]);if(!_0x2c40c4)return;let _0x7ee12a=_0x465514['activeTextEditState'];return(_0x7ee12a==null?void 0x0:_0x7ee12a[_0x1a9cf2(0x826)])!==_0x1fddbf['id']||_0x7ee12a[_0x1a9cf2(0x6b8)]!==_0x251e79||!_0x7ee12a[_0x1a9cf2(0x5d4)]||!_0x2c40c4['runs'][_0x7ee12a[_0x1a9cf2(0x5d4)]]?_0x2c40c4:{..._0x2c40c4,'runs':{..._0x2c40c4['runs'],[_0x7ee12a[_0x1a9cf2(0x5d4)]]:{..._0x2c40c4[_0x1a9cf2(0x416)][_0x7ee12a[_0x1a9cf2(0x5d4)]],'text':_0x7ee12a[_0x1a9cf2(0x975)]}}};}function _0x2e86c2(_0x51bd5a,_0x1d1678,_0x5bbbab){const _0x13ac54=_0x59d572;let _0x188f83=_0xf973e3(_0x1d1678,_0x275355(_0x1d1678,_0x5bbbab),_0x5bbbab);if(!_0x188f83)return!0x1;let _0x27cbc2=_0x350cc0({'story':_0x188f83,'boxCssPx':_0x7cb28d(_0x1d1678[_0x13ac54(0xa01)],_0x5bbbab['viewport']),'paddingCssPx':_0x5bbbab['textPaddingCssPx'],'fontSizeScale':_0x5bbbab[_0x13ac54(0x809)][_0x13ac54(0x68e)],'measureText':(_0x3d89f0,_0x2c646e)=>_0x116f72(_0x51bd5a,_0x3d89f0,_0x2c646e),'document':_0x5bbbab['document'],'fontFamilyResolver':_0x5bbbab['fontFamilyResolver']});_0x51bd5a[_0x13ac54(0xb34)]=_0x13ac54(0xb72);for(let _0x2374e8 of _0x27cbc2[_0x13ac54(0x878)]){_0x2374e8[_0x13ac54(0xbe3)]&&_0x2374e8['markerX']!==void 0x0&&_0x2374e8[_0x13ac54(0x97b)]!==void 0x0&&_0x2374e8['markerFont']&&(_0x51bd5a[_0x13ac54(0x7da)]=_0x2374e8[_0x13ac54(0x78a)],_0x51bd5a[_0x13ac54(0x3d0)]=_0x520afc(_0x2374e8[_0x13ac54(0x8fd)],_0x13ac54(0x797)),_0x51bd5a[_0x13ac54(0x7bb)]=0x1,_0x51bd5a[_0x13ac54(0x7e4)](_0x2374e8[_0x13ac54(0xbe3)],_0x2374e8[_0x13ac54(0x6d3)],_0x2374e8[_0x13ac54(0x97b)]));for(let _0x5509cf of _0x2374e8['lines'])for(let _0x300cd3 of _0x5509cf[_0x13ac54(0x94d)]){_0x51bd5a[_0x13ac54(0x7da)]=_0x300cd3[_0x13ac54(0x7da)],_0x51bd5a['fillStyle']=_0x520afc(_0x300cd3[_0x13ac54(0x9ae)],_0x13ac54(0x797)),_0x51bd5a[_0x13ac54(0x7bb)]=0x1;let _0x173cb8=_0x188f83[_0x13ac54(0x416)][_0x300cd3['runId']];_0x49afb0(_0x51bd5a,_0x173cb8,_0x300cd3['text'],_0x300cd3['x'],_0x5509cf['baselineY'],_0x300cd3[_0x13ac54(0x358)],_0x5bbbab);}}return _0x27cbc2[_0x13ac54(0x1df)]&&_0x5bbbab[_0x13ac54(0x4aa)]!==!0x1&&_0x45335b(_0x5bbbab,_0x1d1678['id'])&&_0x24f948(_0x51bd5a,_0x7cb28d(_0x1d1678['bbox'],_0x5bbbab[_0x13ac54(0x809)])),!0x0;}function _0x24f948(_0x84a086,_0x162b3a){const _0x5216b7=_0x59d572;let _0x453e72=_0x84a086[_0x5216b7(0x3d0)],_0x5358b0=_0x84a086[_0x5216b7(0x7bb)];_0x84a086[_0x5216b7(0x3d0)]='#dc2626',_0x84a086[_0x5216b7(0x7bb)]=0x1,_0x84a086[_0x5216b7(0x428)](_0x162b3a['x']+Math[_0x5216b7(0x542)](0x0,_0x162b3a[_0x5216b7(0x65c)]-0x3),_0x162b3a['y']+Math['max'](0x0,_0x162b3a['height']-0xc),0x3,0xc),_0x84a086['fillStyle']=_0x453e72,_0x84a086[_0x5216b7(0x7bb)]=_0x5358b0;}function _0x45335b(_0x25c5b0,_0x1cb5d9){const _0x416e70=_0x59d572;var _0x1a13ac;return!!((_0x1a13ac=_0x25c5b0['selection'])!=null&&_0x1a13ac['anchors'][_0x416e70(0x790)](_0x1ea02c=>'objectId'in _0x1ea02c&&_0x1ea02c[_0x416e70(0x826)]===_0x1cb5d9));}function _0x5f1f3e(_0x5c6b99,_0x33c2c5){const _0x366536=_0x59d572;let _0x2fb326=_0x5c6b99[_0x366536(0x182)];return(_0x2fb326==null?void 0x0:_0x2fb326[_0x366536(0x826)])===_0x33c2c5?_0x2fb326:void 0x0;}function _0x275355(_0x26819b,_0x3e2bee){const _0x13180b=_0x59d572;var _0x1b7bbe;let _0x355839=_0x26819b[_0x13180b(0x848)];if(!_0x355839)return;let _0x4bd992=_0x3e2bee[_0x13180b(0x430)]['overlayTextStories'][_0x355839];if(_0x4bd992)return _0x4bd992;let _0x148506=(_0x1b7bbe=_0x3e2bee[_0x13180b(0xb09)])==null||(_0x1b7bbe=_0x1b7bbe['textStories'])==null?void 0x0:_0x1b7bbe[_0x355839];return _0x148506?(0x0,_0x21fa40['applyPdfEditorTextStoryPatch'])(_0x148506,_0x3e2bee['editState'][_0x13180b(0xcaf)][_0x355839]):void 0x0;}function _0xf973e3(_0x4bec08,_0x215e31,_0x3612b9){const _0x192a86=_0x59d572;let _0x2fdf2c=_0x3612b9[_0x192a86(0x182)];return!_0x215e31||(_0x2fdf2c==null?void 0x0:_0x2fdf2c[_0x192a86(0x826)])!==_0x4bec08['id']||_0x2fdf2c['storyId']!==_0x215e31['id']||!_0x2fdf2c['runId']||!_0x215e31[_0x192a86(0x416)][_0x2fdf2c[_0x192a86(0x5d4)]]?_0x215e31:{..._0x215e31,'runs':{..._0x215e31[_0x192a86(0x416)],[_0x2fdf2c[_0x192a86(0x5d4)]]:{..._0x215e31[_0x192a86(0x416)][_0x2fdf2c[_0x192a86(0x5d4)]],'text':_0x2fdf2c[_0x192a86(0x975)]}}};}function _0x2a8c58(_0x3da6f8,_0xe21f7d,_0x2ecd20){const _0x1e8727=_0x59d572;let _0x431504=_0x7cb28d(_0xe21f7d[_0x1e8727(0xa01)],_0x2ecd20['viewport']);if(_0x276b70(_0x3da6f8,_0xe21f7d['commands'],{'x':_0x431504['x'],'y':_0x431504['y']},_0x2ecd20),_0xe21f7d[_0x1e8727(0x9ae)]){var _0x51dac7;_0x3da6f8[_0x1e8727(0x3d0)]=_0x520afc(_0xe21f7d['fill'][_0x1e8727(0x6aa)],_0x1e8727(0x797)),_0x3da6f8[_0x1e8727(0x7bb)]=(_0x51dac7=_0xe21f7d['fill']['opacity'])==null?0x1:_0x51dac7,_0x3da6f8['fill']();}if(_0xe21f7d[_0x1e8727(0xa25)]){var _0x1de5db,_0x395059,_0x2113ce,_0x5378c5,_0x408152;_0x3da6f8[_0x1e8727(0x2f3)]=_0x520afc(_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x6aa)],_0x1e8727(0x797)),_0x3da6f8[_0x1e8727(0x521)]=Math[_0x1e8727(0x542)](0x0,_0x428787((_0x1de5db=_0xe21f7d[_0x1e8727(0xa25)]['width'])==null?(0x0,_0x21fa40[_0x1e8727(0x7c3)])(0x1):_0x1de5db,_0x2ecd20[_0x1e8727(0x809)])),_0x3da6f8[_0x1e8727(0x7bb)]=(_0x395059=_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x91d)])==null?0x1:_0x395059,_0xe21f7d['stroke']['lineCap']&&(_0x3da6f8[_0x1e8727(0x90a)]=_0xe21f7d['stroke'][_0x1e8727(0x90a)]),_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x901)]&&(_0x3da6f8[_0x1e8727(0x901)]=_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x901)]),_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x668)]!==void 0x0&&(_0x3da6f8['miterLimit']=_0xe21f7d[_0x1e8727(0xa25)]['miterLimit']),_0x3da6f8[_0x1e8727(0x4bf)]=_0x428787((_0x2113ce=_0xe21f7d['stroke'][_0x1e8727(0x2fc)])==null?0x0:_0x2113ce,_0x2ecd20['viewport']),(_0x5378c5=_0x3da6f8[_0x1e8727(0x39d)])==null||_0x5378c5['call'](_0x3da6f8,((_0x408152=_0xe21f7d[_0x1e8727(0xa25)][_0x1e8727(0x55f)])==null?[]:_0x408152)[_0x1e8727(0xb06)](_0x4ae4a9=>_0x428787(_0x4ae4a9,_0x2ecd20['viewport']))),_0x3da6f8['stroke']();}}function _0x37fe87(_0x24b43c,_0x1c0188,_0x205c8c){const _0x23016f=_0x59d572;var _0x2ca021,_0x270bee;let _0x4b8c98=_0x7cb28d(_0x1c0188[_0x23016f(0xa01)],_0x205c8c[_0x23016f(0x809)]),_0x5a2079=(_0x2ca021=_0x205c8c['textPaddingCssPx'])==null?0x4:_0x2ca021,_0x53bba2=(_0x270bee=_0x1c0188[_0x23016f(0x416)])!=null&&_0x270bee[_0x23016f(0xba6)]?_0x1c0188['runs']:[{'text':'','fontSize':0xc}];if(_0x53bba2[_0x23016f(0x790)](_0x22f9a5=>_0x22f9a5['text'][_0x23016f(0x8a8)]('\x0a')||_0x22f9a5['text'][_0x23016f(0x8a8)]('\x0d'))){_0x416135(_0x24b43c,_0x53bba2,_0x4b8c98,_0x5a2079,_0x1c0188['textAnchor'],_0x205c8c);return;}let _0x48065c=_0x53bba2['map'](_0x94152b=>{const _0x32ba32=_0x23016f;var _0x4dc92c,_0x44f614;let _0xd9dddb=_0x255d62(_0x94152b['fontSize'],_0x205c8c[_0x32ba32(0x809)]);return _0x24b43c[_0x32ba32(0x7da)]=_0x3edb53(_0x94152b,_0xd9dddb,_0x205c8c),(_0x4dc92c=(_0x44f614=_0x24b43c[_0x32ba32(0x5ad)])==null?void 0x0:_0x44f614[_0x32ba32(0x3f4)](_0x24b43c,_0x94152b[_0x32ba32(0x975)])[_0x32ba32(0x65c)])==null?_0x94152b[_0x32ba32(0x975)]['length']*_0xd9dddb*0.5:_0x4dc92c;}),_0x328899=_0x1174b3(_0x1c0188[_0x23016f(0x3b8)],_0x4b8c98,_0x5a2079,_0x48065c[_0x23016f(0xc71)]((_0x3c8cca,_0x531470)=>_0x3c8cca+_0x531470,0x0));for(let [_0x225756,_0x104a80]of _0x53bba2[_0x23016f(0x8a2)]()){var _0x172abe,_0x3667c3,_0x45d0b4;let _0x1ca929=_0x255d62(_0x104a80[_0x23016f(0x845)],_0x205c8c['viewport']);_0x24b43c[_0x23016f(0x7da)]=_0x3edb53(_0x104a80,_0x1ca929,_0x205c8c),_0x24b43c[_0x23016f(0x3d0)]=_0x1d9c26(_0x104a80),_0x24b43c[_0x23016f(0x7bb)]=(_0x172abe=_0x104a80[_0x23016f(0x10d)])==null?0x1:_0x172abe,_0x24b43c['textBaseline']='alphabetic';let _0x32eb40=_0x4b8c98['y']+_0x5a2079+_0x1ca929;_0x49afb0(_0x24b43c,_0x104a80,_0x104a80[_0x23016f(0x975)],_0x328899,_0x32eb40,_0x1ca929,_0x205c8c),_0x2314bc(_0x24b43c,_0x104a80,_0x328899,_0x32eb40,(_0x3667c3=_0x48065c[_0x225756])==null?0x0:_0x3667c3,_0x1ca929),_0x328899+=(_0x45d0b4=_0x48065c[_0x225756])==null?0x0:_0x45d0b4;}}function _0x416135(_0x304713,_0x588d00,_0x3e07ef,_0x441b06,_0x14a7b5,_0x24d545){const _0x2856a4=_0x59d572;var _0x2b437c,_0x441f48;let _0x300fb2=(_0x2b437c=_0x588d00[0x0])==null?{'text':'','fontSize':0xc}:_0x2b437c,_0xd095cb=_0x255d62(_0x300fb2[_0x2856a4(0x845)],_0x24d545[_0x2856a4(0x809)]),_0x227c6f=_0xd095cb*1.2,_0x4b6187=_0x26e9f0(_0x588d00[_0x2856a4(0xb06)](_0x405d97=>_0x405d97[_0x2856a4(0x975)])[_0x2856a4(0xb26)](''));_0x304713[_0x2856a4(0x7da)]=_0x3edb53(_0x300fb2,_0xd095cb,_0x24d545),_0x304713[_0x2856a4(0x3d0)]=_0x1d9c26(_0x300fb2),_0x304713[_0x2856a4(0x7bb)]=(_0x441f48=_0x300fb2[_0x2856a4(0x10d)])==null?0x1:_0x441f48,_0x304713['textBaseline']=_0x2856a4(0xb72),_0x4b6187['forEach']((_0x13bc46,_0x592500)=>{const _0x441d80=_0x2856a4;var _0x1b5feb,_0x285b58;let _0x6a07f2=(_0x1b5feb=(_0x285b58=_0x304713[_0x441d80(0x5ad)])==null?void 0x0:_0x285b58['call'](_0x304713,_0x13bc46)[_0x441d80(0x65c)])==null?_0x13bc46[_0x441d80(0xba6)]*_0xd095cb*0.5:_0x1b5feb,_0x349bc8=_0x1174b3(_0x14a7b5,_0x3e07ef,_0x441b06,_0x6a07f2),_0x3fc5c4=_0x3e07ef['y']+_0x441b06+_0xd095cb+_0x592500*_0x227c6f;_0x49afb0(_0x304713,_0x300fb2,_0x13bc46,_0x349bc8,_0x3fc5c4,_0xd095cb,_0x24d545),_0x2314bc(_0x304713,_0x300fb2,_0x349bc8,_0x3fc5c4,_0x6a07f2,_0xd095cb);});}function _0x451587(_0x709232,_0x186cf9,_0x637264){const _0x176965=_0x59d572;var _0x169cd6,_0x49a512,_0x4d0ad7;let _0x2f7fde=_0x7cb28d(_0x186cf9[_0x176965(0xa01)],_0x637264[_0x176965(0x809)]),_0x3eab4a=_0x255d62(_0x186cf9[_0x176965(0xaa9)]['fontSize'],_0x637264['viewport']);_0x709232[_0x176965(0x7da)]=_0x3edb53(_0x186cf9[_0x176965(0xaa9)],_0x3eab4a,_0x637264),_0x709232['fillStyle']=_0x1d9c26(_0x186cf9['run']),_0x709232[_0x176965(0x7bb)]=(_0x169cd6=_0x186cf9[_0x176965(0xaa9)][_0x176965(0x10d)])==null?0x1:_0x169cd6,_0x709232[_0x176965(0xb34)]='alphabetic',_0x49afb0(_0x709232,_0x186cf9[_0x176965(0xaa9)],_0x186cf9[_0x176965(0xaa9)]['text'],_0x2f7fde['x'],_0x2f7fde['y']+_0x3eab4a,_0x3eab4a,_0x637264),_0x2314bc(_0x709232,_0x186cf9['run'],_0x2f7fde['x'],_0x2f7fde['y']+_0x3eab4a,(_0x49a512=(_0x4d0ad7=_0x709232[_0x176965(0x5ad)])==null?void 0x0:_0x4d0ad7[_0x176965(0x3f4)](_0x709232,_0x186cf9['run']['text'])[_0x176965(0x65c)])==null?_0x186cf9['run']['text'][_0x176965(0xba6)]*_0x3eab4a*0.5:_0x49a512,_0x3eab4a);}function _0x2314bc(_0x599290,_0x1c6d39,_0x54719e,_0x3ef5ac,_0x294517,_0x25b041){const _0x31e033=_0x59d572;if(!_0x1c6d39[_0x31e033(0x7ce)]||_0x294517<=0x0)return;let _0xefb549=_0x3ef5ac+Math[_0x31e033(0x542)](0x1,_0x25b041*0.12),_0x2c74e2=_0x599290[_0x31e033(0x2f3)],_0x22bb31=_0x599290['lineWidth'];_0x599290[_0x31e033(0x2f3)]=_0x1d9c26(_0x1c6d39),_0x599290[_0x31e033(0x521)]=Math[_0x31e033(0x542)](0x1,_0x25b041*0.06),_0x599290[_0x31e033(0x995)](),_0x599290[_0x31e033(0x80a)](_0x54719e,_0xefb549),_0x599290['lineTo'](_0x54719e+_0x294517,_0xefb549),_0x599290[_0x31e033(0xa25)](),_0x599290['strokeStyle']=_0x2c74e2,_0x599290[_0x31e033(0x521)]=_0x22bb31;}function _0x1174b3(_0x20ba07,_0x48e66d,_0x1b005f,_0x5ce913){const _0x484f9b=_0x59d572;let _0x9bf33b=_0x48e66d['x']+_0x1b005f,_0x462e64=Math[_0x484f9b(0x542)](0x0,_0x48e66d[_0x484f9b(0x65c)]-_0x1b005f*0x2);switch(_0x20ba07){case _0x21fa40[_0x484f9b(0x938)][_0x484f9b(0x745)]:return _0x9bf33b+Math[_0x484f9b(0x542)](0x0,(_0x462e64-_0x5ce913)/0x2);case _0x21fa40[_0x484f9b(0x938)]['END']:return _0x9bf33b+Math[_0x484f9b(0x542)](0x0,_0x462e64-_0x5ce913);case _0x21fa40[_0x484f9b(0x938)][_0x484f9b(0x9b3)]:default:return _0x9bf33b;}}function _0x3d3737(_0x101326,_0x4dfec6,_0x52eb16){const _0x4e2a9d=_0x59d572;var _0x192958;if(!_0x52eb16[_0x4e2a9d(0xb09)]||!_0x52eb16[_0x4e2a9d(0x8eb)]||!_0x101326[_0x4e2a9d(0x198)])return!0x1;let _0x2d52fe=_0x204eaf(_0x52eb16,_0x4dfec6[_0x4e2a9d(0x9c4)]);if(!_0x2d52fe)return!0x1;let _0x31210f=_0x478845(_0x52eb16[_0x4e2a9d(0x8eb)]({'document':_0x52eb16[_0x4e2a9d(0xb09)],'asset':_0x2d52fe,'op':{'id':_0x4e2a9d(0x140)+_0x4dfec6['id'],'type':_0x21fa40[_0x4e2a9d(0xa18)][_0x4e2a9d(0x93b)],'assetId':_0x4dfec6[_0x4e2a9d(0x9c4)]},'viewport':_0x52eb16['viewport']}));if(!_0x31210f)return!0x1;let _0x1d155c=_0x7cb28d(_0x4dfec6['bbox'],_0x52eb16['viewport']),_0x9090df=_0x101326[_0x4e2a9d(0x7bb)],_0x1f9512=_0x4dfec6[_0x4e2a9d(0x8da)]?_0x25b342(_0x4dfec6[_0x4e2a9d(0x8da)],_0x4dfec6[_0x4e2a9d(0xa01)],_0x2d52fe[_0x4e2a9d(0x65c)],_0x2d52fe[_0x4e2a9d(0x1ae)]):void 0x0;return _0x101326[_0x4e2a9d(0x7bb)]=(_0x192958=_0x4dfec6['opacity'])==null?_0x9090df:_0x192958,_0x1f9512?_0x101326[_0x4e2a9d(0x198)](_0x31210f,_0x1f9512['x'],_0x1f9512['y'],_0x1f9512[_0x4e2a9d(0x65c)],_0x1f9512[_0x4e2a9d(0x1ae)],_0x1d155c['x'],_0x1d155c['y'],_0x1d155c[_0x4e2a9d(0x65c)],_0x1d155c['height']):_0x101326[_0x4e2a9d(0x198)](_0x31210f,_0x1d155c['x'],_0x1d155c['y'],_0x1d155c[_0x4e2a9d(0x65c)],_0x1d155c[_0x4e2a9d(0x1ae)]),_0x101326[_0x4e2a9d(0x7bb)]=_0x9090df,!0x0;}function _0x204eaf(_0x51246f,_0x18e587){const _0x185cc8=_0x59d572;var _0xb888ce;if(_0x51246f[_0x185cc8(0xb09)])return((_0xb888ce=_0x51246f[_0x185cc8(0xbba)])==null?_0x92aae0:_0xb888ce)(_0x51246f['document'],_0x51246f[_0x185cc8(0x430)],_0x18e587);}function _0x92aae0(_0x5d91d5,_0x399c3b,_0x41842d){const _0x58f8c7=_0x59d572;var _0x12ee59,_0x34d6d5;return(_0x12ee59=(_0x34d6d5=_0x3efc9f(_0x399c3b['managedResources'],_0x41842d))==null?void 0x0:_0x34d6d5['asset'])==null?_0x3efc9f(_0x5d91d5[_0x58f8c7(0xc33)]['images'],_0x41842d):_0x12ee59;}function _0x3efc9f(_0x48e195,_0x37dde1){const _0x55d17f=_0x59d572;return Object['prototype']['hasOwnProperty'][_0x55d17f(0x3f4)](_0x48e195,_0x37dde1)?_0x48e195[_0x37dde1]:void 0x0;}function _0x25b342(_0x657a7f,_0x589bdc,_0x3ccff3,_0x409cd3){let _0x4b9619=_0x589bdc[0x2]-_0x589bdc[0x0],_0x535a2d=_0x589bdc[0x3]-_0x589bdc[0x1];if(_0x4b9619<=0x0||_0x535a2d<=0x0||_0x3ccff3<=0x0||_0x409cd3<=0x0)return;let _0x12af6c=_0x423e05(_0x657a7f[0x0],_0x589bdc[0x0],_0x589bdc[0x2]),_0x7ed760=_0x423e05(_0x657a7f[0x1],_0x589bdc[0x1],_0x589bdc[0x3]),_0x28d110=_0x423e05(_0x657a7f[0x2],_0x589bdc[0x0],_0x589bdc[0x2]),_0x50d8bf=_0x423e05(_0x657a7f[0x3],_0x589bdc[0x1],_0x589bdc[0x3]),_0xf69130=_0x28d110-_0x12af6c,_0x2acf9a=_0x50d8bf-_0x7ed760;if(!(_0xf69130<=0x0||_0x2acf9a<=0x0))return{'x':(_0x12af6c-_0x589bdc[0x0])/_0x4b9619*_0x3ccff3,'y':(_0x7ed760-_0x589bdc[0x1])/_0x535a2d*_0x409cd3,'width':_0xf69130/_0x4b9619*_0x3ccff3,'height':_0x2acf9a/_0x535a2d*_0x409cd3};}function _0x43384a(_0x4aefe9,_0x506901,_0x40670f){const _0x12e71a=_0x59d572;var _0x5de0b2,_0x5e00d8,_0x3647f4,_0x240c66;let _0x48c143=(_0x5de0b2=(_0x5e00d8=_0x506901[_0x12e71a(0x564)])==null?void 0x0:_0x5e00d8[_0x12e71a(0x1b7)])==null?(_0x3647f4=_0x506901[_0x12e71a(0x217)])==null?void 0x0:_0x3647f4[0x0]:_0x5de0b2,_0x7af410=_0x48c143&&_0x40670f[_0x12e71a(0xb09)]?_0x40670f['document'][_0x12e71a(0x791)][_0x48c143]:void 0x0;if(!_0x7af410)return!0x1;let _0xc0c042=_0x7cb28d(_0x506901[_0x12e71a(0xa01)],_0x40670f[_0x12e71a(0x809)]);_0x4aefe9[_0x12e71a(0x8f9)](),_0x4aefe9[_0x12e71a(0x995)](),_0x4aefe9['rect'](_0xc0c042['x'],_0xc0c042['y'],_0xc0c042[_0x12e71a(0x65c)],_0xc0c042['height']),(_0x240c66=_0x4aefe9[_0x12e71a(0x837)])==null||_0x240c66['call'](_0x4aefe9);for(let _0x2e1ade of _0x7af410['ops'])_0x28a143(_0x4aefe9,_0x2e1ade,_0xc0c042,_0x40670f);return _0x4aefe9[_0x12e71a(0x91c)](),!0x0;}function _0x28a143(_0x188de3,_0x401b4f,_0x469d54,_0x170a47){const _0x2a5f6a=_0x59d572;switch(_0x401b4f['type']){case _0x21fa40[_0x2a5f6a(0xa18)]['TEXT']:_0x3d4182(_0x188de3,_0x401b4f,_0x469d54,_0x170a47);return;case _0x21fa40[_0x2a5f6a(0xa18)][_0x2a5f6a(0x655)]:_0x415952(_0x188de3,_0x401b4f['commands'],_0x469d54,_0x170a47);return;case _0x21fa40[_0x2a5f6a(0xa18)]['IMAGE']:_0x2e50cb(_0x188de3,_0x401b4f,_0x469d54,_0x170a47);break;default:}}function _0x3d4182(_0x231346,_0x1908de,_0x5ec9fa,_0x26ab1c){const _0x1c0f82=_0x59d572;var _0x1a2db2,_0x186d43,_0x55a3f8,_0x3eea20;let _0x538ffa=_0x5ec9fa['x']+_0x428787((_0x1a2db2=(_0x186d43=_0x1908de['transform'])==null?void 0x0:_0x186d43[0x4])==null?0x0:_0x1a2db2,_0x26ab1c[_0x1c0f82(0x809)]),_0x2c1470=_0x5ec9fa['y']+_0x428787((_0x55a3f8=(_0x3eea20=_0x1908de[_0x1c0f82(0x701)])==null?void 0x0:_0x3eea20[0x5])==null?0x0:_0x55a3f8,_0x26ab1c[_0x1c0f82(0x809)]),_0x278124=_0x538ffa;for(let _0x3718dd of _0x1908de['runs']){var _0x23d349,_0x227da0,_0x482a75;let _0x51dcdc=_0x255d62(_0x3718dd[_0x1c0f82(0x845)]||0xc,_0x26ab1c[_0x1c0f82(0x809)]);_0x231346[_0x1c0f82(0x7da)]=_0x3edb53(_0x3718dd,_0x51dcdc,_0x26ab1c),_0x231346[_0x1c0f82(0x3d0)]=_0x1d9c26(_0x3718dd),_0x231346[_0x1c0f82(0x7bb)]=(_0x23d349=_0x3718dd[_0x1c0f82(0x10d)])==null?0x1:_0x23d349,_0x231346[_0x1c0f82(0xb34)]='alphabetic',_0x49afb0(_0x231346,_0x3718dd,_0x3718dd[_0x1c0f82(0x975)],_0x278124,_0x2c1470,_0x51dcdc,_0x26ab1c),_0x278124+=(_0x227da0=(_0x482a75=_0x231346[_0x1c0f82(0x5ad)])==null?void 0x0:_0x482a75[_0x1c0f82(0x3f4)](_0x231346,_0x3718dd[_0x1c0f82(0x975)])[_0x1c0f82(0x65c)])==null?_0x3718dd[_0x1c0f82(0x975)][_0x1c0f82(0xba6)]*_0x51dcdc*0.5:_0x227da0;}}function _0x49afb0(_0x2fa885,_0x58d428,_0x4c010e,_0x1a9ed4,_0x340aaf,_0x43aebd,_0x129bf1){const _0x4c08a8=_0x59d572;var _0x54e238;let _0x239bc2=_0x129bf1[_0x4c08a8(0xb09)],_0x18e146=_0x58d428!=null&&_0x58d428['fontId']?_0x239bc2==null?void 0x0:_0x239bc2['assets'][_0x4c08a8(0x261)][_0x58d428['fontId']]:void 0x0,_0x430813=_0x239bc2&&_0x58d428&&_0x188ff5(_0x18e146)?(_0x54e238=_0x129bf1[_0x4c08a8(0x925)])==null?void 0x0:_0x54e238[_0x4c08a8(0x3f4)](_0x129bf1,{'document':_0x239bc2,'font':_0x18e146,'run':_0x58d428}):void 0x0;if(_0x430813&&_0x760d79(_0x2fa885,_0x430813,_0x4c010e,_0x1a9ed4,_0x340aaf,_0x43aebd)){_0x2fa885[_0x4c08a8(0x9ae)]();return;}_0x2fa885[_0x4c08a8(0x7e4)](_0x4c010e,_0x1a9ed4,_0x340aaf);}function _0x415952(_0x213a28,_0x232e10,_0xcae63e,_0x5b9bec){const _0x371fc4=_0x59d572;_0x232e10[_0x371fc4(0xba6)]&&(_0x276b70(_0x213a28,_0x232e10,_0xcae63e,_0x5b9bec),_0x213a28[_0x371fc4(0x2f3)]=_0x371fc4(0xa0a),_0x213a28['lineWidth']=0x1,_0x213a28['stroke']());}function _0x276b70(_0x5ac369,_0x1bc066,_0x3c9b3c,_0x49ad03){const _0x83d061=_0x59d572;_0x5ac369['beginPath']();for(let _0x31c60b of _0x1bc066)switch(_0x31c60b['type']){case _0x21fa40[_0x83d061(0x665)][_0x83d061(0xaac)]:_0x5ac369['moveTo'](_0x3c9b3c['x']+_0x428787(_0x31c60b[_0x83d061(0x7fc)][0x0],_0x49ad03['viewport']),_0x3c9b3c['y']+_0x428787(_0x31c60b['point'][0x1],_0x49ad03[_0x83d061(0x809)]));break;case _0x21fa40[_0x83d061(0x665)][_0x83d061(0x352)]:_0x5ac369['lineTo'](_0x3c9b3c['x']+_0x428787(_0x31c60b[_0x83d061(0x7fc)][0x0],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['y']+_0x428787(_0x31c60b['point'][0x1],_0x49ad03['viewport']));break;case _0x21fa40[_0x83d061(0x665)][_0x83d061(0x9c3)]:var _0x341652;(_0x341652=_0x5ac369[_0x83d061(0x942)])==null||_0x341652[_0x83d061(0x3f4)](_0x5ac369,_0x3c9b3c['x']+_0x428787(_0x31c60b['c1'][0x0],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['y']+_0x428787(_0x31c60b['c1'][0x1],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['x']+_0x428787(_0x31c60b['c2'][0x0],_0x49ad03['viewport']),_0x3c9b3c['y']+_0x428787(_0x31c60b['c2'][0x1],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['x']+_0x428787(_0x31c60b[_0x83d061(0x7fc)][0x0],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['y']+_0x428787(_0x31c60b['point'][0x1],_0x49ad03[_0x83d061(0x809)]));break;case _0x21fa40[_0x83d061(0x665)][_0x83d061(0x119)]:var _0x32b7ca;(_0x32b7ca=_0x5ac369[_0x83d061(0x603)])==null||_0x32b7ca[_0x83d061(0x3f4)](_0x5ac369,_0x3c9b3c['x']+_0x428787(_0x31c60b['c'][0x0],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['y']+_0x428787(_0x31c60b['c'][0x1],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['x']+_0x428787(_0x31c60b['point'][0x0],_0x49ad03[_0x83d061(0x809)]),_0x3c9b3c['y']+_0x428787(_0x31c60b[_0x83d061(0x7fc)][0x1],_0x49ad03[_0x83d061(0x809)]));break;case _0x21fa40[_0x83d061(0x665)][_0x83d061(0xa8d)]:{let _0xa37fa6=_0x7cb28d(_0x31c60b['rect'],_0x49ad03['viewport']);_0x5ac369['rect'](_0x3c9b3c['x']+_0xa37fa6['x'],_0x3c9b3c['y']+_0xa37fa6['y'],_0xa37fa6[_0x83d061(0x65c)],_0xa37fa6['height']);break;}case _0x21fa40['PdfPathCommandType'][_0x83d061(0x514)]:_0x5ac369[_0x83d061(0x427)]();break;default:break;}}function _0x2e50cb(_0x19b6f9,_0x152293,_0x5968ed,_0x1cef6a){const _0x351a06=_0x59d572;var _0xde878f,_0x2b052d,_0x87d9a7,_0x22789e,_0x28e915,_0x3e1331,_0x4b794c,_0x55d93d,_0x8f844d,_0x59144a;if(!_0x1cef6a[_0x351a06(0xb09)]||!_0x1cef6a['imageResolver']||!_0x19b6f9[_0x351a06(0x198)])return;let _0x42496c=_0x1cef6a[_0x351a06(0xb09)][_0x351a06(0xc33)][_0x351a06(0x707)][_0x152293[_0x351a06(0x9c4)]],_0x2ba7c9=_0x42496c?_0x478845(_0x1cef6a[_0x351a06(0x8eb)]({'document':_0x1cef6a[_0x351a06(0xb09)],'asset':_0x42496c,'op':_0x152293,'viewport':_0x1cef6a['viewport']})):void 0x0;if(!_0x2ba7c9)return;let _0x171308=_0x5968ed['x']+_0x428787((_0xde878f=(_0x2b052d=_0x152293[_0x351a06(0x701)])==null?void 0x0:_0x2b052d[0x4])==null?0x0:_0xde878f,_0x1cef6a['viewport']),_0x1d5215=_0x5968ed['y']+_0x428787((_0x87d9a7=(_0x22789e=_0x152293[_0x351a06(0x701)])==null?void 0x0:_0x22789e[0x5])==null?0x0:_0x87d9a7,_0x1cef6a[_0x351a06(0x809)]),_0x50224a=_0x428787(Math[_0x351a06(0x7f7)]((_0x28e915=(_0x3e1331=_0x152293[_0x351a06(0x701)])==null?void 0x0:_0x3e1331[0x0])==null?(0x0,_0x21fa40[_0x351a06(0x7c3)])((_0x4b794c=_0x42496c==null?void 0x0:_0x42496c[_0x351a06(0x65c)])==null?0x1:_0x4b794c):_0x28e915),_0x1cef6a[_0x351a06(0x809)]),_0x5beae6=_0x428787(Math[_0x351a06(0x7f7)]((_0x55d93d=(_0x8f844d=_0x152293[_0x351a06(0x701)])==null?void 0x0:_0x8f844d[0x3])==null?(0x0,_0x21fa40[_0x351a06(0x7c3)])((_0x59144a=_0x42496c==null?void 0x0:_0x42496c[_0x351a06(0x1ae)])==null?0x1:_0x59144a):_0x55d93d),_0x1cef6a['viewport']);_0x19b6f9[_0x351a06(0x198)](_0x2ba7c9,_0x171308,_0x1d5215,_0x50224a,_0x5beae6);}function _0x551e32(_0x1e3d6a,_0x22521e,_0x51720b){const _0x18b56c=_0x59d572;var _0x1fc8cd;let _0x4fad03=_0x7cb28d(_0x22521e[_0x18b56c(0xa01)],_0x51720b[_0x18b56c(0x809)]);_0x1e3d6a['strokeStyle']=_0x18b56c(0xa0a),_0x1e3d6a[_0x18b56c(0x521)]=0x1,(_0x1fc8cd=_0x1e3d6a['strokeRect'])==null||_0x1fc8cd[_0x18b56c(0x3f4)](_0x1e3d6a,_0x4fad03['x'],_0x4fad03['y'],_0x4fad03[_0x18b56c(0x65c)],_0x4fad03['height']);}function _0x445639(_0x2642db,_0x3b712d){const _0x5b9b2a=_0x59d572;var _0x391e21,_0xe5364;let _0x56fdc2=(_0x391e21=(_0xe5364=_0x3b712d[_0x5b9b2a(0xb23)])==null?void 0x0:_0xe5364[_0x5b9b2a(0x60c)])==null?[]:_0x391e21;for(let _0x28b735 of _0x56fdc2){var _0x1c9a2f;if(_0x28b735[_0x5b9b2a(0x8ee)]!==_0x3b712d[_0x5b9b2a(0x8ee)])continue;if(_0x28b735['kind']===_0x21fa40[_0x5b9b2a(0x7f9)]['SOURCE_SPAN']){_0x331c34(_0x2642db,_0x28b735,_0x3b712d);continue;}if(_0x28b735[_0x5b9b2a(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x5b9b2a(0xad7)]){_0x8b0d22(_0x2642db,_0x28b735,_0x3b712d);continue;}if(!('objectId'in _0x28b735)||!_0x28b735[_0x5b9b2a(0x826)])continue;let _0x3161ad=_0x3b712d[_0x5b9b2a(0x430)][_0x5b9b2a(0x24a)][_0x28b735[_0x5b9b2a(0x826)]];if(!_0x3161ad)continue;if(_0x3161ad[_0x5b9b2a(0x961)][_0x5b9b2a(0x2c1)]===_0x21fa40['PdfObjectType'][_0x5b9b2a(0x34a)]&&(_0x28b735[_0x5b9b2a(0x395)]===_0x21fa40[_0x5b9b2a(0x7f9)]['TABLE_CELL']||_0x28b735[_0x5b9b2a(0x395)]===_0x21fa40[_0x5b9b2a(0x7f9)][_0x5b9b2a(0xc6a)])){var _0x409db;let _0x5268e7=_0x3161ad['object'],_0x4d844e=_0xcaa343(_0x2642db,_0x5268e7,_0x3b712d)[_0x5b9b2a(0x7a2)][_0x5b9b2a(0x816)](_0x12d66c=>_0x12d66c[_0x5b9b2a(0x543)]['id']===_0x28b735['cellId']||_0x28b735['kind']===_0x21fa40[_0x5b9b2a(0x7f9)]['TEXT_RANGE']&&_0x12d66c['cell'][_0x5b9b2a(0x7de)]===_0x28b735[_0x5b9b2a(0x6b8)]);if(!_0x4d844e)continue;_0x2642db[_0x5b9b2a(0x8f9)](),_0x29034e(_0x2642db,_0x5268e7,_0x3b712d['viewport']),_0x2642db[_0x5b9b2a(0x2f3)]=_0x5b9b2a(0xb1a),_0x2642db['lineWidth']=0x1;let _0x24936c=_0x4d844e[_0x5b9b2a(0xa34)];if((_0x409db=_0x2642db[_0x5b9b2a(0xa95)])==null||_0x409db[_0x5b9b2a(0x3f4)](_0x2642db,_0x24936c['x'],_0x24936c['y'],_0x24936c['width'],_0x24936c['height']),_0x28b735[_0x5b9b2a(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x5b9b2a(0xc6a)]&&_0x4d844e[_0x5b9b2a(0x8a3)]&&_0x4d844e[_0x5b9b2a(0x366)]&&_0x28b735[_0x5b9b2a(0x5d4)]){let _0x36d152=_0x4d844e[_0x5b9b2a(0x8a3)][_0x5b9b2a(0x878)][_0x5b9b2a(0x816)](_0x368b00=>_0x368b00[_0x5b9b2a(0xc0a)][_0x5b9b2a(0x8a8)](_0x28b735[_0x5b9b2a(0x5d4)]));if(_0x36d152){var _0x1b38b2,_0x2fdbe1;let _0x15f2db=_0x36d152[_0x5b9b2a(0xc0a)][_0x5b9b2a(0x688)](0x0,_0x36d152['runIds']['indexOf'](_0x28b735[_0x5b9b2a(0x5d4)]))[_0x5b9b2a(0xc71)]((_0x214194,_0x231ec1)=>{const _0x250f4d=_0x5b9b2a;var _0xb85c73,_0x25bf45;return _0x214194+((_0xb85c73=(_0x25bf45=_0x4d844e[_0x250f4d(0x8a3)]['runs'][_0x231ec1])==null?void 0x0:_0x25bf45[_0x250f4d(0x975)]['length'])==null?0x0:_0xb85c73);},0x0),_0x222b71=((_0x1b38b2=_0x3b712d['activeTextEditState'])==null?void 0x0:_0x1b38b2[_0x5b9b2a(0x826)])===_0x5268e7['id']&&_0x3b712d[_0x5b9b2a(0x182)]['storyId']===_0x4d844e[_0x5b9b2a(0x8a3)]['id']?(_0x2fdbe1=_0x3b712d[_0x5b9b2a(0x182)][_0x5b9b2a(0xb23)])==null?_0x28b735[_0x5b9b2a(0x53a)]:_0x2fdbe1:_0x28b735[_0x5b9b2a(0x53a)];_0x15a377(_0x2642db,_0x4d844e[_0x5b9b2a(0x366)],_0x36d152['id'],{'start':_0x15f2db+_0x222b71[_0x5b9b2a(0x3c1)],'end':_0x15f2db+_0x222b71[_0x5b9b2a(0x392)]});}}_0x2642db[_0x5b9b2a(0x91c)]();continue;}let _0x1689c2=_0x5f1f3e(_0x3b712d,_0x28b735[_0x5b9b2a(0x826)]),_0x1bfc74=_0x8165b8(_0x3161ad[_0x5b9b2a(0x961)],_0x28b735[_0x5b9b2a(0x826)],_0x3b712d),_0x37a499=_0x7cb28d(_0x1bfc74[_0x5b9b2a(0xa01)],_0x3b712d['viewport']);if(_0x2642db[_0x5b9b2a(0x8f9)](),_0x29034e(_0x2642db,_0x1bfc74,_0x3b712d['viewport']),_0x2642db[_0x5b9b2a(0x2f3)]=_0x5b9b2a(0xb1a),_0x2642db[_0x5b9b2a(0x521)]=0x1,(_0x1c9a2f=_0x2642db['strokeRect'])==null||_0x1c9a2f[_0x5b9b2a(0x3f4)](_0x2642db,_0x37a499['x'],_0x37a499['y'],_0x37a499[_0x5b9b2a(0x65c)],_0x37a499['height']),_0x28b735[_0x5b9b2a(0x395)]===_0x21fa40[_0x5b9b2a(0x7f9)]['OBJECT']&&_0x3b646a(_0x2642db,_0x37a499),_0x28b735['kind']===_0x21fa40['PdfEditorSelectionKind'][_0x5b9b2a(0xc6a)]){var _0x428f31,_0x51e7e4,_0x344092;_0x2772c2(_0x2642db,_0x1bfc74,(_0x428f31=_0x1689c2==null?void 0x0:_0x1689c2[_0x5b9b2a(0xb23)])==null?_0x28b735[_0x5b9b2a(0x53a)]:_0x428f31,_0x37a499,_0x3b712d,(_0x51e7e4=_0x28b735[_0x5b9b2a(0x6b8)])==null?_0x1689c2==null?void 0x0:_0x1689c2[_0x5b9b2a(0x6b8)]:_0x51e7e4,(_0x344092=_0x28b735['runId'])==null?_0x1689c2==null?void 0x0:_0x1689c2['runId']:_0x344092);}_0x2642db[_0x5b9b2a(0x91c)]();}}function _0x3b646a(_0x312ef6,_0x15ba15){const _0xe8176a=_0x59d572;let _0x215223=[[_0x15ba15['x'],_0x15ba15['y']],[_0x15ba15['x']+_0x15ba15['width']/0x2,_0x15ba15['y']],[_0x15ba15['x']+_0x15ba15[_0xe8176a(0x65c)],_0x15ba15['y']],[_0x15ba15['x']+_0x15ba15[_0xe8176a(0x65c)],_0x15ba15['y']+_0x15ba15[_0xe8176a(0x1ae)]/0x2],[_0x15ba15['x']+_0x15ba15[_0xe8176a(0x65c)],_0x15ba15['y']+_0x15ba15[_0xe8176a(0x1ae)]],[_0x15ba15['x']+_0x15ba15[_0xe8176a(0x65c)]/0x2,_0x15ba15['y']+_0x15ba15[_0xe8176a(0x1ae)]],[_0x15ba15['x'],_0x15ba15['y']+_0x15ba15['height']],[_0x15ba15['x'],_0x15ba15['y']+_0x15ba15['height']/0x2],[_0x15ba15['x']+_0x15ba15[_0xe8176a(0x65c)]/0x2,_0x15ba15['y']-0x16]];_0x312ef6[_0xe8176a(0x8f9)](),_0x312ef6[_0xe8176a(0x3d0)]=_0xe8176a(0x14d),_0x312ef6[_0xe8176a(0x2f3)]='#2563eb',_0x312ef6[_0xe8176a(0x521)]=0x1;for(let [_0x4a2842,_0x11be85]of _0x215223){var _0x36efd3;_0x312ef6[_0xe8176a(0x428)](_0x4a2842-0x3,_0x11be85-0x3,0x6,0x6),(_0x36efd3=_0x312ef6[_0xe8176a(0xa95)])==null||_0x36efd3['call'](_0x312ef6,_0x4a2842-0x3,_0x11be85-0x3,0x6,0x6);}_0x312ef6[_0xe8176a(0x91c)]();}function _0x5d34fa(_0x5a7e51,_0x5cf47c){const _0x3cc670=_0x59d572;var _0x174c24;let _0x47fb51=(_0x174c24=_0x5cf47c[_0x3cc670(0x4c4)])==null?[]:_0x174c24;for(let _0x3b36e5 of _0x47fb51){if(_0x3b36e5[_0x3cc670(0x8ee)]!==_0x5cf47c[_0x3cc670(0x8ee)])continue;let _0x9f2a16=_0x4e5b58(_0x5cf47c,_0x3b36e5);if((_0x9f2a16==null?void 0x0:_0x9f2a16[_0x3cc670(0x85b)])===void 0x0||_0x9f2a16[_0x3cc670(0x85b)]===null)continue;let _0x19f22f=_0x7cb28d(_0x3b36e5['bbox'],_0x5cf47c[_0x3cc670(0x809)]);switch(_0x3b36e5[_0x3cc670(0x6e3)]){case _0x21fa40['PdfFormFieldType'][_0x3cc670(0x79f)]:_0x302e0a(_0x5a7e51,_0x19f22f,_0x5cf8af(_0x9f2a16[_0x3cc670(0x85b)]));break;case _0x21fa40[_0x3cc670(0xadb)]['RADIO']:_0x5b3a40(_0x5a7e51,_0x19f22f,_0x59c868(_0x9f2a16[_0x3cc670(0x85b)],_0x3b36e5));break;case _0x21fa40[_0x3cc670(0xadb)][_0x3cc670(0xca3)]:_0x341151(_0x5a7e51,_0x19f22f,_0x43124f(_0x9f2a16[_0x3cc670(0x85b)]),_0x3b36e5,_0x5cf47c);break;case _0x21fa40['PdfFormFieldType']['TEXT']:default:_0x341151(_0x5a7e51,_0x19f22f,_0x268cbd(_0x9f2a16[_0x3cc670(0x85b)]),_0x3b36e5,_0x5cf47c);break;}}}function _0x341151(_0x565195,_0x16f443,_0x52ddbf,_0x2c24a9,_0x27eca1){const _0x5db90f=_0x59d572;var _0x4a3b9a,_0x15170a,_0x3c579c,_0x25b443;let _0x4e08e7=_0x2f110b(_0x2c24a9[_0x5db90f(0x393)],_0x16f443,_0x27eca1[_0x5db90f(0x809)]),_0x2ef691=Math[_0x5db90f(0xb2a)](0x4,Math['max'](0x2,_0x16f443[_0x5db90f(0x65c)]/0xc)),_0x5c8ce5=(_0x4a3b9a=(_0x15170a=_0x565195['measureText'])==null?void 0x0:_0x15170a[_0x5db90f(0x3f4)](_0x565195,_0x52ddbf)[_0x5db90f(0x65c)])==null?_0x52ddbf['length']*_0x4e08e7*0.52:_0x4a3b9a,_0x4a805f=_0x37bd51(_0x2c24a9[_0x5db90f(0x424)],_0x16f443,_0x5c8ce5,_0x2ef691);if(_0x565195['save'](),_0x565195[_0x5db90f(0x3d0)]=_0x520afc(_0x2c24a9[_0x5db90f(0x122)],'rgba(255,\x20255,\x20255,\x200.94)'),(_0x3c579c=_0x565195[_0x5db90f(0x428)])==null||_0x3c579c['call'](_0x565195,_0x16f443['x']+0x1,_0x16f443['y']+0x1,Math['max'](0x0,_0x16f443[_0x5db90f(0x65c)]-0x2),Math['max'](0x0,_0x16f443[_0x5db90f(0x1ae)]-0x2)),_0x2c24a9['borderColor']||_0x2c24a9[_0x5db90f(0xc19)]){var _0x3b096a;_0x565195[_0x5db90f(0x2f3)]=_0x520afc(_0x2c24a9['borderColor'],_0x5db90f(0x558)),_0x565195[_0x5db90f(0x521)]=_0x2c24a9[_0x5db90f(0xc19)]?Math[_0x5db90f(0x542)](0.5,_0x8b1958(_0x2c24a9[_0x5db90f(0xc19)],_0x27eca1[_0x5db90f(0x809)])):0x1,(_0x3b096a=_0x565195[_0x5db90f(0xa95)])==null||_0x3b096a[_0x5db90f(0x3f4)](_0x565195,_0x16f443['x'],_0x16f443['y'],_0x16f443[_0x5db90f(0x65c)],_0x16f443[_0x5db90f(0x1ae)]);}_0x565195[_0x5db90f(0x7da)]=_0x4e08e7[_0x5db90f(0xc51)](0x2)+_0x5db90f(0xac2),_0x565195[_0x5db90f(0x3d0)]=_0x520afc((_0x25b443=_0x2c24a9[_0x5db90f(0x393)])==null?void 0x0:_0x25b443[_0x5db90f(0x56d)],_0x5db90f(0x558)),_0x565195[_0x5db90f(0x7bb)]=0x1,_0x565195[_0x5db90f(0xb34)]=_0x5db90f(0x130),_0x565195[_0x5db90f(0x7e4)](_0x52ddbf,_0x4a805f,_0x16f443['y']+_0x16f443['height']/0x2),_0x565195[_0x5db90f(0x91c)]();}function _0x2f110b(_0x205920,_0x28b10b,_0x578402){const _0x18dcbb=_0x59d572;return typeof(_0x205920==null?void 0x0:_0x205920[_0x18dcbb(0x845)])=='number'&&_0x205920[_0x18dcbb(0x845)]>0x0?_0x8b1958((0x0,_0x21fa40[_0x18dcbb(0x7c3)])(_0x205920[_0x18dcbb(0x845)]),_0x578402):_0x423e05(_0x28b10b[_0x18dcbb(0x1ae)]*0.62,0x9,0x12);}function _0x37bd51(_0x3a445c,_0x2a4fd9,_0x3969ff,_0x4ebc72){const _0x1b444b=_0x59d572;return _0x3a445c===0x1?_0x2a4fd9['x']+Math['max'](_0x4ebc72,(_0x2a4fd9[_0x1b444b(0x65c)]-_0x3969ff)/0x2):_0x3a445c===0x2?_0x2a4fd9['x']+Math[_0x1b444b(0x542)](_0x4ebc72,_0x2a4fd9[_0x1b444b(0x65c)]-_0x3969ff-_0x4ebc72):_0x2a4fd9['x']+_0x4ebc72;}function _0x302e0a(_0x2c1563,_0x49afb5,_0x2a1f7e){const _0x548421=_0x59d572;var _0x347408,_0x1d1556;_0x2c1563[_0x548421(0x8f9)](),_0x2c1563[_0x548421(0x3d0)]=_0x548421(0x1a3),(_0x347408=_0x2c1563['fillRect'])==null||_0x347408['call'](_0x2c1563,_0x49afb5['x']+0x1,_0x49afb5['y']+0x1,Math[_0x548421(0x542)](0x0,_0x49afb5[_0x548421(0x65c)]-0x2),Math[_0x548421(0x542)](0x0,_0x49afb5[_0x548421(0x1ae)]-0x2)),_0x2c1563['strokeStyle']=_0x548421(0x558),_0x2c1563[_0x548421(0x521)]=1.5,(_0x1d1556=_0x2c1563[_0x548421(0xa95)])==null||_0x1d1556[_0x548421(0x3f4)](_0x2c1563,_0x49afb5['x'],_0x49afb5['y'],_0x49afb5[_0x548421(0x65c)],_0x49afb5[_0x548421(0x1ae)]),_0x2a1f7e&&(_0x2c1563[_0x548421(0x995)](),_0x2c1563[_0x548421(0x80a)](_0x49afb5['x']+_0x49afb5[_0x548421(0x65c)]*0.25,_0x49afb5['y']+_0x49afb5[_0x548421(0x1ae)]*0.52),_0x2c1563[_0x548421(0x5be)](_0x49afb5['x']+_0x49afb5[_0x548421(0x65c)]*0.42,_0x49afb5['y']+_0x49afb5[_0x548421(0x1ae)]*0.68),_0x2c1563[_0x548421(0x5be)](_0x49afb5['x']+_0x49afb5[_0x548421(0x65c)]*0.75,_0x49afb5['y']+_0x49afb5['height']*0.3),_0x2c1563[_0x548421(0xa25)]()),_0x2c1563['restore']();}function _0x5b3a40(_0x3892ba,_0x25efc9,_0x69fcad){const _0x78e0cd=_0x59d572;var _0x1107a4,_0x5e4f7e;if(_0x3892ba[_0x78e0cd(0x8f9)](),_0x3892ba['fillStyle']=_0x78e0cd(0x1a3),(_0x1107a4=_0x3892ba[_0x78e0cd(0x428)])==null||_0x1107a4[_0x78e0cd(0x3f4)](_0x3892ba,_0x25efc9['x']+0x1,_0x25efc9['y']+0x1,Math[_0x78e0cd(0x542)](0x0,_0x25efc9[_0x78e0cd(0x65c)]-0x2),Math[_0x78e0cd(0x542)](0x0,_0x25efc9[_0x78e0cd(0x1ae)]-0x2)),_0x3892ba[_0x78e0cd(0x2f3)]=_0x78e0cd(0x558),_0x3892ba[_0x78e0cd(0x521)]=1.5,_0x3892ba[_0x78e0cd(0x995)](),(_0x5e4f7e=_0x3892ba[_0x78e0cd(0x7a7)])==null||_0x5e4f7e[_0x78e0cd(0x3f4)](_0x3892ba,_0x25efc9['x']+_0x25efc9[_0x78e0cd(0x65c)]/0x2,_0x25efc9['y']+_0x25efc9[_0x78e0cd(0x1ae)]/0x2,_0x25efc9[_0x78e0cd(0x65c)]/0x2,_0x25efc9[_0x78e0cd(0x1ae)]/0x2,0x0,0x0,Math['PI']*0x2),_0x3892ba[_0x78e0cd(0xa25)](),_0x69fcad){var _0x26d5e0;_0x3892ba['fillStyle']=_0x78e0cd(0x558),_0x3892ba[_0x78e0cd(0x995)](),(_0x26d5e0=_0x3892ba[_0x78e0cd(0x7a7)])==null||_0x26d5e0[_0x78e0cd(0x3f4)](_0x3892ba,_0x25efc9['x']+_0x25efc9[_0x78e0cd(0x65c)]/0x2,_0x25efc9['y']+_0x25efc9[_0x78e0cd(0x1ae)]/0x2,Math[_0x78e0cd(0xb2a)](_0x25efc9['width'],_0x25efc9['height'])*0.3,Math[_0x78e0cd(0xb2a)](_0x25efc9['width'],_0x25efc9['height'])*0.3,0x0,0x0,Math['PI']*0x2),_0x3892ba[_0x78e0cd(0x9ae)]();}_0x3892ba[_0x78e0cd(0x91c)]();}function _0x8b0d22(_0x1e7725,_0x176d99,_0x2db165){const _0x16c6f=_0x59d572;var _0x558532;let _0x1945ee=_0x16c6f(0x2e9)in _0x176d99?_0x176d99[_0x16c6f(0x2e9)]:void 0x0,_0x5baebb=_0x16c6f(0xbe5)in _0x176d99?_0x176d99[_0x16c6f(0xbe5)]:void 0x0,_0xa02daa=((_0x558532=_0x2db165[_0x16c6f(0x4c4)])==null?[]:_0x558532)[_0x16c6f(0xbcd)](_0x2324ef=>_0x2324ef[_0x16c6f(0x8ee)]===_0x2db165[_0x16c6f(0x8ee)]&&(_0x2324ef[_0x16c6f(0x2e9)]===_0x1945ee||_0x2324ef[_0x16c6f(0xbe5)]===_0x5baebb));for(let _0x5e317f of _0xa02daa){var _0x4fd0e0;let _0x437e23=_0x7cb28d(_0x5e317f[_0x16c6f(0xa01)],_0x2db165[_0x16c6f(0x809)]);_0x1e7725[_0x16c6f(0x2f3)]=_0x16c6f(0xa49),_0x1e7725[_0x16c6f(0x521)]=1.5,(_0x4fd0e0=_0x1e7725['strokeRect'])==null||_0x4fd0e0['call'](_0x1e7725,_0x437e23['x'],_0x437e23['y'],_0x437e23[_0x16c6f(0x65c)],_0x437e23[_0x16c6f(0x1ae)]);}}function _0x331c34(_0x1b3ddf,_0x475289,_0x43e291){const _0x4fab2d=_0x59d572;var _0x253b6c,_0x57110e,_0x2aeca7,_0x43fb53;let _0x3fa160=new Set([...'displayOperationIds'in _0x475289?(_0x253b6c=_0x475289[_0x4fab2d(0xa04)])==null?[]:_0x253b6c:[],..._0x4fab2d(0x419)in _0x475289?(_0x57110e=(_0x2aeca7=_0x475289['source'])==null?void 0x0:_0x2aeca7[_0x4fab2d(0xa2c)])==null?[]:_0x57110e:[]]),_0x1ef563=((_0x43fb53=_0x43e291['sourceSelectionBounds'])==null?[]:_0x43fb53)[_0x4fab2d(0xbcd)](_0x363e4c=>_0x363e4c[_0x4fab2d(0x8ee)]===_0x43e291[_0x4fab2d(0x8ee)]?_0x363e4c[_0x4fab2d(0xb5c)]?_0x3fa160[_0x4fab2d(0x66b)](_0x363e4c[_0x4fab2d(0xb5c)]):_0x363e4c['id']===_0x475289['id']:!0x1);for(let _0x58bd9c of _0x1ef563){var _0x54989c;let _0x3b6841=_0x7cb28d(_0x58bd9c[_0x4fab2d(0xa01)],_0x43e291[_0x4fab2d(0x809)]);_0x1b3ddf[_0x4fab2d(0x2f3)]=_0x4fab2d(0x933),_0x1b3ddf[_0x4fab2d(0x521)]=1.25,(_0x54989c=_0x1b3ddf['strokeRect'])==null||_0x54989c['call'](_0x1b3ddf,_0x3b6841['x'],_0x3b6841['y'],_0x3b6841[_0x4fab2d(0x65c)],_0x3b6841[_0x4fab2d(0x1ae)]);}}function _0x2772c2(_0xba2b1d,_0x5176e6,_0x35d27c,_0x29e089,_0x2d170e,_0x3f18cd,_0x34b386){const _0x3d26bb=_0x59d572;if(_0x5176e6[_0x3d26bb(0x2c1)]===_0x21fa40[_0x3d26bb(0x8bf)][_0x3d26bb(0x1a5)]&&_0x3f18cd&&_0x34b386){let _0xaad388=_0x5176e6,_0x32d794=_0xf973e3(_0xaad388,_0x275355(_0xaad388,_0x2d170e),_0x2d170e),_0x535f7f=_0x32d794==null?void 0x0:_0x32d794[_0x3d26bb(0x878)][_0x3d26bb(0x816)](_0x4d028a=>_0x4d028a[_0x3d26bb(0xc0a)][_0x3d26bb(0x8a8)](_0x34b386));if(_0x32d794&&_0x535f7f){let _0x22574a=_0x350cc0({'story':_0x32d794,'boxCssPx':_0x29e089,'paddingCssPx':_0x2d170e[_0x3d26bb(0x8ad)],'fontSizeScale':_0x2d170e[_0x3d26bb(0x809)][_0x3d26bb(0x68e)],'measureText':(_0x1ab6ea,_0x438916)=>_0x116f72(_0xba2b1d,_0x1ab6ea,_0x438916),'document':_0x2d170e['document'],'fontFamilyResolver':_0x2d170e['fontFamilyResolver']}),_0x28d5ef=_0x535f7f[_0x3d26bb(0xc0a)][_0x3d26bb(0x688)](0x0,_0x535f7f[_0x3d26bb(0xc0a)][_0x3d26bb(0x709)](_0x34b386))[_0x3d26bb(0xc71)]((_0x133bf9,_0x3a5a10)=>{const _0xf9306a=_0x3d26bb;var _0x5b6bbc,_0x2de1e5;return _0x133bf9+((_0x5b6bbc=(_0x2de1e5=_0x32d794['runs'][_0x3a5a10])==null?void 0x0:_0x2de1e5[_0xf9306a(0x975)]['length'])==null?0x0:_0x5b6bbc);},0x0);_0x15a377(_0xba2b1d,_0x22574a,_0x535f7f['id'],{'start':_0x28d5ef+_0x35d27c[_0x3d26bb(0x3c1)],'end':_0x28d5ef+_0x35d27c[_0x3d26bb(0x392)]});return;}}let _0x5e70cd=_0x1e8e66({'boxCssPx':_0x29e089,'text':_0x36824a(_0x5176e6),'runs':_0x149cbc(_0x5176e6),'textAnchor':_0x5176e6[_0x3d26bb(0x2c1)]===_0x21fa40[_0x3d26bb(0x8bf)][_0x3d26bb(0x1a5)]?_0x5176e6[_0x3d26bb(0x3b8)]:void 0x0,'fontSizeScale':_0x2d170e[_0x3d26bb(0x809)][_0x3d26bb(0x68e)],'measureText':(_0x585030,_0xbf36d2)=>_0x116f72(_0xba2b1d,_0x585030,_0xbf36d2),'document':_0x2d170e['document'],'fontFamilyResolver':_0x2d170e['fontFamilyResolver']}),_0x3c6361=_0x3813ef(_0x5e70cd,_0x35d27c);if(_0x3c6361[_0x3d26bb(0xba6)]){let _0x41e26c=_0xba2b1d[_0x3d26bb(0x3d0)],_0x56c089=_0xba2b1d[_0x3d26bb(0x7bb)];_0xba2b1d[_0x3d26bb(0x3d0)]=_0x3d26bb(0x8c5),_0xba2b1d[_0x3d26bb(0x7bb)]=0x1;for(let _0x29e5c3 of _0x3c6361)_0xba2b1d[_0x3d26bb(0x428)](_0x29e5c3['x'],_0x29e5c3['y'],_0x29e5c3['width'],_0x29e5c3['height']);_0xba2b1d[_0x3d26bb(0x3d0)]=_0x41e26c,_0xba2b1d[_0x3d26bb(0x7bb)]=_0x56c089;}let _0x583850=_0x125cb0(_0x5e70cd,_0x35d27c[_0x3d26bb(0x392)]);_0xba2b1d[_0x3d26bb(0x995)](),_0xba2b1d[_0x3d26bb(0x80a)](_0x583850['x'],_0x583850['y']),_0xba2b1d['lineTo'](_0x583850['x'],_0x583850['y']+_0x583850['height']),_0xba2b1d['stroke']();}function _0x15a377(_0x37224b,_0xfafd15,_0x2378d2,_0x189758){const _0x52443c=_0x59d572;let _0x39c6ea=_0x406d93(_0xfafd15,_0x2378d2,_0x189758);if(_0x39c6ea[_0x52443c(0xba6)]){let _0x4c037c=_0x37224b[_0x52443c(0x3d0)],_0x287c0d=_0x37224b[_0x52443c(0x7bb)];_0x37224b['fillStyle']=_0x52443c(0x8c5),_0x37224b[_0x52443c(0x7bb)]=0x1;for(let _0x36503d of _0x39c6ea)_0x37224b[_0x52443c(0x428)](_0x36503d['x'],_0x36503d['y'],_0x36503d[_0x52443c(0x65c)],_0x36503d['height']);_0x37224b[_0x52443c(0x3d0)]=_0x4c037c,_0x37224b['globalAlpha']=_0x287c0d;}let _0x5a08a2=_0x1d427a(_0xfafd15,_0x2378d2,_0x189758[_0x52443c(0x392)]);_0x5a08a2&&(_0x37224b[_0x52443c(0x995)](),_0x37224b[_0x52443c(0x80a)](_0x5a08a2['x'],_0x5a08a2['y']),_0x37224b['lineTo'](_0x5a08a2['x'],_0x5a08a2['y']+_0x5a08a2[_0x52443c(0x1ae)]),_0x37224b[_0x52443c(0xa25)]());}function _0x8165b8(_0x1b8278,_0x27b115,_0x463698){const _0xedac6d=_0x59d572;return _0x1b8278[_0xedac6d(0x2c1)]===_0x21fa40['PdfObjectType']['TEXT_BOX']?_0x27234b(_0x1b8278,_0x27b115,_0x463698):_0x1b8278[_0xedac6d(0x2c1)]===_0x21fa40[_0xedac6d(0x8bf)][_0xedac6d(0x592)]?_0x48bc6c(_0x1b8278,_0x27b115,_0x463698):_0x1b8278;}function _0x27234b(_0x5ba097,_0x54e4cd,_0x28095b){const _0x34ad0c=_0x59d572;var _0x523314,_0x17475c,_0xc57220;let _0x2b501b=_0x28095b[_0x34ad0c(0x182)],_0xa88691=(_0x2b501b==null?void 0x0:_0x2b501b[_0x34ad0c(0x826)])===_0x54e4cd?_0x2b501b[_0x34ad0c(0x975)]:void 0x0;if(_0xa88691===void 0x0||((_0x523314=_0x5ba097['runs'])==null?void 0x0:_0x523314[_0x34ad0c(0xb06)](_0x206315=>_0x206315[_0x34ad0c(0x975)])['join'](''))===_0xa88691)return _0x5ba097;let _0x554d76=(0x0,_0x21fa40['derivePdfEditorTextEdit'])((_0x17475c=(_0xc57220=_0x5ba097[_0x34ad0c(0x416)])==null?void 0x0:_0xc57220[_0x34ad0c(0xb06)](_0xa3255=>_0xa3255[_0x34ad0c(0x975)])[_0x34ad0c(0xb26)](''))==null?'':_0x17475c,_0xa88691);return{..._0x5ba097,'runs':(0x0,_0x21fa40[_0x34ad0c(0x587)])(_0x5ba097[_0x34ad0c(0x416)],_0x554d76)};}function _0x48bc6c(_0x5404f3,_0x17d9db,_0x369599){const _0x94b00f=_0x59d572;let _0x3bede5=_0x369599[_0x94b00f(0x182)],_0x31fb7d=(_0x3bede5==null?void 0x0:_0x3bede5[_0x94b00f(0x826)])===_0x17d9db?_0x3bede5[_0x94b00f(0x975)]:void 0x0;return _0x31fb7d===void 0x0?_0x5404f3:{..._0x5404f3,'run':{..._0x5404f3[_0x94b00f(0xaa9)],'text':_0x31fb7d}};}function _0x149cbc(_0xb885a2){const _0x2a6745=_0x59d572;if(_0xb885a2['type']===_0x21fa40[_0x2a6745(0x8bf)]['TEXT_BOX']){var _0x2becc7;return(_0x2becc7=_0xb885a2[_0x2a6745(0x416)])!=null&&_0x2becc7['length']?_0xb885a2['runs']:[{'text':'','fontSize':0xc}];}return _0xb885a2['type']===_0x21fa40[_0x2a6745(0x8bf)][_0x2a6745(0x592)]?[_0xb885a2['run']]:[{'text':'','fontSize':0xc}];}function _0x116f72(_0x23cd9f,_0x1110c9,_0x20276d){const _0x27bf26=_0x59d572;var _0x1faa99,_0x294eeb;let _0x2c978a=_0x23cd9f[_0x27bf26(0x7da)];_0x23cd9f[_0x27bf26(0x7da)]=_0x20276d;let _0xf3784e=(_0x1faa99=(_0x294eeb=_0x23cd9f['measureText'])==null?void 0x0:_0x294eeb[_0x27bf26(0x3f4)](_0x23cd9f,_0x1110c9)[_0x27bf26(0x65c)])==null?_0x1110c9[_0x27bf26(0xba6)]*0x8:_0x1faa99;return _0x23cd9f[_0x27bf26(0x7da)]=_0x2c978a,_0xf3784e;}function _0x7cb28d(_0xa216f6,_0x46600f){return _0x289788(_0xa216f6,_0x46600f);}function _0x29034e(_0x8324ef,_0x566515,_0x1e7120){const _0x5c8df4=_0x59d572;let _0x348e43=_0x566515[_0x5c8df4(0x701)];!_0x348e43||!_0x8324ef[_0x5c8df4(0x701)]||_0x8324ef[_0x5c8df4(0x701)](_0x348e43[0x0],_0x348e43[0x1],_0x348e43[0x2],_0x348e43[0x3],_0x428787(_0x348e43[0x4],_0x1e7120),_0x428787(_0x348e43[0x5],_0x1e7120));}function _0x255d62(_0x21ac28,_0x19c92b){const _0x8d33fe=_0x59d572;return _0x428787((0x0,_0x21fa40[_0x8d33fe(0x7c3)])(_0x21ac28),_0x19c92b);}function _0x3edb53(_0x3df9a7,_0x8923e6,_0x28195a){const _0x5abe4d=_0x59d572;return _0x372f47(_0x3df9a7,_0x8923e6,{'document':_0x28195a[_0x5abe4d(0xb09)],'fontFamilyResolver':_0x28195a[_0x5abe4d(0x987)]});}function _0x1d9c26(_0x52d0ff){const _0x6f24ba=_0x59d572;return typeof _0x52d0ff[_0x6f24ba(0x9ae)]==_0x6f24ba(0x221)?_0x52d0ff[_0x6f24ba(0x9ae)]:_0x6f24ba(0x797);}function _0x36824a(_0xf504dd){const _0x274a56=_0x59d572;if(_0xf504dd[_0x274a56(0x2c1)]===_0x21fa40[_0x274a56(0x8bf)]['TEXT_BOX']){var _0x2cbcf6,_0x51eee1;return(_0x2cbcf6=(_0x51eee1=_0xf504dd['runs'])==null?void 0x0:_0x51eee1[_0x274a56(0xb06)](_0x337628=>_0x337628[_0x274a56(0x975)])['join'](''))==null?'':_0x2cbcf6;}return _0xf504dd['type']===_0x21fa40[_0x274a56(0x8bf)][_0x274a56(0x592)]?_0xf504dd[_0x274a56(0xaa9)]['text']:'';}function _0x4e5b58(_0xacbf15,_0x1fc8e3){const _0xf4c01b=_0x59d572;var _0x26b853,_0x247614;let _0x1e36e7=_0x1fc8e3[_0xf4c01b(0xbe5)]?(_0x26b853=_0xacbf15[_0xf4c01b(0x430)][_0xf4c01b(0x209)][_0x1fc8e3[_0xf4c01b(0xbe5)]])==null?void 0x0:_0x26b853[_0xf4c01b(0xad5)]:void 0x0;return _0x1e36e7==null?(_0x247614=_0xacbf15[_0xf4c01b(0x430)]['objectPatches'][_0x1fc8e3[_0xf4c01b(0x2e9)]])==null?void 0x0:_0x247614[_0xf4c01b(0xad5)]:_0x1e36e7;}function _0x59c868(_0x4b5096,_0x3c1059){const _0x162c75=_0x59d572;return _0x3c1059[_0x162c75(0xa72)]?String(_0x4b5096)===_0x3c1059[_0x162c75(0xa72)]:_0x5cf8af(_0x4b5096);}function _0x268cbd(_0x187c55){const _0x851f75=_0x59d572;return Array['isArray'](_0x187c55)?_0x187c55['map'](_0x3fa892=>String(_0x3fa892))[_0x851f75(0xb26)](',\x20'):_0x187c55==null?'':String(_0x187c55);}function _0x520afc(_0x22152d,_0x5069a8){const _0xd5a807=_0x59d572;return typeof _0x22152d==_0xd5a807(0x221)?_0x22152d:Array[_0xd5a807(0x461)](_0x22152d)?'#'+_0x22152d[_0xd5a807(0x688)](0x0,0x3)['map'](_0x52ec38=>Math['max'](0x0,Math[_0xd5a807(0xb2a)](0xff,Math['round'](_0x52ec38*0xff))))[_0xd5a807(0xb06)](_0x47606a=>_0x47606a[_0xd5a807(0x23e)](0x10)[_0xd5a807(0x6da)](0x2,'0'))[_0xd5a807(0xb26)](''):_0x5069a8;}function _0x428787(_0x141c36,_0x1c7b2b){return _0x8b1958(_0x141c36,_0x1c7b2b);}function _0x423e05(_0x19b864,_0x269839,_0x4e19e4){const _0x108156=_0x59d572;return Math[_0x108156(0x542)](_0x269839,Math[_0x108156(0xb2a)](_0x4e19e4,_0x19b864));}function _0x46d411(_0x5e6560){const _0x26954e=_0x59d572;var _0x3d364e;let _0x3328f3=Number[_0x26954e(0x771)](_0x5e6560['zoom'])&&_0x5e6560[_0x26954e(0x68e)]>0x0?_0x5e6560['zoom']:0x1,_0x5fc734=Math[_0x26954e(0xb2a)](_0x5e6560[_0x26954e(0xa01)][0x1],_0x5e6560[_0x26954e(0xa01)][0x3]),_0x35557e=Math['min'](_0x5e6560[_0x26954e(0xa01)][0x0],_0x5e6560[_0x26954e(0xa01)][0x2]),_0x557fe4=Math[_0x26954e(0x542)](_0x5e6560[_0x26954e(0xa01)][0x0],_0x5e6560[_0x26954e(0xa01)][0x2]),_0x494740=Math['abs'](_0x5e6560[_0x26954e(0xa01)][0x3]-_0x5e6560[_0x26954e(0xa01)][0x1]),_0x3165ac=Math[_0x26954e(0x542)](0x0,(0x0,_0x21fa40[_0x26954e(0x14f)])(Math[_0x26954e(0x542)](0x0,_0x5e6560[_0x26954e(0x406)])/_0x3328f3)),_0x541d1=Math[_0x26954e(0x542)](0x0,(_0x3d364e=_0x5e6560[_0x26954e(0xb49)])==null?_0x494740:_0x3d364e),_0x3584ce=Math[_0x26954e(0x542)](_0x541d1,_0x3165ac),_0x5a9511=Math['max'](0x0,_0x5e6560[_0x26954e(0x2ec)]-_0x5fc734),_0x4f59c4=Math[_0x26954e(0xb2a)](_0x3584ce,_0x5a9511),_0x3c44bd=(0x0,_0x21fa40[_0x26954e(0x14f)])(0.5/_0x3328f3);return{'bbox':[_0x35557e,_0x5fc734,_0x557fe4,_0x5fc734+_0x4f59c4],'requiredHeight':_0x3165ac,'appliedHeight':_0x4f59c4,'overflow':_0x3584ce-_0x5a9511>_0x3c44bd};}function _0x5e5052(_0x9ebfcb,_0x1f650e){const _0xf6cb5c=_0x59d572;return[(0x0,_0x21fa40['cssPxToEmu'])(_0x9ebfcb[0x0]/_0x1f650e['zoom']),(0x0,_0x21fa40[_0xf6cb5c(0x14f)])(_0x9ebfcb[0x1]/_0x1f650e['zoom'])];}function _0x4dcafd(_0x4f0594){let _0x2ee5ae,_0x53725f,_0x816e3b;return{'pointerDown'(_0x4dfb46){const _0x22ce47=_0x57a5;var _0x4928cf,_0x26b8bf,_0x29cf76,_0x2668b9,_0x3685ec,_0x2ad16c,_0xddddf9,_0x5ded49,_0xfa15bf,_0x3245ce;let _0x597fc5=_0x4f0594[_0x22ce47(0x3d5)](),_0x3e509c=(_0x4928cf=_0x4dfb46[_0x22ce47(0x8ee)])==null?_0x4f0594[_0x22ce47(0x8ee)]:_0x4928cf,_0x89030f=_0x5e5052(_0x4dfb46[_0x22ce47(0x641)],_0x4f0594[_0x22ce47(0x809)]),_0x5e18e4=(_0x26b8bf=(_0x29cf76=_0x4dfb46[_0x22ce47(0x432)])==null?_0x4f0594[_0x22ce47(0x432)]:_0x29cf76)==null?0x4:_0x26b8bf,_0x2770c3=(_0x2668b9=_0x4dfb46[_0x22ce47(0x7d3)])==null?_0x21fa40['PdfEditorHitTestMode'][_0x22ce47(0x311)]:_0x2668b9,_0x1f609d=_0x2df55e(_0x597fc5,_0x3e509c,_0x89030f,_0x2770c3,_0x4f0594[_0x22ce47(0x809)],!0x0);if(_0x1f609d)return _0x2ee5ae=_0x1f609d,_0x53725f=void 0x0,_0x816e3b=void 0x0,{'session':_0x597fc5,'modelPoint':_0x89030f};let _0x4d5ffe=_0x11c3ee(_0x597fc5,_0x3e509c,_0x89030f,_0x2770c3);if(_0x4d5ffe)return _0x2ee5ae=_0x4d5ffe,_0x53725f=void 0x0,_0x816e3b=void 0x0,{'session':_0x597fc5,'modelPoint':_0x89030f};let _0x59e51c=_0x16e04a(_0x2770c3)?(_0x3685ec=_0x4f0594['getNativeImageTargets'])==null?void 0x0:_0x3685ec[_0x22ce47(0x3f4)](_0x4f0594,{'pageId':_0x3e509c,'cssPoint':_0x4dfb46[_0x22ce47(0x641)],'modelPoint':_0x89030f,'mode':_0x2770c3}):void 0x0,_0x36a93b=_0x16e04a(_0x2770c3)?(_0x2ad16c=_0x4f0594[_0x22ce47(0x9ee)])==null?void 0x0:_0x2ad16c[_0x22ce47(0x3f4)](_0x4f0594,{'pageId':_0x3e509c,'cssPoint':_0x4dfb46['cssPoint'],'modelPoint':_0x89030f,'mode':_0x2770c3}):void 0x0,_0x1c280e=_0xabb313(_0x2770c3)?(_0xddddf9=_0x4f0594[_0x22ce47(0x8ce)])==null?void 0x0:_0xddddf9[_0x22ce47(0x3f4)](_0x4f0594,{'pageId':_0x3e509c,'cssPoint':_0x4dfb46[_0x22ce47(0x641)],'modelPoint':_0x89030f,'mode':_0x2770c3}):void 0x0,_0x4c8991=_0x866ba6(_0x2770c3)?(_0x5ded49=_0x4f0594[_0x22ce47(0x909)])==null?void 0x0:_0x5ded49[_0x22ce47(0x3f4)](_0x4f0594,{'pageId':_0x3e509c,'cssPoint':_0x4dfb46['cssPoint'],'modelPoint':_0x89030f,'mode':_0x2770c3}):void 0x0,_0x59f3e2=_0x483355(_0x597fc5,_0x4f0594),_0x21a2f1=_0x21fa40[_0x22ce47(0x3fa)]['execute'](_0x59f3e2,{'pageId':_0x3e509c,'point':_0x89030f,'tolerance':(0x0,_0x21fa40[_0x22ce47(0x14f)])(_0x5e18e4/_0x4f0594[_0x22ce47(0x809)][_0x22ce47(0x68e)]),'mode':_0x2770c3,'includeNative':!!(_0x59e51c!=null&&_0x59e51c['length']||_0x36a93b!=null&&_0x36a93b[_0x22ce47(0xba6)]||_0x1c280e!=null&&_0x1c280e[_0x22ce47(0xba6)]),'nativeImageTargets':_0x59e51c,'nativeFormXObjectTargets':_0x36a93b,'nativeTextTargets':_0x1c280e,'formFieldTargets':_0x4c8991}),_0x40b599={..._0x597fc5,'selection':(_0xfa15bf=_0x21a2f1[_0x22ce47(0xb23)])==null?_0x597fc5[_0x22ce47(0xb23)]:_0xfa15bf};return(_0x3245ce=_0x4f0594[_0x22ce47(0xa5b)])==null||_0x3245ce[_0x22ce47(0x3f4)](_0x4f0594,_0x40b599),_0x53725f=void 0x0,_0x816e3b=void 0x0,_0x2ee5ae=_0x2df55e(_0x40b599,_0x3e509c,_0x89030f,_0x2770c3,_0x4f0594[_0x22ce47(0x809)]),!_0x2ee5ae&&_0x2770c3===_0x21fa40[_0x22ce47(0x940)][_0x22ce47(0x311)]&&(_0x53725f=_0x1bc034(_0x40b599,_0x3e509c,_0x89030f,_0x59e51c,_0x4f0594),_0x816e3b=_0x53725f?void 0x0:_0x328d23(_0x40b599,_0x3e509c,_0x89030f,_0x36a93b,_0x4f0594)),{'session':_0x40b599,'modelPoint':_0x89030f,'commandResults':[_0x21a2f1]};},'pointerMove'(_0xa0c515){const _0x15f9c3=_0x57a5;var _0x2b99ed;let _0x1bf780=_0x5e5052(_0xa0c515[_0x15f9c3(0x641)],_0x4f0594[_0x15f9c3(0x809)]);if(!_0x2ee5ae){if(_0x53725f){var _0x483d69;let _0x652307=_0x143b4b(_0x53725f,_0x1bf780,_0x4f0594,{'recordLog':!0x1,'recordPending':!0x1,'recordHistory':!0x1,'clearRedo':!0x1});return _0x53725f={..._0x53725f,'hasMoved':!0x0},(_0x483d69=_0x4f0594[_0x15f9c3(0x249)])==null||_0x483d69[_0x15f9c3(0x3f4)](_0x4f0594,_0x652307),{'session':_0x652307,'modelPoint':_0x1bf780,'preview':!0x0};}if(_0x816e3b){var _0x42b64c;let _0x3e8635=_0x188faa(_0x816e3b,_0x1bf780,_0x4f0594,{'recordLog':!0x1,'recordPending':!0x1,'recordHistory':!0x1,'clearRedo':!0x1});return _0x816e3b={..._0x816e3b,'hasMoved':!0x0},(_0x42b64c=_0x4f0594[_0x15f9c3(0x249)])==null||_0x42b64c[_0x15f9c3(0x3f4)](_0x4f0594,_0x3e8635),{'session':_0x3e8635,'modelPoint':_0x1bf780,'preview':!0x0};}return{'session':_0x4f0594[_0x15f9c3(0x3d5)](),'modelPoint':_0x1bf780};}let _0x217d5a=_0x156e92(_0x2ee5ae,_0x1bf780,_0x4f0594,{'recordLog':!0x1,'recordPending':!0x1,'recordHistory':!0x1,'clearRedo':!0x1});return _0x2ee5ae={..._0x2ee5ae,'lastPoint':_0x1bf780,'hasMoved':!0x0},(_0x2b99ed=_0x4f0594['setPreviewSession'])==null||_0x2b99ed[_0x15f9c3(0x3f4)](_0x4f0594,_0x217d5a),{'session':_0x217d5a,'modelPoint':_0x1bf780,'preview':!0x0};},'pointerUp'(_0x280d74){const _0x2c0c26=_0x57a5;var _0x5edecc,_0x5aaff1;let _0x225de8=_0x5e5052(_0x280d74[_0x2c0c26(0x641)],_0x4f0594[_0x2c0c26(0x809)]);if(!_0x2ee5ae){if(_0x53725f){var _0x95bb5a,_0x330624;let _0x5b7693=_0x53725f;if(_0x53725f=void 0x0,(_0x95bb5a=_0x4f0594[_0x2c0c26(0x249)])==null||_0x95bb5a[_0x2c0c26(0x3f4)](_0x4f0594,void 0x0),!_0x5b7693[_0x2c0c26(0x147)]&&_0x1ec88f(_0x225de8,_0x5b7693[_0x2c0c26(0x225)]))return{'session':_0x4f0594[_0x2c0c26(0x3d5)](),'modelPoint':_0x225de8,'committed':!0x1};let _0x194e40=_0x143b4b(_0x5b7693,_0x225de8,_0x4f0594);return(_0x330624=_0x4f0594['setSession'])==null||_0x330624['call'](_0x4f0594,_0x194e40),{'session':_0x194e40,'modelPoint':_0x225de8,'commandResults':_0x58c906(_0x5b7693[_0x2c0c26(0x2c5)],_0x194e40),'committed':!0x0};}if(_0x816e3b){var _0x3ca2a5,_0x50bfb8;let _0x1957ec=_0x816e3b;if(_0x816e3b=void 0x0,(_0x3ca2a5=_0x4f0594['setPreviewSession'])==null||_0x3ca2a5[_0x2c0c26(0x3f4)](_0x4f0594,void 0x0),!_0x1957ec[_0x2c0c26(0x147)]&&_0x1ec88f(_0x225de8,_0x1957ec['startPoint']))return{'session':_0x4f0594[_0x2c0c26(0x3d5)](),'modelPoint':_0x225de8,'committed':!0x1};let _0xa7de82=_0x188faa(_0x1957ec,_0x225de8,_0x4f0594);return(_0x50bfb8=_0x4f0594[_0x2c0c26(0xa5b)])==null||_0x50bfb8['call'](_0x4f0594,_0xa7de82),{'session':_0xa7de82,'modelPoint':_0x225de8,'commandResults':_0x58c906(_0x1957ec['baseSession'],_0xa7de82),'committed':!0x0};}return{'session':_0x4f0594[_0x2c0c26(0x3d5)](),'modelPoint':_0x225de8};}let _0x5aa067=_0x2ee5ae;if(_0x2ee5ae=void 0x0,(_0x5edecc=_0x4f0594[_0x2c0c26(0x249)])==null||_0x5edecc['call'](_0x4f0594,void 0x0),!_0x5aa067[_0x2c0c26(0x147)]&&_0x1ec88f(_0x225de8,_0x5aa067[_0x2c0c26(0x225)]))return{'session':_0x4f0594['getSession'](),'modelPoint':_0x225de8,'committed':!0x1};let _0x17ca36=_0x156e92(_0x5aa067,_0x225de8,_0x4f0594);return(_0x5aaff1=_0x4f0594['setSession'])==null||_0x5aaff1[_0x2c0c26(0x3f4)](_0x4f0594,_0x17ca36),{'session':_0x17ca36,'modelPoint':_0x225de8,'commandResults':_0x58c906(_0x5aa067[_0x2c0c26(0x2c5)],_0x17ca36),'committed':!0x0};},'pointerCancel'(){const _0xf54e67=_0x57a5;var _0x117405;_0x2ee5ae=void 0x0,_0x53725f=void 0x0,_0x816e3b=void 0x0,(_0x117405=_0x4f0594[_0xf54e67(0x249)])==null||_0x117405[_0xf54e67(0x3f4)](_0x4f0594,void 0x0);},'doubleClick'(_0x4b0a01){const _0x51dfcb=_0x57a5;return this[_0x51dfcb(0x1fd)]({..._0x4b0a01,'mode':_0x21fa40['PdfEditorHitTestMode'][_0x51dfcb(0x97d)]});},'commitTextEdit'(_0x539095){const _0x30f9cf=_0x57a5;var _0x1cd81d;let _0x566206=_0x4f0594[_0x30f9cf(0x3d5)](),_0x283eb5=_0x21fa40['pdfEditTextCommand'][_0x30f9cf(0x1ad)](_0x483355(_0x566206,_0x4f0594),{'pageId':_0x539095['pageId'],'objectId':_0x539095[_0x30f9cf(0x826)],'text':_0x539095[_0x30f9cf(0x975)]}),_0x4218e8=_0x123290(_0x566206,_0x283eb5);return(_0x1cd81d=_0x4f0594[_0x30f9cf(0xa5b)])==null||_0x1cd81d['call'](_0x4f0594,_0x4218e8),{'session':_0x4218e8,'modelPoint':[0x0,0x0],'commandResults':[_0x283eb5],'committed':!!_0x283eb5[_0x30f9cf(0xa8e)]};},'commitFormFieldEdit'(_0xbfbcc8){const _0x41f2fd=_0x57a5;var _0x1d39fc;let _0x19ad42=_0x4f0594[_0x41f2fd(0x3d5)](),_0x8ecb68=_0x21fa40[_0x41f2fd(0x135)][_0x41f2fd(0x1ad)](_0x483355(_0x19ad42,_0x4f0594),_0xbfbcc8),_0x272a76=_0x123290(_0x19ad42,_0x8ecb68);return(_0x1d39fc=_0x4f0594[_0x41f2fd(0xa5b)])==null||_0x1d39fc[_0x41f2fd(0x3f4)](_0x4f0594,_0x272a76),{'session':_0x272a76,'modelPoint':[0x0,0x0],'commandResults':[_0x8ecb68],'committed':!!_0x8ecb68[_0x41f2fd(0xa8e)]};}};}function _0x58c906(_0x2bc600,_0x4713ed){const _0x5837a8=_0x59d572;let _0x432e1e=(0x0,_0x21fa40[_0x5837a8(0x220)])(_0x2bc600[_0x5837a8(0x1fb)],_0x4713ed[_0x5837a8(0x1fb)]);return _0x432e1e[_0x5837a8(0xb06)]((_0x559a3c,_0x22c07b)=>({'batch':_0x559a3c,..._0x22c07b===_0x432e1e[_0x5837a8(0xba6)]-0x1?{'selection':_0x4713ed[_0x5837a8(0xb23)]}:{}}));}function _0x328d23(_0x5049b5,_0x3983dc,_0x5af97d,_0x14b834,_0x29b6d3){const _0x2868b9=_0x59d572;let _0x2181aa=_0x4bc69c(_0x5049b5,_0x14b834);if(!_0x2181aa||_0x2181aa[_0x2868b9(0x8ee)]!==_0x3983dc)return;let _0x5cc550=_0x5bb4a7(_0x29b6d3,_0x2868b9(0x961));return{'pageId':_0x3983dc,'target':_0x2181aa,'startPoint':_0x5af97d,'baseSession':_0x5049b5,'objectId':_0x5cc550,'batchId':_0x5bb4a7(_0x29b6d3,_0x2868b9(0xa8e)),'addObjectMutationId':_0x5bb4a7(_0x29b6d3,'mutation'),'suppressionMutationId':_0x5bb4a7(_0x29b6d3,_0x2868b9(0x9f5)),'replacementLinkMutationId':_0x5bb4a7(_0x29b6d3,_0x2868b9(0x9f5)),'suppressionId':_0x5cc550+_0x2868b9(0xa06),'replacementLinkId':_0x5cc550+_0x2868b9(0x500),'hasMoved':!0x1};}function _0x4bc69c(_0x241f89,_0x21b15){const _0x37598b=_0x59d572;var _0x50f547,_0x4afc9d;let _0x56cb81=_0x241f89[_0x37598b(0xb23)]['anchors'][_0x37598b(0x816)](_0x119221=>_0x119221[_0x37598b(0x395)]===_0x21fa40['PdfEditorSelectionKind'][_0x37598b(0xbc1)]);if(!_0x56cb81||!(_0x21b15!=null&&_0x21b15['length']))return;let _0x208427=_0x37598b(0xa04)in _0x56cb81?(_0x50f547=_0x56cb81[_0x37598b(0xa04)])==null?[]:_0x50f547:[],_0x23a9b4='source'in _0x56cb81?(_0x4afc9d=_0x56cb81['source'])==null?void 0x0:_0x4afc9d[_0x37598b(0xb54)]:void 0x0;return _0x21b15[_0x37598b(0x816)](_0x249798=>{const _0x1ecc96=_0x37598b;var _0x593e0b,_0x56794b,_0x245ec8;return _0x23a9b4&&_0xf924b9((_0x593e0b=_0x249798['source'])==null?void 0x0:_0x593e0b[_0x1ecc96(0xb54)],_0x23a9b4)?!0x0:((_0x56794b=(_0x245ec8=_0x249798[_0x1ecc96(0x419)])==null?void 0x0:_0x245ec8[_0x1ecc96(0xa2c)])==null?[_0x249798['id']]:_0x56794b)[_0x1ecc96(0x790)](_0x515471=>_0x208427[_0x1ecc96(0x8a8)](_0x515471));});}function _0x188faa(_0x39010f,_0x10867f,_0x520423,_0x2dbacd){const _0x48ebb5=_0x59d572;let _0x3c79e2=_0xb95584(_0x39010f,_0x520423,_0x2dbacd),_0x56955d=_0x10867f[0x0]-_0x39010f[_0x48ebb5(0x225)][0x0],_0x111af5=_0x10867f[0x1]-_0x39010f[_0x48ebb5(0x225)][0x1],_0x426279=_0x282067(_0x39010f['target']['bbox'],_0x56955d,_0x111af5);return _0x123290(_0x3c79e2,_0x21fa40['pdfMoveObjectCommand'][_0x48ebb5(0x1ad)](_0x483355(_0x3c79e2,_0x520423),{'pageId':_0x39010f[_0x48ebb5(0x8ee)],'objectId':_0x39010f[_0x48ebb5(0x826)],'bbox':_0x426279,'previousBbox':_0x39010f[_0x48ebb5(0x5f8)][_0x48ebb5(0xa01)]}),_0x2dbacd);}function _0xb95584(_0x4b4106,_0x2c2e12,_0x528596){const _0x34b9b2=_0x59d572;var _0x27622c,_0x3805c6;let _0x401b87=_0x21fa40[_0x34b9b2(0x211)][_0x34b9b2(0x1ad)](_0x483355(_0x4b4106[_0x34b9b2(0x2c5)],_0x2c2e12),{'pageId':_0x4b4106[_0x34b9b2(0x8ee)],'objectId':_0x4b4106[_0x34b9b2(0x826)],'objectRef':_0x4b4106['target']['objectRef'],'assetId':_0x4b4106[_0x34b9b2(0x5f8)][_0x34b9b2(0x9c4)],'displayListId':_0x4b4106[_0x34b9b2(0x5f8)][_0x34b9b2(0x1b7)],'bbox':_0x4b4106[_0x34b9b2(0x5f8)][_0x34b9b2(0xa01)],'displayOperationIds':(_0x27622c=(_0x3805c6=_0x4b4106[_0x34b9b2(0x5f8)][_0x34b9b2(0x419)])==null?void 0x0:_0x3805c6['operatorIds'])==null?[_0x4b4106[_0x34b9b2(0x5f8)]['id']]:_0x27622c,'source':_0x4b4106['target'][_0x34b9b2(0x419)],'batchId':_0x4b4106['batchId'],'addObjectMutationId':_0x4b4106[_0x34b9b2(0x224)],'suppressionMutationId':_0x4b4106[_0x34b9b2(0x24c)],'replacementLinkMutationId':_0x4b4106[_0x34b9b2(0x69e)],'suppressionId':_0x4b4106[_0x34b9b2(0x415)],'replacementLinkId':_0x4b4106[_0x34b9b2(0x5e5)],'zIndex':_0x38b864(_0x4b4106[_0x34b9b2(0x2c5)],_0x4b4106[_0x34b9b2(0x8ee)])});return _0x123290(_0x4b4106['baseSession'],_0x401b87,_0x528596);}function _0x1bc034(_0x5b38e9,_0x25af68,_0x285406,_0x3879cf,_0x50ec9d){const _0x27ee96=_0x59d572;let _0x144d77=_0x5b4372(_0x5b38e9,_0x3879cf);if(!(_0x144d77!=null&&_0x144d77[_0x27ee96(0x9c4)])||_0x144d77['pageId']!==_0x25af68)return;let _0x10c472=_0x5bb4a7(_0x50ec9d,_0x27ee96(0x961));return{'pageId':_0x25af68,'target':_0x144d77,'startPoint':_0x285406,'baseSession':_0x5b38e9,'objectId':_0x10c472,'batchId':_0x5bb4a7(_0x50ec9d,_0x27ee96(0xa8e)),'addObjectMutationId':_0x5bb4a7(_0x50ec9d,_0x27ee96(0x9f5)),'suppressionMutationId':_0x5bb4a7(_0x50ec9d,'mutation'),'replacementLinkMutationId':_0x5bb4a7(_0x50ec9d,_0x27ee96(0x9f5)),'suppressionId':_0x10c472+_0x27ee96(0xa06),'replacementLinkId':_0x10c472+_0x27ee96(0x500),'hasMoved':!0x1};}function _0x5b4372(_0xdfe1cc,_0x42cf8f){const _0x46cd1b=_0x59d572;var _0x23c071,_0x4592f4;let _0x211375=_0xdfe1cc['selection'][_0x46cd1b(0x60c)][_0x46cd1b(0x816)](_0xa4e776=>_0xa4e776[_0x46cd1b(0x395)]===_0x21fa40['PdfEditorSelectionKind']['SOURCE_SPAN']);if(!_0x211375||!(_0x42cf8f!=null&&_0x42cf8f[_0x46cd1b(0xba6)]))return;let _0x543b6c=_0x46cd1b(0xa04)in _0x211375?(_0x23c071=_0x211375[_0x46cd1b(0xa04)])==null?[]:_0x23c071:[],_0x1d65e1=_0x46cd1b(0x419)in _0x211375?(_0x4592f4=_0x211375[_0x46cd1b(0x419)])==null?void 0x0:_0x4592f4[_0x46cd1b(0xb54)]:void 0x0;return _0x42cf8f['find'](_0x2e9f41=>{const _0x40381a=_0x46cd1b;var _0x186298,_0x16346a,_0x33ebeb;return _0x1d65e1&&_0xf924b9((_0x186298=_0x2e9f41[_0x40381a(0x419)])==null?void 0x0:_0x186298[_0x40381a(0xb54)],_0x1d65e1)?!0x0:((_0x16346a=(_0x33ebeb=_0x2e9f41[_0x40381a(0x419)])==null?void 0x0:_0x33ebeb['operatorIds'])==null?[_0x2e9f41['id']]:_0x16346a)[_0x40381a(0x790)](_0x351ad9=>_0x543b6c[_0x40381a(0x8a8)](_0x351ad9));});}function _0x143b4b(_0x3c0b9b,_0x19db5e,_0x4c1bbd,_0x3f9333){const _0x131b8b=_0x59d572;let _0x52ce10=_0x59b1a1(_0x3c0b9b,_0x4c1bbd,_0x3f9333),_0x4dcea6=_0x19db5e[0x0]-_0x3c0b9b[_0x131b8b(0x225)][0x0],_0x4c4153=_0x19db5e[0x1]-_0x3c0b9b[_0x131b8b(0x225)][0x1],_0x1143cf=_0x282067(_0x3c0b9b[_0x131b8b(0x5f8)][_0x131b8b(0xa01)],_0x4dcea6,_0x4c4153);return _0x123290(_0x52ce10,_0x21fa40['pdfMoveObjectCommand'][_0x131b8b(0x1ad)](_0x483355(_0x52ce10,_0x4c1bbd),{'pageId':_0x3c0b9b[_0x131b8b(0x8ee)],'objectId':_0x3c0b9b[_0x131b8b(0x826)],'bbox':_0x1143cf,'previousBbox':_0x3c0b9b['target'][_0x131b8b(0xa01)]}),_0x3f9333);}function _0x59b1a1(_0x281bee,_0x150131,_0x981ac6){const _0x44559e=_0x59d572;var _0x2187b1,_0x55ef19;let _0x33d846=_0x21fa40[_0x44559e(0x617)][_0x44559e(0x1ad)](_0x483355(_0x281bee['baseSession'],_0x150131),{'pageId':_0x281bee[_0x44559e(0x8ee)],'objectId':_0x281bee[_0x44559e(0x826)],'assetId':_0x281bee['target']['assetId'],'bbox':_0x281bee[_0x44559e(0x5f8)][_0x44559e(0xa01)],'displayOperationIds':(_0x2187b1=(_0x55ef19=_0x281bee[_0x44559e(0x5f8)][_0x44559e(0x419)])==null?void 0x0:_0x55ef19[_0x44559e(0xa2c)])==null?[_0x281bee[_0x44559e(0x5f8)]['id']]:_0x2187b1,'source':_0x281bee[_0x44559e(0x5f8)][_0x44559e(0x419)],'batchId':_0x281bee['batchId'],'addObjectMutationId':_0x281bee[_0x44559e(0x224)],'suppressionMutationId':_0x281bee[_0x44559e(0x24c)],'replacementLinkMutationId':_0x281bee[_0x44559e(0x69e)],'suppressionId':_0x281bee[_0x44559e(0x415)],'replacementLinkId':_0x281bee[_0x44559e(0x5e5)],'zIndex':_0x38b864(_0x281bee[_0x44559e(0x2c5)],_0x281bee['pageId'])});return _0x123290(_0x281bee[_0x44559e(0x2c5)],_0x33d846,_0x981ac6);}function _0x16e04a(_0xfb0295){const _0xcbd330=_0x59d572;return _0xfb0295===_0x21fa40[_0xcbd330(0x940)]['SELECT']||_0xfb0295===_0x21fa40['PdfEditorHitTestMode']['IMAGE'];}function _0xabb313(_0x5311a6){const _0x3593e5=_0x59d572;return _0x5311a6===_0x21fa40[_0x3593e5(0x940)][_0x3593e5(0x311)]||_0x5311a6===_0x21fa40[_0x3593e5(0x940)][_0x3593e5(0x97d)];}function _0x866ba6(_0x15c7e0){const _0xaf2506=_0x59d572;return _0x15c7e0===_0x21fa40[_0xaf2506(0x940)][_0xaf2506(0x311)]||_0x15c7e0===_0x21fa40[_0xaf2506(0x940)][_0xaf2506(0x97d)]||_0x15c7e0===_0x21fa40['PdfEditorHitTestMode'][_0xaf2506(0x54f)];}function _0x2df55e(_0x1e4447,_0x549598,_0x1333ff,_0x597632,_0x320ff3,_0x332cb7=!0x1){const _0x18648e=_0x59d572;var _0xbf2f4,_0x1ab94e;if(_0x597632!==_0x21fa40[_0x18648e(0x940)][_0x18648e(0x311)])return;let _0x27806c=_0x47e029(_0x1e4447),_0x18e619=_0x27806c?(_0xbf2f4=_0x1e4447[_0x18648e(0x430)][_0x18648e(0x24a)][_0x27806c])==null?void 0x0:_0xbf2f4['object']:void 0x0,_0x2f47bb=_0x18e619==null?void 0x0:_0x18e619[_0x18648e(0xa01)];if(!_0x27806c||!_0x18e619||!_0x2f47bb)return;let _0x2282ce=_0x450de7(_0x1e4447,_0x549598),_0x3e017b=(0x0,_0x21fa40[_0x18648e(0x14f)])(0x8/_0x320ff3['zoom']),_0x52cab2=_0x18e619[_0x18648e(0x701)]?(_0x1ab94e=_0x195f3e(_0x1333ff,_0x18e619[_0x18648e(0x701)]))==null?_0x1333ff:_0x1ab94e:_0x1333ff,_0x5d3e99=_0x2bd337(_0x52cab2,_0x2f47bb,_0x320ff3,_0x3e017b),_0x5363a4=_0x5d3e99?void 0x0:_0xc0a2b4(_0x52cab2,_0x2f47bb,_0x3e017b);if(!(_0x332cb7&&!_0x5d3e99&&!_0x5363a4))return{'pageId':_0x549598,'objectId':_0x27806c,'interaction':_0x5d3e99?'rotate':_0x5363a4?_0x18648e(0x16e):_0x18648e(0x529),'handleId':_0x5d3e99?_0x18648e(0x23f):_0x5363a4,'startPoint':_0x1333ff,'startLocalPoint':_0x52cab2,'lastPoint':_0x1333ff,'startBbox':[..._0x2f47bb],'startTransform':_0x18e619[_0x18648e(0x701)]?[..._0x18e619[_0x18648e(0x701)]]:void 0x0,'objects':_0x2282ce[_0x18648e(0xba6)]?_0x2282ce:[{'pageId':_0x549598,'objectId':_0x27806c,'startBbox':[..._0x2f47bb],'startTransform':_0x18e619[_0x18648e(0x701)]?[..._0x18e619[_0x18648e(0x701)]]:void 0x0}],'baseSession':_0x1e4447,'hasMoved':!0x1};}function _0x11c3ee(_0xb4301,_0x1603e5,_0x3b8247,_0x43d3cb){const _0x336e3b=_0x59d572;var _0xb3f400;if(_0x43d3cb!==_0x21fa40[_0x336e3b(0x940)][_0x336e3b(0x311)])return;let _0x4cf343=_0x450de7(_0xb4301,_0x1603e5),_0x384e3e=_0x4cf343[_0x336e3b(0x816)](_0x25fd83=>_0x3645b5(_0xb4301,_0x25fd83[_0x336e3b(0x826)],_0x3b8247));if(!_0x384e3e)return;let _0x4dd5fa=_0x384e3e[_0x336e3b(0x6fa)]?(_0xb3f400=_0x195f3e(_0x3b8247,_0x384e3e[_0x336e3b(0x6fa)]))==null?_0x3b8247:_0xb3f400:_0x3b8247;return{'pageId':_0x1603e5,'objectId':_0x384e3e[_0x336e3b(0x826)],'interaction':_0x336e3b(0x529),'startPoint':_0x3b8247,'startLocalPoint':_0x4dd5fa,'lastPoint':_0x3b8247,'startBbox':[..._0x384e3e['startBbox']],'startTransform':_0x384e3e[_0x336e3b(0x6fa)]?[..._0x384e3e[_0x336e3b(0x6fa)]]:void 0x0,'objects':_0x4cf343,'baseSession':_0xb4301,'hasMoved':!0x1};}function _0x156e92(_0x34d2e6,_0x3099a6,_0x55672c,_0x2f3d65){const _0x1be316=_0x59d572;var _0x16dcd2;let _0x5ac17a=_0x3099a6[0x0]-_0x34d2e6[_0x1be316(0x225)][0x0],_0x186565=_0x3099a6[0x1]-_0x34d2e6['startPoint'][0x1];if(_0x34d2e6[_0x1be316(0x4de)]==='move'&&_0x34d2e6['objects'][_0x1be316(0xba6)]>0x1){let _0x4bd34e=_0x21fa40['pdfMoveObjectsCommand'][_0x1be316(0x1ad)](_0x483355(_0x34d2e6[_0x1be316(0x2c5)],_0x55672c),{'pageId':_0x34d2e6[_0x1be316(0x8ee)],'placements':_0x34d2e6[_0x1be316(0x41f)][_0x1be316(0xb06)](_0x19c3af=>({'pageId':_0x19c3af[_0x1be316(0x8ee)],'objectId':_0x19c3af['objectId'],'bbox':_0x19c3af['startTransform']?_0x19c3af['startBbox']:_0x282067(_0x19c3af['startBbox'],_0x5ac17a,_0x186565),'transform':_0x19c3af[_0x1be316(0x6fa)]?_0x419b6e(_0x277a94(_0x5ac17a,_0x186565),_0x19c3af[_0x1be316(0x6fa)]):void 0x0,'previousBbox':_0x19c3af[_0x1be316(0x116)],'previousTransform':_0x19c3af[_0x1be316(0x6fa)]}))});return _0x123290(_0x34d2e6['baseSession'],_0x4bd34e,_0x2f3d65);}let _0x2a86bb=_0x34d2e6[_0x1be316(0x6fa)]?(_0x16dcd2=_0x195f3e(_0x3099a6,_0x34d2e6[_0x1be316(0x6fa)]))==null?_0x3099a6:_0x16dcd2:_0x3099a6,_0x1fe4f7=_0x34d2e6[_0x1be316(0x4de)]==='rotate'?_0x34d2e6['startBbox']:_0x34d2e6[_0x1be316(0x4de)]==='resize'&&_0x34d2e6['handleId']?_0x179500(_0x34d2e6['startBbox'],_0x34d2e6['handleId'],_0x2a86bb):_0x34d2e6[_0x1be316(0x6fa)]?_0x34d2e6[_0x1be316(0x116)]:_0x282067(_0x34d2e6['startBbox'],_0x5ac17a,_0x186565),_0x9c241=_0x34d2e6[_0x1be316(0x4de)]==='rotate'?_0x38c771(_0x34d2e6[_0x1be316(0x116)],_0x34d2e6[_0x1be316(0x225)],_0x3099a6,_0x34d2e6[_0x1be316(0x6fa)]):_0x34d2e6[_0x1be316(0x4de)]===_0x1be316(0x529)&&_0x34d2e6[_0x1be316(0x6fa)]?_0x419b6e(_0x277a94(_0x5ac17a,_0x186565),_0x34d2e6[_0x1be316(0x6fa)]):void 0x0,_0x37ad01=_0x21fa40[_0x1be316(0x369)]['execute'](_0x483355(_0x34d2e6[_0x1be316(0x2c5)],_0x55672c),{'pageId':_0x34d2e6['pageId'],'objectId':_0x34d2e6[_0x1be316(0x826)],'bbox':_0x1fe4f7,'transform':_0x9c241,'previousBbox':_0x34d2e6[_0x1be316(0x116)],'previousTransform':_0x34d2e6[_0x1be316(0x6fa)]});return _0x123290(_0x34d2e6[_0x1be316(0x2c5)],_0x37ad01,_0x2f3d65);}function _0x38b864(_0x51942a,_0x26b503){const _0x4268b7=_0x59d572;let _0x3fb14f=(0x0,_0x21fa40[_0x4268b7(0x3ab)])(_0x51942a[_0x4268b7(0x430)])[_0x4268b7(0x973)]['get'](_0x26b503);return _0x3fb14f===void 0x0?0x0:_0x3fb14f+0x1;}function _0x123290(_0x5d6106,_0x289af8,_0x27574b){const _0x45e1b1=_0x59d572;var _0x2b895e;let _0x4acff7=_0x289af8[_0x45e1b1(0xa8e)]?(0x0,_0x21fa40[_0x45e1b1(0x8f1)])(_0x5d6106,_0x289af8[_0x45e1b1(0xa8e)],_0x27574b):_0x5d6106;return{..._0x4acff7,'selection':(_0x2b895e=_0x289af8[_0x45e1b1(0xb23)])==null?_0x4acff7[_0x45e1b1(0xb23)]:_0x2b895e};}function _0x5bb4a7(_0x11d72f,_0x30818e){const _0x4ecef6=_0x59d572;var _0x5bb192,_0x5ba175;return _0x11d72f['createId']?_0x11d72f[_0x4ecef6(0x78d)](_0x30818e):_0x30818e+'_'+_0x11d72f[_0x4ecef6(0x939)]+'_'+((_0x5bb192=(_0x5ba175=_0x11d72f[_0x4ecef6(0x337)])==null?void 0x0:_0x5ba175[_0x4ecef6(0x3f4)](_0x11d72f))==null?Date[_0x4ecef6(0x337)]():_0x5bb192);}function _0x483355(_0xa2360d,_0x120b70){const _0x2662cf=_0x59d572;var _0x5e9914,_0x199313;return{'documentId':_0xa2360d[_0x2662cf(0x401)],'actorId':_0x120b70[_0x2662cf(0x939)],'clientId':_0x120b70[_0x2662cf(0x51e)],'editState':_0xa2360d[_0x2662cf(0x430)],'selection':_0xa2360d['selection'],'baseRevision':_0xa2360d[_0x2662cf(0x430)][_0x2662cf(0x7e0)],'now':(_0x5e9914=(_0x199313=_0x120b70['now'])==null?void 0x0:_0x199313[_0x2662cf(0x3f4)](_0x120b70))==null?Date[_0x2662cf(0x337)]():_0x5e9914,'createId':_0x120b70[_0x2662cf(0x78d)]};}function _0x47e029(_0x36c884){const _0x5e8e74=_0x59d572;var _0x568d7e;let _0x410a5e=(_0x568d7e=_0x36c884[_0x5e8e74(0xb23)]['anchors'][_0x5e8e74(0x816)](_0x515ac3=>_0x515ac3['id']===_0x36c884[_0x5e8e74(0xb23)][_0x5e8e74(0x8cf)]))==null?_0x36c884[_0x5e8e74(0xb23)][_0x5e8e74(0x60c)][0x0]:_0x568d7e;if(!(!_0x410a5e||_0x410a5e[_0x5e8e74(0x395)]!==_0x21fa40[_0x5e8e74(0x7f9)][_0x5e8e74(0x510)]&&_0x410a5e['kind']!==_0x21fa40[_0x5e8e74(0x7f9)][_0x5e8e74(0xc6a)]||!(_0x5e8e74(0x826)in _0x410a5e)))return _0x410a5e['objectId'];}function _0x450de7(_0x4c34cb,_0x31ba62){const _0x4405bf=_0x59d572;let _0x583ff8=new Set();return _0x4c34cb[_0x4405bf(0xb23)]['anchors']['flatMap'](_0x2b9619=>{const _0x2201cd=_0x4405bf;var _0x2b6eff;if(_0x2b9619[_0x2201cd(0x395)]!==_0x21fa40[_0x2201cd(0x7f9)]['OBJECT']||!(_0x2201cd(0x826)in _0x2b9619)||_0x583ff8[_0x2201cd(0x66b)](_0x2b9619[_0x2201cd(0x826)]))return[];let _0x5b519d=_0x4c34cb[_0x2201cd(0x430)][_0x2201cd(0x24a)][_0x2b9619[_0x2201cd(0x826)]],_0x29db24=_0x5b519d==null?void 0x0:_0x5b519d['object']['bbox'],_0xaa3f07=(_0x2b6eff=_0x5b519d==null?void 0x0:_0x5b519d[_0x2201cd(0x8ee)])==null?_0x2b9619[_0x2201cd(0x8ee)]:_0x2b6eff;return!_0x5b519d||!_0x29db24||_0xaa3f07!==_0x31ba62?[]:(_0x583ff8[_0x2201cd(0x30c)](_0x2b9619[_0x2201cd(0x826)]),[{'pageId':_0xaa3f07,'objectId':_0x2b9619[_0x2201cd(0x826)],'startBbox':[..._0x29db24],'startTransform':_0x5b519d[_0x2201cd(0x961)][_0x2201cd(0x701)]?[..._0x5b519d[_0x2201cd(0x961)][_0x2201cd(0x701)]]:void 0x0}]);});}function _0x3645b5(_0xa5178f,_0x42693b,_0x46ed1a){const _0xab9520=_0x59d572;var _0x630943,_0x376cfa;let _0x473824=(_0x630943=_0xa5178f[_0xab9520(0x430)][_0xab9520(0x24a)][_0x42693b])==null?void 0x0:_0x630943[_0xab9520(0x961)],_0x5cbd67=_0x473824==null?void 0x0:_0x473824[_0xab9520(0xa01)];return!_0x473824||!_0x5cbd67?!0x1:_0x5f2f24(_0x473824[_0xab9520(0x701)]?(_0x376cfa=_0x195f3e(_0x46ed1a,_0x473824['transform']))==null?_0x46ed1a:_0x376cfa:_0x46ed1a,_0x5cbd67);}function _0x5f2f24(_0x10f819,_0x55dc91){const _0x384946=_0x59d572;let _0x17ba35=Math[_0x384946(0xb2a)](_0x55dc91[0x0],_0x55dc91[0x2]),_0x522627=Math[_0x384946(0x542)](_0x55dc91[0x0],_0x55dc91[0x2]),_0x57a495=Math[_0x384946(0xb2a)](_0x55dc91[0x1],_0x55dc91[0x3]),_0x3d5392=Math['max'](_0x55dc91[0x1],_0x55dc91[0x3]);return _0x10f819[0x0]>=_0x17ba35&&_0x10f819[0x0]<=_0x522627&&_0x10f819[0x1]>=_0x57a495&&_0x10f819[0x1]<=_0x3d5392;}function _0x282067(_0x5c3ae6,_0x4328fb,_0x17da83){return[_0x5c3ae6[0x0]+_0x4328fb,_0x5c3ae6[0x1]+_0x17da83,_0x5c3ae6[0x2]+_0x4328fb,_0x5c3ae6[0x3]+_0x17da83];}function _0xc0a2b4(_0x3f103e,_0x29fbdb,_0x165dff){const _0x2061c7=_0x59d572;var _0x201640;return(_0x201640=[['nw',[_0x29fbdb[0x0],_0x29fbdb[0x1]]],['n',[(_0x29fbdb[0x0]+_0x29fbdb[0x2])/0x2,_0x29fbdb[0x1]]],['ne',[_0x29fbdb[0x2],_0x29fbdb[0x1]]],['e',[_0x29fbdb[0x2],(_0x29fbdb[0x1]+_0x29fbdb[0x3])/0x2]],['se',[_0x29fbdb[0x2],_0x29fbdb[0x3]]],['s',[(_0x29fbdb[0x0]+_0x29fbdb[0x2])/0x2,_0x29fbdb[0x3]]],['sw',[_0x29fbdb[0x0],_0x29fbdb[0x3]]],['w',[_0x29fbdb[0x0],(_0x29fbdb[0x1]+_0x29fbdb[0x3])/0x2]]][_0x2061c7(0x816)](([,_0x1fe65c])=>Math['abs'](_0x3f103e[0x0]-_0x1fe65c[0x0])<=_0x165dff&&Math[_0x2061c7(0x7f7)](_0x3f103e[0x1]-_0x1fe65c[0x1])<=_0x165dff))==null?void 0x0:_0x201640[0x0];}function _0x2bd337(_0x4c732d,_0x484a71,_0x2828e9,_0x503956){let _0x58422b=[(_0x484a71[0x0]+_0x484a71[0x2])/0x2,_0x484a71[0x1]-(0x0,_0x21fa40['cssPxToEmu'])(0x16/_0x2828e9['zoom'])];return Math['abs'](_0x4c732d[0x0]-_0x58422b[0x0])<=_0x503956&&Math['abs'](_0x4c732d[0x1]-_0x58422b[0x1])<=_0x503956;}function _0x38c771(_0x35994b,_0x179fbe,_0x126148,_0x1160e9){const _0x4f89eb=_0x59d572;let _0x57d6a8=[(_0x35994b[0x0]+_0x35994b[0x2])/0x2,(_0x35994b[0x1]+_0x35994b[0x3])/0x2],_0x9ea7b1=_0x1160e9?_0x2d9a5b(_0x57d6a8,_0x1160e9):_0x57d6a8,_0x338408=_0x9ea7b1[0x0],_0x48b95f=_0x9ea7b1[0x1],_0x536420=Math['atan2'](_0x179fbe[0x1]-_0x48b95f,_0x179fbe[0x0]-_0x338408),_0x322a73=Math['atan2'](_0x126148[0x1]-_0x48b95f,_0x126148[0x0]-_0x338408)-_0x536420,_0xcde861=Math['cos'](_0x322a73),_0x4f430e=Math[_0x4f89eb(0xc06)](_0x322a73),_0x49f55c=[_0xcde861,_0x4f430e,-_0x4f430e,_0xcde861,_0x338408-_0xcde861*_0x338408+_0x4f430e*_0x48b95f,_0x48b95f-_0x4f430e*_0x338408-_0xcde861*_0x48b95f];return _0x1160e9?_0x419b6e(_0x49f55c,_0x1160e9):_0x49f55c;}function _0x277a94(_0x406a62,_0x4aad2f){return[0x1,0x0,0x0,0x1,_0x406a62,_0x4aad2f];}function _0x419b6e(_0x59f765,_0x5d04ef){return[_0x59f765[0x0]*_0x5d04ef[0x0]+_0x59f765[0x2]*_0x5d04ef[0x1],_0x59f765[0x1]*_0x5d04ef[0x0]+_0x59f765[0x3]*_0x5d04ef[0x1],_0x59f765[0x0]*_0x5d04ef[0x2]+_0x59f765[0x2]*_0x5d04ef[0x3],_0x59f765[0x1]*_0x5d04ef[0x2]+_0x59f765[0x3]*_0x5d04ef[0x3],_0x59f765[0x0]*_0x5d04ef[0x4]+_0x59f765[0x2]*_0x5d04ef[0x5]+_0x59f765[0x4],_0x59f765[0x1]*_0x5d04ef[0x4]+_0x59f765[0x3]*_0x5d04ef[0x5]+_0x59f765[0x5]];}function _0x195f3e(_0x2b42cd,_0x3fca89){let _0x3d9404=_0x17a48b(_0x3fca89);return _0x3d9404?_0x2d9a5b(_0x2b42cd,_0x3d9404):void 0x0;}function _0x17a48b(_0x3d8407){const _0x11840b=_0x59d572;let [_0x3f484a,_0x344590,_0x1ca96d,_0x4e3f71,_0x51a5c8,_0xfd083f]=_0x3d8407,_0x5481d0=_0x3f484a*_0x4e3f71-_0x344590*_0x1ca96d;if(!(Math[_0x11840b(0x7f7)](_0x5481d0)<1e-8))return[_0x4e3f71/_0x5481d0,-_0x344590/_0x5481d0,-_0x1ca96d/_0x5481d0,_0x3f484a/_0x5481d0,(_0x1ca96d*_0xfd083f-_0x4e3f71*_0x51a5c8)/_0x5481d0,(_0x344590*_0x51a5c8-_0x3f484a*_0xfd083f)/_0x5481d0];}function _0x2d9a5b(_0x4497fc,_0x422447){return[_0x422447[0x0]*_0x4497fc[0x0]+_0x422447[0x2]*_0x4497fc[0x1]+_0x422447[0x4],_0x422447[0x1]*_0x4497fc[0x0]+_0x422447[0x3]*_0x4497fc[0x1]+_0x422447[0x5]];}function _0x179500(_0x5cfcb8,_0x1e11e6,_0x37acb6){const _0x3fa0c7=_0x59d572;let [_0xa8bc63,_0x1f380f,_0x1a6785,_0x529057]=_0x5cfcb8;return _0x1e11e6['includes']('w')&&(_0xa8bc63=Math['min'](_0x37acb6[0x0],_0x1a6785-0x1)),_0x1e11e6['includes']('e')&&(_0x1a6785=Math[_0x3fa0c7(0x542)](_0x37acb6[0x0],_0xa8bc63+0x1)),_0x1e11e6[_0x3fa0c7(0x8a8)]('n')&&(_0x1f380f=Math[_0x3fa0c7(0xb2a)](_0x37acb6[0x1],_0x529057-0x1)),_0x1e11e6[_0x3fa0c7(0x8a8)]('s')&&(_0x529057=Math[_0x3fa0c7(0x542)](_0x37acb6[0x1],_0x1f380f+0x1)),[_0xa8bc63,_0x1f380f,_0x1a6785,_0x529057];}function _0x1ec88f(_0x30bff0,_0x594b4f){return _0x30bff0[0x0]===_0x594b4f[0x0]&&_0x30bff0[0x1]===_0x594b4f[0x1];}function _0xf924b9(_0x1d431c,_0x426918){const _0x3cb8c1=_0x59d572;return!_0x1d431c||!_0x426918||_0x1d431c['length']!==_0x426918[_0x3cb8c1(0xba6)]?!0x1:_0x1d431c[_0x3cb8c1(0xbaa)]((_0x56b0e8,_0x281fe9)=>JSON[_0x3cb8c1(0x9aa)](_0x56b0e8)===JSON[_0x3cb8c1(0x9aa)](_0x426918[_0x281fe9]));}function _0x579e90(_0x1b6d6b,_0x3169a2,_0x1901ee){let _0x471563,_0x430e7f,_0x5ba24d=!0x1,_0x59f838=0x0;return{'push'(_0x66c260){if(_0x430e7f=_0x66c260,_0x5ba24d=!0x0,_0x471563!==void 0x0)return;let _0x148ec4=_0x59f838;_0x471563=_0x1b6d6b(()=>{if(_0x471563=void 0x0,_0x148ec4!==_0x59f838||!_0x5ba24d)return;let _0x1672f9=_0x430e7f;_0x5ba24d=!0x1,_0x1901ee(_0x1672f9);});},'cancel'(){_0x59f838+=0x1,_0x5ba24d=!0x1,_0x471563!==void 0x0&&(_0x3169a2(_0x471563),_0x471563=void 0x0);}};}function _0x1d95c1(){let _0x51ea11=new Map();return{'run'(_0x39e68d,_0x378b0d){const _0x1d04d5=_0x57a5;let _0x3c83cd=_0x51ea11[_0x1d04d5(0x2ad)](_0x39e68d);if(_0x3c83cd)return _0x3c83cd;let _0x2872d6=_0x378b0d();_0x51ea11['set'](_0x39e68d,_0x2872d6);let _0x5529d5=()=>{const _0x52afcc=_0x1d04d5;_0x51ea11[_0x52afcc(0x2ad)](_0x39e68d)===_0x2872d6&&_0x51ea11[_0x52afcc(0x297)](_0x39e68d);};return _0x2872d6[_0x1d04d5(0x61c)](_0x5529d5,_0x5529d5),_0x2872d6;}};}function _0x4f4d42(_0x59a01f={}){return{'compositeFormXObject'(_0x40b8ca){const _0x3c18c2=_0x57a5;var _0x27e7d9,_0x58a68e;if(((_0x27e7d9=_0x40b8ca[_0x3c18c2(0x91d)])==null?0x1:_0x27e7d9)<=0x0)return!0x0;let _0x317a44=(_0x58a68e=_0x59a01f[_0x3c18c2(0x7d5)])==null?_0x5352a7():_0x58a68e;return!_0x317a44||!_0x3e00e7(_0x40b8ca[_0x3c18c2(0x17d)])?!0x1:_0x2fa1bf(_0x40b8ca,_0x317a44);},'compositeSoftMask'(_0x2c094b){const _0x4e93ff=_0x57a5;var _0x5e57cc;let _0x49a7f9=(_0x5e57cc=_0x59a01f[_0x4e93ff(0x7d5)])==null?_0x5352a7():_0x5e57cc;return!_0x49a7f9||!_0x3e00e7(_0x2c094b[_0x4e93ff(0x17d)])?!0x1:_0x92e036(_0x2c094b,_0x49a7f9);}};}function _0x5352a7(){if(typeof document<'u')return{'createCanvas'(_0x133c76,_0x5378d3){const _0x1537f3=_0x57a5;let _0x44b2d5=document[_0x1537f3(0xc7e)]('canvas');return _0x44b2d5['width']=_0x133c76,_0x44b2d5['height']=_0x5378d3,_0x44b2d5;}};}function _0x440546(_0x31d4bf){const _0x4d974c=_0x59d572;if(!(!_0x31d4bf||Object[_0x4d974c(0x3ed)](_0x31d4bf)[_0x4d974c(0xba6)]===0x0))return{'subtype':_0xc4460e(_0x31d4bf['/S']),'isolated':_0x4805cf(_0x31d4bf['/I']),'knockout':_0x4805cf(_0x31d4bf['/K']),'raw':_0x31d4bf};}function _0x343781(_0x13f2bb,_0x140819,_0x162b18){const _0x122c54=_0x59d572;var _0x525e83,_0x12dcf4;let _0x2158bc=(_0x525e83=_0x162b18[_0x122c54(0x12f)])==null?0x0:_0x525e83,_0x3bf108=Math['max'](0x0,Math[_0x122c54(0xb2a)](0x1,(_0x12dcf4=_0x162b18[_0x122c54(0x91d)])==null?0x1:_0x12dcf4)),_0x45cf7d=Math[_0x122c54(0xb2a)](_0x13f2bb['data']['length'],_0x140819[_0x122c54(0xb81)][_0x122c54(0xba6)]);for(let _0x248b22=0x0;_0x248b22+0x3<_0x45cf7d;_0x248b22+=0x4){let _0x2dc331=_0x140819['data'][_0x248b22+0x3]/0xff*_0x3bf108;if(_0x2dc331<=_0x2158bc)continue;let _0x550544=_0x13f2bb[_0x122c54(0xb81)][_0x248b22+0x3]/0xff,_0x4d5a96=[_0x140819[_0x122c54(0xb81)][_0x248b22],_0x140819[_0x122c54(0xb81)][_0x248b22+0x1],_0x140819[_0x122c54(0xb81)][_0x248b22+0x2]],_0x44a121=[_0x13f2bb[_0x122c54(0xb81)][_0x248b22],_0x13f2bb[_0x122c54(0xb81)][_0x248b22+0x1],_0x13f2bb[_0x122c54(0xb81)][_0x248b22+0x2]],_0x30ab12=_0x3bb0ff(_0x44a121,_0x550544,_0x550544>0x0&&_0x162b18[_0x122c54(0x17d)]!==_0x122c54(0x869)&&_0x162b18[_0x122c54(0x17d)]!==_0x122c54(0x88f)?_0x5286e2(_0x44a121,_0x4d5a96,_0x162b18[_0x122c54(0x17d)]):_0x4d5a96,_0x2dc331);_0x13f2bb[_0x122c54(0xb81)][_0x248b22]=_0x30ab12[0x0],_0x13f2bb[_0x122c54(0xb81)][_0x248b22+0x1]=_0x30ab12[0x1],_0x13f2bb[_0x122c54(0xb81)][_0x248b22+0x2]=_0x30ab12[0x2],_0x13f2bb['data'][_0x248b22+0x3]=_0x30ab12[0x3];}return _0x13f2bb;}function _0x534ce7(_0x159740,_0x31ccd6,_0x2b2ca1={}){const _0x13bd05=_0x59d572;let _0x410ec5=Math['min'](_0x159740[_0x13bd05(0xb81)][_0x13bd05(0xba6)],_0x31ccd6[_0x13bd05(0xb81)]['length']),_0x1b63c5=_0x2ea2ec(_0x2b2ca1[_0x13bd05(0x166)])===_0x13bd05(0x6c1);for(let _0x18c41c=0x0;_0x18c41c+0x3<_0x410ec5;_0x18c41c+=0x4){let _0x2ab234=_0x159740[_0x13bd05(0xb81)][_0x18c41c+0x3]/0xff;if(_0x2ab234<=0x0)continue;let _0x45f45a=_0x31ccd6[_0x13bd05(0xb81)][_0x18c41c+0x3]/0xff,_0x427fec=_0x1b63c5?_0x45f45a:_0x358eab([_0x31ccd6[_0x13bd05(0xb81)][_0x18c41c]/0xff,_0x31ccd6[_0x13bd05(0xb81)][_0x18c41c+0x1]/0xff,_0x31ccd6['data'][_0x18c41c+0x2]/0xff])*_0x45f45a;_0x159740[_0x13bd05(0xb81)][_0x18c41c+0x3]=_0x1c6c21(_0x2ab234*_0x427fec);}return _0x159740;}function _0x2fa1bf(_0x155bb4,_0x44053e){const _0x3b2b3d=_0x59d572;if(!_0x3541e4(_0x155bb4[_0x3b2b3d(0x12b)]))return!0x1;let _0xa97223=Math[_0x3b2b3d(0x542)](0x1,_0x155bb4[_0x3b2b3d(0x809)][_0x3b2b3d(0x2a1)]),_0x4bbfc5=Math['max'](0x1,_0x155bb4[_0x3b2b3d(0x809)][_0x3b2b3d(0x4cd)]),_0x398e6e=_0x44053e['createCanvas'](_0xa97223,_0x4bbfc5);if(!_0x398e6e)return!0x1;_0x398e6e[_0x3b2b3d(0x65c)]=_0xa97223,_0x398e6e[_0x3b2b3d(0x1ae)]=_0x4bbfc5;let _0x30084e=_0x398e6e[_0x3b2b3d(0x2f2)]('2d');if(!_0x30084e||!_0x143b9b(_0x30084e))return!0x1;let _0x1a85f6=!0x1;try{let _0x3bb7af=_0x155bb4[_0x3b2b3d(0x12b)][_0x3b2b3d(0x58d)](0x0,0x0,_0xa97223,_0x4bbfc5);_0x315b79(_0x30084e,_0x155bb4[_0x3b2b3d(0x12b)],_0x155bb4['formContext'][_0x3b2b3d(0x5a5)][_0x3b2b3d(0x175)],_0x155bb4[_0x3b2b3d(0x809)]),_0x1a85f6=!0x0,_0x155bb4['renderGroup'](_0x30084e),_0x30084e['restore'](),_0x1a85f6=!0x1;let _0x443a68=_0x343781(_0x3bb7af,_0x30084e[_0x3b2b3d(0x58d)](0x0,0x0,_0xa97223,_0x4bbfc5),{'blendMode':_0x155bb4[_0x3b2b3d(0x17d)],'opacity':_0x155bb4['opacity']});return _0x141f75(_0x155bb4[_0x3b2b3d(0x12b)],_0x398e6e,_0x30084e,_0x443a68),!0x0;}catch{return _0x1a85f6&&_0x30084e['restore'](),!0x1;}}function _0x92e036(_0x5d8326,_0x47b6d6){const _0x455cb8=_0x59d572;if(!_0x3541e4(_0x5d8326[_0x455cb8(0x12b)]))return!0x1;let _0x1f5cee=Math[_0x455cb8(0x542)](0x1,_0x5d8326[_0x455cb8(0x809)]['widthDevicePx']),_0x40e214=Math[_0x455cb8(0x542)](0x1,_0x5d8326['viewport'][_0x455cb8(0x4cd)]),_0x42256d=_0x47b6d6[_0x455cb8(0x866)](_0x1f5cee,_0x40e214),_0x399fdd=_0x47b6d6[_0x455cb8(0x866)](_0x1f5cee,_0x40e214);if(!_0x42256d||!_0x399fdd)return!0x1;_0x42256d[_0x455cb8(0x65c)]=_0x1f5cee,_0x42256d[_0x455cb8(0x1ae)]=_0x40e214,_0x399fdd[_0x455cb8(0x65c)]=_0x1f5cee,_0x399fdd['height']=_0x40e214;let _0x22e40a=_0x42256d[_0x455cb8(0x2f2)]('2d'),_0x43c7f3=_0x399fdd['getContext']('2d');if(!_0x22e40a||!_0x43c7f3||!_0x143b9b(_0x22e40a)||!_0x143b9b(_0x43c7f3))return!0x1;let _0x122bac=!0x1,_0x1a4f43=!0x1;try{let _0x4427fa=_0x5d8326['context']['getImageData'](0x0,0x0,_0x1f5cee,_0x40e214);_0x315b79(_0x22e40a,_0x5d8326[_0x455cb8(0x12b)],_0x5d8326[_0x455cb8(0x175)],_0x5d8326[_0x455cb8(0x809)]),_0x122bac=!0x0,_0x5d8326[_0x455cb8(0x7c2)](_0x22e40a),_0x22e40a[_0x455cb8(0x91c)](),_0x122bac=!0x1,_0x315b79(_0x43c7f3,_0x5d8326['context'],_0x5d8326[_0x455cb8(0x175)],_0x5d8326['viewport']),_0x1a4f43=!0x0,_0x5d8326['renderMask'](_0x43c7f3),_0x43c7f3[_0x455cb8(0x91c)](),_0x1a4f43=!0x1;let _0x3b9935=_0x343781(_0x4427fa,_0x534ce7(_0x22e40a[_0x455cb8(0x58d)](0x0,0x0,_0x1f5cee,_0x40e214),_0x43c7f3[_0x455cb8(0x58d)](0x0,0x0,_0x1f5cee,_0x40e214),{'subtype':_0x5d8326[_0x455cb8(0x197)][_0x455cb8(0x166)]}),{'blendMode':_0x5d8326[_0x455cb8(0x17d)]});return _0x141f75(_0x5d8326[_0x455cb8(0x12b)],_0x42256d,_0x22e40a,_0x3b9935),!0x0;}catch{return _0x122bac&&_0x22e40a['restore'](),_0x1a4f43&&_0x43c7f3['restore'](),!0x1;}}function _0x141f75(_0x47ffb6,_0x2f2527,_0x2c35b3,_0x3b05eb){const _0x1f23bb=_0x59d572;if(typeof _0x47ffb6[_0x1f23bb(0xc48)]==_0x1f23bb(0x9df)&&typeof _0x47ffb6[_0x1f23bb(0x198)]==_0x1f23bb(0x9df)&&typeof _0x47ffb6[_0x1f23bb(0xc55)]==_0x1f23bb(0x9df)&&typeof _0x2c35b3[_0x1f23bb(0xb53)]=='function'){_0x2c35b3[_0x1f23bb(0xb53)](_0x3b05eb,0x0,0x0),_0x47ffb6[_0x1f23bb(0x8f9)](),_0x47ffb6['setTransform'](0x1,0x0,0x0,0x1,0x0,0x0),_0x47ffb6[_0x1f23bb(0x7bb)]=0x1,_0x47ffb6[_0x1f23bb(0x50d)]=_0x1f23bb(0x6bd),_0x47ffb6[_0x1f23bb(0x198)](_0x2f2527,0x0,0x0),_0x47ffb6['restore']();return;}_0x47ffb6['putImageData'](_0x3b05eb,0x0,0x0);}function _0x315b79(_0x530d9e,_0x3ca143,_0x414502,_0x1a9282){const _0x46fdac=_0x59d572;var _0x26094a,_0x582c8c;_0x530d9e['save'](),(_0x26094a=_0x530d9e['setTransform'])==null||_0x26094a[_0x46fdac(0x3f4)](_0x530d9e,0x1,0x0,0x0,0x1,0x0,0x0),_0x530d9e['clearRect'](0x0,0x0,_0x1a9282['widthDevicePx'],_0x1a9282['heightDevicePx']),_0x530d9e[_0x46fdac(0x91c)](),_0x530d9e[_0x46fdac(0x8f9)]();let _0x22d86b=(_0x582c8c=_0x3ca143[_0x46fdac(0xc48)])==null?void 0x0:_0x582c8c[_0x46fdac(0x3f4)](_0x3ca143);_0x22d86b&&_0x530d9e[_0x46fdac(0xc55)]?_0x530d9e['setTransform'](_0x22d86b['a'],_0x22d86b['b'],_0x22d86b['c'],_0x22d86b['d'],_0x22d86b['e'],_0x22d86b['f']):_0x2075a0(_0x530d9e,_0x414502,_0x1a9282),_0x530d9e['globalAlpha']=0x1,_0x530d9e[_0x46fdac(0x50d)]!==void 0x0&&(_0x530d9e[_0x46fdac(0x50d)]=_0x46fdac(0x869));}function _0x2075a0(_0x1affeb,_0x218a14,_0xcdf2a0){const _0x3ffbb9=_0x59d572;if(!_0x1affeb[_0x3ffbb9(0xc55)])return;let _0x516537=_0xcdf2a0[_0x3ffbb9(0xa52)],_0x2012f9=_0xcdf2a0['canvasScaleY'],_0x4630d2=_0xcdf2a0[_0x3ffbb9(0xb6c)],_0x2cf6fe=_0xcdf2a0[_0x3ffbb9(0x80f)];switch(_0x218a14['rotation']){case 0x5a:_0x1affeb['setTransform'](0x0,_0x2012f9,-_0x516537,0x0,(_0xcdf2a0[_0x3ffbb9(0x2c9)]-_0x2cf6fe)*_0x516537,_0x4630d2*_0x2012f9);return;case 0xb4:_0x1affeb[_0x3ffbb9(0xc55)](-_0x516537,0x0,0x0,-_0x2012f9,(_0xcdf2a0['widthCssPx']-_0x4630d2)*_0x516537,(_0xcdf2a0[_0x3ffbb9(0xc23)]-_0x2cf6fe)*_0x2012f9);return;case 0x10e:_0x1affeb[_0x3ffbb9(0xc55)](0x0,-_0x2012f9,_0x516537,0x0,_0x2cf6fe*_0x516537,(_0xcdf2a0[_0x3ffbb9(0xc23)]-_0x4630d2)*_0x2012f9);return;default:_0x1affeb[_0x3ffbb9(0xc55)](_0x516537,0x0,0x0,_0x2012f9,_0x4630d2*_0x516537,_0x2cf6fe*_0x2012f9);}}function _0x3541e4(_0x257c92){const _0x3632de=_0x59d572;return _0x143b9b(_0x257c92)&&typeof _0x257c92[_0x3632de(0xb53)]=='function';}function _0x143b9b(_0x1c0577){const _0x5efd75=_0x59d572;return typeof _0x1c0577['getImageData']==_0x5efd75(0x9df);}function _0x3e00e7(_0x336fd0){const _0x24af17=_0x59d572;return['source-over',_0x24af17(0x88f),_0x24af17(0x2aa),_0x24af17(0x8be),'overlay','darken',_0x24af17(0x953),_0x24af17(0x1d3),'color-burn',_0x24af17(0xa5f),_0x24af17(0xa58),_0x24af17(0x822),_0x24af17(0x44b),_0x24af17(0xa00),'saturation','color',_0x24af17(0x680)]['includes'](_0x336fd0);}function _0x5286e2(_0x804a97,_0x4bf3b4,_0x2752be){const _0xcb512=_0x59d572;switch(_0x2752be){case'hue':return _0x5310bf(_0x804a97,_0x4bf3b4);case _0xcb512(0x2ca):return _0x485826(_0x804a97,_0x4bf3b4);case'color':return _0x306598(_0x804a97,_0x4bf3b4);case _0xcb512(0x680):return _0x55ed92(_0x804a97,_0x4bf3b4);default:break;}return[_0x1587b1(_0x804a97[0x0],_0x4bf3b4[0x0],_0x2752be),_0x1587b1(_0x804a97[0x1],_0x4bf3b4[0x1],_0x2752be),_0x1587b1(_0x804a97[0x2],_0x4bf3b4[0x2],_0x2752be)];}function _0x1587b1(_0x577991,_0xd3df16,_0x50d6f4){const _0x52a891=_0x59d572;switch(_0x50d6f4){case'multiply':return Math['round'](_0x577991*_0xd3df16/0xff);case _0x52a891(0x8be):return Math[_0x52a891(0x157)](0xff-(0xff-_0x577991)*(0xff-_0xd3df16)/0xff);case _0x52a891(0xadf):return _0x5802d7(_0xd3df16,_0x577991);case _0x52a891(0x5b1):return Math[_0x52a891(0xb2a)](_0x577991,_0xd3df16);case _0x52a891(0x953):return Math[_0x52a891(0x542)](_0x577991,_0xd3df16);case _0x52a891(0x1d3):return _0x577991===0x0?0x0:_0xd3df16===0xff?0xff:_0x364ddf(_0x577991*0xff/(0xff-_0xd3df16));case'color-burn':return _0x577991===0xff?0xff:_0xd3df16===0x0?0x0:_0x364ddf(0xff-Math[_0x52a891(0xb2a)](0xff,(0xff-_0x577991)*0xff/_0xd3df16));case'hard-light':return _0x5802d7(_0x577991,_0xd3df16);case _0x52a891(0xa58):return _0x25a11d(_0x577991,_0xd3df16);case _0x52a891(0x822):return Math[_0x52a891(0x7f7)](_0x577991-_0xd3df16);case _0x52a891(0x44b):return Math[_0x52a891(0x157)](_0x577991+_0xd3df16-0x2*_0x577991*_0xd3df16/0xff);default:return _0xd3df16;}}function _0x5802d7(_0x3114f8,_0x107e7d){const _0x5a67f2=_0x59d572;return Math[_0x5a67f2(0x157)](_0x107e7d<=127.5?_0x3114f8*0x2*_0x107e7d/0xff:0xff-(0xff-_0x3114f8)*(0xff-(0x2*_0x107e7d-0xff))/0xff);}function _0x25a11d(_0x4e3c26,_0x544aec){const _0x21e166=_0x59d572;let _0x3d0e27=_0x4e3c26/0xff,_0x1fde83=_0x544aec/0xff,_0x32d947=_0x3d0e27<=0.25?((0x10*_0x3d0e27-0xc)*_0x3d0e27+0x4)*_0x3d0e27:Math[_0x21e166(0x754)](_0x3d0e27);return _0x1c6c21(_0x1fde83<=0.5?_0x3d0e27-(0x1-0x2*_0x1fde83)*_0x3d0e27*(0x1-_0x3d0e27):_0x3d0e27+(0x2*_0x1fde83-0x1)*(_0x32d947-_0x3d0e27));}function _0x5310bf(_0x1e93bd,_0xbcb4f5){let _0x2e874b=_0xd5a19c(_0x1e93bd);return _0x2badb8(_0x5d27ee(_0x17ae11(_0xd5a19c(_0xbcb4f5),_0x103678(_0x2e874b)),_0x358eab(_0x2e874b)));}function _0x485826(_0x3faa0e,_0x552d1b){let _0x1e377c=_0xd5a19c(_0x3faa0e);return _0x2badb8(_0x5d27ee(_0x17ae11(_0x1e377c,_0x103678(_0xd5a19c(_0x552d1b))),_0x358eab(_0x1e377c)));}function _0x306598(_0x513d59,_0x148ce0){return _0x2badb8(_0x5d27ee(_0xd5a19c(_0x148ce0),_0x358eab(_0xd5a19c(_0x513d59))));}function _0x55ed92(_0xe49ebf,_0x34840a){return _0x2badb8(_0x5d27ee(_0xd5a19c(_0xe49ebf),_0x358eab(_0xd5a19c(_0x34840a))));}function _0xd5a19c(_0x148a91){return[_0x148a91[0x0]/0xff,_0x148a91[0x1]/0xff,_0x148a91[0x2]/0xff];}function _0x2badb8(_0x18bdd3){return[_0x1c6c21(_0x18bdd3[0x0]),_0x1c6c21(_0x18bdd3[0x1]),_0x1c6c21(_0x18bdd3[0x2])];}function _0x358eab(_0x1c887f){return 0.3*_0x1c887f[0x0]+0.59*_0x1c887f[0x1]+0.11*_0x1c887f[0x2];}function _0x103678(_0x246b07){const _0x238632=_0x59d572;return Math['max'](..._0x246b07)-Math[_0x238632(0xb2a)](..._0x246b07);}function _0x5d27ee(_0x40078c,_0x2d5dfe){let _0x117597=_0x2d5dfe-_0x358eab(_0x40078c);return _0x582d86([_0x40078c[0x0]+_0x117597,_0x40078c[0x1]+_0x117597,_0x40078c[0x2]+_0x117597]);}function _0x17ae11(_0x2617d5,_0x18e5a5){const _0x39735d=_0x59d572;let _0x11270f=_0x2617d5[_0x39735d(0xb06)]((_0x599232,_0xc40738)=>({'value':_0x599232,'index':_0xc40738}))[_0x39735d(0xb29)]((_0x42ac12,_0x20da45)=>_0x42ac12[_0x39735d(0x85b)]-_0x20da45[_0x39735d(0x85b)]),_0x54831b=_0x11270f[0x0],_0x55ecbc=_0x11270f[0x1],_0x56cbe5=_0x11270f[0x2],_0x19b992=[0x0,0x0,0x0];return _0x56cbe5['value']>_0x54831b[_0x39735d(0x85b)]&&(_0x19b992[_0x55ecbc['index']]=(_0x55ecbc[_0x39735d(0x85b)]-_0x54831b['value'])*_0x18e5a5/(_0x56cbe5[_0x39735d(0x85b)]-_0x54831b[_0x39735d(0x85b)]),_0x19b992[_0x56cbe5[_0x39735d(0x2c6)]]=_0x18e5a5),_0x19b992[_0x54831b[_0x39735d(0x2c6)]]=0x0,_0x19b992;}function _0x582d86(_0x4b113a){const _0x173d16=_0x59d572;let _0x23d0f4=_0x358eab(_0x4b113a),_0x392029=Math[_0x173d16(0xb2a)](..._0x4b113a),_0x17f1e2=[..._0x4b113a];_0x392029<0x0&&(_0x17f1e2=_0x17f1e2[_0x173d16(0xb06)](_0x20a020=>_0x23d0f4+(_0x20a020-_0x23d0f4)*_0x23d0f4/(_0x23d0f4-_0x392029)));let _0x15aac1=Math['max'](..._0x17f1e2);return _0x15aac1>0x1&&(_0x17f1e2=_0x17f1e2[_0x173d16(0xb06)](_0x2d60af=>_0x23d0f4+(_0x2d60af-_0x23d0f4)*(0x1-_0x23d0f4)/(_0x15aac1-_0x23d0f4))),_0x17f1e2;}function _0x1c6c21(_0x4e0b69){return _0x364ddf(_0x4e0b69*0xff);}function _0x3bb0ff(_0x551ac9,_0xe1c210,_0x56d47c,_0x1852b6){let _0x3a4117=_0x1852b6+_0xe1c210*(0x1-_0x1852b6);return _0x3a4117<=0x0?[0x0,0x0,0x0,0x0]:[_0x364ddf((_0x56d47c[0x0]*_0x1852b6+_0x551ac9[0x0]*_0xe1c210*(0x1-_0x1852b6))/_0x3a4117),_0x364ddf((_0x56d47c[0x1]*_0x1852b6+_0x551ac9[0x1]*_0xe1c210*(0x1-_0x1852b6))/_0x3a4117),_0x364ddf((_0x56d47c[0x2]*_0x1852b6+_0x551ac9[0x2]*_0xe1c210*(0x1-_0x1852b6))/_0x3a4117),_0x364ddf(_0x3a4117*0xff)];}function _0x364ddf(_0xe92c40){return Math['max'](0x0,Math['min'](0xff,Math['round'](_0xe92c40)));}function _0xc4460e(_0x564f07){const _0x4e423b=_0x59d572;return typeof _0x564f07==_0x4e423b(0x221)?_0x564f07[_0x4e423b(0xbf8)](/^\//,''):void 0x0;}function _0x4805cf(_0x11ed36){const _0x5c8391=_0x59d572;return typeof _0x11ed36==_0x5c8391(0x915)?_0x11ed36:void 0x0;}function _0x2ea2ec(_0x5bbd4f){const _0x385dc9=_0x59d572;return _0x5bbd4f==null?void 0x0:_0x5bbd4f[_0x385dc9(0xbf8)](/^\//,'');}let _0x3387b5=0.000001;function _0x5c1ac2(_0x543d8d){let {asset:_0x2bd8b7,matrix:_0x57ff2f,page:_0x3da559,context:_0x284ab3,viewport:_0x267596}=_0x543d8d;_0x3010f1(_0x2bd8b7,_0x57ff2f,_0x3da559,_0x284ab3,_0x267596);}function _0x38e6c5(_0x7a97e7){const _0x5d31a1=_0x59d572;var _0x4f943a,_0x3ef17e,_0x55dee4;let {asset:_0x21f0c8,matrix:_0x83f3f8,page:_0x391a6f,context:_0x4f8950,viewport:_0x50ff89}=_0x7a97e7,_0x37c7bc=_0x21f0c8==null?void 0x0:_0x21f0c8[_0x5d31a1(0x873)];if(_0x37c7bc!=null&&_0x37c7bc[_0x5d31a1(0x34e)]&&_0x37c7bc[_0x5d31a1(0x459)]['length']>0x0){let _0xe235a0=_0x464064(_0x37c7bc,_0xc2d870(_0x83f3f8,_0x37c7bc),_0x391a6f,_0x4f8950,_0x50ff89);if(_0xe235a0){for(let _0x26fd77 of _0x37c7bc[_0x5d31a1(0x459)])_0xe235a0[_0x5d31a1(0x726)](Math['max'](0x0,Math['min'](0x1,_0x26fd77['offset'])),_0x43d3b7(_0x26fd77[_0x5d31a1(0x6aa)]));return _0xe235a0;}}let _0x3a9d6d=(_0x4f943a=_0x21f0c8==null||(_0x3ef17e=_0x21f0c8[_0x5d31a1(0x2dd)])==null?void 0x0:_0x3ef17e[_0x5d31a1(0xc0e)])==null?_0x21f0c8==null||(_0x55dee4=_0x21f0c8[_0x5d31a1(0xa29)])==null?void 0x0:_0x55dee4['color']:_0x4f943a;return _0x3a9d6d?_0x43d3b7(_0x3a9d6d):void 0x0;}function _0x3010f1(_0x586900,_0x5d1717,_0x5a7205,_0x529491,_0x40c63b){const _0x3380a2=_0x59d572;var _0x504305,_0x54a9a7,_0x172715;let _0x31fc05=_0x586900==null?void 0x0:_0x586900[_0x3380a2(0x2dd)],_0x5eddfe=_0x31fc05==null?void 0x0:_0x31fc05[_0x3380a2(0x383)],_0x191563=_0x31fc05==null?void 0x0:_0x31fc05['triangles'];if(_0x529491['save'](),_0x30f7d4(_0x586900,_0x5d1717,_0x5a7205,_0x529491,_0x40c63b)){_0x529491[_0x3380a2(0x91c)]();return;}if(_0x5eddfe!=null&&_0x5eddfe[_0x3380a2(0xba6)]&&_0x191563!=null&&_0x191563[_0x3380a2(0xba6)]){let _0x3cecc9=_0x343211(_0x191563[_0x3380a2(0xba6)]);for(let _0x616de6 of _0x191563){let _0x321f72=_0x616de6['vertices']['map'](_0x12b484=>_0x5eddfe[_0x12b484])[_0x3380a2(0xbcd)](_0x333aed=>!!_0x333aed)[_0x3380a2(0xb06)](_0x406421=>_0x1b31b3(_0x406421,_0x5d1717,_0x5a7205,_0x40c63b));_0x321f72[_0x3380a2(0xba6)]!==0x3||!_0x5b85b0(_0x321f72)||_0x505764(_0x529491,_0x321f72,_0x3cecc9);}_0x529491[_0x3380a2(0x91c)]();return;}let _0x2edc30=(_0x504305=_0x31fc05==null?void 0x0:_0x31fc05[_0x3380a2(0xc0e)])==null?_0x586900==null||(_0x54a9a7=_0x586900[_0x3380a2(0xa29)])==null?void 0x0:_0x54a9a7['color']:_0x504305,_0x1b8df8=(_0x172715=_0x586900==null?void 0x0:_0x586900['bbox'])==null?_0x31fc05==null?void 0x0:_0x31fc05[_0x3380a2(0xa01)]:_0x172715;_0x2edc30&&_0x1b8df8&&_0x1c1dd3(_0x529491,_0x1b8df8,_0x2edc30,_0x5d1717,_0x5a7205,_0x40c63b),_0x529491[_0x3380a2(0x91c)]();}function _0x30f7d4(_0x2a03ce,_0x22cda4,_0x29b92e,_0x19151e,_0x1457a4){const _0x260b8b=_0x59d572;let _0x3f9efb=_0x2a03ce==null?void 0x0:_0x2a03ce[_0x260b8b(0x873)];if(!_0x3f9efb||!_0x3f9efb[_0x260b8b(0x34e)]||_0x3f9efb[_0x260b8b(0x459)][_0x260b8b(0xba6)]===0x0)return!0x1;let _0x1a6b52=_0xc2d870(_0x22cda4,_0x3f9efb),_0xd968c7=_0x464064(_0x3f9efb,_0x1a6b52,_0x29b92e,_0x19151e,_0x1457a4);if(!_0xd968c7)return!0x1;for(let _0x3e61f3 of _0x3f9efb[_0x260b8b(0x459)])_0xd968c7[_0x260b8b(0x726)](Math[_0x260b8b(0x542)](0x0,Math[_0x260b8b(0xb2a)](0x1,_0x3e61f3['offset'])),_0x43d3b7(_0x3e61f3['color']));let _0x427fbd=_0x22bc6c(_0x2a03ce,_0x29b92e,_0x1a6b52);if(_0x427fbd)return _0x5cc4f6(_0x19151e,_0x427fbd,_0xd968c7,_0x1a6b52,_0x29b92e,_0x1457a4),!0x0;if(_0x433694(_0x2a03ce,_0x1a6b52,_0x29b92e,_0x19151e,_0x1457a4,_0xd968c7)||_0x1f4287(_0x2a03ce,_0x1a6b52,_0x29b92e,_0x19151e,_0x1457a4,_0xd968c7))return!0x0;let _0x4d2c5c=_0x236975(_0x2a03ce,_0x29b92e,_0x1a6b52);return _0x4d2c5c?(_0x947f9a(_0x19151e,_0x4d2c5c,_0xd968c7,_0x1a6b52,_0x29b92e,_0x1457a4),!0x0):!0x1;}function _0x1f4287(_0x2f3a16,_0x312a56,_0x5f0bcf,_0x3e99f4,_0x3a299a,_0x30990c){const _0x3bf6b0=_0x59d572;let _0x564cbe=_0x59dd0c(_0x2f3a16);if(!_0x564cbe||!_0x3e99f4[_0x3bf6b0(0x837)])return!0x1;let _0x2059a3=_0x236975(_0x2f3a16,_0x5f0bcf,_0x312a56);return _0x2059a3?(_0x3e99f4[_0x3bf6b0(0x8f9)](),_0x3e99f4['beginPath'](),_0x554f9f(_0x3e99f4,_0x564cbe[_0x3bf6b0(0x70c)],_0x312a56,_0x5f0bcf,_0x3a299a),_0x3e99f4[_0x3bf6b0(0x837)]('nonzero'),_0x947f9a(_0x3e99f4,_0x2059a3,_0x30990c,_0x312a56,_0x5f0bcf,_0x3a299a),_0x3e99f4[_0x3bf6b0(0x91c)](),!0x0):!0x1;}function _0x59dd0c(_0x1cf342){const _0x11a602=_0x59d572;let _0x441389=_0x1cf342==null?void 0x0:_0x1cf342['gradient'];if(!_0x441389||_0x441389[_0x11a602(0x2c1)]!==_0x11a602(0x92c)||!_0x441389[_0x11a602(0x34e)]||_0x441389[_0x11a602(0x34e)][_0x11a602(0xba6)]<0x6||!_0x441389['extend']||_0x441389[_0x11a602(0xc8f)][0x1])return;let _0xabcbf4={'x':_0x441389[_0x11a602(0x34e)][0x0],'y':_0x441389[_0x11a602(0x34e)][0x1],'radius':Math[_0x11a602(0x7f7)](_0x441389[_0x11a602(0x34e)][0x2])},_0x3020c7={'x':_0x441389[_0x11a602(0x34e)][0x3],'y':_0x441389[_0x11a602(0x34e)][0x4],'radius':Math[_0x11a602(0x7f7)](_0x441389[_0x11a602(0x34e)][0x5])},_0x116270=Math['hypot'](_0x3020c7['x']-_0xabcbf4['x'],_0x3020c7['y']-_0xabcbf4['y']),_0x13160f=_0x116270+_0xabcbf4[_0x11a602(0x51b)]<=_0x3020c7[_0x11a602(0x51b)]+_0x3387b5,_0x349254=_0x116270+_0x3020c7['radius']<=_0xabcbf4[_0x11a602(0x51b)]+_0x3387b5;if(_0x13160f||_0x349254)return;let _0x41d83a=_0x53d6bd([..._0x4e56ee(_0xabcbf4,0x30),..._0x4e56ee(_0x3020c7,0x30)]);if(!(_0x41d83a[_0x11a602(0xba6)]<0x3))return{'hull':_0x41d83a};}function _0x433694(_0x4797c5,_0xd5f932,_0x52235d,_0x4c038d,_0x32b27a,_0x11aa99){const _0x122a38=_0x59d572;let _0x44851f=_0x4a6ba7(_0x4797c5);if(!_0x44851f||!_0x4c038d[_0x122a38(0x7a7)]||!_0x4c038d[_0x122a38(0x837)])return!0x1;let _0x271544=_0x236975(_0x4797c5,_0x52235d,_0xd5f932);if(!_0x271544)return!0x1;let _0x2c9699=_0x307f44(_0x44851f[_0x122a38(0xba9)],_0xd5f932,_0x52235d,_0x32b27a),_0x3223a4=_0x44851f['innerHole']?_0x307f44(_0x44851f['innerHole'],_0xd5f932,_0x52235d,_0x32b27a):void 0x0;return!_0x2c9699||_0x44851f[_0x122a38(0x169)]&&!_0x3223a4?!0x1:(_0x4c038d[_0x122a38(0x8f9)](),_0x4c038d[_0x122a38(0x995)](),_0x44851f[_0x122a38(0x8ec)]===_0x122a38(0xba9)?_0x2ad391(_0x4c038d,_0x2c9699):_0x318c18(_0x4c038d,_0x271544,_0xd5f932,_0x52235d,_0x32b27a),_0x3223a4&&_0x2ad391(_0x4c038d,_0x3223a4),_0x4c038d[_0x122a38(0x837)](_0x3223a4?_0x122a38(0x128):_0x122a38(0x9f3)),_0x947f9a(_0x4c038d,_0x271544,_0x11aa99,_0xd5f932,_0x52235d,_0x32b27a),_0x4c038d[_0x122a38(0x91c)](),!0x0);}function _0x4a6ba7(_0x3f8cf7){const _0x2eade9=_0x59d572;let _0x2e4e95=_0x3f8cf7==null?void 0x0:_0x3f8cf7[_0x2eade9(0x873)];if(!_0x2e4e95||_0x2e4e95[_0x2eade9(0x2c1)]!==_0x2eade9(0x92c)||!_0x2e4e95[_0x2eade9(0x34e)]||_0x2e4e95[_0x2eade9(0x34e)][_0x2eade9(0xba6)]<0x6||!_0x2e4e95[_0x2eade9(0xc8f)]||_0x2e4e95[_0x2eade9(0xc8f)][0x0]&&_0x2e4e95['extend'][0x1])return;let _0x59f78b={'x':_0x2e4e95['coords'][0x0],'y':_0x2e4e95[_0x2eade9(0x34e)][0x1],'radius':Math[_0x2eade9(0x7f7)](_0x2e4e95['coords'][0x2])},_0x4da8dd={'x':_0x2e4e95['coords'][0x3],'y':_0x2e4e95[_0x2eade9(0x34e)][0x4],'radius':Math[_0x2eade9(0x7f7)](_0x2e4e95[_0x2eade9(0x34e)][0x5])},_0x5806a2=Math[_0x2eade9(0x82b)](_0x4da8dd['x']-_0x59f78b['x'],_0x4da8dd['y']-_0x59f78b['y']),_0x41c375=_0x5806a2+_0x59f78b[_0x2eade9(0x51b)]<=_0x4da8dd[_0x2eade9(0x51b)]+_0x3387b5,_0x205e8e=_0x5806a2+_0x4da8dd[_0x2eade9(0x51b)]<=_0x59f78b[_0x2eade9(0x51b)]+_0x3387b5;if(!_0x41c375&&!_0x205e8e)return;let _0x127d70=_0x41c375?{'circle':_0x59f78b,'index':0x0}:{'circle':_0x4da8dd,'index':0x1},_0x4d05ec=_0x41c375?{'circle':_0x4da8dd,'index':0x1}:{'circle':_0x59f78b,'index':0x0},_0x1d138b=!_0x2e4e95[_0x2eade9(0xc8f)][_0x4d05ec[_0x2eade9(0x2c6)]],_0x5cd832=!_0x2e4e95[_0x2eade9(0xc8f)][_0x127d70[_0x2eade9(0x2c6)]];if(!(!_0x1d138b&&!_0x5cd832))return{'base':_0x1d138b?_0x2eade9(0xba9):_0x2eade9(0xc08),'outerCircle':_0x4d05ec[_0x2eade9(0x594)],'innerHole':_0x5cd832?_0x127d70[_0x2eade9(0x594)]:void 0x0};}function _0x22bc6c(_0x24f4b9,_0x2dc0a0,_0x156f39){const _0xf7966=_0x59d572;var _0x36e9c0,_0x3cbd75,_0x246723;let _0x4e3ddf=_0x24f4b9==null?void 0x0:_0x24f4b9['gradient'];if(!_0x4e3ddf||_0x4e3ddf[_0xf7966(0x2c1)]!==_0xf7966(0x7ad)||!_0x4e3ddf[_0xf7966(0x34e)]||_0x4e3ddf[_0xf7966(0x34e)][_0xf7966(0xba6)]<0x4||!_0x4e3ddf[_0xf7966(0xc8f)]||_0x4e3ddf[_0xf7966(0xc8f)][0x0]&&_0x4e3ddf[_0xf7966(0xc8f)][0x1])return;let _0x1be840=(_0x36e9c0=_0x3fbb87(_0x2dc0a0[_0xf7966(0x336)][_0xf7966(0x58c)]))==null?_0x3fbb87(_0x2dc0a0[_0xf7966(0x336)]['mediaBox']):_0x36e9c0;if(!_0x1be840)return;let _0x39df0f=_0x156f39?(_0x3cbd75=_0x443865(_0x1be840,_0x156f39))==null?_0x1be840:_0x3cbd75:_0x1be840,[_0x4265e4,_0x494941,_0x39f4a3,_0x41bf6d]=_0x4e3ddf[_0xf7966(0x34e)],[_0x447c18,_0x4299b9]=(_0x246723=_0x4e3ddf[_0xf7966(0x124)])==null?[0x0,0x1]:_0x246723,_0x156c14=_0x39f4a3-_0x4265e4,_0x41ab14=_0x41bf6d-_0x494941,_0xd2a8ce=[_0x4265e4+_0x156c14*_0x447c18,_0x494941+_0x41ab14*_0x447c18],_0x625624=[_0x4265e4+_0x156c14*_0x4299b9,_0x494941+_0x41ab14*_0x4299b9];if(Math[_0xf7966(0x7f7)](_0x156c14)>=Math[_0xf7966(0x7f7)](_0x41ab14)){let [_0x2671fb,_0x1a19fe]=_0x100969(_0xd2a8ce[0x0],_0x625624[0x0],_0x39df0f[0x0],_0x39df0f[0x2],_0x4e3ddf[_0xf7966(0xc8f)]);return[_0x2671fb,_0x39df0f[0x1],_0x1a19fe,_0x39df0f[0x3]];}let [_0x5a012e,_0xd92ec7]=_0x100969(_0xd2a8ce[0x1],_0x625624[0x1],_0x39df0f[0x1],_0x39df0f[0x3],_0x4e3ddf['extend']);return[_0x39df0f[0x0],_0x5a012e,_0x39df0f[0x2],_0xd92ec7];}function _0x100969(_0xa405e7,_0x216f62,_0x2e3541,_0x3abf99,_0x1797db){return _0xa405e7<=_0x216f62?[_0x1797db[0x0]?_0x2e3541:_0xa405e7,_0x1797db[0x1]?_0x3abf99:_0x216f62]:[_0x1797db[0x1]?_0x2e3541:_0x216f62,_0x1797db[0x0]?_0x3abf99:_0xa405e7];}function _0x236975(_0x759c44,_0x5b9033,_0x5bd786){const _0x32d4ae=_0x59d572;var _0x51ca92,_0x32cd72,_0x236123,_0x5024cd;let _0x385aa0=(_0x51ca92=_0x3fbb87(_0x759c44==null?void 0x0:_0x759c44[_0x32d4ae(0xa01)]))==null?_0x3fbb87(_0x759c44==null||(_0x32cd72=_0x759c44[_0x32d4ae(0x2dd)])==null?void 0x0:_0x32cd72['bbox']):_0x51ca92;if(_0x385aa0)return _0x385aa0;let _0x1ca1e0=(_0x236123=_0x3fbb87(_0x5b9033['pdfBoxes'][_0x32d4ae(0x58c)]))==null?_0x3fbb87(_0x5b9033[_0x32d4ae(0x336)][_0x32d4ae(0xca2)]):_0x236123;if(_0x1ca1e0)return _0x5bd786?(_0x5024cd=_0x443865(_0x1ca1e0,_0x5bd786))==null?_0x1ca1e0:_0x5024cd:_0x1ca1e0;}function _0x464064(_0x2229b4,_0x3a492b,_0x408da8,_0xe4e365,_0x299344){const _0x40039e=_0x59d572;let _0x1c5254=_0x2229b4[_0x40039e(0x34e)];if(_0x1c5254){if(_0x2229b4['type']===_0x40039e(0x7ad)&&_0x1c5254['length']>=0x4&&_0xe4e365[_0x40039e(0x4fd)]){let [_0x129d88,_0x41925c]=_0x1c3c61(_0x1c5254[0x0],_0x1c5254[0x1],_0x3a492b,_0x408da8,_0x299344),[_0x209df8,_0x37eb6e]=_0x1c3c61(_0x1c5254[0x2],_0x1c5254[0x3],_0x3a492b,_0x408da8,_0x299344);return _0xe4e365[_0x40039e(0x4fd)](_0x129d88,_0x41925c,_0x209df8,_0x37eb6e);}if(_0x2229b4[_0x40039e(0x2c1)]===_0x40039e(0x92c)&&_0x1c5254[_0x40039e(0xba6)]>=0x6&&_0xe4e365[_0x40039e(0x616)]){let [_0x560984,_0x5f0d81]=_0x1c3c61(_0x1c5254[0x0],_0x1c5254[0x1],_0x3a492b,_0x408da8,_0x299344),[_0x208683,_0x4765d6]=_0x1c3c61(_0x1c5254[0x3],_0x1c5254[0x4],_0x3a492b,_0x408da8,_0x299344),_0x13b495=_0xb82ffa(_0x1c5254[0x0],_0x1c5254[0x1],_0x1c5254[0x2],_0x3a492b,_0x408da8,_0x299344),_0x12e6bd=_0xb82ffa(_0x1c5254[0x3],_0x1c5254[0x4],_0x1c5254[0x5],_0x3a492b,_0x408da8,_0x299344);return _0xe4e365['createRadialGradient'](_0x560984,_0x5f0d81,_0x13b495,_0x208683,_0x4765d6,_0x12e6bd);}}}function _0xc2d870(_0x530e39,_0x4b67d6){const _0x189cb7=_0x59d572;return _0x530e39&&_0x4b67d6[_0x189cb7(0x701)]?_0x2148ba(_0x530e39,_0x4b67d6[_0x189cb7(0x701)]):_0x530e39==null?_0x4b67d6[_0x189cb7(0x701)]:_0x530e39;}function _0x1c3c61(_0x2f9bbe,_0x33f9e6,_0x109f84,_0xd5cfa6,_0x6ba947){let [_0x5b71b8,_0x36dcfe]=_0x109f84?_0x4edeca(_0x2f9bbe,_0x33f9e6,_0x109f84):[_0x2f9bbe,_0x33f9e6];return _0x178cf1(_0x5b71b8,_0x36dcfe,_0xd5cfa6,_0x6ba947);}function _0xb82ffa(_0x500263,_0xd0e592,_0x522d14,_0x20c755,_0x134606,_0x1b6cbb){let _0x1241ef=_0x1c3c61(_0x500263,_0xd0e592,_0x20c755,_0x134606,_0x1b6cbb),_0x33b08b=_0x1c3c61(_0x500263+_0x522d14,_0xd0e592,_0x20c755,_0x134606,_0x1b6cbb);return Math['hypot'](_0x33b08b[0x0]-_0x1241ef[0x0],_0x33b08b[0x1]-_0x1241ef[0x1]);}function _0x554f9f(_0x270c70,_0x64be2,_0x1e40c2,_0x3e50df,_0x54bd58){const _0x5e2e70=_0x59d572;let _0x395913=_0x64be2[0x0];if(!_0x395913)return;let [_0x3ef7ca,_0x3ccde7]=_0x1c3c61(_0x395913[0x0],_0x395913[0x1],_0x1e40c2,_0x3e50df,_0x54bd58);_0x270c70[_0x5e2e70(0x80a)](_0x3ef7ca,_0x3ccde7);for(let _0x216712 of _0x64be2[_0x5e2e70(0x688)](0x1)){let [_0x12d622,_0x61fedc]=_0x1c3c61(_0x216712[0x0],_0x216712[0x1],_0x1e40c2,_0x3e50df,_0x54bd58);_0x270c70['lineTo'](_0x12d622,_0x61fedc);}_0x270c70[_0x5e2e70(0x427)]();}function _0x307f44(_0x5ab2e7,_0x38dd67,_0x11daf7,_0x47135f){const _0x1dc29f=_0x59d572;if(_0x5ab2e7[_0x1dc29f(0x51b)]<=0x0)return;let _0x1c072f=_0x1c3c61(_0x5ab2e7['x'],_0x5ab2e7['y'],_0x38dd67,_0x11daf7,_0x47135f),_0x34aa31=_0x1c3c61(_0x5ab2e7['x']+_0x5ab2e7['radius'],_0x5ab2e7['y'],_0x38dd67,_0x11daf7,_0x47135f),_0x485911=_0x1c3c61(_0x5ab2e7['x'],_0x5ab2e7['y']+_0x5ab2e7[_0x1dc29f(0x51b)],_0x38dd67,_0x11daf7,_0x47135f),_0x51b77d=[_0x34aa31[0x0]-_0x1c072f[0x0],_0x34aa31[0x1]-_0x1c072f[0x1]],_0x310445=[_0x485911[0x0]-_0x1c072f[0x0],_0x485911[0x1]-_0x1c072f[0x1]],_0x3166b8=Math[_0x1dc29f(0x82b)](_0x51b77d[0x0],_0x51b77d[0x1]),_0x10cb46=Math[_0x1dc29f(0x82b)](_0x310445[0x0],_0x310445[0x1]);if(!(!Number['isFinite'](_0x3166b8)||!Number[_0x1dc29f(0x771)](_0x10cb46)||_0x3166b8<=0x0||_0x10cb46<=0x0))return{'x':_0x1c072f[0x0],'y':_0x1c072f[0x1],'radiusX':_0x3166b8,'radiusY':_0x10cb46,'rotation':Math[_0x1dc29f(0xc81)](_0x51b77d[0x1],_0x51b77d[0x0])};}function _0x4e56ee(_0x5530fb,_0x1977a5){const _0x5bee6a=_0x59d572;return _0x5530fb[_0x5bee6a(0x51b)]<=_0x3387b5?[[_0x5530fb['x'],_0x5530fb['y']]]:Array[_0x5bee6a(0x8c1)]({'length':_0x1977a5},(_0x15daf5,_0x5b4797)=>{const _0xbb106b=_0x5bee6a;let _0x554fe3=_0x5b4797/_0x1977a5*Math['PI']*0x2;return[_0x5530fb['x']+Math[_0xbb106b(0x672)](_0x554fe3)*_0x5530fb['radius'],_0x5530fb['y']+Math[_0xbb106b(0xc06)](_0x554fe3)*_0x5530fb[_0xbb106b(0x51b)]];});}function _0x53d6bd(_0x1daf44){const _0x29c28e=_0x59d572;let _0x3ef89a=[..._0x1daf44][_0x29c28e(0xbcd)](([_0x29e7b7,_0x27c53b])=>Number[_0x29c28e(0x771)](_0x29e7b7)&&Number[_0x29c28e(0x771)](_0x27c53b))[_0x29c28e(0xb29)]((_0x8083c6,_0x417826)=>_0x8083c6[0x0]-_0x417826[0x0]||_0x8083c6[0x1]-_0x417826[0x1]);if(_0x3ef89a[_0x29c28e(0xba6)]<=0x1)return _0x3ef89a;let _0x400aee=[];for(let _0x1ab959 of _0x3ef89a){for(;_0x400aee['length']>=0x2&&_0x26132d(_0x400aee[_0x400aee[_0x29c28e(0xba6)]-0x2],_0x400aee[_0x400aee[_0x29c28e(0xba6)]-0x1],_0x1ab959)<=0x0;)_0x400aee[_0x29c28e(0x8f2)]();_0x400aee[_0x29c28e(0x381)](_0x1ab959);}let _0x106f67=[];for(let _0x50183b=_0x3ef89a[_0x29c28e(0xba6)]-0x1;_0x50183b>=0x0;_0x50183b--){let _0xd81444=_0x3ef89a[_0x50183b];for(;_0x106f67[_0x29c28e(0xba6)]>=0x2&&_0x26132d(_0x106f67[_0x106f67[_0x29c28e(0xba6)]-0x2],_0x106f67[_0x106f67[_0x29c28e(0xba6)]-0x1],_0xd81444)<=0x0;)_0x106f67[_0x29c28e(0x8f2)]();_0x106f67[_0x29c28e(0x381)](_0xd81444);}return _0x400aee[_0x29c28e(0x8f2)](),_0x106f67['pop'](),[..._0x400aee,..._0x106f67];}function _0x26132d(_0xee701,_0x1b23ed,_0x2c4584){return(_0x1b23ed[0x0]-_0xee701[0x0])*(_0x2c4584[0x1]-_0xee701[0x1])-(_0x1b23ed[0x1]-_0xee701[0x1])*(_0x2c4584[0x0]-_0xee701[0x0]);}function _0x343211(_0x227fbc){return _0x227fbc>0x1000?0x0:_0x227fbc>0x400?0x1:0x3;}function _0x1b31b3(_0x1787be,_0x138552,_0x3b0788,_0x35e973){const _0x5d04cb=_0x59d572;let [_0x38dbba,_0x535463]=_0x138552?_0x4edeca(_0x1787be['x'],_0x1787be['y'],_0x138552):[_0x1787be['x'],_0x1787be['y']],[_0x33b035,_0x1da1a0]=_0x178cf1(_0x38dbba,_0x535463,_0x3b0788,_0x35e973);return{'x':_0x33b035,'y':_0x1da1a0,'color':_0x4b4671(_0x1787be[_0x5d04cb(0x6aa)])};}function _0x505764(_0x17b2f0,_0x4ca85f,_0x13bf9a){const _0x392a58=_0x59d572;if(_0x13bf9a<=0x0||_0x43e466(_0x4ca85f)<0.35){_0x53243f(_0x17b2f0,_0x4ca85f,_0x95bacd(_0x4ca85f[_0x392a58(0xb06)](_0x6dae22=>_0x6dae22['color'])));return;}let [_0x100b75,_0xc50fc4,_0x23a9d5]=_0x4ca85f,_0xad90d4=_0x530f7f(_0x100b75,_0xc50fc4),_0x5b0e6d=_0x530f7f(_0xc50fc4,_0x23a9d5),_0x455802=_0x530f7f(_0x23a9d5,_0x100b75);_0x505764(_0x17b2f0,[_0x100b75,_0xad90d4,_0x455802],_0x13bf9a-0x1),_0x505764(_0x17b2f0,[_0xad90d4,_0xc50fc4,_0x5b0e6d],_0x13bf9a-0x1),_0x505764(_0x17b2f0,[_0x455802,_0x5b0e6d,_0x23a9d5],_0x13bf9a-0x1),_0x505764(_0x17b2f0,[_0xad90d4,_0x5b0e6d,_0x455802],_0x13bf9a-0x1);}function _0x53243f(_0x1c081b,_0x4e2539,_0x2d7858){const _0x3e220a=_0x59d572;let _0xf45111=_0x5f4f53(_0x2d7858);_0x1c081b[_0x3e220a(0x995)](),_0x1c081b[_0x3e220a(0x80a)](_0x4e2539[0x0]['x'],_0x4e2539[0x0]['y']),_0x1c081b['lineTo'](_0x4e2539[0x1]['x'],_0x4e2539[0x1]['y']),_0x1c081b[_0x3e220a(0x5be)](_0x4e2539[0x2]['x'],_0x4e2539[0x2]['y']),_0x1c081b[_0x3e220a(0x427)](),_0x1c081b['fillStyle']=_0xf45111,_0x1c081b[_0x3e220a(0x9ae)](),_0x1c081b['strokeStyle']=_0xf45111,_0x1c081b[_0x3e220a(0x521)]=0.35,_0x1c081b['lineJoin']=_0x3e220a(0x157),_0x1c081b[_0x3e220a(0xa25)]();}function _0x1c1dd3(_0x1fcf35,_0x594225,_0x456aff,_0x56efe9,_0x5ab0dd,_0x2e2955){_0x947f9a(_0x1fcf35,_0x594225,_0x5f4f53(_0x4b4671(_0x456aff)),_0x56efe9,_0x5ab0dd,_0x2e2955);}function _0x318c18(_0x159a50,_0x548842,_0x3879c4,_0x3ec0b9,_0x2614bb){const _0x255c6d=_0x59d572;let _0x1566a1=[[_0x548842[0x0],_0x548842[0x1]],[_0x548842[0x2],_0x548842[0x1]],[_0x548842[0x2],_0x548842[0x3]],[_0x548842[0x0],_0x548842[0x3]]][_0x255c6d(0xb06)](([_0xb6ad31,_0x206538])=>{let [_0x5cfe10,_0x4c67c4]=_0x3879c4?_0x4edeca(_0xb6ad31,_0x206538,_0x3879c4):[_0xb6ad31,_0x206538];return _0x178cf1(_0x5cfe10,_0x4c67c4,_0x3ec0b9,_0x2614bb);});_0x159a50['moveTo'](_0x1566a1[0x0][0x0],_0x1566a1[0x0][0x1]),_0x159a50['lineTo'](_0x1566a1[0x1][0x0],_0x1566a1[0x1][0x1]),_0x159a50[_0x255c6d(0x5be)](_0x1566a1[0x2][0x0],_0x1566a1[0x2][0x1]),_0x159a50[_0x255c6d(0x5be)](_0x1566a1[0x3][0x0],_0x1566a1[0x3][0x1]),_0x159a50['closePath']();}function _0x947f9a(_0x5bb3da,_0x12f892,_0x45931c,_0xe1f709,_0x21a548,_0x18c482){const _0x212c12=_0x59d572;_0x5bb3da[_0x212c12(0x995)](),_0x318c18(_0x5bb3da,_0x12f892,_0xe1f709,_0x21a548,_0x18c482),_0x5bb3da[_0x212c12(0x3d0)]=_0x45931c,_0x5bb3da[_0x212c12(0x9ae)]();}function _0x2ad391(_0x21859f,_0xdff0a2){const _0x58819d=_0x59d572;var _0x5d8f77;(_0x5d8f77=_0x21859f['ellipse'])==null||_0x5d8f77[_0x58819d(0x3f4)](_0x21859f,_0xdff0a2['x'],_0xdff0a2['y'],_0xdff0a2['radiusX'],_0xdff0a2['radiusY'],_0xdff0a2[_0x58819d(0x814)],0x0,Math['PI']*0x2);}function _0x5cc4f6(_0x4012e1,_0x4d2f48,_0x2e6dc2,_0xc4b289,_0x6b2029,_0x129610){const _0x59bdd0=_0x59d572;let _0xd53b4e=[[_0x4d2f48[0x0],_0x4d2f48[0x1]],[_0x4d2f48[0x2],_0x4d2f48[0x1]],[_0x4d2f48[0x2],_0x4d2f48[0x3]],[_0x4d2f48[0x0],_0x4d2f48[0x3]]]['map'](([_0x112a7f,_0x30e2a6])=>{let [_0x3d047b,_0x170692]=_0xc4b289?_0x4edeca(_0x112a7f,_0x30e2a6,_0xc4b289):[_0x112a7f,_0x30e2a6];return _0x178cf1(_0x3d047b,_0x170692,_0x6b2029,_0x129610);}),_0x69d28b=_0xd53b4e[_0x59bdd0(0xb06)](([_0x3a2758])=>_0x3a2758),_0x24915c=_0xd53b4e[_0x59bdd0(0xb06)](([,_0x2b3a71])=>_0x2b3a71),_0xbfbfb6=Math[_0x59bdd0(0xb2a)](..._0x69d28b),_0x270e8f=Math[_0x59bdd0(0x542)](..._0x69d28b),_0x35633f=Math[_0x59bdd0(0xb2a)](..._0x24915c),_0x31675f=Math[_0x59bdd0(0x542)](..._0x24915c);_0x4012e1[_0x59bdd0(0x995)](),_0x4012e1[_0x59bdd0(0x998)](_0xbfbfb6,_0x35633f,_0x270e8f-_0xbfbfb6,_0x31675f-_0x35633f),_0x4012e1[_0x59bdd0(0x3d0)]=_0x2e6dc2,_0x4012e1[_0x59bdd0(0x9ae)]();}function _0x530f7f(_0x1af886,_0xd43776){const _0x49edfd=_0x59d572;return{'x':(_0x1af886['x']+_0xd43776['x'])/0x2,'y':(_0x1af886['y']+_0xd43776['y'])/0x2,'color':_0x95bacd([_0x1af886[_0x49edfd(0x6aa)],_0xd43776[_0x49edfd(0x6aa)]])};}function _0x43e466(_0x5b7d2b){const _0x59ccb9=_0x59d572;let [_0x288850,_0x120403,_0x211c71]=_0x5b7d2b;return Math[_0x59ccb9(0x7f7)]((_0x120403['x']-_0x288850['x'])*(_0x211c71['y']-_0x288850['y'])-(_0x211c71['x']-_0x288850['x'])*(_0x120403['y']-_0x288850['y']))/0x2;}function _0x5b85b0(_0x3d0000){const _0x3287ad=_0x59d572;return _0x3d0000['every'](_0x212358=>Number[_0x3287ad(0x771)](_0x212358['x'])&&Number[_0x3287ad(0x771)](_0x212358['y']))&&_0x43e466(_0x3d0000)>0x0;}function _0x3fbb87(_0x2dbb0b){const _0x3e4943=_0x59d572;if(_0x2dbb0b)return Math[_0x3e4943(0x7f7)](_0x2dbb0b[0x2]-_0x2dbb0b[0x0])>0x0&&Math['abs'](_0x2dbb0b[0x3]-_0x2dbb0b[0x1])>0x0?_0x2dbb0b:void 0x0;}function _0x443865(_0x541e18,_0x2cffae){const _0x3446fc=_0x59d572;let _0x2194c3=_0x35be6d(_0x2cffae);if(!_0x2194c3)return;let _0xe00315=[_0x4edeca(_0x541e18[0x0],_0x541e18[0x1],_0x2194c3),_0x4edeca(_0x541e18[0x2],_0x541e18[0x1],_0x2194c3),_0x4edeca(_0x541e18[0x2],_0x541e18[0x3],_0x2194c3),_0x4edeca(_0x541e18[0x0],_0x541e18[0x3],_0x2194c3)],_0x22217c=_0xe00315[_0x3446fc(0xb06)](([_0xce084])=>_0xce084),_0x1511e6=_0xe00315[_0x3446fc(0xb06)](([,_0x22a921])=>_0x22a921);return[Math[_0x3446fc(0xb2a)](..._0x22217c),Math[_0x3446fc(0xb2a)](..._0x1511e6),Math['max'](..._0x22217c),Math[_0x3446fc(0x542)](..._0x1511e6)];}function _0x35be6d(_0x348b08){let [_0x275c9e,_0x250e8c,_0x4ef66c,_0x1e2014,_0x379e0e,_0x3f9bbb]=_0x348b08,_0x3a50a0=_0x275c9e*_0x1e2014-_0x250e8c*_0x4ef66c;if(!(Math['abs'](_0x3a50a0)<1e-12))return[_0x1e2014/_0x3a50a0,-_0x250e8c/_0x3a50a0,-_0x4ef66c/_0x3a50a0,_0x275c9e/_0x3a50a0,(_0x4ef66c*_0x3f9bbb-_0x1e2014*_0x379e0e)/_0x3a50a0,(_0x250e8c*_0x379e0e-_0x275c9e*_0x3f9bbb)/_0x3a50a0];}function _0x95bacd(_0x5682ca){const _0x1d7946=_0x59d572;let _0x369040=_0x5682ca['reduce']((_0x27f28a,_0x579239)=>[_0x27f28a[0x0]+_0x579239[0x0],_0x27f28a[0x1]+_0x579239[0x1],_0x27f28a[0x2]+_0x579239[0x2]],[0x0,0x0,0x0]);return[_0x369040[0x0]/_0x5682ca['length'],_0x369040[0x1]/_0x5682ca[_0x1d7946(0xba6)],_0x369040[0x2]/_0x5682ca[_0x1d7946(0xba6)]];}function _0x4b4671(_0x23e8a0){const _0x4c6c2f=_0x59d572;if(Array['isArray'](_0x23e8a0)){var _0x473683,_0x445c5a,_0x2d09d0;return[_0x25e2e2((_0x473683=_0x23e8a0[0x0])==null?0x0:_0x473683),_0x25e2e2((_0x445c5a=_0x23e8a0[0x1])==null?0x0:_0x445c5a),_0x25e2e2((_0x2d09d0=_0x23e8a0[0x2])==null?0x0:_0x2d09d0)];}let _0x4b800f=_0x23e8a0==null?void 0x0:_0x23e8a0[_0x4c6c2f(0x504)](/^#?([0-9a-f]{6})$/i);if(!_0x4b800f)return[0x0,0x0,0x0];let _0x19469e=_0x4b800f[0x1];return[Number[_0x4c6c2f(0x3db)](_0x19469e['slice'](0x0,0x2),0x10),Number[_0x4c6c2f(0x3db)](_0x19469e['slice'](0x2,0x4),0x10),Number[_0x4c6c2f(0x3db)](_0x19469e[_0x4c6c2f(0x688)](0x4,0x6),0x10)];}function _0x25e2e2(_0x1b7703){return _0x1b7703<=0x1?_0x1b7703*0xff:_0x1b7703;}function _0x5f4f53(_0xe5de64){const _0x4f6fa5=_0x59d572;return'rgb('+_0xe5de64['map'](_0x37dabd=>Math[_0x4f6fa5(0x542)](0x0,Math[_0x4f6fa5(0xb2a)](0xff,Math[_0x4f6fa5(0x157)](_0x37dabd))))['join'](',\x20')+')';}function _0x43d3b7(_0x53f8d4){return typeof _0x53f8d4=='string'?_0x53f8d4:_0x5f4f53(_0x4b4671(_0x53f8d4));}function _0x2148ba(_0x2a9178,_0x29c7e5){return[_0x2a9178[0x0]*_0x29c7e5[0x0]+_0x2a9178[0x2]*_0x29c7e5[0x1],_0x2a9178[0x1]*_0x29c7e5[0x0]+_0x2a9178[0x3]*_0x29c7e5[0x1],_0x2a9178[0x0]*_0x29c7e5[0x2]+_0x2a9178[0x2]*_0x29c7e5[0x3],_0x2a9178[0x1]*_0x29c7e5[0x2]+_0x2a9178[0x3]*_0x29c7e5[0x3],_0x2a9178[0x0]*_0x29c7e5[0x4]+_0x2a9178[0x2]*_0x29c7e5[0x5]+_0x2a9178[0x4],_0x2a9178[0x1]*_0x29c7e5[0x4]+_0x2a9178[0x3]*_0x29c7e5[0x5]+_0x2a9178[0x5]];}function _0x4edeca(_0x528158,_0x430734,_0x4fbff5){return[_0x4fbff5[0x0]*_0x528158+_0x4fbff5[0x2]*_0x430734+_0x4fbff5[0x4],_0x4fbff5[0x1]*_0x528158+_0x4fbff5[0x3]*_0x430734+_0x4fbff5[0x5]];}function _0x178cf1(_0x2dc956,_0x12353f,_0x5d4959,_0x5a8a2e){const _0x4726eb=_0x59d572;let _0x43623c=_0x5d4959[_0x4726eb(0x336)][_0x4726eb(0xca2)];return[_0x193e70((0x0,_0x21fa40['ptToEmu'])(_0x2dc956-_0x43623c[0x0]),_0x5a8a2e),_0x193e70((0x0,_0x21fa40['ptToEmu'])(_0x43623c[0x3]-_0x12353f),_0x5a8a2e)];}function _0x193e70(_0x9602c5,_0x552c95){const _0x3f4125=_0x59d572;return(0x0,_0x21fa40[_0x3f4125(0xb35)])(_0x9602c5)*_0x552c95['zoom'];}function _0x57f5d0(_0x470d83){let {textContext:_0x441f9e,context:_0x266328,viewport:_0xd23895,options:_0x835a30={}}=_0x470d83;_0x5555a5(_0x441f9e,_0x266328,_0xd23895,_0x835a30);}function _0x5555a5(_0x7c9a04,_0x4602b5,_0x3a83a2,_0x484124){const _0x5c3f82=_0x59d572;var _0x57f1b0,_0x3ef7f5,_0x4e766e,_0x55a6b9,_0x55ddc2;let {document:_0x322fa6}=_0x7c9a04[_0x5c3f82(0x5a5)],_0x300b41=_0x7c9a04['op'],_0x185c27=_0x49f952((_0x57f1b0=(_0x3ef7f5=_0x300b41['transform'])==null?void 0x0:_0x3ef7f5[0x4])==null?0x0:_0x57f1b0,_0x3a83a2),_0x33a8d3=_0x49f952((_0x4e766e=(_0x55a6b9=_0x300b41[_0x5c3f82(0x701)])==null?void 0x0:_0x55a6b9[0x5])==null?0x0:_0x4e766e,_0x3a83a2),[_0x4748cb,_0x365127,_0x14a423,_0x30985d]=(_0x55ddc2=_0x300b41[_0x5c3f82(0x701)])==null?[0x1,0x0,0x0,0x1,0x0,0x0]:_0x55ddc2,_0x5cb314=_0x185c27,_0x137b79=_0x33a8d3;_0x4602b5[_0x5c3f82(0x8f9)](),_0x4602b5[_0x5c3f82(0x701)](_0x4748cb,_0x365127,_0x14a423,_0x30985d,_0x185c27-(_0x4748cb*_0x185c27+_0x14a423*_0x33a8d3),_0x33a8d3-(_0x365127*_0x185c27+_0x30985d*_0x33a8d3)),_0x4602b5[_0x5c3f82(0xb34)]=_0x5c3f82(0xb72);for(let _0x1c95d9 of _0x300b41[_0x5c3f82(0x416)]){var _0x539508,_0x34878c;if(typeof _0x1c95d9['text']!=_0x5c3f82(0x221)||_0x1c95d9['text'][_0x5c3f82(0xba6)]===0x0)continue;let _0x405d27=_0x1c95d9[_0x5c3f82(0x83d)]?_0x322fa6['assets']['fonts'][_0x1c95d9[_0x5c3f82(0x83d)]]:void 0x0,_0x5278e1=_0x188ff5(_0x405d27)?(_0x539508=_0x484124['fontOutlineResolver'])==null?void 0x0:_0x539508[_0x5c3f82(0x3f4)](_0x484124,{'document':_0x322fa6,'font':_0x405d27,'run':_0x1c95d9}):void 0x0,_0x53d2e9=_0x49f952((0x0,_0x21fa40['ptToEmu'])(_0x1c95d9[_0x5c3f82(0x845)]),_0x3a83a2),_0xd647a3=_0x1c95d9[_0x5c3f82(0x21b)]?_0x49f952((0x0,_0x21fa40[_0x5c3f82(0x7c3)])(_0x1c95d9[_0x5c3f82(0x21b)]),_0x3a83a2):0x0;_0x4602b5[_0x5c3f82(0x7da)]=_0x20ce98(_0x322fa6,_0x1c95d9,_0x53d2e9,_0x484124);let _0x12caed=_0x690cb2(_0x322fa6,_0x7c9a04[_0x5c3f82(0x5a5)][_0x5c3f82(0x175)],_0x1c95d9,_0x4602b5,_0x3a83a2);if(_0x12caed&&(_0x4602b5[_0x5c3f82(0x3d0)]=_0x12caed),_0x4602b5[_0x5c3f82(0x8f9)](),_0x307246(_0x4602b5,_0x1c95d9[_0x5c3f82(0x10d)]),_0x1c95d9['stroke']&&_0x2dc784(_0x4602b5,_0x1c95d9['stroke'],_0x3a83a2),_0x501f7a(_0x4602b5,_0x1c95d9,_0x405d27,_0x5278e1,_0x5cb314,_0x137b79-_0xd647a3,_0x53d2e9,_0x3a83a2,(_0x34878c=_0x300b41[_0x5c3f82(0x1f6)])==null?void 0x0:_0x34878c[_0x5c3f82(0x9b7)]),_0x4602b5[_0x5c3f82(0x91c)](),_0x9ccedf(_0x1c95d9))_0x137b79+=_0xfedf37(_0x1c95d9,_0x53d2e9,_0x3a83a2);else{var _0x44f5f9;_0x5cb314+=_0x4c62cd(_0x4602b5,_0x1c95d9[_0x5c3f82(0x975)],_0x53d2e9,_0x1c95d9,(_0x44f5f9=_0x300b41[_0x5c3f82(0x1f6)])==null?void 0x0:_0x44f5f9[_0x5c3f82(0x9b7)],_0x405d27);}}_0x4602b5[_0x5c3f82(0x91c)]();}function _0x690cb2(_0x1e4c0e,_0x445b58,_0x2786ef,_0x937be7,_0x35f194){const _0xa20375=_0x59d572;let _0x3cf780=_0x6bcaf7(_0x2786ef[_0xa20375(0x9ae)],_0xa20375(0x797));if(_0x2786ef[_0xa20375(0x2ee)]){var _0x165e73;let _0x50345e=_0x1e4c0e[_0xa20375(0xc33)][_0xa20375(0x43c)][_0x2786ef['fillPatternId']];return _0x38e6c5({'asset':_0x50345e!=null&&_0x50345e[_0xa20375(0x2e6)]?_0x1e4c0e[_0xa20375(0xc33)][_0xa20375(0xaff)][_0x50345e[_0xa20375(0x2e6)]]:void 0x0,'matrix':_0x50345e==null?void 0x0:_0x50345e[_0xa20375(0x86d)],'page':_0x445b58,'context':_0x937be7,'viewport':_0x35f194})||_0x6bcaf7(_0x50345e==null||(_0x165e73=_0x50345e[_0xa20375(0xa29)])==null?void 0x0:_0x165e73['color'],_0x3cf780);}return _0x2786ef[_0xa20375(0x9ae)]?_0x3cf780:void 0x0;}function _0x501f7a(_0x18e483,_0x14b74a,_0x152147,_0x54f637,_0x19206f,_0x1a8b7e,_0x298d8e,_0x35c34e,_0x28ca7a=0x64){const _0x4af483=_0x59d572;var _0x2a5372,_0x1b3d49,_0x4c4dd0;let _0x578e7a=_0x49f952((0x0,_0x21fa40[_0x4af483(0x7c3)])((_0x2a5372=_0x14b74a[_0x4af483(0xa35)])==null?0x0:_0x2a5372),_0x35c34e),_0x1493b6=_0x49f952((0x0,_0x21fa40['ptToEmu'])((_0x1b3d49=_0x14b74a[_0x4af483(0x60d)])==null?0x0:_0x1b3d49),_0x35c34e),_0x55668a=_0x28ca7a/0x64;if(_0x9ccedf(_0x14b74a)){_0x2d14a7(_0x18e483,_0x14b74a,_0x152147,_0x54f637,_0x19206f,_0x1a8b7e,_0x298d8e,_0x35c34e);return;}if((_0x4c4dd0=_0x14b74a[_0x4af483(0x70a)])!=null&&(_0x4c4dd0=_0x4c4dd0['advances'])!=null&&_0x4c4dd0[_0x4af483(0xba6)]){_0x552e57(_0x18e483,_0x14b74a,_0x152147,_0x54f637,_0x19206f,_0x1a8b7e,_0x298d8e,_0x35c34e,_0x28ca7a);return;}if(_0x578e7a===0x0&&_0x1493b6===0x0&&_0x55668a===0x1){_0x5a4627(_0x18e483,_0x14b74a,_0x152147,_0x54f637,_0x14b74a[_0x4af483(0x975)],_0x19206f,_0x1a8b7e,_0x298d8e);return;}let _0x394513=_0x19206f;for(let _0x33bac1 of Array[_0x4af483(0x8c1)](_0x14b74a['text']))_0x5a4627(_0x18e483,_0x14b74a,_0x152147,_0x54f637,_0x33bac1,_0x394513,_0x1a8b7e,_0x298d8e),_0x394513+=_0x4c62cd(_0x18e483,_0x33bac1,_0x298d8e,{..._0x14b74a,'charSpacing':0x0,'wordSpacing':0x0},_0x28ca7a,_0x152147),_0x394513+=_0x578e7a*_0x55668a,_0x33bac1==='\x20'&&(_0x394513+=_0x1493b6*_0x55668a);}function _0x552e57(_0x296236,_0x416da3,_0xe0dfe9,_0x205935,_0x1bd8a7,_0x4ecc56,_0x193566,_0x4e9820,_0x334e40=0x64){const _0x2d219d=_0x59d572;var _0x5c0b46,_0x529800;let _0xf64675=Array[_0x2d219d(0x8c1)](_0x416da3['text']),_0x36d60d=_0x334e40/0x64,_0x5f3ec0=_0x49f952((0x0,_0x21fa40[_0x2d219d(0x7c3)])((_0x5c0b46=_0x416da3['charSpacing'])==null?0x0:_0x5c0b46),_0x4e9820)*_0x36d60d,_0x56b39b=_0x49f952((0x0,_0x21fa40['ptToEmu'])((_0x529800=_0x416da3[_0x2d219d(0x60d)])==null?0x0:_0x529800),_0x4e9820)*_0x36d60d,_0x35fec2=_0x1bd8a7;_0xf64675[_0x2d219d(0xc9d)]((_0x370007,_0x46a75f)=>{const _0x5df85c=_0x2d219d;_0x5a4627(_0x296236,_0x416da3,_0xe0dfe9,_0x205935,_0x370007,_0x35fec2,_0x4ecc56,_0x193566),_0x35fec2+=_0x58f952(_0x416da3,_0x46a75f,_0x370007,_0x296236,_0x193566,_0x4e9820,_0x334e40,_0xe0dfe9),_0x46a75f<_0xf64675[_0x5df85c(0xba6)]-0x1&&(_0x35fec2+=_0x5f3ec0),_0x370007==='\x20'&&(_0x35fec2+=_0x56b39b);});}function _0x2d14a7(_0x305cc8,_0x274bba,_0x238f93,_0x1cfa2b,_0x5d7557,_0x475f7e,_0x207a6e,_0x2a9cca){const _0x26e6dd=_0x59d572;var _0x4d7cb6,_0x4822e5;let _0x37db65=_0x49f952((0x0,_0x21fa40[_0x26e6dd(0x7c3)])((_0x4d7cb6=_0x274bba[_0x26e6dd(0xa35)])==null?0x0:_0x4d7cb6),_0x2a9cca),_0x3b7347=_0x49f952((0x0,_0x21fa40['ptToEmu'])((_0x4822e5=_0x274bba[_0x26e6dd(0x60d)])==null?0x0:_0x4822e5),_0x2a9cca),_0x1741d3=_0x475f7e;Array['from'](_0x274bba['text'])[_0x26e6dd(0xc9d)]((_0x57861b,_0x50b995)=>{_0x5a4627(_0x305cc8,_0x274bba,_0x238f93,_0x1cfa2b,_0x57861b,_0x5d7557,_0x1741d3,_0x207a6e),_0x1741d3+=_0x56d052(_0x274bba,_0x50b995,_0x207a6e,_0x2a9cca),_0x1741d3+=_0x37db65,_0x57861b==='\x20'&&(_0x1741d3+=_0x3b7347);});}function _0x9ccedf(_0x4802d4){const _0x4d90ab=_0x59d572;return _0x4802d4[_0x4d90ab(0x42c)]==='vertical-rl'||_0x4802d4[_0x4d90ab(0x42c)]===_0x4d90ab(0x7d6);}function _0xfedf37(_0x1492b0,_0x3f4d02,_0x30ac32){const _0x19ef0c=_0x59d572;return Array[_0x19ef0c(0x8c1)](_0x1492b0[_0x19ef0c(0x975)])[_0x19ef0c(0xc71)]((_0x46b105,_0x4599b2,_0x26f1b8)=>_0x46b105+_0x56d052(_0x1492b0,_0x26f1b8,_0x3f4d02,_0x30ac32),0x0);}function _0x58f952(_0x5e91b0,_0x5d00d4,_0x286a1c,_0x2abc67,_0x146e3a,_0x5cc16c,_0x32623f,_0x41a0f6){const _0x44dbbf=_0x59d572;var _0x3af66d;let _0x560e43=(_0x3af66d=_0x5e91b0['glyphs'])==null||(_0x3af66d=_0x3af66d['advances'])==null?void 0x0:_0x3af66d[_0x5d00d4];return typeof _0x560e43==_0x44dbbf(0x97e)?_0x49f952((0x0,_0x21fa40[_0x44dbbf(0x7c3)])(_0x560e43),_0x5cc16c):_0x4c62cd(_0x2abc67,_0x286a1c,_0x146e3a,{..._0x5e91b0,'charSpacing':0x0,'wordSpacing':0x0},_0x32623f,_0x41a0f6);}function _0x56d052(_0xf9474b,_0x2e985e,_0x42e4c9,_0x4b098b){const _0x4ab3f8=_0x59d572;var _0x2a681e;let _0x2bd087=(_0x2a681e=_0xf9474b[_0x4ab3f8(0x70a)])==null||(_0x2a681e=_0x2a681e[_0x4ab3f8(0x644)])==null?void 0x0:_0x2a681e[_0x2e985e];return typeof _0x2bd087==_0x4ab3f8(0x97e)?_0x49f952((0x0,_0x21fa40[_0x4ab3f8(0x7c3)])(_0x2bd087),_0x4b098b):_0x42e4c9;}function _0x5a4627(_0x3a1e10,_0x3ebca4,_0xcd65bd,_0x202922,_0x29dc34,_0x572113,_0x2e9405,_0x1dfb8d){const _0x355796=_0x59d572;if(_0x3ffded(_0x3a1e10,_0x3ebca4,_0xcd65bd,_0x29dc34,_0x572113,_0x2e9405,_0x1dfb8d))return;let _0x46cdc5=_0x202922?_0x760d79(_0x3a1e10,_0x202922,_0x29dc34,_0x572113,_0x2e9405,_0x1dfb8d):!0x1;_0x3ebca4['fill']&&(_0x46cdc5?_0x3a1e10[_0x355796(0x9ae)]():_0x3a1e10[_0x355796(0x7e4)](_0x29dc34,_0x572113,_0x2e9405)),_0x3ebca4['stroke']&&_0x3a1e10['strokeText']&&(_0x46cdc5?_0x3a1e10[_0x355796(0xa25)]():_0x3a1e10[_0x355796(0xba1)](_0x29dc34,_0x572113,_0x2e9405));}function _0x3ffded(_0x390948,_0xac616e,_0xa3b3b7,_0x1e7f3c,_0x14195f,_0x5ee9a4,_0x469798){const _0x54fce3=_0x59d572;if(!_0xac616e['fill']||!_0x534f84(_0xac616e,_0xa3b3b7)||!Array[_0x54fce3(0x8c1)](_0x1e7f3c)['some'](_0x5e42ce=>_0x5e42ce==='✓'))return!0x1;let _0x37498f=_0x14195f;for(let _0x58403a of Array[_0x54fce3(0x8c1)](_0x1e7f3c)){if(_0x58403a!=='✓'){var _0x4fc006,_0x56d3e3;_0x390948[_0x54fce3(0x7e4)](_0x58403a,_0x37498f,_0x5ee9a4),_0x37498f+=(_0x4fc006=(_0x56d3e3=_0x390948[_0x54fce3(0x5ad)])==null?void 0x0:_0x56d3e3['call'](_0x390948,_0x58403a)[_0x54fce3(0x65c)])==null?_0x469798*0.5:_0x4fc006;continue;}_0x5ca08b(_0x390948,_0x37498f,_0x5ee9a4,_0x469798),_0x37498f+=_0x4c16b3(_0x469798);}return!0x0;}function _0x5ca08b(_0x1a6dc4,_0x51de2f,_0x48d0ff,_0xfce4b9){const _0xffd380=_0x59d572;_0x1a6dc4[_0xffd380(0x8f9)](),_0x1a6dc4[_0xffd380(0x2f3)]=_0x1a6dc4[_0xffd380(0x3d0)],_0x1a6dc4['lineWidth']=Math[_0xffd380(0x542)](0x1,_0xfce4b9*0.18),_0x1a6dc4[_0xffd380(0x90a)]=_0xffd380(0x5e3),_0x1a6dc4['lineJoin']=_0xffd380(0xc95),_0x1a6dc4[_0xffd380(0x668)]=0x4,_0x1a6dc4[_0xffd380(0x995)](),_0x1a6dc4[_0xffd380(0x80a)](_0x51de2f+_0xfce4b9*0.1,_0x48d0ff-_0xfce4b9*0.1),_0x1a6dc4['lineTo'](_0x51de2f+_0xfce4b9*0.3,_0x48d0ff+_0xfce4b9*0.13),_0x1a6dc4[_0xffd380(0x5be)](_0x51de2f+_0xfce4b9*0.72,_0x48d0ff-_0xfce4b9*0.55),_0x1a6dc4['stroke'](),_0x1a6dc4['restore']();}function _0x534f84(_0x54e9f2,_0x27a0c4){const _0x3d710a=_0x59d572;let _0xfa355d=[_0x54e9f2==null?void 0x0:_0x54e9f2[_0x3d710a(0xb3b)],_0x27a0c4==null?void 0x0:_0x27a0c4[_0x3d710a(0x858)],_0x27a0c4==null?void 0x0:_0x27a0c4[_0x3d710a(0x29f)],_0x27a0c4==null?void 0x0:_0x27a0c4[_0x3d710a(0x8bb)]][_0x3d710a(0xbcd)](Boolean)[_0x3d710a(0xb26)]('\x20')['toUpperCase']();return _0xfa355d['includes'](_0x3d710a(0x24f))||_0xfa355d[_0x3d710a(0x8a8)]('ZADB');}function _0x4c16b3(_0x4be264){return _0x4be264*0.78;}function _0x49f952(_0x1efea5,_0x1b16d2){const _0x12eb79=_0x59d572;return(0x0,_0x21fa40[_0x12eb79(0xb35)])(_0x1efea5)*_0x1b16d2[_0x12eb79(0x68e)];}function _0x6bcaf7(_0x1df05e,_0x445eed){const _0x3bd17c=_0x59d572;return typeof _0x1df05e==_0x3bd17c(0x221)?_0x1df05e:Array[_0x3bd17c(0x461)](_0x1df05e)?'#'+_0x1df05e['slice'](0x0,0x3)[_0x3bd17c(0xb06)](_0x7b96da=>Math['max'](0x0,Math['min'](0xff,Math[_0x3bd17c(0x157)](_0x7b96da*0xff))))[_0x3bd17c(0xb06)](_0x1bb8a4=>_0x1bb8a4[_0x3bd17c(0x23e)](0x10)[_0x3bd17c(0x6da)](0x2,'0'))[_0x3bd17c(0xb26)](''):_0x445eed;}function _0x2dc784(_0x453263,_0x5432b0,_0x4d6ac6){const _0x16a5a3=_0x59d572;if(_0x453263[_0x16a5a3(0x2f3)]=_0x6bcaf7(_0x5432b0['color'],'#000000'),_0x453263[_0x16a5a3(0x521)]=_0x5432b0[_0x16a5a3(0x65c)]?Math[_0x16a5a3(0x542)](0.5,_0x49f952(_0x5432b0[_0x16a5a3(0x65c)],_0x4d6ac6)):0x1,_0x307246(_0x453263,_0x5432b0[_0x16a5a3(0x91d)]),_0x5432b0[_0x16a5a3(0x90a)]&&(_0x453263['lineCap']=_0x5432b0[_0x16a5a3(0x90a)]),_0x5432b0[_0x16a5a3(0x901)]&&(_0x453263['lineJoin']=_0x5432b0['lineJoin']),typeof _0x5432b0[_0x16a5a3(0x668)]==_0x16a5a3(0x97e)&&(_0x453263[_0x16a5a3(0x668)]=_0x5432b0[_0x16a5a3(0x668)]),_0x453263[_0x16a5a3(0x39d)]){var _0x15e7cc;_0x453263[_0x16a5a3(0x39d)](((_0x15e7cc=_0x5432b0['dash'])==null?[]:_0x15e7cc)[_0x16a5a3(0xb06)](_0x375530=>_0x49f952(_0x375530,_0x4d6ac6)));}typeof _0x5432b0['dashPhase']==_0x16a5a3(0x97e)&&(_0x453263[_0x16a5a3(0x4bf)]=_0x49f952(_0x5432b0[_0x16a5a3(0x2fc)],_0x4d6ac6));}function _0x307246(_0x479e85,_0x209490){const _0x311dc5=_0x59d572;typeof _0x209490=='number'&&(_0x479e85['globalAlpha']*=Math[_0x311dc5(0x542)](0x0,Math[_0x311dc5(0xb2a)](0x1,_0x209490)));}function _0x20ce98(_0x14606e,_0x37d64d,_0x541ced,_0x1ec4e0){const _0x59bd84=_0x59d572;var _0x54c9e9;let _0x9fd80d=_0x37d64d[_0x59bd84(0x83d)]?_0x14606e['assets']['fonts'][_0x37d64d[_0x59bd84(0x83d)]]:void 0x0,_0x135a1c=_0x43aef0(_0x9fd80d,_0x37d64d[_0x59bd84(0xb3b)]),_0x2c4e25=_0x9fd80d?(_0x54c9e9=_0x1ec4e0['fontFamilyResolver'])==null?void 0x0:_0x54c9e9['call'](_0x1ec4e0,{'document':_0x14606e,'font':_0x9fd80d,'run':_0x37d64d}):void 0x0,_0x4110f7=_0x2c4e25?{'bold':!!_0x37d64d[_0x59bd84(0x576)],'italic':!!_0x37d64d[_0x59bd84(0x763)]}:_0x2b404e(_0x135a1c,_0x37d64d),_0x5e3940=_0x2c4e25==null?_0x1c374d(_0x135a1c):_0x2c4e25;return[_0x4110f7['italic']?_0x59bd84(0x763):'',_0x4110f7[_0x59bd84(0x576)]?_0x59bd84(0x576):'',_0x541ced[_0x59bd84(0xc51)](0x2)+'px',_0x5e3940][_0x59bd84(0xbcd)](Boolean)[_0x59bd84(0xb26)]('\x20');}function _0x43aef0(_0xd83f58,_0x428d79){const _0x4b6d4e=_0x59d572;var _0x4fbb9d,_0x31bdc9,_0x494255;let _0x3c255e=(_0x4fbb9d=(_0x31bdc9=(_0x494255=_0xd83f58==null?void 0x0:_0xd83f58['family'])==null?_0xd83f58==null?void 0x0:_0xd83f58[_0x4b6d4e(0x29f)]:_0x494255)==null?_0x428d79:_0x31bdc9)==null?'':_0x4fbb9d,_0x4254b9=_0x3c255e['startsWith']('/')?'':_0x3c255e;return(_0x4254b9[_0x4b6d4e(0x8a8)]('+')?_0x4254b9[_0x4b6d4e(0x688)](_0x4254b9[_0x4b6d4e(0x709)]('+')+0x1):_0x4254b9)[_0x4b6d4e(0xbf8)](/[^A-Za-z0-9_-]/g,'');}function _0x2b404e(_0x90208b,_0x389a19){const _0xb3df80=_0x59d572;let _0x3916f9=_0x90208b[_0xb3df80(0xc97)]();return{'bold':!!_0x389a19[_0xb3df80(0x576)]||_0x3916f9[_0xb3df80(0x8a8)]('CMBX')||_0x3916f9[_0xb3df80(0x8a8)](_0xb3df80(0xb4b)),'italic':!!_0x389a19[_0xb3df80(0x763)]||_0x3916f9['includes']('CMTI')||_0x3916f9['includes'](_0xb3df80(0x3a6))||_0x3916f9['includes']('OBLIQUE')};}function _0x1c374d(_0x347eb4){const _0x4edd75=_0x59d572;let _0x2140b0=_0x347eb4['toUpperCase']();return!_0x347eb4||_0x2140b0[_0x4edd75(0x3dc)]('F')?_0x4edd75(0x91e):_0x2140b0[_0x4edd75(0x8a8)]('CM')||_0x2140b0['includes'](_0x4edd75(0x59b))||_0x2140b0['includes'](_0x4edd75(0xbe8))?_0x4edd75(0x3ac):_0x2140b0[_0x4edd75(0x8a8)](_0x4edd75(0x22d))||_0x2140b0[_0x4edd75(0x8a8)](_0x4edd75(0x62f))||_0x2140b0['includes'](_0x4edd75(0x216))||_0x2140b0['includes'](_0x4edd75(0x450))?_0x4edd75(0xc26):'\x22'+_0x347eb4+_0x4edd75(0x86f);}function _0x4c62cd(_0x20c676,_0x13cd0b,_0x4bc067,_0x9a520d,_0x1c0f1e=0x64,_0x17034e){const _0x2f6aa6=_0x59d572;var _0xc74c5d,_0x2782fc,_0xc3fcd3;let _0x407606=_0x534f84(_0x9a520d,_0x17034e)?_0x53d0b3(_0x13cd0b,_0x4bc067,_0x20c676):(_0xc74c5d=_0x20c676['measureText'])==null?void 0x0:_0xc74c5d[_0x2f6aa6(0x3f4)](_0x20c676,_0x13cd0b)['width'],_0x2566bc=typeof _0x407606==_0x2f6aa6(0x97e)&&Number[_0x2f6aa6(0x771)](_0x407606)?_0x407606:_0x13cd0b[_0x2f6aa6(0xba6)]*_0x4bc067*0.52,_0x5e29db=_0x1c0f1e/0x64,_0x4d41b9=((_0x2782fc=_0x9a520d==null?void 0x0:_0x9a520d[_0x2f6aa6(0xa35)])==null?0x0:_0x2782fc)*0x4/0x3,_0x2c8c01=((_0xc3fcd3=_0x9a520d==null?void 0x0:_0x9a520d[_0x2f6aa6(0x60d)])==null?0x0:_0xc3fcd3)*0x4/0x3;return(_0x2566bc+(Math['max'](0x0,_0x13cd0b['length']-0x1)*_0x4d41b9+_0x4ac637(_0x13cd0b)*_0x2c8c01))*_0x5e29db;}function _0x53d0b3(_0x5521b6,_0x2e20ef,_0x21c34a){const _0x26e7ee=_0x59d572;return Array[_0x26e7ee(0x8c1)](_0x5521b6)[_0x26e7ee(0xc71)]((_0x47ec79,_0x11aafa)=>{const _0x29a99c=_0x26e7ee;var _0x439b70,_0xf43ad5;return _0x11aafa==='✓'?_0x47ec79+_0x4c16b3(_0x2e20ef):_0x47ec79+((_0x439b70=(_0xf43ad5=_0x21c34a[_0x29a99c(0x5ad)])==null?void 0x0:_0xf43ad5[_0x29a99c(0x3f4)](_0x21c34a,_0x11aafa)['width'])==null?_0x2e20ef*0.5:_0x439b70);},0x0);}function _0x4ac637(_0x2e065f){const _0x25d961=_0x59d572;return Array[_0x25d961(0x8c1)](_0x2e065f)[_0x25d961(0xbcd)](_0x4c6f47=>_0x4c6f47==='\x20')['length'];}function _0x1245e1(_0x16819e,_0x127f91,_0x40611a={},_0x4618a6){const _0x3fee2d=_0x59d572;var _0x1e424e,_0x8aa992,_0x5dbb5d;let _0x523a39={'fillAlpha':(_0x1e424e=_0x4618a6==null?void 0x0:_0x4618a6['fillAlpha'])==null?0x1:_0x1e424e,'opacityMultiplier':(_0x8aa992=_0x4618a6==null?void 0x0:_0x4618a6[_0x3fee2d(0x900)])==null?0x1:_0x8aa992,'strokeAlpha':(_0x5dbb5d=_0x4618a6==null?void 0x0:_0x4618a6[_0x3fee2d(0x8d5)])==null?0x1:_0x5dbb5d,'softMask':_0x4618a6==null?void 0x0:_0x4618a6[_0x3fee2d(0x197)]},_0x19b8bb=[],_0x2c26f6,_0x546995=()=>{const _0x416d33=_0x3fee2d;!_0x2c26f6||!_0x16819e[_0x416d33(0x701)]||(_0x16819e[_0x416d33(0x701)](..._0x2c26f6),_0x2c26f6=void 0x0);};return{'save':()=>{const _0x4e50e8=_0x3fee2d;_0x546995(),_0x19b8bb[_0x4e50e8(0x381)]({..._0x523a39}),_0x16819e[_0x4e50e8(0x8f9)]();},'restore':()=>{const _0x4090bc=_0x3fee2d;_0x546995();let _0x2b2d7a=_0x19b8bb[_0x4090bc(0x8f2)]();_0x2b2d7a&&(_0x523a39[_0x4090bc(0x8cd)]=_0x2b2d7a['fillAlpha'],_0x523a39[_0x4090bc(0x900)]=_0x2b2d7a[_0x4090bc(0x900)],_0x523a39[_0x4090bc(0x8d5)]=_0x2b2d7a[_0x4090bc(0x8d5)],_0x523a39[_0x4090bc(0x197)]=_0x2b2d7a['softMask']),_0x16819e['restore']();},'transform':(_0x3b5349,_0x29f55d)=>{let _0x53e980=_0x1687a5(_0x3b5349,_0x29f55d['page'],_0x127f91);_0x2c26f6=_0x2c26f6?_0x92cb43(_0x2c26f6,_0x53e980):_0x53e980;},'setGraphicsState':_0xa8678b=>{_0x546995(),_0x336c55(_0xa8678b,_0x16819e,_0x523a39);},'clip':(_0x16e872,_0x1b5aaa)=>{_0x546995(),_0x177375(_0x16e872,_0x1b5aaa,_0x16819e,_0x127f91);},'drawPath':_0x47c1bc=>{_0x546995(),_0x8a2a34(_0x47c1bc,_0x16819e,_0x127f91,_0x40611a,_0x523a39);},'drawText':_0x37dcfd=>{_0x546995(),_0x57f5d0({'textContext':_0x37dcfd,'context':_0x16819e,'viewport':_0x127f91,'options':_0x40611a});},'drawImage':_0x5b9dcb=>{_0x546995(),_0x539fa7(_0x5b9dcb,_0x16819e,_0x127f91,_0x40611a);},'drawFormXObject':_0x12fd9b=>{_0x546995(),_0x55f20e(_0x12fd9b,_0x16819e,_0x127f91,_0x40611a,_0x523a39);},'drawShading':_0x94bd96=>{_0x546995(),_0x1c35a4(_0x94bd96,_0x16819e,_0x127f91);}};}function _0x1687a5(_0x2c8175,_0x475060,_0x5e0e5c){const _0xadf713=_0x59d572;let [_0x10804a,_0x14cca0,_0x1e518f,_0x4c7aa1,_0x36f9ae,_0x216f0e]=_0x2c8175,[_0x483785,,,_0x1a44b4]=_0x475060[_0xadf713(0x336)][_0xadf713(0xca2)],_0x2cf426=_0x10804a*_0x483785+_0x1e518f*_0x1a44b4+_0x36f9ae-_0x483785,_0x26189d=_0x1a44b4-_0x14cca0*_0x483785-_0x4c7aa1*_0x1a44b4-_0x216f0e;return[_0x10804a,-_0x14cca0,-_0x1e518f,_0x4c7aa1,_0x3b6363((0x0,_0x21fa40[_0xadf713(0x7c3)])(_0x2cf426),_0x5e0e5c),_0x3b6363((0x0,_0x21fa40[_0xadf713(0x7c3)])(_0x26189d),_0x5e0e5c)];}function _0x8a2a34(_0x4d2fbb,_0x4a0ff0,_0x5aae81,_0x3cc24a,_0x2dee69){const _0x22e6a6=_0x59d572;let {commands:_0x5c6810,paint:_0x4ffebb}=_0x4d2fbb;_0x5c6810[_0x22e6a6(0xba6)]!==0x0&&(_0x4ffebb[_0x22e6a6(0x9ae)]&&(_0x1dd6ca(_0x4d2fbb,_0x4a0ff0,_0x5aae81,_0x3cc24a,_0x2dee69)||_0x65a1a7(_0x4d2fbb,_0x4a0ff0,_0x5aae81,_0x3cc24a,_0x2dee69[_0x22e6a6(0x8cd)]*_0x2dee69[_0x22e6a6(0x900)])),_0x4ffebb[_0x22e6a6(0xa25)]&&_0x41f1b5(_0x4d2fbb,_0x4a0ff0,_0x5aae81,_0x2dee69[_0x22e6a6(0x8d5)]*_0x2dee69[_0x22e6a6(0x900)]));}function _0x65a1a7(_0x5a55e7,_0x4522e2,_0x3164c3,_0x338b5e,_0x1c981a){const _0x5868bc=_0x59d572;let {commands:_0x3bb621,paint:_0xf25d23,runtime:_0x342b10}=_0x5a55e7;_0xf25d23[_0x5868bc(0x9ae)]&&(_0x4522e2[_0x5868bc(0x8f9)](),_0x1c782d(_0x3bb621,_0x4522e2,_0x3164c3),_0x4522e2[_0x5868bc(0x8f9)](),_0x18aa6d(_0x4522e2,_0x1c981a,_0xf25d23['fill'][_0x5868bc(0x91d)]),_0x361eb8(_0x5a55e7,_0x4522e2,_0x3164c3,_0x338b5e)||(_0x4522e2[_0x5868bc(0x3d0)]=_0x5bc3f5(_0xf25d23[_0x5868bc(0x9ae)],_0x342b10[_0x5868bc(0xb09)]),_0x4522e2[_0x5868bc(0x9ae)]()),_0x4522e2['restore'](),_0x4522e2[_0x5868bc(0x91c)]());}function _0x41f1b5(_0x2d696f,_0x1f978e,_0x1cfe80,_0x47494c){const _0x528fcc=_0x59d572;let {commands:_0x4b5f45,paint:_0x5d2c0f}=_0x2d696f;_0x5d2c0f[_0x528fcc(0xa25)]&&(_0x1f978e[_0x528fcc(0x8f9)](),_0x1c782d(_0x4b5f45,_0x1f978e,_0x1cfe80),_0x1f978e[_0x528fcc(0x8f9)](),_0x18aa6d(_0x1f978e,_0x47494c,_0x5d2c0f[_0x528fcc(0xa25)][_0x528fcc(0x91d)]),_0x4f5f36(_0x1f978e,_0x5d2c0f['stroke'],_0x1cfe80),_0x1f978e[_0x528fcc(0xa25)](),_0x1f978e[_0x528fcc(0x91c)](),_0x1f978e['restore']());}function _0x1dd6ca(_0x486b55,_0x49a3b3,_0x30bf2c,_0x1b11c2,_0x378e43){const _0x31d544=_0x59d572;var _0x55a9f8;let _0x53db7d=_0x378e43[_0x31d544(0x197)];if(!_0x486b55[_0x31d544(0x747)][_0x31d544(0x9ae)]||!(_0x53db7d!=null&&_0x53db7d[_0x31d544(0x5b8)]))return!0x1;let _0x49db32=_0x5f485a(_0x486b55[_0x31d544(0x5a5)]['document'],_0x53db7d);if(!_0x49db32)return!0x1;let _0x17b2a2=_0x78a063(_0x1b11c2),_0x1aa5be=_0x304455(_0x49a3b3['globalCompositeOperation']);return(_0x55a9f8=_0x17b2a2==null?void 0x0:_0x17b2a2[_0x31d544(0x565)]({'context':_0x49a3b3,'viewport':_0x30bf2c,'page':_0x486b55[_0x31d544(0x5a5)][_0x31d544(0x175)],'softMask':_0x53db7d,'blendMode':_0x1aa5be,'renderSource':_0x2a80b3=>{const _0x3a393d=_0x31d544;_0x65a1a7(_0x486b55,_0x2a80b3,_0x30bf2c,_0x1b11c2,_0x378e43[_0x3a393d(0x8cd)]);},'renderMask':_0x3a944e=>{const _0x540c4f=_0x31d544;_0x45d0e3(_0x49db32,_0x486b55[_0x540c4f(0x5a5)],_0x3a944e,_0x30bf2c,_0x1b11c2);}}))!=null&&_0x55a9f8;}function _0x361eb8(_0x487c9a,_0x23940c,_0x4c6272,_0x34d5c8){return _0x59d337(_0x487c9a,_0x23940c,_0x4c6272)||_0x2e2c48(_0x487c9a,_0x23940c,_0x4c6272,_0x34d5c8);}function _0x59d337(_0x78b5c9,_0x4d9e60,_0x5b4ab9){const _0x397fef=_0x59d572;var _0x534ce3;if(!_0x4d9e60[_0x397fef(0x837)])return!0x1;let _0xdf994d=(_0x534ce3=_0x78b5c9['paint'][_0x397fef(0x9ae)])==null?void 0x0:_0x534ce3[_0x397fef(0x67b)],_0x3f414b=_0xdf994d?_0x78b5c9[_0x397fef(0x5a5)][_0x397fef(0xb09)]['assets'][_0x397fef(0x43c)][_0xdf994d]:void 0x0,_0x574f3c=_0x3f414b!=null&&_0x3f414b[_0x397fef(0x2e6)]?_0x78b5c9[_0x397fef(0x5a5)][_0x397fef(0xb09)][_0x397fef(0xc33)]['shadings'][_0x3f414b[_0x397fef(0x2e6)]]:void 0x0;return _0x574f3c?(_0x4d9e60[_0x397fef(0x8f9)](),_0x4d9e60[_0x397fef(0x837)](_0x78b5c9['paint'][_0x397fef(0x9f1)]===_0x21fa40['PdfFillRule'][_0x397fef(0x7be)]?_0x397fef(0x128):_0x397fef(0x9f3)),_0x5c1ac2({'asset':_0x574f3c,'matrix':_0x3f414b==null?void 0x0:_0x3f414b[_0x397fef(0x86d)],'page':_0x78b5c9[_0x397fef(0x5a5)][_0x397fef(0x175)],'context':_0x4d9e60,'viewport':_0x5b4ab9}),_0x4d9e60[_0x397fef(0x91c)](),!0x0):!0x1;}function _0x2e2c48(_0x355603,_0x53605c,_0xd6535a,_0x59d544){const _0x58404f=_0x59d572;var _0x4f03df,_0x68b3fa,_0x344660;if(!_0x53605c[_0x58404f(0x837)])return!0x1;let _0x5af887=(_0x4f03df=_0x355603[_0x58404f(0x747)][_0x58404f(0x9ae)])==null?void 0x0:_0x4f03df[_0x58404f(0x67b)],_0x5a955a=_0x5af887?_0x355603[_0x58404f(0x5a5)]['document'][_0x58404f(0xc33)]['patterns'][_0x5af887]:void 0x0,_0x233661=_0x2ac481(_0x5a955a);if(!_0x5a955a||!_0x233661)return!0x1;let [_0x5a9da9,_0x1cc393,_0x536b0c,_0x21692d]=_0x233661['bbox'],{stepX:_0x410283,stepY:_0x17b113}=_0x233661,_0x5a0d0e=_0x355603[_0x58404f(0x5a5)][_0x58404f(0x175)]['pdfBoxes'][_0x58404f(0xca2)],_0xc544c=_0x214513(_0x5a0d0e,_0x5a955a[_0x58404f(0x86d)]),_0x5bdbee=Math['floor']((_0xc544c[0x0]-Math[_0x58404f(0x542)](_0x5a9da9,_0x536b0c))/_0x410283)-0x1,_0x50f4ca=Math[_0x58404f(0x780)]((_0xc544c[0x2]-Math[_0x58404f(0xb2a)](_0x5a9da9,_0x536b0c))/_0x410283)+0x1,_0x2da5ed=Math[_0x58404f(0x559)]((_0xc544c[0x1]-Math[_0x58404f(0x542)](_0x1cc393,_0x21692d))/_0x17b113)-0x1,_0x1511f6=Math['ceil']((_0xc544c[0x3]-Math[_0x58404f(0xb2a)](_0x1cc393,_0x21692d))/_0x17b113)+0x1;if(_0x53605c[_0x58404f(0x8f9)](),_0x53605c[_0x58404f(0x837)](_0x355603[_0x58404f(0x747)]['fillRule']===_0x21fa40[_0x58404f(0xa9a)][_0x58404f(0x7be)]?'evenodd':_0x58404f(0x9f3)),_0x26ce92(_0x355603,_0x5a955a,_0x233661,_0x5bdbee,_0x50f4ca,_0x2da5ed,_0x1511f6,_0x53605c,_0xd6535a,_0x59d544)||_0x4efc42(_0x355603,_0x5a955a,_0x233661,_0x5bdbee,_0x50f4ca,_0x2da5ed,_0x1511f6,_0x53605c,_0xd6535a,_0x59d544))return _0x53605c[_0x58404f(0x91c)](),!0x0;if(!((_0x68b3fa=_0x5a955a[_0x58404f(0xa29)])!=null&&_0x68b3fa[_0x58404f(0x6aa)]))return _0x53605c[_0x58404f(0x91c)](),!0x1;_0x53605c[_0x58404f(0x3d0)]=_0x37c7c1(_0x5a955a[_0x58404f(0xa29)]['color'],_0x37c7c1((_0x344660=_0x355603[_0x58404f(0x747)]['fill'])==null?void 0x0:_0x344660[_0x58404f(0x6aa)],_0x58404f(0x7cf)));let _0x5d9355=0x0;for(let _0x6d34b8=_0x2da5ed;_0x6d34b8<=_0x1511f6;_0x6d34b8+=0x1)for(let _0x540e7f=_0x5bdbee;_0x540e7f<=_0x50f4ca;_0x540e7f+=0x1){if(_0x5d9355>=0x1000)return _0x53605c[_0x58404f(0x91c)](),!0x0;_0x2225a9(_0x233661['bbox'],_0x540e7f*_0x410283,_0x6d34b8*_0x17b113,_0x5a955a['matrix'],_0x355603[_0x58404f(0x5a5)][_0x58404f(0x175)],_0x53605c,_0xd6535a),_0x5d9355+=0x1;}return _0x53605c['restore'](),!0x0;}function _0x214513(_0xe5b8c1,_0x45c2d2){var _0x48b14b;return _0x45c2d2?(_0x48b14b=_0x356796(_0xe5b8c1,_0x45c2d2))==null?_0xe5b8c1:_0x48b14b:_0xe5b8c1;}function _0x26ce92(_0x45f2a0,_0x1891e8,_0x4e93f4,_0x572487,_0xa2e404,_0x5bed8a,_0x1ba23b,_0x5a884d,_0x53cdec,_0x7baf37){const _0xb0ac7b=_0x59d572;if(!_0x5a884d[_0xb0ac7b(0x198)]||!_0x7baf37[_0xb0ac7b(0x8eb)])return!0x1;let _0x262aac=_0x48d5cd(_0x45f2a0['runtime']['document'],_0x1891e8);if(!_0x262aac)return!0x1;let _0xbaea58=_0x45f2a0[_0xb0ac7b(0x5a5)]['document']['assets']['images'][_0x262aac['assetId']];if(!_0xbaea58)return!0x1;let _0x49a8c4=_0x478845(_0x7baf37[_0xb0ac7b(0x8eb)]({'document':_0x45f2a0[_0xb0ac7b(0x5a5)]['document'],'asset':_0xbaea58,'op':_0x262aac,'viewport':_0x53cdec}));if(!_0x49a8c4)return!0x1;let _0x43bca1=0x0;for(let _0x2ccfae=_0x5bed8a;_0x2ccfae<=_0x1ba23b;_0x2ccfae+=0x1)for(let _0xfba571=_0x572487;_0xfba571<=_0xa2e404;_0xfba571+=0x1){if(_0x43bca1>=0x1000)return!0x0;_0xb51749(_0x49a8c4,_0x262aac,_0xfba571*_0x4e93f4[_0xb0ac7b(0x708)],_0x2ccfae*_0x4e93f4[_0xb0ac7b(0x13b)],_0x1891e8[_0xb0ac7b(0x86d)],_0x45f2a0['runtime']['page'],_0x5a884d,_0x53cdec),_0x43bca1+=0x1;}return!0x0;}function _0x48d5cd(_0x9f7c85,_0x510b8b){const _0x5a72cf=_0x59d572;var _0x355afa;let _0x1b37c1=_0x510b8b['displayListId']?_0x9f7c85[_0x5a72cf(0x791)][_0x510b8b['displayListId']]:void 0x0;if(!_0x1b37c1)return;let _0x4cb54d=_0x1b37c1[_0x5a72cf(0xa6d)][_0x5a72cf(0xbcd)](_0x3a1857=>_0x3a1857[_0x5a72cf(0x2c1)]!==_0x21fa40['PdfDisplayOpType'][_0x5a72cf(0xb88)]&&_0x3a1857[_0x5a72cf(0x2c1)]!==_0x21fa40[_0x5a72cf(0xa18)][_0x5a72cf(0x73e)]&&_0x3a1857[_0x5a72cf(0x2c1)]!==_0x21fa40[_0x5a72cf(0xa18)][_0x5a72cf(0x48d)]&&_0x3a1857[_0x5a72cf(0x2c1)]!==_0x21fa40[_0x5a72cf(0xa18)][_0x5a72cf(0x530)]&&_0x3a1857[_0x5a72cf(0x2c1)]!==_0x21fa40[_0x5a72cf(0xa18)][_0x5a72cf(0xb30)]);return _0x4cb54d[_0x5a72cf(0xba6)]===0x1&&((_0x355afa=_0x4cb54d[0x0])==null?void 0x0:_0x355afa[_0x5a72cf(0x2c1)])===_0x21fa40[_0x5a72cf(0xa18)][_0x5a72cf(0x93b)]?_0x4cb54d[0x0]:void 0x0;}function _0xb51749(_0x2f6f75,_0x2f6cab,_0x5bd1e7,_0x2ac49c,_0x40e117,_0x3443a4,_0x2868d8,_0x2f0caf){const _0x208047=_0x59d572;var _0x24b068;let _0x4da556=_0x2f6cab[_0x208047(0x701)],_0x1e108e=(_0x4da556?[_0x202c6e(0x0,0x0,_0x4da556),_0x202c6e(0x1,0x0,_0x4da556),_0x202c6e(0x0,0x1,_0x4da556),_0x202c6e(0x1,0x1,_0x4da556)]:[[0x0,0x0],[0x1,0x0],[0x0,0x1],[0x1,0x1]])[_0x208047(0xb06)](([_0xfba83b,_0x336bf2])=>{let [_0x2b6f2b,_0x19eccd]=_0x36ba0e(_0xfba83b+_0x5bd1e7,_0x336bf2+_0x2ac49c,_0x40e117);return _0x152bce(_0x2b6f2b,_0x19eccd,_0x3443a4,_0x2f0caf);}),_0x5746c4=_0x1e108e[_0x208047(0xb06)](_0x4321da=>_0x4321da[0x0]),_0x10cae2=_0x1e108e[_0x208047(0xb06)](_0x37945c=>_0x37945c[0x1]),_0x522af1=Math[_0x208047(0xb2a)](..._0x5746c4),_0x2f10f1=Math[_0x208047(0x542)](..._0x5746c4),_0x27d7d9=Math[_0x208047(0xb2a)](..._0x10cae2),_0x551555=Math[_0x208047(0x542)](..._0x10cae2),_0x5424d1=_0x2f10f1-_0x522af1,_0x25e0a7=_0x551555-_0x27d7d9;_0x5424d1<=0x0||_0x25e0a7<=0x0||(_0x24b068=_0x2868d8[_0x208047(0x198)])==null||_0x24b068[_0x208047(0x3f4)](_0x2868d8,_0x2f6f75,_0x522af1,_0x27d7d9,_0x5424d1,_0x25e0a7);}function _0x2ac481(_0x92b754){const _0x5d56da=_0x59d572;var _0x4b26c5,_0x337ed5;if(!_0x92b754||_0x92b754['patternType']!=='1'||!_0x92b754['bbox'])return;let [_0x30b8a2,_0x5b56a4,_0x6df473,_0x12ee41]=_0x92b754[_0x5d56da(0xa01)],_0x1b9001=Math[_0x5d56da(0x7f7)](_0x6df473-_0x30b8a2),_0x2d2dee=Math[_0x5d56da(0x7f7)](_0x12ee41-_0x5b56a4),_0x583ef6=Math[_0x5d56da(0x7f7)]((_0x4b26c5=_0x92b754[_0x5d56da(0x7a1)])==null?_0x1b9001:_0x4b26c5),_0x5921aa=Math[_0x5d56da(0x7f7)]((_0x337ed5=_0x92b754['yStep'])==null?_0x2d2dee:_0x337ed5);if(!(_0x1b9001<=0x0||_0x2d2dee<=0x0||_0x583ef6<=0x0||_0x5921aa<=0x0))return{'bbox':_0x92b754[_0x5d56da(0xa01)],'bboxWidth':_0x1b9001,'bboxHeight':_0x2d2dee,'stepX':_0x583ef6,'stepY':_0x5921aa};}function _0x4efc42(_0x2fecee,_0x299e89,_0x3f8f65,_0x5cbcba,_0x1abb46,_0x5aa58b,_0x513b4d,_0x56c9d4,_0x1fdd00,_0x46705a){const _0x1ee20a=_0x59d572;let _0xb76633=_0x299e89[_0x1ee20a(0x1b7)]?_0x2fecee[_0x1ee20a(0x5a5)][_0x1ee20a(0xb09)][_0x1ee20a(0x791)][_0x299e89[_0x1ee20a(0x1b7)]]:void 0x0;if(!_0xb76633||!_0x56c9d4['transform'])return!0x1;let _0x486621=_0x2c4427(_0x299e89,_0x3f8f65),_0x224a1f=0x0;for(let _0x2b4e20=_0x5aa58b;_0x2b4e20<=_0x513b4d;_0x2b4e20+=0x1)for(let _0x4e469e=_0x5cbcba;_0x4e469e<=_0x1abb46;_0x4e469e+=0x1){if(_0x224a1f>=0x1000)return!0x0;_0x56c9d4[_0x1ee20a(0x8f9)](),_0x41d171(_0x56c9d4,_0x3f8f65[_0x1ee20a(0xa01)],_0x4e469e*_0x3f8f65[_0x1ee20a(0x708)],_0x2b4e20*_0x3f8f65[_0x1ee20a(0x13b)],_0x299e89[_0x1ee20a(0x86d)],_0x2fecee[_0x1ee20a(0x5a5)][_0x1ee20a(0x175)],_0x1fdd00);let _0x11750e=_0x1245e1(_0x56c9d4,_0x1fdd00,_0x46705a),_0x3712f6={..._0x2fecee['runtime'],'page':_0x486621,'backend':_0x11750e};for(let _0x1fdd47 of _0xb76633[_0x1ee20a(0xa6d)]){var _0xf8e225;(0x0,_0x3e1c10['renderPdfDisplayOperation'])(_0x240e00(_0x1fdd47,_0x299e89,(_0xf8e225=_0x2fecee[_0x1ee20a(0x747)][_0x1ee20a(0x9ae)])==null?void 0x0:_0xf8e225['color']),_0x3712f6);}_0x56c9d4['restore'](),_0x224a1f+=0x1;}return!0x0;}function _0x240e00(_0x5d6149,_0x4c6321,_0x52b1f3){const _0x4700af=_0x59d572;return _0x4c6321[_0x4700af(0xc70)]!==0x2||!_0x52b1f3||_0x5d6149[_0x4700af(0x2c1)]!=='path'?_0x5d6149:{..._0x5d6149,'paint':{..._0x5d6149['paint'],'fill':_0x5d6149['paint']['fill']?{..._0x5d6149[_0x4700af(0x747)]['fill'],'color':_0x52b1f3}:_0x5d6149[_0x4700af(0x747)][_0x4700af(0x9ae)],'stroke':_0x5d6149[_0x4700af(0x747)]['stroke']?{..._0x5d6149[_0x4700af(0x747)][_0x4700af(0xa25)],'color':_0x52b1f3}:_0x5d6149[_0x4700af(0x747)]['stroke']}};}function _0x2c4427(_0x5892a1,_0x3f3ef1){const _0x593ee6=_0x59d572;return{'id':_0x5892a1['id']+_0x593ee6(0x14e),'index':-0x1,'size':{'width':(0x0,_0x21fa40['ptToEmu'])(_0x3f3ef1[_0x593ee6(0x749)]),'height':(0x0,_0x21fa40[_0x593ee6(0x7c3)])(_0x3f3ef1[_0x593ee6(0x284)])},'rotation':0x0,'pdfBoxes':{'mediaBox':_0x3f3ef1['bbox'],'cropBox':_0x3f3ef1[_0x593ee6(0xa01)]},'layers':[]};}function _0x41d171(_0x25d982,_0x3b77c9,_0x2efd40,_0x318d62,_0x1b08bf,_0x40f4f9,_0x31d655){const _0x9af4=_0x59d572;if(!_0x25d982[_0x9af4(0x701)])return;let _0xce507b=_0x3b6363((0x0,_0x21fa40[_0x9af4(0x7c3)])(0x1),_0x31d655),_0x60fe29=_0x43393c(0x0,0x0,_0x3b77c9,_0x2efd40,_0x318d62,_0x1b08bf,_0x40f4f9,_0x31d655),_0x40ac7b=_0x43393c(0x1,0x0,_0x3b77c9,_0x2efd40,_0x318d62,_0x1b08bf,_0x40f4f9,_0x31d655),_0x51b0e2=_0x43393c(0x0,0x1,_0x3b77c9,_0x2efd40,_0x318d62,_0x1b08bf,_0x40f4f9,_0x31d655);_0x25d982[_0x9af4(0x701)]((_0x40ac7b[0x0]-_0x60fe29[0x0])/_0xce507b,(_0x40ac7b[0x1]-_0x60fe29[0x1])/_0xce507b,(_0x51b0e2[0x0]-_0x60fe29[0x0])/_0xce507b,(_0x51b0e2[0x1]-_0x60fe29[0x1])/_0xce507b,_0x60fe29[0x0],_0x60fe29[0x1]);}function _0x43393c(_0x55d480,_0x384966,_0x23f183,_0x39a839,_0x563947,_0xfbcc82,_0x31c953,_0x406f45){let _0x2f6d65=_0x23f183[0x0]+_0x39a839+_0x55d480,_0x4be4ff=_0x23f183[0x3]+_0x563947-_0x384966,[_0x1a8a50,_0x40e568]=_0xfbcc82?_0x202c6e(_0x2f6d65,_0x4be4ff,_0xfbcc82):[_0x2f6d65,_0x4be4ff];return _0x152bce(_0x1a8a50,_0x40e568,_0x31c953,_0x406f45);}function _0x2225a9(_0x274962,_0x3ce974,_0x173e81,_0x34d78b,_0x55d8c1,_0x56d0b0,_0x486b94){const _0x352161=_0x59d572;let _0x371659=[_0x36ba0e(_0x274962[0x0]+_0x3ce974,_0x274962[0x1]+_0x173e81,_0x34d78b),_0x36ba0e(_0x274962[0x2]+_0x3ce974,_0x274962[0x1]+_0x173e81,_0x34d78b),_0x36ba0e(_0x274962[0x2]+_0x3ce974,_0x274962[0x3]+_0x173e81,_0x34d78b),_0x36ba0e(_0x274962[0x0]+_0x3ce974,_0x274962[0x3]+_0x173e81,_0x34d78b)],_0x4242b5=_0x371659['map'](_0x449e03=>_0x449e03[0x0]),_0x45d45f=_0x371659[_0x352161(0xb06)](_0x4e80e2=>_0x4e80e2[0x1]),_0xba9504=Math[_0x352161(0xb2a)](..._0x4242b5),_0x241dd5=Math[_0x352161(0x542)](..._0x4242b5),_0x22b854=Math[_0x352161(0xb2a)](..._0x45d45f),[_0x55b884,_0x21b47b]=_0x152bce(_0xba9504,Math[_0x352161(0x542)](..._0x45d45f),_0x55d8c1,_0x486b94),[_0x164dde,_0x52338e]=_0x152bce(_0x241dd5,_0x22b854,_0x55d8c1,_0x486b94),_0x5695fb=_0x164dde-_0x55b884,_0x46617f=_0x52338e-_0x21b47b;_0x5695fb<=0x0||_0x46617f<=0x0||_0x56d0b0['fillRect'](_0x55b884,_0x21b47b,_0x5695fb,_0x46617f);}function _0x36ba0e(_0x447240,_0x32092e,_0x733a00){return _0x733a00?_0x202c6e(_0x447240,_0x32092e,_0x733a00):[_0x447240,_0x32092e];}function _0x356796(_0x3d95fd,_0x3ef791){const _0x484780=_0x59d572;let _0x279d32=_0x2cb6b3(_0x3ef791);if(!_0x279d32)return;let _0x3401a8=[_0x202c6e(_0x3d95fd[0x0],_0x3d95fd[0x1],_0x279d32),_0x202c6e(_0x3d95fd[0x2],_0x3d95fd[0x1],_0x279d32),_0x202c6e(_0x3d95fd[0x2],_0x3d95fd[0x3],_0x279d32),_0x202c6e(_0x3d95fd[0x0],_0x3d95fd[0x3],_0x279d32)],_0x56d681=_0x3401a8[_0x484780(0xb06)](_0x3db7a4=>_0x3db7a4[0x0]),_0x1b33f2=_0x3401a8[_0x484780(0xb06)](_0x3eee23=>_0x3eee23[0x1]);return[Math[_0x484780(0xb2a)](..._0x56d681),Math[_0x484780(0xb2a)](..._0x1b33f2),Math[_0x484780(0x542)](..._0x56d681),Math[_0x484780(0x542)](..._0x1b33f2)];}function _0x2cb6b3(_0x1f79ce){let [_0x3c9066,_0x29d4d9,_0x1a014b,_0x202ac7,_0x58dabe,_0x408233]=_0x1f79ce,_0x5de2b3=_0x3c9066*_0x202ac7-_0x29d4d9*_0x1a014b;if(!(Math['abs'](_0x5de2b3)<1e-12))return[_0x202ac7/_0x5de2b3,-_0x29d4d9/_0x5de2b3,-_0x1a014b/_0x5de2b3,_0x3c9066/_0x5de2b3,(_0x1a014b*_0x408233-_0x202ac7*_0x58dabe)/_0x5de2b3,(_0x29d4d9*_0x58dabe-_0x3c9066*_0x408233)/_0x5de2b3];}function _0x5bc3f5(_0x578d3f,_0x210175){const _0x52fa79=_0x59d572;if(_0x578d3f['patternId']){var _0xf5d024,_0x558e17;let _0x186e0f=_0x210175[_0x52fa79(0xc33)][_0x52fa79(0x43c)][_0x578d3f[_0x52fa79(0x67b)]];return _0x37c7c1((_0xf5d024=_0x186e0f==null||(_0x558e17=_0x186e0f[_0x52fa79(0xa29)])==null?void 0x0:_0x558e17[_0x52fa79(0x6aa)])==null?_0x578d3f['color']:_0xf5d024,_0x52fa79(0x7cf));}return _0x37c7c1(_0x578d3f[_0x52fa79(0x6aa)],_0x52fa79(0x7cf));}function _0x177375(_0x5ac0ab,_0x229c9a,_0x4ddc8f,_0x246aea){const _0x17a0d8=_0x59d572;!_0x4ddc8f[_0x17a0d8(0x837)]||_0x5ac0ab[_0x17a0d8(0xba6)]===0x0||(_0x1c782d(_0x5ac0ab,_0x4ddc8f,_0x246aea),_0x4ddc8f[_0x17a0d8(0x837)](_0x229c9a===_0x21fa40[_0x17a0d8(0xa9a)][_0x17a0d8(0x7be)]?_0x17a0d8(0x128):'nonzero'));}function _0x1c782d(_0xf99fc6,_0x304397,_0x2c746f){const _0x24af33=_0x59d572;_0x304397[_0x24af33(0x995)]();for(let _0x36aa69 of _0xf99fc6)switch(_0x36aa69[_0x24af33(0x2c1)]){case _0x21fa40['PdfPathCommandType'][_0x24af33(0xaac)]:{let [_0xf28a4e,_0x30673a]=_0x56ae5c(_0x36aa69[_0x24af33(0x7fc)],_0x2c746f);_0x304397[_0x24af33(0x80a)](_0xf28a4e,_0x30673a);break;}case _0x21fa40[_0x24af33(0x665)]['LINE_TO']:{let [_0x38ef4f,_0x575dd6]=_0x56ae5c(_0x36aa69[_0x24af33(0x7fc)],_0x2c746f);_0x304397[_0x24af33(0x5be)](_0x38ef4f,_0x575dd6);break;}case _0x21fa40['PdfPathCommandType']['CUBIC_TO']:{let {c1:_0x57392c,c2:_0x2b1512}=_0x24b421(_0x36aa69);if(!_0x57392c||!_0x2b1512)break;let [_0x1c41ec,_0x106787]=_0x56ae5c(_0x57392c,_0x2c746f),[_0x373b02,_0x2d8667]=_0x56ae5c(_0x2b1512,_0x2c746f),[_0x562635,_0x5b43d9]=_0x56ae5c(_0x36aa69[_0x24af33(0x7fc)],_0x2c746f);_0x304397[_0x24af33(0x942)](_0x1c41ec,_0x106787,_0x373b02,_0x2d8667,_0x562635,_0x5b43d9);break;}case _0x21fa40[_0x24af33(0x665)][_0x24af33(0xa8d)]:{let [_0x3d5a35,_0x581209,_0x58e268,_0x2502be]=_0x1fe4e8(_0x36aa69[_0x24af33(0x998)],_0x2c746f);_0x304397[_0x24af33(0x998)](_0x3d5a35,_0x581209,_0x58e268,_0x2502be);break;}case _0x21fa40[_0x24af33(0x665)]['CLOSE']:_0x304397[_0x24af33(0x427)]();break;default:break;}}function _0x24b421(_0x3fe795){const _0xc9a48d=_0x59d572;var _0x2f491b,_0x4966ac;let _0x450a42=_0x3fe795;return{'c1':(_0x2f491b=_0x450a42['c1'])==null?_0x450a42['control1']:_0x2f491b,'c2':(_0x4966ac=_0x450a42['c2'])==null?_0x450a42[_0xc9a48d(0x89e)]:_0x4966ac};}function _0x539fa7(_0x1664c8,_0x96d60a,_0x593f6d,_0x4a2d50){const _0x40a526=_0x59d572;if(!_0x96d60a[_0x40a526(0x198)]||!_0x4a2d50[_0x40a526(0x8eb)])return;let _0x2bff18=_0x478845(_0x4a2d50[_0x40a526(0x8eb)]({'document':_0x1664c8[_0x40a526(0x5a5)][_0x40a526(0xb09)],'asset':_0x1664c8[_0x40a526(0xac7)],'op':_0x1664c8['op'],'viewport':_0x593f6d}));if(!_0x2bff18||_0x423eb7(_0x1664c8,_0x2bff18,_0x96d60a,_0x593f6d))return;let [_0x4254a3,_0x1ea013,_0x4101bd,_0x563a5f]=_0xd97cb2(_0x1664c8['op'],_0x1664c8[_0x40a526(0x5a5)][_0x40a526(0x175)],_0x593f6d);_0x4101bd<=0x0||_0x563a5f<=0x0||_0x96d60a[_0x40a526(0x198)](_0x2bff18,_0x4254a3,_0x1ea013,_0x4101bd,_0x563a5f);}function _0x423eb7(_0x3dbd56,_0x500dd8,_0x24430e,_0x866326){const _0x390012=_0x59d572;var _0x2d1bc1;let _0x578f99=_0x3dbd56['op'][_0x390012(0x701)];if(!_0x578f99||!_0x24430e[_0x390012(0x701)]||!_0x3212a4(_0x578f99))return!0x1;let _0x20fb5f=_0x14f95b(0x0,0x0,_0x578f99,_0x3dbd56['runtime'][_0x390012(0x175)],_0x866326),_0x2a66a4=_0x14f95b(0x1,0x0,_0x578f99,_0x3dbd56[_0x390012(0x5a5)]['page'],_0x866326),_0x223efc=_0x14f95b(0x0,0x1,_0x578f99,_0x3dbd56[_0x390012(0x5a5)][_0x390012(0x175)],_0x866326);return _0x24430e[_0x390012(0x8f9)](),_0x24430e[_0x390012(0x701)](_0x2a66a4[0x0]-_0x20fb5f[0x0],_0x2a66a4[0x1]-_0x20fb5f[0x1],_0x223efc[0x0]-_0x20fb5f[0x0],_0x223efc[0x1]-_0x20fb5f[0x1],_0x20fb5f[0x0],_0x20fb5f[0x1]),(_0x2d1bc1=_0x24430e[_0x390012(0x198)])==null||_0x2d1bc1['call'](_0x24430e,_0x500dd8,0x0,0x0,0x1,0x1),_0x24430e[_0x390012(0x91c)](),!0x0;}function _0x3212a4(_0xc15441){const _0x2e706d=_0x59d572;let _0x48cafe=0.000001;return Math[_0x2e706d(0x7f7)](_0xc15441[0x1])>_0x48cafe||Math[_0x2e706d(0x7f7)](_0xc15441[0x2])>_0x48cafe||_0xc15441[0x0]<-0.000001||_0xc15441[0x3]<-0.000001;}function _0x14f95b(_0x596a1e,_0x22300a,_0x4dcde8,_0x77abab,_0x498a99){let [_0x4f4030,_0x4143a5]=_0x202c6e(_0x596a1e,0x1-_0x22300a,_0x4dcde8);return _0x152bce(_0x4f4030,_0x4143a5,_0x77abab,_0x498a99);}function _0x55f20e(_0x279fc2,_0x22350a,_0x33ed32,_0x267818,_0xfdb28f){const _0x2f833b=_0x59d572;var _0xfc8b30,_0x25bb81,_0x3874a3,_0x303d8c,_0x1e7404;let _0x4a8252=(_0xfc8b30=_0x279fc2['op']['displayListId'])==null?(_0x25bb81=_0x279fc2[_0x2f833b(0xac7)])==null?void 0x0:_0x25bb81[_0x2f833b(0x1b7)]:_0xfc8b30,_0x5349b8=_0x4a8252?_0x279fc2[_0x2f833b(0x5a5)]['document'][_0x2f833b(0x791)][_0x4a8252]:void 0x0;if(!_0x5349b8)return;let _0x537000=_0x4d3cae((_0x3874a3=(_0x303d8c=_0x279fc2['asset'])==null?void 0x0:_0x303d8c[_0x2f833b(0xa01)])==null?_0x279fc2['op'][_0x2f833b(0xa01)]:_0x3874a3,_0x5349b8[_0x2f833b(0xa6d)]),_0x38384f=_0x304455(_0x22350a[_0x2f833b(0x50d)]),_0x56c205=_0x440546((_0x1e7404=_0x279fc2[_0x2f833b(0xac7)])==null?void 0x0:_0x1e7404[_0x2f833b(0x53d)]),_0x3c94a3=_0x20abac(_0x56c205,_0x38384f,_0xfdb28f,_0x5349b8[_0x2f833b(0xa6d)],_0x267818);if(_0x3c94a3===void 0x0&&_0x1f99e9(_0x56c205,_0x38384f,_0x267818)){let _0x11a7d5=_0x78a063(_0x267818);if(_0x11a7d5!=null&&_0x11a7d5[_0x2f833b(0x5a8)]({'context':_0x22350a,'viewport':_0x33ed32,'formContext':_0x279fc2,'formBBox':_0x537000,'blendMode':_0x38384f,'opacity':_0xfdb28f[_0x2f833b(0x8cd)],'group':_0x56c205,'renderGroup':_0x1a378f=>_0x12ab75(_0x279fc2,_0x1a378f,_0x33ed32,_0x267818,_0x5349b8[_0x2f833b(0xa6d)],_0x537000,_0x4a8252)}))return;}let _0x1d8599=_0x3c94a3===void 0x0?_0xfdb28f:{'fillAlpha':0x1,'opacityMultiplier':_0xfdb28f[_0x2f833b(0x900)]*_0x3c94a3,'strokeAlpha':0x1};_0x12ab75(_0x279fc2,_0x22350a,_0x33ed32,_0x267818,_0x5349b8[_0x2f833b(0xa6d)],_0x537000,_0x4a8252,_0x1d8599);}function _0x5f485a(_0x2345a0,_0x3cb347){const _0x447aac=_0x59d572;if(_0x3cb347!=null&&_0x3cb347[_0x447aac(0x5b8)])return _0x2345a0[_0x447aac(0xc33)][_0x447aac(0x201)][_0x447aac(0x651)+_0x39d1f1(_0x3cb347[_0x447aac(0x5b8)])];}function _0x45d0e3(_0x3622fa,_0x24a553,_0x1d37a1,_0x33e8fc,_0x81b8ab){const _0x47cd0c=_0x59d572;let _0x5d43ee=_0x3622fa['displayListId'],_0x5cc8e6=_0x5d43ee?_0x24a553[_0x47cd0c(0xb09)][_0x47cd0c(0x791)][_0x5d43ee]:void 0x0;if(!_0x5cc8e6)return;let _0x3c3add=_0x4d3cae(_0x3622fa['bbox'],_0x5cc8e6[_0x47cd0c(0xa6d)]);_0x12ab75({'op':{'id':_0x3622fa['id']+_0x47cd0c(0x283),'type':_0x21fa40[_0x47cd0c(0xa18)][_0x47cd0c(0xc79)],'assetId':_0x3622fa['id'],'objectRef':_0x3622fa['objectRef'],'displayListId':_0x5d43ee,'bbox':_0x3622fa[_0x47cd0c(0xa01)],'matrix':_0x3622fa[_0x47cd0c(0x86d)],'transform':[0x1,0x0,0x0,0x1,0x0,0x0]},'asset':_0x3622fa,'runtime':_0x24a553},_0x1d37a1,_0x33e8fc,_0x81b8ab,_0x5cc8e6[_0x47cd0c(0xa6d)],_0x3c3add,_0x5d43ee);}function _0x39d1f1(_0x4aff5e){const _0x1c1acc=_0x59d572;return _0x4aff5e[_0x1c1acc(0x4d9)]()['replace'](/\s+/g,'_')[_0x1c1acc(0xbf8)](/[^A-Za-z0-9_]/g,'_');}function _0x12ab75(_0x4b80aa,_0x22ecf3,_0x1f911e,_0x424c12,_0xd87a70,_0x122109,_0x1f4261,_0x1730b8){const _0x18194f=_0x59d572;_0x22ecf3['save'](),_0x52c973(_0x22ecf3,_0x4b80aa['op'],_0x122109,_0x4b80aa[_0x18194f(0x5a5)]['page'],_0x1f911e),_0x122109&&_0x151c10(_0x122109,_0x22ecf3,_0x1f911e);let _0x4b4281=_0x1f6cbe(_0x424c12[_0x18194f(0xb54)],{'displayListId':_0x424c12[_0x18194f(0x904)],'operatorId':_0x4b80aa['op']['id'],'resourceName':_0x4b80aa['op'][_0x18194f(0xb7b)],'objectRef':_0x4b80aa['op'][_0x18194f(0x798)],'assetId':_0x4b80aa['op'][_0x18194f(0x9c4)]}),_0x3e1e07=_0x1245e1(_0x22ecf3,_0x1f911e,{..._0x424c12,'operationPath':_0x4b4281,'currentDisplayListId':_0x1f4261},_0x1730b8),_0x4b9ac8={..._0x4b80aa['runtime'],'page':_0x3f3617(_0x4b80aa,_0x122109),'backend':_0x3e1e07};for(let _0x466b6a of _0xd87a70){var _0x56734d;let _0x31c86e=_0x1f6cbe(_0x4b4281,{'displayListId':_0x1f4261,'operatorId':_0x466b6a['id']});(_0x56734d=_0x424c12[_0x18194f(0x54b)])!=null&&_0x56734d['isSuppressed'](_0x466b6a,_0x31c86e)||(0x0,_0x3e1c10['renderPdfDisplayOperation'])(_0x466b6a,_0x4b9ac8);}_0x22ecf3[_0x18194f(0x91c)]();}function _0x1f6cbe(_0x575e56,_0x4ad617){return[..._0x575e56==null?[]:_0x575e56,_0x4ad617];}function _0x78a063(_0xdd43c2){const _0x1b1eb2=_0x59d572;var _0x2a73dd;if(_0xdd43c2['enableTransparencyGroups']!==!0x1&&_0xdd43c2[_0x1b1eb2(0x6bc)]!==null)return(_0x2a73dd=_0xdd43c2['groupCompositor'])==null?_0x4f4d42({'canvasFactory':_0xdd43c2['canvasFactory']}):_0x2a73dd;}function _0x1f99e9(_0xf67345,_0x3be297,_0x522864){const _0x1161e3=_0x59d572;return _0x522864['enableTransparencyGroups']===!0x1?!0x1:!!_0xf67345||_0x3be297!==_0x1161e3(0x869)&&_0x3be297!=='normal';}function _0x20abac(_0x402e9e,_0x26ce0a,_0x2ad5a6,_0x373640,_0x524334){const _0x557d8e=_0x59d572;if(!(_0x524334[_0x557d8e(0x25d)]===!0x1||(_0x402e9e==null?void 0x0:_0x402e9e[_0x557d8e(0x166)])!==_0x557d8e(0x10c)||_0x402e9e[_0x557d8e(0xbf4)]===!0x0||_0x402e9e[_0x557d8e(0x364)]===!0x0||_0x26ce0a!==_0x557d8e(0x869)&&_0x26ce0a!==_0x557d8e(0x88f)||_0x2ad5a6[_0x557d8e(0x197)]))return _0x2ad5a6[_0x557d8e(0x8cd)]===0x1&&_0x2ad5a6[_0x557d8e(0x8d5)]===0x1?0x1:_0x42a26b(_0x373640)?_0x2ad5a6[_0x557d8e(0x8cd)]:void 0x0;}function _0x42a26b(_0x1477ab){const _0x2671af=_0x59d572;let _0x391ee1;for(let _0x5712f2 of _0x1477ab){if(_0x5712f2['type']===_0x21fa40[_0x2671af(0xa18)][_0x2671af(0x7d2)]){let _0x2d8263=_0x304455(_0x5712f2[_0x2671af(0x1b6)][_0x2671af(0x17d)]);if(_0x5712f2['state']['softMask']||_0x2d8263!==_0x2671af(0x869)&&_0x2d8263!==_0x2671af(0x88f))return!0x1;continue;}if(_0x5712f2['type']===_0x21fa40[_0x2671af(0xa18)]['PATH']){if(_0x391ee1)return!0x1;_0x391ee1=_0x5712f2;continue;}if(_0x5712f2['type']===_0x21fa40['PdfDisplayOpType'][_0x2671af(0x97d)]||_0x5712f2[_0x2671af(0x2c1)]===_0x21fa40[_0x2671af(0xa18)][_0x2671af(0x93b)]||_0x5712f2[_0x2671af(0x2c1)]===_0x21fa40[_0x2671af(0xa18)][_0x2671af(0x4a2)]||_0x5712f2[_0x2671af(0x2c1)]===_0x21fa40[_0x2671af(0xa18)][_0x2671af(0xc79)])return!0x1;}return!!(_0x391ee1!=null&&_0x391ee1['paint']['stroke'])&&!_0x391ee1[_0x2671af(0x747)][_0x2671af(0x9ae)];}function _0x304455(_0x57b269){const _0x34c6ae=_0x59d572;return _0x57b269||_0x34c6ae(0x869);}function _0x4d3cae(_0x17ad5b,_0x21782d){var _0x1efd65;return _0x5243d2(_0x17ad5b)||((_0x1efd65=_0x5bb834(_0x21782d))==null?[0x0,0x0,0x1,0x1]:_0x1efd65);}function _0x5bb834(_0x2ca9b8){const _0x42deac=_0x59d572;let _0x26656d=[];for(let _0xe7a61d of _0x2ca9b8)_0xe7a61d['type']==='image'&&_0xe7a61d[_0x42deac(0x701)]&&_0x26656d['push'](_0x202c6e(0x0,0x0,_0xe7a61d[_0x42deac(0x701)]),_0x202c6e(0x1,0x0,_0xe7a61d[_0x42deac(0x701)]),_0x202c6e(0x0,0x1,_0xe7a61d[_0x42deac(0x701)]),_0x202c6e(0x1,0x1,_0xe7a61d[_0x42deac(0x701)])),_0xe7a61d[_0x42deac(0x2c1)]===_0x42deac(0x402)&&_0xe7a61d[_0x42deac(0x701)]&&_0xe7a61d['bbox']&&_0x26656d[_0x42deac(0x381)](..._0x275ba6(_0xe7a61d['bbox'],_0xe7a61d[_0x42deac(0x701)]));if(_0x26656d[_0x42deac(0xba6)]===0x0)return;let _0x2bc72d=_0x26656d[_0x42deac(0xb06)](_0x192cd3=>_0x192cd3[0x0]),_0x349f79=_0x26656d[_0x42deac(0xb06)](_0xa5e0ea=>_0xa5e0ea[0x1]);return _0x5243d2([Math[_0x42deac(0xb2a)](..._0x2bc72d),Math[_0x42deac(0xb2a)](..._0x349f79),Math[_0x42deac(0x542)](..._0x2bc72d),Math[_0x42deac(0x542)](..._0x349f79)]);}function _0x275ba6(_0x3a6dd3,_0x260efa){return[_0x202c6e(_0x3a6dd3[0x0],_0x3a6dd3[0x1],_0x260efa),_0x202c6e(_0x3a6dd3[0x2],_0x3a6dd3[0x1],_0x260efa),_0x202c6e(_0x3a6dd3[0x2],_0x3a6dd3[0x3],_0x260efa),_0x202c6e(_0x3a6dd3[0x0],_0x3a6dd3[0x3],_0x260efa)];}function _0x3f3617(_0x41cc68,_0x40ae29){const _0x59d11b=_0x59d572;var _0x48a42f,_0x4ffc36,_0x4f8bfb;return{'id':((_0x48a42f=(_0x4ffc36=(_0x4f8bfb=_0x41cc68[_0x59d11b(0xac7)])==null?void 0x0:_0x4f8bfb['id'])==null?_0x41cc68['op'][_0x59d11b(0x9c4)]:_0x4ffc36)==null?_0x41cc68['op']['id']:_0x48a42f)+'_page','index':-0x1,'size':{'width':(0x0,_0x21fa40[_0x59d11b(0x7c3)])(_0x40ae29[0x2]-_0x40ae29[0x0]),'height':(0x0,_0x21fa40[_0x59d11b(0x7c3)])(_0x40ae29[0x3]-_0x40ae29[0x1])},'rotation':0x0,'pdfBoxes':{'mediaBox':_0x40ae29,'cropBox':_0x40ae29},'layers':[]};}function _0x5243d2(_0x4bdb9c){const _0x3e088f=_0x59d572;if(!_0x4bdb9c||_0x4bdb9c[_0x3e088f(0xba6)]!==0x4||!_0x4bdb9c['every'](_0x2ba849=>Number[_0x3e088f(0x771)](_0x2ba849)))return;let _0x4ceb1c=[Math[_0x3e088f(0xb2a)](_0x4bdb9c[0x0],_0x4bdb9c[0x2]),Math[_0x3e088f(0xb2a)](_0x4bdb9c[0x1],_0x4bdb9c[0x3]),Math[_0x3e088f(0x542)](_0x4bdb9c[0x0],_0x4bdb9c[0x2]),Math['max'](_0x4bdb9c[0x1],_0x4bdb9c[0x3])],_0x30e8f4=_0x4ceb1c[0x2]-_0x4ceb1c[0x0],_0x5bb000=_0x4ceb1c[0x3]-_0x4ceb1c[0x1];if(!(_0x30e8f4<=0x0||_0x5bb000<=0x0||_0x18741f(_0x4ceb1c)))return _0x4ceb1c;}function _0x18741f(_0x17c21e){const _0x389360=_0x59d572;return Math[_0x389360(0x542)](..._0x17c21e[_0x389360(0xb06)](_0x4f865b=>Math['abs'](_0x4f865b)))>=0x8000&&_0x17c21e[0x2]-_0x17c21e[0x0]>=0x8000&&_0x17c21e[0x3]-_0x17c21e[0x1]>=0x8000;}function _0x1c35a4(_0x3b730d,_0x5566be,_0x775956){const _0x301cd4=_0x59d572;let {asset:_0x39e2e7,op:_0x2dee56,runtime:_0x47e989}=_0x3b730d;_0x5c1ac2({'asset':_0x39e2e7,'matrix':_0x2dee56[_0x301cd4(0x701)],'page':_0x47e989[_0x301cd4(0x175)],'context':_0x5566be,'viewport':_0x775956});}function _0x336c55(_0x5488dc,_0x4060c7,_0x1d5dc0){const _0x33aa03=_0x59d572;var _0x393a14,_0x30ac47,_0x1a14ff;let _0x3dff41=(_0x393a14=_0x5488dc[_0x33aa03(0x13f)])==null?(_0x30ac47=_0x5488dc[_0x33aa03(0x9ae)])==null?void 0x0:_0x30ac47[_0x33aa03(0x91d)]:_0x393a14;typeof _0x3dff41=='number'&&(_0x1d5dc0[_0x33aa03(0x8cd)]=_0x42d117(_0x3dff41)),typeof((_0x1a14ff=_0x5488dc[_0x33aa03(0xa25)])==null?void 0x0:_0x1a14ff[_0x33aa03(0x91d)])==_0x33aa03(0x97e)&&(_0x1d5dc0['strokeAlpha']=_0x42d117(_0x5488dc[_0x33aa03(0xa25)][_0x33aa03(0x91d)])),_0x5488dc[_0x33aa03(0x17d)]&&(_0x4060c7[_0x33aa03(0x50d)]=_0x5488dc['blendMode']),_0x5488dc[_0x33aa03(0x197)]&&(_0x1d5dc0[_0x33aa03(0x197)]=_0x5488dc['softMask']);let _0x574cb4=_0x27f41f(_0x5488dc);typeof _0x574cb4=='number'&&(_0x1d5dc0[_0x33aa03(0x8cd)]=_0x42d117(_0x1d5dc0[_0x33aa03(0x8cd)]*_0x574cb4),_0x1d5dc0[_0x33aa03(0x8d5)]=_0x42d117(_0x1d5dc0[_0x33aa03(0x8d5)]*_0x574cb4)),_0x4060c7[_0x33aa03(0x7bb)]=_0x1d5dc0[_0x33aa03(0x8cd)]*_0x1d5dc0[_0x33aa03(0x900)];}function _0x27f41f(_0x5a73b5){const _0x4214ba=_0x59d572;var _0x4a3ded,_0x4a5331,_0x22322c;if((_0x4a3ded=_0x5a73b5[_0x4214ba(0x197)])!=null&&_0x4a3ded[_0x4214ba(0x5b8)])return;let _0x42a582=(_0x4a5331=_0x5a73b5[_0x4214ba(0x197)])==null?void 0x0:_0x4a5331[_0x4214ba(0x9a9)];if(!(!_0x42a582||_0x42a582[_0x4214ba(0xba6)]===0x0))return Math['min'](0x1,Math[_0x4214ba(0x542)](0x0,(_0x22322c=_0x42a582[0x0])==null?0x1:_0x22322c));}function _0x52c973(_0x48624a,_0xa057bd,_0x3a1ec3,_0x332000,_0x51ac00){const _0x2a976d=_0x59d572;var _0xe90a63;let _0x9c6c3b=_0xa057bd[_0x2a976d(0x701)]?_0xa057bd[_0x2a976d(0x86d)]?_0x92cb43(_0xa057bd[_0x2a976d(0x701)],_0xa057bd['matrix']):_0xa057bd[_0x2a976d(0x701)]:(_0xe90a63=_0xa057bd[_0x2a976d(0x86d)])==null?[0x1,0x0,0x0,0x1,0x0,0x0]:_0xe90a63;if(!_0x48624a[_0x2a976d(0x701)])return;let _0x1d2304=_0x3a1ec3==null?[0x0,0x0,0x1,0x1]:_0x3a1ec3,_0x2c1d39=_0x3b6363((0x0,_0x21fa40[_0x2a976d(0x7c3)])(0x1),_0x51ac00),_0x51b33c=_0x50015a(0x0,0x0,_0x1d2304,_0x9c6c3b,_0x332000,_0x51ac00),_0x4be144=_0x50015a(0x1,0x0,_0x1d2304,_0x9c6c3b,_0x332000,_0x51ac00),_0x5ba7f1=_0x50015a(0x0,0x1,_0x1d2304,_0x9c6c3b,_0x332000,_0x51ac00);_0x48624a['transform']((_0x4be144[0x0]-_0x51b33c[0x0])/_0x2c1d39,(_0x4be144[0x1]-_0x51b33c[0x1])/_0x2c1d39,(_0x5ba7f1[0x0]-_0x51b33c[0x0])/_0x2c1d39,(_0x5ba7f1[0x1]-_0x51b33c[0x1])/_0x2c1d39,_0x51b33c[0x0],_0x51b33c[0x1]);}function _0x50015a(_0x5d6d9e,_0x29f39f,_0x554a69,_0x5cf91e,_0x1ecb64,_0x100b70){let [_0x3f0023,_0x18b08c]=_0x202c6e(_0x554a69[0x0]+_0x5d6d9e,_0x554a69[0x3]-_0x29f39f,_0x5cf91e);return _0x152bce(_0x3f0023,_0x18b08c,_0x1ecb64,_0x100b70);}function _0x92cb43(_0x2ac48a,_0x48713f){return[_0x2ac48a[0x0]*_0x48713f[0x0]+_0x2ac48a[0x2]*_0x48713f[0x1],_0x2ac48a[0x1]*_0x48713f[0x0]+_0x2ac48a[0x3]*_0x48713f[0x1],_0x2ac48a[0x0]*_0x48713f[0x2]+_0x2ac48a[0x2]*_0x48713f[0x3],_0x2ac48a[0x1]*_0x48713f[0x2]+_0x2ac48a[0x3]*_0x48713f[0x3],_0x2ac48a[0x0]*_0x48713f[0x4]+_0x2ac48a[0x2]*_0x48713f[0x5]+_0x2ac48a[0x4],_0x2ac48a[0x1]*_0x48713f[0x4]+_0x2ac48a[0x3]*_0x48713f[0x5]+_0x2ac48a[0x5]];}function _0x151c10(_0xab6395,_0x5b3926,_0x12718a){const _0x52e25a=_0x59d572;_0x5b3926[_0x52e25a(0x837)]&&(_0x5b3926[_0x52e25a(0x995)](),_0x5b3926[_0x52e25a(0x998)](0x0,0x0,_0x3b6363((0x0,_0x21fa40['ptToEmu'])(_0xab6395[0x2]-_0xab6395[0x0]),_0x12718a),_0x3b6363((0x0,_0x21fa40[_0x52e25a(0x7c3)])(_0xab6395[0x3]-_0xab6395[0x1]),_0x12718a)),_0x5b3926[_0x52e25a(0x837)]());}function _0xd97cb2(_0x4a2d5a,_0x4d60e1,_0x291602){const _0x5be505=_0x59d572;let _0x2eda1d=_0x4a2d5a[_0x5be505(0x701)];if(!_0x2eda1d){let [_0x389f8b,_0x38e69c]=_0x152bce(0x0,0x1,_0x4d60e1,_0x291602);return[_0x389f8b,_0x38e69c,_0x3b6363((0x0,_0x21fa40[_0x5be505(0x7c3)])(0x1),_0x291602),_0x3b6363((0x0,_0x21fa40[_0x5be505(0x7c3)])(0x1),_0x291602)];}let _0xc3ba7=[_0x202c6e(0x0,0x0,_0x2eda1d),_0x202c6e(0x1,0x0,_0x2eda1d),_0x202c6e(0x0,0x1,_0x2eda1d),_0x202c6e(0x1,0x1,_0x2eda1d)][_0x5be505(0xb06)](([_0x1b0e26,_0x28285f])=>_0x152bce(_0x1b0e26,_0x28285f,_0x4d60e1,_0x291602)),_0x3b9130=_0xc3ba7[_0x5be505(0xb06)](_0x5aef36=>_0x5aef36[0x0]),_0x3b119b=_0xc3ba7[_0x5be505(0xb06)](_0x295a3d=>_0x295a3d[0x1]),_0x5a09ac=Math[_0x5be505(0xb2a)](..._0x3b9130),_0x3dc77f=Math[_0x5be505(0x542)](..._0x3b9130),_0x490a7c=Math[_0x5be505(0xb2a)](..._0x3b119b),_0x3bd77d=Math['max'](..._0x3b119b);return[_0x5a09ac,_0x490a7c,_0x3dc77f-_0x5a09ac,_0x3bd77d-_0x490a7c];}function _0x202c6e(_0x223c76,_0x332ad7,_0x3cad11){return[_0x3cad11[0x0]*_0x223c76+_0x3cad11[0x2]*_0x332ad7+_0x3cad11[0x4],_0x3cad11[0x1]*_0x223c76+_0x3cad11[0x3]*_0x332ad7+_0x3cad11[0x5]];}function _0x152bce(_0x1f350a,_0x50b575,_0x3b7c9b,_0x5663d7){const _0x5618a2=_0x59d572;let _0x7c2e19=_0x3b7c9b['pdfBoxes'][_0x5618a2(0xca2)];return[_0x3b6363((0x0,_0x21fa40[_0x5618a2(0x7c3)])(_0x1f350a-_0x7c2e19[0x0]),_0x5663d7),_0x3b6363((0x0,_0x21fa40[_0x5618a2(0x7c3)])(_0x7c2e19[0x3]-_0x50b575),_0x5663d7)];}function _0x1fe4e8(_0x577681,_0x1c59fc){return[_0x3b6363(_0x577681[0x0],_0x1c59fc),_0x3b6363(_0x577681[0x1],_0x1c59fc),_0x3b6363(_0x577681[0x2],_0x1c59fc),_0x3b6363(_0x577681[0x3],_0x1c59fc)];}function _0x56ae5c(_0x1e921b,_0x25b9c4){return[_0x3b6363(_0x1e921b[0x0],_0x25b9c4),_0x3b6363(_0x1e921b[0x1],_0x25b9c4)];}function _0x3b6363(_0x5b8ac5,_0x16298c){const _0x19f2aa=_0x59d572;return(0x0,_0x21fa40['emuToCssPx'])(_0x5b8ac5)*_0x16298c[_0x19f2aa(0x68e)];}function _0x37c7c1(_0x45f108,_0xfb4fef){const _0x370892=_0x59d572;return typeof _0x45f108==_0x370892(0x221)?_0x45f108:Array[_0x370892(0x461)](_0x45f108)?'#'+_0x45f108[_0x370892(0x688)](0x0,0x3)[_0x370892(0xb06)](_0x26bae0=>Math[_0x370892(0x542)](0x0,Math['min'](0xff,Math['round'](_0x26bae0*0xff))))[_0x370892(0xb06)](_0x19083b=>_0x19083b[_0x370892(0x23e)](0x10)[_0x370892(0x6da)](0x2,'0'))[_0x370892(0xb26)](''):_0xfb4fef;}function _0x4f5f36(_0x36b6fc,_0x3e35ed,_0x287b81){const _0x4748a8=_0x59d572;if(_0x36b6fc[_0x4748a8(0x2f3)]=_0x37c7c1(_0x3e35ed['color'],_0x4748a8(0x7cf)),_0x36b6fc[_0x4748a8(0x521)]=_0x3e35ed[_0x4748a8(0x65c)]?Math['max'](0.5,_0x3b6363(_0x3e35ed[_0x4748a8(0x65c)],_0x287b81)):0x1,_0x591b4d(_0x36b6fc,_0x3e35ed['opacity']),_0x3e35ed[_0x4748a8(0x90a)]&&(_0x36b6fc[_0x4748a8(0x90a)]=_0x3e35ed[_0x4748a8(0x90a)]),_0x3e35ed[_0x4748a8(0x901)]&&(_0x36b6fc[_0x4748a8(0x901)]=_0x3e35ed[_0x4748a8(0x901)]),typeof _0x3e35ed['miterLimit']==_0x4748a8(0x97e)&&(_0x36b6fc[_0x4748a8(0x668)]=_0x3e35ed[_0x4748a8(0x668)]),_0x36b6fc[_0x4748a8(0x39d)]){var _0x262c5b;_0x36b6fc[_0x4748a8(0x39d)](((_0x262c5b=_0x3e35ed['dash'])==null?[]:_0x262c5b)[_0x4748a8(0xb06)](_0x526ce8=>_0x3b6363(_0x526ce8,_0x287b81)));}typeof _0x3e35ed[_0x4748a8(0x2fc)]=='number'&&(_0x36b6fc[_0x4748a8(0x4bf)]=_0x3b6363(_0x3e35ed[_0x4748a8(0x2fc)],_0x287b81));}function _0x18aa6d(_0x1e1e7f,_0x46ce36,_0x42a107){const _0x3c5221=_0x59d572;_0x1e1e7f[_0x3c5221(0x7bb)]=_0x46ce36,typeof _0x42a107==_0x3c5221(0x97e)&&!_0x194d75(_0x42a107,_0x46ce36)&&_0x591b4d(_0x1e1e7f,_0x42a107);}function _0x591b4d(_0x375801,_0x207802){const _0xedec68=_0x59d572;typeof _0x207802=='number'&&(_0x375801[_0xedec68(0x7bb)]*=_0x42d117(_0x207802));}function _0x42d117(_0x2aedce){const _0x1ef1b4=_0x59d572;return Math['max'](0x0,Math[_0x1ef1b4(0xb2a)](0x1,_0x2aedce));}function _0x194d75(_0x9b8971,_0x187bc6){const _0x4fa738=_0x59d572;return Math[_0x4fa738(0x7f7)](_0x9b8971-_0x187bc6)<0.000001;}function _0x3e174e(_0x40b282){const _0x33fe83=_0x59d572;if(_0x40b282)return'source'in _0x40b282?_0x40b282[_0x33fe83(0x419)]:_0x40b282;}function _0x2c2abf(_0x374c63){const _0x47bc5f=_0x59d572;let _0x1e10d1=(0x0,_0x21fa40[_0x47bc5f(0x65d)])(_0x374c63[_0x47bc5f(0xb09)])[_0x47bc5f(0x1ef)][_0x47bc5f(0x2ad)](_0x374c63[_0x47bc5f(0x8ee)]);if(!_0x1e10d1)return;let _0x995f0a=_0x1e10d1[_0x47bc5f(0x7b1)][_0x47bc5f(0xbcd)](_0x5cfa37=>_0x5cfa37[_0x47bc5f(0xad1)]!==!0x1&&_0x5cfa37['type']===_0x21fa40[_0x47bc5f(0x42e)]['EDITABLE'])[_0x47bc5f(0x13c)](_0x2216d5=>_0x2216d5[_0x47bc5f(0x5a9)]);for(let _0x363f4e of _0x995f0a){var _0x220fcd;if((_0x220fcd=_0x374c63[_0x47bc5f(0xbcc)])!=null&&_0x220fcd[_0x47bc5f(0x66b)](_0x363f4e))continue;let _0x383986=_0x374c63[_0x47bc5f(0xb09)]['objects'][_0x363f4e];!_0x383986||_0x383986[_0x47bc5f(0xad1)]===!0x1||_0x1acad9(_0x383986,_0x374c63);}}function _0x1acad9(_0x12bb38,_0x1487ad){const _0x38776b=_0x59d572;switch(_0x1487ad[_0x38776b(0x12b)][_0x38776b(0x8f9)](),_0x5d47e5(_0x1487ad[_0x38776b(0x12b)],_0x12bb38,_0x1487ad[_0x38776b(0x809)]),_0x12bb38[_0x38776b(0x2c1)]){case _0x21fa40[_0x38776b(0x8bf)][_0x38776b(0x1a5)]:_0x40a749(_0x1487ad['context'],_0x12bb38,_0x1487ad);break;case _0x21fa40['PdfObjectType'][_0x38776b(0x592)]:_0x20f55d(_0x1487ad[_0x38776b(0x12b)],_0x12bb38,_0x1487ad);break;case _0x21fa40['PdfObjectType'][_0x38776b(0x93b)]:_0x526d8b(_0x1487ad[_0x38776b(0x12b)],_0x12bb38,_0x1487ad);break;case _0x21fa40[_0x38776b(0x8bf)][_0x38776b(0x598)]:_0x3ff58d(_0x1487ad['context'],_0x12bb38,_0x1487ad);break;case _0x21fa40['PdfObjectType'][_0x38776b(0x34a)]:_0x57255d(_0x1487ad[_0x38776b(0x12b)],_0x12bb38,_0x1487ad);break;default:break;}_0x1487ad[_0x38776b(0x12b)]['restore']();}function _0x57255d(_0x229668,_0xec8d54,_0x4de514){const _0x3a5d2f=_0x59d572;var _0x1627d0;_0x39fe9c(_0x229668,_0x20455b({'table':_0xec8d54,'stories':(_0x1627d0=_0x4de514[_0x3a5d2f(0xb09)]['textStories'])==null?{}:_0x1627d0,'zoom':_0x4de514[_0x3a5d2f(0x809)]['zoom'],'measureText':(_0x8fbb0b,_0x5594c2)=>{const _0x8ae1f8=_0x3a5d2f;var _0x48972f,_0x9ba895;let _0x2c04c4=_0x229668['font'];_0x229668['font']=_0x5594c2;let _0x2ca1eb=(_0x48972f=(_0x9ba895=_0x229668['measureText'])==null?void 0x0:_0x9ba895[_0x8ae1f8(0x3f4)](_0x229668,_0x8fbb0b)['width'])==null?_0x8fbb0b['length']*0x8:_0x48972f;return _0x229668[_0x8ae1f8(0x7da)]=_0x2c04c4,_0x2ca1eb;},'document':_0x4de514[_0x3a5d2f(0xb09)],'fontFamilyResolver':_0x4de514[_0x3a5d2f(0x987)]}),{'showOverflow':!0x1});}function _0x40a749(_0x495410,_0x4e15f5,_0x3a09b3){const _0x5dcd03=_0x59d572;var _0x400cb0,_0x196704,_0x195878;let _0x175f8e=_0x5b2393(_0x4e15f5['bbox'],_0x3a09b3[_0x5dcd03(0x809)]),_0x1864d0=(_0x400cb0=_0x4e15f5[_0x5dcd03(0x416)])!=null&&_0x400cb0[_0x5dcd03(0xba6)]?_0x4e15f5[_0x5dcd03(0x416)]:[{'text':'','fontSize':0xc}],_0x57ec5b=_0x1864d0[_0x5dcd03(0xb06)](_0x4f7cbf=>_0x4f7cbf['text'])['join'](''),_0x570067=(_0x196704=_0x1864d0[0x0])==null?{'text':'','fontSize':0xc}:_0x196704,_0x388a19=_0xab97c5(_0x570067['fontSize'],_0x3a09b3['viewport']),_0x1bc340=_0x388a19*1.2,_0xcdfea7=_0x4a5359(_0x57ec5b);_0x495410[_0x5dcd03(0x7da)]=_0x11bac4(_0x570067,_0x388a19,_0x3a09b3),_0x495410[_0x5dcd03(0x3d0)]=_0x2aaac2(_0x570067),_0x495410[_0x5dcd03(0x7bb)]=(_0x195878=_0x570067[_0x5dcd03(0x10d)])==null?0x1:_0x195878,_0x495410[_0x5dcd03(0xb34)]='alphabetic';for(let [_0x267b2c,_0x573f48]of _0xcdfea7[_0x5dcd03(0x8a2)]()){var _0x37e0f5,_0x28c2e8;let _0x1ba8aa=(_0x37e0f5=(_0x28c2e8=_0x495410['measureText'])==null?void 0x0:_0x28c2e8[_0x5dcd03(0x3f4)](_0x495410,_0x573f48)['width'])==null?_0x573f48[_0x5dcd03(0xba6)]*_0x388a19*0.5:_0x37e0f5,_0x5e247d=_0x2da0c5(_0x4e15f5[_0x5dcd03(0x3b8)],_0x175f8e,0x4,_0x1ba8aa),_0x1565bd=_0x175f8e['y']+0x4+_0x388a19+_0x267b2c*_0x1bc340;_0x57fb59(_0x495410,_0x570067,_0x573f48,_0x5e247d,_0x1565bd,_0x388a19,_0x3a09b3),_0x4585ad(_0x495410,_0x570067,_0x5e247d,_0x1565bd,_0x1ba8aa,_0x388a19);}}function _0x20f55d(_0x329af1,_0x508835,_0x5b9f08){const _0x4aee37=_0x59d572;var _0x1affd7,_0x277a8e,_0x2b5512;let _0x1ca84d=_0x5b2393(_0x508835['bbox'],_0x5b9f08[_0x4aee37(0x809)]),_0x1cf6eb=_0xab97c5(_0x508835[_0x4aee37(0xaa9)][_0x4aee37(0x845)],_0x5b9f08[_0x4aee37(0x809)]);_0x329af1[_0x4aee37(0x7da)]=_0x11bac4(_0x508835[_0x4aee37(0xaa9)],_0x1cf6eb,_0x5b9f08),_0x329af1['fillStyle']=_0x2aaac2(_0x508835[_0x4aee37(0xaa9)]),_0x329af1['globalAlpha']=(_0x1affd7=_0x508835[_0x4aee37(0xaa9)][_0x4aee37(0x10d)])==null?0x1:_0x1affd7,_0x329af1[_0x4aee37(0xb34)]='alphabetic',_0x57fb59(_0x329af1,_0x508835['run'],_0x508835['run'][_0x4aee37(0x975)],_0x1ca84d['x'],_0x1ca84d['y']+_0x1cf6eb,_0x1cf6eb,_0x5b9f08),_0x4585ad(_0x329af1,_0x508835[_0x4aee37(0xaa9)],_0x1ca84d['x'],_0x1ca84d['y']+_0x1cf6eb,(_0x277a8e=(_0x2b5512=_0x329af1['measureText'])==null?void 0x0:_0x2b5512[_0x4aee37(0x3f4)](_0x329af1,_0x508835['run']['text'])['width'])==null?_0x508835[_0x4aee37(0xaa9)][_0x4aee37(0x975)]['length']*_0x1cf6eb*0.5:_0x277a8e,_0x1cf6eb);}function _0x526d8b(_0x43b4f6,_0x38f71a,_0x48ce9d){const _0x5a3dd1=_0x59d572;var _0x2fea1c;if(!_0x48ce9d[_0x5a3dd1(0x8eb)]||!_0x43b4f6[_0x5a3dd1(0x198)])return;let _0x2acaf2=_0x48ce9d[_0x5a3dd1(0xb09)][_0x5a3dd1(0xc33)][_0x5a3dd1(0x707)][_0x38f71a[_0x5a3dd1(0x9c4)]];if(!_0x2acaf2)return;let _0x54c123=_0x478845(_0x48ce9d[_0x5a3dd1(0x8eb)]({'document':_0x48ce9d['document'],'asset':_0x2acaf2,'op':{'id':_0x5a3dd1(0x612)+_0x38f71a['id'],'type':_0x21fa40[_0x5a3dd1(0xa18)]['IMAGE'],'assetId':_0x38f71a[_0x5a3dd1(0x9c4)]},'viewport':_0x48ce9d[_0x5a3dd1(0x809)]}));if(!_0x54c123)return;let _0x4b47e5=_0x5b2393(_0x38f71a['bbox'],_0x48ce9d['viewport']),_0x14c3ad=_0x43b4f6[_0x5a3dd1(0x7bb)],_0x467acf=_0x38f71a[_0x5a3dd1(0x8da)]?_0x351719(_0x38f71a[_0x5a3dd1(0x8da)],_0x38f71a['bbox'],_0x2acaf2[_0x5a3dd1(0x65c)],_0x2acaf2[_0x5a3dd1(0x1ae)]):void 0x0;_0x43b4f6[_0x5a3dd1(0x7bb)]=(_0x2fea1c=_0x38f71a[_0x5a3dd1(0x91d)])==null?_0x14c3ad:_0x2fea1c,_0x467acf?_0x43b4f6[_0x5a3dd1(0x198)](_0x54c123,_0x467acf['x'],_0x467acf['y'],_0x467acf[_0x5a3dd1(0x65c)],_0x467acf[_0x5a3dd1(0x1ae)],_0x4b47e5['x'],_0x4b47e5['y'],_0x4b47e5['width'],_0x4b47e5[_0x5a3dd1(0x1ae)]):_0x43b4f6[_0x5a3dd1(0x198)](_0x54c123,_0x4b47e5['x'],_0x4b47e5['y'],_0x4b47e5['width'],_0x4b47e5[_0x5a3dd1(0x1ae)]),_0x43b4f6[_0x5a3dd1(0x7bb)]=_0x14c3ad;}function _0x3ff58d(_0x5d56f8,_0x5b096f,_0x46798f){const _0x2f96ec=_0x59d572;var _0x9f9095,_0x46de1e,_0x197bb4,_0x5c5c73;let _0x2a45a1=(_0x9f9095=(_0x46de1e=_0x5b096f[_0x2f96ec(0x564)])==null?void 0x0:_0x46de1e[_0x2f96ec(0x1b7)])==null?(_0x197bb4=_0x5b096f[_0x2f96ec(0x217)])==null?void 0x0:_0x197bb4[0x0]:_0x9f9095,_0x4eaf87=_0x2a45a1?_0x46798f['document']['displayLists'][_0x2a45a1]:void 0x0;if(!_0x4eaf87)return;let _0xd775b6=_0x5b2393(_0x5b096f[_0x2f96ec(0xa01)],_0x46798f['viewport']);_0x5d56f8[_0x2f96ec(0x8f9)](),_0x5d56f8[_0x2f96ec(0x995)](),_0x5d56f8['rect'](_0xd775b6['x'],_0xd775b6['y'],_0xd775b6[_0x2f96ec(0x65c)],_0xd775b6[_0x2f96ec(0x1ae)]),(_0x5c5c73=_0x5d56f8['clip'])==null||_0x5c5c73[_0x2f96ec(0x3f4)](_0x5d56f8);for(let _0x488e19 of _0x4eaf87['ops'])_0xb2982f(_0x5d56f8,_0x488e19,_0xd775b6,_0x46798f);_0x5d56f8[_0x2f96ec(0x91c)]();}function _0xb2982f(_0x39b5f5,_0x2cd715,_0x4007f,_0x119441){const _0x307ec7=_0x59d572;switch(_0x2cd715[_0x307ec7(0x2c1)]){case _0x21fa40[_0x307ec7(0xa18)][_0x307ec7(0x97d)]:_0x48ebb3(_0x39b5f5,_0x2cd715,_0x4007f,_0x119441);return;case _0x21fa40[_0x307ec7(0xa18)]['PATH']:_0x1c9c42(_0x39b5f5,_0x2cd715[_0x307ec7(0x440)],_0x4007f,_0x119441);return;case _0x21fa40[_0x307ec7(0xa18)]['IMAGE']:_0x394c99(_0x39b5f5,_0x2cd715,_0x4007f,_0x119441);break;default:}}function _0x48ebb3(_0x3f7922,_0x1d91cd,_0x428a0c,_0x289a58){const _0x1039b1=_0x59d572;var _0x3c0d40,_0x32c295,_0x122a09,_0x2d2d07;let _0x2c6a22=_0x428a0c['x']+_0x4c83f8((_0x3c0d40=(_0x32c295=_0x1d91cd[_0x1039b1(0x701)])==null?void 0x0:_0x32c295[0x4])==null?0x0:_0x3c0d40,_0x289a58[_0x1039b1(0x809)]),_0x4bfbeb=_0x428a0c['y']+_0x4c83f8((_0x122a09=(_0x2d2d07=_0x1d91cd['transform'])==null?void 0x0:_0x2d2d07[0x5])==null?0x0:_0x122a09,_0x289a58[_0x1039b1(0x809)]),_0x11fb2b=_0x2c6a22;for(let _0x254c6e of _0x1d91cd[_0x1039b1(0x416)]){var _0x5d9e8e,_0x43d120,_0x187f91;let _0x2174ce=_0xab97c5(_0x254c6e[_0x1039b1(0x845)]||0xc,_0x289a58[_0x1039b1(0x809)]);_0x3f7922['font']=_0x11bac4(_0x254c6e,_0x2174ce,_0x289a58),_0x3f7922[_0x1039b1(0x3d0)]=_0x2aaac2(_0x254c6e),_0x3f7922[_0x1039b1(0x7bb)]=(_0x5d9e8e=_0x254c6e[_0x1039b1(0x10d)])==null?0x1:_0x5d9e8e,_0x3f7922['textBaseline']=_0x1039b1(0xb72),_0x57fb59(_0x3f7922,_0x254c6e,_0x254c6e[_0x1039b1(0x975)],_0x11fb2b,_0x4bfbeb,_0x2174ce,_0x289a58),_0x11fb2b+=(_0x43d120=(_0x187f91=_0x3f7922['measureText'])==null?void 0x0:_0x187f91[_0x1039b1(0x3f4)](_0x3f7922,_0x254c6e['text'])[_0x1039b1(0x65c)])==null?_0x254c6e[_0x1039b1(0x975)][_0x1039b1(0xba6)]*_0x2174ce*0.5:_0x43d120;}}function _0x57fb59(_0x4deb3d,_0x10c71f,_0x1b3d53,_0x5a8257,_0x89d469,_0x422516,_0x238b59){const _0x3238de=_0x59d572;var _0x16698f;let _0x37ec62=_0x10c71f[_0x3238de(0x83d)]?_0x238b59[_0x3238de(0xb09)][_0x3238de(0xc33)][_0x3238de(0x261)][_0x10c71f[_0x3238de(0x83d)]]:void 0x0,_0x5ad68c=_0x188ff5(_0x37ec62)?(_0x16698f=_0x238b59[_0x3238de(0x925)])==null?void 0x0:_0x16698f['call'](_0x238b59,{'document':_0x238b59[_0x3238de(0xb09)],'font':_0x37ec62,'run':_0x10c71f}):void 0x0;if(_0x5ad68c&&_0x760d79(_0x4deb3d,_0x5ad68c,_0x1b3d53,_0x5a8257,_0x89d469,_0x422516)){_0x4deb3d[_0x3238de(0x9ae)]();return;}_0x4deb3d[_0x3238de(0x7e4)](_0x1b3d53,_0x5a8257,_0x89d469);}function _0x394c99(_0x37c3e1,_0x52e916,_0x5c5a24,_0x1512ce){const _0x2c68f4=_0x59d572;var _0x578edd,_0x238740,_0xf2e45e,_0x58890f,_0x1377a9,_0x5b32db,_0x1ffa50,_0x42e1fb;if(!_0x1512ce['imageResolver']||!_0x37c3e1['drawImage'])return;let _0x3afde6=_0x1512ce[_0x2c68f4(0xb09)][_0x2c68f4(0xc33)][_0x2c68f4(0x707)][_0x52e916[_0x2c68f4(0x9c4)]];if(!_0x3afde6)return;let _0x5e4cf0=_0x478845(_0x1512ce[_0x2c68f4(0x8eb)]({'document':_0x1512ce['document'],'asset':_0x3afde6,'op':_0x52e916,'viewport':_0x1512ce[_0x2c68f4(0x809)]}));if(!_0x5e4cf0)return;let _0x27d052=_0x5c5a24['x']+_0x4c83f8((_0x578edd=(_0x238740=_0x52e916[_0x2c68f4(0x701)])==null?void 0x0:_0x238740[0x4])==null?0x0:_0x578edd,_0x1512ce[_0x2c68f4(0x809)]),_0x32fb3e=_0x5c5a24['y']+_0x4c83f8((_0xf2e45e=(_0x58890f=_0x52e916[_0x2c68f4(0x701)])==null?void 0x0:_0x58890f[0x5])==null?0x0:_0xf2e45e,_0x1512ce[_0x2c68f4(0x809)]),_0x409d03=_0x4c83f8(Math[_0x2c68f4(0x7f7)]((_0x1377a9=(_0x5b32db=_0x52e916[_0x2c68f4(0x701)])==null?void 0x0:_0x5b32db[0x0])==null?(0x0,_0x21fa40[_0x2c68f4(0x7c3)])(_0x3afde6[_0x2c68f4(0x65c)]):_0x1377a9),_0x1512ce['viewport']),_0x4a46da=_0x4c83f8(Math[_0x2c68f4(0x7f7)]((_0x1ffa50=(_0x42e1fb=_0x52e916[_0x2c68f4(0x701)])==null?void 0x0:_0x42e1fb[0x3])==null?(0x0,_0x21fa40[_0x2c68f4(0x7c3)])(_0x3afde6[_0x2c68f4(0x1ae)]):_0x1ffa50),_0x1512ce['viewport']);_0x37c3e1[_0x2c68f4(0x198)](_0x5e4cf0,_0x27d052,_0x32fb3e,_0x409d03,_0x4a46da);}function _0x1c9c42(_0x2d2e2c,_0x219751,_0x1c57e5,_0x17e00e){const _0x1c4d5d=_0x59d572;if(_0x219751[_0x1c4d5d(0xba6)]){_0x2d2e2c[_0x1c4d5d(0x995)]();for(let _0x235d5c of _0x219751)switch(_0x235d5c[_0x1c4d5d(0x2c1)]){case _0x21fa40[_0x1c4d5d(0x665)][_0x1c4d5d(0xaac)]:_0x2d2e2c[_0x1c4d5d(0x80a)](_0x1c57e5['x']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x0],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['y']+_0x4c83f8(_0x235d5c['point'][0x1],_0x17e00e['viewport']));break;case _0x21fa40[_0x1c4d5d(0x665)][_0x1c4d5d(0x352)]:_0x2d2e2c[_0x1c4d5d(0x5be)](_0x1c57e5['x']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x0],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['y']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x1],_0x17e00e[_0x1c4d5d(0x809)]));break;case _0x21fa40['PdfPathCommandType']['CUBIC_TO']:var _0x1dceca;(_0x1dceca=_0x2d2e2c['bezierCurveTo'])==null||_0x1dceca[_0x1c4d5d(0x3f4)](_0x2d2e2c,_0x1c57e5['x']+_0x4c83f8(_0x235d5c['c1'][0x0],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['y']+_0x4c83f8(_0x235d5c['c1'][0x1],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['x']+_0x4c83f8(_0x235d5c['c2'][0x0],_0x17e00e['viewport']),_0x1c57e5['y']+_0x4c83f8(_0x235d5c['c2'][0x1],_0x17e00e['viewport']),_0x1c57e5['x']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x0],_0x17e00e['viewport']),_0x1c57e5['y']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x1],_0x17e00e[_0x1c4d5d(0x809)]));break;case _0x21fa40['PdfPathCommandType'][_0x1c4d5d(0x119)]:var _0x51ca2d;(_0x51ca2d=_0x2d2e2c[_0x1c4d5d(0x603)])==null||_0x51ca2d[_0x1c4d5d(0x3f4)](_0x2d2e2c,_0x1c57e5['x']+_0x4c83f8(_0x235d5c['c'][0x0],_0x17e00e['viewport']),_0x1c57e5['y']+_0x4c83f8(_0x235d5c['c'][0x1],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['x']+_0x4c83f8(_0x235d5c['point'][0x0],_0x17e00e[_0x1c4d5d(0x809)]),_0x1c57e5['y']+_0x4c83f8(_0x235d5c[_0x1c4d5d(0x7fc)][0x1],_0x17e00e['viewport']));break;case _0x21fa40[_0x1c4d5d(0x665)][_0x1c4d5d(0xa8d)]:{let _0x1aacec=_0x5b2393(_0x235d5c[_0x1c4d5d(0x998)],_0x17e00e[_0x1c4d5d(0x809)]);_0x2d2e2c[_0x1c4d5d(0x998)](_0x1c57e5['x']+_0x1aacec['x'],_0x1c57e5['y']+_0x1aacec['y'],_0x1aacec[_0x1c4d5d(0x65c)],_0x1aacec['height']);break;}case _0x21fa40[_0x1c4d5d(0x665)][_0x1c4d5d(0x514)]:_0x2d2e2c[_0x1c4d5d(0x427)]();break;default:break;}_0x2d2e2c['strokeStyle']=_0x1c4d5d(0xa0a),_0x2d2e2c[_0x1c4d5d(0x521)]=0x1,_0x2d2e2c['stroke']();}}function _0x351719(_0x5c5377,_0x4255c7,_0x5bbb26,_0x344991){let _0x155e44=_0x4255c7[0x2]-_0x4255c7[0x0],_0x35de7a=_0x4255c7[0x3]-_0x4255c7[0x1];if(_0x155e44<=0x0||_0x35de7a<=0x0||_0x5bbb26<=0x0||_0x344991<=0x0)return;let _0x5dea09=_0x140032(_0x5c5377[0x0],_0x4255c7[0x0],_0x4255c7[0x2]),_0x207378=_0x140032(_0x5c5377[0x1],_0x4255c7[0x1],_0x4255c7[0x3]),_0x1a7924=_0x140032(_0x5c5377[0x2],_0x4255c7[0x0],_0x4255c7[0x2]),_0x2c6c19=_0x140032(_0x5c5377[0x3],_0x4255c7[0x1],_0x4255c7[0x3]),_0x3bf648=_0x1a7924-_0x5dea09,_0x5ea50a=_0x2c6c19-_0x207378;if(!(_0x3bf648<=0x0||_0x5ea50a<=0x0))return{'x':(_0x5dea09-_0x4255c7[0x0])/_0x155e44*_0x5bbb26,'y':(_0x207378-_0x4255c7[0x1])/_0x35de7a*_0x344991,'width':_0x3bf648/_0x155e44*_0x5bbb26,'height':_0x5ea50a/_0x35de7a*_0x344991};}function _0x5d47e5(_0x99bdd1,_0x461871,_0x366bb6){const _0x321222=_0x59d572;let _0xb698dc=_0x461871[_0x321222(0x701)];!_0xb698dc||!_0x99bdd1[_0x321222(0x701)]||_0x99bdd1[_0x321222(0x701)](_0xb698dc[0x0],_0xb698dc[0x1],_0xb698dc[0x2],_0xb698dc[0x3],_0x4c83f8(_0xb698dc[0x4],_0x366bb6),_0x4c83f8(_0xb698dc[0x5],_0x366bb6));}function _0x4585ad(_0x55fcd8,_0xbaf063,_0x5317d2,_0x132c36,_0x474654,_0x5cee87){const _0x1e47f5=_0x59d572;if(!_0xbaf063['underline']||_0x474654<=0x0)return;let _0x16b1ee=_0x55fcd8[_0x1e47f5(0x2f3)],_0xc803df=_0x55fcd8[_0x1e47f5(0x521)];_0x55fcd8['strokeStyle']=_0x2aaac2(_0xbaf063),_0x55fcd8['lineWidth']=Math[_0x1e47f5(0x542)](0x1,_0x5cee87*0.06),_0x55fcd8[_0x1e47f5(0x995)](),_0x55fcd8['moveTo'](_0x5317d2,_0x132c36+Math[_0x1e47f5(0x542)](0x1,_0x5cee87*0.12)),_0x55fcd8[_0x1e47f5(0x5be)](_0x5317d2+_0x474654,_0x132c36+Math['max'](0x1,_0x5cee87*0.12)),_0x55fcd8[_0x1e47f5(0xa25)](),_0x55fcd8[_0x1e47f5(0x2f3)]=_0x16b1ee,_0x55fcd8[_0x1e47f5(0x521)]=_0xc803df;}function _0x2da0c5(_0xd389fe,_0x284755,_0x441771,_0x14c96b){const _0xabb7fe=_0x59d572;let _0x47f916=_0x284755['x']+_0x441771,_0x5877f5=Math[_0xabb7fe(0x542)](0x0,_0x284755[_0xabb7fe(0x65c)]-_0x441771*0x2);switch(_0xd389fe){case _0x21fa40[_0xabb7fe(0x938)][_0xabb7fe(0x745)]:return _0x47f916+Math[_0xabb7fe(0x542)](0x0,(_0x5877f5-_0x14c96b)/0x2);case _0x21fa40[_0xabb7fe(0x938)][_0xabb7fe(0x281)]:return _0x47f916+Math['max'](0x0,_0x5877f5-_0x14c96b);case _0x21fa40[_0xabb7fe(0x938)][_0xabb7fe(0x9b3)]:default:return _0x47f916;}}function _0x11bac4(_0x4203ad,_0x430b1b,_0xc07799){const _0x5ad550=_0x59d572;return''+(_0x4203ad[_0x5ad550(0x763)]?_0x5ad550(0xa41):'')+(_0x4203ad['bold']?'bold\x20':'')+_0x430b1b[_0x5ad550(0xc51)](0x2)+_0x5ad550(0x132)+_0x5db99f(_0x4203ad,_0xc07799);}function _0x5db99f(_0x3d600b,_0x5f3874){const _0x5f02e9=_0x59d572;var _0x4111ec,_0x2f72e6,_0xb6e657;let _0x8f7e8=_0x3d600b['fontId']?_0x5f3874['document'][_0x5f02e9(0xc33)][_0x5f02e9(0x261)][_0x3d600b['fontId']]:void 0x0,_0x347a77=_0x8f7e8?(_0x4111ec=_0x5f3874[_0x5f02e9(0x987)])==null?void 0x0:_0x4111ec[_0x5f02e9(0x3f4)](_0x5f3874,{'document':_0x5f3874[_0x5f02e9(0xb09)],'font':_0x8f7e8,'run':_0x3d600b}):void 0x0;if(_0x347a77)return _0x3acf3b(_0x347a77);let _0x57d0ac=_0x98a323((_0x2f72e6=(_0xb6e657=_0x8f7e8==null?void 0x0:_0x8f7e8[_0x5f02e9(0x858)])==null?_0x8f7e8==null?void 0x0:_0x8f7e8['postScriptName']:_0xb6e657)==null?_0x3d600b[_0x5f02e9(0xb3b)]:_0x2f72e6);return _0x57d0ac?_0x347653(_0x57d0ac):_0x5f02e9(0xcad);}function _0x98a323(_0xbdf8d9){const _0x22e61a=_0x59d572;var _0x282634;let _0x2f9440=_0xbdf8d9!=null&&_0xbdf8d9['startsWith']('/')?_0xbdf8d9[_0x22e61a(0x688)](0x1):_0xbdf8d9,_0x334958=_0x2f9440!=null&&_0x2f9440['includes']('+')?_0x2f9440[_0x22e61a(0x688)](_0x2f9440[_0x22e61a(0x709)]('+')+0x1):_0x2f9440;return(_0x282634=_0x334958==null?void 0x0:_0x334958[_0x22e61a(0xbf8)](/[^A-Za-z0-9 _-]/g,'')[_0x22e61a(0x4d9)]())==null?'':_0x282634;}function _0x347653(_0xeefd20){const _0x11d9f0=_0x59d572;return _0xeefd20[_0x11d9f0(0x8a8)](',')||_0x311e31(_0xeefd20)?_0xeefd20:'\x22'+_0xeefd20[_0x11d9f0(0xbf8)](/\\/g,'\x5c\x5c')[_0x11d9f0(0xbf8)](/"/g,'\x5c\x22')+_0x11d9f0(0xc75);}function _0x3acf3b(_0x3d3fe9){const _0x16088e=_0x59d572;let _0x5cbb53=_0x3d3fe9[_0x16088e(0x4d9)]();return!_0x5cbb53||_0x5cbb53[_0x16088e(0x8a8)](',')?_0x5cbb53||'Arial,\x20sans-serif':_0x5cbb53+_0x16088e(0x9d0);}function _0x311e31(_0x1d4344){const _0x102600=_0x59d572;return[_0x102600(0x37e),_0x102600(0x13d),_0x102600(0x76b),_0x102600(0x441),_0x102600(0xb0e),_0x102600(0x7e5)][_0x102600(0x8a8)](_0x1d4344['toLowerCase']());}function _0x2aaac2(_0xd5317e){const _0x7db94=_0x59d572;return typeof _0xd5317e['fill']=='string'?_0xd5317e[_0x7db94(0x9ae)]:_0x7db94(0x797);}function _0x4a5359(_0x3f9ca3){const _0x3d66ce=_0x59d572;let _0x3f7add=_0x3f9ca3[_0x3d66ce(0xbf8)](/\r\n/g,'\x0a')[_0x3d66ce(0xbf8)](/\r/g,'\x0a')[_0x3d66ce(0x3ba)]('\x0a');return _0x3f7add[_0x3d66ce(0xba6)]?_0x3f7add:[''];}function _0x5b2393(_0x2e30e1,_0x1720c3){return _0x289788(_0x2e30e1,_0x1720c3);}function _0xab97c5(_0x51ce83,_0x861513){const _0x44a234=_0x59d572;return _0x4c83f8((0x0,_0x21fa40[_0x44a234(0x7c3)])(_0x51ce83),_0x861513);}function _0x4c83f8(_0x416eed,_0x44e966){const _0x46201c=_0x59d572;return(0x0,_0x21fa40[_0x46201c(0xb35)])(_0x416eed)*_0x44e966[_0x46201c(0x68e)];}function _0x140032(_0x53588b,_0x521773,_0x1d29c2){const _0x21a3f7=_0x59d572;return Math[_0x21a3f7(0x542)](_0x521773,Math[_0x21a3f7(0xb2a)](_0x1d29c2,_0x53588b));}function _0x35c3b5(_0x36e647){const _0x42d4cf=_0x59d572;let {sourceSuppressionMatcher:_0x1109fb}=_0x36e647;if(!_0x1109fb[_0x42d4cf(0xc27)])return;let _0x20552e=[..._0x19dd6e(_0x36e647),..._0x59ea6e(_0x36e647)];if(_0x20552e[_0x42d4cf(0xba6)]!==0x0){_0x36e647[_0x42d4cf(0x12b)]['save'](),_0x36e647['context'][_0x42d4cf(0x3d0)]=_0x36e647[_0x42d4cf(0xb66)];for(let _0x3cb9be of _0x20552e)_0x391162(_0x36e647['context'],_0x3cb9be,_0x36e647[_0x42d4cf(0x809)]);_0x36e647[_0x42d4cf(0x12b)][_0x42d4cf(0x91c)]();}}function _0x19dd6e(_0x364a82){const _0x2672ac=_0x59d572;return _0x2add1b(_0x364a82[_0x2672ac(0xb09)],_0x364a82[_0x2672ac(0x175)]['id'])[_0x2672ac(0xbcd)](_0x140787=>{const _0x469c7d=_0x2672ac;var _0xfd0d39,_0x141f41,_0x5eff5d,_0x5a0335;let _0x2c8a79=(_0xfd0d39=_0x140787[_0x469c7d(0x419)])==null?void 0x0:_0xfd0d39[_0x469c7d(0xb54)];if(_0x2c8a79!=null&&_0x2c8a79[_0x469c7d(0xba6)]){var _0x121f59,_0x75f4f;let _0x2355c8=(_0x121f59=(_0x75f4f=_0x2c8a79[_0x2c8a79[_0x469c7d(0xba6)]-0x1])==null?void 0x0:_0x75f4f[_0x469c7d(0x121)])==null?_0x140787['id']:_0x121f59;return _0x364a82[_0x469c7d(0x54b)][_0x469c7d(0x3d8)](_0x2d5cf4(_0x2355c8,_0x21fa40[_0x469c7d(0xa18)][_0x469c7d(0x97d)]),_0x2c8a79);}return((_0x141f41=(_0x5eff5d=_0x140787[_0x469c7d(0xa04)])==null?(_0x5a0335=_0x140787['source'])==null?void 0x0:_0x5a0335[_0x469c7d(0xa2c)]:_0x5eff5d)==null?[_0x140787['id']]:_0x141f41)[_0x469c7d(0x790)](_0x4a3ef3=>_0x364a82['sourceSuppressionMatcher'][_0x469c7d(0x3d8)](_0x2d5cf4(_0x4a3ef3,_0x21fa40[_0x469c7d(0xa18)][_0x469c7d(0x97d)]),[{'operatorId':_0x4a3ef3}]));})[_0x2672ac(0xb06)](_0x352cf5=>_0x352cf5[_0x2672ac(0xa01)]);}function _0x59ea6e(_0x9b54fa){const _0x532221=_0x59d572;return _0x3c96bd(_0x9b54fa[_0x532221(0xb09)],_0x9b54fa['page']['id'])['filter'](_0x4bc225=>{const _0x5875b6=_0x532221;var _0x5584ed,_0x34b55e,_0x23b38b;let _0x308cfd=(_0x5584ed=_0x4bc225[_0x5875b6(0x419)])==null?void 0x0:_0x5584ed[_0x5875b6(0xb54)];if(_0x308cfd!=null&&_0x308cfd[_0x5875b6(0xba6)]){var _0xdd7b1d,_0x27316e;let _0x3d69f5=(_0xdd7b1d=(_0x27316e=_0x308cfd[_0x308cfd[_0x5875b6(0xba6)]-0x1])==null?void 0x0:_0x27316e[_0x5875b6(0x121)])==null?_0x4bc225['id']:_0xdd7b1d;return _0x9b54fa[_0x5875b6(0x54b)][_0x5875b6(0x3d8)](_0x2d5cf4(_0x3d69f5,_0x21fa40['PdfDisplayOpType'][_0x5875b6(0xc79)]),_0x308cfd);}return((_0x34b55e=(_0x23b38b=_0x4bc225[_0x5875b6(0x419)])==null?void 0x0:_0x23b38b[_0x5875b6(0xa2c)])==null?[_0x4bc225['id']]:_0x34b55e)['some'](_0x4f910d=>_0x9b54fa[_0x5875b6(0x54b)][_0x5875b6(0x3d8)](_0x2d5cf4(_0x4f910d,_0x21fa40[_0x5875b6(0xa18)][_0x5875b6(0xc79)]),[{'operatorId':_0x4f910d}]));})[_0x532221(0xb06)](_0x102cf9=>_0x102cf9['bbox']);}function _0x2d5cf4(_0x14093a,_0x4e0575){return{'id':_0x14093a,'type':_0x4e0575};}function _0x391162(_0x53bb49,_0x48ffb3,_0x24f181){const _0x46d13e=_0x59d572;let [_0x27bd10,_0x645ad3]=_0x11c653(_0x48ffb3),_0x3f10e6=_0xb4cc2(_0x27bd10[0x0],_0x24f181),_0x317c78=_0xb4cc2(_0x27bd10[0x1],_0x24f181),_0x2f216b=_0xb4cc2(_0x645ad3[0x0]-_0x27bd10[0x0],_0x24f181),_0x280529=_0xb4cc2(_0x645ad3[0x1]-_0x27bd10[0x1],_0x24f181);if(_0x2f216b<=0x0||_0x280529<=0x0)return;let _0x5a7673=1.5;_0x53bb49[_0x46d13e(0x428)](_0x3f10e6-_0x5a7673,_0x317c78-_0x5a7673,_0x2f216b+_0x5a7673*0x2,_0x280529+_0x5a7673*0x2);}function _0x11c653(_0xd3281e){const _0x8dc672=_0x59d572;return[[Math['min'](_0xd3281e[0x0],_0xd3281e[0x2]),Math['min'](_0xd3281e[0x1],_0xd3281e[0x3])],[Math[_0x8dc672(0x542)](_0xd3281e[0x0],_0xd3281e[0x2]),Math[_0x8dc672(0x542)](_0xd3281e[0x1],_0xd3281e[0x3])]];}function _0xb4cc2(_0x4adafa,_0x1bfef2){const _0x214644=_0x59d572;return(0x0,_0x21fa40[_0x214644(0xb35)])(_0x4adafa)*_0x1bfef2[_0x214644(0x68e)];}function _0x33e8b8(_0x35a2ee){const _0x3cb5b1=_0x59d572;var _0x5daad1,_0x374659;let _0x2e8ab6=new Set((_0x5daad1=_0x35a2ee[_0x3cb5b1(0x11c)])==null?[]:_0x5daad1),_0x4cb040=new Set(),_0x299a9e=[];for(let _0x1990de of(_0x374659=_0x35a2ee[_0x3cb5b1(0x4ce)])==null?[]:_0x374659){var _0xdc1c70,_0x3e99e2,_0x1ba503,_0x40869b,_0x309e56;if(_0x1990de[_0x3cb5b1(0xa6e)]===_0x21fa40[_0x3cb5b1(0x3cb)][_0x3cb5b1(0x351)])continue;let _0x2276ad=(_0xdc1c70=_0x1990de['operationPath'])==null?(_0x3e99e2=_0x1990de['source'])==null?void 0x0:_0x3e99e2[_0x3cb5b1(0xb54)]:_0xdc1c70;if(_0x2276ad!=null&&_0x2276ad[_0x3cb5b1(0xba6)]){_0x299a9e[_0x3cb5b1(0x381)](_0x2276ad);continue;}for(let _0x1e4637 of(_0x1ba503=(_0x40869b=_0x1990de['operatorIds'])==null?(_0x309e56=_0x1990de['source'])==null?void 0x0:_0x309e56['operatorIds']:_0x40869b)==null?[]:_0x1ba503)_0x4cb040['add'](_0x1e4637);}return{'hasSuppressions':_0x2e8ab6[_0x3cb5b1(0x71b)]>0x0||_0x4cb040['size']>0x0||_0x299a9e[_0x3cb5b1(0xba6)]>0x0,'isSuppressed'(_0x3ed867,_0x1b8092){const _0x3de750=_0x3cb5b1;return _0x2e8ab6[_0x3de750(0x66b)](_0x3ed867['id'])||_0x4cb040[_0x3de750(0x66b)](_0x3ed867['id'])?!0x0:_0x299a9e[_0x3de750(0x790)](_0x5da502=>_0x479fde(_0x5da502,_0x1b8092));}};}function _0x479fde(_0x530caa,_0x4b7d97){const _0x1ee9d3=_0x59d572;return _0x530caa[_0x1ee9d3(0xba6)]===_0x4b7d97[_0x1ee9d3(0xba6)]&&_0x530caa[_0x1ee9d3(0xbaa)]((_0x3ab8d0,_0x2812be)=>_0x54354e(_0x3ab8d0,_0x4b7d97[_0x2812be]));}function _0x54354e(_0x26a844,_0x1aa50d){const _0x59ed95=_0x59d572;return!(!_0x1aa50d||_0x26a844[_0x59ed95(0x121)]&&_0x26a844[_0x59ed95(0x121)]!==_0x1aa50d[_0x59ed95(0x121)]||_0x26a844[_0x59ed95(0x1b7)]&&_0x1aa50d['displayListId']&&_0x26a844['displayListId']!==_0x1aa50d['displayListId']||_0x26a844[_0x59ed95(0xb7b)]&&_0x1aa50d['resourceName']&&_0x26a844[_0x59ed95(0xb7b)]!==_0x1aa50d[_0x59ed95(0xb7b)]||_0x26a844['objectRef']&&_0x1aa50d[_0x59ed95(0x798)]&&_0x26a844[_0x59ed95(0x798)]!==_0x1aa50d[_0x59ed95(0x798)]||_0x26a844['assetId']&&_0x1aa50d[_0x59ed95(0x9c4)]&&_0x26a844['assetId']!==_0x1aa50d[_0x59ed95(0x9c4)]);}function _0x4b3226(_0x23486e,_0x35104c,_0xe9d1df,_0x5f39f1={}){const _0xeebef3=_0x59d572;let _0x4bc51c=(0x0,_0x21fa40[_0xeebef3(0x65d)])(_0x23486e)['pageById']['get'](_0x35104c);if(!_0x4bc51c)throw Error('PDF\x20page\x20not\x20found:\x20'+_0x35104c);let _0x6b26b8=_0xe9d1df[_0xeebef3(0x2f2)]('2d');if(!_0x6b26b8)throw Error('Canvas\x202D\x20context\x20is\x20not\x20available.');let _0x453282=_0x11ec03(_0x23486e,_0x5f39f1),_0x3c539e=_0x4f8e50(_0xe9d1df,_0x6b26b8,_0x4bc51c,_0x453282);try{_0x1ba0f6(_0x23486e,_0x4bc51c,_0x6b26b8,_0x3c539e,_0x453282);}finally{_0x6b26b8[_0xeebef3(0x91c)]();}return _0x3c539e;}function _0x11ec03(_0x478278,_0x176962){const _0xeef85d=_0x59d572;var _0x5c5105;return((_0x5c5105=_0x176962[_0xeef85d(0x33f)])==null?0x1:_0x5c5105)>=0x2||!_0x176962[_0xeef85d(0x925)]||!Object[_0xeef85d(0xaaf)](_0x478278['assets'][_0xeef85d(0x261)])[_0xeef85d(0x790)](_0x2111c0=>_0x2111c0[_0xeef85d(0x195)]&&_0x188ff5(_0x2111c0))?_0x176962:{..._0x176962,'devicePixelRatio':0x2};}function _0x1ba0f6(_0x4c3d3e,_0x3852d9,_0x3a3538,_0x2447b6,_0x577995){const _0x4e0826=_0x59d572;var _0x519065,_0x41ec51;_0x32c6e4(_0x3a3538,_0x2447b6,_0x577995);let _0x3fe58e=_0x1bccc5(_0x4c3d3e,_0x3852d9['id'],_0x577995),_0x12eaea=_0x33e8b8({'suppressedDisplayOperationIds':_0x577995[_0x4e0826(0x11c)],'sourceSuppressions':_0x3fe58e}),_0xe5e04e=_0x3e174e((_0x519065=_0x577995[_0x4e0826(0xbe0)])==null?void 0x0:_0x519065['call'](_0x577995,{'document':_0x4c3d3e,'page':_0x3852d9,'viewport':_0x2447b6}));if(_0xe5e04e&&_0x10c429(_0x3a3538,_0xe5e04e,_0x2447b6),_0x5f3ea5(_0x3a3538,_0x3852d9,_0x2447b6),_0x567c71(_0x3a3538,_0x3852d9,_0x2447b6),_0xe5e04e&&_0x577995[_0x4e0826(0x5ec)]){var _0x16dd6a;_0x35c3b5({'document':_0x4c3d3e,'page':_0x3852d9,'context':_0x3a3538,'viewport':_0x2447b6,'sourceSuppressionMatcher':_0x12eaea,'background':(_0x16dd6a=_0x577995['background'])==null?_0x4e0826(0x14d):_0x16dd6a}),_0x2c2abf({'document':_0x4c3d3e,'pageId':_0x3852d9['id'],'context':_0x3a3538,'viewport':_0x2447b6,'imageResolver':_0x577995[_0x4e0826(0x8eb)],'fontFamilyResolver':_0x577995[_0x4e0826(0x987)],'fontOutlineResolver':_0x577995['fontOutlineResolver'],'suppressedObjectIds':_0x577995[_0x4e0826(0xbcc)]}),_0x4adfce(_0x4c3d3e,_0x3852d9,_0x3a3538,_0x2447b6,_0x577995);return;}let _0x59d903=(_0x41ec51=_0x577995[_0x4e0826(0x759)])==null?(0x0,_0x3e1c10[_0x4e0826(0x179)])():_0x41ec51,_0x3195c5=(0x0,_0x3e1c10[_0x4e0826(0x24d)])(_0x4c3d3e,_0x3852d9,{'target':{'kind':'page','pageId':_0x3852d9['id']},'viewport':_0x2447b6}),_0x509261=_0x12eaea[_0x4e0826(0xc27)]?{..._0x3195c5,'ops':_0x3195c5[_0x4e0826(0xa6d)][_0x4e0826(0xbcd)](_0x295e88=>!_0x12eaea[_0x4e0826(0x3d8)](_0x295e88,[{'operatorId':_0x295e88['id']}]))}:_0x3195c5,_0x17c81d=_0x59d903[_0x4e0826(0x522)]({'id':_0x509261['id']+_0x4e0826(0x621),'plan':_0x509261,'backend':_0x1245e1(_0x3a3538,_0x2447b6,{'imageResolver':_0x577995[_0x4e0826(0x8eb)],'fontFamilyResolver':_0x577995[_0x4e0826(0x987)],'fontOutlineResolver':_0x577995[_0x4e0826(0x925)],'canvasFactory':_0x577995[_0x4e0826(0x7d5)],'groupCompositor':_0x577995['groupCompositor'],'enableTransparencyGroups':_0x577995[_0x4e0826(0x25d)],'sourceSuppressionMatcher':_0x12eaea})});if(_0x17c81d[_0x4e0826(0x52d)]===_0x4e0826(0x8e4))throw _0x17c81d[_0x4e0826(0x9d7)]instanceof Error?_0x17c81d[_0x4e0826(0x9d7)]:Error(_0x4e0826(0xab9)+String(_0x17c81d[_0x4e0826(0x9d7)]));_0x2c2abf({'document':_0x4c3d3e,'pageId':_0x3852d9['id'],'context':_0x3a3538,'viewport':_0x2447b6,'imageResolver':_0x577995[_0x4e0826(0x8eb)],'fontFamilyResolver':_0x577995[_0x4e0826(0x987)],'fontOutlineResolver':_0x577995['fontOutlineResolver'],'suppressedObjectIds':_0x577995[_0x4e0826(0xbcc)]}),_0x4adfce(_0x4c3d3e,_0x3852d9,_0x3a3538,_0x2447b6,_0x577995);}function _0x10c429(_0x390b9e,_0x11ef08,_0x444bab){const _0xb94b66=_0x59d572;let _0x5d9bee=_0x180789(_0x11ef08),_0xbbbdae=0x0,_0x33c3ba=0x0,_0x3731b0=_0x444bab[_0xb94b66(0x2c9)],_0x19e0a3=_0x444bab[_0xb94b66(0xc23)];if(_0x5d9bee&&_0x3731b0>0x0&&_0x19e0a3>0x0){let _0x313129=_0x5d9bee['width']/_0x5d9bee[_0xb94b66(0x1ae)],_0x28a55a=_0x3731b0/_0x19e0a3;if(Math[_0xb94b66(0x7f7)](_0x313129/_0x28a55a-0x1)>0.01){let _0x1875f9=Math[_0xb94b66(0xb2a)](_0x3731b0/_0x5d9bee[_0xb94b66(0x65c)],_0x19e0a3/_0x5d9bee[_0xb94b66(0x1ae)]);_0x3731b0=_0x5d9bee[_0xb94b66(0x65c)]*_0x1875f9,_0x19e0a3=_0x5d9bee['height']*_0x1875f9,_0xbbbdae=(_0x444bab[_0xb94b66(0x2c9)]-_0x3731b0)/0x2,_0x33c3ba=(_0x444bab[_0xb94b66(0xc23)]-_0x19e0a3)/0x2;}}let _0x3ae9c0=_0x5d9bee!==void 0x0&&(_0x5d9bee[_0xb94b66(0x65c)]<_0x3731b0*_0x444bab[_0xb94b66(0xa52)]||_0x5d9bee[_0xb94b66(0x1ae)]<_0x19e0a3*_0x444bab['canvasScaleY']),_0x27d1fb=_0x390b9e[_0xb94b66(0x1c5)];_0x3ae9c0&&(_0x390b9e[_0xb94b66(0x1c5)]=!0x1);try{_0x390b9e[_0xb94b66(0x198)](_0x11ef08,_0xbbbdae,_0x33c3ba,_0x3731b0,_0x19e0a3);}finally{_0x3ae9c0&&(_0x390b9e['imageSmoothingEnabled']=_0x27d1fb);}}function _0x180789(_0x25ecc2){const _0x55e6e0=_0x59d572;let _0x582ef8=_0x25ecc2,_0x415077=_0x582ef8[_0x55e6e0(0x9bc)]||_0x582ef8[_0x55e6e0(0xa45)]||_0x582ef8[_0x55e6e0(0x65c)],_0x5468da=_0x582ef8[_0x55e6e0(0xa8a)]||_0x582ef8['videoHeight']||_0x582ef8['height'];return typeof _0x415077==_0x55e6e0(0x97e)&&_0x415077>0x0&&typeof _0x5468da=='number'&&_0x5468da>0x0?{'width':_0x415077,'height':_0x5468da}:void 0x0;}function _0x1bccc5(_0x4f753a,_0x2d7421,_0x161906){const _0x45a48a=_0x59d572;let _0x3556a9=(0x0,_0x21fa40[_0x45a48a(0x65d)])(_0x4f753a)[_0x45a48a(0x447)](_0x2d7421),_0x13169d=_0x161906[_0x45a48a(0x4ce)]?Array[_0x45a48a(0x8c1)](_0x161906[_0x45a48a(0x4ce)]):[],_0x50c6af=[..._0x3556a9,..._0x13169d];return _0x50c6af[_0x45a48a(0xba6)]?_0x50c6af:void 0x0;}function _0x4f8e50(_0x454579,_0x18a3ae,_0x50bef3,_0x1e4dc5){const _0x1238ee=_0x59d572;let _0x497947=_0x11bd08(_0x50bef3,{'zoom':_0x1e4dc5['zoom'],'devicePixelRatio':_0x1e4dc5[_0x1238ee(0x33f)]});return _0x454579['width']=_0x497947[_0x1238ee(0x2a1)],_0x454579['height']=_0x497947[_0x1238ee(0x4cd)],_0x454579[_0x1238ee(0x2f9)]&&(_0x454579[_0x1238ee(0x2f9)][_0x1238ee(0x65c)]=_0x497947[_0x1238ee(0x2c9)]+'px',_0x454579[_0x1238ee(0x2f9)]['height']=_0x497947['heightCssPx']+'px'),_0x18a3ae[_0x1238ee(0x8f9)](),_0x18a3ae['setTransform']&&_0x18a3ae[_0x1238ee(0xc55)](_0x497947[_0x1238ee(0xa52)],0x0,0x0,_0x497947['canvasScaleY'],0x0,0x0),_0x18a3ae['clearRect'](0x0,0x0,_0x497947[_0x1238ee(0x2c9)],_0x497947['heightCssPx']),_0x497947;}function _0x32c6e4(_0x3d474a,_0x5a0c61,_0x3307f1){const _0x3f552c=_0x59d572;var _0x57a8b7,_0x29eaed;if(_0x3d474a[_0x3f552c(0x3d0)]=(_0x57a8b7=_0x3307f1[_0x3f552c(0xb66)])==null?_0x3f552c(0x14d):_0x57a8b7,_0x3d474a[_0x3f552c(0x428)](0x0,0x0,_0x5a0c61[_0x3f552c(0x2c9)],_0x5a0c61[_0x3f552c(0xc23)]),(_0x29eaed=_0x3307f1[_0x3f552c(0xc37)])==null||_0x29eaed){var _0x117d91;_0x3d474a[_0x3f552c(0x2f3)]='#d0d7de',_0x3d474a[_0x3f552c(0x521)]=0x1,(_0x117d91=_0x3d474a[_0x3f552c(0xa95)])==null||_0x117d91['call'](_0x3d474a,0.5,0.5,_0x5a0c61[_0x3f552c(0x2c9)]-0x1,_0x5a0c61[_0x3f552c(0xc23)]-0x1);}}function _0x4adfce(_0x515516,_0x312e74,_0x441a52,_0x2b2918,_0x68542a){const _0x48354f=_0x59d572;var _0xebb7bc;let _0x3a1dab=new Set(_0x312e74['layers'][_0x48354f(0x13c)](_0x381617=>_0x381617['objectIds'])),_0x96e369=Object[_0x48354f(0xaaf)](_0x515516[_0x48354f(0x41f)])[_0x48354f(0xbcd)](_0x2e4bb0=>_0x3a1dab[_0x48354f(0x66b)](_0x2e4bb0['id']));if(_0x68542a[_0x48354f(0x517)]){for(let _0x4feb06 of _0x96e369['filter'](_0x5400bc=>_0x5400bc[_0x48354f(0x2c1)]==='rawPdfGroup'))_0x102fd7(_0x4feb06,_0x441a52,_0x2b2918,'#f59e0b');}if((_0xebb7bc=_0x68542a[_0x48354f(0xbff)])==null||_0xebb7bc){for(let _0x3a3c80 of _0x96e369[_0x48354f(0xbcd)](_0x4c1194=>_0x4c1194[_0x48354f(0x2c1)]===_0x48354f(0x4dd)))if(!_0x2a0784(_0x515516,_0x312e74,_0x3a3c80,_0x441a52,_0x2b2918,_0x68542a)){if(_0x3a3c80[_0x48354f(0xbb9)]===_0x21fa40[_0x48354f(0x185)][_0x48354f(0x3f2)]&&_0x3a3c80[_0x48354f(0x46a)]){_0x4f05c1(_0x3a3c80,_0x441a52,_0x2b2918);continue;}if(_0x3a3c80['markup']){_0x19279e(_0x3a3c80,_0x441a52,_0x2b2918);continue;}if(_0x3a3c80[_0x48354f(0xace)]){_0x2872b7(_0x3a3c80,_0x441a52,_0x2b2918);continue;}if(_0x3a3c80[_0x48354f(0xb92)]&&(_0x3a3c80[_0x48354f(0xbb9)]===_0x21fa40[_0x48354f(0x185)][_0x48354f(0xa9c)]||_0x3a3c80[_0x48354f(0xbb9)]===_0x21fa40[_0x48354f(0x185)][_0x48354f(0x1ab)])){_0x2af666(_0x3a3c80,_0x441a52,_0x2b2918);continue;}if(_0x3a3c80[_0x48354f(0xbb9)]===_0x21fa40[_0x48354f(0x185)]['WIDGET']&&_0x3a3c80[_0x48354f(0x896)]){_0x448cbe(_0x515516,_0x312e74,_0x3a3c80,_0x441a52,_0x2b2918,_0x68542a);continue;}_0x68542a[_0x48354f(0x8bd)]&&_0x102fd7(_0x3a3c80,_0x441a52,_0x2b2918,_0x3a3c80['annotationType']===_0x21fa40['PdfAnnotationType'][_0x48354f(0x6eb)]?_0x48354f(0x9dd):'#8b5cf6');}}}function _0x5f3ea5(_0x47a4a1,_0x1b979e,_0x4d7ef8){const _0x1e27d0=_0x59d572;if(!_0x47a4a1['setTransform'])return;let _0x6087d5=_0x4d7ef8[_0x1e27d0(0xa52)],_0xd6be71=_0x4d7ef8[_0x1e27d0(0xa92)],_0x5e7843=_0x4d7ef8[_0x1e27d0(0xb6c)],_0x131391=_0x4d7ef8[_0x1e27d0(0x80f)];switch(_0x1b979e[_0x1e27d0(0x814)]){case 0x5a:_0x47a4a1[_0x1e27d0(0xc55)](0x0,_0xd6be71,-_0x6087d5,0x0,(_0x4d7ef8[_0x1e27d0(0x2c9)]-_0x131391)*_0x6087d5,_0x5e7843*_0xd6be71);return;case 0xb4:_0x47a4a1[_0x1e27d0(0xc55)](-_0x6087d5,0x0,0x0,-_0xd6be71,(_0x4d7ef8[_0x1e27d0(0x2c9)]-_0x5e7843)*_0x6087d5,(_0x4d7ef8[_0x1e27d0(0xc23)]-_0x131391)*_0xd6be71);return;case 0x10e:_0x47a4a1['setTransform'](0x0,-_0xd6be71,_0x6087d5,0x0,_0x131391*_0x6087d5,(_0x4d7ef8[_0x1e27d0(0xc23)]-_0x5e7843)*_0xd6be71);return;default:(_0x5e7843!==0x0||_0x131391!==0x0)&&_0x47a4a1[_0x1e27d0(0xc55)](_0x6087d5,0x0,0x0,_0xd6be71,_0x5e7843*_0x6087d5,_0x131391*_0xd6be71);}}function _0x567c71(_0x1d4ccc,_0x1c5f89,_0x5c8062){const _0x412baa=_0x59d572;if(!_0x1d4ccc[_0x412baa(0x837)]||!_0x1c5f89['pdfBoxes'][_0x412baa(0x58c)]||_0x16f3b9(_0x1c5f89['pdfBoxes'][_0x412baa(0x58c)],_0x1c5f89[_0x412baa(0x336)][_0x412baa(0xca2)]))return;let [_0x49148b,_0x5c55d5,_0x2f45b8,_0x260b54]=_0x1fe4e8(_0x45c2f7(_0x1c5f89[_0x412baa(0x336)][_0x412baa(0x58c)],_0x1c5f89['pdfBoxes'][_0x412baa(0xca2)]),_0x5c8062);_0x1d4ccc[_0x412baa(0x995)](),_0x1d4ccc[_0x412baa(0x998)](_0x49148b,_0x5c55d5,_0x2f45b8,_0x260b54),_0x1d4ccc[_0x412baa(0x837)]();}function _0x4f05c1(_0x320f75,_0x26002e,_0x76dabd){const _0x185739=_0x59d572;if(!_0x320f75['line'])return;let [_0x39de0c,_0x1b085b]=_0xe13a26(_0x320f75[_0x185739(0x46a)][_0x185739(0x3c1)],_0x76dabd),[_0x6d3f5c,_0x2334ac]=_0xe13a26(_0x320f75[_0x185739(0x46a)][_0x185739(0x392)],_0x76dabd),_0x3c810e=_0x320f75[_0x185739(0x46a)][_0x185739(0xa25)];_0x26002e['save'](),_0x26002e[_0x185739(0x2f3)]=typeof(_0x3c810e==null?void 0x0:_0x3c810e[_0x185739(0x6aa)])=='string'?_0x3c810e[_0x185739(0x6aa)]:_0x185739(0x999),_0x26002e[_0x185739(0x521)]=_0x3c810e!=null&&_0x3c810e['width']?Math[_0x185739(0x542)](0.5,_0x2253bb(_0x3c810e[_0x185739(0x65c)],_0x76dabd)):0x1,_0x26002e[_0x185739(0x995)](),_0x26002e[_0x185739(0x80a)](_0x39de0c,_0x1b085b),_0x26002e[_0x185739(0x5be)](_0x6d3f5c,_0x2334ac),_0x26002e[_0x185739(0xa25)](),_0x26002e[_0x185739(0x91c)]();}function _0x19279e(_0x1cccfd,_0x20c7fb,_0x57bc0c){const _0x49eee9=_0x59d572;var _0x4146c6;if(_0x1cccfd[_0x49eee9(0x646)]){_0x20c7fb[_0x49eee9(0x8f9)](),_0x20c7fb[_0x49eee9(0x3d0)]=typeof _0x1cccfd[_0x49eee9(0x646)]['color']==_0x49eee9(0x221)?_0x1cccfd['markup'][_0x49eee9(0x6aa)]:'#fff176',_0x20c7fb[_0x49eee9(0x2f3)]=typeof _0x1cccfd[_0x49eee9(0x646)][_0x49eee9(0x6aa)]==_0x49eee9(0x221)?_0x1cccfd[_0x49eee9(0x646)][_0x49eee9(0x6aa)]:_0x49eee9(0xa86),_0x20c7fb['globalAlpha']=(_0x4146c6=_0x1cccfd[_0x49eee9(0x646)][_0x49eee9(0x91d)])==null?_0x1cccfd[_0x49eee9(0xbb9)]===_0x21fa40[_0x49eee9(0x185)][_0x49eee9(0x736)]?0.35:0x1:_0x4146c6;for(let _0x2c630e of _0x1cccfd[_0x49eee9(0x646)][_0x49eee9(0x70e)]){if(_0x1cccfd['annotationType']===_0x21fa40[_0x49eee9(0x185)][_0x49eee9(0x736)]){_0x20c7fb['beginPath'](),_0x57fefb(_0x20c7fb,_0x2c630e,_0x57bc0c),_0x20c7fb[_0x49eee9(0x9ae)]();continue;}_0x52ff01(_0x20c7fb,_0x2c630e,_0x57bc0c,_0x1cccfd[_0x49eee9(0xbb9)]);}_0x20c7fb[_0x49eee9(0x91c)]();}}function _0x52ff01(_0x494c13,_0x4f8451,_0xe4f74a,_0x315882){const _0x3e309a=_0x59d572;let _0x4a57b9=_0x4f45c7(_0x4f8451[0x0],_0x4f8451[0x2]),_0x590cc9=_0x4f45c7(_0x4f8451[0x1],_0x4f8451[0x3]),_0x9e35ec=_0x4f45c7(_0x4f8451[0x0],_0x4f8451[0x1]),_0x5c75f5=_0x4f45c7(_0x4f8451[0x2],_0x4f8451[0x3]),_0x247572=_0x315882===_0x21fa40[_0x3e309a(0x185)][_0x3e309a(0x966)]?_0x4f45c7(_0x9e35ec,_0x5c75f5)[0x1]:_0x5c75f5[0x1],[_0x4901e3,_0x24b411]=_0xe13a26([_0x4a57b9[0x0],_0x247572],_0xe4f74a),[_0xfde36f,_0x11f8aa]=_0xe13a26([_0x590cc9[0x0],_0x247572],_0xe4f74a);if(_0x494c13[_0x3e309a(0x521)]=_0x315882===_0x21fa40[_0x3e309a(0x185)][_0x3e309a(0x32c)]?0x1:1.5,_0x494c13[_0x3e309a(0x995)](),_0x494c13[_0x3e309a(0x80a)](_0x4901e3,_0x24b411),_0x315882===_0x21fa40[_0x3e309a(0x185)][_0x3e309a(0x32c)])for(let _0x9999bd=0x1;_0x9999bd<=0x8;_0x9999bd+=0x1){let _0x34b387=_0x9999bd/0x8,_0xe422cd=_0x4901e3+(_0xfde36f-_0x4901e3)*_0x34b387,_0x3e16ce=_0x24b411+(_0x9999bd%0x2==0x0?-0x2:0x2);_0x494c13[_0x3e309a(0x5be)](_0xe422cd,_0x3e16ce);}else _0x494c13[_0x3e309a(0x5be)](_0xfde36f,_0x11f8aa);_0x494c13['stroke']();}function _0x2872b7(_0x25eb5f,_0x1a6bd7,_0x3c6488){const _0x38d364=_0x59d572;if(_0x25eb5f['ink']){_0x1a6bd7[_0x38d364(0x8f9)](),_0x2f5257(_0x1a6bd7,_0x25eb5f[_0x38d364(0xace)]['stroke'],_0x3c6488,'#000000');for(let _0x4d7fd4 of _0x25eb5f[_0x38d364(0xace)][_0x38d364(0x990)]){if(_0x4d7fd4['length']===0x0)continue;let [_0x3dbe67,_0x5d265a]=_0xe13a26(_0x4d7fd4[0x0],_0x3c6488);_0x1a6bd7[_0x38d364(0x995)](),_0x1a6bd7[_0x38d364(0x80a)](_0x3dbe67,_0x5d265a);for(let _0xf1b2ce of _0x4d7fd4[_0x38d364(0x688)](0x1)){let [_0x3d47e4,_0x34197f]=_0xe13a26(_0xf1b2ce,_0x3c6488);_0x1a6bd7[_0x38d364(0x5be)](_0x3d47e4,_0x34197f);}_0x1a6bd7[_0x38d364(0xa25)]();}_0x1a6bd7['restore']();}}function _0x2af666(_0x4eadf1,_0x86ef9c,_0x2e2574){const _0x3d2b68=_0x59d572;var _0x30b33f,_0xec535b;let [_0x2b50a3,_0x2c8b34,_0x313037,_0x4e73f8]=_0x1fe4e8(_0x4eadf1[_0x3d2b68(0xa01)],_0x2e2574);if(_0x86ef9c[_0x3d2b68(0x8f9)](),_0x86ef9c['beginPath'](),_0x4eadf1[_0x3d2b68(0xbb9)]===_0x21fa40[_0x3d2b68(0x185)]['CIRCLE']&&_0x86ef9c[_0x3d2b68(0x7a7)]?_0x86ef9c[_0x3d2b68(0x7a7)](_0x2b50a3+_0x313037/0x2,_0x2c8b34+_0x4e73f8/0x2,Math[_0x3d2b68(0x7f7)](_0x313037/0x2),Math['abs'](_0x4e73f8/0x2),0x0,0x0,Math['PI']*0x2):_0x86ef9c[_0x3d2b68(0x998)](_0x2b50a3,_0x2c8b34,_0x313037,_0x4e73f8),(_0x30b33f=_0x4eadf1[_0x3d2b68(0xb92)])!=null&&(_0x30b33f=_0x30b33f['interiorFill'])!=null&&_0x30b33f[_0x3d2b68(0x6aa)]){var _0x24124e;_0x86ef9c[_0x3d2b68(0x7bb)]=(_0x24124e=_0x4eadf1[_0x3d2b68(0xb92)][_0x3d2b68(0x1e4)][_0x3d2b68(0x91d)])==null?_0x86ef9c[_0x3d2b68(0x7bb)]:_0x24124e,_0x86ef9c['fillStyle']=typeof _0x4eadf1['shape'][_0x3d2b68(0x1e4)][_0x3d2b68(0x6aa)]=='string'?_0x4eadf1['shape'][_0x3d2b68(0x1e4)][_0x3d2b68(0x6aa)]:_0x3d2b68(0x14d),_0x86ef9c[_0x3d2b68(0x9ae)]();}_0x2f5257(_0x86ef9c,(_0xec535b=_0x4eadf1['shape'])==null?void 0x0:_0xec535b[_0x3d2b68(0xb4a)],_0x2e2574,_0x3d2b68(0x999)),_0x86ef9c[_0x3d2b68(0xa25)](),_0x86ef9c[_0x3d2b68(0x91c)]();}function _0x448cbe(_0x4111e9,_0x177dc8,_0x2c3d1c,_0x35f33d,_0x117c34,_0x58c4b7){const _0x3e0c87=_0x59d572;var _0x4d4941;if(_0x2a0784(_0x4111e9,_0x177dc8,_0x2c3d1c,_0x35f33d,_0x117c34,_0x58c4b7)||!_0x405b41(_0x2c3d1c,_0x58c4b7))return;let [_0xd39c82,_0x4136a8,_0x55dd31,_0x3ca4fd]=_0x1fe4e8(_0x2c3d1c[_0x3e0c87(0xa01)],_0x117c34);_0x35f33d[_0x3e0c87(0x8f9)](),_0x56f45d(_0x2c3d1c,_0x35f33d,_0xd39c82,_0x4136a8,_0x55dd31,_0x3ca4fd,_0x117c34),((_0x4d4941=_0x2c3d1c['widget'])==null?void 0x0:_0x4d4941['fieldType'])===_0x3e0c87(0x675)&&_0x2c3d1c['widget']['appearanceState']&&_0x2c3d1c[_0x3e0c87(0x896)][_0x3e0c87(0xbab)]!==_0x3e0c87(0x465)&&(_0x35f33d['beginPath'](),_0x35f33d[_0x3e0c87(0x80a)](_0xd39c82+_0x55dd31*0.2,_0x4136a8+_0x3ca4fd*0.5),_0x35f33d[_0x3e0c87(0x5be)](_0xd39c82+_0x55dd31*0.42,_0x4136a8+_0x3ca4fd*0.75),_0x35f33d[_0x3e0c87(0x5be)](_0xd39c82+_0x55dd31*0.82,_0x4136a8+_0x3ca4fd*0.25),_0x35f33d[_0x3e0c87(0xa25)]()),_0x1af0ca(_0x2c3d1c)&&_0x27ff89(_0x2c3d1c,_0x35f33d,_0xd39c82,_0x4136a8,_0x55dd31,_0x3ca4fd,_0x117c34),_0x35f33d[_0x3e0c87(0x91c)]();}function _0x56f45d(_0xa25c1,_0x8a98eb,_0x16f805,_0x3e8b5b,_0x1de12b,_0x57e033,_0xe9daa3){const _0x55dd8c=_0x59d572;var _0x10f19e;let _0x278b94=_0xa25c1[_0x55dd8c(0x896)];_0x278b94!=null&&_0x278b94[_0x55dd8c(0x122)]&&(_0x8a98eb[_0x55dd8c(0x3d0)]=_0x1ce083(_0x278b94['backgroundColor'],'#ffffff'),_0x8a98eb[_0x55dd8c(0x428)](_0x16f805,_0x3e8b5b,_0x1de12b,_0x57e033));let _0x1ffb91=(_0x278b94==null?void 0x0:_0x278b94['borderWidth'])===void 0x0?0x1:_0x2253bb(_0x278b94['borderWidth'],_0xe9daa3);_0x1ffb91<=0x0||(_0x8a98eb[_0x55dd8c(0x2f3)]=_0x1ce083(_0x278b94==null?void 0x0:_0x278b94['borderColor'],'#64748b'),_0x8a98eb[_0x55dd8c(0x521)]=Math[_0x55dd8c(0x542)](0.5,_0x1ffb91),(_0x10f19e=_0x8a98eb[_0x55dd8c(0xa95)])==null||_0x10f19e['call'](_0x8a98eb,_0x16f805,_0x3e8b5b,_0x1de12b,_0x57e033));}function _0x405b41(_0x4a1df4,_0x1d751b){const _0x4478ba=_0x59d572;var _0x19fb20,_0x458668,_0x57c7ff,_0x1917af;return _0x1d751b[_0x4478ba(0x8bd)]?!0x0:((_0x19fb20=_0x4a1df4[_0x4478ba(0x896)])==null?void 0x0:_0x19fb20['fieldType'])===_0x21fa40['PdfFormFieldType'][_0x4478ba(0x97d)]?!!_0x4a1df4[_0x4478ba(0x896)][_0x4478ba(0x3a5)]||_0x456bb8(_0x4a1df4)['length']>0x0||_0x4a1df4[_0x4478ba(0x896)][_0x4478ba(0x122)]!==void 0x0||_0x4a1df4['widget'][_0x4478ba(0x10e)]!==void 0x0||_0x4a1df4[_0x4478ba(0x896)]['borderWidth']!==void 0x0:((_0x458668=_0x4a1df4['widget'])==null?void 0x0:_0x458668[_0x4478ba(0x6e3)])===_0x4478ba(0x675)||((_0x57c7ff=_0x4a1df4['widget'])==null?void 0x0:_0x57c7ff[_0x4478ba(0x6e3)])===_0x4478ba(0x49a)||!!((_0x1917af=_0x4a1df4[_0x4478ba(0x896)])!=null&&_0x1917af[_0x4478ba(0xbab)]&&_0x4a1df4[_0x4478ba(0x896)][_0x4478ba(0xbab)]!=='/Off');}function _0x1af0ca(_0x38ebee){const _0x1db8bf=_0x59d572;var _0x41965a;return((_0x41965a=_0x38ebee['widget'])==null?void 0x0:_0x41965a[_0x1db8bf(0x6e3)])===_0x21fa40[_0x1db8bf(0xadb)][_0x1db8bf(0x97d)]&&(!!_0x38ebee[_0x1db8bf(0x896)][_0x1db8bf(0x3a5)]||_0x456bb8(_0x38ebee)[_0x1db8bf(0xba6)]>0x0);}function _0x27ff89(_0x1dd2ca,_0x5eefcd,_0x1b6534,_0x1240d7,_0x522f32,_0x383873,_0x42ae83){const _0x378309=_0x59d572;var _0x2f9723,_0x1cb943;let _0x52e378=_0x456bb8(_0x1dd2ca);if(!_0x52e378)return;let _0x856dd=(_0x2f9723=_0x1dd2ca['widget'])==null?void 0x0:_0x2f9723[_0x378309(0x393)],_0x60b046=_0x856dd!=null&&_0x856dd[_0x378309(0x845)]&&_0x856dd[_0x378309(0x845)]>0x0?_0x2253bb((0x0,_0x21fa40[_0x378309(0x7c3)])(_0x856dd['fontSize']),_0x42ae83):void 0x0,_0x1ed5f9=_0x380900((_0x1cb943=_0x1dd2ca['widget'])==null?void 0x0:_0x1cb943[_0x378309(0x39a)])||/[\r\n]/[_0x378309(0xc39)](_0x52e378),_0x6ca579=Math['min'](0x6,Math[_0x378309(0x542)](0x2,Math['min'](_0x522f32,_0x383873)*0.08)),_0x579d96=Math[_0x378309(0x542)](0x0,_0x522f32-_0x6ca579*0x2),_0x1792db=_0x51f278(_0x856dd==null?void 0x0:_0x856dd[_0x378309(0x5ff)]),_0x5d2418=_0x60b046==null?_0x987f53(_0x52e378,_0x383873,_0x6ca579,_0x1ed5f9):_0x60b046;_0x5eefcd[_0x378309(0x8f9)](),_0x5eefcd[_0x378309(0x7da)]=_0x5d2418+_0x378309(0x132)+_0x1792db;let _0x31bcde=_0x1ed5f9?_0x2a8ed6(_0x52e378,_0x579d96,_0x5eefcd,_0x5d2418):[_0x52e378['replace'](/[\r\n]+/g,'\x20')];_0x60b046||(_0x5d2418=_0x4ddc26(_0x52e378,_0x31bcde,_0x579d96,_0x383873,_0x6ca579,_0x1ed5f9,_0x5eefcd,_0x1792db,_0x5d2418),_0x5eefcd[_0x378309(0x7da)]=_0x5d2418+_0x378309(0x132)+_0x1792db,_0x31bcde=_0x1ed5f9?_0x2a8ed6(_0x52e378,_0x579d96,_0x5eefcd,_0x5d2418):[_0x52e378[_0x378309(0xbf8)](/[\r\n]+/g,'\x20')]),_0x5eefcd[_0x378309(0x837)]&&(_0x5eefcd['beginPath'](),_0x5eefcd[_0x378309(0x998)](_0x1b6534+_0x6ca579,_0x1240d7+_0x6ca579,_0x579d96,Math[_0x378309(0x542)](0x0,_0x383873-_0x6ca579*0x2)),_0x5eefcd[_0x378309(0x837)]()),_0x5eefcd[_0x378309(0x3d0)]=_0x1ce083(_0x856dd==null?void 0x0:_0x856dd[_0x378309(0x56d)],_0x378309(0x797)),_0x5eefcd[_0x378309(0xb34)]=_0x378309(0xb72),_0x539b0c(_0x31bcde,_0x1dd2ca,_0x5eefcd,_0x1b6534,_0x1240d7,_0x522f32,_0x383873,_0x6ca579,_0x5d2418,_0x1ed5f9),_0x5eefcd[_0x378309(0x91c)]();}function _0x539b0c(_0x315f8b,_0x2a5fa4,_0x337f8f,_0x22f851,_0x4e0910,_0x251d9d,_0x1644b5,_0x1294ba,_0x291bf0,_0x25a305){const _0x5d8876=_0x59d572;let _0x21b2bb=_0x291bf0*1.18,_0x3cb8cf=_0x25a305?Math['max'](0x1,Math[_0x5d8876(0x559)](Math[_0x5d8876(0x542)](0x0,_0x1644b5-_0x1294ba*0x2)/_0x21b2bb)):0x1,_0x156485=_0x315f8b[_0x5d8876(0x688)](0x0,_0x3cb8cf),_0x521d1b=_0x25a305?_0x4e0910+_0x1294ba+_0x291bf0:_0x4e0910+Math[_0x5d8876(0x542)](_0x291bf0,(_0x1644b5+_0x291bf0*0.72)/0x2);_0x156485[_0x5d8876(0xc9d)]((_0x17d42f,_0x3a0653)=>{const _0xeef5a7=_0x5d8876;var _0x16dac2,_0x4efc8a,_0x189750;let _0x2f8a6f=(_0x16dac2=(_0x4efc8a=_0x337f8f[_0xeef5a7(0x5ad)])==null?void 0x0:_0x4efc8a[_0xeef5a7(0x3f4)](_0x337f8f,_0x17d42f)[_0xeef5a7(0x65c)])==null?_0x17d42f[_0xeef5a7(0xba6)]*_0x291bf0*0.5:_0x16dac2,_0x170b90=_0x5aa27e((_0x189750=_0x2a5fa4[_0xeef5a7(0x896)])==null?void 0x0:_0x189750['quadding'],_0x22f851,_0x251d9d,_0x1294ba,_0x2f8a6f);_0x337f8f[_0xeef5a7(0x7e4)](_0x17d42f,_0x170b90,_0x521d1b+_0x3a0653*_0x21b2bb);});}function _0x987f53(_0x57bd61,_0x2c128d,_0x150e12,_0x4068ef){const _0x52157d=_0x59d572;if(!_0x4068ef)return Math[_0x52157d(0x542)](0x8,_0x2c128d*0.58);let _0x27f851=Math['max'](0x1,_0x5b0bc2(_0x57bd61)[_0x52157d(0xba6)]);return Math[_0x52157d(0x542)](0x7,Math[_0x52157d(0xb2a)](0xe,(_0x2c128d-_0x150e12*0x2)/Math[_0x52157d(0xb2a)](_0x27f851,0x4)*0.78));}function _0x4ddc26(_0x5d08a9,_0x3abecc,_0x407502,_0xb9be8,_0x324159,_0x19c9f4,_0x12b1bd,_0x1d492b,_0x18b0f3){const _0x54ded9=_0x59d572;let _0x5bc23a=_0x18b0f3;for(;_0x5bc23a>0x6;){_0x12b1bd[_0x54ded9(0x7da)]=_0x5bc23a+_0x54ded9(0x132)+_0x1d492b;let _0x283f71=_0x19c9f4?_0x2a8ed6(_0x5d08a9,_0x407502,_0x12b1bd,_0x5bc23a):_0x3abecc,_0x34a53f=Math['max'](..._0x283f71['map'](_0x1946d9=>{const _0xea2a83=_0x54ded9;var _0x131bba,_0x443808;return(_0x131bba=(_0x443808=_0x12b1bd[_0xea2a83(0x5ad)])==null?void 0x0:_0x443808[_0xea2a83(0x3f4)](_0x12b1bd,_0x1946d9)[_0xea2a83(0x65c)])==null?_0x1946d9['length']*_0x5bc23a*0.5:_0x131bba;}),0x0),_0x107df6=_0x283f71[_0x54ded9(0xba6)]*_0x5bc23a*1.18;if(_0x34a53f<=_0x407502&&(!_0x19c9f4||_0x107df6<=Math[_0x54ded9(0x542)](0x0,_0xb9be8-_0x324159*0x2)))break;_0x5bc23a-=0.5;}return Math['max'](0x6,_0x5bc23a);}function _0x2a8ed6(_0x592a3f,_0x1f1ee8,_0x3a006e,_0x28020f){const _0x4269af=_0x59d572;let _0x244b94=[];for(let _0x2372bc of _0x5b0bc2(_0x592a3f)){let _0x3f538e=_0x2372bc[_0x4269af(0x3ba)](/(\s+)/)['filter'](_0x24c45e=>_0x24c45e[_0x4269af(0xba6)]>0x0),_0x29dd91='';for(let _0x2dedb9 of _0x3f538e){var _0x2d74b7,_0x25d97a;let _0x276f86=''+_0x29dd91+_0x2dedb9,_0x350cbf=(_0x2d74b7=(_0x25d97a=_0x3a006e['measureText'])==null?void 0x0:_0x25d97a[_0x4269af(0x3f4)](_0x3a006e,_0x276f86)[_0x4269af(0x65c)])==null?_0x276f86['length']*_0x28020f*0.5:_0x2d74b7;if(_0x29dd91&&_0x350cbf>_0x1f1ee8){_0x244b94[_0x4269af(0x381)](_0x29dd91['trimEnd']()),_0x29dd91=_0x2dedb9[_0x4269af(0xbca)]();continue;}_0x29dd91=_0x276f86;}_0x244b94[_0x4269af(0x381)](_0x29dd91[_0x4269af(0x572)]());}return _0x244b94['length']>0x0?_0x244b94:[''];}function _0x5b0bc2(_0x2234cc){const _0x43ca94=_0x59d572;return _0x2234cc[_0x43ca94(0xbf8)](/\r\n/g,'\x0a')[_0x43ca94(0xbf8)](/\r/g,'\x0a')[_0x43ca94(0x3ba)]('\x0a');}function _0x380900(_0xc47137){return!!((_0xc47137==null?0x0:_0xc47137)&0x1000);}function _0x456bb8(_0x2ff4aa){const _0x473e4c=_0x59d572;var _0x5e09be,_0x58c7e4,_0x4c9644;let _0x8b5ccb=(_0x5e09be=(_0x58c7e4=_0x2ff4aa[_0x473e4c(0x896)])==null?void 0x0:_0x58c7e4[_0x473e4c(0x85b)])==null?(_0x4c9644=_0x2ff4aa['widget'])==null?void 0x0:_0x4c9644[_0x473e4c(0x501)]:_0x5e09be;return typeof _0x8b5ccb==_0x473e4c(0x221)?_0x8b5ccb:typeof _0x8b5ccb==_0x473e4c(0x97e)||typeof _0x8b5ccb==_0x473e4c(0x915)?String(_0x8b5ccb):'';}function _0x5aa27e(_0x11dd45,_0x13d55c,_0x11b163,_0x1fed6d,_0x5d8ccd){const _0x37a25f=_0x59d572;return _0x11dd45===0x1?_0x13d55c+Math[_0x37a25f(0x542)](_0x1fed6d,(_0x11b163-_0x5d8ccd)/0x2):_0x11dd45===0x2?_0x13d55c+Math[_0x37a25f(0x542)](_0x1fed6d,_0x11b163-_0x1fed6d-_0x5d8ccd):_0x13d55c+_0x1fed6d;}function _0x51f278(_0x5e80e6){const _0x3f4b22=_0x59d572;switch(_0x5e80e6){case _0x3f4b22(0x6b2):return _0x3f4b22(0x2cf);case'/TiRo':return _0x3f4b22(0xb01);case _0x3f4b22(0x7e6):return _0x3f4b22(0x5d1);default:return _0x3f4b22(0xcad);}}function _0x2a0784(_0x9aee6d,_0x26ed30,_0x24458a,_0x572f2b,_0x2b04d6,_0x47bc9f){const _0x2d57c9=_0x59d572;var _0xab27d7,_0x70038b,_0x156f8b,_0x14dc9f,_0x5a364b,_0x3e650f,_0x32582e;let _0x256cbe=(_0xab27d7=_0x24458a['normalAppearanceAssetId'])==null?(_0x70038b=_0x24458a[_0x2d57c9(0x896)])==null?void 0x0:_0x70038b[_0x2d57c9(0x767)]:_0xab27d7,_0x54538f=(_0x156f8b=_0x24458a[_0x2d57c9(0x6ab)])==null?(_0x14dc9f=_0x24458a[_0x2d57c9(0x896)])==null?void 0x0:_0x14dc9f[_0x2d57c9(0x6ab)]:_0x156f8b,_0x28279c=(_0x5a364b=_0x24458a[_0x2d57c9(0x302)])==null?(_0x3e650f=_0x24458a[_0x2d57c9(0x896)])==null?void 0x0:_0x3e650f[_0x2d57c9(0x302)]:_0x5a364b,_0xb0b9c8=_0x256cbe?_0x9aee6d[_0x2d57c9(0xc33)]['formXObjects'][_0x256cbe]:void 0x0,_0x56dd47=_0x54538f?_0x9aee6d[_0x2d57c9(0x791)][_0x54538f]:void 0x0,_0x3bfcf7=(_0x32582e=_0x24458a['source'])==null?void 0x0:_0x32582e[_0x2d57c9(0x161)];if(!_0xb0b9c8||!_0x56dd47||!_0x3bfcf7||!_0x28279c)return!0x1;let _0x27254c=_0x255819(_0x335b5f(_0xb0b9c8[_0x2d57c9(0xa01)],_0xb0b9c8['matrix']),_0x3bfcf7);return(0x0,_0x3e1c10['renderPdfDisplayOperation'])({'id':_0x24458a['id']+':appearance','type':_0x21fa40['PdfDisplayOpType'][_0x2d57c9(0xc79)],'assetId':_0x256cbe,'objectRef':_0x28279c,'displayListId':_0x54538f,'bbox':_0xb0b9c8[_0x2d57c9(0xa01)],'matrix':_0xb0b9c8[_0x2d57c9(0x86d)],'transform':_0x27254c,'source':{..._0x24458a[_0x2d57c9(0x419)],'xobjectRef':_0x28279c,'appearanceStreamRef':_0x28279c}},{'document':_0x9aee6d,'page':_0x26ed30,'viewport':_0x2b04d6,'backend':_0x1245e1(_0x572f2b,_0x2b04d6,{'imageResolver':_0x47bc9f['imageResolver'],'fontFamilyResolver':_0x47bc9f['fontFamilyResolver'],'fontOutlineResolver':_0x47bc9f[_0x2d57c9(0x925)],'canvasFactory':_0x47bc9f[_0x2d57c9(0x7d5)],'groupCompositor':_0x47bc9f['groupCompositor'],'enableTransparencyGroups':_0x47bc9f[_0x2d57c9(0x25d)]})}),!0x0;}function _0x255819(_0x34fbef,_0x12881d){let _0x4975df=_0x34fbef[0x2]-_0x34fbef[0x0],_0x3dfa87=_0x34fbef[0x3]-_0x34fbef[0x1],_0xd58113=_0x12881d[0x2]-_0x12881d[0x0],_0x1136ab=_0x12881d[0x3]-_0x12881d[0x1],_0x31bd77=_0x4975df===0x0?0x1:_0xd58113/_0x4975df,_0x387a49=_0x3dfa87===0x0?0x1:_0x1136ab/_0x3dfa87;return[_0x31bd77,0x0,0x0,_0x387a49,_0x12881d[0x0]-_0x34fbef[0x0]*_0x31bd77,_0x12881d[0x1]-_0x34fbef[0x1]*_0x387a49];}function _0x335b5f(_0x489e7f,_0x445431){const _0x3d18c1=_0x59d572;if(!_0x445431)return _0x489e7f;let _0x59a005=[_0x5798a0(_0x489e7f[0x0],_0x489e7f[0x1],_0x445431),_0x5798a0(_0x489e7f[0x2],_0x489e7f[0x1],_0x445431),_0x5798a0(_0x489e7f[0x2],_0x489e7f[0x3],_0x445431),_0x5798a0(_0x489e7f[0x0],_0x489e7f[0x3],_0x445431)],_0xa71a41=_0x59a005[_0x3d18c1(0xb06)](_0x48ac6a=>_0x48ac6a[0x0]),_0x2c399f=_0x59a005[_0x3d18c1(0xb06)](_0x236db9=>_0x236db9[0x1]);return[Math[_0x3d18c1(0xb2a)](..._0xa71a41),Math[_0x3d18c1(0xb2a)](..._0x2c399f),Math[_0x3d18c1(0x542)](..._0xa71a41),Math[_0x3d18c1(0x542)](..._0x2c399f)];}function _0x5798a0(_0x454679,_0x1fcdfc,_0x19efd5){return[_0x19efd5[0x0]*_0x454679+_0x19efd5[0x2]*_0x1fcdfc+_0x19efd5[0x4],_0x19efd5[0x1]*_0x454679+_0x19efd5[0x3]*_0x1fcdfc+_0x19efd5[0x5]];}function _0x102fd7(_0x123488,_0x4e2a26,_0x1a7869,_0x406084){const _0x17a4a3=_0x59d572;var _0x3eb6d3;let [_0x18cdac,_0x3fae29,_0x27736d,_0x24e02f]=_0x1fe4e8(_0x123488['bbox'],_0x1a7869);_0x4e2a26[_0x17a4a3(0x2f3)]=_0x406084,_0x4e2a26[_0x17a4a3(0x521)]=0x1,(_0x3eb6d3=_0x4e2a26[_0x17a4a3(0xa95)])==null||_0x3eb6d3[_0x17a4a3(0x3f4)](_0x4e2a26,_0x18cdac,_0x3fae29,_0x27736d,_0x24e02f);}function _0x57fefb(_0x24855a,_0x4d9bb3,_0x2fecf1){const _0x4a7b46=_0x59d572;let [_0x1be4e3,_0x4c680f,_0x488254,_0x35a34f]=_0x4d9bb3[_0x4a7b46(0xb06)](_0x47a7c1=>_0xe13a26(_0x47a7c1,_0x2fecf1));_0x24855a[_0x4a7b46(0x80a)](_0x1be4e3[0x0],_0x1be4e3[0x1]),_0x24855a[_0x4a7b46(0x5be)](_0x4c680f[0x0],_0x4c680f[0x1]),_0x24855a[_0x4a7b46(0x5be)](_0x35a34f[0x0],_0x35a34f[0x1]),_0x24855a[_0x4a7b46(0x5be)](_0x488254[0x0],_0x488254[0x1]),_0x24855a[_0x4a7b46(0x427)]();}function _0x4f45c7(_0x599c46,_0x43b4be){return[(_0x599c46[0x0]+_0x43b4be[0x0])/0x2,(_0x599c46[0x1]+_0x43b4be[0x1])/0x2];}function _0x2f5257(_0x1d63a2,_0x381395,_0x111caf,_0xf23b76){const _0x362113=_0x59d572;var _0x239066,_0x34f727,_0x3e5fd5;_0x1d63a2[_0x362113(0x2f3)]=typeof(_0x381395==null?void 0x0:_0x381395[_0x362113(0x6aa)])==_0x362113(0x221)?_0x381395[_0x362113(0x6aa)]:_0xf23b76,_0x1d63a2[_0x362113(0x521)]=_0x381395!=null&&_0x381395['width']?Math[_0x362113(0x542)](0.5,_0x2253bb(_0x381395[_0x362113(0x65c)],_0x111caf)):0x1,_0x1d63a2[_0x362113(0x7bb)]=(_0x239066=_0x381395==null?void 0x0:_0x381395[_0x362113(0x91d)])==null?_0x1d63a2[_0x362113(0x7bb)]:_0x239066,_0x381395!=null&&_0x381395[_0x362113(0x90a)]&&(_0x1d63a2['lineCap']=_0x381395[_0x362113(0x90a)]),_0x381395!=null&&_0x381395[_0x362113(0x901)]&&(_0x1d63a2[_0x362113(0x901)]=_0x381395[_0x362113(0x901)]),(_0x34f727=_0x1d63a2['setLineDash'])==null||_0x34f727[_0x362113(0x3f4)](_0x1d63a2,((_0x3e5fd5=_0x381395==null?void 0x0:_0x381395[_0x362113(0x55f)])==null?[]:_0x3e5fd5)[_0x362113(0xb06)](_0x161ae2=>_0x2253bb(_0x161ae2,_0x111caf))),typeof(_0x381395==null?void 0x0:_0x381395[_0x362113(0x2fc)])=='number'&&(_0x1d63a2[_0x362113(0x4bf)]=_0x2253bb(_0x381395[_0x362113(0x2fc)],_0x111caf));}function _0x16f3b9(_0x5b3073,_0x864b86){const _0x294722=_0x59d572;return _0x5b3073[_0x294722(0xba6)]===_0x864b86[_0x294722(0xba6)]&&_0x5b3073[_0x294722(0xbaa)]((_0x15a3cf,_0x27efe2)=>Math[_0x294722(0x7f7)](_0x15a3cf-_0x864b86[_0x27efe2])<0.0001);}function _0x45c2f7(_0x30d74e,_0x39634c){const _0x2d7e23=_0x59d572;return[(0x0,_0x21fa40[_0x2d7e23(0x7c3)])(_0x30d74e[0x0]-_0x39634c[0x0]),(0x0,_0x21fa40[_0x2d7e23(0x7c3)])(_0x39634c[0x3]-_0x30d74e[0x3]),(0x0,_0x21fa40[_0x2d7e23(0x7c3)])(_0x30d74e[0x2]-_0x30d74e[0x0]),(0x0,_0x21fa40[_0x2d7e23(0x7c3)])(_0x30d74e[0x3]-_0x30d74e[0x1])];}function _0xe13a26(_0x2a9725,_0x3e569c){return[_0x2253bb(_0x2a9725[0x0],_0x3e569c),_0x2253bb(_0x2a9725[0x1],_0x3e569c)];}function _0x2253bb(_0x33100c,_0x23186c){const _0x641d9b=_0x59d572;return(0x0,_0x21fa40[_0x641d9b(0xb35)])(_0x33100c)*_0x23186c[_0x641d9b(0x68e)];}function _0x1ce083(_0x39c692,_0x2f4a7e){const _0x165b47=_0x59d572;return typeof _0x39c692==_0x165b47(0x221)?_0x39c692:Array[_0x165b47(0x461)](_0x39c692)?'#'+_0x39c692[_0x165b47(0x688)](0x0,0x3)[_0x165b47(0xb06)](_0x3effa3=>Math[_0x165b47(0x542)](0x0,Math[_0x165b47(0xb2a)](0xff,Math[_0x165b47(0x157)](_0x3effa3*0xff))))[_0x165b47(0xb06)](_0x1d51f7=>_0x1d51f7[_0x165b47(0x23e)](0x10)[_0x165b47(0x6da)](0x2,'0'))[_0x165b47(0xb26)](''):_0x2f4a7e;}let _0x5bb255=new WeakMap(),_0xc9e512={};function _0xfb288b(_0x3c6e0f,_0x5c06ef,_0x3f943c=0x0){const _0x6b8c6b=_0x59d572;var _0x25aa20;let _0x57b90c=_0x3c6e0f[_0x6b8c6b(0xc13)](),_0x109fcc=(_0x25aa20=_0x57b90c[_0x6b8c6b(0xb0c)])==null?_0xc9e512:_0x25aa20,_0x37cbe5=_0x3c6e0f[_0x6b8c6b(0x989)](),_0x66e79d=_0x5bb255['get'](_0x3c6e0f);_0x66e79d||(_0x66e79d=new WeakMap(),_0x5bb255[_0x6b8c6b(0xad2)](_0x3c6e0f,_0x66e79d));let _0x13b456=_0x66e79d[_0x6b8c6b(0x2ad)](_0x5c06ef);if(_0x13b456&&_0x13b456['document']===_0x57b90c[_0x6b8c6b(0xb09)]&&_0x13b456[_0x6b8c6b(0xb0c)]===_0x57b90c[_0x6b8c6b(0xb0c)]&&_0x13b456[_0x6b8c6b(0x698)]===_0x37cbe5[_0x6b8c6b(0x698)]&&_0x13b456[_0x6b8c6b(0x687)]===_0x3f943c)return _0x13b456[_0x6b8c6b(0x8ca)];let _0x116bc2=_0x1854ed(_0x57b90c['document'],_0x109fcc,_0x777f06=>{const _0x2b1f8c=_0x6b8c6b;var _0xdd49c;return!!((_0xdd49c=_0x5c06ef['resolveManagedImage'](_0x37cbe5,_0x777f06))==null?_0x5c06ef[_0x2b1f8c(0x642)](_0x109fcc[_0x777f06]):_0xdd49c);}),_0x535974={'fontFamilyResolver':({font:_0x4b18fd})=>_0x5c06ef['resolveResourceFontFamily'](_0x109fcc[_0x4b18fd['id']],_0x4b18fd['id']),'fontOutlineResolver':({font:_0x58ca43})=>_0x58ca43['fontProgramKind']===_0x6b8c6b(0xa65)||_0x58ca43[_0x6b8c6b(0x8f3)]===_0x6b8c6b(0xa65)?_0x5c06ef['resolveResourceFontOutline'](_0x109fcc[_0x58ca43['id']],_0x58ca43['id']):void 0x0,'preferPageRaster':_0x116bc2[_0x6b8c6b(0x71b)]>0x0,'pageRasterResolver':({page:_0x1b11b6})=>_0x116bc2['has'](_0x1b11b6['id'])?_0x5c06ef['resolveResourceImage'](_0x109fcc[_0x1b11b6['id']]):void 0x0,'imageResolver':({asset:_0x25b914})=>{const _0x20794e=_0x6b8c6b;var _0x2f1e39;return(_0x2f1e39=_0x5c06ef[_0x20794e(0x11d)](_0x37cbe5,_0x25b914['id']))==null?_0x5c06ef[_0x20794e(0x642)](_0x109fcc[_0x25b914['id']]):_0x2f1e39;}};return _0x66e79d[_0x6b8c6b(0xad2)](_0x5c06ef,{'document':_0x57b90c[_0x6b8c6b(0xb09)],'resourceBindings':_0x57b90c['resourceBindings'],'managedResources':_0x37cbe5[_0x6b8c6b(0x698)],'generation':_0x3f943c,'resolvers':_0x535974}),_0x535974;}function _0x1854ed(_0xb4dcba,_0x1fc892,_0xfef1a7){const _0x4e5716=_0x59d572;var _0x6085f1;let _0x5eec2f=new Map(),_0x34d728=new Map();(_0x6085f1=_0xb4dcba[_0x4e5716(0x69b)])==null||(_0x6085f1=_0x6085f1['importReports'])==null||_0x6085f1['forEach'](_0x4f0e26=>_0x4f0e26[_0x4e5716(0x664)][_0x4e5716(0xc9d)](_0x58c621=>{const _0x5022ed=_0x4e5716;_0x58c621[_0x5022ed(0x8ee)]&&_0x5eec2f[_0x5022ed(0xad2)](_0x58c621['pageId'],_0x58c621),_0x34d728[_0x5022ed(0xad2)](_0x58c621[_0x5022ed(0x6c2)],_0x58c621);}));let _0x169618=(0x0,_0x21fa40['getPdfDocumentRuntimeIndex'])(_0xb4dcba)[_0x4e5716(0x44e)],_0x35f963=new Map(),_0x1370e0=_0x203d85=>{const _0x4e5f35=_0x4e5716;let _0x5ea8b0=_0x35f963[_0x4e5f35(0x2ad)](_0x203d85);return _0x5ea8b0===void 0x0&&(_0x5ea8b0=_0xfef1a7(_0x203d85),_0x35f963[_0x4e5f35(0xad2)](_0x203d85,_0x5ea8b0)),_0x5ea8b0;},_0x1147df=new Set();return _0xb4dcba[_0x4e5716(0x664)][_0x4e5716(0xc9d)](_0x120946=>{const _0x5fba1f=_0x4e5716;var _0x2e2dda,_0x38fec5;if(!_0x1fc892[_0x120946['id']])return;let _0x5e53a3=(_0x2e2dda=_0x5eec2f['get'](_0x120946['id']))==null?_0x34d728[_0x5fba1f(0x2ad)](_0x120946['index']):_0x2e2dda;_0x3e4457(_0xb4dcba,((_0x38fec5=_0x169618[_0x5fba1f(0x2ad)](_0x120946['id']))==null?[]:_0x38fec5)[_0x5fba1f(0x13c)](_0xd6fc13=>{const _0xb0088c=_0x5fba1f;let _0x2c6d43=_0xb4dcba[_0xb0088c(0x791)][_0xd6fc13];return _0x2c6d43?[_0x2c6d43]:[];}),_0x5e53a3==null?void 0x0:_0x5e53a3[_0x5fba1f(0x52d)],_0x1370e0)&&_0x1147df[_0x5fba1f(0x30c)](_0x120946['id']);}),_0x1147df;}function _0x3e4457(_0x81351b,_0x1a3832,_0x2976fa,_0x31042d){const _0x4280c7=_0x59d572;if(_0x2976fa===_0x4280c7(0x464)||_0x2976fa==='failed'||!_0x1a3832[_0x4280c7(0x790)](_0x27b939=>_0x27b939[_0x4280c7(0xa6d)][_0x4280c7(0xba6)]>0x0))return!0x0;let _0x298e82=[..._0x1a3832],_0x527a23=new Set();for(;_0x298e82[_0x4280c7(0xba6)]>0x0;){let _0xb66cb1=_0x298e82[_0x4280c7(0x8f2)]();if(!(!_0xb66cb1||_0x527a23[_0x4280c7(0x66b)](_0xb66cb1['id']))){_0x527a23[_0x4280c7(0x30c)](_0xb66cb1['id']);for(let _0x371da6 of _0xb66cb1[_0x4280c7(0xa6d)]){if(_0x4280c7(0x9c4)in _0x371da6&&typeof _0x371da6[_0x4280c7(0x9c4)]==_0x4280c7(0x221)&&_0x81351b[_0x4280c7(0xc33)][_0x4280c7(0x707)][_0x371da6[_0x4280c7(0x9c4)]]&&!_0x31042d(_0x371da6[_0x4280c7(0x9c4)]))return!0x0;if(_0x4280c7(0x1b7)in _0x371da6&&typeof _0x371da6[_0x4280c7(0x1b7)]==_0x4280c7(0x221)){let _0x4f8c62=_0x81351b[_0x4280c7(0x791)][_0x371da6[_0x4280c7(0x1b7)]];if(!_0x4f8c62)return!0x0;_0x298e82[_0x4280c7(0x381)](_0x4f8c62);}}}}return!0x1;}function _0x227d66(_0x11604e,_0x1b1eb3){const _0x12eeaf=_0x59d572;return!Number['isFinite'](_0x11604e)||!Number[_0x12eeaf(0x771)](_0x1b1eb3)||_0x1b1eb3<=0x0?0x0:Math['round'](_0x11604e*_0x1b1eb3)/_0x1b1eb3-_0x11604e;}function _0x3f9729(_0x530d56){const _0x108aad=_0x59d572;var _0x29cdda;return JSON[_0x108aad(0x9aa)]([_0x530d56[_0x108aad(0x400)],_0x530d56['pageId'],_0x530d56[_0x108aad(0x68e)],_0x530d56['devicePixelRatio'],(0x0,_0x21fa40[_0x108aad(0xa7c)])(_0x530d56[_0x108aad(0x18e)]),(_0x29cdda=_0x530d56['activeTextObjectId'])==null?'':_0x29cdda,[..._0x530d56[_0x108aad(0x6c7)]][_0x108aad(0xb29)]()]);}function _0x1f431c(_0x5dcb10,_0x319d79){return _0x5dcb10!==void 0x0&&_0x319d79!==void 0x0&&_0x5dcb10!==_0x319d79;}function _0x5cf392(_0x1d6507,_0x28cdc5){const _0x1a771d=_0x59d572;var _0x18fe90;let _0x51a2b0=(_0x18fe90=_0x28cdc5[_0x1a771d(0x430)][_0x1a771d(0x24a)][_0x1d6507['objectId']])==null?void 0x0:_0x18fe90[_0x1a771d(0x961)];if(!_0x51a2b0)return!0x1;if(_0x1d6507[_0x1a771d(0x6b8)]&&_0x1d6507[_0x1a771d(0x5d4)]){var _0xd6c205;return((_0xd6c205=_0x28cdc5['editState'][_0x1a771d(0x5c0)][_0x1d6507['storyId']])==null||(_0xd6c205=_0xd6c205['runs'][_0x1d6507[_0x1a771d(0x5d4)]])==null?void 0x0:_0xd6c205[_0x1a771d(0x975)])===_0x1d6507[_0x1a771d(0x689)];}if(_0x51a2b0[_0x1a771d(0x2c1)]===_0x21fa40['PdfObjectType'][_0x1a771d(0x1a5)]){var _0x574bf8,_0x3e343b;return((_0x574bf8=(_0x3e343b=_0x51a2b0[_0x1a771d(0x416)])==null?void 0x0:_0x3e343b[_0x1a771d(0xb06)](_0x324f25=>_0x324f25[_0x1a771d(0x975)])[_0x1a771d(0xb26)](''))==null?'':_0x574bf8)===_0x1d6507['originalText'];}return _0x51a2b0[_0x1a771d(0x2c1)]===_0x21fa40[_0x1a771d(0x8bf)][_0x1a771d(0x592)]&&_0x51a2b0[_0x1a771d(0xaa9)][_0x1a771d(0x975)]===_0x1d6507[_0x1a771d(0x689)];}function _0x3a9866(_0x3a8e32,_0x134313){return!_0x3a8e32&&!_0x134313;}function _0x5da06b(_0x39828a,_0x4ea214,_0x1c273a){const _0x297922=_0x59d572;var _0x5bdc2d;let _0x2efaed=_0x1c273a?(_0x5bdc2d=(0x0,_0x21fa40['getPdfEditorEditStateRuntimeIndex'])(_0x39828a[_0x297922(0x430)])[_0x297922(0xca7)]['get'](_0x1c273a))==null?[]:_0x5bdc2d:Object[_0x297922(0xaaf)](_0x39828a[_0x297922(0x430)][_0x297922(0x24a)]),_0x1a4137=new Set(_0x2efaed[_0x297922(0xbcd)](_0xe2a14=>_0xe2a14[_0x297922(0x961)]['id']!==_0x4ea214&&!!_0xe2a14[_0x297922(0x79a)]&&_0xe2a14[_0x297922(0x961)][_0x297922(0xa87)]===_0x21fa40[_0x297922(0x3cd)]['IMPORTED_NATIVE']&&(_0xe2a14['object'][_0x297922(0x2c1)]===_0x21fa40[_0x297922(0x8bf)][_0x297922(0x1a5)]||_0xe2a14[_0x297922(0x961)][_0x297922(0x2c1)]===_0x21fa40['PdfObjectType'][_0x297922(0x592)])&&!Object[_0x297922(0x505)][_0x297922(0x9d6)]['call'](_0x39828a[_0x297922(0x430)]['objectPatches'],_0xe2a14[_0x297922(0x961)]['id']))[_0x297922(0xb06)](_0x3790af=>_0x3790af[_0x297922(0x961)]['id']));if(_0x1a4137['size']===0x0)return _0x39828a;let _0x3cb18d=new Set(Array[_0x297922(0x8c1)](_0x1a4137)[_0x297922(0xb06)](_0xebce9=>{const _0x442fd6=_0x297922;var _0x2b2e6b;return(_0x2b2e6b=_0x39828a['editState'][_0x442fd6(0x24a)][_0xebce9])==null?void 0x0:_0x2b2e6b[_0x442fd6(0x79a)];})[_0x297922(0xbcd)](_0xf0631c=>!!_0xf0631c));return{..._0x39828a,'editState':{..._0x39828a[_0x297922(0x430)],'overlayObjects':Object[_0x297922(0xb1d)](Object[_0x297922(0x8a2)](_0x39828a[_0x297922(0x430)][_0x297922(0x24a)])[_0x297922(0xbcd)](([_0x52fc0])=>!_0x1a4137['has'](_0x52fc0))),'sourceSuppressions':Object[_0x297922(0xb1d)](Object[_0x297922(0x8a2)](_0x39828a[_0x297922(0x430)][_0x297922(0x4ce)])[_0x297922(0xbcd)](([_0x3b571e])=>!_0x3cb18d[_0x297922(0x66b)](_0x3b571e))),'replacementLinks':Object[_0x297922(0xb1d)](Object[_0x297922(0x8a2)](_0x39828a[_0x297922(0x430)][_0x297922(0x853)])['filter'](([,_0x14b340])=>(!_0x14b340[_0x297922(0x415)]||!_0x3cb18d[_0x297922(0x66b)](_0x14b340[_0x297922(0x415)]))&&!_0x14b340['replacementObjectIds']['some'](_0x5502f1=>_0x1a4137[_0x297922(0x66b)](_0x5502f1))))}};}function _0x4fd630(){const _0x339841=_0x59d572;var _0x582364,_0x151bb7,_0x752217,_0x59e229,_0x4836b4,_0x18b5c6,_0x439517,_0x5da6cf,_0x31779a,_0x88ec82;let _0x5a53ab=(0x0,_0x558781[_0x339841(0x945)])(null),_0x6af818=(0x0,_0x558781[_0x339841(0x945)])(null),_0x3e1071=(0x0,_0x558781[_0x339841(0x945)])(null),_0x25059f=(0x0,_0x558781[_0x339841(0x945)])(void 0x0),_0x1c3377=(0x0,_0x558781[_0x339841(0x945)])(void 0x0),_0x8684c7=(0x0,_0x558781['useRef'])(null),_0x26818a=(0x0,_0x558781[_0x339841(0x945)])(()=>{}),_0x4022de=(0x0,_0x558781[_0x339841(0x945)])(void 0x0),_0x3ac961=(0x0,_0x558781['useRef'])(!0x1),_0x352997=(0x0,_0x558781[_0x339841(0x945)])(!0x1),_0x1ba086=(0x0,_0x558781[_0x339841(0x945)])(Promise[_0x339841(0x2df)]()),_0x166939=(0x0,_0x558781[_0x339841(0x945)])(void 0x0),_0x357fb6=(0x0,_0x558781[_0x339841(0x945)])(()=>{}),_0x133fe7=(0x0,_0x558781[_0x339841(0x945)])(void 0x0),_0x589a9a=(0x0,_0x558781[_0x339841(0x945)])(void 0x0);_0x133fe7[_0x339841(0x2c3)]||(_0x133fe7[_0x339841(0x2c3)]=_0x579e90(_0x20bca8,_0x180d9f,_0x8d2b4f=>_0x357fb6[_0x339841(0x2c3)](_0x8d2b4f))),_0x589a9a[_0x339841(0x2c3)]||(_0x589a9a[_0x339841(0x2c3)]=_0x1d95c1());let [_0x1bca56,_0x544895]=(0x0,_0x558781[_0x339841(0x674)])(),[_0x59d93b,_0x5ac318]=(0x0,_0x558781['useState'])(),_0xe03802=(0x0,_0x480239[_0x339841(0xb03)])(_0x2894d3[_0x339841(0x50a)]),_0x444a93=(0x0,_0x480239[_0x339841(0xb03)])(_0x2894d3[_0x339841(0x727)]),_0xe11b4d=(0x0,_0x480239[_0x339841(0xb03)])(_0x4e4eea),_0x2e0df4=(0x0,_0x480239[_0x339841(0xb03)])(_0x289aee),_0x1b61b5=(0x0,_0x480239[_0x339841(0xb03)])(_0x20e35e),_0x461928=(0x0,_0x480239['useDependency'])(_0x1dcaf0),_0x4ee185=(_0x582364=(0x0,_0x480239['useObservable'])(_0x461928[_0x339841(0xc20)],_0x461928['getResourceRevision']()))==null?0x0:_0x582364,_0x25d280=(0x0,_0x480239[_0x339841(0xb03)])(_0x480239['IContextMenuService']),{document:_0x461e90,model:_0x3e3a56,viewport:_0x490af8}=_0x3d7ae3(),_0x46897b=_0x3e3a56?_0xfb288b(_0x3e3a56,_0x461928,_0x4ee185):void 0x0,_0x238c43=(_0x151bb7=_0x490af8==null?void 0x0:_0x490af8[_0x339841(0x2ed)])==null?_0x461e90==null||(_0x752217=_0x461e90[_0x339841(0x664)][0x0])==null?void 0x0:_0x752217['id']:_0x151bb7,_0x2545db=_0x3e3a56?_0x2e0df4[_0x339841(0x178)](_0x3e3a56[_0x339841(0x49e)]()):void 0x0,_0x2f7cb3=(_0x59e229=_0x2545db==null||(_0x4836b4=_0x2545db[_0x339841(0x75f)][_0x339841(0x947)])==null?void 0x0:_0x4836b4[_0x339841(0x2a7)])!=null&&_0x59e229,_0x547f8a=(0x0,_0x558781[_0x339841(0x6fd)])(()=>_0x2545db?(0x0,_0x21fa40[_0x339841(0x9e6)])(_0x2545db):void 0x0,[_0x2545db==null?void 0x0:_0x2545db[_0x339841(0x33a)],_0x2545db==null?void 0x0:_0x2545db[_0x339841(0x75f)],_0x2545db==null?void 0x0:_0x2545db[_0x339841(0x828)]]),_0xc09f77=_0x547f8a==null?void 0x0:_0x547f8a[_0x339841(0x430)][_0x339841(0x7e0)];_0x547f8a&&_0x3a9866(!!_0x59d93b,_0x3ac961['current'])&&(_0x4022de['current']=_0x547f8a);let _0x189e56=_0x1bca56==null?_0x547f8a:_0x1bca56,_0x5bc9b2=(0x0,_0x558781[_0x339841(0x6fd)])(()=>_0x189e56?_0x5da06b(_0x189e56,_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x826)],_0x238c43):void 0x0,[_0x59d93b==null?void 0x0:_0x59d93b['objectId'],_0x238c43,_0x189e56]),_0x4b2ef3=(0x0,_0x558781[_0x339841(0x6fd)])(()=>_0x547f8a?_0x5da06b(_0x547f8a,_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x826)],_0x238c43):void 0x0,[_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x826)],_0x238c43,_0x547f8a]),_0x2fa37b=_0x238c43?_0x461e90==null?void 0x0:_0x461e90[_0x339841(0x664)][_0x339841(0x816)](_0x4e179d=>_0x4e179d['id']===_0x238c43):void 0x0,_0x163128=_0x3e3a56&&_0x238c43?_0x1b61b5[_0x339841(0xb1e)](_0x3e3a56,_0x238c43,_0x2fa37b):void 0x0,_0x417dc6=_0x3e3a56&&_0x238c43?_0x2e0df4[_0x339841(0x1b9)](_0x3e3a56[_0x339841(0x49e)](),_0x238c43,_0x4ee185):void 0x0,_0x328b20=_0x3e3a56&&_0x238c43&&_0x4b2ef3&&_0x417dc6?_0x1b61b5['getPageProjection'](_0x3e3a56,_0x238c43,_0x4b2ef3,(_0x18b5c6=_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x826)])==null?'':_0x18b5c6,_0x417dc6):_0x461e90,_0x544224=(_0x439517=_0x4b2ef3==null?void 0x0:_0x4b2ef3[_0x339841(0xb23)][_0x339841(0x60c)][_0x339841(0x13c)](_0x67b31e=>_0x339841(0x826)in _0x67b31e&&_0x67b31e['objectId']?[_0x67b31e[_0x339841(0x826)]]:[]))==null?[]:_0x439517,_0x5372fe=_0x3e3a56&&_0x238c43&&_0x4b2ef3&&_0x417dc6?_0x3f9729({'unitId':_0x3e3a56[_0x339841(0x49e)](),'pageId':_0x238c43,'zoom':(_0x5da6cf=_0x490af8==null?void 0x0:_0x490af8['zoom'])==null?0x1:_0x5da6cf,'devicePixelRatio':(_0x31779a=globalThis[_0x339841(0x33f)])==null?0x1:_0x31779a,'epoch':_0x417dc6,'activeTextObjectId':_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x826)],'selectedObjectIds':_0x544224}):void 0x0,_0x9a9a06=(_0x196795,_0x35427e)=>{const _0x156326=_0x339841;if(!_0x3e3a56||!(_0x196795!=null&&_0x196795[_0x156326(0xba6)])){_0x35427e&&_0x544895(void 0x0);return;}let _0x5e9715=_0x3e3a56['getUnitId'](),_0x3a2c38=_0x1ba086[_0x156326(0x2c3)]['then'](async()=>{const _0x5a9bfc=_0x156326;for(let _0x144217 of _0x196795)await _0xe11b4d['commit'](_0x5e9715,_0x144217,{'actorId':_0x5a9bfc(0x3f9),'clientId':_0x5a9bfc(0x3f9)});});_0x1ba086['current']=_0x3a2c38[_0x156326(0x61c)](()=>void 0x0,()=>void 0x0),_0x35427e&&_0x3a2c38[_0x156326(0x849)](()=>_0x544895(void 0x0));},_0x12cef7=_0x5d69fe=>{const _0x23157b=_0x339841;_0x3e3a56&&_0xe11b4d[_0x23157b(0x1ad)](_0x3e3a56[_0x23157b(0x49e)](),_0x21fa40[_0x23157b(0x365)],{'pageId':_0x5d69fe[_0x23157b(0x8ee)],'objectId':_0x5d69fe[_0x23157b(0x826)],'storyId':_0x5d69fe['storyId'],'runId':_0x5d69fe[_0x23157b(0x5d4)],'range':_0x5d69fe[_0x23157b(0xb23)]},{'actorId':_0x23157b(0x3f9),'clientId':_0x23157b(0x3f9)});};(0x0,_0x558781[_0x339841(0x286)])(()=>{const _0xd3c685=_0x339841;let _0x597014=_0x8684c7['current'];!_0x597014||!_0x59d93b||(_0x597014[_0xd3c685(0xc40)]({'preventScroll':!0x0}),_0x597014[_0xd3c685(0x1c8)](_0x59d93b[_0xd3c685(0xb23)]['start'],_0x59d93b[_0xd3c685(0xb23)][_0xd3c685(0x392)]));},[_0x59d93b]),(0x0,_0x558781[_0x339841(0x286)])(()=>{const _0xa72f8c=_0x339841;let _0x2d9c99=_0x3e1071[_0xa72f8c(0x2c3)],_0x5d5515=_0x2d9c99==null?void 0x0:_0x2d9c99[_0xa72f8c(0x1cc)][_0xa72f8c(0x7d0)];if(!_0x2d9c99||!_0x5d5515)return;let _0x523782=Number[_0xa72f8c(0xa7a)](_0x2d9c99[_0xa72f8c(0x2f9)][_0xa72f8c(0x331)])||0x0,_0x2af34f=Number['parseFloat'](_0x2d9c99[_0xa72f8c(0x2f9)][_0xa72f8c(0x268)])||0x0,_0x509696=()=>{const _0x38e48a=_0xa72f8c;let _0x5a0847=_0x2d9c99[_0x38e48a(0x3ae)](),_0x24d163=_0x5a0847['left']-_0x523782,_0x5586b2=_0x5a0847[_0x38e48a(0x268)]-_0x2af34f;_0x523782=_0x227d66(_0x24d163,_0x5d5515['devicePixelRatio']),_0x2af34f=_0x227d66(_0x5586b2,_0x5d5515['devicePixelRatio']),_0x2d9c99[_0x38e48a(0x2f9)][_0x38e48a(0x331)]=_0x523782+'px',_0x2d9c99[_0x38e48a(0x2f9)]['top']=_0x2af34f+'px';};_0x509696();let _0x518d9b=new _0x5d5515[(_0xa72f8c(0x26a))](_0x509696);return _0x2d9c99[_0xa72f8c(0x746)]&&_0x518d9b['observe'](_0x2d9c99[_0xa72f8c(0x746)]),_0x5d5515[_0xa72f8c(0x418)]('resize',_0x509696),()=>{const _0x5762bc=_0xa72f8c;_0x518d9b[_0x5762bc(0x8de)](),_0x5d5515['removeEventListener'](_0x5762bc(0x16e),_0x509696);};},[_0x238c43,_0x490af8==null?void 0x0:_0x490af8[_0x339841(0x68e)]]);let _0x325e82=(0x0,_0x558781[_0x339841(0x9d3)])(()=>{const _0x7d5789=_0x339841;var _0xebff35,_0x8f9ff3;(_0xebff35=_0x8684c7['current'])==null||_0xebff35['blur'](),(_0x8f9ff3=_0x1c3377['current'])==null||_0x8f9ff3[_0x7d5789(0x9fc)](),_0x1c3377[_0x7d5789(0x2c3)]=void 0x0,_0x5ac318(void 0x0),_0x544895(void 0x0);},[]);(0x0,_0x558781['useEffect'])(()=>{const _0x340f83=_0x339841;if(!_0x59d93b){_0x166939[_0x340f83(0x2c3)]=void 0x0;return;}if(_0xc09f77!==void 0x0){if(_0x166939['current']===void 0x0){_0x166939[_0x340f83(0x2c3)]=_0xc09f77;return;}if(_0x1f431c(_0x166939['current'],_0xc09f77)){_0x166939[_0x340f83(0x2c3)]=_0xc09f77;let _0xff1371=_0x1c3377['current'],_0x3f6ddf=_0xff1371==null?void 0x0:_0xff1371[_0x340f83(0xaf6)]();if(_0xff1371&&_0x3f6ddf&&_0x547f8a&&_0x5cf392(_0x3f6ddf,_0x547f8a)){_0x4022de[_0x340f83(0x2c3)]=_0x547f8a,_0xff1371[_0x340f83(0xb44)](_0x3f6ddf[_0x340f83(0xb23)]);return;}queueMicrotask(_0x325e82);}}},[_0x59d93b,_0x325e82,_0xc09f77,_0x547f8a]);let _0x1f2f48=()=>{const _0x5ee94b=_0x339841;var _0x327671,_0x2087b4;(_0x327671=_0x8684c7['current'])==null||_0x327671[_0x5ee94b(0x36e)]();let _0x30a2e6=_0x1c3377[_0x5ee94b(0x2c3)];_0x1c3377['current']=void 0x0,_0x5ac318(void 0x0),_0x544895(void 0x0);let _0x4fd8eb=(_0x2087b4=_0x4022de['current'])==null?_0x189e56:_0x2087b4;if(!_0x3e3a56||!_0x30a2e6||!_0x4fd8eb)return;_0x4022de['current']=_0x4fd8eb;let _0x143f57=_0x30a2e6[_0x5ee94b(0x458)]();_0x30a2e6['cancel'](),_0x9a9a06(_0xe4b049(_0x4fd8eb,_0x143f57),!0x0);};_0x26818a[_0x339841(0x2c3)]=_0x1f2f48;let _0x434116=(0x0,_0x558781[_0x339841(0x9d3)])((_0x3bc5ef,_0x1a8b97,_0x52a8c5)=>{const _0x32a714=_0x339841;var _0x5b580c,_0x581be0,_0x4aa4a9;let _0xb8f7df=_0x3bc5ef['selection'][_0x32a714(0x60c)][_0x32a714(0x816)](_0x384313=>'objectId'in _0x384313&&_0x384313[_0x32a714(0x826)]);if(!_0xb8f7df||!(_0x32a714(0x826)in _0xb8f7df)||!_0xb8f7df[_0x32a714(0x826)])return;_0x4022de[_0x32a714(0x2c3)]=_0x3bc5ef;let _0x4e7bf7=_0x569cff({'actorId':_0x32a714(0x3f9),'clientId':_0x32a714(0x3f9),'getSession':()=>_0x4022de['current'],'setSession':_0x294564=>{const _0x39a6ad=_0x32a714;_0x4022de[_0x39a6ad(0x2c3)]=_0x294564,_0x544895(_0x294564);},'resolveParagraphCommitLayout':(_0x262289,_0x17b749,_0x1ca164)=>{const _0x3061b7=_0x32a714;var _0x105497,_0x2c34e4;let _0x39aa8e=_0x328b20==null?void 0x0:_0x328b20[_0x3061b7(0x664)][_0x3061b7(0x816)](_0x323a13=>_0x323a13['id']===_0x262289[_0x3061b7(0x8ee)]);if(_0x39aa8e)return _0x3541d9({'state':_0x262289,'session':_0x17b749,'intent':_0x1ca164,'page':_0x39aa8e,'viewport':_0x52a8c5,'context':(_0x105497=(_0x2c34e4=_0x6af818[_0x3061b7(0x2c3)])==null?void 0x0:_0x2c34e4[_0x3061b7(0x2f2)]('2d'))==null?void 0x0:_0x105497,'document':_0x328b20});}}),_0x3ffaa6=_0x4e7bf7['startObjectEdit']({'pageId':_0xb8f7df[_0x32a714(0x8ee)],'objectId':_0xb8f7df[_0x32a714(0x826)],'cellId':_0x32a714(0x7ea)in _0xb8f7df?_0xb8f7df[_0x32a714(0x7ea)]:void 0x0,'storyId':_0x32a714(0x6b8)in _0xb8f7df?_0xb8f7df[_0x32a714(0x6b8)]:void 0x0,'runId':_0x32a714(0x5d4)in _0xb8f7df?_0xb8f7df[_0x32a714(0x5d4)]:void 0x0,'range':_0x32a714(0x53a)in _0xb8f7df?_0xb8f7df[_0x32a714(0x53a)]:void 0x0});if(!_0x3ffaa6)return;_0x1c3377['current']=_0x4e7bf7;let _0x12278f=_0x1a8b97?_0x26ffd0(_0x3bc5ef,_0x3ffaa6,_0x1a8b97,_0x52a8c5,(_0x5b580c=(_0x581be0=_0x6af818[_0x32a714(0x2c3)])==null?void 0x0:_0x581be0['getContext']('2d'))==null?void 0x0:_0x5b580c,_0x328b20):void 0x0,_0x31d5b4=_0x12278f?(_0x4aa4a9=_0x4e7bf7['startObjectEdit']({'pageId':_0x12278f[_0x32a714(0x8ee)],'objectId':_0x12278f[_0x32a714(0x826)],'cellId':_0x12278f[_0x32a714(0x7ea)],'storyId':_0x12278f[_0x32a714(0x6b8)],'blockId':_0x12278f[_0x32a714(0x9fb)],'runId':_0x12278f[_0x32a714(0x5d4)],'range':{'start':_0x12278f[_0x32a714(0x679)],'end':_0x12278f[_0x32a714(0x679)]}}))==null?_0x3ffaa6:_0x4aa4a9:_0x3ffaa6;_0x5ac318(_0x31d5b4);},[_0x328b20]);return(0x0,_0x558781[_0x339841(0xb8b)])(()=>{const _0x45c507=_0x339841;let _0x1fb048=_0x461928[_0x45c507(0x5cc)][_0x45c507(0x5c1)](_0x40fb54=>{const _0x3fbef9=_0x45c507;var _0x182ed9;if(!_0x3e3a56||_0x3e3a56[_0x3fbef9(0x49e)]()!==_0x40fb54)return;let _0x305279=_0x2e0df4['getStateParts'](_0x40fb54);if(!_0x305279)return;let _0x599a73=(0x0,_0x21fa40[_0x3fbef9(0x9e6)])(_0x305279),_0x14e082=_0x599a73[_0x3fbef9(0xb23)][_0x3fbef9(0x60c)]['find'](_0x8c4e61=>_0x3fbef9(0x826)in _0x8c4e61&&_0x8c4e61[_0x3fbef9(0x826)]),_0x34933d=_0x14e082?_0x3e3a56[_0x3fbef9(0x15a)]()['pages']['find'](_0x155cd3=>_0x155cd3['id']===_0x14e082[_0x3fbef9(0x8ee)]):void 0x0;_0x34933d&&_0x434116(_0x599a73,void 0x0,_0x11bd08(_0x34933d,{'zoom':(_0x182ed9=_0x490af8==null?void 0x0:_0x490af8[_0x3fbef9(0x68e)])==null?0x1:_0x182ed9}));});return()=>_0x1fb048[_0x45c507(0x307)]();},[_0x434116,_0x461928,_0x3e3a56,_0x2e0df4,_0x490af8==null?void 0x0:_0x490af8['zoom']]),(0x0,_0x558781[_0x339841(0xb8b)])(()=>{const _0x4d62f4=_0x339841;let _0x1dcf29=_0x461928['textEditExitRequested$']['subscribe'](_0xb2944c=>{const _0x57c269=_0x57a5;(_0x3e3a56==null?void 0x0:_0x3e3a56[_0x57c269(0x49e)]())===_0xb2944c&&_0x26818a[_0x57c269(0x2c3)]();});return()=>_0x1dcf29[_0x4d62f4(0x307)]();},[_0x461928,_0x3e3a56]),(0x0,_0x558781['useEffect'])(()=>{const _0x4980c8=_0x339841;if(!(!_0x3e3a56||!_0x238c43))return _0x1b61b5[_0x4980c8(0x90d)](_0x3e3a56,_0x238c43,_0x461e90==null?void 0x0:_0x461e90[_0x4980c8(0x664)]);},[_0x461e90==null?void 0x0:_0x461e90[_0x339841(0x664)],_0x3e3a56,_0x238c43,_0x1b61b5]),(0x0,_0x558781[_0x339841(0xb8b)])(()=>()=>{const _0x520eb8=_0x339841;var _0x4f4e57;return(_0x4f4e57=_0x133fe7[_0x520eb8(0x2c3)])==null?void 0x0:_0x4f4e57['cancel']();},[]),(0x0,_0x558781[_0x339841(0xb8b)])(()=>{const _0x3b839c=_0x339841;var _0x83e41d,_0x3cea5c;!_0x5a53ab[_0x3b839c(0x2c3)]||!_0x3e3a56||!_0x328b20||!_0x238c43||!_0x5372fe||!_0x46897b||_0x4b3226(_0x328b20,_0x238c43,_0x5a53ab['current'],{..._0x46897b,'devicePixelRatio':(_0x83e41d=globalThis[_0x3b839c(0x33f)])==null?0x1:_0x83e41d,'showPageBoundary':!0x1,'zoom':(_0x3cea5c=_0x490af8==null?void 0x0:_0x490af8['zoom'])==null?0x1:_0x3cea5c,'suppressedObjectIds':new Set(_0x544224)});},[_0x5372fe,_0x3e3a56,_0x238c43,_0x328b20,_0x46897b]),(0x0,_0x558781[_0x339841(0xb8b)])(()=>{const _0x3c8b06=_0x339841;var _0x344816,_0x3be746,_0x5d2f9a,_0x37351d,_0x55e1c1;let _0x4d984d=_0x6af818[_0x3c8b06(0x2c3)],_0x4f578=_0x4d984d==null?void 0x0:_0x4d984d[_0x3c8b06(0x2f2)]('2d');if(!_0x4d984d||!_0x4f578||!_0x5bc9b2||!_0x3e3a56||!_0x238c43||!_0x328b20||!_0x46897b)return;let _0x1296c6=_0x328b20['pages']['find'](_0x23c467=>_0x23c467['id']===_0x238c43);if(!_0x1296c6)return;let {imageResolver:_0x156643}=_0x46897b,_0x1a5690=new Set(_0x5bc9b2[_0x3c8b06(0xb23)]['anchors'][_0x3c8b06(0x13c)](_0x8f20f1=>_0x3c8b06(0x826)in _0x8f20f1&&_0x8f20f1[_0x3c8b06(0x826)]?[_0x8f20f1[_0x3c8b06(0x826)]]:[])),_0xcb01e1=_0x11bd08(_0x1296c6,{'devicePixelRatio':(_0x344816=globalThis[_0x3c8b06(0x33f)])==null?0x1:_0x344816,'zoom':(_0x3be746=_0x490af8==null?void 0x0:_0x490af8[_0x3c8b06(0x68e)])==null?0x1:_0x3be746});_0x4d984d[_0x3c8b06(0x65c)]=_0xcb01e1[_0x3c8b06(0x2a1)],_0x4d984d[_0x3c8b06(0x1ae)]=_0xcb01e1['heightDevicePx'],_0x4d984d['style'][_0x3c8b06(0x65c)]=_0xcb01e1['widthCssPx']+'px',_0x4d984d[_0x3c8b06(0x2f9)][_0x3c8b06(0x1ae)]=_0xcb01e1[_0x3c8b06(0xc23)]+'px',_0x4f578[_0x3c8b06(0x8f9)](),_0x4f578[_0x3c8b06(0xc55)](_0xcb01e1['canvasScaleX'],0x0,0x0,_0xcb01e1[_0x3c8b06(0xa92)],0x0,0x0),_0x4f578[_0x3c8b06(0x3da)](0x0,0x0,_0xcb01e1[_0x3c8b06(0x2c9)],_0xcb01e1['heightCssPx']);let _0xc65731=(_0x5d2f9a=_0x163128==null?void 0x0:_0x163128[_0x3c8b06(0x818)])==null?[]:_0x5d2f9a,_0x3dc0e5=(_0x37351d=_0x163128==null?void 0x0:_0x163128['nativeFormXObjectTargets'])==null?[]:_0x37351d,_0x5b3e92=[...(_0x55e1c1=_0x163128==null?void 0x0:_0x163128[_0x3c8b06(0x45d)])==null?[]:_0x55e1c1];_0x137bb8(_0x4f578,{'editState':_0x5bc9b2[_0x3c8b06(0x430)],'includedObjectIds':_0x1a5690,'pageId':_0x238c43,'viewport':_0xcb01e1,'selection':_0x5bc9b2['selection'],'showSelection':_0x2f7cb3||!!_0x59d93b,'document':_0x328b20,'imageResolver':_0x156643,'fontFamilyResolver':_0x46897b[_0x3c8b06(0x987)],'fontOutlineResolver':_0x46897b[_0x3c8b06(0x925)],'activeTextEditState':_0x59d93b,'sourceSelectionBounds':[..._0xc65731[_0x3c8b06(0xb06)](_0x4de66f=>{const _0x1b5d3e=_0x3c8b06;var _0x8accad;return{'id':_0x4de66f['id'],'pageId':_0x4de66f[_0x1b5d3e(0x8ee)],'bbox':_0x4de66f['bbox'],'displayOperationId':(_0x8accad=_0x4de66f[_0x1b5d3e(0xa04)])==null?void 0x0:_0x8accad[0x0],'kind':_0x1b5d3e(0x975)};}),..._0x3dc0e5[_0x3c8b06(0xb06)](_0x1ad510=>{const _0x586d51=_0x3c8b06;var _0x5632bf;return{'id':_0x1ad510['id'],'pageId':_0x1ad510[_0x586d51(0x8ee)],'bbox':_0x1ad510[_0x586d51(0xa01)],'displayOperationId':(_0x5632bf=_0x1ad510[_0x586d51(0x419)])==null||(_0x5632bf=_0x5632bf[_0x586d51(0xa2c)])==null?void 0x0:_0x5632bf['at'](-0x1),'kind':_0x586d51(0x402)};})],'formFieldBounds':_0x5b3e92}),_0x4f578[_0x3c8b06(0x91c)]();},[_0x59d93b,_0x5bc9b2,_0x3e3a56,_0x238c43,_0x163128,_0x328b20,_0x46897b,_0x2f7cb3,_0x490af8==null?void 0x0:_0x490af8[_0x339841(0x68e)]]),_0x357fb6['current']=_0x87c54d=>{const _0x31d1d6=_0x339841;let {target:_0x398304,pointerId:_0x4d7088,clientX:_0x238999,clientY:_0x19e1af}=_0x87c54d;if(!_0x328b20||!_0x238c43)return;if(_0x352997[_0x31d1d6(0x2c3)]&&_0x59d93b&&_0x189e56){var _0x4eb552,_0x14f779,_0x3d7c69,_0xe3fced;let _0x3869a5=_0x328b20[_0x31d1d6(0x664)][_0x31d1d6(0x816)](_0x4583fe=>_0x4583fe['id']===_0x238c43);if(!_0x3869a5)return;let _0x4fa7be=_0x398304[_0x31d1d6(0x3ae)](),_0x409634=_0x26ffd0(_0x189e56,_0x59d93b,[_0x238999-_0x4fa7be[_0x31d1d6(0x331)],_0x19e1af-_0x4fa7be[_0x31d1d6(0x268)]],_0x11bd08(_0x3869a5,{'devicePixelRatio':(_0x4eb552=globalThis[_0x31d1d6(0x33f)])==null?0x1:_0x4eb552,'zoom':(_0x14f779=_0x490af8==null?void 0x0:_0x490af8[_0x31d1d6(0x68e)])==null?0x1:_0x14f779}),(_0x3d7c69=_0x398304['getContext']('2d'))==null?void 0x0:_0x3d7c69,_0x328b20),_0x4c2dfd=!_0x409634||!_0x5dbcc4(_0x59d93b,_0x409634)||(_0xe3fced=_0x1c3377[_0x31d1d6(0x2c3)])==null?void 0x0:_0xe3fced[_0x31d1d6(0xa1e)](_0x409634['offset']);_0x4c2dfd&&_0x5ac318(_0x4c2dfd);return;}let _0x2bfafa=_0x25059f['current'];if(!_0x2bfafa||!_0x398304[_0x31d1d6(0x19d)](_0x4d7088))return;let _0x6590ce=_0x398304[_0x31d1d6(0x3ae)]();_0x2bfafa[_0x31d1d6(0xa33)]({'cssPoint':[_0x238999-_0x6590ce[_0x31d1d6(0x331)],_0x19e1af-_0x6590ce[_0x31d1d6(0x268)]]});},!_0x3e3a56||!_0x328b20?null:(0x0,_0x2cdc8e['jsx'])('div',{'className':_0x339841(0x377),'data-pdf-canvas-view':_0x339841(0x2fd),'tabIndex':0x0,'onKeyDown':_0x4ae909=>{const _0x78a460=_0x339841;var _0x1abb17,_0x4f1580;if(!_0x189e56||!_0x328b20||!_0x238c43)return;let _0x17fa1a=_0x328b20[_0x78a460(0x664)][_0x78a460(0x816)](_0x17faeb=>_0x17faeb['id']===_0x238c43);if(!_0x17fa1a)return;_0x4022de['current']=_0x189e56;let _0x478350=_0x14df37({'actorId':'pdf-ui','clientId':_0x78a460(0x3f9),'viewport':_0x11bd08(_0x17fa1a,{'devicePixelRatio':(_0x1abb17=globalThis[_0x78a460(0x33f)])==null?0x1:_0x1abb17,'zoom':(_0x4f1580=_0x490af8==null?void 0x0:_0x490af8[_0x78a460(0x68e)])==null?0x1:_0x4f1580}),'getSession':()=>_0x4022de[_0x78a460(0x2c3)],'setSession':_0x1ce780=>{const _0x2773ed=_0x78a460;_0x4022de[_0x2773ed(0x2c3)]=_0x1ce780;},'onUndo':_0x4eae16=>_0x4eae16,'onRedo':_0x10f522=>_0x10f522})[_0x78a460(0x588)]({'key':_0x4ae909[_0x78a460(0x585)],'shiftKey':_0x4ae909[_0x78a460(0xa23)],'ctrlKey':_0x4ae909[_0x78a460(0xc63)],'metaKey':_0x4ae909[_0x78a460(0xc60)],'altKey':_0x4ae909[_0x78a460(0xa43)],'targetEditable':_0x577cba(_0x4ae909['target'])});if(_0x478350[_0x78a460(0x4f7)]){if(_0x4ae909[_0x78a460(0xb59)](),_0x478350[_0x78a460(0x151)]===_0x78a460(0x793)){_0x444a93[_0x78a460(0x860)](_0x2894d3['UndoCommand']['id']);return;}if(_0x478350[_0x78a460(0x151)]==='redo'){_0x444a93[_0x78a460(0x860)](_0x2894d3[_0x78a460(0x874)]['id']);return;}_0x9a9a06(_0x478350[_0x78a460(0x1fe)]?[_0x478350[_0x78a460(0x1fe)]]:void 0x0,!0x0);}},'onPointerDown':()=>_0xe03802['focusUnit'](_0x3e3a56[_0x339841(0x49e)]()),'children':(0x0,_0x2cdc8e[_0x339841(0x139)])(_0x339841(0x624),{'ref':_0x3e1071,'className':'univer-relative\x20univer-bg-white\x20univer-shadow-lg','children':[(0x0,_0x2cdc8e[_0x339841(0x965)])(_0x339841(0x21d),{'ref':_0x5a53ab,'className':_0x339841(0xc35)}),(0x0,_0x2cdc8e[_0x339841(0x965)])(_0x4c8ef3['Textarea'],{'ref':_0x8684c7,'className':'univer-absolute\x20univer-left-0\x20univer-top-0\x20univer-z-10\x20univer-h-px\x20univer-w-px\x20univer-resize-none\x20univer-overflow-hidden\x20univer-opacity-0','data-pdf-text-input':'true','value':(_0x88ec82=_0x59d93b==null?void 0x0:_0x59d93b[_0x339841(0x975)])==null?'':_0x88ec82,'onValueChange':_0x27b2b3=>{const _0x3a8a39=_0x339841;var _0xcc72c5,_0x311a63,_0x3097a8,_0x4bd720;let _0xea191b=_0x1c3377['current'];if(!_0xea191b)return;let _0xe7f9ea=_0xea191b['replaceText'](_0x27b2b3,{'start':(_0xcc72c5=(_0x311a63=_0x8684c7[_0x3a8a39(0x2c3)])==null?void 0x0:_0x311a63['selectionStart'])==null?0x0:_0xcc72c5,'end':(_0x3097a8=(_0x4bd720=_0x8684c7[_0x3a8a39(0x2c3)])==null?void 0x0:_0x4bd720[_0x3a8a39(0x8b1)])==null?0x0:_0x3097a8});_0xe7f9ea&&_0x5ac318(_0xe7f9ea);},'onSelect':_0x385215=>{const _0x4fc261=_0x339841;var _0x1cdd42;let _0xd7558d=(_0x1cdd42=_0x1c3377[_0x4fc261(0x2c3)])==null?void 0x0:_0x1cdd42[_0x4fc261(0xb44)]({'start':_0x385215[_0x4fc261(0x4d3)][_0x4fc261(0x8dd)],'end':_0x385215[_0x4fc261(0x4d3)]['selectionEnd']});_0xd7558d&&(_0x5ac318(_0xd7558d),_0x12cef7(_0xd7558d));},'onKeyDown':_0x1a8e72=>{const _0x2314b1=_0x339841;if(_0x1a8e72['key']===_0x2314b1(0x68f))_0x1a8e72['preventDefault'](),_0x325e82();else{if(_0x1a8e72[_0x2314b1(0x585)]==='Enter'&&(_0x1a8e72[_0x2314b1(0xc63)]||_0x1a8e72[_0x2314b1(0xc60)]))_0x1a8e72[_0x2314b1(0xb59)](),_0x1f2f48();else{let _0x31a3e5=_0x1c3377[_0x2314b1(0x2c3)];if(!_0x31a3e5||!_0x4022de['current'])return;let _0x1a0174=_0x2849bd(_0x31a3e5,()=>_0x4022de[_0x2314b1(0x2c3)],{'key':_0x1a8e72[_0x2314b1(0x585)],'shiftKey':_0x1a8e72[_0x2314b1(0xa23)],'ctrlKey':_0x1a8e72[_0x2314b1(0xc63)],'metaKey':_0x1a8e72[_0x2314b1(0xc60)],'altKey':_0x1a8e72[_0x2314b1(0xa43)]});if(!_0x1a0174[_0x2314b1(0x4f7)])return;_0x1a8e72[_0x2314b1(0xb59)](),_0x9a9a06(_0x1a0174[_0x2314b1(0x40d)],!0x0),_0x1a0174[_0x2314b1(0x1b6)]&&_0x5ac318(_0x1a0174[_0x2314b1(0x1b6)]);}}}}),(0x0,_0x2cdc8e[_0x339841(0x965)])(_0x339841(0x21d),{'ref':_0x6af818,'className':'univer-absolute\x20univer-inset-0\x20univer-block\x20univer-touch-none','onPointerDown':_0x3da5c1=>{const _0x188043=_0x339841;var _0x54f26b,_0x11aa1f,_0x5e6a18;if((_0x54f26b=_0x133fe7['current'])==null||_0x54f26b[_0x188043(0x9fc)](),!_0x3e3a56||!_0x328b20||!_0x238c43||!_0x547f8a)return;let _0x17e285=_0x328b20[_0x188043(0x664)]['find'](_0x1a3d2b=>_0x1a3d2b['id']===_0x238c43);if(!_0x17e285)return;let _0x343d6b=_0x11bd08(_0x17e285,{'devicePixelRatio':(_0x11aa1f=globalThis[_0x188043(0x33f)])==null?0x1:_0x11aa1f,'zoom':(_0x5e6a18=_0x490af8==null?void 0x0:_0x490af8[_0x188043(0x68e)])==null?0x1:_0x5e6a18});if(_0x59d93b&&_0x1c3377[_0x188043(0x2c3)]&&_0x189e56){var _0x4b4c24;let _0x266126=_0x3da5c1[_0x188043(0x4d3)][_0x188043(0x3ae)](),_0x2d9c69=_0x26ffd0(_0x189e56,_0x59d93b,[_0x3da5c1[_0x188043(0x6cd)]-_0x266126[_0x188043(0x331)],_0x3da5c1[_0x188043(0x9c0)]-_0x266126['top']],_0x343d6b,(_0x4b4c24=_0x3da5c1[_0x188043(0x4d3)]['getContext']('2d'))==null?void 0x0:_0x4b4c24,_0x328b20);if(_0x2d9c69&&_0x5dbcc4(_0x59d93b,_0x2d9c69)){_0x3da5c1[_0x188043(0xb59)]();let _0x1efead=_0x1c3377['current']['beginSelection'](_0x2d9c69['offset']);_0x1efead&&(_0x5ac318(_0x1efead),_0x352997['current']=!0x0,_0x3da5c1[_0x188043(0x4d3)]['setPointerCapture'](_0x3da5c1[_0x188043(0x8df)]));return;}_0x1f2f48();}_0x4022de[_0x188043(0x2c3)]=_0x547f8a,_0x3ac961[_0x188043(0x2c3)]=!0x0,_0x3da5c1[_0x188043(0x4d3)][_0x188043(0x607)](_0x3da5c1[_0x188043(0x8df)]);let _0xc3fe4d=_0x4dcafd({'pageId':_0x238c43,'actorId':'pdf-ui','clientId':'pdf-ui','viewport':_0x343d6b,'getSession':()=>_0x4022de['current'],'setSession':_0x3461fa=>{const _0x96213f=_0x188043;_0x4022de[_0x96213f(0x2c3)]=_0x3461fa;},'setPreviewSession':_0x544895,'getNativeTextTargets':()=>{var _0x4827a0;return[...(_0x4827a0=_0x163128==null?void 0x0:_0x163128['nativeTextTargets'])==null?[]:_0x4827a0];},'getNativeFormXObjectTargets':()=>{const _0x19fea7=_0x188043;var _0x2abd7e;return[...(_0x2abd7e=_0x163128==null?void 0x0:_0x163128[_0x19fea7(0x5fb)])==null?[]:_0x2abd7e];},'getFormFieldTargets':()=>{var _0x408e63;return[...(_0x408e63=_0x163128==null?void 0x0:_0x163128['formFieldTargets'])==null?[]:_0x408e63];}});_0x25059f['current']=_0xc3fe4d;let _0x26b0d=_0x3da5c1['currentTarget'][_0x188043(0x3ae)](),_0x106146=_0xc3fe4d[_0x188043(0x1fd)]({'cssPoint':[_0x3da5c1[_0x188043(0x6cd)]-_0x26b0d[_0x188043(0x331)],_0x3da5c1[_0x188043(0x9c0)]-_0x26b0d[_0x188043(0x268)]],'mode':_0xe4d8d8(_0x547f8a[_0x188043(0x7d3)])});_0x9a9a06(_0x106146[_0x188043(0x40d)],!0x1);},'onPointerMove':_0x33f557=>{const _0x1c0ac7=_0x339841;var _0x202c8d;(_0x202c8d=_0x133fe7[_0x1c0ac7(0x2c3)])==null||_0x202c8d['push']({'target':_0x33f557[_0x1c0ac7(0x4d3)],'pointerId':_0x33f557['pointerId'],'clientX':_0x33f557[_0x1c0ac7(0x6cd)],'clientY':_0x33f557['clientY']});},'onPointerUp':_0x268d9b=>{const _0x5897ea=_0x339841;var _0x4cdd07;if((_0x4cdd07=_0x133fe7[_0x5897ea(0x2c3)])==null||_0x4cdd07[_0x5897ea(0x9fc)](),_0x352997[_0x5897ea(0x2c3)]&&_0x357fb6['current']({'target':_0x268d9b[_0x5897ea(0x4d3)],'pointerId':_0x268d9b[_0x5897ea(0x8df)],'clientX':_0x268d9b['clientX'],'clientY':_0x268d9b[_0x5897ea(0x9c0)]}),_0x352997['current']){var _0x34178e;_0x352997['current']=!0x1,_0x268d9b[_0x5897ea(0x4d3)]['hasPointerCapture'](_0x268d9b[_0x5897ea(0x8df)])&&_0x268d9b[_0x5897ea(0x4d3)][_0x5897ea(0x864)](_0x268d9b[_0x5897ea(0x8df)]);let _0x1c4573=(_0x34178e=_0x1c3377[_0x5897ea(0x2c3)])==null?void 0x0:_0x34178e[_0x5897ea(0xaf6)]();_0x1c4573&&(_0x5ac318(_0x1c4573),_0x12cef7(_0x1c4573));return;}let _0x760b7d=_0x25059f[_0x5897ea(0x2c3)];if(!_0x760b7d)return;let _0x249dcd=_0x268d9b['currentTarget'][_0x5897ea(0x3ae)](),_0x3bbde6=_0x760b7d[_0x5897ea(0x58b)]({'cssPoint':[_0x268d9b[_0x5897ea(0x6cd)]-_0x249dcd['left'],_0x268d9b[_0x5897ea(0x9c0)]-_0x249dcd[_0x5897ea(0x268)]]});_0x268d9b[_0x5897ea(0x4d3)][_0x5897ea(0x19d)](_0x268d9b[_0x5897ea(0x8df)])&&_0x268d9b['currentTarget'][_0x5897ea(0x864)](_0x268d9b['pointerId']),_0x25059f[_0x5897ea(0x2c3)]=void 0x0,_0x3ac961[_0x5897ea(0x2c3)]=!0x1,_0x9a9a06(_0x3bbde6['commandResults'],!0x0);},'onPointerCancel':_0x234730=>{const _0x443fcd=_0x339841;var _0x24a011,_0x2d10f0;(_0x24a011=_0x133fe7[_0x443fcd(0x2c3)])==null||_0x24a011[_0x443fcd(0x9fc)](),_0x352997['current']=!0x1,(_0x2d10f0=_0x25059f['current'])==null||_0x2d10f0[_0x443fcd(0x35e)](),_0x25059f['current']=void 0x0,_0x3ac961['current']=!0x1,_0x234730[_0x443fcd(0x4d3)]['hasPointerCapture'](_0x234730[_0x443fcd(0x8df)])&&_0x234730[_0x443fcd(0x4d3)][_0x443fcd(0x864)](_0x234730[_0x443fcd(0x8df)]);},'onDoubleClick':_0x4f4d75=>{const _0x30c034=_0x339841;var _0x318b7a,_0x30e92f,_0x208f08,_0x1e3e62,_0x1d99cc;if(!_0x3e3a56||!_0x328b20||!_0x238c43)return;let _0x36b2f7=_0x328b20['pages']['find'](_0x4f641e=>_0x4f641e['id']===_0x238c43);if(!_0x36b2f7)return;_0x4f4d75[_0x30c034(0xb59)]();let _0x41a559=_0x4f4d75[_0x30c034(0x4d3)][_0x30c034(0x3ae)](),_0x3f3c92=[_0x4f4d75[_0x30c034(0x6cd)]-_0x41a559[_0x30c034(0x331)],_0x4f4d75[_0x30c034(0x9c0)]-_0x41a559['top']],_0x4aca7c=_0x11bd08(_0x36b2f7,{'devicePixelRatio':(_0x318b7a=globalThis[_0x30c034(0x33f)])==null?0x1:_0x318b7a,'zoom':(_0x30e92f=_0x490af8==null?void 0x0:_0x490af8['zoom'])==null?0x1:_0x30e92f}),_0x10ce6e=[...(_0x208f08=_0x163128==null?void 0x0:_0x163128[_0x30c034(0x818)])==null?[]:_0x208f08],_0x246ce9=[...(_0x1e3e62=_0x163128==null?void 0x0:_0x163128[_0x30c034(0x45d)])==null?[]:_0x1e3e62],_0x21028b=_0x5e5052(_0x3f3c92,_0x4aca7c),_0x5d6a03=(0x0,_0x21fa40[_0x30c034(0x14f)])(0x4/_0x4aca7c[_0x30c034(0x68e)]),_0x320364=(_0x1d99cc=_0x306f13(_0x10ce6e,_0x21028b,_0x5d6a03))==null?_0x238c43+':'+Math[_0x30c034(0x157)](_0x3f3c92[0x0])+':'+Math[_0x30c034(0x157)](_0x3f3c92[0x1]):_0x1d99cc,_0x420ca0=_0x589a9a[_0x30c034(0x2c3)];_0x420ca0&&_0x420ca0[_0x30c034(0xaa9)](_0x320364,async()=>{const _0x220620=_0x30c034;if(!(await _0xe11b4d[_0x220620(0x1ad)](_0x3e3a56[_0x220620(0x49e)](),_0x21fa40['pdfSelectAtPointCommand'],{'pageId':_0x238c43,'point':_0x21028b,'tolerance':_0x5d6a03,'mode':_0x21fa40[_0x220620(0x940)][_0x220620(0x97d)],'includeNative':!!_0x10ce6e[_0x220620(0xba6)],'nativeTextTargets':_0x10ce6e,'formFieldTargets':_0x246ce9},{'actorId':_0x220620(0x3f9),'clientId':_0x220620(0x3f9)}))[_0x220620(0x309)])return;let _0x303133=_0x2e0df4[_0x220620(0x178)](_0x3e3a56[_0x220620(0x49e)]());if(!_0x303133)return;let _0x55d944=(0x0,_0x21fa40[_0x220620(0x9e6)])(_0x303133),_0x5b2741=_0x46b9bc(_0x55d944,_0x10ce6e);if(_0x5b2741){var _0x34121b;if(!(await _0xe11b4d[_0x220620(0x1ad)](_0x3e3a56['getUnitId'](),_0x21fa40[_0x220620(0x3a4)],{'pageId':_0x238c43,'text':_0x5b2741[_0x220620(0x975)],'bbox':_0x5b2741['bbox'],'displayOperationIds':(_0x34121b=_0x5b2741['displayOperationIds'])==null?[_0x5b2741['id']]:_0x34121b,'runs':_0x5b2741[_0x220620(0x416)],'source':_0x5b2741[_0x220620(0x419)]},{'actorId':_0x220620(0x3f9),'clientId':'pdf-ui'}))[_0x220620(0x309)]||(_0x303133=_0x2e0df4[_0x220620(0x178)](_0x3e3a56[_0x220620(0x49e)]()),!_0x303133))return;_0x55d944=(0x0,_0x21fa40[_0x220620(0x9e6)])(_0x303133);}_0x303133&&_0x434116(_0x55d944,_0x3f3c92,_0x4aca7c);});},'onContextMenu':_0x11a113=>{const _0x2265ab=_0x339841;var _0x3d2bb7,_0x121245;_0x11a113[_0x2265ab(0xb59)](),(_0x3d2bb7=_0x133fe7[_0x2265ab(0x2c3)])==null||_0x3d2bb7[_0x2265ab(0x9fc)](),(_0x121245=_0x25059f[_0x2265ab(0x2c3)])==null||_0x121245[_0x2265ab(0x35e)](),_0x25059f[_0x2265ab(0x2c3)]=void 0x0,_0x3ac961['current']=!0x1,_0x25d280[_0x2265ab(0x304)](_0x11a113[_0x2265ab(0xc8c)],'pdfs.contextMenu.canvas');}})]})});}function _0xe4d8d8(_0x569c4d){const _0xf14ebe=_0x59d572;switch(_0x569c4d){case _0x21fa40[_0xf14ebe(0x62b)][_0xf14ebe(0x97d)]:return _0x21fa40[_0xf14ebe(0x940)]['TEXT'];case _0x21fa40['PdfEditorToolMode'][_0xf14ebe(0x93b)]:return _0x21fa40[_0xf14ebe(0x940)]['IMAGE'];case _0x21fa40[_0xf14ebe(0x62b)][_0xf14ebe(0x54f)]:return _0x21fa40[_0xf14ebe(0x940)][_0xf14ebe(0x54f)];default:return _0x21fa40[_0xf14ebe(0x940)]['SELECT'];}}function _0x577cba(_0x2dc1e0){const _0x22ff92=_0x59d572;return _0x2dc1e0 instanceof HTMLElement&&(_0x2dc1e0[_0x22ff92(0x735)]||[_0x22ff92(0xaf3),_0x22ff92(0xa3b),'SELECT']['includes'](_0x2dc1e0[_0x22ff92(0x3d2)]));}function _0x26ffd0(_0x3fa381,_0x57864a,_0x1829ed,_0x2ae7da,_0x541465,_0x548b61){return _0x39d103({'session':_0x3fa381,'state':_0x57864a,'cssPoint':_0x1829ed,'viewport':_0x2ae7da,'measureText':(_0x609eea,_0x469416)=>{const _0x40a069=_0x57a5;if(!_0x541465)return _0x609eea[_0x40a069(0xba6)]*0x8;let _0x2db3cc=_0x541465[_0x40a069(0x7da)];_0x541465[_0x40a069(0x7da)]=_0x469416;let _0x16af0d=_0x541465['measureText'](_0x609eea)[_0x40a069(0x65c)];return _0x541465[_0x40a069(0x7da)]=_0x2db3cc,_0x16af0d;},'document':_0x548b61==null?void 0x0:_0x548b61});}function _0x5dbcc4(_0x2dbece,_0x1bbc86){const _0x1db6fa=_0x59d572;return _0x2dbece[_0x1db6fa(0x826)]===_0x1bbc86['objectId']&&_0x2dbece[_0x1db6fa(0x7ea)]===_0x1bbc86[_0x1db6fa(0x7ea)]&&_0x2dbece['storyId']===_0x1bbc86['storyId']&&_0x2dbece['runId']===_0x1bbc86[_0x1db6fa(0x5d4)];}function _0x306f13(_0x21cde4,_0x576e49,_0x23548a){const _0x46f5ac=_0x59d572;let _0x443bde;for(let _0x5d5c12 of _0x21cde4){var _0x572e3b,_0x341dc4;let [_0x3789b9,_0x53434b,_0x26d5d6,_0x44876d]=_0x5d5c12[_0x46f5ac(0xa01)];_0x576e49[0x0]<_0x3789b9-_0x23548a||_0x576e49[0x0]>_0x26d5d6+_0x23548a||_0x576e49[0x1]<_0x53434b-_0x23548a||_0x576e49[0x1]>_0x44876d+_0x23548a||(!_0x443bde||((_0x572e3b=_0x5d5c12[_0x46f5ac(0x7e1)])==null?0x0:_0x572e3b)>=((_0x341dc4=_0x443bde[_0x46f5ac(0x7e1)])==null?0x0:_0x341dc4))&&(_0x443bde=_0x5d5c12);}return _0x443bde==null?void 0x0:_0x443bde['id'];}function _0xe4b049(_0x32f5a1,_0x6672f8){const _0x26bbe6=_0x59d572;let _0x182d80=(0x0,_0x21fa40['getNewPdfEditorMutationBatches'])(_0x32f5a1[_0x26bbe6(0x1fb)],_0x6672f8[_0x26bbe6(0x1fb)]);return _0x182d80[_0x26bbe6(0xba6)]?_0x182d80[_0x26bbe6(0xb06)]((_0x538239,_0xaaa8c7)=>({'batch':_0x538239,..._0xaaa8c7===_0x182d80[_0x26bbe6(0xba6)]-0x1?{'selection':_0x6672f8[_0x26bbe6(0xb23)]}:{}})):[{'selection':_0x6672f8['selection']}];}function _0x3541d9(_0xe8892b){const _0x17628c=_0x59d572;var _0x29ec53,_0xad0153,_0x299ad,_0x18f0e2,_0x2cb683;if(!_0xe8892b[_0x17628c(0x1b6)]['storyId'])return;let _0x5da814=_0xe8892b['session'][_0x17628c(0x430)][_0x17628c(0x24a)][_0xe8892b['state']['objectId']],_0x338fbf=_0x5da814==null?void 0x0:_0x5da814['object'];if(!_0x5da814||(_0x338fbf==null?void 0x0:_0x338fbf[_0x17628c(0x2c1)])!==_0x21fa40[_0x17628c(0x8bf)][_0x17628c(0x1a5)])return;let _0x24812d=_0x338fbf,_0x401c17=(_0x29ec53=_0xe8892b[_0x17628c(0xbbe)]['editState'][_0x17628c(0x5c0)][_0xe8892b[_0x17628c(0x1b6)][_0x17628c(0x6b8)]])==null?(_0xad0153=_0xe8892b[_0x17628c(0xb09)])==null||(_0xad0153=_0xad0153[_0x17628c(0x452)])==null?void 0x0:_0xad0153[_0xe8892b[_0x17628c(0x1b6)]['storyId']]:_0x29ec53;if(!_0x401c17)return;let _0x7158c9=(_0x299ad=(_0x18f0e2=_0xe8892b[_0x17628c(0xbbe)]['editState'][_0x17628c(0x209)][_0xe8892b[_0x17628c(0x1b6)]['objectId']])==null?void 0x0:_0x18f0e2[_0x17628c(0xa01)])==null?_0x24812d[_0x17628c(0xa01)]:_0x299ad,_0x16cb22=_0x350cc0({'story':_0xe8892b['intent']['structurePreviewApplied']||!_0xe8892b['state'][_0x17628c(0x5d4)]||!_0x401c17[_0x17628c(0x416)][_0xe8892b[_0x17628c(0x1b6)]['runId']]?_0x401c17:{..._0x401c17,'runs':{..._0x401c17[_0x17628c(0x416)],[_0xe8892b['state'][_0x17628c(0x5d4)]]:{..._0x401c17['runs'][_0xe8892b['state'][_0x17628c(0x5d4)]],'text':_0xe8892b['state']['text']}}},'boxCssPx':_0x289788(_0x7158c9,_0xe8892b['viewport']),'fontSizeScale':_0xe8892b[_0x17628c(0x809)][_0x17628c(0x68e)],'measureText':(_0x126d7d,_0x4433d5)=>_0x5388e9(_0xe8892b['context'],_0x126d7d,_0x4433d5),'document':(_0x2cb683=_0xe8892b[_0x17628c(0xb09)])==null?void 0x0:_0x2cb683}),_0x2dc2fc=_0x1e6e5c(_0xe8892b[_0x17628c(0x175)])[0x3];return{'previousBbox':_0x7158c9,'nextBbox':_0x46d411({'bbox':_0x7158c9,'autoFitMinHeight':_0x24812d[_0x17628c(0xb49)],'requiredHeightCssPx':_0x16cb22[_0x17628c(0x406)],'zoom':_0xe8892b['viewport'][_0x17628c(0x68e)],'pageBottom':_0x2dc2fc})[_0x17628c(0xa01)],'pageBottom':_0x2dc2fc};}function _0x5388e9(_0x5d5020,_0x28737d,_0x10961d){const _0xa55dee=_0x59d572;if(!_0x5d5020)return _0x28737d[_0xa55dee(0xba6)]*0x8;let _0x5a5b4b=_0x5d5020[_0xa55dee(0x7da)];_0x5d5020[_0xa55dee(0x7da)]=_0x10961d;let _0x49ad61=_0x5d5020[_0xa55dee(0x5ad)](_0x28737d)['width'];return _0x5d5020[_0xa55dee(0x7da)]=_0x5a5b4b,_0x49ad61;}function _0x20bca8(_0x2eb6e0){const _0x3d379e=_0x59d572;return typeof globalThis['requestAnimationFrame']==_0x3d379e(0x9df)?{'kind':_0x3d379e(0x4e3),'id':globalThis[_0x3d379e(0xc3d)](()=>_0x2eb6e0())}:{'kind':_0x3d379e(0x75a),'id':globalThis[_0x3d379e(0x888)](_0x2eb6e0,0x10)};}function _0x180d9f(_0x54f7e4){const _0x429a5a=_0x59d572;let _0x8dd9b5=_0x54f7e4;if(_0x8dd9b5[_0x429a5a(0x395)]===_0x429a5a(0x4e3)&&typeof globalThis[_0x429a5a(0x732)]==_0x429a5a(0x9df)){globalThis['cancelAnimationFrame'](_0x8dd9b5['id']);return;}_0x8dd9b5[_0x429a5a(0x395)]===_0x429a5a(0x75a)&&globalThis[_0x429a5a(0x81d)](_0x8dd9b5['id']);}function _0x2c12c8(){const _0x40f8a9=_0x59d572;var _0x8cb775,_0x44739f,_0x3ce6fe,_0x1a339b;let _0x159e07=(0x0,_0x480239[_0x40f8a9(0xb03)])(_0x2894d3[_0x40f8a9(0x3e8)]),_0x3ac5e6=(0x0,_0x480239['useDependency'])(_0x289aee),{document:_0xc4b91e,model:_0x362249,viewport:_0x1a77a3}=_0x3d7ae3();if(!_0x362249||!_0xc4b91e)return null;let _0x3b8d03=(_0x8cb775=(_0x44739f=_0x1a77a3==null?void 0x0:_0x1a77a3[_0x40f8a9(0x2ed)])==null?(_0x3ce6fe=_0xc4b91e['pages'][0x0])==null?void 0x0:_0x3ce6fe['id']:_0x44739f)==null?'':_0x8cb775,_0x38898d=(_0x1a339b=_0x1a77a3==null?void 0x0:_0x1a77a3[_0x40f8a9(0x68e)])==null?0x1:_0x1a339b;return(0x0,_0x2cdc8e[_0x40f8a9(0x139)])(_0x40f8a9(0x624),{'className':_0x40f8a9(0x5d8),'style':{'height':0x24},'data-pdf-footer':'true','children':[(0x0,_0x2cdc8e[_0x40f8a9(0x139)])(_0x40f8a9(0x476),{'className':_0x40f8a9(0x8bc),'children':[(0x0,_0x2cdc8e['jsx'])(_0x27eb81,{}),(0x0,_0x2cdc8e['jsx'])(_0x40f8a9(0xa12),{'children':_0x159e07['t'](_0x40f8a9(0xa28))}),(0x0,_0x2cdc8e[_0x40f8a9(0x965)])(_0x4c8ef3['Select'],{'className':_0x40f8a9(0x90e),'value':_0x3b8d03,'onChange':_0x55bea1=>_0xfb341c(_0x3ac5e6,_0x362249[_0x40f8a9(0x49e)](),{'activePageId':_0x55bea1}),'options':_0xc4b91e['pages'][_0x40f8a9(0xb06)]((_0x2d830d,_0x3d3256)=>({'label':_0x3d3256+0x1,'value':_0x2d830d['id']}))})]}),(0x0,_0x2cdc8e[_0x40f8a9(0x965)])(_0x40f8a9(0x638),{'className':_0x40f8a9(0x4c3),'children':(0x0,_0x2cdc8e[_0x40f8a9(0x965)])(_0x480239[_0x40f8a9(0x5cd)],{'min':0x23,'max':0xfa,'value':Math[_0x40f8a9(0x157)](_0x38898d*0x64),'shortcuts':[0x32,0x50,0x64,0x82,0x96,0xc8,0xfa],'onChange':_0x5db9bb=>_0xfb341c(_0x3ac5e6,_0x362249[_0x40f8a9(0x49e)](),{'zoom':_0x5db9bb/0x64})})})]});}function _0x3847f5(_0xdf7211={}){const _0x415b60=_0x59d572;var _0x52e3c1,_0x161840;let _0x2f7367=(0x0,_0x3e1c10[_0x415b60(0x192)])({'maxEntries':(_0x52e3c1=_0xdf7211[_0x415b60(0x9e9)])==null?0x60:_0x52e3c1,'maxBytes':(_0x161840=_0xdf7211['maxCacheBytes'])==null?0x6000000:_0x161840}),_0x5723b6=_0xf826d1(_0x2f7367),_0x429361=new Set(),_0x51e206={'pageWindow':{'visiblePageIndexes':[],'renderPageIndexes':[],'bufferPageIndexes':[],'evictPageIndexes':[]},'cache':_0x2f7367[_0x415b60(0xca1)](),'scheduledTaskCount':0x0};return{'renderPage'(_0xf7f1b8,_0x1cab55,_0x32d2b0,_0x7e0f04={}){const _0x5b6aa3=_0x415b60;var _0x598d1d;let _0x4e8cef=(_0x598d1d=(0x0,_0x21fa40[_0x5b6aa3(0x65d)])(_0xf7f1b8)['pageIndexById'][_0x5b6aa3(0x2ad)](_0x1cab55))==null?-0x1:_0x598d1d;if(_0x4e8cef<0x0)throw Error(_0x5b6aa3(0x266)+_0x1cab55);let _0x5905d6=(0x0,_0x3e1c10[_0x5b6aa3(0x324)])({'pageCount':_0xf7f1b8[_0x5b6aa3(0x664)][_0x5b6aa3(0xba6)],'visiblePageIndexes':[_0x4e8cef],'bufferBefore':_0xdf7211[_0x5b6aa3(0x9ec)],'bufferAfter':_0xdf7211[_0x5b6aa3(0x469)],'retainedPageIndexes':[..._0x429361]});_0x26aa2a(_0x2f7367,_0xf7f1b8,_0x5905d6[_0x5b6aa3(0x98e)]),_0x3a6916(_0x2f7367,_0xf7f1b8,_0x5905d6);let _0x5d9273=_0x4b3226(_0xf7f1b8,_0x1cab55,_0x32d2b0,{..._0x7e0f04,'scheduler':_0x5723b6[_0x5b6aa3(0x759)]});return _0x429361=new Set(_0x5905d6[_0x5b6aa3(0x891)]),_0x51e206={'pageWindow':_0x5905d6,'cache':_0x2f7367[_0x5b6aa3(0xca1)](),'scheduledTaskCount':_0x5723b6['scheduledTaskCount'],'lastTask':_0x5723b6[_0x5b6aa3(0xc86)]},{'viewport':_0x5d9273,'diagnostics':_0x51e206};},'getDiagnostics'(){return _0x51e206;},'reset'(){const _0x4d37c7=_0x415b60;_0x2f7367[_0x4d37c7(0x5d2)](),_0x429361=new Set(),_0x5723b6[_0x4d37c7(0x3bd)](),_0x51e206={'pageWindow':{'visiblePageIndexes':[],'renderPageIndexes':[],'bufferPageIndexes':[],'evictPageIndexes':[]},'cache':_0x2f7367[_0x4d37c7(0xca1)](),'scheduledTaskCount':0x0};}};}function _0xf826d1(_0x26464e){const _0x5c0750=_0x59d572;let _0x2a3350=(0x0,_0x3e1c10[_0x5c0750(0x179)])(),_0x5c5609=0x0,_0x570f83;return{'scheduler':{'schedule'(_0x17575c){const _0x4b1273=_0x5c0750;_0x5c5609+=0x1;let _0x5d8ad5=_0x2a3350[_0x4b1273(0x522)](_0x17575c),_0x176ecd=_0x403cc4(_0x17575c[_0x4b1273(0xb9b)]);return _0x5d8ad5[_0x4b1273(0x52d)]===_0x4b1273(0x3fd)&&_0x26464e[_0x4b1273(0xad2)]({'key':_0x17575c[_0x4b1273(0xb9b)][_0x4b1273(0xa76)],'value':{'pageId':_0x17575c['plan'][_0x4b1273(0x8ee)],'target':_0x17575c[_0x4b1273(0xb9b)]['target'],'viewport':_0x17575c[_0x4b1273(0xb9b)]['viewport']},'byteSize':_0x176ecd,'kind':_0x17575c[_0x4b1273(0xb9b)][_0x4b1273(0x5f8)][_0x4b1273(0x395)]===_0x4b1273(0x541)?_0x4b1273(0x541):_0x4b1273(0x175),'priority':0x64}),_0x570f83={'taskId':_0x17575c['id'],'planId':_0x17575c['plan']['id'],'status':_0x5d8ad5[_0x4b1273(0x52d)],'cacheKey':_0x17575c[_0x4b1273(0xb9b)][_0x4b1273(0xa76)],'opCount':_0x17575c[_0x4b1273(0xb9b)][_0x4b1273(0x7a8)]['opCount'],'byteSize':_0x176ecd},_0x5d8ad5;},'cancel'(_0x23a0d4,_0x3d7ade){const _0x62e8ee=_0x5c0750;var _0x2feeb2;(_0x2feeb2=_0x2a3350[_0x62e8ee(0x9fc)])==null||_0x2feeb2[_0x62e8ee(0x3f4)](_0x2a3350,_0x23a0d4,_0x3d7ade);}},get 'scheduledTaskCount'(){return _0x5c5609;},get 'lastTask'(){return _0x570f83;},'reset'(){_0x5c5609=0x0,_0x570f83=void 0x0;}};}function _0x3a6916(_0x5d4e4c,_0x6c8343,_0x45874c){const _0x76471c=_0x59d572;let _0x310215=new Set(_0x45874c[_0x76471c(0x80c)]);for(let _0x5a43df of _0x45874c['renderPageIndexes']){let _0x2560a7=_0x6c8343['pages'][_0x5a43df];if(!_0x2560a7)continue;let _0x195f64=_0x4d6236(_0x6c8343,_0x2560a7['id']);_0x5d4e4c[_0x76471c(0xad2)]({'key':_0x37472d(_0x6c8343['id'],_0x2560a7['id']),'value':{'pageId':_0x2560a7['id'],'opCount':_0x195f64},'byteSize':Math[_0x76471c(0x542)](0x40,_0x195f64*0xa0),'kind':_0x76471c(0x657),'priority':_0x310215[_0x76471c(0x66b)](_0x5a43df)?0x32:0x14});}}function _0x26aa2a(_0x2d02ed,_0x575aa2,_0x1f94e6){for(let _0x15ec34 of _0x1f94e6){let _0x6095e3=_0x575aa2['pages'][_0x15ec34];_0x6095e3&&_0x2d02ed['delete'](_0x37472d(_0x575aa2['id'],_0x6095e3['id']));}}function _0x403cc4(_0x383b2f){const _0xb421dc=_0x59d572;var _0x1ad213,_0x3d8b2b,_0x56f0b3;if(!_0x383b2f['viewport'])return Math[_0xb421dc(0x542)](0x40,_0x383b2f['stats'][_0xb421dc(0x61e)]*0xa0);let _0x1579c3=(_0x1ad213=_0x383b2f[_0xb421dc(0x809)][_0xb421dc(0x33f)])==null?0x1:_0x1ad213,_0x653f=((_0x3d8b2b=_0x383b2f['viewport']['widthCssPx'])==null?0x0:_0x3d8b2b)*_0x1579c3*(((_0x56f0b3=_0x383b2f[_0xb421dc(0x809)][_0xb421dc(0xc23)])==null?0x0:_0x56f0b3)*_0x1579c3)*0x4;return Math[_0xb421dc(0x542)](0x40,Math[_0xb421dc(0x157)](_0x653f));}function _0x37472d(_0x40a33a,_0x470106){const _0x9513bf=_0x59d572;return _0x40a33a+_0x9513bf(0x375)+_0x470106;}function _0x4d6236(_0x40b352,_0x83cc90){const _0x281ffe=_0x59d572;var _0x468345;return((_0x468345=(0x0,_0x21fa40['getPdfDocumentRuntimeIndex'])(_0x40b352)['displayListIdsByPage'][_0x281ffe(0x2ad)](_0x83cc90))==null?[]:_0x468345)[_0x281ffe(0xc71)]((_0x9060c,_0xdf988)=>{const _0x28a7cf=_0x281ffe;var _0x390c11,_0x40d15d;return _0x9060c+((_0x390c11=(_0x40d15d=_0x40b352['displayLists'][_0xdf988])==null?void 0x0:_0x40d15d['ops'][_0x28a7cf(0xba6)])==null?0x0:_0x390c11);},0x0);}let _0x35b451=0x60/0x48;function _0xfa2a6b(_0x42cb67){const _0x2f1d25=_0x59d572;var _0x232b43;let _0x3fc64a=_0x42cb67[_0x2f1d25(0x814)]===0x5a||_0x42cb67['rotation']===0x10e,_0x3865ce=Math[_0x2f1d25(0x542)](0x0,_0x3fc64a?_0x42cb67['pageHeightPt']:_0x42cb67[_0x2f1d25(0xb07)])*_0x35b451,_0x27a4bb=Math[_0x2f1d25(0x542)](0x0,_0x3fc64a?_0x42cb67['pageWidthPt']:_0x42cb67[_0x2f1d25(0x3ec)])*_0x35b451,_0x2d43ae=Math[_0x2f1d25(0x542)](0x0,_0x42cb67[_0x2f1d25(0x38c)]),_0x197605=Math[_0x2f1d25(0x542)](0x0,_0x42cb67[_0x2f1d25(0xca9)]),_0x10c5cd=_0x3865ce>0x0&&_0x27a4bb>0x0?Math[_0x2f1d25(0xb2a)](_0x2d43ae/_0x3865ce,_0x197605/_0x27a4bb):0x0,_0x1a88d8=Math[_0x2f1d25(0x542)](0x0,_0x3865ce*Math[_0x2f1d25(0x542)](0x0,_0x10c5cd)),_0x19ee4a=Math[_0x2f1d25(0x542)](0x0,_0x27a4bb*Math['max'](0x0,_0x10c5cd)),_0x3636ef=Math[_0x2f1d25(0x542)](0x1,Math[_0x2f1d25(0xb2a)](0x2,(_0x232b43=_0x42cb67[_0x2f1d25(0x33f)])==null?0x1:_0x232b43));return{'widthCssPx':_0x1a88d8,'heightCssPx':_0x19ee4a,'widthDevicePx':Math[_0x2f1d25(0x542)](0x1,Math[_0x2f1d25(0x780)](_0x1a88d8*_0x3636ef)),'heightDevicePx':Math[_0x2f1d25(0x542)](0x1,Math['ceil'](_0x19ee4a*_0x3636ef)),'devicePixelRatio':_0x3636ef,'zoom':Math[_0x2f1d25(0x542)](0x0,_0x10c5cd)};}function _0x2e3981(_0xee2a67={}){const _0x41f07d=_0x59d572;var _0x186a75,_0xe15e45,_0x39b2f1,_0x4741c2,_0x150490,_0x23cb22;let _0x4ebd8a=Math[_0x41f07d(0x542)](0x1,(_0x186a75=_0xee2a67[_0x41f07d(0x840)])==null?0x30:_0x186a75),_0x28b450=_0x3847f5({'bufferBefore':0x0,'bufferAfter':0x0,'maxCacheEntries':_0x4ebd8a}),_0x3edf7b=(_0xe15e45=_0xee2a67[_0x41f07d(0x7a5)])==null?(_0x45d6a2,_0x4254af,_0x5cc612,_0x35e332)=>_0x28b450['renderPage'](_0x45d6a2,_0x4254af,_0x5cc612,_0x35e332):_0xe15e45,_0x460c59=(_0x39b2f1=_0xee2a67[_0x41f07d(0x866)])==null?_0x1fb6b6:_0x39b2f1,_0xe0e35a=(_0x4741c2=_0xee2a67[_0x41f07d(0x522)])==null?_0x2527bd:_0x4741c2,_0x106230=(_0x150490=_0xee2a67[_0x41f07d(0xbb3)])==null?_0x75234d:_0x150490,_0x50501f=(_0x23cb22=_0xee2a67[_0x41f07d(0x5d0)])==null?void 0x0:_0x23cb22,_0x3410b0=new Map(),_0x4c9f29=new Map(),_0x52f817=[],_0x48f96e,_0x26357a,_0x4acf3a=new WeakMap(),_0x3fd451=_0x54bef6=>{const _0x137d45=_0x41f07d;let _0x4d28ca=(0x0,_0x21fa40['getPdfDocumentRuntimeIndex'])(_0x54bef6[_0x137d45(0xb09)])[_0x137d45(0x1ef)][_0x137d45(0x2ad)](_0x54bef6[_0x137d45(0x8ee)]);if(!_0x4d28ca)throw Error('PDF\x20page\x20not\x20found:\x20'+_0x54bef6[_0x137d45(0x8ee)]);let _0x4761c1=_0x50af46(_0x4d28ca,_0x54bef6);return{'key':_0xdcd609(_0x54bef6,_0x4761c1,_0x68f319(_0x4c9f29,_0x54bef6[_0x137d45(0xb09)]['id'],_0x54bef6[_0x137d45(0x8ee)])),'viewport':_0x4761c1};},_0x5cf678=_0x1ab639=>{const _0x2f6d4f=_0x41f07d;let _0x320069=_0x3410b0[_0x2f6d4f(0x2ad)](_0x1ab639);return _0x320069&&(_0x3410b0['delete'](_0x1ab639),_0x3410b0[_0x2f6d4f(0xad2)](_0x1ab639,_0x320069)),_0x320069;},_0x51ec0d=_0x224449=>{const _0x55b364=_0x41f07d;_0x3410b0[_0x55b364(0xad2)](_0x224449['key'],_0x224449),_0x308fbe(_0x3410b0,_0x4ebd8a);},_0x5a634e=(_0xcfc554,_0x237b0c)=>{const _0x166007=_0x41f07d;_0x17f730(_0xcfc554[_0x166007(0x21d)],_0x237b0c[_0x166007(0x419)],_0x237b0c['viewport']),_0x4acf3a[_0x166007(0xad2)](_0xcfc554['canvas'],_0x237b0c['key']);},_0x229456=_0x487071=>{const _0x440d04=_0x41f07d;let {key:_0x24ed1b,viewport:_0x3e3163}=_0x3fd451(_0x487071);if(_0x4acf3a[_0x440d04(0x2ad)](_0x487071[_0x440d04(0x21d)])===_0x24ed1b)return _0x3e3163;let _0x47ea42=_0x5cf678(_0x24ed1b);if(!_0x47ea42){var _0x56e011,_0x244801,_0x9f8757,_0x160d2a;let _0x42c854=_0x460c59();_0x3edf7b(_0x487071[_0x440d04(0xb09)],_0x487071[_0x440d04(0x8ee)],_0x42c854,{..._0x487071[_0x440d04(0x922)],'background':(_0x56e011=(_0x244801=_0x487071['renderOptions'])==null?void 0x0:_0x244801['background'])==null?_0x440d04(0x14d):_0x56e011,'showPageBoundary':(_0x9f8757=(_0x160d2a=_0x487071[_0x440d04(0x922)])==null?void 0x0:_0x160d2a[_0x440d04(0xc37)])!=null&&_0x9f8757,'zoom':_0x3e3163['zoom'],'devicePixelRatio':_0x3e3163[_0x440d04(0x33f)]}),_0x47ea42={'key':_0x24ed1b,'documentId':_0x487071[_0x440d04(0xb09)]['id'],'pageId':_0x487071[_0x440d04(0x8ee)],'source':_0x42c854,'viewport':_0x3e3163},_0x51ec0d(_0x47ea42);}return _0x5a634e(_0x487071,_0x47ea42),_0x3e3163;},_0x587ca6=async _0x49391f=>{const _0x2d4088=_0x41f07d;if(!_0x49391f[_0x2d4088(0xc96)])return;let _0x4a4a4b=_0x49391f[_0x2d4088(0x526)],{key:_0x76b67c,viewport:_0x1c7a55}=_0x3fd451(_0x4a4a4b);if(_0x4acf3a['get'](_0x4a4a4b[_0x2d4088(0x21d)])===_0x76b67c)return;let _0x11fb7d=_0x5cf678(_0x76b67c);if(!_0x11fb7d){var _0x15fff5;let _0x483dfe=await(_0x50501f==null?void 0x0:_0x50501f['render'](_0x4a4a4b,_0x1c7a55,(_0x15fff5=_0x49391f[_0x2d4088(0x63c)])==null?void 0x0:_0x15fff5['signal'])['catch'](()=>void 0x0)),_0x2f679e=_0x3fd451(_0x4a4a4b)[_0x2d4088(0x585)];if(!_0x49391f['active']||_0x2f679e!==_0x76b67c){_0x483dfe==null||_0x483dfe[_0x2d4088(0x408)]();return;}_0x483dfe&&(_0x11fb7d={'key':_0x76b67c,'documentId':_0x4a4a4b[_0x2d4088(0xb09)]['id'],'pageId':_0x4a4a4b['pageId'],'source':_0x483dfe,'viewport':_0x1c7a55},_0x51ec0d(_0x11fb7d));}_0x49391f[_0x2d4088(0xc96)]&&(_0x11fb7d?_0x5a634e(_0x4a4a4b,_0x11fb7d):_0x229456(_0x4a4a4b));},_0x157b80=()=>{const _0x49251c=_0x41f07d;_0x48f96e!==void 0x0||!_0x52f817[_0x49251c(0x790)](_0x1874ed=>_0x1874ed['active'])||(_0x48f96e=_0xe0e35a(()=>{const _0x291524=_0x49251c;_0x48f96e=void 0x0;let _0x22cdc5;for(;_0x52f817[_0x291524(0xba6)]>0x0;){let _0x4cd92f=_0x52f817['shift']();if(_0x4cd92f!=null&&_0x4cd92f['active']){_0x22cdc5=_0x4cd92f;break;}}if(!(_0x22cdc5!=null&&_0x22cdc5[_0x291524(0xc96)])){_0x157b80();return;}if(_0x26357a=_0x22cdc5,_0x50501f)_0x587ca6(_0x22cdc5)[_0x291524(0x849)](()=>{const _0x33c415=_0x291524;_0x22cdc5[_0x33c415(0xc96)]=!0x1,_0x26357a===_0x22cdc5&&(_0x26357a=void 0x0),_0x157b80();});else try{_0x22cdc5['active']=!0x1,_0x229456(_0x22cdc5['input']);}finally{_0x26357a===_0x22cdc5&&(_0x26357a=void 0x0),_0x157b80();}}));};return{'render':_0x229456,'schedule'(_0x491c96){let _0x1f1b37={'active':!0x0,'abortController':_0x50501f?new AbortController():void 0x0,'input':_0x491c96};return _0x52f817['push'](_0x1f1b37),_0x157b80(),()=>{const _0x30b0fa=_0x57a5;var _0xf8cbd0;if(!_0x1f1b37[_0x30b0fa(0xc96)])return;_0x1f1b37[_0x30b0fa(0xc96)]=!0x1,(_0xf8cbd0=_0x1f1b37[_0x30b0fa(0x63c)])==null||_0xf8cbd0[_0x30b0fa(0x5e8)]();let _0x360b9a=_0x52f817[_0x30b0fa(0x709)](_0x1f1b37);_0x360b9a>=0x0&&_0x52f817[_0x30b0fa(0x98b)](_0x360b9a,0x1),!_0x52f817[_0x30b0fa(0x790)](_0x3dad61=>_0x3dad61[_0x30b0fa(0xc96)])&&_0x48f96e!==void 0x0&&(_0x106230(_0x48f96e),_0x48f96e=void 0x0);};},'invalidate'(_0x141cec,_0x5f69b){const _0x3c1b1a=_0x41f07d;var _0x4652d1;let _0x378eff=_0x47bc55(_0x141cec,_0x5f69b);if(_0x4c9f29[_0x3c1b1a(0xad2)](_0x378eff,((_0x4652d1=_0x4c9f29[_0x3c1b1a(0x2ad)](_0x378eff))==null?0x0:_0x4652d1)+0x1),(_0x26357a==null?void 0x0:_0x26357a[_0x3c1b1a(0x526)]['document']['id'])===_0x141cec&&(!_0x5f69b||_0x26357a[_0x3c1b1a(0x526)]['pageId']===_0x5f69b)){var _0x3332e3;_0x26357a[_0x3c1b1a(0xc96)]=!0x1,(_0x3332e3=_0x26357a[_0x3c1b1a(0x63c)])==null||_0x3332e3[_0x3c1b1a(0x5e8)]();}for(let [_0x3314f1,_0xe0bf01]of _0x3410b0)_0xe0bf01[_0x3c1b1a(0x401)]===_0x141cec&&(!_0x5f69b||_0xe0bf01['pageId']===_0x5f69b)&&(_0x3410b0[_0x3c1b1a(0x297)](_0x3314f1),_0x9c5f1a(_0xe0bf01['source']));},'reset'(){const _0x148579=_0x41f07d;if(_0x26357a){var _0x450504;_0x26357a[_0x148579(0xc96)]=!0x1,(_0x450504=_0x26357a[_0x148579(0x63c)])==null||_0x450504[_0x148579(0x5e8)](),_0x26357a=void 0x0;}_0x52f817[_0x148579(0xc9d)](_0x3d540c=>{const _0x32a657=_0x148579;var _0x39fa18;_0x3d540c[_0x32a657(0xc96)]=!0x1,(_0x39fa18=_0x3d540c[_0x32a657(0x63c)])==null||_0x39fa18['abort']();}),_0x52f817[_0x148579(0xba6)]=0x0,_0x48f96e!==void 0x0&&(_0x106230(_0x48f96e),_0x48f96e=void 0x0),_0x3410b0['forEach'](_0x33c51f=>_0x9c5f1a(_0x33c51f[_0x148579(0x419)])),_0x3410b0[_0x148579(0x5d2)](),_0x4c9f29['clear'](),_0x4acf3a=new WeakMap(),_0x28b450[_0x148579(0x3bd)](),_0x50501f==null||_0x50501f[_0x148579(0x3bd)]();},'getCacheSize'(){const _0x14bd0b=_0x41f07d;return _0x3410b0[_0x14bd0b(0x71b)];}};}function _0x50af46(_0x298351,_0x42f99b){const _0x31062e=_0x59d572;var _0x52a0a0,_0x1da03d;let _0x119f15=(_0x52a0a0=_0x298351[_0x31062e(0x336)][_0x31062e(0x58c)])==null?_0x298351[_0x31062e(0x336)]['mediaBox']:_0x52a0a0;return _0xfa2a6b({'pageWidthPt':Math[_0x31062e(0x542)](0x0,_0x119f15[0x2]-_0x119f15[0x0]),'pageHeightPt':Math[_0x31062e(0x542)](0x0,_0x119f15[0x3]-_0x119f15[0x1]),'rotation':(_0x1da03d=_0x298351[_0x31062e(0x814)])==null?0x0:_0x1da03d,'maxWidthCssPx':_0x42f99b[_0x31062e(0x38c)],'maxHeightCssPx':_0x42f99b[_0x31062e(0xca9)],'devicePixelRatio':_0x42f99b[_0x31062e(0x33f)]});}function _0xdcd609(_0x3d24b3,_0x31a93,_0x40ed54=0x0){const _0x41932e=_0x59d572;return[_0x3d24b3['document']['id'],_0x3d24b3[_0x41932e(0x8ee)],(0x0,_0x21fa40['serializePdfPageCacheEpoch'])(_0x3d24b3[_0x41932e(0x18e)]),_0x31a93[_0x41932e(0x2a1)],_0x31a93[_0x41932e(0x4cd)],_0x5ee01e(_0x3d24b3[_0x41932e(0x922)]),_0x40ed54][_0x41932e(0xb26)](':');}function _0x5ee01e(_0x3559f3){const _0x51a13d=_0x59d572;var _0x82e4ed,_0x34dcb1,_0x5b52ee,_0x31cfb6,_0x139674,_0x3945f3,_0x2b862b;return JSON[_0x51a13d(0x9aa)]([(_0x82e4ed=_0x3559f3==null?void 0x0:_0x3559f3['background'])==null?_0x51a13d(0x14d):_0x82e4ed,(_0x34dcb1=_0x3559f3==null?void 0x0:_0x3559f3[_0x51a13d(0xc37)])!=null&&_0x34dcb1,(_0x5b52ee=_0x3559f3==null?void 0x0:_0x3559f3['showRawObjects'])!=null&&_0x5b52ee,(_0x31cfb6=_0x3559f3==null?void 0x0:_0x3559f3[_0x51a13d(0xbff)])==null||_0x31cfb6,(_0x139674=_0x3559f3==null?void 0x0:_0x3559f3[_0x51a13d(0x8bd)])!=null&&_0x139674,(_0x3945f3=_0x3559f3==null?void 0x0:_0x3559f3[_0x51a13d(0x25d)])==null||_0x3945f3,(_0x2b862b=_0x3559f3==null?void 0x0:_0x3559f3[_0x51a13d(0x5ec)])!=null&&_0x2b862b]);}function _0x68f319(_0x1a29df,_0x4f09a9,_0xfbc4a){const _0x1d76db=_0x59d572;var _0x5a9902,_0x408cce;return[(_0x5a9902=_0x1a29df[_0x1d76db(0x2ad)](_0x47bc55(_0x4f09a9)))==null?0x0:_0x5a9902,(_0x408cce=_0x1a29df[_0x1d76db(0x2ad)](_0x47bc55(_0x4f09a9,_0xfbc4a)))==null?0x0:_0x408cce]['join']('.');}function _0x47bc55(_0x54b748,_0x5325ca=''){return _0x54b748+'\x00'+_0x5325ca;}function _0x17f730(_0x23232f,_0x309757,_0x314e15){const _0x421851=_0x59d572;var _0x465abd;_0x23232f[_0x421851(0x65c)]=_0x314e15[_0x421851(0x2a1)],_0x23232f[_0x421851(0x1ae)]=_0x314e15[_0x421851(0x4cd)],_0x23232f['style']&&(_0x23232f[_0x421851(0x2f9)][_0x421851(0x65c)]=_0x314e15[_0x421851(0x2c9)]+'px',_0x23232f[_0x421851(0x2f9)][_0x421851(0x1ae)]=_0x314e15[_0x421851(0xc23)]+'px');let _0x1eec98=_0x23232f[_0x421851(0x2f2)]('2d');_0x1eec98!=null&&_0x1eec98[_0x421851(0x198)]&&((_0x465abd=_0x1eec98[_0x421851(0xc55)])==null||_0x465abd[_0x421851(0x3f4)](_0x1eec98,_0x314e15[_0x421851(0x33f)],0x0,0x0,_0x314e15['devicePixelRatio'],0x0,0x0),_0x1eec98[_0x421851(0x3da)](0x0,0x0,_0x314e15['widthCssPx'],_0x314e15[_0x421851(0xc23)]),_0x1eec98['drawImage'](_0x309757,0x0,0x0,_0x314e15[_0x421851(0x2c9)],_0x314e15[_0x421851(0xc23)]));}function _0x308fbe(_0x532724,_0x49bacb){const _0x15b5ae=_0x59d572;for(;_0x532724[_0x15b5ae(0x71b)]>_0x49bacb;){let _0x4c23d8=_0x532724[_0x15b5ae(0x3ed)]()['next']()[_0x15b5ae(0x85b)];if(!_0x4c23d8)return;let _0x578d22=_0x532724[_0x15b5ae(0x2ad)](_0x4c23d8);_0x532724[_0x15b5ae(0x297)](_0x4c23d8),_0x578d22&&_0x9c5f1a(_0x578d22['source']);}}function _0x9c5f1a(_0x53103e){const _0x1f943e=_0x59d572;_0x1f943e(0x408)in _0x53103e&&typeof _0x53103e[_0x1f943e(0x408)]==_0x1f943e(0x9df)&&_0x53103e['close']();}function _0x1fb6b6(){const _0x560d01=_0x59d572;if(typeof document>'u')throw TypeError(_0x560d01(0x7c9));return document['createElement'](_0x560d01(0x21d));}function _0x2527bd(_0x35f838){const _0x1662c2=_0x59d572;return typeof globalThis['requestIdleCallback']=='function'?{'kind':_0x1662c2(0xb9d),'id':globalThis['requestIdleCallback'](()=>_0x35f838())}:{'kind':'timeout','id':globalThis['setTimeout'](_0x35f838,0x0)};}function _0x75234d(_0x50bb17){const _0x1afefa=_0x59d572;let _0x4fdbcd=_0x50bb17;(_0x4fdbcd==null?void 0x0:_0x4fdbcd[_0x1afefa(0x395)])===_0x1afefa(0xb9d)&&typeof globalThis[_0x1afefa(0x59e)]=='function'?globalThis[_0x1afefa(0x59e)](_0x4fdbcd['id']):(_0x4fdbcd==null?void 0x0:_0x4fdbcd[_0x1afefa(0x395)])===_0x1afefa(0x75a)&&globalThis[_0x1afefa(0x81d)](_0x4fdbcd['id']);}function _0x3012d9(_0x20b6b6={}){const _0x29ce63=_0x59d572;var _0x48259d,_0x394fee;let _0x36ec4e=(_0x48259d=_0x20b6b6['createImageBitmap'])==null?typeof globalThis['createImageBitmap']==_0x29ce63(0x9df)?globalThis[_0x29ce63(0xac3)]['bind'](globalThis):void 0x0:_0x48259d;if(!_0x36ec4e||!_0x20b6b6[_0x29ce63(0x37f)]&&!_0x20b6b6['workerURL'])return;let _0xb1b453=_0xf5310(_0x20b6b6[_0x29ce63(0xb05)])?_0x20b6b6[_0x29ce63(0xb05)]:void 0x0;if(!_0x20b6b6[_0x29ce63(0x37f)]&&!_0xb1b453&&(typeof globalThis['Worker']!=_0x29ce63(0x9df)||typeof globalThis[_0x29ce63(0x686)]!=_0x29ce63(0x9df)))return;let _0x32af78=(_0x394fee=_0x20b6b6[_0x29ce63(0x37f)])==null?()=>_0xb1b453==null?new Worker(_0x20b6b6['workerURL'],{'type':_0x29ce63(0x957),'name':_0x29ce63(0x397)}):_0xb1b453:_0x394fee,_0x467712=!_0xb1b453,_0x58e497=new Map(),_0x3bd7f4,_0x3e3222=0x1,_0x1d7267=!0x1,_0x494d2a=!0x1,_0x58e570=(_0x89bf50,_0x32aa73)=>{const _0x568a03=_0x29ce63;let _0xa85c=_0x58e497['get'](_0x89bf50);return _0xa85c?(_0x58e497['delete'](_0x89bf50),_0xa85c[_0x568a03(0x325)]&&_0xa85c[_0x568a03(0x36b)]&&_0xa85c[_0x568a03(0x325)][_0x568a03(0x4e0)](_0x568a03(0x5e8),_0xa85c[_0x568a03(0x36b)]),_0xa85c[_0x568a03(0x2df)](_0x32aa73),!0x0):!0x1;},_0x2ce3b1=()=>{const _0x238955=_0x29ce63;[..._0x58e497[_0x238955(0x3ed)]()][_0x238955(0xc9d)](_0x4b017d=>_0x58e570(_0x4b017d,void 0x0));},_0x45e550=()=>{const _0x4ee3e6=_0x29ce63;if(!(_0x1d7267||_0x494d2a)){if(_0x3bd7f4)return _0x3bd7f4;try{let _0x289dae=_0x32af78();_0x3bd7f4=_0x289dae,_0x289dae[_0x4ee3e6(0x83b)]=_0x2e36e5=>{const _0x16f67b=_0x4ee3e6;let _0x181720=_0x2e36e5[_0x16f67b(0xb81)][_0x16f67b(0x2c1)]===_0x16f67b(0x1eb)?_0x2e36e5['data'][_0x16f67b(0x671)]:void 0x0;_0x58e570(_0x2e36e5[_0x16f67b(0xb81)]['id'],_0x181720)||_0x2e36e5['data'][_0x16f67b(0x2c1)]===_0x16f67b(0x1eb)&&_0x2e36e5['data']['bitmap']['close']();};let _0x57d960=()=>{const _0x702c4f=_0x4ee3e6;_0x494d2a=!0x0,_0x2ce3b1(),_0x467712&&_0x289dae[_0x702c4f(0x508)](),_0x3bd7f4===_0x289dae&&(_0x3bd7f4=void 0x0);};return _0x289dae['onerror']=_0x57d960,_0x289dae[_0x4ee3e6(0xb11)]=_0x57d960,_0x289dae;}catch{_0x494d2a=!0x0;return;}}};return{async 'render'(_0x45150a,_0x333fb4,_0x4d1cf3){const _0xb975a7=_0x29ce63;if(_0x4d1cf3!=null&&_0x4d1cf3[_0xb975a7(0x556)])return;let _0x3f3a59=await _0x465632(_0x45150a,_0x333fb4,_0x36ec4e);if(!_0x3f3a59)return;if(_0x1d7267||_0x4d1cf3!=null&&_0x4d1cf3[_0xb975a7(0x556)]){_0x228754(_0x3f3a59);return;}let _0x4e67c8=_0x45e550();if(!_0x4e67c8){_0x228754(_0x3f3a59);return;}let _0x17ba36=_0x3e3222++,_0xe6cc5b={'type':_0xb975a7(0x3cf),'id':_0x17ba36,'document':_0x3f3a59['document'],'pageId':_0x45150a['pageId'],'viewport':_0x333fb4,'options':_0x3f3a59[_0xb975a7(0x62c)],'images':_0x3f3a59[_0xb975a7(0x707)],'pageRaster':_0x3f3a59['pageRaster']},_0x3b4584=[..._0x3f3a59['images'][_0xb975a7(0xb06)](_0x3ac368=>_0x3ac368['bitmap']),..._0x3f3a59['pageRaster']?[_0x3f3a59[_0xb975a7(0x3c9)]]:[]];return new Promise(_0x2d4415=>{const _0x37b218=_0xb975a7;let _0x3c7f7c=!0x1,_0x28668b=()=>{const _0x316022=_0x57a5;_0x58e497[_0x316022(0x66b)](_0x17ba36)&&(_0x3c7f7c||_0x228754(_0x3f3a59),_0x467712?(_0x4e67c8[_0x316022(0x508)](),_0x3bd7f4===_0x4e67c8&&(_0x3bd7f4=void 0x0),_0x2ce3b1()):_0x58e570(_0x17ba36,void 0x0));};if(_0x58e497[_0x37b218(0xad2)](_0x17ba36,{'abortListener':_0x28668b,'resolve':_0x2d4415,'signal':_0x4d1cf3}),_0x4d1cf3==null||_0x4d1cf3['addEventListener']('abort',_0x28668b,{'once':!0x0}),_0x4d1cf3!=null&&_0x4d1cf3['aborted']){_0x28668b();return;}try{_0x3c7f7c=!0x0,_0x4e67c8[_0x37b218(0x924)](_0xe6cc5b,_0x3b4584);}catch{_0x58e570(_0x17ba36,void 0x0),_0x228754(_0x3f3a59);}});},'reset'(){const _0x52867d=_0x29ce63;_0x1d7267=!0x0,_0x2ce3b1(),_0x3bd7f4&&_0x467712?_0x3bd7f4['terminate']():_0x3bd7f4&&(_0x3bd7f4[_0x52867d(0x83b)]=null,_0x3bd7f4[_0x52867d(0x86b)]=null,_0x3bd7f4[_0x52867d(0xb11)]=null),_0x3bd7f4=void 0x0;}};}async function _0x465632(_0x4213eb,_0x28fa3f,_0x5d880d){const _0xaab449=_0x59d572;let _0x25a304=(0x0,_0x21fa40[_0xaab449(0x65d)])(_0x4213eb[_0xaab449(0xb09)])[_0xaab449(0x1ef)][_0xaab449(0x2ad)](_0x4213eb[_0xaab449(0x8ee)]),_0x2659a2=_0x4213eb[_0xaab449(0x922)];if(!_0x25a304||_0x2659a2!=null&&_0x2659a2[_0xaab449(0x7d5)]||(_0x2659a2==null?void 0x0:_0x2659a2['groupCompositor'])!==void 0x0&&_0x2659a2[_0xaab449(0x6bc)]!==null)return;let _0x12def4=_0x1fa60b(_0x4213eb[_0xaab449(0xb09)],_0x25a304);if(!_0x4358c6(_0x4213eb[_0xaab449(0xb09)],_0x12def4,_0x2659a2))return;let _0x27b1d2=_0x11bd08(_0x25a304,{'zoom':_0x28fa3f[_0xaab449(0x68e)],'devicePixelRatio':_0x28fa3f[_0xaab449(0x33f)]}),_0x33afb9={'document':_0x12def4,'options':{'background':_0x2659a2==null?void 0x0:_0x2659a2['background'],'showPageBoundary':_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0xc37)],'showRawObjects':_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0x517)],'showAnnotations':_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0xbff)],'showAnnotationBounds':_0x2659a2==null?void 0x0:_0x2659a2['showAnnotationBounds'],'enableTransparencyGroups':_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0x25d)],'preferPageRaster':_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0x5ec)],'disableGroupCompositor':(_0x2659a2==null?void 0x0:_0x2659a2[_0xaab449(0x6bc)])===null,'suppressedDisplayOperationIds':_0x2659a2!=null&&_0x2659a2['suppressedDisplayOperationIds']?[..._0x2659a2[_0xaab449(0x11c)]]:void 0x0,'suppressedObjectIds':_0x2659a2!=null&&_0x2659a2['suppressedObjectIds']?[..._0x2659a2[_0xaab449(0xbcc)]]:void 0x0,'sourceSuppressions':_0x2659a2!=null&&_0x2659a2[_0xaab449(0x4ce)]?[..._0x2659a2[_0xaab449(0x4ce)]]:void 0x0},'images':[]};try{var _0x52d59c;if(_0x2659a2!=null&&_0x2659a2[_0xaab449(0x8eb)]){let _0x1d282b=new Map(Object[_0xaab449(0xaaf)](_0x12def4[_0xaab449(0x791)])[_0xaab449(0x13c)](_0x41798b=>_0x41798b[_0xaab449(0xa6d)])[_0xaab449(0xbcd)](_0x32bb00=>_0x32bb00[_0xaab449(0x2c1)]===_0x21fa40['PdfDisplayOpType'][_0xaab449(0x93b)])[_0xaab449(0xb06)](_0x38e47a=>[_0x38e47a[_0xaab449(0x9c4)],_0x38e47a]));for(let _0x2c2147 of Object[_0xaab449(0xaaf)](_0x12def4[_0xaab449(0xc33)]['images'])){let _0x5b09d4=_0x1d282b[_0xaab449(0x2ad)](_0x2c2147['id']);if(!_0x5b09d4){_0x228754(_0x33afb9);return;}let _0x1081fa=_0x478845(_0x2659a2[_0xaab449(0x8eb)]({'document':_0x4213eb[_0xaab449(0xb09)],'asset':_0x2c2147,'op':_0x5b09d4,'viewport':_0x27b1d2}));_0x1081fa&&_0x33afb9[_0xaab449(0x707)][_0xaab449(0x381)]({'assetId':_0x2c2147['id'],'bitmap':await _0x5d880d(_0x1081fa)});}}let _0x44b0c3=_0x3e174e(_0x2659a2==null||(_0x52d59c=_0x2659a2[_0xaab449(0xbe0)])==null?void 0x0:_0x52d59c[_0xaab449(0x3f4)](_0x2659a2,{'document':_0x4213eb['document'],'page':_0x25a304,'viewport':_0x27b1d2}));return _0x44b0c3&&(_0x33afb9[_0xaab449(0x3c9)]=await _0x5d880d(_0x44b0c3)),_0x33afb9;}catch{_0x228754(_0x33afb9);return;}}function _0x1fa60b(_0x14415b,_0x12fdd5){const _0x44010b=_0x59d572;var _0x23b683,_0x8acefe,_0x3d1cea,_0x1287bd,_0x785f13;let _0x41e038=(0x0,_0x21fa40[_0x44010b(0x65d)])(_0x14415b),_0x286000=new Set((_0x23b683=_0x41e038[_0x44010b(0x513)][_0x44010b(0x2ad)](_0x12fdd5['id']))==null?[]:_0x23b683),_0x4db4a4=new Set((_0x8acefe=_0x41e038[_0x44010b(0x9ca)][_0x44010b(0x2ad)](_0x12fdd5['id']))==null?[]:_0x8acefe),_0x634a2e=new Set((_0x3d1cea=_0x41e038['assetIdsByPage']['get'](_0x12fdd5['id']))==null?[]:_0x3d1cea),_0x13d826=new Set([...(_0x1287bd=_0x41e038[_0x44010b(0x44e)][_0x44010b(0x2ad)](_0x12fdd5['id']))==null?[]:_0x1287bd,...(_0x785f13=_0x41e038[_0x44010b(0x1f5)]['get'](_0x12fdd5['id']))==null?[]:_0x785f13]);_0x503fbe(_0x14415b,_0x634a2e,_0x13d826);let _0xfac52a=[..._0x13d826];for(let _0x7878d6=0x0;_0x7878d6<_0xfac52a[_0x44010b(0xba6)];_0x7878d6+=0x1){var _0x34d118;let _0xd33f41=_0xfac52a[_0x7878d6];(_0x34d118=_0x41e038['childDisplayListIds'][_0x44010b(0x2ad)](_0xd33f41))==null||_0x34d118[_0x44010b(0xc9d)](_0x483a02=>{const _0x118a1c=_0x44010b;_0x13d826[_0x118a1c(0x66b)](_0x483a02)||(_0x13d826[_0x118a1c(0x30c)](_0x483a02),_0xfac52a[_0x118a1c(0x381)](_0x483a02));});}let _0xb564e1=Object[_0x44010b(0xb1d)](_0x41e038[_0x44010b(0x447)](_0x12fdd5['id'])[_0x44010b(0xb06)](_0xf9578a=>[_0xf9578a['id'],_0xf9578a]));return{'schema':_0x14415b['schema'],'schemaVersion':_0x14415b[_0x44010b(0x783)],'id':_0x14415b['id'],'title':_0x14415b['title'],'coordinate':_0x14415b[_0x44010b(0x72b)],'sources':{},'pages':[_0x12fdd5],'objects':_0x575d5a(_0x14415b['objects'],_0x286000),'displayLists':_0x575d5a(_0x14415b[_0x44010b(0x791)],_0x13d826),'textStories':_0x575d5a(_0x14415b[_0x44010b(0x452)],_0x4db4a4),'edits':{'suppressions':_0xb564e1,'replacements':{},'pageOperations':[]},'assets':{'fonts':_0x575d5a(_0x14415b['assets'][_0x44010b(0x261)],_0x634a2e),'images':_0x575d5a(_0x14415b[_0x44010b(0xc33)]['images'],_0x634a2e),'formXObjects':_0x575d5a(_0x14415b[_0x44010b(0xc33)][_0x44010b(0x201)],_0x634a2e),'colorProfiles':_0x575d5a(_0x14415b[_0x44010b(0xc33)][_0x44010b(0x7ab)],_0x634a2e),'patterns':_0x575d5a(_0x14415b[_0x44010b(0xc33)][_0x44010b(0x43c)],_0x634a2e),'shadings':_0x575d5a(_0x14415b[_0x44010b(0xc33)]['shadings'],_0x634a2e),'attachments':_0x575d5a(_0x14415b[_0x44010b(0xc33)]['attachments'],_0x634a2e),'streams':_0x575d5a(_0x14415b['assets'][_0x44010b(0x53c)],_0x634a2e)},'styles':{'fills':{},'strokes':{},'text':{}},'operations':[]};}function _0x503fbe(_0x1e9040,_0x1d3fef,_0x513e08){const _0x157447=_0x59d572;_0x1d3fef[_0x157447(0xc9d)](_0x24582d=>{const _0x595088=_0x157447;Object[_0x595088(0xaaf)](_0x1e9040[_0x595088(0xc33)])[_0x595088(0xc9d)](_0x31c5bd=>{let _0x478bd5=_0x31c5bd[_0x24582d];_0x478bd5&&_0x41275e(_0x478bd5,_0x513e08);});});}function _0x41275e(_0x417583,_0x15b2ac,_0x48c662=''){const _0x336b9f=_0x59d572;if(typeof _0x417583==_0x336b9f(0x221)){/displayListIds?$/i['test'](_0x48c662)&&_0x15b2ac['add'](_0x417583);return;}if(!(!_0x417583||typeof _0x417583!=_0x336b9f(0x961))){if(Array['isArray'](_0x417583)){_0x417583['forEach'](_0x449c71=>_0x41275e(_0x449c71,_0x15b2ac,_0x48c662));return;}Object[_0x336b9f(0x8a2)](_0x417583)[_0x336b9f(0xc9d)](([_0x576de0,_0x5d62be])=>{_0x41275e(_0x5d62be,_0x15b2ac,_0x576de0);});}}function _0x4358c6(_0x356b81,_0x59f7b4,_0x2690fb){const _0x468d70=_0x59d572;if(!(_0x2690fb!=null&&_0x2690fb[_0x468d70(0x987)])&&!(_0x2690fb!=null&&_0x2690fb['fontOutlineResolver']))return!0x0;let _0x390fbc=_0x4ee4c6(_0x59f7b4);try{for(let _0x557483 of Object[_0x468d70(0xaaf)](_0x59f7b4[_0x468d70(0xc33)][_0x468d70(0x261)])){var _0x4b593b,_0x4886af;let _0x21be3d=_0x390fbc[_0x468d70(0x2ad)](_0x557483['id']);if(!_0x21be3d||(_0x4b593b=_0x2690fb['fontFamilyResolver'])!=null&&_0x4b593b[_0x468d70(0x3f4)](_0x2690fb,{'document':_0x356b81,'font':_0x557483,'run':_0x21be3d})||(_0x4886af=_0x2690fb['fontOutlineResolver'])!=null&&_0x4886af['call'](_0x2690fb,{'document':_0x356b81,'font':_0x557483,'run':_0x21be3d}))return!0x1;}}catch{return!0x1;}return!0x0;}function _0x4ee4c6(_0x5e67a2){const _0x4983b8=_0x59d572;let _0x29c86a=new Map(),_0x31f0d2=_0x41c246=>{const _0x10c5e4=_0x57a5;!_0x41c246||typeof _0x41c246!=_0x10c5e4(0x961)||(_0x10c5e4(0x83d)in _0x41c246&&typeof _0x41c246[_0x10c5e4(0x83d)]==_0x10c5e4(0x221)&&_0x10c5e4(0x975)in _0x41c246&&typeof _0x41c246[_0x10c5e4(0x975)]=='string'&&_0x10c5e4(0x845)in _0x41c246&&typeof _0x41c246[_0x10c5e4(0x845)]==_0x10c5e4(0x97e)&&_0x29c86a[_0x10c5e4(0xad2)](_0x41c246[_0x10c5e4(0x83d)],_0x41c246),Object[_0x10c5e4(0xaaf)](_0x41c246)['forEach'](_0x31f0d2));};return Object[_0x4983b8(0xaaf)](_0x5e67a2['displayLists'])[_0x4983b8(0xc9d)](_0x31f0d2),Object['values'](_0x5e67a2['objects'])[_0x4983b8(0xc9d)](_0x31f0d2),Object[_0x4983b8(0xaaf)](_0x5e67a2[_0x4983b8(0x452)])[_0x4983b8(0xc9d)](_0x31f0d2),_0x29c86a;}function _0x575d5a(_0x16b39b,_0x1ba7f7){const _0x5a05b4=_0x59d572;return Object[_0x5a05b4(0xb1d)]([..._0x1ba7f7][_0x5a05b4(0x13c)](_0x492996=>_0x492996 in _0x16b39b?[[_0x492996,_0x16b39b[_0x492996]]]:[]));}function _0x228754(_0x403f2a){const _0x3c8e55=_0x59d572;var _0x246191;_0x403f2a[_0x3c8e55(0x707)][_0x3c8e55(0xc9d)](_0x1dd4b1=>_0x1dd4b1[_0x3c8e55(0x671)]['close']()),(_0x246191=_0x403f2a[_0x3c8e55(0x3c9)])==null||_0x246191[_0x3c8e55(0x408)]();}function _0xf5310(_0x222916){const _0x5885b5=_0x59d572;return!!_0x222916&&typeof _0x222916==_0x5885b5(0x961)&&_0x5885b5(0x924)in _0x222916&&typeof _0x222916[_0x5885b5(0x924)]==_0x5885b5(0x9df)&&_0x5885b5(0x508)in _0x222916&&typeof _0x222916[_0x5885b5(0x508)]==_0x5885b5(0x9df);}function _0x375566(_0x9ce75b){const _0x431910=_0x59d572;var _0x1b023c;let _0x574c17=Math[_0x431910(0x542)](0x0,Math['floor'](_0x9ce75b[_0x431910(0x394)])),_0x27ff65=Math[_0x431910(0x542)](0x1,_0x9ce75b['rowHeight']),_0xf604d9=_0x574c17*_0x27ff65;if(_0x574c17===0x0)return{'startIndex':0x0,'endIndex':0x0,'offsetTop':0x0,'totalHeight':0x0};let _0x41845d=Math[_0x431910(0x542)](_0x27ff65,_0x9ce75b[_0x431910(0x298)]),_0x578c2c=Math[_0x431910(0x542)](0x0,_0xf604d9-_0x41845d),_0x1423ce=Math[_0x431910(0xb2a)](Number[_0x431910(0x771)](_0x9ce75b[_0x431910(0x158)])?Math['max'](0x0,_0x9ce75b[_0x431910(0x158)]):_0x578c2c,_0x578c2c),_0x2ee784=Math[_0x431910(0x542)](0x0,Math['floor']((_0x1b023c=_0x9ce75b[_0x431910(0xb87)])==null?0x0:_0x1b023c)),_0x5751e5=Math[_0x431910(0x542)](0x0,Math[_0x431910(0x559)](_0x1423ce/_0x27ff65)-_0x2ee784);return{'startIndex':_0x5751e5,'endIndex':Math[_0x431910(0xb2a)](_0x574c17,Math[_0x431910(0x780)]((_0x1423ce+_0x41845d)/_0x27ff65)+_0x2ee784),'offsetTop':_0x5751e5*_0x27ff65,'totalHeight':_0xf604d9};}function _0x114579(_0x1f136c){const _0x368259=_0x59d572;let _0x5857bb=Math[_0x368259(0x542)](0x0,Math[_0x368259(0x559)](_0x1f136c['itemCount'])),_0x401cec=Math[_0x368259(0x542)](0x1,_0x1f136c['rowHeight']),_0x107c86=Math[_0x368259(0x542)](0x0,_0x1f136c['viewportHeight']),_0x243bae=Math['max'](0x0,_0x5857bb*_0x401cec-_0x107c86),_0x3a661a=Math['min'](Math[_0x368259(0x542)](0x0,_0x1f136c[_0x368259(0x158)]),_0x243bae),_0x4427b3=Math[_0x368259(0xb2a)](Math[_0x368259(0x542)](0x0,Math['floor'](_0x1f136c[_0x368259(0xbad)])),Math[_0x368259(0x542)](0x0,_0x5857bb-0x1))*_0x401cec,_0x2049ff=_0x4427b3+_0x401cec;return _0x4427b3<_0x3a661a?_0x4427b3:_0x2049ff>_0x3a661a+_0x107c86?Math[_0x368259(0xb2a)](_0x243bae,_0x2049ff-_0x107c86):_0x3a661a;}function _0x392cac(){const _0x5bb5b0=_0x59d572;var _0x358289,_0x46db5,_0x20ebb7,_0x3b1a4e,_0x46c13a,_0x6d6e37;let _0x19a62c=(0x0,_0x480239[_0x5bb5b0(0xb03)])(_0x2894d3['LocaleService']),_0x49b122=(0x0,_0x480239[_0x5bb5b0(0xb03)])(_0x2894d3[_0x5bb5b0(0x5fa)]),_0x4e54c1=(0x0,_0x480239[_0x5bb5b0(0xb03)])(_0x289aee),_0x131144=(0x0,_0x480239['useDependency'])(_0xf3040b),_0x55f424=(0x0,_0x480239['useDependency'])(_0x480239[_0x5bb5b0(0x38e)]),_0x23cbd6=(0x0,_0x480239[_0x5bb5b0(0xb03)])(_0x1dcaf0),_0x4000e7=(0x0,_0x480239[_0x5bb5b0(0xb03)])(_0x20e35e),_0x5c2a73=(_0x358289=(0x0,_0x480239[_0x5bb5b0(0x472)])(_0x23cbd6[_0x5bb5b0(0xc20)],_0x23cbd6[_0x5bb5b0(0xc0f)]()))==null?0x0:_0x358289,{document:_0x22e8a4,model:_0x43ed15,viewport:_0xad2aae}=_0x3d7ae3(),_0x327a7c=_0x43ed15?_0x4e54c1[_0x5bb5b0(0x178)](_0x43ed15[_0x5bb5b0(0x49e)]()):void 0x0,_0xc7ad29=_0x327a7c==null?void 0x0:_0x327a7c['durable'],_0x4af3a5=_0x327a7c==null?void 0x0:_0x327a7c['ephemeral'],_0x2a9ecc=_0x327a7c==null?void 0x0:_0x327a7c['local'],_0x4dbbb0=(0x0,_0x558781[_0x5bb5b0(0x6fd)])(()=>_0xc7ad29&&_0x4af3a5&&_0x2a9ecc?(0x0,_0x21fa40[_0x5bb5b0(0x9e6)])({'durable':_0xc7ad29,'ephemeral':_0x4af3a5,'local':_0x2a9ecc}):void 0x0,[_0xc7ad29,_0x4af3a5,_0x2a9ecc]),_0x3900bc=(0x0,_0x558781['useMemo'])(()=>_0x43ed15?_0xfb288b(_0x43ed15,_0x23cbd6,_0x5c2a73):void 0x0,[_0x23cbd6,_0x43ed15,_0x5c2a73]),_0x387c68=(_0x46db5=_0x49b122[_0x5bb5b0(0xa82)]('pdfs-ui.config'))==null?void 0x0:_0x46db5[_0x5bb5b0(0x84a)],_0x395f3b=(0x0,_0x558781[_0x5bb5b0(0x6fd)])(()=>_0x2e3981({'workerRenderer':_0x387c68?_0x3012d9({'workerURL':_0x387c68}):null}),[_0x387c68]),_0x74a892=(0x0,_0x558781['useRef'])(null),[_0x595063,_0x39ac3d]=(0x0,_0x558781[_0x5bb5b0(0x674)])({'scrollTop':0x0,'viewportHeight':0x0});(0x0,_0x558781[_0x5bb5b0(0xb8b)])(()=>()=>_0x395f3b[_0x5bb5b0(0x3bd)](),[_0x395f3b]);let _0x47e807=(_0x20ebb7=(_0x3b1a4e=_0xad2aae==null?void 0x0:_0xad2aae['activePageId'])==null?_0x22e8a4==null||(_0x46c13a=_0x22e8a4['pages'][0x0])==null?void 0x0:_0x46c13a['id']:_0x3b1a4e)==null?'':_0x20ebb7,_0x2d6eb3=_0x22e8a4?(0x0,_0x21fa40[_0x5bb5b0(0x65d)])(_0x22e8a4)[_0x5bb5b0(0x6a6)][_0x5bb5b0(0x2ad)](_0x47e807):void 0x0,_0x16da6a=(_0x6d6e37=_0x22e8a4==null?void 0x0:_0x22e8a4[_0x5bb5b0(0x664)][_0x5bb5b0(0xba6)])==null?0x0:_0x6d6e37,_0x317cbd=_0x375566({'itemCount':_0x16da6a,'scrollTop':_0x595063['scrollTop'],'viewportHeight':_0x595063['viewportHeight'],'rowHeight':0x11a,'overscan':0x2});if((0x0,_0x558781['useEffect'])(()=>{const _0x2fe6db=_0x5bb5b0;let _0x18994a=_0x74a892[_0x2fe6db(0x2c3)];if(!_0x18994a)return;let _0x1f3ec6=()=>{const _0x55a18a=_0x2fe6db;let _0x56e483=_0x18994a[_0x55a18a(0x545)];_0x39ac3d(_0x537529=>_0x537529['viewportHeight']===_0x56e483?_0x537529:{..._0x537529,'viewportHeight':_0x56e483});};if(_0x1f3ec6(),typeof globalThis['ResizeObserver']!=_0x2fe6db(0x9df))return;let _0x2fe781=new globalThis[(_0x2fe6db(0x26a))](_0x1f3ec6);return _0x2fe781[_0x2fe6db(0x495)](_0x18994a),()=>_0x2fe781[_0x2fe6db(0x8de)]();},[_0x22e8a4==null?void 0x0:_0x22e8a4['id']]),(0x0,_0x558781[_0x5bb5b0(0xb8b)])(()=>{const _0x24175e=_0x5bb5b0;let _0x7ef445=_0x74a892['current'];if(!_0x7ef445||_0x2d6eb3===void 0x0)return;let _0x3a5bc7=_0x114579({'itemCount':_0x16da6a,'itemIndex':_0x2d6eb3,'scrollTop':_0x7ef445[_0x24175e(0x158)],'viewportHeight':_0x7ef445[_0x24175e(0x545)],'rowHeight':0x11a});_0x3a5bc7!==_0x7ef445[_0x24175e(0x158)]&&(_0x7ef445[_0x24175e(0x158)]=_0x3a5bc7,_0x39ac3d(_0x4f45c6=>({..._0x4f45c6,'scrollTop':_0x3a5bc7})));},[_0x47e807,_0x2d6eb3,_0x16da6a,_0x595063[_0x5bb5b0(0x298)]]),!_0x43ed15||!_0x22e8a4)return null;let _0x50b2dd=_0x22e8a4['pages']['slice'](_0x317cbd['startIndex'],_0x317cbd[_0x5bb5b0(0x94b)]);return(0x0,_0x2cdc8e[_0x5bb5b0(0x139)])('aside',{'className':_0x5bb5b0(0x63f),'aria-label':_0x19a62c['t']('pdfs-ui.workbench.aria.pages'),'data-pdf-page-thumbnail-bar':_0x5bb5b0(0x2fd),'children':[(0x0,_0x2cdc8e[_0x5bb5b0(0x139)])(_0x4c8ef3[_0x5bb5b0(0x12e)],{'className':_0x5bb5b0(0x74f),'variant':'primary','onClick':()=>void _0x23cbd6['insertPage'](),'children':[(0x0,_0x2cdc8e[_0x5bb5b0(0x965)])(_0x3a385c,{}),_0x19a62c['t']('pdfs-ui.workbench.pageRail.newPage')]}),(0x0,_0x2cdc8e['jsx'])(_0x5bb5b0(0x624),{'ref':_0x74a892,'className':_0x5bb5b0(0xa51),'onScroll':_0x5dc198=>{const _0x165c54=_0x5bb5b0;let _0x4b8610=_0x5dc198[_0x165c54(0x4d3)][_0x165c54(0x158)];_0x39ac3d(_0x50bee6=>_0x50bee6[_0x165c54(0x158)]===_0x4b8610?_0x50bee6:{..._0x50bee6,'scrollTop':_0x4b8610});},'children':(0x0,_0x2cdc8e[_0x5bb5b0(0x965)])(_0x5bb5b0(0x624),{'className':_0x5bb5b0(0x188),'style':{'height':_0x317cbd['totalHeight']},'data-pdf-thumbnail-virtual-start':_0x317cbd[_0x5bb5b0(0x87e)],'data-pdf-thumbnail-virtual-end':_0x317cbd[_0x5bb5b0(0x94b)],'children':(0x0,_0x2cdc8e[_0x5bb5b0(0x965)])(_0x5bb5b0(0x624),{'className':_0x5bb5b0(0x773),'style':{'transform':_0x5bb5b0(0x2f8)+_0x317cbd[_0x5bb5b0(0x97f)]+_0x5bb5b0(0xc8b)},'children':_0x50b2dd[_0x5bb5b0(0xb06)]((_0x28fcd0,_0x2ba9d7)=>{const _0x30d78e=_0x5bb5b0;let _0x5b73a2=_0x317cbd[_0x30d78e(0x87e)]+_0x2ba9d7;return(0x0,_0x2cdc8e[_0x30d78e(0x965)])('div',{'style':{'height':0x11a},'children':(0x0,_0x2cdc8e[_0x30d78e(0x139)])(_0x4c8ef3[_0x30d78e(0x12e)],{'type':_0x30d78e(0x20a),'variant':_0x30d78e(0x975),'className':(0x0,_0x4c8ef3[_0x30d78e(0x715)])(_0x30d78e(0x862),{'univer-border-primary-600\x20dark:!univer-border-primary-500':_0x28fcd0['id']===_0x47e807}),'style':{'height':0x110},'data-pdf-page-thumbnail-active':_0x28fcd0['id']===_0x47e807,'onClick':()=>_0xfb341c(_0x4e54c1,_0x43ed15[_0x30d78e(0x49e)](),{'activePageId':_0x28fcd0['id']}),'onContextMenu':_0x691dc4=>{const _0x3a14eb=_0x30d78e;_0x691dc4['preventDefault'](),_0xfb341c(_0x4e54c1,_0x43ed15['getUnitId'](),{'activePageId':_0x28fcd0['id']}),_0x131144['setContext']({'unitId':_0x43ed15[_0x3a14eb(0x49e)](),'pageId':_0x28fcd0['id'],'pageIndex':_0x5b73a2,'pageCount':_0x22e8a4[_0x3a14eb(0x664)]['length']}),_0x55f424[_0x3a14eb(0x304)](_0x691dc4[_0x3a14eb(0xc8c)],_0x3a14eb(0x82f),{'unitId':_0x43ed15[_0x3a14eb(0x49e)]()});},'children':[_0x4dbbb0&&_0x3900bc?(0x0,_0x2cdc8e[_0x30d78e(0x965)])(_0x3bf0ca,{'model':_0x43ed15,'page':_0x28fcd0,'pageRegionService':_0x4000e7,'renderer':_0x395f3b,'resourceResolvers':_0x3900bc,'epoch':_0x4e54c1[_0x30d78e(0x1b9)](_0x43ed15['getUnitId'](),_0x28fcd0['id'],_0x5c2a73),'session':_0x4dbbb0}):null,(0x0,_0x2cdc8e[_0x30d78e(0x965)])('span',{'className':_0x30d78e(0x9f7),'children':_0x5b73a2+0x1})]})},_0x28fcd0['id']);})})})})]});}function _0x3bf0ca(_0x4b232b){const _0x49ac6b=_0x59d572;let {epoch:_0x14ae3f,model:_0x3c1f0a,page:_0x13e6a3,pageRegionService:_0x54d828,renderer:_0x2cf91e,resourceResolvers:_0x41a957,session:_0x2c567c}=_0x4b232b,_0x972277=(0x0,_0x558781['useRef'])(null),_0x1c94f4=(0x0,_0x558781[_0x49ac6b(0x945)])(_0x2c567c),_0x5ac523=_0x14ae3f?(0x0,_0x21fa40[_0x49ac6b(0xa7c)])(_0x14ae3f):'';return _0x1c94f4[_0x49ac6b(0x2c3)]=_0x2c567c,(0x0,_0x558781[_0x49ac6b(0xb8b)])(()=>{const _0x17a1f6=_0x49ac6b;var _0x4a14db,_0x3f0af0,_0x389075;if(!_0x972277[_0x17a1f6(0x2c3)]||!_0x14ae3f)return;_0x54d828['preparePage'](_0x3c1f0a,_0x13e6a3['id'],_0x13e6a3);let _0x1dd672=(_0x4a14db=_0x54d828[_0x17a1f6(0x544)](_0x3c1f0a,_0x13e6a3['id'],_0x1c94f4['current'],_0x17a1f6(0x254),_0x14ae3f))==null?(_0x3f0af0=_0x54d828[_0x17a1f6(0xb13)](_0x3c1f0a[_0x17a1f6(0x49e)](),_0x13e6a3['id']))==null?void 0x0:_0x3f0af0['document']:_0x4a14db;if(_0x1dd672)return _0x2cf91e[_0x17a1f6(0x522)]({'document':_0x1dd672,'pageId':_0x13e6a3['id'],'canvas':_0x972277[_0x17a1f6(0x2c3)],'epoch':_0x14ae3f,'renderOptions':{..._0x41a957,'imageResolver':_0x41a957[_0x17a1f6(0x8eb)]},'maxWidthCssPx':0xbc,'maxHeightCssPx':0xf4,'devicePixelRatio':(_0x389075=globalThis[_0x17a1f6(0x33f)])==null?0x1:_0x389075});},[_0x3c1f0a,_0x13e6a3['id'],_0x54d828,_0x2cf91e,_0x5ac523,_0x41a957]),(0x0,_0x2cdc8e[_0x49ac6b(0x965)])(_0x49ac6b(0x21d),{'ref':_0x972277,'className':_0x49ac6b(0xc28)});}let _0x40cbe9=class extends _0x2894d3[_0x59d572(0x43d)]{constructor(_0x3ea006,_0x4d53a5){const _0x3b97a4=_0x59d572;super(),this[_0x3b97a4(0x4ca)]=_0x3ea006,this['_uiPartsService']=_0x4d53a5,this[_0x3b97a4(0x6d6)]();}[_0x59d572(0x6d6)](){const _0x5b88c9=_0x59d572;[[_0x480239['BuiltInUIPart'][_0x5b88c9(0xbf9)],_0x392cac],[_0x480239[_0x5b88c9(0xa47)][_0x5b88c9(0x5e4)],_0x4fd630],[_0x480239[_0x5b88c9(0xa47)][_0x5b88c9(0xba2)],_0x2c12c8]][_0x5b88c9(0xc9d)](([_0x51b55c,_0x514272])=>{const _0x515d95=_0x5b88c9;this[_0x515d95(0x17b)](this['_uiPartsService']['registerComponent'](_0x51b55c,()=>(0x0,_0x480239[_0x515d95(0x444)])(_0x514272,this['_injector'])));});}};_0x40cbe9=_0x3ef5be([_0x4a4ad7(0x0,(0x0,_0x2894d3[_0x59d572(0xbd8)])(_0x2894d3[_0x59d572(0x4b9)])),_0x4a4ad7(0x1,_0x480239['IUIPartsService'])],_0x40cbe9);let _0x402f69=class{constructor(_0x45f416,_0x3eb309,_0x3591ed){const _0x13a351=_0x59d572;this[_0x13a351(0x67d)]=_0x45f416,this[_0x13a351(0xa02)]=_0x3eb309,this['_runtimeService']=_0x3591ed,_0x22e50d(this,_0x13a351(0xaad),0x0);}['getState'](_0x39c5dc){const _0x39c82d=_0x59d572;let _0x3e54c8=this[_0x39c82d(0x3b2)](_0x39c5dc[_0x39c82d(0x400)],_0x39c5dc[_0x39c82d(0x8ee)]);return _0x3e54c8?_0x32c586({..._0x39c5dc,'pageIndex':_0x3e54c8[_0x39c82d(0x6c2)],'pageCount':_0x3e54c8[_0x39c82d(0xb09)][_0x39c82d(0x664)][_0x39c82d(0xba6)]}):_0x259722();}async['execute'](_0x429ea5,_0x111cc8){const _0x5d97b9=_0x59d572;let _0x2de618=this[_0x5d97b9(0x3b2)](_0x111cc8[_0x5d97b9(0x400)],_0x111cc8[_0x5d97b9(0x8ee)]);if(!_0x2de618)return!0x1;let {document:_0x2d69a9,page:_0x5fe9fe,pageIndex:_0x20e6ec}=_0x2de618,_0x4cb4c5=_0x32c586({..._0x111cc8,'pageIndex':_0x20e6ec,'pageCount':_0x2d69a9[_0x5d97b9(0x664)][_0x5d97b9(0xba6)]}),_0x514c61={'actorId':'pdf-page-thumbnail'};switch(_0x429ea5){case _0x5d97b9(0x918):return _0x4cb4c5[_0x5d97b9(0x2a6)]?(await this[_0x5d97b9(0xa02)][_0x5d97b9(0x1ad)](_0x111cc8['unitId'],_0x21fa40['pdfReorderPageCommand'],{'pageId':_0x5fe9fe['id'],'fromIndex':_0x20e6ec,'toIndex':_0x20e6ec-0x1},_0x514c61))[_0x5d97b9(0x309)]:!0x1;case _0x5d97b9(0x50b):return _0x4cb4c5['canMoveDown']?(await this['_commandService']['execute'](_0x111cc8['unitId'],_0x21fa40[_0x5d97b9(0x902)],{'pageId':_0x5fe9fe['id'],'fromIndex':_0x20e6ec,'toIndex':_0x20e6ec+0x1},_0x514c61))[_0x5d97b9(0x309)]:!0x1;case _0x5d97b9(0x6bd):{if(!_0x4cb4c5[_0x5d97b9(0x68a)])return!0x1;let _0x187055=_0x2d7445(_0x5fe9fe,this[_0x5d97b9(0x347)](_0x2d69a9,_0x5fe9fe['id']),_0x20e6ec+0x1);return(await this[_0x5d97b9(0xa02)][_0x5d97b9(0x1ad)](_0x111cc8[_0x5d97b9(0x400)],_0x21fa40['pdfCopyPageCommand'],{'sourcePageId':_0x5fe9fe['id'],'page':_0x187055,'atIndex':_0x20e6ec+0x1},_0x514c61))[_0x5d97b9(0x309)];}case _0x5d97b9(0x551):{var _0x584234;if(!_0x4cb4c5[_0x5d97b9(0x43f)])return!0x1;let _0x2d45cf=(_0x584234=_0x5fe9fe[_0x5d97b9(0x814)])==null?0x0:_0x584234,_0x51030f=(_0x2d45cf+0x5a)%0x168;return(await this[_0x5d97b9(0xa02)][_0x5d97b9(0x1ad)](_0x111cc8[_0x5d97b9(0x400)],_0x21fa40[_0x5d97b9(0xab7)],{'pageId':_0x5fe9fe['id'],'rotation':_0x51030f,'previousRotation':_0x2d45cf},_0x514c61))['accepted'];}case _0x5d97b9(0x297):return _0x4cb4c5[_0x5d97b9(0x93c)]?(await this['_commandService'][_0x5d97b9(0x1ad)](_0x111cc8[_0x5d97b9(0x400)],_0x21fa40[_0x5d97b9(0x9ea)],{'pageId':_0x5fe9fe['id'],'atIndex':_0x20e6ec,'tombstone':_0x5fe9fe},_0x514c61))[_0x5d97b9(0x309)]:!0x1;default:return!0x1;}}[_0x59d572(0x3b2)](_0x2c95de,_0x2f3444){const _0x3f5f90=_0x59d572;let _0x5a5d80=this[_0x3f5f90(0x67d)][_0x3f5f90(0x9ad)](_0x2c95de,_0x2894d3[_0x3f5f90(0x79c)]['UNIVER_PDF']),_0x3dd3ef=this[_0x3f5f90(0x44d)]['getStateParts'](_0x2c95de);if(!_0x5a5d80||!_0x3dd3ef)return null;let _0x4320b3=(0x0,_0x21fa40[_0x3f5f90(0x2f4)])({'document':_0x5a5d80[_0x3f5f90(0x15a)](),'session':(0x0,_0x21fa40[_0x3f5f90(0x9e6)])(_0x3dd3ef),'id':_0x5a5d80[_0x3f5f90(0x15a)]()['id']}),_0x45517a=_0x4320b3[_0x3f5f90(0x664)][_0x3f5f90(0x78b)](_0x2b85ef=>_0x2b85ef['id']===_0x2f3444),_0x108767=_0x4320b3[_0x3f5f90(0x664)][_0x45517a];return _0x108767?{'document':_0x4320b3,'page':_0x108767,'pageIndex':_0x45517a}:null;}['_createCopyPageId'](_0x1a6769,_0x1019d5){const _0x7033d1=_0x59d572;let _0x273b1e='';do this[_0x7033d1(0xaad)]+=0x1,_0x273b1e=_0x1019d5+_0x7033d1(0x437)+this[_0x7033d1(0xaad)];while(_0x1a6769[_0x7033d1(0x664)][_0x7033d1(0x790)](_0x416343=>_0x416343['id']===_0x273b1e));return _0x273b1e;}};_0x402f69=_0x3ef5be([_0x4a4ad7(0x0,_0x2894d3[_0x59d572(0x50a)]),_0x4a4ad7(0x1,_0x4e4eea),_0x4a4ad7(0x2,_0x289aee)],_0x402f69);function _0x2d7445(_0x1c9cfc,_0x275f96,_0x3470ee){const _0x158aee=_0x59d572;return{...structuredClone(_0x1c9cfc),'id':_0x275f96,'index':_0x3470ee,'label':void 0x0,'layers':_0x1c9cfc['layers'][_0x158aee(0xb06)]((_0x360ac4,_0x3cd574)=>({...structuredClone(_0x360ac4),'id':_0x275f96+_0x158aee(0x478)+(_0x3cd574+0x1)})),'metadata':{..._0x1c9cfc['metadata'],'copiedFromPageId':_0x1c9cfc['id']}};}function _0x259722(){return{'canMoveUp':!0x1,'canMoveDown':!0x1,'canCopy':!0x1,'canRotateClockwise':!0x1,'canDelete':!0x1};}let _0x3f6edb=class extends _0x2894d3[_0x59d572(0x253)]{constructor(_0x582ddf=_0x2a5452,_0x368f00,_0x4a5ff3,_0x5ac933){const _0x2a3b98=_0x59d572;super(),this[_0x2a3b98(0x99a)]=_0x582ddf,this[_0x2a3b98(0x4ca)]=_0x368f00,this[_0x2a3b98(0xa02)]=_0x4a5ff3,this[_0x2a3b98(0x71e)]=_0x5ac933;let {..._0x5b6f86}=(0x0,_0x2894d3[_0x2a3b98(0x5fc)])({},_0x2a5452,this[_0x2a3b98(0x99a)]);this[_0x2a3b98(0x71e)][_0x2a3b98(0xc1d)]('pdfs-ui.config',_0x5b6f86),this[_0x2a3b98(0x757)]();}[_0x59d572(0x5a3)](){const _0x39f608=_0x59d572;let _0x2f95fe=this[_0x39f608(0x633)](),_0x168334=[[_0x289aee,{'useClass':_0xb00623}],[_0x20e35e,{'useClass':_0x3f19b0}],[_0xf3040b,{'useClass':_0x498683}]];_0x2f95fe&&_0x168334[_0x39f608(0x381)]([_0x4e4eea,{'useClass':_0x2803b6}],[_0x1dcaf0],[_0x3c0cd7,{'useClass':_0x402f69}],[_0x270cb9],[_0x38af88],[_0x383125],[_0x1577d3]),(0x0,_0x2894d3[_0x39f608(0x7fa)])(this['_injector'],_0x168334),_0x2f95fe&&(0x0,_0x2894d3[_0x39f608(0x568)])(this['_injector'],[[_0x270cb9],[_0x38af88]]);}['onReady'](){const _0x1c2a40=_0x59d572;this[_0x1c2a40(0x4ca)]['has'](_0x40cbe9)||this[_0x1c2a40(0x4ca)][_0x1c2a40(0x30c)]([_0x40cbe9]),this[_0x1c2a40(0x4ca)][_0x1c2a40(0x2ad)](_0x40cbe9),this[_0x1c2a40(0x633)]()&&this[_0x1c2a40(0x4ca)][_0x1c2a40(0x2ad)](_0x383125),this[_0x1c2a40(0x633)]()&&!this[_0x1c2a40(0x4ca)][_0x1c2a40(0x66b)](_0x5aa2a6)&&(this[_0x1c2a40(0x4ca)][_0x1c2a40(0x30c)]([_0x5aa2a6]),this['_injector'][_0x1c2a40(0x2ad)](_0x5aa2a6));}[_0x59d572(0xc4b)](){const _0x14d86b=_0x59d572;this['_isEditorEnabled']()&&this[_0x14d86b(0x4ca)][_0x14d86b(0x2ad)](_0x1577d3);}[_0x59d572(0x633)](){const _0x3f5786=_0x59d572;var _0x171ca6;return((_0x171ca6=this['_configService']['getConfig'](_0x3f5786(0xb50)))==null?void 0x0:_0x171ca6[_0x3f5786(0x468)]['enabled'])!==!0x1;}[_0x59d572(0x757)](){const _0x1a6c91=_0x59d572;this[_0x1a6c91(0x633)]()&&[..._0x5cbdf3,..._0x1d77d4,..._0x50bc17]['forEach'](_0x381d9c=>{const _0x4bf020=_0x1a6c91;this[_0x4bf020(0x17b)](this[_0x4bf020(0xa02)][_0x4bf020(0x448)](_0x381d9c));});}};_0x22e50d(_0x3f6edb,_0x59d572(0x9c6),'UNIVER_PDFS_UI_PLUGIN'),_0x22e50d(_0x3f6edb,_0x59d572(0x768),_0x5108fa),_0x22e50d(_0x3f6edb,_0x59d572(0x250),_0x784caa),_0x22e50d(_0x3f6edb,_0x59d572(0x2c1),_0x2894d3[_0x59d572(0x79c)][_0x59d572(0x25e)]),_0x3f6edb=_0x3ef5be([(0x0,_0x2894d3[_0x59d572(0x1d4)])(_0x126463[_0x59d572(0xc5b)],_0x21fa40[_0x59d572(0x13a)],_0x480239['UniverUIPlugin']),_0x4a4ad7(0x1,(0x0,_0x2894d3['Inject'])(_0x2894d3[_0x59d572(0x4b9)])),_0x4a4ad7(0x2,_0x2894d3['ICommandService']),_0x4a4ad7(0x3,_0x2894d3[_0x59d572(0x5fa)])],_0x3f6edb);let _0x56fed2=globalThis;function _0x83e8bc(_0x281bc0=_0x56fed2){const _0xabf25f=_0x59d572;if(_0x281bc0[_0xabf25f(0xb09)]!==void 0x0||typeof _0x281bc0['postMessage']!='function')throw TypeError(_0xabf25f(0x244));_0x281bc0[_0xabf25f(0x83b)]=_0x80401b=>_0x55865c(_0x281bc0,_0x80401b);}function _0x55865c(_0x124dcd,_0x376195){const _0x48ae8a=_0x59d572;let _0x16e3c2=_0x376195['data'];if(_0x16e3c2['type']!==_0x48ae8a(0x3cf))return;let _0x1d558b=new Map(_0x16e3c2[_0x48ae8a(0x707)]['map'](_0x55a311=>[_0x55a311[_0x48ae8a(0x9c4)],_0x55a311['bitmap']])),_0xdfea59=new OffscreenCanvas(_0x16e3c2[_0x48ae8a(0x809)][_0x48ae8a(0x2a1)],_0x16e3c2[_0x48ae8a(0x809)][_0x48ae8a(0x4cd)]);try{_0x4b3226(_0x16e3c2[_0x48ae8a(0xb09)],_0x16e3c2['pageId'],_0xdfea59,{..._0x16e3c2['options'],'suppressedDisplayOperationIds':_0x16e3c2['options']['suppressedDisplayOperationIds'],'suppressedObjectIds':_0x16e3c2['options'][_0x48ae8a(0xbcc)]?new Set(_0x16e3c2['options']['suppressedObjectIds']):void 0x0,'sourceSuppressions':_0x16e3c2[_0x48ae8a(0x62c)][_0x48ae8a(0x4ce)],'imageResolver':({asset:_0x347b6e})=>_0x1d558b[_0x48ae8a(0x2ad)](_0x347b6e['id']),'pageRasterResolver':()=>_0x16e3c2[_0x48ae8a(0x3c9)],'canvasFactory':{'createCanvas':(_0x40d880,_0x105703)=>new OffscreenCanvas(_0x40d880,_0x105703)},'groupCompositor':_0x16e3c2['options'][_0x48ae8a(0xc21)]?null:void 0x0,'zoom':_0x16e3c2[_0x48ae8a(0x809)][_0x48ae8a(0x68e)],'devicePixelRatio':_0x16e3c2['viewport'][_0x48ae8a(0x33f)]}),_0x3ac9dc(_0x16e3c2);let _0x58fca4=_0xdfea59[_0x48ae8a(0x6cb)]();_0x124dcd[_0x48ae8a(0x924)]({'type':'rendered','id':_0x16e3c2['id'],'bitmap':_0x58fca4},[_0x58fca4]);}catch(_0x5918bd){_0x3ac9dc(_0x16e3c2),_0x124dcd['postMessage']({'type':_0x48ae8a(0x8e4),'id':_0x16e3c2['id'],'error':_0x5918bd instanceof Error?_0x5918bd[_0x48ae8a(0x497)]:String(_0x5918bd)});}}function _0x3ac9dc(_0x3b1c48){const _0x5b09b2=_0x59d572;var _0x10373f;_0x3b1c48[_0x5b09b2(0x707)][_0x5b09b2(0xc9d)](_0x605780=>_0x605780[_0x5b09b2(0x671)][_0x5b09b2(0x408)]()),(_0x10373f=_0x3b1c48[_0x5b09b2(0x3c9)])==null||_0x10373f[_0x5b09b2(0x408)]();}_0x14d807[_0x59d572(0xab3)]=_0x289aee,_0x14d807['IPdfPageThumbnailActionService']=_0x3c0cd7,_0x14d807[_0x59d572(0x761)]=_0xde34c4,_0x14d807['PdfEditorRuntimeService']=_0xb00623,Object[_0x59d572(0x18b)](_0x14d807,_0x59d572(0xa4e),{'enumerable':!0x0,'get':function(){return _0x38af88;}}),_0x14d807[_0x59d572(0x77e)]=_0x4e5f47,_0x14d807[_0x59d572(0x16b)]=_0x44c0ee,_0x14d807[_0x59d572(0x74e)]=_0xf9f9bc,_0x14d807[_0x59d572(0xb3e)]=_0x4a4ac1,Object[_0x59d572(0x18b)](_0x14d807,'PdfInsertService',{'enumerable':!0x0,'get':function(){return _0x1dcaf0;}}),_0x14d807[_0x59d572(0xb1b)]=_0x34f394,_0x14d807[_0x59d572(0x7f6)]=_0x21633b,_0x14d807[_0x59d572(0x98f)]=_0x3f19b0,_0x14d807[_0x59d572(0xaec)]=_0x23e62c,Object['defineProperty'](_0x14d807,_0x59d572(0x8a7),{'enumerable':!0x0,'get':function(){return _0x3f6edb;}}),_0x14d807[_0x59d572(0x76d)]=_0x276a2c,_0x14d807[_0x59d572(0x1da)]=_0x5834cf,_0x14d807['fitPdfManagedImageIntoPage']=_0x1669a1,_0x14d807[_0x59d572(0x2fe)]=_0x1e6e5c,_0x14d807[_0x59d572(0xaea)]=_0x942c65,_0x14d807['renderPdfPageToCanvas']=_0x4b3226,_0x14d807[_0x59d572(0x11e)]=_0x4d2d00,_0x14d807['startPdfPageThumbnailWorker']=_0x83e8bc;}));