@byteluck-fe/model-driven-engine 2.6.0-alpha.13 → 2.6.0-alpha.15

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.
@@ -1193,7 +1193,8 @@ var Engine = // 整体渲染引擎 并且 提供发布订阅能力
1193
1193
  // 如果能从flatInstances里边取到,就通过getInstanceInSubtableHeader方法取,取不到则换一种方式
1194
1194
  if (instances.length) {
1195
1195
  var instance = instances[0];
1196
- if (this.inList(instance.id) === true) {
1196
+ // if (this.inList(instance.id) === true) {
1197
+ if (this.inList(instance.id) !== undefined) {
1197
1198
  var headerInstance = this.getInstanceInSubtableHeader(instance);
1198
1199
  if (headerInstance) {
1199
1200
  instances.unshift(headerInstance);
@@ -1336,28 +1337,48 @@ var Engine = // 整体渲染引擎 并且 提供发布订阅能力
1336
1337
  * 如果控件在表头内,则返回-1
1337
1338
  * 如果控件在表内,则返回行下标
1338
1339
  * 如果控件不在明细表内,则返回undefined
1339
- * */ function getInstanceRowIndex(instance) {
1340
- if (!instance.parent) {
1341
- return;
1342
- }
1340
+ * */ // public getInstanceRowIndex(
1341
+ // instance: ControlRuntimeInstance<ControlsKeys> | RuntimeControl
1342
+ // ) {
1343
+ // if (!instance.parent) {
1344
+ // return
1345
+ // }
1346
+ // let rowIndex: number | undefined
1347
+ // // @ts-ignore
1348
+ // if (this.assertInstance(instance.parent, CONTROL_TYPE.SUBTABLE)) {
1349
+ // // 表头内的控件
1350
+ // // @ts-ignore
1351
+ // if (this.assertInstance(instance, CONTROL_TYPE.SUBTABLE_COLUMN)) {
1352
+ // rowIndex = -1
1353
+ // } else {
1354
+ // // @ts-ignore
1355
+ // const index = instance.parent.children.findIndex(
1356
+ // (item: any) => item === instance
1357
+ // )
1358
+ // if (index > -1) {
1359
+ // rowIndex = index
1360
+ // }
1361
+ // }
1362
+ // } else {
1363
+ // rowIndex = this.getInstanceRowIndex(instance.parent)
1364
+ // }
1365
+ // return rowIndex
1366
+ // }
1367
+ function getInstanceRowIndex(instance) {
1343
1368
  var rowIndex;
1344
1369
  // @ts-ignore
1345
- if (this.assertInstance(instance.parent, CONTROL_TYPE.SUBTABLE)) {
1346
- // 表头内的控件
1347
- // @ts-ignore
1348
- if (this.assertInstance(instance, CONTROL_TYPE.SUBTABLE_COLUMN)) {
1349
- rowIndex = -1;
1350
- } else {
1351
- // @ts-ignore
1352
- var index = instance.parent.children.findIndex(function(item) {
1370
+ if (this.assertInstance(instance, CONTROL_TYPE.SUBTABLE_COLUMN)) {
1371
+ rowIndex = -1;
1372
+ } else {
1373
+ var instanceList = this.runtime.instanceMap[instance.id];
1374
+ if (Object.prototype.toString.call(instanceList) === '[object Array]') {
1375
+ var index = instanceList.findIndex(function(item) {
1353
1376
  return item === instance;
1354
1377
  });
1355
1378
  if (index > -1) {
1356
1379
  rowIndex = index;
1357
1380
  }
1358
1381
  }
1359
- } else {
1360
- rowIndex = this.getInstanceRowIndex(instance.parent);
1361
1382
  }
1362
1383
  return rowIndex;
1363
1384
  }
@@ -1426,11 +1447,19 @@ var Engine = // 整体渲染引擎 并且 提供发布订阅能力
1426
1447
  key: "inList",
1427
1448
  value: function inList(controlId) {
1428
1449
  var mapping = this.store.controlIdMapping;
1429
- var result = Object.keys(mapping).some(function(key) {
1450
+ var subtableId = undefined;
1451
+ // const result = Object.keys(mapping).some((key) =>
1452
+ // mapping[key]?.children?.hasOwnProperty(controlId)
1453
+ // )
1454
+ Object.keys(mapping).some(function(key) {
1430
1455
  var ref, ref23;
1431
- return (ref = mapping[key]) === null || ref === void 0 ? void 0 : (ref23 = ref.children) === null || ref23 === void 0 ? void 0 : ref23.hasOwnProperty(controlId);
1456
+ var result = (ref = mapping[key]) === null || ref === void 0 ? void 0 : (ref23 = ref.children) === null || ref23 === void 0 ? void 0 : ref23.hasOwnProperty(controlId);
1457
+ if (result === true) {
1458
+ subtableId = key;
1459
+ }
1460
+ return result;
1432
1461
  });
1433
- return result;
1462
+ return subtableId;
1434
1463
  }
1435
1464
  }
1436
1465
  ], [
@@ -219,8 +219,12 @@ function loop(control, callback) {
219
219
  control.map(function(item) {
220
220
  callback(item);
221
221
  if (hasChildrenControl(item)) {
222
+ var ctl = item;
223
+ if (!ctl.children) {
224
+ ctl.children = [];
225
+ }
222
226
  // @ts-ignore
223
- loop(item.children, callback);
227
+ loop(ctl.children, callback);
224
228
  }
225
229
  });
226
230
  } else {
@@ -8,7 +8,8 @@ export function loopFormControl(control, callback) {
8
8
  //TODO 此处需要再抽象一层 datagrid/datalist
9
9
  if (item.type === CONTROL_TYPE.SUBTABLE) {
10
10
  // @ts-ignore
11
- var children = item.getChildrenFormControl();
11
+ var children = []//item.getChildrenFormControl() as RuntimeFormControl[]
12
+ ;
12
13
  callback(item, children);
13
14
  } else if (hasChildrenControl(item)) {
14
15
  var ref;
package/dist/index.umd.js CHANGED
@@ -1,19 +1,19 @@
1
- var Rh=Object.defineProperty,xh=Object.defineProperties;var $h=Object.getOwnPropertyDescriptors;var ku=Object.getOwnPropertySymbols;var Lh=Object.prototype.hasOwnProperty,Th=Object.prototype.propertyIsEnumerable;var on=Math.pow,ju=(z,Y,ie)=>Y in z?Rh(z,Y,{enumerable:!0,configurable:!0,writable:!0,value:ie}):z[Y]=ie,ne=(z,Y)=>{for(var ie in Y||(Y={}))Lh.call(Y,ie)&&ju(z,ie,Y[ie]);if(ku)for(var ie of ku(Y))Th.call(Y,ie)&&ju(z,ie,Y[ie]);return z},Jn=(z,Y)=>xh(z,$h(Y));var ke=(z,Y,ie)=>new Promise(($t,vt)=>{var an=je=>{try{mt(ie.next(je))}catch(Et){vt(Et)}},sn=je=>{try{mt(ie.throw(je))}catch(Et){vt(Et)}},mt=je=>je.done?$t(je.value):Promise.resolve(je.value).then(an,sn);mt((ie=ie.apply(z,Y)).next())});(function(z,Y){typeof exports=="object"&&typeof module!="undefined"?Y(exports,require("regenerator-runtime"),require("crypto")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime","crypto"],Y):(z=typeof globalThis!="undefined"?globalThis:z||self,Y(z.modelDrivenEngine={},z.regeneratorRuntime,z.require$$0))})(this,function(z,Y,ie){"use strict";function $t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var vt=$t(Y),an=$t(ie),sn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",mt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Et="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Vu="{caption}\u5FC5\u586B",qu="\u8BF7\u8F93\u5165\u6807\u9898",Hu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",zu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Wu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Xu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Ju="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ku="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Gu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Qu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ei="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ti="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ni="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ri="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ui="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ii="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",oi="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",ai="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",si="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ci="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",li="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",fi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",hi="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",di="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",pi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Di="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",gi="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",vi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",mi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ei="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ai="\u8BF7\u9009\u62E9\u7701",Ci="\u8BF7\u9009\u62E9\u5E02",Fi="\u8BF7\u9009\u62E9\u533A",yi="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",wi="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Bi="\u8BF7\u8F93\u5165\u5217\u5BBD",bi="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Si="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Mi="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ni="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ii="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",_i="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ri="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",xi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$i="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Li="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ti="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Oi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Pi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ji="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ui="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",qi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Hi="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",zi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Wi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Xi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ji="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ki="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Gi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Qi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Yi="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",eo="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",to={isNotNumber:sn,isNotString:mt,isNotObject:je,isNotArray:Et,isNotBoolean:Uu,runtimeRequired:Vu,pleaseEnterCaption:qu,pleaseEnterCaptionTip:Hu,pleaseEnterPlaceholder:zu,pleaseEnterFieldCode:Wu,pleaseEnterForm:Zu,pleaseEnterList:Xu,pleaseEnterProcess:Ju,pleaseEnterLabel:Ku,pleaseEnterValue:Gu,bizKeyNotBindFiled:Qu,pleaseSelectOneField:Yu,pleaseEnterNumberRange:ei,pleaseEnterAValueGreaterThanMin:ti,pleaseEnterAValueLessThanMax:ni,numberRangeSetError:ri,stringRangeError:ui,attachmentMaxSize:ii,pleaseEnterTotalScoreSetting:oi,theTotalScoreMustNotBeLessThan1:ai,scoreDefaultValueRange:si,attachmentLimitError:ci,PleaseReselectTheOptionalQuantity:li,TheMaximumLengthIsGreaterThanTheMinimumLength:fi,TheMinimumLengthIsGreaterThanTheMaximumLength:hi,PleaseSelectTheCorrectOptionSettings:di,optionIdIsRepeat:pi,optionIsRequired:Di,pleaseEnterDataCode:gi,pleaseEnterValueFieldCode:vi,pleaseEnterSvcCode:mi,pleaseBindAtLeastOneDisplayValue:Ei,pleaseSelectProvince:Ai,pleaseSelectCity:Ci,pleaseSelectDistrict:Fi,limitRowsCannotBeLessThan0:yi,TheNumberOfRowsCannotBeLessThanMinRows:wi,pleaseEnterColumnWidth:Bi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:bi,pleaseCompleteAllRulesAndConditions:Si,pleaseSelectControl:Mi,pleaseSelectAtLeastOneColumn:Ni,pleaseSelectFillBackMode:Ii,pleaseSelectDashboard:_i,rootNodeIsRequired:Ri,theViewNameCannotBeEmpty:xi,pleaseSelectOcrType:$i,pleaseSelectAtLeastOneFieldToFillIn:Li,pleaseChooseAtLeastOne:Ti,pleaseEnterButtonContent:Oi,pleaseEnterDataCodeInDataSetting:Pi,pleaseEnterValueFieldCodeInDataSetting:ki,pleaseEnterSvcCodeInDataSetting:ji,pleaseBindAtLeastOneDisplayValueInDataSetting:Ui,rootNodeIsRequiredInDataSetting:Vi,pleaseEnterMaxHeight:qi,pleaseEnter:Hi,pleaseEnterWatermark:zi,pleaseEnterFileName:Wi,pleaseUploadAtLeastOnePrintTemplate:Zi,pleaseAssignBusiness:Xi,pleaseAssignExternal:Ji,pleaseEnterAliasCode:Ki,pleaseSelectDataCode:Gi,pleaseSelectSvcCode:Qi,pleaseSelectJoinFieldCode:Yi,pleaseSelectMainFieldCode:eo},no="Please enter a number",ro="Please enter a string",uo="Please enter an object",io="Please enter an array",oo="Please enter a boolean",ao="{caption} Required",so="Please enter the title",co="Please enter the bubble prompt",lo="Please enter the prompt text",fo="Please bind data items",ho="Please bind the form",po="Please bind the list",Do="Please bind the process",go="Please enter the displayed value",vo="Please enter the stored value",mo="The document number is not bound to the data item",Eo="Please select at least one display field",Ao="Please enter a value greater than or equal to {min} and less than or equal to {max}",Co="Please enter a value greater than or equal to {min}",Fo="Please enter a value less than or equal to {max}",yo="The value range is set incorrectly",wo="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Bo="The attachment size must be between 0MB and 1000MB",bo="Please fill in the total score setting",So="The total score cannot be less than 1",Mo="The default value must be between {min} and {max}",No="The number of attachments uploaded must be between {min} and {max}",Io="Please re-select the optional quantity",_o="The maximum length of the control must be greater than the minimum length",Ro="The minimum length of the control must be less than the maximum length",xo="Please select the correct option setting",$o="Option ID cannot be repeated",Lo="Please enter at least one option",To="Please bind the data source",Oo="Please bind the stored value",Po="Please bind the service",ko="At least one display value must be bound",jo="Please select a province",Uo="Please select a city",Vo="Please select a district",qo="The minimum number of lines to fill in cannot be less than 0",Ho="The number of rows cannot be less than {min} rows",zo="Please enter the column width",Wo="Please set the logical relationship of all rule conditions",Zo="Please complete all rules and conditions",Xo="please select control",Jo="Please select the dashboard",Ko="View name cannot be empty",Go="Please select recognition type",Qo="Please select at least one field to fill in",Yo="Please select at least one",ea="Please enter the button title",ta="Please bind the business model in the data settings",na="Please bind storage values in data settings",ra="Please bind the service in the data settings",ua="Please bind at least one display value in the data settings",ia="Please select the root node in the data settings",oa="Please enter the maximum height",aa="The input content cannot be empty",sa="Watermark cannot be empty",ca="File name cannot be empty",la="Please upload at least one printing template!\uFF01",fa="Please select a specific business department",ha="Please select a specified external organization",da="Please enter a sub table alias",pa="Please select the associated table to set the business model",Da="Please select the association table to set the binding service",ga="Select associated sub table fields",va="Please select the associated main table field",ma={isNotNumber:no,isNotString:ro,isNotObject:uo,isNotArray:io,isNotBoolean:oo,runtimeRequired:ao,pleaseEnterCaption:so,pleaseEnterCaptionTip:co,pleaseEnterPlaceholder:lo,pleaseEnterFieldCode:fo,pleaseEnterForm:ho,pleaseEnterList:po,pleaseEnterProcess:Do,pleaseEnterLabel:go,pleaseEnterValue:vo,bizKeyNotBindFiled:mo,pleaseSelectOneField:Eo,pleaseEnterNumberRange:Ao,pleaseEnterAValueGreaterThanMin:Co,pleaseEnterAValueLessThanMax:Fo,numberRangeSetError:yo,stringRangeError:wo,attachmentMaxSize:Bo,pleaseEnterTotalScoreSetting:bo,theTotalScoreMustNotBeLessThan1:So,scoreDefaultValueRange:Mo,attachmentLimitError:No,PleaseReselectTheOptionalQuantity:Io,TheMaximumLengthIsGreaterThanTheMinimumLength:_o,TheMinimumLengthIsGreaterThanTheMaximumLength:Ro,PleaseSelectTheCorrectOptionSettings:xo,optionIdIsRepeat:$o,optionIsRequired:Lo,pleaseEnterDataCode:To,pleaseEnterValueFieldCode:Oo,pleaseEnterSvcCode:Po,pleaseBindAtLeastOneDisplayValue:ko,pleaseSelectProvince:jo,pleaseSelectCity:Uo,pleaseSelectDistrict:Vo,limitRowsCannotBeLessThan0:qo,TheNumberOfRowsCannotBeLessThanMinRows:Ho,pleaseEnterColumnWidth:zo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wo,pleaseCompleteAllRulesAndConditions:Zo,pleaseSelectControl:Xo,pleaseSelectDashboard:Jo,theViewNameCannotBeEmpty:Ko,pleaseSelectOcrType:Go,pleaseSelectAtLeastOneFieldToFillIn:Qo,pleaseChooseAtLeastOne:Yo,pleaseEnterButtonContent:ea,pleaseEnterDataCodeInDataSetting:ta,pleaseEnterValueFieldCodeInDataSetting:na,pleaseEnterSvcCodeInDataSetting:ra,pleaseBindAtLeastOneDisplayValueInDataSetting:ua,rootNodeIsRequiredInDataSetting:ia,pleaseEnterMaxHeight:oa,pleaseEnter:aa,pleaseEnterWatermark:sa,pleaseEnterFileName:ca,pleaseUploadAtLeastOnePrintTemplate:la,pleaseAssignBusiness:fa,pleaseAssignExternal:ha,pleaseEnterAliasCode:da,pleaseSelectDataCode:pa,pleaseSelectSvcCode:Da,pleaseSelectJoinFieldCode:ga,pleaseSelectMainFieldCode:va},Ea="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Aa="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ca="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ya="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="{caption}\u5FC5\u9808",Ba="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ma="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Na="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ia="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_a="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ra="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$a="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",La="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ta="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Oa="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pa="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ka="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",ja="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Va="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qa="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ha="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",za="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Wa="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Za="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xa="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ja="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ka="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ga="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Qa="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ya="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",es="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ts="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ns="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",rs="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",us="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",is="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",os="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",as="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ss="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",cs="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",ls="please select control",fs="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",hs="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ds="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ps="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ds="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gs="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vs="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ms="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Es="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",As="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Cs="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fs="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ys="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ws="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Bs="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",bs="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",Ss="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ms="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ns="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Is="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",_s="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Rs="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",xs="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$s={isNotNumber:Ea,isNotString:Aa,isNotObject:Ca,isNotArray:Fa,isNotBoolean:ya,runtimeRequired:wa,pleaseEnterCaption:Ba,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:Ma,pleaseEnterForm:Na,pleaseEnterList:Ia,pleaseEnterProcess:_a,pleaseEnterLabel:Ra,pleaseEnterValue:xa,bizKeyNotBindFiled:$a,pleaseSelectOneField:La,pleaseEnterNumberRange:Ta,pleaseEnterAValueGreaterThanMin:Oa,pleaseEnterAValueLessThanMax:Pa,numberRangeSetError:ka,stringRangeError:ja,attachmentMaxSize:Ua,pleaseEnterTotalScoreSetting:Va,theTotalScoreMustNotBeLessThan1:qa,scoreDefaultValueRange:Ha,attachmentLimitError:za,PleaseReselectTheOptionalQuantity:Wa,TheMaximumLengthIsGreaterThanTheMinimumLength:Za,TheMinimumLengthIsGreaterThanTheMaximumLength:Xa,PleaseSelectTheCorrectOptionSettings:Ja,optionIdIsRepeat:Ka,optionIsRequired:Ga,pleaseEnterDataCode:Qa,pleaseEnterValueFieldCode:Ya,pleaseEnterSvcCode:es,pleaseBindAtLeastOneDisplayValue:ts,pleaseSelectProvince:ns,pleaseSelectCity:rs,pleaseSelectDistrict:us,limitRowsCannotBeLessThan0:is,TheNumberOfRowsCannotBeLessThanMinRows:os,pleaseEnterColumnWidth:as,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ss,pleaseCompleteAllRulesAndConditions:cs,pleaseSelectControl:ls,pleaseSelectDashboard:fs,theViewNameCannotBeEmpty:hs,pleaseSelectOcrType:ds,pleaseSelectAtLeastOneFieldToFillIn:ps,pleaseChooseAtLeastOne:Ds,pleaseEnterButtonContent:gs,pleaseEnterDataCodeInDataSetting:vs,pleaseEnterValueFieldCodeInDataSetting:ms,pleaseEnterSvcCodeInDataSetting:Es,pleaseBindAtLeastOneDisplayValueInDataSetting:As,rootNodeIsRequiredInDataSetting:Cs,pleaseEnterMaxHeight:Fs,pleaseEnter:ys,pleaseEnterWatermark:ws,pleaseEnterFileName:Bs,pleaseUploadAtLeastOnePrintTemplate:bs,pleaseAssignBusiness:Ss,pleaseAssignExternal:Ms,pleaseEnterAliasCode:Ns,pleaseSelectDataCode:Is,pleaseSelectSvcCode:_s,pleaseSelectJoinFieldCode:Rs,pleaseSelectMainFieldCode:xs},Ls={zhCN:to,enUS:ma,jaJP:$s},Ie;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Ie||(Ie={}));var rt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(rt||(rt={}));var Kn="zh-CN";function Fe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Z;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(Z||(Z={}));var W;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(W||(W={}));var H;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(H||(H={}));var he;he={},Fe(he,H.ARRAY,W.ARRAY_COLUMN),Fe(he,H.AUTO_NUMBER,W.AUTO_NUMBER_COLUMN),Fe(he,H.DECIMAL,W.DECIMAL_COLUMN),Fe(he,H.DEPARTMENTS,W.DEPARTMENT_COLUMN),Fe(he,H.FILE,W.FILE_COLUMN),Fe(he,H.IMAGE,W.IMAGE_COLUMN),Fe(he,H.ADDRESS,W.LOCATION_COLUMN),Fe(he,H.EMPLOYEES,W.EMPLOYEE_COLUMN),Fe(he,H.TEXT,W.TEXT_COLUMN),Fe(he,H.TIMESCOPE,W.TIMESCOPE_COLUMN),Fe(he,H.TIMESTAMP,W.TIMESTAMP_COLUMN),Fe(he,H.VARCHAR,W.VARCHAR_COLUMN),Fe(he,H.RELATION,W.VARCHAR_COLUMN);var Gn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(Gn||(Gn={}));var Qn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Ts=Qn+"0123456789";function Os(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Qn:Ts,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function cn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ps(e){if(Array.isArray(e))return cn(e)}function ks(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function js(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Us(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Lt(e,t,n){return Us()?Lt=Reflect.construct:Lt=function(u,i,s){var f=[null];f.push.apply(f,i);var l=Function.bind.apply(u,f),d=new l;return s&&Ct(d,s.prototype),d},Lt.apply(null,arguments)}function At(e){return At=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},At(e)}function Vs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ct(e,t)}function qs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Hs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function zs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ws(e,t){return t&&(Zs(t)==="object"||typeof t=="function")?t:ks(e)}function Ct(e,t){return Ct=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ct(e,t)}function Yn(e){return Ps(e)||Hs(e)||Xs(e)||zs()}var Zs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Xs(e,t){if(!!e){if(typeof e=="string")return cn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return cn(e,t)}}function ln(e){var t=typeof Map=="function"?new Map:void 0;return ln=function(r){if(r===null||!qs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Lt(r,arguments,At(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ct(u,r)},ln(e)}function Js(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ks(e){var t=Js();return function(){var r=At(e),u;if(t){var i=At(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ws(this,u)}}var fn=console;function He(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=fn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(Yn(u)))}function hn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=fn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(Yn(u)))}function Gs(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var er=function(e){Vs(n,e);var t=Ks(n);function n(r){js(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?Gs(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(ln(Error));function Ue(e){throw new er(e)}function Tt(e){fn.error(new er(e))}function Qe(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":Qe(n==null?void 0:n.children,t);break;case"search":Qe(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Qs=Object.prototype.toString;function tr(e,t){return Qs.call(e)==="[object "+t+"]"}function Ys(e){return tr(e,"String")}function e0(e){return tr(e,"Promise")}var t0=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();e0(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,s,f){if(u!==void 0){var l=u[i];if(!(s===f.length-1&&!Ys(l)))return l}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function n0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function r0(e,t,n){return t&&nr(e.prototype,t),n&&nr(e,n),e}var dn=function(){function e(){n0(this,e)}return r0(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Kn;return new t0({locale:n,messages:Ls})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();dn.$i18n=dn.resetI18n();function rr(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,s){return"."+s}).split("."),u=!1;return r.reduce(function(i,s,f,l){var d=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,s)){He("Can not set ".concat(t,"'s ").concat(s," property in current %o, Because there is no ").concat(s," property on the %o"),i,i);return}return f===l.length-1&&!Object.is(d[s],n)&&(d[s]=n,u=!0),d[s]}},e),u}var ze=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function ur(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var pn={exports:{}};(function(e){(function(t){var n=function(g,C,F){if(!d(C)||o(C)||c(C)||h(C)||l(C))return C;var b,R=0,L=0;if(a(C))for(b=[],L=C.length;R<L;R++)b.push(n(g,C[R],F));else{b={};for(var k in C)Object.prototype.hasOwnProperty.call(C,k)&&(b[g(k,F)]=n(g,C[k],F))}return b},r=function(g,C){C=C||{};var F=C.separator||"_",b=C.split||/(?=[A-Z])/;return g.split(b).join(F)},u=function(g){return p(g)?g:(g=g.replace(/[\-_\s]+(.)?/g,function(C,F){return F?F.toUpperCase():""}),g.substr(0,1).toLowerCase()+g.substr(1))},i=function(g){var C=u(g);return C.substr(0,1).toUpperCase()+C.substr(1)},s=function(g,C){return r(g,C).toLowerCase()},f=Object.prototype.toString,l=function(g){return typeof g=="function"},d=function(g){return g===Object(g)},a=function(g){return f.call(g)=="[object Array]"},o=function(g){return f.call(g)=="[object Date]"},c=function(g){return f.call(g)=="[object RegExp]"},h=function(g){return f.call(g)=="[object Boolean]"},p=function(g){return g=g-0,g===g},D=function(g,C){var F=C&&"process"in C?C.process:C;return typeof F!="function"?g:function(b,R){return F(b,g,R)}},m={camelize:u,decamelize:s,pascalize:i,depascalize:s,camelizeKeys:function(g,C){return n(D(u,C),g)},decamelizeKeys:function(g,C){return n(D(s,C),g,C)},pascalizeKeys:function(g,C){return n(D(i,C),g)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=m:t.humps=m})(ze)})(pn);var ir={};Object.defineProperty(ir,"__esModule",{value:!0});function Dn(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Dn(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:Dn(r)}return t}}var u0=ir.default=Dn;function be(e){if(e!==void 0)return typeof e=="object"?u0(e):e}function Le(e){return Object.prototype.toString.call(e)==="[object Object]"}function i0(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function Ft(e){return Array.isArray(e)}function ye(e){return typeof e=="string"}function Ot(e){return typeof e=="number"}function or(e){return typeof e=="function"}function o0(e){return Ft(e)&&e.every(function(t){return ye(t)})}function a0(e){return Ft(e)&&e.every(function(t){return Ot(t)||t===""})}function ar(e){return/^\[.*?]$/.test(e)}function Pt(e){return/^{.*?}$/.test(e)}function gn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function s0(e){if(Array.isArray(e))return gn(e)}function sr(e,t,n,r,u,i,s){try{var f=e[i](s),l=f.value}catch(d){n(d);return}f.done?t(l):Promise.resolve(l).then(r,u)}function c0(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function s(l){sr(i,r,u,s,f,"next",l)}function f(l){sr(i,r,u,s,f,"throw",l)}s(void 0)})}}function l0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function f0(e,t,n){return t&&cr(e.prototype,t),n&&cr(e,n),e}function h0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function d0(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function vn(e){return s0(e)||h0(e)||p0(e)||d0()}function p0(e,t){if(!!e){if(typeof e=="string")return gn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return gn(e,t)}}var lr=function(){function e(){l0(this,e),this._events=new Map,this.debug=!1}return f0(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var s=this;return c0(vt.default.mark(function f(){var l,d,a,o,c,h,p,D,m,g;return vt.default.wrap(function(F){for(;;)switch(F.prev=F.next){case 0:if(l=s._events.get(n),d=[],!l){F.next=42;break}a=l.slice(),o=!0,c=!1,h=void 0,F.prev=5,p=a[Symbol.iterator]();case 7:if(o=(D=p.next()).done){F.next=28;break}if(m=D.value,l.includes(m)){F.next=11;break}return F.abrupt("continue",25);case 11:return F.prev=11,s.debug&&hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(m.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+m.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(vn(u))),F.next=15,m.apply(null,vn(u));case 15:if(g=F.sent,s.debug&&hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(m.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+m.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(vn(u),[g])),d.push(g),g!==!1){F.next=20;break}return F.abrupt("break",28);case 20:F.next=25;break;case 22:F.prev=22,F.t0=F.catch(11),Tt(String(F.t0)+":"+String(F.t0.stack));case 25:o=!0,F.next=7;break;case 28:F.next=34;break;case 30:F.prev=30,F.t1=F.catch(5),c=!0,h=F.t1;case 34:F.prev=34,F.prev=35,!o&&p.return!=null&&p.return();case 37:if(F.prev=37,!c){F.next=40;break}throw h;case 40:return F.finish(37);case 41:return F.finish(34);case 42:return F.abrupt("return",d);case 43:case"end":return F.stop()}},f,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function D0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function g0(e,t,n){return t&&fr(e.prototype,t),n&&fr(e,n),e}var v0=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],hr=function(){function e(){D0(this,e)}return g0(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}}]),e}();hr.events=v0;function m0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function E0(e,t,n){return t&&dr(e.prototype,t),n&&dr(e,n),e}var pr=[],kt=function(){function e(t){m0(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=t,this._initControls(t)}return E0(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||Ue("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(He("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===Z.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===Z.FORM}},{key:"isListControl",value:function(n){return n.controlType===Z.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===Z.COLUMN}},{key:"createControl",value:function(n,r){if(Array.isArray(n)){var u=this;return n.map(function(o){return u.createControl(o,r)})}if(n.children){var i=this;n.children=n.children.map(function(o){return i.createControl(o,r)})}if(this.isListControl(n)&&n.props.headers){var s=this;n.props.headers=n.props.headers.map(function(o){return s.createControl(o,r)})}var f=this.getControlFormType(n.type);if(f){var l=n;if(typeof r=="function"){var d=r(l);d&&(l=d)}var a=new f(l);return a}else Ue("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n])})}}],[{key:"register",value:function(n){var r=n.Designer,u=n.Runtime;(!r||!u||!r.__is_control__||!u.__is_control__)&&Ue("".concat(n," is can't register as a Control"));var i=this.staticControls.findIndex(function(s){return s.Designer.controlType===r.controlType});return i>-1&&(He("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(r.controlType),this.staticControls.push(n),this}}]),e}();kt.staticControls=pr,kt.staticRegisteredTypes=new Set(pr.map(function(e){return e.Designer.controlType})),kt.staticRegisteredConfigs=new Map;function yt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var A0=function e(t){yt(this,e);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},mn=function e(t){yt(this,e);var n;this.amount=(n=t==null?void 0:t.amount)!==null&&n!==void 0?n:"";var r;this.currency=(r=t==null?void 0:t.currency)!==null&&r!==void 0?r:Fn.CNY},En=function e(t){yt(this,e);var n;this.min=(n=t==null?void 0:t.min)!==null&&n!==void 0?n:"";var r;this.max=(r=t==null?void 0:t.max)!==null&&r!==void 0?r:""},An=function e(t){yt(this,e);var n;this.city=(n=t==null?void 0:t.city)!==null&&n!==void 0?n:"";var r;this.cityDisplay=(r=t==null?void 0:t.cityDisplay)!==null&&r!==void 0?r:"";var u;this.district=(u=t==null?void 0:t.district)!==null&&u!==void 0?u:"";var i;this.districtDisplay=(i=t==null?void 0:t.districtDisplay)!==null&&i!==void 0?i:"";var s;this.province=(s=t==null?void 0:t.province)!==null&&s!==void 0?s:"";var f;this.provinceDisplay=(f=t==null?void 0:t.provinceDisplay)!==null&&f!==void 0?f:""},Cn=function e(t){yt(this,e);var n;this.result=(n=t==null?void 0:t.result)!==null&&n!==void 0?n:0;var r;this.unit=(r=t==null?void 0:t.unit)!==null&&r!==void 0?r:""},Fn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Fn||(Fn={}));var Dr;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(Dr||(Dr={}));var gr;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(gr||(gr={}));function C0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function F0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function jt(e,t,n){return y0()?jt=Reflect.construct:jt=function(u,i,s){var f=[null];f.push.apply(f,i);var l=Function.bind.apply(u,f),d=new l;return s&&Bt(d,s.prototype),d},jt.apply(null,arguments)}function wt(e){return wt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},wt(e)}function w0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Bt(e,t)}function B0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function b0(e,t){return t&&(S0(t)==="object"||typeof t=="function")?t:C0(e)}function Bt(e,t){return Bt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Bt(e,t)}var S0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function yn(e){var t=typeof Map=="function"?new Map:void 0;return yn=function(r){if(r===null||!B0(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return jt(r,arguments,wt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Bt(u,r)},yn(e)}function M0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function N0(e){var t=M0();return function(){var r=wt(e),u;if(t){var i=wt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return b0(this,u)}}yn(Array),new lr;function Te(e){return e.dataCode!==void 0&&e.fieldCode!==void 0}function Ut(e){return e.controlType===Z.LAYOUT||e.controlType===Z.WRAP||e.controlType===Z.LIST||e.controlType===Z.SEARCH}function ut(e,t){Array.isArray(e)&&e.map(n=>{if(n.type===W.SUBTABLE){const r=n.getChildrenFormControl();t(n,r)}else Ut(n)?ut(n==null?void 0:n.children,t):n.controlType===Z.FORM&&t(n)})}function it(e,t){Array.isArray(e)&&e.map(n=>{n.type===W.DATA_VIEW||n.type===W.SIMPLE_SEARCH?t(n):Ut(n)&&it(n==null?void 0:n.children,t)})}let vr=0;function mr(e=""){const t=Date.now(),n=Math.floor(Math.random()*1e9);return vr++,e+"_"+n+vr+String(t)}class wn extends kt{constructor(t){super("Runtime");this._flatInstances=[],this._instanceMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={};return Er(this._instance,r=>{r.type==="subtable-row"||r.type==="subtable-column"||(t.push(r),n[r.id]||(n[r.id]=[]),n[r.id].push(r))}),this._flatInstances=t,this._instanceMap=n,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get allRules(){let t={},n={};return it(this._instance,r=>{n[r.id]=r.rules[0],t[r.id]=r.rules[0],ut(r.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&(Ar(n[r.id].fields,u),Cr(t[r.id].fields,u))})}),{rules:n,antdRules:t}}get rules(){let t={};return it(this._instance,n=>{t[n.id]=n.rules[0],ut(n.children,r=>{(r.controlType===Z.FORM||r.controlType===Z.LIST)&&Ar(t[n.id].fields,r)})}),t}get antdRules(){let t={};return it(this._instance,n=>{t[n.id]=n.rules[0],ut(n.children,r=>{(r.controlType===Z.FORM||r.controlType===Z.LIST)&&Cr(t[n.id].fields,r)})}),t}}function Er(e,t){Array.isArray(e)?e.map(n=>{t(n),Ut(n)&&Er(n.children,t)}):t(e)}function Bn(e){return e.props.isHide?!0:e.parent===null?!1:Bn(e.parent)}function Ar(e,t){if(!Bn(t)){if(t.controlType===Z.FORM)e[t.id]=t.rules;else if(t.type===W.SUBTABLE){e[t.id]=t.rules;const n={type:"array",fields:{}};t.children.forEach((r,u)=>{Qe(r.children,i=>{n.fields&&(n.fields[u]||(n.fields[u]={type:"object",required:!0,fields:{}}),n.fields[u].fields[i.id]=i.rules)})}),e[t.id].push(n)}}}function Cr(e,t){Bn(t)||(t.controlType===Z.FORM?e[t.id]=t.rules:t.type===W.SUBTABLE&&t.children.length&&(e[t.id]=[],t.children.forEach(n=>{let r={};Qe(n.children,u=>{r[u.id]=u.rules}),e[t.id].push(r)})))}class I0{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i}=_0(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i}setState(t,n,r){const u=this.controlIdMapping[t];u!==void 0?this.state[u.dataView][t]=n:r!==void 0?Object.keys(this.controlIdMapping).map(i=>{const s=this.controlIdMapping[i].dataView,f=this.controlIdMapping[i].children;f!==void 0&&Object.keys(f).map(l=>{l===t&&(this.state[s][i][r][t]=n)})}):this.state[t]=n}getState(t,n){if(this.state[t]!==void 0)return this.state[t];{const u=this.controlIdMapping[t];if(u!==void 0)return this.state[u.dataView][t];if(n!==void 0){let i;return Object.keys(this.controlIdMapping).map(s=>{const f=this.controlIdMapping[s].dataView,l=this.controlIdMapping[s].children;l!==void 0&&Object.keys(l).map(d=>{var a;d===t&&(i=(a=this.state[f][s][n])==null?void 0:a[t])})}),i}else{let i=[];return Object.keys(this.controlIdMapping).map(s=>{const f=this.controlIdMapping[s].dataView,l=this.controlIdMapping[s].children;l!==void 0&&Object.keys(l).map(d=>{d===t&&this.state[f][s].map(a=>{i.push(a[t])})})}),i}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0){const u=this.emptyState[r.dataView][t];return"children"in r&&Object.assign(u,{uid:"new:"+mr("uid")}),u}else{let u;return Object.keys(this.controlIdMapping).map(i=>{const s=this.controlIdMapping[i].dataView,f=this.controlIdMapping[i].children;f!==void 0&&Object.keys(f).map(l=>{l===t&&(u=this.emptyState[s][i][t])})}),u}}}getDataBind(t){let n=this.controlIdMapping[t];if(n)return n.dataBind;e:for(let r in this.controlIdMapping){const u=this.controlIdMapping[r];if(u.children){for(let i in u.children)if(i===t){n=u.children[i];break e}}}return n==null?void 0:n.dataBind}}function _0(e){let t={},n={},r={},u={};return it(e,i=>{const s=i.id,f={},l={};ut([i],(d,a)=>{R0(f,l,d),x0(r,s,d),$0(u,s,d)}),t[s]=f,n[s]=l}),{state:t,emptyState:n,databindMapping:r,controlidMapping:u}}function R0(e,t,n){var r;if(n.controlType===Z.FORM)t[n.id]=be(n.props.defaultValue);else{const u={};Qe(n.props.headers,i=>{u[i.id]=be(i.props.defaultValue)}),e[n.id]=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>be(u)),t[n.id]=u}}function x0(e,t,n){var r,u;if(n.controlType===Z.FORM)Te(n.props.dataBind)?((u=(r=n.props)==null?void 0:r.dataBind)==null?void 0:u.dataCode)===void 0||(e[n.props.dataBind.dataCode]===void 0&&(e[n.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[n.props.dataBind.dataCode].fields.push({fieldCode:n.props.dataBind.fieldCode,controlId:n.id,dataBind:n.props.dataBind,dataViewId:[t]})):Object.keys(n.props.dataBind).map(i=>{const s=n.props.dataBind,f=s[i].dataCode;f!==void 0&&(e[f]===void 0&&(e[f]={controlId:n.id,fields:[],dataViewId:t}),e[f].fields.push({fieldCode:s[i].fieldCode,controlId:n.id,dataBind:s,dataViewId:[t]}))});else{if(n.props.datasourceBind.dataCode===""){He(`datasourceBind.dataCode is empty! maybe in preview mode, control:${n.id} type:${n.type}`);return}e[n.props.datasourceBind.dataCode]={controlId:n.id,fields:[],dataViewId:t};const i=n.id;Qe(n.props.headers,s=>{Te(s.props.dataBind)?e[s.props.dataBind.dataCode].fields.push({fieldCode:s.props.dataBind.fieldCode,controlId:s.id,dataBind:s.props.dataBind,dataViewId:[t,i]}):Object.keys(s.props.dataBind).map(f=>{const l=s.props.dataBind,d=l[f].dataCode;e[d].fields.push({fieldCode:l[f].fieldCode,controlId:s.id,dataBind:l,dataViewId:[t,i]})})})}}function $0(e,t,n){n.controlType===Z.FORM?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===W.SUBTABLE&&(e[n.id]={dataBind:new A0({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},Qe(n.props.headers,r=>{var u,i;Object.assign((i=(u=e[n.id])==null?void 0:u.children)!=null?i:{},{[r.id]:{dataBind:r.props.dataBind}})}))}const Fr=["splice","push","shift","pop","unshift","reverse"],bn=Symbol("__engineProxy__"),Sn=Symbol("__engineTarget__"),yr=Symbol("__engineArrayBeforeSetCallbackFlag__"),wr=Symbol("__engineProxyThisKey__"),_e={type:"",args:[],callback:Br};function Br(){}k0();function L0(e,t,n,r,u){if(_e.type){_e.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Ue(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${Fr.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const f=n,l=e.length;if(f>e.length){Ue("Do not directly modify the length of the array data, please add new rows");return}return f===e.length?void 0:()=>u.call(null,e,r,"splice",[f,l-f])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function T0(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===bn?!0:u===Sn?r:Array.isArray(r)&&u===yr?n:u===wr?e:Reflect.get(r,u,i)},set(r,u,i,s){var c;let f=i;const l=r[u],d=e===""?u:e+"."+u;function a(h){if(typeof h=="object"&&h!==null)return h[bn]!==!0?Vt(h,t,n,d):Vt(h[Sn],t,n,d)}f=(c=a(i))!=null?c:f;let o;if(Array.isArray(r)){const h=L0(r,u,i,e,t);o=Reflect.set(r,u,f,s),h&&h()}else{try{let h=f;if(f=n.call(null,r,d,f,l),h!==f){const p=a(f);p!==void 0&&(f=p)}}catch(h){return Tt(`${d} set error ${h}`),!0}o=Reflect.set(r,u,f,s),t.call(null,r,d,i,l)}return o}}}function Vt(e,t,n,r=""){if(Object.isFrozen(e))return e;for(let u in e){const i=r===""?u:r+"."+u,s=e[u];typeof s=="object"&&s!==null&&(e[u]=Vt(s,t,n,i))}return new Proxy(e,T0(r,t,n))}function br(e){const t=[];return e.forEach(n=>{t.push(n),n.controlType==="layout"&&t.push(...br(n.children))}),t}function Mn(e,t,n){if(t==="")return;const r=t.split(".");if(r.length===0)return;const u=r[0],i=r.slice(1),s=n[u]?n[u][0]:void 0;return i.length===0?s:i.reduce((f,l)=>{var o,c;const d=Number(l);if(Number.isNaN(d)&&f){const h=(f==null?void 0:f.children)?br(f.children):void 0,p=h==null?void 0:h.find(D=>D.id===l);return p||(f.controlType===Z.FORM?f:void 0)}else return(c=(o=f==null?void 0:f.children)==null?void 0:o[d])!=null?c:f},s)}function O0(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function P0(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function k0(){Fr.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[bn]){let u;const i=O0(e,n);if(i.length){const s=(r=this[yr])==null?void 0:r.call(this,this[Sn],this[wr],i),f=P0(e,n,s);_e.type=e,_e.args=f,u=t.apply(this,f)}else _e.type=e,_e.args=n,u=t.apply(this,n);return typeof _e.callback=="function"&&_e.callback(e,n,u),_e.type="",_e.args=[],_e.callback=Br,u}else return t.apply(this,n)}})}class j0{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return ke(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){Tt(`${u.id} Exception during calling action: ${i}`)}})}addAction(t,n){this.actionMap.has(t)&&Ue("duplicated action key");const r=new U0(t,n);this.actionMap.set(t,r)}}class U0{constructor(t,n){this.id="",this.id=t,this.func=n}}class V0{constructor(t){this._dataStore=new Map,this.executer=t}add(t,n){this._dataStore.set(t,n)}get(t){let n=this._dataStore.get(t);return be(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return ke(this,null,function*(){return this.executer===void 0?(Tt("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class We{}class bt extends We{validate(t){return ye(t)}transform(t){if(t==null)return"";if(!Le(t)&&!or(t))return String(t);if(i0(t))return JSON.stringify(t);throw`${t} is not a string`}}class Nn extends We{validate(t){return Ot(t)||t===""}transform(t){if(t==null)return"";const n=!Le(t)&&!or(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class q0 extends We{validate(t){return o0(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(Ft(t))return n(t);if(ye(t)&&ar(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class H0 extends We{validate(t){return a0(t)}transform(t){if(t==null)return[];function n(u){return u.map(i=>!i&&i!==0?"":Number(i)).filter(i=>i===""||!Number.isNaN(i))}if(Ft(t))return n(t);if(ye(t)&&ar(t))try{const u=JSON.parse(t);if(Ft(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class z0 extends We{validate(t){return Le(t)&&"amount"in t&&Ot(t.amount)&&"currency"in t&&ye(t.currency)}transform(t,n){if(t==null||t==="")return new mn({currency:n==null?void 0:n.currency});let r;if(Le(t)&&(r=new mn(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new mn(ne(ne({},n),u))}catch(u){}if(r){const u=new Nn,i=new bt;return u.validate(r.amount)||(r.amount=u.transform(r.amount)),i.validate(r.currency)||(r.currency=i.transform(r.currency)),r}throw`${t} is not a { amount: number, currency: string } object`}}class W0 extends We{validate(t){return Le(t)&&"min"in t&&ye(t.min)&&"max"in t&&ye(t.max)}transform(t,n){if(t==null||t==="")return new En;let r;if(Le(t)&&(r=new En(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new En(ne(ne({},n),u))}catch(u){}if(r){const u=new bt;return u.validate(r.min)||(r.min=u.transform(r.min)),u.validate(r.max)||(r.max=u.transform(r.max)),r}throw`${t} is not a { min: string, max: string } object`}}class Z0 extends We{validate(t){return Le(t)&&"result"in t&&Ot(t.result)&&"unit"in t&&ye(t.unit)}transform(t,n){if(t==null||t==="")return new Cn({unit:n==null?void 0:n.unit});let r;if(Le(t)&&(r=new Cn(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new Cn(ne(ne({},n),u))}catch(u){}if(r){const u=new Nn,i=new bt;return u.validate(r.result)||(r.result=u.transform(r.result)),i.validate(r.unit)||(r.unit=i.transform(r.unit)),r}throw`${t} is not a { result: string, unit: string } object`}}class X0 extends We{validate(t){return!!Le(t)}transform(t,n){if(t==null||t==="")return new An;let r;if(Le(t)&&(r=new An(ne(ne({},n),pn.exports.camelizeKeys(t)))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new An(ne(ne({},n),pn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new bt;return u.validate(r.city)||(r.city=u.transform(r.city)),u.validate(r.district)||(r.district=u.transform(r.district)),u.validate(r.province)||(r.province=u.transform(r.province)),r}throw`${t} is not a { city: string, district: string, province: string } object`}}class J0{static getValueChecker(t){let n;switch(t){case H.VARCHAR:case H.TIMESTAMP:case H.TEXT:case H.RELATION:case H.AUTO_NUMBER:n=new bt;break;case H.DECIMAL:n=new Nn;break;case H.EMPLOYEES:case H.DEPARTMENTS:case H.IMAGE:case H.FILE:case H.ARRAY:n=new q0;break;case H.MONEY:n=new z0;break;case H.TIMESCOPE:n=new W0;break;case H.CALC:n=new Z0;break;case H.DECIMAL_RANGE:n=new H0;break;case H.ADDRESS:n=new X0;break}return n}}function K0(e){if(["min","max","currency","unit"].includes(e))return H.VARCHAR;if(["result","amount"].includes(e))return H.DECIMAL}function Sr(e,t,n,r){var s;let u=(s=K0(t))!=null?s:e,i=J0.getValueChecker(u);if(!i||i.validate(n))return n;try{const f=i.transform(n,r);return f!==void 0?f:n}catch(f){throw`${t} ${f}`}}function G0(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const s=t[u];return r[u]=Sr(i,u,s,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let ot=null,St="";class Q0 extends lr{constructor(t){super();this.rawStore={},this.isMounted=!1,this.id=Os(8),this.__pluginsApplied=!1,this.actionManager=new j0,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:s=Kn,debug:f=!1}=this.$options;dn.setLocale(s),this.debug=f,this.runtime=new wn({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new I0({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&hn(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(...t){return wn.register(...t)}static judgeControlIsRegistered(t){return wn.staticRegisteredTypes.has(t.Runtime.controlType)}mount(){this.debugLog("engine\u7684mount\u65B9\u6CD5\u5F00\u59CB\u8C03\u7528");const{plugins:t=[]}=this.$options;this._handlerProxyState(),this.__plugins=t,this.applyPlugins(),this.setStates(this.getState()),this.debugLog("engine\u7684mount\u65B9\u6CD5\u8C03\u7528\u7ED3\u675F"),this.debug&&typeof window!="undefined"&&(window.engines[this.id]=this)}destroy(){this.debug&&typeof window!="undefined"&&delete window.engines[this.id]}_handlerProxyState(){this.store.state=Vt(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const i=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(!i)return r;if(this.assertInstance(i,W.SUBTABLE)){if(r===null)return[];const l=i.props.headers.reduce((a,o)=>{const c=o.children[0];return c&&c.controlType===Z.FORM&&(a[c.id]=c.fieldType),a},{}),d=this.getEmptyState(i.id);return r.map(a=>G0(l,a,d))}const s=n.split("."),f=s[s.length-1];try{return Sr(i.fieldType,f,r,u)}catch(l){throw He(`the id=${i.id}'s instance setState error, %o ${l}.`,r),l}}_proxyStateCallback(t,n,r,u,i){Array.isArray(t)?this._handlerArrayUpdate(t,n,r,u,i):this._handlerObjectUpdate(t,n,r,u)}_handlerArrayUpdate(t,n,r,u,i){const s=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(s.controlType!==Z.LIST)return;const f=c=>{const h=[];for(let p=0;p<c;p++){const D=this.listControlCreateRow(s,"subtable-row");D&&h.push(D)}return h},l=ot;let d=[],a=[],o=[];if(r&&u){switch(r){case"push":case"unshift":const c=u.length;d=f(c),a=u,s.children[r](...d),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const h=u.length-2,p=u.slice(2);d=f(h),a=p;const D=u[0],m=u[1];s.children[r](D,m,...d),this.runtime.getFlatInstances()}else s.children[r](...u),this.runtime.getFlatInstances();break;default:s.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?o=i:["pop","shift"].includes(r)&&(o=[i]),this.emit("list-change",{instance:s,value:this.getState(s.id),options:Object.assign({},l,{changed:d,data:a,deleted:o!=null?o:[],jsonValue:JSON.stringify(this.getState(s.id))})}),ot=null}}_handlerObjectUpdate(t,n,r,u){const i=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(!i)return;const s=this.getInstanceRowIndex(i),f=ot||{};if(i.controlType===Z.LIST){i.children.length=0;const l=r;let d=[];for(let a=0;a<l.length;a++){const o=this.listControlCreateRow(i,"subtable-row");o&&d.push(o)}i.children.push(...d),this.runtime.getFlatInstances(),this.emit("list-change",{instance:i,value:r,options:Jn(ne({},f),{changed:d,data:l,deleted:u!=null?u:[]})})}else this.emit("change",{instance:i,value:this.getState(i.id,s),rowIndex:s,options:Jn(ne({},f),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{St=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Ue(`${St} Plugin apply Error
2
- ${r}`)}finally{St=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){const r=this.runtime.createControlInstance(n);if(!!r){if(r.controlType===Z.LAYOUT){const u=r,i=be(t.props.headers),s=this.createControl(i);u.children.push(...s)}return r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){var r=u=>super[u];return ke(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return He("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const l=[...this._jobTasks];yield Promise.all(l),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let i,s;this.isMounted||(s=new Promise(l=>{i=l}),this._jobTasks.push(s));const f=yield r("emit").call(this,t,n);return i&&s&&(i(),this._jobTasks.splice(this._jobTasks.indexOf(s),1)),f})}on(t,n){return St&&(n.applyingPluginName=St),super.on(t,n)}createControl(...t){return this.runtime.createControl(...t)}createInstance(t,n){return this.runtime.createControlInstance(t,n)}schemaEvent(t,n){this.emit(t,n)}updateInstanceProps(t,n,r,u){return this.setInstance(t,n,r,u)}getAllRules(t){var r,u;const n=this.runtime.allRules;return t===void 0?n:{rules:(r=n.rules[t])==null?void 0:r.fields,antdRules:(u=n.antdRules[t])==null?void 0:u.fields}}getRules(t){var n;return t===void 0?this.runtime.rules:(n=this.runtime.rules[t])==null?void 0:n.fields}getAntdRules(t){var n;return t===void 0?this.runtime.antdRules:(n=this.runtime.antdRules[t])==null?void 0:n.fields}getState(t,n){return t===void 0?this.store.state:this.store.getState(t,n)}getEmptyState(t){return be(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){ot=t}setState(t,n,r,u){ot=u,this.debugLog("[%o]: \u89E6\u53D1setState, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o, options=%o",t,n,r,u),this.store.setState(t,n,r),this.debugLog("[%o]: setState\u5B8C\u6210, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o",t,n,r),ot=null}setStates(t,n,r){let u=t;Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([s,f])=>{if(f.dataView===i){const l=u[i][s];l!==void 0&&this.setState(s,l,n,r)}else(s===i||f.children&&f.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getField(t,n,r){if(!n){const l=this.getDataBindMapping(t);if(l){const{controlId:d}=l;return this.getState(d)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:s}=u,f=this.getState(s,r);return Te(i)?f:Object.entries(i).reduce((l,[d,a])=>a.fieldCode===n?l[d]:l,f)}getData(t){var u,i,s,f,l,d,a,o;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:c}=n,h=this.getField(t);if(Array.isArray(h))return h.map(D=>{var g,C,F,b,R,L,k;let m={};for(let I in D)if((F=(C=(g=r[c])==null?void 0:g.children[I])==null?void 0:C.dataBind)==null?void 0:F.fieldCode)m[(b=r[c].children[I])==null?void 0:b.dataBind.fieldCode]=D[I];else if((R=r[c])==null?void 0:R.children[I])for(let $ in D[I])m[(k=(L=r[c])==null?void 0:L.children[I])==null?void 0:k.dataBind[$].fieldCode]=D[I][$];return m});{let p={};for(let D in h)if((i=(u=r[D])==null?void 0:u.dataBind)==null?void 0:i.fieldCode)p[(s=r[D])==null?void 0:s.dataBind.fieldCode]=h[D];else if((l=(f=r[D])==null?void 0:f.dataBind)==null?void 0:l.dataCode)p[(d=r[D])==null?void 0:d.dataBind.dataCode]=h[D].map(m=>{var C,F,b;let g={};for(let R in m)if((C=r[D].children[R])==null?void 0:C.dataBind.fieldCode)g[(F=r[D].children[R])==null?void 0:F.dataBind.fieldCode]=m[R];else for(let L in m[R])g[(b=r[D].children[R])==null?void 0:b.dataBind[L].fieldCode]=m[R][L];return g});else if(r[D])for(let m in h[D])p[(o=(a=r[D])==null?void 0:a.dataBind[m])==null?void 0:o.fieldCode]=h[D][m];return p}}}setField(t,n,r,u,i){var d;const s=this.getDataBindMapping(t,n);if(!s)return;const{dataBind:f,controlId:l}=s;if(Te(f))this.setState(l,r,u,i);else{const a=(d=be(this.getState(l,u)))!=null?d:this.getEmptyState(l),o=Object.entries(f).reduce((c,[h,p])=>(p.fieldCode===n&&(c[h]=r),c),a);this.setState(l,o,u,i)}}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let s=[];i.fields.forEach(f=>{var o;const{dataBind:l,controlId:d,fieldCode:a}=f;if(!s.includes(a)&&!!Object.hasOwnProperty.call(n,a))if(Te(l))this.setState(d,n[a],r,u);else{const c=(o=be(this.getState(d,r)))!=null?o:this.getEmptyState(d),h=Object.entries(l).reduce((p,[D,m])=>{s.push(m.fieldCode);const g=n[m.fieldCode];return g!==void 0&&(p[D]=g),p},c);this.setState(f.controlId,h,r,u)}})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r)return;let u=[];const i={};return r.fields.forEach(s=>{const{dataBind:f,controlId:l,fieldCode:d}=s;if(!u.includes(d)&&!!Object.hasOwnProperty.call(n,d))if(Te(f))i[l]=n[d];else{const a=this.getEmptyState(l);i[s.controlId]=Object.entries(f).reduce((o,[c,h])=>{u.push(h.fieldCode);const p=n[h.fieldCode];return p!==void 0&&(o[c]=p),o},a)}}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);let r={};Object.keys(t).map(u=>{var s,f;const i=t[u];if(Array.isArray(i))i.map(l=>{const d=this.getDataBindMapping(u);if(!d)return;let a=be(this.store.emptyState[d.dataViewId][d.controlId]),o=[];Object.keys(l).map(c=>{var p,D,m;if(o.includes(c))return;const h=(D=(p=this.store.dataBindMapping[u])==null?void 0:p.fields)==null?void 0:D.find(g=>g.fieldCode===c);if(h){if(Te(h.dataBind)&&l[c]!==void 0)a[h.controlId]=l[c];else if(!Te(h.dataBind)){let g=be((m=this.getEmptyState(h.controlId))!=null?m:{});Object.keys(h.dataBind).map(C=>{const F=h.dataBind[C];l[F.fieldCode]!==void 0&&(g[C]=l[F.fieldCode]),o.push(F.fieldCode)}),a[h.controlId]=g}}}),r[d.dataViewId]||(r[d.dataViewId]={}),r[d.dataViewId][d.controlId]||(r[d.dataViewId][d.controlId]=[]),r[d.dataViewId][d.controlId].push(a)});else if(i){let l=[];const d=be(this.store.emptyState);Object.keys(i).map(o=>{var h;if(l.includes(o))return;const c=this.getDataBindMapping(u,o);if(c){if(r[c.dataViewId[0]]||(r[c.dataViewId[0]]={}),Te(c.dataBind)&&i[o]!==void 0)r[c.dataViewId[0]][c.controlId]=i[o]!==void 0?i[o]:d[c.dataViewId[0]][c.controlId];else if(!Te(c.dataBind)){let p=(h=this.getEmptyState(c.controlId))!=null?h:{};Object.keys(c.dataBind).map(D=>{const m=c.dataBind[D];i[m.fieldCode]!==void 0&&(p[D]=i[m.fieldCode]),l.push(m.fieldCode)}),r[c.dataViewId[0]][c.controlId]=p}}});const a=this.getDataBindMapping(u);if(a){const o=(s=a==null?void 0:a.fields)==null?void 0:s.map(p=>p==null?void 0:p.controlId),c=this.getEmptyState(a==null?void 0:a.controlId),h=Object.keys((f=r==null?void 0:r[a==null?void 0:a.controlId])!=null?f:{});o==null||o.forEach(p=>{!h.includes(p)&&p!=="uid"&&(Object.keys(r).length&&r[a==null?void 0:a.controlId]?Object.assign(r[a==null?void 0:a.controlId],{[p]:c[p]}):Object.assign(r,{[a.controlId]:{[p]:c[p]}}))}),this.debugLog("engine setData\u65B9\u6CD5\u9ED8\u8BA4\u503C\u53CA\u8868\u5355\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r)}}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r),this.setStates(r,void 0,n),this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\u5B8C\u6210\u3002")}getDataBind(t){return this.store.getDataBind(t)}getInstance(t,n){const r=this.getInstances(t,n===-1);if(r.length>0)return n!==void 0?n===-1?r[0]:r[n]:r[0]}getInstances(t,n=!1){var u;if(t===void 0)return this.runtime.flatInstances;const r=Array.from(this.runtime.instanceMap[t]||[]);if(n)if(r.length){const i=r[0];if(this.inList(i.id)===!0){const s=this.getInstanceInSubtableHeader(i);s&&r.unshift(s)}}else{const i=this.getControlIdMapping(),[s]=(u=Object.entries(i).find(([f,l])=>l.children&&t in l.children))!=null?u:[];if(s){const l=this.getInstance(s).props.headers.find(d=>d.children.find(a=>a.id===t));if(l){const d=l.children.find(a=>a.id===t);d&&r.unshift(d)}}}return r}setInstance(t,n,r,u){try{if(typeof t=="string"&&u===-1)this.getInstances(t,u===-1).map(s=>{s&&(this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",s.id,s,n,r),rr(s.props,n,r),this.schemaEvent("schema-change",{instance:s,props:n,value:r,rowIndex:u}))});else{let i;if(typeof t=="string"?i=this.getInstance(t,u):i=t,!i)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",i.id,i,n,r),rr(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r,rowIndex:u})}}catch(i){throw i}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(t,n){if(!t&&!n)return this.store.dataBindMapping;const r=this.store.dataBindMapping[t];if(!r){He(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){He(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new V0(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return ye(n)?t.type===n:n.includes(t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,W.SUBTABLE))if(this.assertInstance(t,W.SUBTABLE_COLUMN))n=-1;else{const r=t.parent.children.findIndex(u=>u===t);r>-1&&(n=r)}else n=this.getInstanceRowIndex(t.parent);return n}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}getInstanceInSubtableHeader(t){const n=this.getInstanceRowIndex(t);if(n===void 0)return;if(n===-1)return t;const r=this.assertInstance(t,W.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,W.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,W.SUBTABLE).props.headers.find(s=>s.id===r.id);if(!!i)return i.children.find(s=>s.id===t.id)}setControlConfig(...t){return this.runtime.registerControlConfig(...t)}getControlConfig(t){return this.runtime.getControlConfig(t)}inList(t){const n=this.store.controlIdMapping;return Object.keys(n).some(u=>{var i,s;return(s=(i=n[u])==null?void 0:i.children)==null?void 0:s.hasOwnProperty(t)})}}console.log("a");class Y0{}class ec{constructor(t,n){this.config=t,this.env=n}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=Mr(n,t,this.env);if(!r)return;const u=t.getAction();for(let[i,s]of Object.entries(r.funcMap))u.addAction(i,s)}}function Mr(e,t,n){if(!e.module||!e.module.compiled)return;const r=e.module.compiled,u={exports:{ctx:t,utils:t.getAction().actionUtils,env:n}};try{new Function("module","exports",r).call(u,u,u.exports)}catch(f){Ue(f.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Ue("fail to parse the module")}const i={},s={};for(const[f,l]of Object.entries(u.exports))typeof l=="function"?i[f]=l:s[f]=l;return{funcMap:i,variables:s}}const tc={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class nc{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(tc).forEach(([n,r])=>{t.on(n,u=>ke(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return ke(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>ke(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class rc{constructor(t){this.config=t}apply(t){this.engine=t,hr.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>ke(this,null,function*(){if(!(t==="change"&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return ke(this,null,function*(){const r=this.config[n.instance.id];if(!r||!Array.isArray(r[t]))return[];const u=yield Promise.all(r[t].map(i=>ke(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function In(){return In=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},In.apply(this,arguments)}var Nr={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function de(e){return typeof e=="number"}function Ze(e){return!e||typeof e!="object"||typeof e.constructor!="function"?!1:e.isBigNumber===!0&&typeof e.constructor.prototype=="object"&&e.constructor.prototype.isBigNumber===!0||typeof e.constructor.isDecimal=="function"&&e.constructor.isDecimal(e)===!0}function Ir(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function _r(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function Rr(e){return e&&e.constructor.prototype.isUnit===!0||!1}function qt(e){return typeof e=="string"}var we=Array.isArray;function Mt(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function _n(e){return Array.isArray(e)||Mt(e)}function uc(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ic(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function oc(e){return e&&e.constructor.prototype.isRange===!0||!1}function xr(e){return e&&e.constructor.prototype.isIndex===!0||!1}function ac(e){return typeof e=="boolean"}function sc(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function cc(e){return e&&e.constructor.prototype.isHelp===!0||!1}function lc(e){return typeof e=="function"}function fc(e){return e instanceof Date}function hc(e){return e instanceof RegExp}function dc(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Ir(e)&&!_r(e))}function pc(e){return e===null}function Dc(e){return e===void 0}function gc(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function vc(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function mc(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ec(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ac(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Cc(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Fc(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function yc(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function wc(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bc(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function bc(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sc(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mc(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nc(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ic(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function _c(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Rc(e){return e&&e.constructor.prototype.isChain===!0||!1}function Rn(e){var t=typeof e;return t==="object"?e===null?"null":Ze(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function Ye(e){var t=typeof e;if(t==="number"||t==="string"||t==="boolean"||e===null||e===void 0)return e;if(typeof e.clone=="function")return e.clone();if(Array.isArray(e))return e.map(function(n){return Ye(n)});if(e instanceof Date)return new Date(e.valueOf());if(Ze(e))return e;if(e instanceof RegExp)throw new TypeError("Cannot clone "+e);return xc(e,Ye)}function xc(e,t){var n={};for(var r in e)Ht(e,r)&&(n[r]=t(e[r]));return n}function xn(e,t){var n,r,u;if(Array.isArray(e)){if(!Array.isArray(t)||e.length!==t.length)return!1;for(r=0,u=e.length;r<u;r++)if(!xn(e[r],t[r]))return!1;return!0}else{if(typeof e=="function")return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(n in e)if(!(n in t)||!xn(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function Ht(e,t){return e&&Object.hasOwnProperty.call(e,t)}function $c(e,t){for(var n={},r=0;r<t.length;r++){var u=t[r],i=e[u];i!==void 0&&(n[u]=i)}return n}var Lc=["Matrix","Array"],Tc=["number","BigNumber","Fraction"],$r=function(t){if(t)throw new Error(`The global config is readonly.
1
+ var Rh=Object.defineProperty,xh=Object.defineProperties;var $h=Object.getOwnPropertyDescriptors;var ku=Object.getOwnPropertySymbols;var Lh=Object.prototype.hasOwnProperty,Oh=Object.prototype.propertyIsEnumerable;var on=Math.pow,ju=(z,Y,ie)=>Y in z?Rh(z,Y,{enumerable:!0,configurable:!0,writable:!0,value:ie}):z[Y]=ie,ne=(z,Y)=>{for(var ie in Y||(Y={}))Lh.call(Y,ie)&&ju(z,ie,Y[ie]);if(ku)for(var ie of ku(Y))Oh.call(Y,ie)&&ju(z,ie,Y[ie]);return z},Jn=(z,Y)=>xh(z,$h(Y));var ke=(z,Y,ie)=>new Promise(($t,vt)=>{var an=je=>{try{mt(ie.next(je))}catch(Et){vt(Et)}},sn=je=>{try{mt(ie.throw(je))}catch(Et){vt(Et)}},mt=je=>je.done?$t(je.value):Promise.resolve(je.value).then(an,sn);mt((ie=ie.apply(z,Y)).next())});(function(z,Y){typeof exports=="object"&&typeof module!="undefined"?Y(exports,require("regenerator-runtime"),require("crypto")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime","crypto"],Y):(z=typeof globalThis!="undefined"?globalThis:z||self,Y(z.modelDrivenEngine={},z.regeneratorRuntime,z.require$$0))})(this,function(z,Y,ie){"use strict";function $t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var vt=$t(Y),an=$t(ie),sn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",mt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Et="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",Uu="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",Vu="{caption}\u5FC5\u586B",qu="\u8BF7\u8F93\u5165\u6807\u9898",Hu="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",zu="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Wu="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",Zu="\u8BF7\u7ED1\u5B9A\u8868\u5355",Xu="\u8BF7\u7ED1\u5B9A\u5217\u8868",Ju="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ku="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Gu="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Qu="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",Yu="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5\uFF01",ei="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ti="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",ni="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",ri="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",ui="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",ii="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",oi="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",ai="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",si="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",ci="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",li="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",fi="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",hi="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",di="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",pi="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Di="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",gi="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",vi="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",mi="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Ei="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ai="\u8BF7\u9009\u62E9\u7701",Ci="\u8BF7\u9009\u62E9\u5E02",Fi="\u8BF7\u9009\u62E9\u533A",yi="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",wi="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Bi="\u8BF7\u8F93\u5165\u5217\u5BBD",bi="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Si="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Mi="\u8BF7\u9009\u62E9\u63A7\u4EF6",Ni="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",Ii="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",_i="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Ri="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",xi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",$i="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Li="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Oi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Ti="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Pi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ki="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",ji="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ui="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Vi="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",qi="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Hi="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",zi="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Wi="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Zi="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Xi="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ji="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ki="\u8BF7\u8F93\u5165\u5B50\u8868\u522B\u540D",Gi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u4E1A\u52A1\u6A21\u578B",Qi="\u8BF7\u9009\u62E9\u5173\u8054\u8868\u8BBE\u7F6E\u7ED1\u5B9A\u670D\u52A1",Yi="\u8BF7\u9009\u62E9\u5173\u8054\u5B50\u8868\u5B57\u6BB5",eo="\u8BF7\u9009\u62E9\u5173\u8054\u4E3B\u8868\u5B57\u6BB5",to={isNotNumber:sn,isNotString:mt,isNotObject:je,isNotArray:Et,isNotBoolean:Uu,runtimeRequired:Vu,pleaseEnterCaption:qu,pleaseEnterCaptionTip:Hu,pleaseEnterPlaceholder:zu,pleaseEnterFieldCode:Wu,pleaseEnterForm:Zu,pleaseEnterList:Xu,pleaseEnterProcess:Ju,pleaseEnterLabel:Ku,pleaseEnterValue:Gu,bizKeyNotBindFiled:Qu,pleaseSelectOneField:Yu,pleaseEnterNumberRange:ei,pleaseEnterAValueGreaterThanMin:ti,pleaseEnterAValueLessThanMax:ni,numberRangeSetError:ri,stringRangeError:ui,attachmentMaxSize:ii,pleaseEnterTotalScoreSetting:oi,theTotalScoreMustNotBeLessThan1:ai,scoreDefaultValueRange:si,attachmentLimitError:ci,PleaseReselectTheOptionalQuantity:li,TheMaximumLengthIsGreaterThanTheMinimumLength:fi,TheMinimumLengthIsGreaterThanTheMaximumLength:hi,PleaseSelectTheCorrectOptionSettings:di,optionIdIsRepeat:pi,optionIsRequired:Di,pleaseEnterDataCode:gi,pleaseEnterValueFieldCode:vi,pleaseEnterSvcCode:mi,pleaseBindAtLeastOneDisplayValue:Ei,pleaseSelectProvince:Ai,pleaseSelectCity:Ci,pleaseSelectDistrict:Fi,limitRowsCannotBeLessThan0:yi,TheNumberOfRowsCannotBeLessThanMinRows:wi,pleaseEnterColumnWidth:Bi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:bi,pleaseCompleteAllRulesAndConditions:Si,pleaseSelectControl:Mi,pleaseSelectAtLeastOneColumn:Ni,pleaseSelectFillBackMode:Ii,pleaseSelectDashboard:_i,rootNodeIsRequired:Ri,theViewNameCannotBeEmpty:xi,pleaseSelectOcrType:$i,pleaseSelectAtLeastOneFieldToFillIn:Li,pleaseChooseAtLeastOne:Oi,pleaseEnterButtonContent:Ti,pleaseEnterDataCodeInDataSetting:Pi,pleaseEnterValueFieldCodeInDataSetting:ki,pleaseEnterSvcCodeInDataSetting:ji,pleaseBindAtLeastOneDisplayValueInDataSetting:Ui,rootNodeIsRequiredInDataSetting:Vi,pleaseEnterMaxHeight:qi,pleaseEnter:Hi,pleaseEnterWatermark:zi,pleaseEnterFileName:Wi,pleaseUploadAtLeastOnePrintTemplate:Zi,pleaseAssignBusiness:Xi,pleaseAssignExternal:Ji,pleaseEnterAliasCode:Ki,pleaseSelectDataCode:Gi,pleaseSelectSvcCode:Qi,pleaseSelectJoinFieldCode:Yi,pleaseSelectMainFieldCode:eo},no="Please enter a number",ro="Please enter a string",uo="Please enter an object",io="Please enter an array",oo="Please enter a boolean",ao="{caption} Required",so="Please enter the title",co="Please enter the bubble prompt",lo="Please enter the prompt text",fo="Please bind data items",ho="Please bind the form",po="Please bind the list",Do="Please bind the process",go="Please enter the displayed value",vo="Please enter the stored value",mo="The document number is not bound to the data item",Eo="Please select at least one display field",Ao="Please enter a value greater than or equal to {min} and less than or equal to {max}",Co="Please enter a value greater than or equal to {min}",Fo="Please enter a value less than or equal to {max}",yo="The value range is set incorrectly",wo="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Bo="The attachment size must be between 0MB and 1000MB",bo="Please fill in the total score setting",So="The total score cannot be less than 1",Mo="The default value must be between {min} and {max}",No="The number of attachments uploaded must be between {min} and {max}",Io="Please re-select the optional quantity",_o="The maximum length of the control must be greater than the minimum length",Ro="The minimum length of the control must be less than the maximum length",xo="Please select the correct option setting",$o="Option ID cannot be repeated",Lo="Please enter at least one option",Oo="Please bind the data source",To="Please bind the stored value",Po="Please bind the service",ko="At least one display value must be bound",jo="Please select a province",Uo="Please select a city",Vo="Please select a district",qo="The minimum number of lines to fill in cannot be less than 0",Ho="The number of rows cannot be less than {min} rows",zo="Please enter the column width",Wo="Please set the logical relationship of all rule conditions",Zo="Please complete all rules and conditions",Xo="please select control",Jo="Please select the dashboard",Ko="View name cannot be empty",Go="Please select recognition type",Qo="Please select at least one field to fill in",Yo="Please select at least one",ea="Please enter the button title",ta="Please bind the business model in the data settings",na="Please bind storage values in data settings",ra="Please bind the service in the data settings",ua="Please bind at least one display value in the data settings",ia="Please select the root node in the data settings",oa="Please enter the maximum height",aa="The input content cannot be empty",sa="Watermark cannot be empty",ca="File name cannot be empty",la="Please upload at least one printing template!\uFF01",fa="Please select a specific business department",ha="Please select a specified external organization",da="Please enter a sub table alias",pa="Please select the associated table to set the business model",Da="Please select the association table to set the binding service",ga="Select associated sub table fields",va="Please select the associated main table field",ma={isNotNumber:no,isNotString:ro,isNotObject:uo,isNotArray:io,isNotBoolean:oo,runtimeRequired:ao,pleaseEnterCaption:so,pleaseEnterCaptionTip:co,pleaseEnterPlaceholder:lo,pleaseEnterFieldCode:fo,pleaseEnterForm:ho,pleaseEnterList:po,pleaseEnterProcess:Do,pleaseEnterLabel:go,pleaseEnterValue:vo,bizKeyNotBindFiled:mo,pleaseSelectOneField:Eo,pleaseEnterNumberRange:Ao,pleaseEnterAValueGreaterThanMin:Co,pleaseEnterAValueLessThanMax:Fo,numberRangeSetError:yo,stringRangeError:wo,attachmentMaxSize:Bo,pleaseEnterTotalScoreSetting:bo,theTotalScoreMustNotBeLessThan1:So,scoreDefaultValueRange:Mo,attachmentLimitError:No,PleaseReselectTheOptionalQuantity:Io,TheMaximumLengthIsGreaterThanTheMinimumLength:_o,TheMinimumLengthIsGreaterThanTheMaximumLength:Ro,PleaseSelectTheCorrectOptionSettings:xo,optionIdIsRepeat:$o,optionIsRequired:Lo,pleaseEnterDataCode:Oo,pleaseEnterValueFieldCode:To,pleaseEnterSvcCode:Po,pleaseBindAtLeastOneDisplayValue:ko,pleaseSelectProvince:jo,pleaseSelectCity:Uo,pleaseSelectDistrict:Vo,limitRowsCannotBeLessThan0:qo,TheNumberOfRowsCannotBeLessThanMinRows:Ho,pleaseEnterColumnWidth:zo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wo,pleaseCompleteAllRulesAndConditions:Zo,pleaseSelectControl:Xo,pleaseSelectDashboard:Jo,theViewNameCannotBeEmpty:Ko,pleaseSelectOcrType:Go,pleaseSelectAtLeastOneFieldToFillIn:Qo,pleaseChooseAtLeastOne:Yo,pleaseEnterButtonContent:ea,pleaseEnterDataCodeInDataSetting:ta,pleaseEnterValueFieldCodeInDataSetting:na,pleaseEnterSvcCodeInDataSetting:ra,pleaseBindAtLeastOneDisplayValueInDataSetting:ua,rootNodeIsRequiredInDataSetting:ia,pleaseEnterMaxHeight:oa,pleaseEnter:aa,pleaseEnterWatermark:sa,pleaseEnterFileName:ca,pleaseUploadAtLeastOnePrintTemplate:la,pleaseAssignBusiness:fa,pleaseAssignExternal:ha,pleaseEnterAliasCode:da,pleaseSelectDataCode:pa,pleaseSelectSvcCode:Da,pleaseSelectJoinFieldCode:ga,pleaseSelectMainFieldCode:va},Ea="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Aa="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ca="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Fa="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ya="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",wa="{caption}\u5FC5\u9808",Ba="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ba="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Sa="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ma="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Na="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ia="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",_a="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ra="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xa="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$a="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",La="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Oa="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ta="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pa="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ka="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",ja="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ua="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Va="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",qa="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ha="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",za="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Wa="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Za="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5927\u5024\u306F\u6700\u5C0F\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Xa="\u30B3\u30F3\u30DD\u30FC\u30CD\u30F3\u30C8\u306E\u6700\u5C0F\u5024\u306F\u6700\u5927\u5024\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ja="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Ka="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Ga="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Qa="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ya="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",es="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ts="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",ns="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",rs="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",us="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",is="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",os="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",as="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ss="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",cs="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",ls="please select control",fs="\u30C0\u30C3\u30B7\u30E5\u30DC\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",hs="\u30D3\u30E5\u30FC\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ds="\u8B58\u5225\u30BF\u30A4\u30D7\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",ps="\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ds="\u5C11\u306A\u304F\u3068\u30821\u3064\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",gs="\u30DC\u30BF\u30F3\u306E\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",vs="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",ms="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u683C\u7D0D\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Es="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30B5\u30FC\u30D3\u30B9\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",As="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u306B\u5C11\u306A\u304F\u3068\u30821\u3064\u306E\u8868\u793A\u5024\u3092\u30D0\u30A4\u30F3\u30C9\u3057\u3066\u304F\u3060\u3055\u3044",Cs="\u30C7\u30FC\u30BF\u8A2D\u5B9A\u3067\u30EB\u30FC\u30C8\u30CE\u30FC\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Fs="\u6700\u5927\u9AD8\u3055\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",ys="\u5165\u529B\u5185\u5BB9\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",ws="\u900F\u304B\u3057\u3092\u7A7A\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",Bs="\u30D5\u30A1\u30A4\u30EB\u540D\u3092\u7A7A\u767D\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093",bs="\u5370\u5237\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u3092\u5C11\u306A\u304F\u3068\u30821\u3064\u30A2\u30C3\u30D7\u30ED\u30FC\u30C9\u3057\u3066\u304F\u3060\u3055\u3044\uFF01\uFF01",Ss="\u6307\u5B9A\u3055\u308C\u305F\u30D3\u30B8\u30CD\u30B9\u90E8\u9580\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ms="\u5916\u90E8\u7D44\u7E54\u306E\u6307\u5B9A\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Ns="\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u5225\u540D\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Is="\u95A2\u9023\u8868\u3092\u9078\u629E\u3057\u3066\u30D3\u30B8\u30CD\u30B9\u30E2\u30C7\u30EB\u3092\u8A2D\u5B9A\u3057\u3066\u304F\u3060\u3055\u3044",_s="\u95A2\u9023\u30C6\u30FC\u30D6\u30EB\u8A2D\u5B9A\u30D0\u30A4\u30F3\u30C9\u30B5\u30FC\u30D3\u30B9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",Rs="\u95A2\u9023\u30B5\u30D6\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u9078\u629E",xs="\u95A2\u9023\u30DE\u30B9\u30BF\u30FC\u30C6\u30FC\u30D6\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",$s={isNotNumber:Ea,isNotString:Aa,isNotObject:Ca,isNotArray:Fa,isNotBoolean:ya,runtimeRequired:wa,pleaseEnterCaption:Ba,pleaseEnterCaptionTip:ba,pleaseEnterPlaceholder:Sa,pleaseEnterFieldCode:Ma,pleaseEnterForm:Na,pleaseEnterList:Ia,pleaseEnterProcess:_a,pleaseEnterLabel:Ra,pleaseEnterValue:xa,bizKeyNotBindFiled:$a,pleaseSelectOneField:La,pleaseEnterNumberRange:Oa,pleaseEnterAValueGreaterThanMin:Ta,pleaseEnterAValueLessThanMax:Pa,numberRangeSetError:ka,stringRangeError:ja,attachmentMaxSize:Ua,pleaseEnterTotalScoreSetting:Va,theTotalScoreMustNotBeLessThan1:qa,scoreDefaultValueRange:Ha,attachmentLimitError:za,PleaseReselectTheOptionalQuantity:Wa,TheMaximumLengthIsGreaterThanTheMinimumLength:Za,TheMinimumLengthIsGreaterThanTheMaximumLength:Xa,PleaseSelectTheCorrectOptionSettings:Ja,optionIdIsRepeat:Ka,optionIsRequired:Ga,pleaseEnterDataCode:Qa,pleaseEnterValueFieldCode:Ya,pleaseEnterSvcCode:es,pleaseBindAtLeastOneDisplayValue:ts,pleaseSelectProvince:ns,pleaseSelectCity:rs,pleaseSelectDistrict:us,limitRowsCannotBeLessThan0:is,TheNumberOfRowsCannotBeLessThanMinRows:os,pleaseEnterColumnWidth:as,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ss,pleaseCompleteAllRulesAndConditions:cs,pleaseSelectControl:ls,pleaseSelectDashboard:fs,theViewNameCannotBeEmpty:hs,pleaseSelectOcrType:ds,pleaseSelectAtLeastOneFieldToFillIn:ps,pleaseChooseAtLeastOne:Ds,pleaseEnterButtonContent:gs,pleaseEnterDataCodeInDataSetting:vs,pleaseEnterValueFieldCodeInDataSetting:ms,pleaseEnterSvcCodeInDataSetting:Es,pleaseBindAtLeastOneDisplayValueInDataSetting:As,rootNodeIsRequiredInDataSetting:Cs,pleaseEnterMaxHeight:Fs,pleaseEnter:ys,pleaseEnterWatermark:ws,pleaseEnterFileName:Bs,pleaseUploadAtLeastOnePrintTemplate:bs,pleaseAssignBusiness:Ss,pleaseAssignExternal:Ms,pleaseEnterAliasCode:Ns,pleaseSelectDataCode:Is,pleaseSelectSvcCode:_s,pleaseSelectJoinFieldCode:Rs,pleaseSelectMainFieldCode:xs},Ls={zhCN:to,enUS:ma,jaJP:$s},Ie;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(Ie||(Ie={}));var rt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(rt||(rt={}));var Kn="zh-CN";function Fe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Z;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(Z||(Z={}));var W;(function(e){e.TITLE="title",e.LINK="link",e.BUTTON="button",e.DIVIDER="divider",e.TEXT="text",e.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",e.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",e.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",e.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",e.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",e.EXPORT_LIST_BUTTON="list-page-btn-export-list",e.LIST_SELECT_BUTTON="list-select-button",e.ORGANIZATION_SELECTION="organization-selection",e.FORM_SELECT_BUTTON="form-select-button",e.LIST_VIEW_SELECT="list-view-select",e.TEXT_OCR_BUTTON="text-ocr-button",e.INVOICE_CHECK_BUTTON="invoice-check-button",e.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",e.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",e.VARCHAR_COLUMN="varchar-column",e.TEXT_COLUMN="text-column",e.DECIMAL_COLUMN="decimal-column",e.TIMESCOPE_COLUMN="timescope-column",e.TIMESTAMP_COLUMN="timestamp-column",e.ARRAY_COLUMN="array-column",e.DEPARTMENT_COLUMN="department-column",e.AUTO_NUMBER_COLUMN="auto-number-column",e.FILE_COLUMN="file-column",e.IMAGE_COLUMN="image-column",e.PEOPLE_COLUMN="people-column",e.LOCATION_COLUMN="location-column",e.CUSTOM_COLUMN="custom-column",e.ORDER_COLUMN="order-column",e.OPERATION_COLUMN="operation-column",e.EMPLOYEE_COLUMN="employee-column",e.Approval_Status_Column="approval-status-column",e.ADDRESS="address",e.AMOUNT="amount",e.ATTACHMENT="attachment",e.AUTO_NUMBER="auto-number",e.CALC="calc",e.CHECKBOX="checkbox",e.DATE_PICKER="date-picker",e.DATE_RANGE="date-range",e.DEPARTMENT="department",e.EMPLOYEE="employee",e.IMAGE="image",e.INPUT="input",e.NUMBER="number",e.RADIO="radio",e.RICH_TEXT="rich-text",e.SCORE="score",e.SEARCH_DATE_RANGE="search-date-range",e.SEARCH_NUMBER_RANGE="search-number-range",e.SEARCH_INPUT="search-input",e.SELECT="select",e.SELECT_MULTIPLE="select-multiple",e.SELECT_RELATION="select-relation",e.VUE_FORM_ITEM="vue-form-item",e.TEXTAREA="textarea",e.EMAIL="email",e.FOOTER="footer",e.HEADER="header",e.ID_CARD="id-card",e.MOBILE="mobile",e.PHONE="phone",e.RADIO_IMAGE="radio-image",e.ELECTRONIC_SIGNATURE="electronic-signature",e.WPS="wps",e.CARD_GROUP="card-group",e.COL="col",e.GRID="grid",e.GRID_ROW="grid-row",e.GRID_TABLE_COLUMN="grid-table-column",e.ROW="row",e.TWO_COLUMNS="two-columns",e.SUBTABLE_COLUMN="subtable-column",e.SUBTABLE_ROW="subtable-row",e.TAB="tab",e.TAB_PANE="tab-pane",e.TOOLBOX="toolbox",e.DATA_VIEW="data-view",e.LIST_VIEW="list-view",e.ACTION_BAR="action-bar",e.SUBTABLE="subtable",e.GRID_TABLE="grid-table",e.SIMPLE_SEARCH="simple-search",e.PAGINATION="pagination",e.CHECKBOX_IMAGE="checkbox-image",e.DASHBOARD="dashboard",e.TREE="tree",e.EMPLOYEE2="employee2",e.DEPARTMENT2="department2"})(W||(W={}));var H;(function(e){e.VARCHAR="varchar",e.TEXT="text",e.ARRAY="array",e.ADDRESS="location",e.DECIMAL="decimal",e.DECIMAL_RANGE="decimal_range",e.TIMESTAMP="timestamp",e.EMPLOYEES="people",e.DEPARTMENTS="department",e.MONEY="money",e.TIMESCOPE="timescope",e.FILE="file",e.IMAGE="image",e.AUTO_NUMBER="auto_number",e.CALC="calc",e.RELATION="relation",e.LIST="list",e.RELATION_FIELD="relation-field",e.REFERENCE_FIELD="reference-field",e.CALC_FIELD="calc",e.JSON="json",e.BIGINT="bigint",e.ANY="ANY",e.ENCRYPTED_FIELD="encrypted_field"})(H||(H={}));var he;he={},Fe(he,H.ARRAY,W.ARRAY_COLUMN),Fe(he,H.AUTO_NUMBER,W.AUTO_NUMBER_COLUMN),Fe(he,H.DECIMAL,W.DECIMAL_COLUMN),Fe(he,H.DEPARTMENTS,W.DEPARTMENT_COLUMN),Fe(he,H.FILE,W.FILE_COLUMN),Fe(he,H.IMAGE,W.IMAGE_COLUMN),Fe(he,H.ADDRESS,W.LOCATION_COLUMN),Fe(he,H.EMPLOYEES,W.EMPLOYEE_COLUMN),Fe(he,H.TEXT,W.TEXT_COLUMN),Fe(he,H.TIMESCOPE,W.TIMESCOPE_COLUMN),Fe(he,H.TIMESTAMP,W.TIMESTAMP_COLUMN),Fe(he,H.VARCHAR,W.VARCHAR_COLUMN),Fe(he,H.RELATION,W.VARCHAR_COLUMN);var Gn;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATEHOUR="datehour",e.DATEMIN="datemin",e.DATETIME="datetime"})(Gn||(Gn={}));var Qn="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Os=Qn+"0123456789";function Ts(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Qn:Os,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function cn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Ps(e){if(Array.isArray(e))return cn(e)}function ks(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function js(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Us(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function Lt(e,t,n){return Us()?Lt=Reflect.construct:Lt=function(u,i,s){var f=[null];f.push.apply(f,i);var l=Function.bind.apply(u,f),d=new l;return s&&Ct(d,s.prototype),d},Lt.apply(null,arguments)}function At(e){return At=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},At(e)}function Vs(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Ct(e,t)}function qs(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Hs(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function zs(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Ws(e,t){return t&&(Zs(t)==="object"||typeof t=="function")?t:ks(e)}function Ct(e,t){return Ct=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ct(e,t)}function Yn(e){return Ps(e)||Hs(e)||Xs(e)||zs()}var Zs=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Xs(e,t){if(!!e){if(typeof e=="string")return cn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return cn(e,t)}}function ln(e){var t=typeof Map=="function"?new Map:void 0;return ln=function(r){if(r===null||!qs(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return Lt(r,arguments,At(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ct(u,r)},ln(e)}function Js(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function Ks(e){var t=Js();return function(){var r=At(e),u;if(t){var i=At(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return Ws(this,u)}}var fn=console;function He(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=fn).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(Yn(u)))}function hn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r,u=t.slice(1);(r=fn).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(Yn(u)))}function Gs(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var er=function(e){Vs(n,e);var t=Ks(n);function n(r){js(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?Gs(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(ln(Error));function Ue(e){throw new er(e)}function Ot(e){fn.error(new er(e))}function Qe(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":Qe(n==null?void 0:n.children,t);break;case"search":Qe(n==null?void 0:n.children,t);break;case"form":t(n)}})}var Qs=Object.prototype.toString;function tr(e,t){return Qs.call(e)==="[object "+t+"]"}function Ys(e){return tr(e,"String")}function e0(e){return tr(e,"Promise")}var t0=function(){function e(t){var n,r;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((r=(n=t.messages)!==null&&n!==void 0?n:this.getPreImport(t.locale))!==null&&r!==void 0?r:{}),t.variableRegExp&&(this.variableRegExp=t.variableRegExp),this.setLocale(t.locale)}return e.prototype.setLocale=function(t){var n=this;this.locale=t,this._messageCache.clear();var r=this.getMessageData();e0(r)?r.then(function(u){n._messageCache.clear(),n.messages[n.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=r},e.prototype.getMessageData=function(){var t=this._messages[this.localeInMessageKey];return typeof t=="function"?t():t},e.prototype.translate=function(t,n,r){var u=this.getMessage(t);return u?this.formatMessage(u,r):this.formatMessage(n,r)},e.prototype.getMessage=function(t){if(this._messageCache.has(t))return this._messageCache.get(t);var n=this.getPathArray(t),r=n.reduce(function(u,i,s,f){if(u!==void 0){var l=u[i];if(!(s===f.length-1&&!Ys(l)))return l}},this.message);return this._messageCache.set(t,r),r},e.prototype.formatMessage=function(t,n){return n?t.replace(this.variableRegExp,function(r,u){var i=n[u];return i!==void 0?String(i):r}):t},e.prototype.getPreImport=function(t){var n;if(window.okI18nPreImport){var r=this.getLocaleInMessageKey(t);return window.okI18nPreImport.hasOwnProperty(r)?window.okI18nPreImport:(n={},n[r]=window.okI18nPreImport,n)}},e.prototype.getPathArray=function(t){return t.split(".")},e.prototype.getLocaleInMessageKey=function(t){return t.replace(/-/g,"")},Object.defineProperty(e.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"message",{get:function(){var t;return(t=this.messages[this.localeInMessageKey])!==null&&t!==void 0?t:{}},enumerable:!1,configurable:!0}),e}();function n0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function nr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function r0(e,t,n){return t&&nr(e.prototype,t),n&&nr(e,n),e}var dn=function(){function e(){n0(this,e)}return r0(e,null,[{key:"getMessage",value:function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)}},{key:"resetI18n",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Kn;return new t0({locale:n,messages:Ls})}},{key:"setLocale",value:function(n){return this.$i18n.setLocale(n)}}]),e}();dn.$i18n=dn.resetI18n();function rr(e,t,n){var r=t.replace(/\[(\d)]/g,function(i,s){return"."+s}).split("."),u=!1;return r.reduce(function(i,s,f,l){var d=i;if(!!i){if(!Object.prototype.hasOwnProperty.call(i,s)){He("Can not set ".concat(t,"'s ").concat(s," property in current %o, Because there is no ").concat(s," property on the %o"),i,i);return}return f===l.length-1&&!Object.is(d[s],n)&&(d[s]=n,u=!0),d[s]}},e),u}var ze=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function ur(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var pn={exports:{}};(function(e){(function(t){var n=function(g,C,F){if(!d(C)||o(C)||c(C)||h(C)||l(C))return C;var b,R=0,L=0;if(a(C))for(b=[],L=C.length;R<L;R++)b.push(n(g,C[R],F));else{b={};for(var k in C)Object.prototype.hasOwnProperty.call(C,k)&&(b[g(k,F)]=n(g,C[k],F))}return b},r=function(g,C){C=C||{};var F=C.separator||"_",b=C.split||/(?=[A-Z])/;return g.split(b).join(F)},u=function(g){return p(g)?g:(g=g.replace(/[\-_\s]+(.)?/g,function(C,F){return F?F.toUpperCase():""}),g.substr(0,1).toLowerCase()+g.substr(1))},i=function(g){var C=u(g);return C.substr(0,1).toUpperCase()+C.substr(1)},s=function(g,C){return r(g,C).toLowerCase()},f=Object.prototype.toString,l=function(g){return typeof g=="function"},d=function(g){return g===Object(g)},a=function(g){return f.call(g)=="[object Array]"},o=function(g){return f.call(g)=="[object Date]"},c=function(g){return f.call(g)=="[object RegExp]"},h=function(g){return f.call(g)=="[object Boolean]"},p=function(g){return g=g-0,g===g},D=function(g,C){var F=C&&"process"in C?C.process:C;return typeof F!="function"?g:function(b,R){return F(b,g,R)}},m={camelize:u,decamelize:s,pascalize:i,depascalize:s,camelizeKeys:function(g,C){return n(D(u,C),g)},decamelizeKeys:function(g,C){return n(D(s,C),g,C)},pascalizeKeys:function(g,C){return n(D(i,C),g)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=m:t.humps=m})(ze)})(pn);var ir={};Object.defineProperty(ir,"__esModule",{value:!0});function Dn(e){if(typeof e!="object"||e===null)return e;if(Array.isArray(e))return e.map(t=>typeof t!="object"||t===null?t:Dn(t));{const t={};for(const n in e){const r=e[n];t[n]=typeof r!="object"||r===null?r:Dn(r)}return t}}var u0=ir.default=Dn;function be(e){if(e!==void 0)return typeof e=="object"?u0(e):e}function Le(e){return Object.prototype.toString.call(e)==="[object Object]"}function i0(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function Ft(e){return Array.isArray(e)}function ye(e){return typeof e=="string"}function Tt(e){return typeof e=="number"}function or(e){return typeof e=="function"}function o0(e){return Ft(e)&&e.every(function(t){return ye(t)})}function a0(e){return Ft(e)&&e.every(function(t){return Tt(t)||t===""})}function ar(e){return/^\[.*?]$/.test(e)}function Pt(e){return/^{.*?}$/.test(e)}function gn(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function s0(e){if(Array.isArray(e))return gn(e)}function sr(e,t,n,r,u,i,s){try{var f=e[i](s),l=f.value}catch(d){n(d);return}f.done?t(l):Promise.resolve(l).then(r,u)}function c0(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var i=e.apply(t,n);function s(l){sr(i,r,u,s,f,"next",l)}function f(l){sr(i,r,u,s,f,"throw",l)}s(void 0)})}}function l0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function cr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function f0(e,t,n){return t&&cr(e.prototype,t),n&&cr(e,n),e}function h0(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function d0(){throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function vn(e){return s0(e)||h0(e)||p0(e)||d0()}function p0(e,t){if(!!e){if(typeof e=="string")return gn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(n);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return gn(e,t)}}var lr=function(){function e(){l0(this,e),this._events=new Map,this.debug=!1}return f0(e,[{key:"emit",value:function(n){for(var r=arguments.length,u=new Array(r>1?r-1:0),i=1;i<r;i++)u[i-1]=arguments[i];var s=this;return c0(vt.default.mark(function f(){var l,d,a,o,c,h,p,D,m,g;return vt.default.wrap(function(F){for(;;)switch(F.prev=F.next){case 0:if(l=s._events.get(n),d=[],!l){F.next=42;break}a=l.slice(),o=!0,c=!1,h=void 0,F.prev=5,p=a[Symbol.iterator]();case 7:if(o=(D=p.next()).done){F.next=28;break}if(m=D.value,l.includes(m)){F.next=11;break}return F.abrupt("continue",25);case 11:return F.prev=11,s.debug&&hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(m.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+m.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"\u3002")].concat(vn(u))),F.next=15,m.apply(null,vn(u));case 15:if(g=F.sent,s.debug&&hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(m.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+m.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(u.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(vn(u),[g])),d.push(g),g!==!1){F.next=20;break}return F.abrupt("break",28);case 20:F.next=25;break;case 22:F.prev=22,F.t0=F.catch(11),Ot(String(F.t0)+":"+String(F.t0.stack));case 25:o=!0,F.next=7;break;case 28:F.next=34;break;case 30:F.prev=30,F.t1=F.catch(5),c=!0,h=F.t1;case 34:F.prev=34,F.prev=35,!o&&p.return!=null&&p.return();case 37:if(F.prev=37,!c){F.next=40;break}throw h;case 40:return F.finish(37);case 41:return F.finish(34);case 42:return F.abrupt("return",d);case 43:case"end":return F.stop()}},f,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()}},{key:"on",value:function(n,r){if(this._events.has(n)){var u;(u=this._events.get(n))===null||u===void 0||u.push(r)}else this._events.set(n,[r])}},{key:"off",value:function(n,r){if(this._events.has(n)){var u=this._events.get(n),i=u==null?void 0:u.indexOf(r);u==null||u.splice(i,1)}}},{key:"delete",value:function(n){this._events.has(n)&&this._events.delete(n)}},{key:"clear",value:function(){this._events=new Map}}]),e}();function D0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function fr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function g0(e,t,n){return t&&fr(e.prototype,t),n&&fr(e,n),e}var v0=[{key:"on_click",name:"\u70B9\u51FB\u65F6",code:"click"},{key:"on_click_finish",name:"\u6267\u884C\u5B8C\u6210\u65F6",code:"click-finish"},{key:"on_change",name:"\u503C\u53D1\u751F\u53D8\u5316\u65F6",code:"change"},{key:"on_search",name:"\u641C\u7D22\u65F6",code:"search"},{key:"on_list_change",name:"\u5217\u8868\u6570\u636E\u53D8\u5316\u65F6",code:"list-change"},{key:"on_list_search",name:"\u5217\u8868\u6570\u636E\u67E5\u8BE2\u6784\u5EFA\u65F6",code:"list-search"},{key:"on_list_mounted",name:"\u5217\u8868\u6570\u636E\u8FD4\u56DE\u65F6",code:"list-mounted"},{key:"on_list_delete",name:"\u5217\u8868\u6570\u636E\u5220\u9664\u65F6",code:"list-delete"},{key:"on_list_before_insert",name:"\u5217\u8868\u6570\u636E\u63D2\u5165\u524D",code:"list-before-insert"},{key:"on_input",name:"\u7528\u6237\u8F93\u5165\u65F6",code:"input"},{key:"on_blur",name:"\u5931\u53BB\u7126\u70B9\u65F6",code:"blur"},{key:"on_focus",name:"\u83B7\u53D6\u7126\u70B9\u65F6",code:"focus"},{key:"on_wps_open",name:"\u6253\u5F00\u6587\u4EF6\u65F6",code:"wps-open"},{key:"on_wps_save",name:"\u4FDD\u5B58\u6587\u4EF6\u65F6",code:"wps-save"},{key:"on_wps_rename",name:"\u91CD\u547D\u540D\u65F6",code:"wps-rename"},{key:"on_list_actions",name:"\u70B9\u51FB\u64CD\u4F5C\u6309\u94AE\u65F6",code:"list-actions"},{key:"on_list_render_operation",name:"\u64CD\u4F5C\u5217\u6E32\u67D3\u65F6",code:"list-render-operation"},{key:"on_list_rowclick",name:"\u884C\u70B9\u51FB\u65F6",code:"list-rowclick"},{key:"on_list_before_rowdelete",name:"\u884C\u5220\u9664\u524D",code:"list-before-rowdelete"},{key:"on_list_before_import",name:"\u5217\u8868\u6570\u636E\u5BFC\u5165\u524D",code:"list-before-import"},{key:"on_list_rows_checked",name:"\u884C\u9009\u4E2D\u65F6",code:"list-rows-checked"},{key:"on_change_tab",name:"\u6807\u7B7E\u9875\u5207\u6362\u65F6",code:"change-tab"},{key:"on_modal_ok",name:"\u5F39\u7A97\u786E\u8BA4\u65F6",code:"modal-ok"}],hr=function(){function e(){D0(this,e)}return g0(e,[{key:"getEventsFromKeys",value:function(n){var r=typeof n=="string"?[n]:n;return e.events.filter(function(u){return r.includes(u.key)})}}]),e}();hr.events=v0;function m0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dr(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function E0(e,t,n){return t&&dr(e.prototype,t),n&&dr(e,n),e}var pr=[],kt=function(){function e(t){m0(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=t,this._initControls(t)}return E0(e,[{key:"registerControlConfig",value:function(n,r){return this.controlConfigMap.set(n,r),this}},{key:"getControlConfig",value:function(n){return this.controlConfigMap.get(n)}},{key:"getControls",value:function(){return this._controls}},{key:"register",value:function(n){n.__is_control__||Ue("".concat(n.name," is not a Control"));var r=this._controls.findIndex(function(u){return u.controlType===n.controlType});return r>-1&&(He("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(r,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this}},{key:"isLayoutControl",value:function(n){return n.controlType===Z.LAYOUT}},{key:"isFormControl",value:function(n){return n.controlType===Z.FORM}},{key:"isListControl",value:function(n){return n.controlType===Z.LIST}},{key:"isColumnControl",value:function(n){return n.controlType===Z.COLUMN}},{key:"createControl",value:function(n,r){if(Array.isArray(n)){var u=this;return n.map(function(o){return u.createControl(o,r)})}if(n.children){var i=this;n.children=n.children.map(function(o){return i.createControl(o,r)})}if(this.isListControl(n)&&n.props.headers){var s=this;n.props.headers=n.props.headers.map(function(o){return s.createControl(o,r)})}var f=this.getControlFormType(n.type);if(f){var l=n;if(typeof r=="function"){var d=r(l);d&&(l=d)}var a=new f(l);return a}else Ue("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))}},{key:"createControlInstance",value:function(n,r){var u=this.getControlFormType(n);if(u)return new u(r)}},{key:"getControlFormType",value:function(n){return this._controls.find(function(r){return r.controlType===n})}},{key:"_initControls",value:function(n){var r=this;this.constructor.staticControls.forEach(function(u){r.register(u[n])})}}],[{key:"register",value:function(n){var r=n.Designer,u=n.Runtime;(!r||!u||!r.__is_control__||!u.__is_control__)&&Ue("".concat(n," is can't register as a Control"));var i=this.staticControls.findIndex(function(s){return s.Designer.controlType===r.controlType});return i>-1&&(He("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(i,1)),this.staticRegisteredTypes.add(r.controlType),this.staticControls.push(n),this}}]),e}();kt.staticControls=pr,kt.staticRegisteredTypes=new Set(pr.map(function(e){return e.Designer.controlType})),kt.staticRegisteredConfigs=new Map;function yt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var A0=function e(t){yt(this,e);var n;this.dataCode=(n=t==null?void 0:t.dataCode)!==null&&n!==void 0?n:"";var r;this.fieldCode=(r=t==null?void 0:t.fieldCode)!==null&&r!==void 0?r:"";var u;this.fieldType=(u=t==null?void 0:t.fieldType)!==null&&u!==void 0?u:"",this.aliasCode=t==null?void 0:t.aliasCode},mn=function e(t){yt(this,e);var n;this.amount=(n=t==null?void 0:t.amount)!==null&&n!==void 0?n:"";var r;this.currency=(r=t==null?void 0:t.currency)!==null&&r!==void 0?r:Fn.CNY},En=function e(t){yt(this,e);var n;this.min=(n=t==null?void 0:t.min)!==null&&n!==void 0?n:"";var r;this.max=(r=t==null?void 0:t.max)!==null&&r!==void 0?r:""},An=function e(t){yt(this,e);var n;this.city=(n=t==null?void 0:t.city)!==null&&n!==void 0?n:"";var r;this.cityDisplay=(r=t==null?void 0:t.cityDisplay)!==null&&r!==void 0?r:"";var u;this.district=(u=t==null?void 0:t.district)!==null&&u!==void 0?u:"";var i;this.districtDisplay=(i=t==null?void 0:t.districtDisplay)!==null&&i!==void 0?i:"";var s;this.province=(s=t==null?void 0:t.province)!==null&&s!==void 0?s:"";var f;this.provinceDisplay=(f=t==null?void 0:t.provinceDisplay)!==null&&f!==void 0?f:""},Cn=function e(t){yt(this,e);var n;this.result=(n=t==null?void 0:t.result)!==null&&n!==void 0?n:0;var r;this.unit=(r=t==null?void 0:t.unit)!==null&&r!==void 0?r:""},Fn;(function(e){e.CNY="CNY",e.USD="USD",e.JPY="JPY",e.EUR="EUR",e.INR="INR",e.IDR="IDR",e.BRL="BRL",e.AED="AED",e.AUD="AUD",e.CAD="CAD",e.EGP="EGP",e.GBP="GBP",e.ZAR="ZAR",e.KRW="KRW",e.MAD="MAD",e.MXN="MXN",e.MYR="MYR",e.PHP="PHP",e.PLN="PLN",e.RUB="RUB",e.SGD="SGD",e.THB="THB",e.TRY="TRY",e.TWD="TWD",e.VND="VND",e.HKD="HKD",e.IEP="IEP"})(Fn||(Fn={}));var Dr;(function(e){e.DEFAULT_DISPLAY="defaultDisplay",e.REQUIRED="required",e.IS_HIDE="isHide",e.IS_SHOW_UNIT="isShowUnit",e.IMD_SEARCH="immediatelySearch",e.MULTIPLE="multiple",e.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",e.CAPTION="caption",e.IS_HIDE_CAPTION="isHideCaption",e.DEFAULT_SHOW_OPTIONS="defaultShowOptions",e.CAN_SEARCH="canSearch",e.CAN_CHECK="canCheck",e.CAN_EDIT="canEdit",e.CAN_DELETE="canDelete",e.SHOW_UPPER_CASE="showUpperCase",e.MICROMETER="micrometer",e.PRECISION="precision",e.PERCENTAGE="percentage",e.OPTIONAL_LEVEL="optionalLevel",e.CONTAINS_SUB_NODE="containsSubNode",e.DEFAULT_COLLAPSE="defaultCollapse",e.CAN_VIEW_FORM="canViewForm",e.VIEW_FORM_MODEL_TYPE="viewFormModelType",e.SERVER_PAGINATION="serverPagination",e.IS_SHOW_CAPTION_TIP="isShowCaptionTip",e.ENCRYPTED="encrypted",e.IS_INLINE_EDIT="isInlineEdit",e.REVISIONS_MODE="revisionsMode",e.ALLOW_COPY_OPTIONS="allowCopyOptions"})(Dr||(Dr={}));var gr;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(gr||(gr={}));function C0(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function F0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function y0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch(e){return!1}}function jt(e,t,n){return y0()?jt=Reflect.construct:jt=function(u,i,s){var f=[null];f.push.apply(f,i);var l=Function.bind.apply(u,f),d=new l;return s&&Bt(d,s.prototype),d},jt.apply(null,arguments)}function wt(e){return wt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},wt(e)}function w0(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&Bt(e,t)}function B0(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function b0(e,t){return t&&(S0(t)==="object"||typeof t=="function")?t:C0(e)}function Bt(e,t){return Bt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Bt(e,t)}var S0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function yn(e){var t=typeof Map=="function"?new Map:void 0;return yn=function(r){if(r===null||!B0(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t!="undefined"){if(t.has(r))return t.get(r);t.set(r,u)}function u(){return jt(r,arguments,wt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Bt(u,r)},yn(e)}function M0(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(e){return!1}}function N0(e){var t=M0();return function(){var r=wt(e),u;if(t){var i=wt(this).constructor;u=Reflect.construct(r,arguments,i)}else u=r.apply(this,arguments);return b0(this,u)}}yn(Array),new lr;function Oe(e){return e.dataCode!==void 0&&e.fieldCode!==void 0}function Ut(e){return e.controlType===Z.LAYOUT||e.controlType===Z.WRAP||e.controlType===Z.LIST||e.controlType===Z.SEARCH}function ut(e,t){Array.isArray(e)&&e.map(n=>{n.type===W.SUBTABLE?t(n,[]):Ut(n)?ut(n==null?void 0:n.children,t):n.controlType===Z.FORM&&t(n)})}function it(e,t){Array.isArray(e)&&e.map(n=>{n.type===W.DATA_VIEW||n.type===W.SIMPLE_SEARCH?t(n):Ut(n)&&it(n==null?void 0:n.children,t)})}let vr=0;function mr(e=""){const t=Date.now(),n=Math.floor(Math.random()*1e9);return vr++,e+"_"+n+vr+String(t)}class wn extends kt{constructor(t){super("Runtime");this._flatInstances=[],this._instanceMap={};const{schema:n}=t;this._schema=n,this._instance=this.createControl(n,t.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const t=[],n={};return Er(this._instance,r=>{r.type==="subtable-row"||r.type==="subtable-column"||(t.push(r),n[r.id]||(n[r.id]=[]),n[r.id].push(r))}),this._flatInstances=t,this._instanceMap=n,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get allRules(){let t={},n={};return it(this._instance,r=>{n[r.id]=r.rules[0],t[r.id]=r.rules[0],ut(r.children,u=>{(u.controlType===Z.FORM||u.controlType===Z.LIST)&&(Ar(n[r.id].fields,u),Cr(t[r.id].fields,u))})}),{rules:n,antdRules:t}}get rules(){let t={};return it(this._instance,n=>{t[n.id]=n.rules[0],ut(n.children,r=>{(r.controlType===Z.FORM||r.controlType===Z.LIST)&&Ar(t[n.id].fields,r)})}),t}get antdRules(){let t={};return it(this._instance,n=>{t[n.id]=n.rules[0],ut(n.children,r=>{(r.controlType===Z.FORM||r.controlType===Z.LIST)&&Cr(t[n.id].fields,r)})}),t}}function Er(e,t){Array.isArray(e)?e.map(n=>{if(t(n),Ut(n)){const r=n;r.children||(r.children=[]),Er(r.children,t)}}):t(e)}function Bn(e){return e.props.isHide?!0:e.parent===null?!1:Bn(e.parent)}function Ar(e,t){if(!Bn(t)){if(t.controlType===Z.FORM)e[t.id]=t.rules;else if(t.type===W.SUBTABLE){e[t.id]=t.rules;const n={type:"array",fields:{}};t.children.forEach((r,u)=>{Qe(r.children,i=>{n.fields&&(n.fields[u]||(n.fields[u]={type:"object",required:!0,fields:{}}),n.fields[u].fields[i.id]=i.rules)})}),e[t.id].push(n)}}}function Cr(e,t){Bn(t)||(t.controlType===Z.FORM?e[t.id]=t.rules:t.type===W.SUBTABLE&&t.children.length&&(e[t.id]=[],t.children.forEach(n=>{let r={};Qe(n.children,u=>{r[u.id]=u.rules}),e[t.id].push(r)})))}class I0{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:i}=_0(t.instance);this.emptyState=r,this.state=n,this.dataBindMapping=u,this.controlIdMapping=i}setState(t,n,r){const u=this.controlIdMapping[t];u!==void 0?this.state[u.dataView][t]=n:r!==void 0?Object.keys(this.controlIdMapping).map(i=>{const s=this.controlIdMapping[i].dataView,f=this.controlIdMapping[i].children;f!==void 0&&Object.keys(f).map(l=>{l===t&&(this.state[s][i][r][t]=n)})}):this.state[t]=n}getState(t,n){if(this.state[t]!==void 0)return this.state[t];{const u=this.controlIdMapping[t];if(u!==void 0)return this.state[u.dataView][t];if(n!==void 0){let i;return Object.keys(this.controlIdMapping).map(s=>{const f=this.controlIdMapping[s].dataView,l=this.controlIdMapping[s].children;l!==void 0&&Object.keys(l).map(d=>{var a;d===t&&(i=(a=this.state[f][s][n])==null?void 0:a[t])})}),i}else{let i=[];return Object.keys(this.controlIdMapping).map(s=>{const f=this.controlIdMapping[s].dataView,l=this.controlIdMapping[s].children;l!==void 0&&Object.keys(l).map(d=>{d===t&&this.state[f][s].map(a=>{i.push(a[t])})})}),i}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0){const u=this.emptyState[r.dataView][t];return"children"in r&&Object.assign(u,{uid:"new:"+mr("uid")}),u}else{let u;return Object.keys(this.controlIdMapping).map(i=>{const s=this.controlIdMapping[i].dataView,f=this.controlIdMapping[i].children;f!==void 0&&Object.keys(f).map(l=>{l===t&&(u=this.emptyState[s][i][t])})}),u}}}getDataBind(t){let n=this.controlIdMapping[t];if(n)return n.dataBind;e:for(let r in this.controlIdMapping){const u=this.controlIdMapping[r];if(u.children){for(let i in u.children)if(i===t){n=u.children[i];break e}}}return n==null?void 0:n.dataBind}}function _0(e){let t={},n={},r={},u={};return it(e,i=>{const s=i.id,f={},l={};ut([i],(d,a)=>{R0(f,l,d),x0(r,s,d),$0(u,s,d)}),t[s]=f,n[s]=l}),{state:t,emptyState:n,databindMapping:r,controlidMapping:u}}function R0(e,t,n){var r;if(n.controlType===Z.FORM)t[n.id]=be(n.props.defaultValue);else{const u={};Qe(n.props.headers,i=>{u[i.id]=be(i.props.defaultValue)}),e[n.id]=new Array((r=n.props.defaultRows)!=null?r:1).fill(0).map(()=>be(u)),t[n.id]=u}}function x0(e,t,n){var r,u;if(n.controlType===Z.FORM)Oe(n.props.dataBind)?((u=(r=n.props)==null?void 0:r.dataBind)==null?void 0:u.dataCode)===void 0||(e[n.props.dataBind.dataCode]===void 0&&(e[n.props.dataBind.dataCode]={controlId:t,fields:[],dataViewId:t}),e[n.props.dataBind.dataCode].fields.push({fieldCode:n.props.dataBind.fieldCode,controlId:n.id,dataBind:n.props.dataBind,dataViewId:[t]})):Object.keys(n.props.dataBind).map(i=>{const s=n.props.dataBind,f=s[i].dataCode;f!==void 0&&(e[f]===void 0&&(e[f]={controlId:n.id,fields:[],dataViewId:t}),e[f].fields.push({fieldCode:s[i].fieldCode,controlId:n.id,dataBind:s,dataViewId:[t]}))});else{if(n.props.datasourceBind.dataCode===""){He(`datasourceBind.dataCode is empty! maybe in preview mode, control:${n.id} type:${n.type}`);return}e[n.props.datasourceBind.dataCode]={controlId:n.id,fields:[],dataViewId:t};const i=n.id;Qe(n.props.headers,s=>{Oe(s.props.dataBind)?e[s.props.dataBind.dataCode].fields.push({fieldCode:s.props.dataBind.fieldCode,controlId:s.id,dataBind:s.props.dataBind,dataViewId:[t,i]}):Object.keys(s.props.dataBind).map(f=>{const l=s.props.dataBind,d=l[f].dataCode;e[d].fields.push({fieldCode:l[f].fieldCode,controlId:s.id,dataBind:l,dataViewId:[t,i]})})})}}function $0(e,t,n){n.controlType===Z.FORM?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===W.SUBTABLE&&(e[n.id]={dataBind:new A0({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},Qe(n.props.headers,r=>{var u,i;Object.assign((i=(u=e[n.id])==null?void 0:u.children)!=null?i:{},{[r.id]:{dataBind:r.props.dataBind}})}))}const Fr=["splice","push","shift","pop","unshift","reverse"],bn=Symbol("__engineProxy__"),Sn=Symbol("__engineTarget__"),yr=Symbol("__engineArrayBeforeSetCallbackFlag__"),wr=Symbol("__engineProxyThisKey__"),_e={type:"",args:[],callback:Br};function Br(){}k0();function L0(e,t,n,r,u){if(_e.type){_e.callback=u.bind(null,e,r);return}const i=Number(t);if(i>e.length){Ue(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${Fr.join(",")} for array operations`);return}if(!(Number.isNaN(i)&&t!=="length"))if(t==="length"){const f=n,l=e.length;if(f>e.length){Ue("Do not directly modify the length of the array data, please add new rows");return}return f===e.length?void 0:()=>u.call(null,e,r,"splice",[f,l-f])}else return i===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[i,1,n])}function O0(e,t,n){return{__engineProxy__:!0,get(r,u,i){return u===bn?!0:u===Sn?r:Array.isArray(r)&&u===yr?n:u===wr?e:Reflect.get(r,u,i)},set(r,u,i,s){var c;let f=i;const l=r[u],d=e===""?u:e+"."+u;function a(h){if(typeof h=="object"&&h!==null)return h[bn]!==!0?Vt(h,t,n,d):Vt(h[Sn],t,n,d)}f=(c=a(i))!=null?c:f;let o;if(Array.isArray(r)){const h=L0(r,u,i,e,t);o=Reflect.set(r,u,f,s),h&&h()}else{try{let h=f;if(f=n.call(null,r,d,f,l),h!==f){const p=a(f);p!==void 0&&(f=p)}}catch(h){return Ot(`${d} set error ${h}`),!0}o=Reflect.set(r,u,f,s),t.call(null,r,d,i,l)}return o}}}function Vt(e,t,n,r=""){if(Object.isFrozen(e))return e;for(let u in e){const i=r===""?u:r+"."+u,s=e[u];typeof s=="object"&&s!==null&&(e[u]=Vt(s,t,n,i))}return new Proxy(e,O0(r,t,n))}function br(e){const t=[];return e.forEach(n=>{t.push(n),n.controlType==="layout"&&t.push(...br(n.children))}),t}function Mn(e,t,n){if(t==="")return;const r=t.split(".");if(r.length===0)return;const u=r[0],i=r.slice(1),s=n[u]?n[u][0]:void 0;return i.length===0?s:i.reduce((f,l)=>{var o,c;const d=Number(l);if(Number.isNaN(d)&&f){const h=(f==null?void 0:f.children)?br(f.children):void 0,p=h==null?void 0:h.find(D=>D.id===l);return p||(f.controlType===Z.FORM?f:void 0)}else return(c=(o=f==null?void 0:f.children)==null?void 0:o[d])!=null?c:f},s)}function T0(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function P0(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function k0(){Fr.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[bn]){let u;const i=T0(e,n);if(i.length){const s=(r=this[yr])==null?void 0:r.call(this,this[Sn],this[wr],i),f=P0(e,n,s);_e.type=e,_e.args=f,u=t.apply(this,f)}else _e.type=e,_e.args=n,u=t.apply(this,n);return typeof _e.callback=="function"&&_e.callback(e,n,u),_e.type="",_e.args=[],_e.callback=Br,u}else return t.apply(this,n)}})}class j0{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return ke(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(i){Ot(`${u.id} Exception during calling action: ${i}`)}})}addAction(t,n){this.actionMap.has(t)&&Ue("duplicated action key");const r=new U0(t,n);this.actionMap.set(t,r)}}class U0{constructor(t,n){this.id="",this.id=t,this.func=n}}class V0{constructor(t){this._dataStore=new Map,this.executer=t}add(t,n){this._dataStore.set(t,n)}get(t){let n=this._dataStore.get(t);return be(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return ke(this,null,function*(){return this.executer===void 0?(Ot("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class We{}class bt extends We{validate(t){return ye(t)}transform(t){if(t==null)return"";if(!Le(t)&&!or(t))return String(t);if(i0(t))return JSON.stringify(t);throw`${t} is not a string`}}class Nn extends We{validate(t){return Tt(t)||t===""}transform(t){if(t==null)return"";const n=!Le(t)&&!or(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class q0 extends We{validate(t){return o0(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(Ft(t))return n(t);if(ye(t)&&ar(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class H0 extends We{validate(t){return a0(t)}transform(t){if(t==null)return[];function n(u){return u.map(i=>!i&&i!==0?"":Number(i)).filter(i=>i===""||!Number.isNaN(i))}if(Ft(t))return n(t);if(ye(t)&&ar(t))try{const u=JSON.parse(t);if(Ft(u))return n(u)}catch(u){}const r=Number(t);if(Number.isNaN(r))throw`${t} is not a number array`;return[r]}}class z0 extends We{validate(t){return Le(t)&&"amount"in t&&Tt(t.amount)&&"currency"in t&&ye(t.currency)}transform(t,n){if(t==null||t==="")return new mn({currency:n==null?void 0:n.currency});let r;if(Le(t)&&(r=new mn(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new mn(ne(ne({},n),u))}catch(u){}if(r){const u=new Nn,i=new bt;return u.validate(r.amount)||(r.amount=u.transform(r.amount)),i.validate(r.currency)||(r.currency=i.transform(r.currency)),r}throw`${t} is not a { amount: number, currency: string } object`}}class W0 extends We{validate(t){return Le(t)&&"min"in t&&ye(t.min)&&"max"in t&&ye(t.max)}transform(t,n){if(t==null||t==="")return new En;let r;if(Le(t)&&(r=new En(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new En(ne(ne({},n),u))}catch(u){}if(r){const u=new bt;return u.validate(r.min)||(r.min=u.transform(r.min)),u.validate(r.max)||(r.max=u.transform(r.max)),r}throw`${t} is not a { min: string, max: string } object`}}class Z0 extends We{validate(t){return Le(t)&&"result"in t&&Tt(t.result)&&"unit"in t&&ye(t.unit)}transform(t,n){if(t==null||t==="")return new Cn({unit:n==null?void 0:n.unit});let r;if(Le(t)&&(r=new Cn(ne(ne({},n),t))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new Cn(ne(ne({},n),u))}catch(u){}if(r){const u=new Nn,i=new bt;return u.validate(r.result)||(r.result=u.transform(r.result)),i.validate(r.unit)||(r.unit=i.transform(r.unit)),r}throw`${t} is not a { result: string, unit: string } object`}}class X0 extends We{validate(t){return!!Le(t)}transform(t,n){if(t==null||t==="")return new An;let r;if(Le(t)&&(r=new An(ne(ne({},n),pn.exports.camelizeKeys(t)))),ye(t)&&Pt(t))try{const u=JSON.parse(t);r=new An(ne(ne({},n),pn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new bt;return u.validate(r.city)||(r.city=u.transform(r.city)),u.validate(r.district)||(r.district=u.transform(r.district)),u.validate(r.province)||(r.province=u.transform(r.province)),r}throw`${t} is not a { city: string, district: string, province: string } object`}}class J0{static getValueChecker(t){let n;switch(t){case H.VARCHAR:case H.TIMESTAMP:case H.TEXT:case H.RELATION:case H.AUTO_NUMBER:n=new bt;break;case H.DECIMAL:n=new Nn;break;case H.EMPLOYEES:case H.DEPARTMENTS:case H.IMAGE:case H.FILE:case H.ARRAY:n=new q0;break;case H.MONEY:n=new z0;break;case H.TIMESCOPE:n=new W0;break;case H.CALC:n=new Z0;break;case H.DECIMAL_RANGE:n=new H0;break;case H.ADDRESS:n=new X0;break}return n}}function K0(e){if(["min","max","currency","unit"].includes(e))return H.VARCHAR;if(["result","amount"].includes(e))return H.DECIMAL}function Sr(e,t,n,r){var s;let u=(s=K0(t))!=null?s:e,i=J0.getValueChecker(u);if(!i||i.validate(n))return n;try{const f=i.transform(n,r);return f!==void 0?f:n}catch(f){throw`${t} ${f}`}}function G0(e,t,n){return Object.entries(e).reduce((r,[u,i])=>{const s=t[u];return r[u]=Sr(i,u,s,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let ot=null,St="";class Q0 extends lr{constructor(t){super();this.rawStore={},this.isMounted=!1,this.id=Ts(8),this.__pluginsApplied=!1,this.actionManager=new j0,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:i,language:s=Kn,debug:f=!1}=this.$options;dn.setLocale(s),this.debug=f,this.runtime=new wn({schema:r,beforeCreateInstance:u}),this.externalParams=i,this.store=new I0({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),n&&this.mount()}debugLog(...t){this.debug&&hn(...t)}use(t){return this.__pluginsApplied||this.__plugins.push(t),this}registerControl(...t){return this.runtime.register(...t),this}static register(...t){return wn.register(...t)}static judgeControlIsRegistered(t){return wn.staticRegisteredTypes.has(t.Runtime.controlType)}mount(){this.debugLog("engine\u7684mount\u65B9\u6CD5\u5F00\u59CB\u8C03\u7528");const{plugins:t=[]}=this.$options;this._handlerProxyState(),this.__plugins=t,this.applyPlugins(),this.setStates(this.getState()),this.debugLog("engine\u7684mount\u65B9\u6CD5\u8C03\u7528\u7ED3\u675F"),this.debug&&typeof window!="undefined"&&(window.engines[this.id]=this)}destroy(){this.debug&&typeof window!="undefined"&&delete window.engines[this.id]}_handlerProxyState(){this.store.state=Vt(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const i=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(!i)return r;if(this.assertInstance(i,W.SUBTABLE)){if(r===null)return[];const l=i.props.headers.reduce((a,o)=>{const c=o.children[0];return c&&c.controlType===Z.FORM&&(a[c.id]=c.fieldType),a},{}),d=this.getEmptyState(i.id);return r.map(a=>G0(l,a,d))}const s=n.split("."),f=s[s.length-1];try{return Sr(i.fieldType,f,r,u)}catch(l){throw He(`the id=${i.id}'s instance setState error, %o ${l}.`,r),l}}_proxyStateCallback(t,n,r,u,i){Array.isArray(t)?this._handlerArrayUpdate(t,n,r,u,i):this._handlerObjectUpdate(t,n,r,u)}_handlerArrayUpdate(t,n,r,u,i){const s=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(s.controlType!==Z.LIST)return;const f=c=>{const h=[];for(let p=0;p<c;p++){const D=this.listControlCreateRow(s,"subtable-row");D&&h.push(D)}return h},l=ot;let d=[],a=[],o=[];if(r&&u){switch(r){case"push":case"unshift":const c=u.length;d=f(c),a=u,s.children[r](...d),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const h=u.length-2,p=u.slice(2);d=f(h),a=p;const D=u[0],m=u[1];s.children[r](D,m,...d),this.runtime.getFlatInstances()}else s.children[r](...u),this.runtime.getFlatInstances();break;default:s.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?o=i:["pop","shift"].includes(r)&&(o=[i]),this.emit("list-change",{instance:s,value:this.getState(s.id),options:Object.assign({},l,{changed:d,data:a,deleted:o!=null?o:[],jsonValue:JSON.stringify(this.getState(s.id))})}),ot=null}}_handlerObjectUpdate(t,n,r,u){const i=Mn(this.runtime.flatInstances,n,this.runtime.instanceMap);if(!i)return;const s=this.getInstanceRowIndex(i),f=ot||{};if(i.controlType===Z.LIST){i.children.length=0;const l=r;let d=[];for(let a=0;a<l.length;a++){const o=this.listControlCreateRow(i,"subtable-row");o&&d.push(o)}i.children.push(...d),this.runtime.getFlatInstances(),this.emit("list-change",{instance:i,value:r,options:Jn(ne({},f),{changed:d,data:l,deleted:u!=null?u:[]})})}else this.emit("change",{instance:i,value:this.getState(i.id,s),rowIndex:s,options:Jn(ne({},f),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{St=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Ue(`${St} Plugin apply Error
2
+ ${r}`)}finally{St=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){const r=this.runtime.createControlInstance(n);if(!!r){if(r.controlType===Z.LAYOUT){const u=r,i=be(t.props.headers),s=this.createControl(i);u.children.push(...s)}return r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){var r=u=>super[u];return ke(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return He("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const l=[...this._jobTasks];yield Promise.all(l),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let i,s;this.isMounted||(s=new Promise(l=>{i=l}),this._jobTasks.push(s));const f=yield r("emit").call(this,t,n);return i&&s&&(i(),this._jobTasks.splice(this._jobTasks.indexOf(s),1)),f})}on(t,n){return St&&(n.applyingPluginName=St),super.on(t,n)}createControl(...t){return this.runtime.createControl(...t)}createInstance(t,n){return this.runtime.createControlInstance(t,n)}schemaEvent(t,n){this.emit(t,n)}updateInstanceProps(t,n,r,u){return this.setInstance(t,n,r,u)}getAllRules(t){var r,u;const n=this.runtime.allRules;return t===void 0?n:{rules:(r=n.rules[t])==null?void 0:r.fields,antdRules:(u=n.antdRules[t])==null?void 0:u.fields}}getRules(t){var n;return t===void 0?this.runtime.rules:(n=this.runtime.rules[t])==null?void 0:n.fields}getAntdRules(t){var n;return t===void 0?this.runtime.antdRules:(n=this.runtime.antdRules[t])==null?void 0:n.fields}getState(t,n){return t===void 0?this.store.state:this.store.getState(t,n)}getEmptyState(t){return be(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){ot=t}setState(t,n,r,u){ot=u,this.debugLog("[%o]: \u89E6\u53D1setState, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o, options=%o",t,n,r,u),this.store.setState(t,n,r),this.debugLog("[%o]: setState\u5B8C\u6210, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o",t,n,r),ot=null}setStates(t,n,r){let u=t;Object.keys(u).forEach(i=>{Object.entries(this.store.controlIdMapping).forEach(([s,f])=>{if(f.dataView===i){const l=u[i][s];l!==void 0&&this.setState(s,l,n,r)}else(s===i||f.children&&f.children[i])&&u[i]!==void 0&&this.setState(i,u[i],n,r)})})}getField(t,n,r){if(!n){const l=this.getDataBindMapping(t);if(l){const{controlId:d}=l;return this.getState(d)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:i,controlId:s}=u,f=this.getState(s,r);return Oe(i)?f:Object.entries(i).reduce((l,[d,a])=>a.fieldCode===n?l[d]:l,f)}getData(t){var u,i,s,f,l,d,a,o;if(!t)return;let n=this.getDataBindMapping(t),r=this.getControlIdMapping();if(n){const{controlId:c}=n,h=this.getField(t);if(Array.isArray(h))return h.map(D=>{var g,C,F,b,R,L,k;let m={};for(let I in D)if((F=(C=(g=r[c])==null?void 0:g.children[I])==null?void 0:C.dataBind)==null?void 0:F.fieldCode)m[(b=r[c].children[I])==null?void 0:b.dataBind.fieldCode]=D[I];else if((R=r[c])==null?void 0:R.children[I])for(let $ in D[I])m[(k=(L=r[c])==null?void 0:L.children[I])==null?void 0:k.dataBind[$].fieldCode]=D[I][$];return m});{let p={};for(let D in h)if((i=(u=r[D])==null?void 0:u.dataBind)==null?void 0:i.fieldCode)p[(s=r[D])==null?void 0:s.dataBind.fieldCode]=h[D];else if((l=(f=r[D])==null?void 0:f.dataBind)==null?void 0:l.dataCode)p[(d=r[D])==null?void 0:d.dataBind.dataCode]=h[D].map(m=>{var C,F,b;let g={};for(let R in m)if((C=r[D].children[R])==null?void 0:C.dataBind.fieldCode)g[(F=r[D].children[R])==null?void 0:F.dataBind.fieldCode]=m[R];else for(let L in m[R])g[(b=r[D].children[R])==null?void 0:b.dataBind[L].fieldCode]=m[R][L];return g});else if(r[D])for(let m in h[D])p[(o=(a=r[D])==null?void 0:a.dataBind[m])==null?void 0:o.fieldCode]=h[D][m];return p}}}setField(t,n,r,u,i){var d;const s=this.getDataBindMapping(t,n);if(!s)return;const{dataBind:f,controlId:l}=s;if(Oe(f))this.setState(l,r,u,i);else{const a=(d=be(this.getState(l,u)))!=null?d:this.getEmptyState(l),o=Object.entries(f).reduce((c,[h,p])=>(p.fieldCode===n&&(c[h]=r),c),a);this.setState(l,o,u,i)}}setFields(t,n,r,u){const i=this.getDataBindMapping(t);if(!i)return;let s=[];i.fields.forEach(f=>{var o;const{dataBind:l,controlId:d,fieldCode:a}=f;if(!s.includes(a)&&!!Object.hasOwnProperty.call(n,a))if(Oe(l))this.setState(d,n[a],r,u);else{const c=(o=be(this.getState(d,r)))!=null?o:this.getEmptyState(d),h=Object.entries(l).reduce((p,[D,m])=>{s.push(m.fieldCode);const g=n[m.fieldCode];return g!==void 0&&(p[D]=g),p},c);this.setState(f.controlId,h,r,u)}})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r)return;let u=[];const i={};return r.fields.forEach(s=>{const{dataBind:f,controlId:l,fieldCode:d}=s;if(!u.includes(d)&&!!Object.hasOwnProperty.call(n,d))if(Oe(f))i[l]=n[d];else{const a=this.getEmptyState(l);i[s.controlId]=Object.entries(f).reduce((o,[c,h])=>{u.push(h.fieldCode);const p=n[h.fieldCode];return p!==void 0&&(o[c]=p),o},a)}}),i}setData(t,n){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",t,n);let r={};Object.keys(t).map(u=>{var s,f;const i=t[u];if(Array.isArray(i))i.map(l=>{const d=this.getDataBindMapping(u);if(!d)return;let a=be(this.store.emptyState[d.dataViewId][d.controlId]),o=[];Object.keys(l).map(c=>{var p,D,m;if(o.includes(c))return;const h=(D=(p=this.store.dataBindMapping[u])==null?void 0:p.fields)==null?void 0:D.find(g=>g.fieldCode===c);if(h){if(Oe(h.dataBind)&&l[c]!==void 0)a[h.controlId]=l[c];else if(!Oe(h.dataBind)){let g=be((m=this.getEmptyState(h.controlId))!=null?m:{});Object.keys(h.dataBind).map(C=>{const F=h.dataBind[C];l[F.fieldCode]!==void 0&&(g[C]=l[F.fieldCode]),o.push(F.fieldCode)}),a[h.controlId]=g}}}),r[d.dataViewId]||(r[d.dataViewId]={}),r[d.dataViewId][d.controlId]||(r[d.dataViewId][d.controlId]=[]),r[d.dataViewId][d.controlId].push(a)});else if(i){let l=[];const d=be(this.store.emptyState);Object.keys(i).map(o=>{var h;if(l.includes(o))return;const c=this.getDataBindMapping(u,o);if(c){if(r[c.dataViewId[0]]||(r[c.dataViewId[0]]={}),Oe(c.dataBind)&&i[o]!==void 0)r[c.dataViewId[0]][c.controlId]=i[o]!==void 0?i[o]:d[c.dataViewId[0]][c.controlId];else if(!Oe(c.dataBind)){let p=(h=this.getEmptyState(c.controlId))!=null?h:{};Object.keys(c.dataBind).map(D=>{const m=c.dataBind[D];i[m.fieldCode]!==void 0&&(p[D]=i[m.fieldCode]),l.push(m.fieldCode)}),r[c.dataViewId[0]][c.controlId]=p}}});const a=this.getDataBindMapping(u);if(a){const o=(s=a==null?void 0:a.fields)==null?void 0:s.map(p=>p==null?void 0:p.controlId),c=this.getEmptyState(a==null?void 0:a.controlId),h=Object.keys((f=r==null?void 0:r[a==null?void 0:a.controlId])!=null?f:{});o==null||o.forEach(p=>{!h.includes(p)&&p!=="uid"&&(Object.keys(r).length&&r[a==null?void 0:a.controlId]?Object.assign(r[a==null?void 0:a.controlId],{[p]:c[p]}):Object.assign(r,{[a.controlId]:{[p]:c[p]}}))}),this.debugLog("engine setData\u65B9\u6CD5\u9ED8\u8BA4\u503C\u53CA\u8868\u5355\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r)}}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",r),this.setStates(r,void 0,n),this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\u5B8C\u6210\u3002")}getDataBind(t){return this.store.getDataBind(t)}getInstance(t,n){const r=this.getInstances(t,n===-1);if(r.length>0)return n!==void 0?n===-1?r[0]:r[n]:r[0]}getInstances(t,n=!1){var u;if(t===void 0)return this.runtime.flatInstances;const r=Array.from(this.runtime.instanceMap[t]||[]);if(n)if(r.length){const i=r[0];if(this.inList(i.id)!==void 0){const s=this.getInstanceInSubtableHeader(i);s&&r.unshift(s)}}else{const i=this.getControlIdMapping(),[s]=(u=Object.entries(i).find(([f,l])=>l.children&&t in l.children))!=null?u:[];if(s){const l=this.getInstance(s).props.headers.find(d=>d.children.find(a=>a.id===t));if(l){const d=l.children.find(a=>a.id===t);d&&r.unshift(d)}}}return r}setInstance(t,n,r,u){try{if(typeof t=="string"&&u===-1)this.getInstances(t,u===-1).map(s=>{s&&(this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",s.id,s,n,r),rr(s.props,n,r),this.schemaEvent("schema-change",{instance:s,props:n,value:r,rowIndex:u}))});else{let i;if(typeof t=="string"?i=this.getInstance(t,u):i=t,!i)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",i.id,i,n,r),rr(i.props,n,r),this.schemaEvent("schema-change",{instance:i,props:n,value:r,rowIndex:u})}}catch(i){throw i}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(t,n){if(!t&&!n)return this.store.dataBindMapping;const r=this.store.dataBindMapping[t];if(!r){He(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(i=>i.fieldCode===n);if(!u){He(`No corresponding fieldCode=${n} was found`);return}return u}getAction(){return this.actionManager}initDataManager(t){this.dataManager=new V0(t)}getDataManager(){return this.dataManager}assertInstance(t,n){return ye(n)?t.type===n:n.includes(t.type)}getInstanceRowIndex(t){let n;if(this.assertInstance(t,W.SUBTABLE_COLUMN))n=-1;else{const r=this.runtime.instanceMap[t.id];if(Object.prototype.toString.call(r)==="[object Array]"){const u=r.findIndex(i=>i===t);u>-1&&(n=u)}}return n}getInstanceParentControl(t,n){if(!!t.parent)return this.assertInstance(t.parent,n)?t.parent:this.getInstanceParentControl(t.parent,n)}getInstanceInSubtableHeader(t){const n=this.getInstanceRowIndex(t);if(n===void 0)return;if(n===-1)return t;const r=this.assertInstance(t,W.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,W.SUBTABLE_COLUMN);if(!r)return;const i=this.getInstanceParentControl(t,W.SUBTABLE).props.headers.find(s=>s.id===r.id);if(!!i)return i.children.find(s=>s.id===t.id)}setControlConfig(...t){return this.runtime.registerControlConfig(...t)}getControlConfig(t){return this.runtime.getControlConfig(t)}inList(t){const n=this.store.controlIdMapping;let r;return Object.keys(n).some(u=>{var s,f;const i=(f=(s=n[u])==null?void 0:s.children)==null?void 0:f.hasOwnProperty(t);return i===!0&&(r=u),i}),r}}console.log("a");class Y0{}class ec{constructor(t,n){this.config=t,this.env=n}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=Mr(n,t,this.env);if(!r)return;const u=t.getAction();for(let[i,s]of Object.entries(r.funcMap))u.addAction(i,s)}}function Mr(e,t,n){if(!e.module||!e.module.compiled)return;const r=e.module.compiled,u={exports:{ctx:t,utils:t.getAction().actionUtils,env:n}};try{new Function("module","exports",r).call(u,u,u.exports)}catch(f){Ue(f.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Ue("fail to parse the module")}const i={},s={};for(const[f,l]of Object.entries(u.exports))typeof l=="function"?i[f]=l:s[f]=l;return{funcMap:i,variables:s}}const tc={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class nc{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(tc).forEach(([n,r])=>{t.on(n,u=>ke(this,null,function*(){const i=yield this.callLifecycleEvent(r,u);return i.includes(!1)?!1:i}))})}callLifecycleEvent(t,n){return ke(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(i=>ke(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})))})}}class rc{constructor(t){this.config=t}apply(t){this.engine=t,hr.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>ke(this,null,function*(){if(!(t==="change"&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return ke(this,null,function*(){const r=this.config[n.instance.id];if(!r||!Array.isArray(r[t]))return[];const u=yield Promise.all(r[t].map(i=>ke(this,null,function*(){return yield this.engine.getAction().execAction(i,n)})));return u.includes(!1)?!1:u})}}function In(){return In=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},In.apply(this,arguments)}var Nr={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function de(e){return typeof e=="number"}function Ze(e){return!e||typeof e!="object"||typeof e.constructor!="function"?!1:e.isBigNumber===!0&&typeof e.constructor.prototype=="object"&&e.constructor.prototype.isBigNumber===!0||typeof e.constructor.isDecimal=="function"&&e.constructor.isDecimal(e)===!0}function Ir(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function _r(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function Rr(e){return e&&e.constructor.prototype.isUnit===!0||!1}function qt(e){return typeof e=="string"}var we=Array.isArray;function Mt(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function _n(e){return Array.isArray(e)||Mt(e)}function uc(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ic(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function oc(e){return e&&e.constructor.prototype.isRange===!0||!1}function xr(e){return e&&e.constructor.prototype.isIndex===!0||!1}function ac(e){return typeof e=="boolean"}function sc(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function cc(e){return e&&e.constructor.prototype.isHelp===!0||!1}function lc(e){return typeof e=="function"}function fc(e){return e instanceof Date}function hc(e){return e instanceof RegExp}function dc(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Ir(e)&&!_r(e))}function pc(e){return e===null}function Dc(e){return e===void 0}function gc(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function vc(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function mc(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ec(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ac(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Cc(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Fc(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function yc(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function wc(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bc(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function bc(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sc(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mc(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nc(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ic(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function _c(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Rc(e){return e&&e.constructor.prototype.isChain===!0||!1}function Rn(e){var t=typeof e;return t==="object"?e===null?"null":Ze(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function Ye(e){var t=typeof e;if(t==="number"||t==="string"||t==="boolean"||e===null||e===void 0)return e;if(typeof e.clone=="function")return e.clone();if(Array.isArray(e))return e.map(function(n){return Ye(n)});if(e instanceof Date)return new Date(e.valueOf());if(Ze(e))return e;if(e instanceof RegExp)throw new TypeError("Cannot clone "+e);return xc(e,Ye)}function xc(e,t){var n={};for(var r in e)Ht(e,r)&&(n[r]=t(e[r]));return n}function xn(e,t){var n,r,u;if(Array.isArray(e)){if(!Array.isArray(t)||e.length!==t.length)return!1;for(r=0,u=e.length;r<u;r++)if(!xn(e[r],t[r]))return!1;return!0}else{if(typeof e=="function")return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(n in e)if(!(n in t)||!xn(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function Ht(e,t){return e&&Object.hasOwnProperty.call(e,t)}function $c(e,t){for(var n={},r=0;r<t.length;r++){var u=t[r],i=e[u];i!==void 0&&(n[u]=i)}return n}var Lc=["Matrix","Array"],Oc=["number","BigNumber","Fraction"],$r=function(t){if(t)throw new Error(`The global config is readonly.
3
3
  Please create a mathjs instance if you want to change the default configuration.
4
4
  Example:
5
5
 
6
6
  import { create, all } from 'mathjs';
7
7
  const mathjs = create(all);
8
8
  mathjs.config({ number: 'BigNumber' });
9
- `);return Object.freeze(Nr)};In($r,Nr,{MATRIX_OPTIONS:Lc,NUMBER_OPTIONS:Tc});function Re(e,t){var n=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Oc(e))||t&&e&&typeof e.length=="number"){n&&(e=n);var r=0,u=function(){};return{s:u,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(d){throw d},f:u}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
10
- In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,s=!1,f;return{s:function(){n=n.call(e)},n:function(){var d=n.next();return i=d.done,d},e:function(d){s=!0,f=d},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(s)throw f}}}}function Oc(e,t){if(!!e){if(typeof e=="string")return Lr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Lr(e,t)}}function Lr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function at(e){return at=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},at(e)}function Tr(){return!0}function Se(){return!1}function st(){}var Or="Argument is not a typed-function.";function Pr(){function e(v){return at(v)==="object"&&v!==null&&v.constructor===Object}var t=[{name:"number",test:function(E){return typeof E=="number"}},{name:"string",test:function(E){return typeof E=="string"}},{name:"boolean",test:function(E){return typeof E=="boolean"}},{name:"Function",test:function(E){return typeof E=="function"}},{name:"Array",test:Array.isArray},{name:"Date",test:function(E){return E instanceof Date}},{name:"RegExp",test:function(E){return E instanceof RegExp}},{name:"Object",test:e},{name:"null",test:function(E){return E===null}},{name:"undefined",test:function(E){return E===void 0}}],n={name:"any",test:Tr,isAny:!0},r,u,i=0,s={createCount:0};function f(v){var E=r.get(v);if(E)return E;var A='Unknown type "'+v+'"',y=v.toLowerCase(),S,M=Re(u),_;try{for(M.s();!(_=M.n()).done;)if(S=_.value,S.toLowerCase()===y){A+='. Did you mean "'+S+'" ?';break}}catch(B){M.e(B)}finally{M.f()}throw new TypeError(A)}function l(v){for(var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"any",A=E?f(E).index:u.length,y=[],S=0;S<v.length;++S){if(!v[S]||typeof v[S].name!="string"||typeof v[S].test!="function")throw new TypeError("Object with properties {name: string, test: function} expected");var M=v[S].name;if(r.has(M))throw new TypeError('Duplicate type name "'+M+'"');y.push(M),r.set(M,{name:M,test:v[S].test,isAny:v[S].isAny,index:A+S,conversionsTo:[]})}var _=u.slice(A);u=u.slice(0,A).concat(y).concat(_);for(var B=A+y.length;B<u.length;++B)r.get(u[B]).index=B}function d(){r=new Map,u=[],i=0,l([n],!1)}d(),l(t);function a(){var v,E=Re(u),A;try{for(E.s();!(A=E.n()).done;)v=A.value,r.get(v).conversionsTo=[]}catch(y){E.e(y)}finally{E.f()}i=0}function o(v){var E=u.filter(function(A){var y=r.get(A);return!y.isAny&&y.test(v)});return E.length?E:["any"]}function c(v){return v&&typeof v=="function"&&"_typedFunctionData"in v}function h(v,E,A){if(!c(v))throw new TypeError(Or);var y=A&&A.exact,S=Array.isArray(E)?E.join(","):E,M=b(S),_=m(M);if(!y||_ in v.signatures){var B=v._typedFunctionData.signatureMap.get(_);if(B)return B}var N=M.length,O;if(y){O=[];var U;for(U in v.signatures)O.push(v._typedFunctionData.signatureMap.get(U))}else O=v._typedFunctionData.signatures;for(var x=0;x<N;++x){var De=M[x],se=[],fe=void 0,te=Re(O),Ae;try{for(te.s();!(Ae=te.n()).done;){fe=Ae.value;var ue=I(fe.params,x);if(!(!ue||De.restParam&&!ue.restParam)){if(!ue.hasAny){var Ne=function(){var Ce=F(ue);if(De.types.some(function(nt){return!Ce.has(nt.name)}))return"continue"}();if(Ne==="continue")continue}se.push(fe)}}}catch(Ce){te.e(Ce)}finally{te.f()}if(O=se,O.length===0)break}var ge,ve=Re(O),tt;try{for(ve.s();!(tt=ve.n()).done;)if(ge=tt.value,ge.params.length<=N)return ge}catch(Ce){ve.e(Ce)}finally{ve.f()}throw new TypeError("Signature not found (signature: "+(v.name||"unnamed")+"("+m(M,", ")+"))")}function p(v,E,A){return h(v,E,A).implementation}function D(v,E){var A=f(E);if(A.test(v))return v;var y=A.conversionsTo;if(y.length===0)throw new Error("There are no conversions to "+E+" defined.");for(var S=0;S<y.length;S++){var M=f(y[S].from);if(M.test(v))return y[S].convert(v)}throw new Error("Cannot convert "+v+" to "+E)}function m(v){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:",";return v.map(function(A){return A.name}).join(E)}function g(v){var E=v.indexOf("...")===0,A=E?v.length>3?v.slice(3):"any":v,y=A.split("|").map(function(B){return f(B.trim())}),S=!1,M=E?"...":"",_=y.map(function(B){return S=B.isAny||S,M+=B.name+"|",{name:B.name,typeIndex:B.index,test:B.test,isAny:B.isAny,conversion:null,conversionIndex:-1}});return{types:_,name:M.slice(0,-1),hasAny:S,hasConversion:!1,restParam:E}}function C(v){var E=v.types.map(function(_){return _.name}),A=qf(E),y=v.hasAny,S=v.name,M=A.map(function(_){var B=f(_.from);return y=B.isAny||y,S+="|"+_.from,{name:_.from,typeIndex:B.index,test:B.test,isAny:B.isAny,conversion:_,conversionIndex:_.index}});return{types:v.types.concat(M),name:S,hasAny:y,hasConversion:M.length>0,restParam:v.restParam}}function F(v){return v.typeSet||(v.typeSet=new Set,v.types.forEach(function(E){return v.typeSet.add(E.name)})),v.typeSet}function b(v){var E=[];if(typeof v!="string")throw new TypeError("Signatures must be strings");var A=v.trim();if(A==="")return E;for(var y=A.split(","),S=0;S<y.length;++S){var M=g(y[S].trim());if(M.restParam&&S!==y.length-1)throw new SyntaxError('Unexpected rest parameter "'+y[S]+'": only allowed for the last parameter');if(M.types.length===0)return null;E.push(M)}return E}function R(v){var E=Dt(v);return E?E.restParam:!1}function L(v){if(!v||v.types.length===0)return Tr;if(v.types.length===1)return f(v.types[0].name).test;if(v.types.length===2){var E=f(v.types[0].name).test,A=f(v.types[1].name).test;return function(M){return E(M)||A(M)}}else{var y=v.types.map(function(S){return f(S.name).test});return function(M){for(var _=0;_<y.length;_++)if(y[_](M))return!0;return!1}}}function k(v){var E,A,y;if(R(v)){E=Nu(v).map(L);var S=E.length,M=L(Dt(v)),_=function(N){for(var O=S;O<N.length;O++)if(!M(N[O]))return!1;return!0};return function(N){for(var O=0;O<E.length;O++)if(!E[O](N[O]))return!1;return _(N)&&N.length>=S+1}}else return v.length===0?function(N){return N.length===0}:v.length===1?(A=L(v[0]),function(N){return A(N[0])&&N.length===1}):v.length===2?(A=L(v[0]),y=L(v[1]),function(N){return A(N[0])&&y(N[1])&&N.length===2}):(E=v.map(L),function(N){for(var O=0;O<E.length;O++)if(!E[O](N[O]))return!1;return N.length===E.length})}function I(v,E){return E<v.length?v[E]:R(v)?Dt(v):null}function $(v,E){var A=I(v,E);return A?F(A):new Set}function J(v){return v.conversion===null||v.conversion===void 0}function V(v,E){var A=new Set;return v.forEach(function(y){var S=$(y.params,E),M,_=Re(S),B;try{for(_.s();!(B=_.n()).done;)M=B.value,A.add(M)}catch(N){_.e(N)}finally{_.f()}}),A.has("any")?["any"]:Array.from(A)}function G(v,E,A){var y,S,M=v||"unnamed",_=A,B,N=function(){var te=[];if(_.forEach(function(ue){var Ne=I(ue.params,B),ge=L(Ne);(B<ue.params.length||R(ue.params))&&ge(E[B])&&te.push(ue)}),te.length===0){if(S=V(_,B),S.length>0){var Ae=o(E[B]);return y=new TypeError("Unexpected type of argument in function "+M+" (expected: "+S.join(" or ")+", actual: "+Ae.join(" | ")+", index: "+B+")"),y.data={category:"wrongType",fn:M,index:B,actual:Ae,expected:S},{v:y}}}else _=te};for(B=0;B<E.length;B++){var O=N();if(at(O)==="object")return O.v}var U=_.map(function(fe){return R(fe.params)?1/0:fe.params.length});if(E.length<Math.min.apply(null,U))return S=V(_,B),y=new TypeError("Too few arguments in function "+M+" (expected: "+S.join(" or ")+", index: "+E.length+")"),y.data={category:"tooFewArgs",fn:M,index:E.length,expected:S},y;var x=Math.max.apply(null,U);if(E.length>x)return y=new TypeError("Too many arguments in function "+M+" (expected: "+x+", actual: "+E.length+")"),y.data={category:"tooManyArgs",fn:M,index:E.length,expectedLength:x},y;for(var De=[],se=0;se<E.length;++se)De.push(o(E[se]).join("|"));return y=new TypeError('Arguments of type "'+De.join(", ")+'" do not match any of the defined signatures of function '+M+"."),y.data={category:"mismatch",actual:De},y}function Q(v){for(var E=u.length+1,A=0;A<v.types.length;A++)J(v.types[A])&&(E=Math.min(E,v.types[A].typeIndex));return E}function pe(v){for(var E=i+1,A=0;A<v.types.length;A++)J(v.types[A])||(E=Math.min(E,v.types[A].conversionIndex));return E}function K(v,E){if(v.hasAny){if(!E.hasAny)return 1}else if(E.hasAny)return-1;if(v.restParam){if(!E.restParam)return 1}else if(E.restParam)return-1;if(v.hasConversion){if(!E.hasConversion)return 1}else if(E.hasConversion)return-1;var A=Q(v)-Q(E);if(A<0)return-1;if(A>0)return 1;var y=pe(v)-pe(E);return y<0?-1:y>0?1:0}function q(v,E){var A=v.params,y=E.params,S=Dt(A),M=Dt(y),_=R(A),B=R(y);if(_&&S.hasAny){if(!B||!M.hasAny)return 1}else if(B&&M.hasAny)return-1;var N=0,O=0,U,x=Re(A),De;try{for(x.s();!(De=x.n()).done;)U=De.value,U.hasAny&&++N,U.hasConversion&&++O}catch(_t){x.e(_t)}finally{x.f()}var se=0,fe=0,te=Re(y),Ae;try{for(te.s();!(Ae=te.n()).done;)U=Ae.value,U.hasAny&&++se,U.hasConversion&&++fe}catch(_t){te.e(_t)}finally{te.f()}if(N!==se)return N-se;if(_&&S.hasConversion){if(!B||!M.hasConversion)return 1}else if(B&&M.hasConversion)return-1;if(O!==fe)return O-fe;if(_){if(!B)return 1}else if(B)return-1;var ue=(A.length-y.length)*(_?-1:1);if(ue!==0)return ue;for(var Ne=[],ge=0,ve=0;ve<A.length;++ve){var tt=K(A[ve],y[ve]);Ne.push(tt),ge+=tt}if(ge!==0)return ge;for(var Ce,nt=0,nn=Ne;nt<nn.length;nt++)if(Ce=nn[nt],Ce!==0)return Ce;return 0}function qf(v){if(v.length===0)return[];var E=v.map(f);v.length>1&&E.sort(function(N,O){return N.index-O.index});var A=E[0].conversionsTo;if(v.length===1)return A;A=A.concat([]);for(var y=new Set(v),S=1;S<E.length;++S){var M=void 0,_=Re(E[S].conversionsTo),B;try{for(_.s();!(B=_.n()).done;)M=B.value,y.has(M.from)||(A.push(M),y.add(M.from))}catch(N){_.e(N)}finally{_.f()}}return A}function Hf(v,E){var A=E;if(v.some(function(B){return B.hasConversion})){var y=R(v),S=v.map(zf);A=function(){for(var N=[],O=y?arguments.length-1:arguments.length,U=0;U<O;U++)N[U]=S[U](arguments[U]);return y&&(N[O]=arguments[O].map(S[O])),E.apply(this,N)}}var M=A;if(R(v)){var _=v.length-1;M=function(){return A.apply(this,Xn(arguments,0,_).concat([Xn(arguments,_)]))}}return M}function zf(v){var E,A,y,S,M=[],_=[];switch(v.types.forEach(function(B){B.conversion&&(M.push(f(B.conversion.from).test),_.push(B.conversion.convert))}),_.length){case 0:return function(N){return N};case 1:return E=M[0],y=_[0],function(N){return E(N)?y(N):N};case 2:return E=M[0],A=M[1],y=_[0],S=_[1],function(N){return E(N)?y(N):A(N)?S(N):N};default:return function(N){for(var O=0;O<_.length;O++)if(M[O](N))return _[O](N);return N}}}function Wf(v){function E(A,y,S){if(y<A.length){var M=A[y],_=[];if(M.restParam){var B=M.types.filter(J);B.length<M.types.length&&_.push({types:B,name:"..."+B.map(function(N){return N.name}).join("|"),hasAny:B.some(function(N){return N.isAny}),hasConversion:!1,restParam:!0}),_.push(M)}else _=M.types.map(function(N){return{types:[N],name:N.name,hasAny:N.isAny,hasConversion:N.conversion,restParam:!1}});return eh(_,function(N){return E(A,y+1,S.concat([N]))})}else return[S]}return E(v,0,[])}function Zf(v,E){for(var A=Math.max(v.length,E.length),y=0;y<A;y++){var S=$(v,y),M=$(E,y),_=!1,B=void 0,N=Re(M),O;try{for(N.s();!(O=N.n()).done;)if(B=O.value,S.has(B)){_=!0;break}}catch(fe){N.e(fe)}finally{N.f()}if(!_)return!1}var U=v.length,x=E.length,De=R(v),se=R(E);return De?se?U===x:x>=U:se?U>=x:U===x}function Xf(v){return v.map(function(E){return xu(E)?_u(E.referToSelf.callback):Ru(E)?Iu(E.referTo.references,E.referTo.callback):E})}function Jf(v,E,A){var y=[],S,M=Re(v),_;try{for(M.s();!(_=M.n()).done;){S=_.value;var B=A[S];if(typeof B!="number")throw new TypeError('No definition for referenced signature "'+S+'"');if(B=E[B],typeof B!="function")return!1;y.push(B)}}catch(N){M.e(N)}finally{M.f()}return y}function Kf(v,E,A){for(var y=Xf(v),S=new Array(y.length).fill(!1),M=!0;M;){M=!1;for(var _=!0,B=0;B<y.length;++B)if(!S[B]){var N=y[B];if(xu(N))y[B]=N.referToSelf.callback(A),y[B].referToSelf=N.referToSelf,S[B]=!0,_=!1;else if(Ru(N)){var O=Jf(N.referTo.references,y,E);O?(y[B]=N.referTo.callback.apply(this,O),y[B].referTo=N.referTo,S[B]=!0,_=!1):M=!0}}if(_&&M)throw new SyntaxError("Circular reference detected in resolving typed.referTo")}return y}function Gf(v){var E=/\bthis(\(|\.signatures\b)/;Object.keys(v).forEach(function(A){var y=v[A];if(E.test(y.toString()))throw new SyntaxError("Using `this` to self-reference a function is deprecated since typed-function@3. Use typed.referTo and typed.referToSelf instead.")})}function Qf(v,E){if(s.createCount++,Object.keys(E).length===0)throw new SyntaxError("No signatures provided");s.warnAgainstDeprecatedThis&&Gf(E);var A=[],y=[],S={},M=[],_,B=function(){if(!Object.prototype.hasOwnProperty.call(E,_))return"continue";var ce=b(_);if(!ce)return"continue";A.forEach(function(gt){if(Zf(gt,ce))throw new TypeError('Conflicting signatures "'+m(gt)+'" and "'+m(ce)+'".')}),A.push(ce);var Tu=y.length;y.push(E[_]);var _h=ce.map(C),rn=void 0,un=Re(Wf(_h)),Ou;try{for(un.s();!(Ou=un.n()).done;){rn=Ou.value;var Pu=m(rn);M.push({params:rn,name:Pu,fn:Tu}),rn.every(function(gt){return!gt.hasConversion})&&(S[Pu]=Tu)}}catch(gt){un.e(gt)}finally{un.f()}};for(_ in E)var N=B();M.sort(q);var O=Kf(y,S,xt),U;for(U in S)Object.prototype.hasOwnProperty.call(S,U)&&(S[U]=O[S[U]]);for(var x=[],De=new Map,se=0,fe=M;se<fe.length;se++)U=fe[se],De.has(U.name)||(U.fn=O[U.fn],x.push(U),De.set(U.name,U));for(var te=x[0]&&x[0].params.length<=2&&!R(x[0].params),Ae=x[1]&&x[1].params.length<=2&&!R(x[1].params),ue=x[2]&&x[2].params.length<=2&&!R(x[2].params),Ne=x[3]&&x[3].params.length<=2&&!R(x[3].params),ge=x[4]&&x[4].params.length<=2&&!R(x[4].params),ve=x[5]&&x[5].params.length<=2&&!R(x[5].params),tt=te&&Ae&&ue&&Ne&&ge&&ve,Ce=0;Ce<x.length;++Ce)x[Ce].test=k(x[Ce].params);for(var nt=te?L(x[0].params[0]):Se,nn=Ae?L(x[1].params[0]):Se,_t=ue?L(x[2].params[0]):Se,ih=Ne?L(x[3].params[0]):Se,oh=ge?L(x[4].params[0]):Se,ah=ve?L(x[5].params[0]):Se,sh=te?L(x[0].params[1]):Se,ch=Ae?L(x[1].params[1]):Se,lh=ue?L(x[2].params[1]):Se,fh=Ne?L(x[3].params[1]):Se,hh=ge?L(x[4].params[1]):Se,dh=ve?L(x[5].params[1]):Se,Rt=0;Rt<x.length;++Rt)x[Rt].implementation=Hf(x[Rt].params,x[Rt].fn);var ph=te?x[0].implementation:st,Dh=Ae?x[1].implementation:st,gh=ue?x[2].implementation:st,vh=Ne?x[3].implementation:st,mh=ge?x[4].implementation:st,Eh=ve?x[5].implementation:st,Ah=te?x[0].params.length:-1,Ch=Ae?x[1].params.length:-1,Fh=ue?x[2].params.length:-1,yh=Ne?x[3].params.length:-1,wh=ge?x[4].params.length:-1,Bh=ve?x[5].params.length:-1,bh=tt?6:0,Sh=x.length,Mh=x.map(function(Be){return Be.test}),Nh=x.map(function(Be){return Be.implementation}),Ih=function(){for(var ce=bh;ce<Sh;ce++)if(Mh[ce](arguments))return Nh[ce].apply(this,arguments);return s.onMismatch(v,arguments,x)};function xt(Be,ce){return arguments.length===Ah&&nt(Be)&&sh(ce)?ph.apply(this,arguments):arguments.length===Ch&&nn(Be)&&ch(ce)?Dh.apply(this,arguments):arguments.length===Fh&&_t(Be)&&lh(ce)?gh.apply(this,arguments):arguments.length===yh&&ih(Be)&&fh(ce)?vh.apply(this,arguments):arguments.length===wh&&oh(Be)&&hh(ce)?mh.apply(this,arguments):arguments.length===Bh&&ah(Be)&&dh(ce)?Eh.apply(this,arguments):Ih.apply(this,arguments)}try{Object.defineProperty(xt,"name",{value:v})}catch(Be){}return xt.signatures=S,xt._typedFunctionData={signatures:x,signatureMap:De},xt}function Mu(v,E,A){throw G(v,E,A)}function Nu(v){return Xn(v,0,v.length-1)}function Dt(v){return v[v.length-1]}function Xn(v,E,A){return Array.prototype.slice.call(v,E,A)}function Yf(v,E){for(var A=0;A<v.length;A++)if(E(v[A]))return v[A]}function eh(v,E){return Array.prototype.concat.apply([],v.map(E))}function th(){var v=Nu(arguments).map(function(A){return m(b(A))}),E=Dt(arguments);if(typeof E!="function")throw new TypeError("Callback function expected as last argument");return Iu(v,E)}function Iu(v,E){return{referTo:{references:v,callback:E}}}function _u(v){if(typeof v!="function")throw new TypeError("Callback function expected as first argument");return{referToSelf:{callback:v}}}function Ru(v){return v&&at(v.referTo)==="object"&&Array.isArray(v.referTo.references)&&typeof v.referTo.callback=="function"}function xu(v){return v&&at(v.referToSelf)==="object"&&typeof v.referToSelf.callback=="function"}function $u(v,E){if(!v)return E;if(E&&E!==v){var A=new Error("Function names do not match (expected: "+v+", actual: "+E+")");throw A.data={actual:E,expected:v},A}return v}function nh(v){var E;for(var A in v)Object.prototype.hasOwnProperty.call(v,A)&&(c(v[A])||typeof v[A].signature=="string")&&(E=$u(E,v[A].name));return E}function rh(v,E){var A;for(A in E)if(Object.prototype.hasOwnProperty.call(E,A)){if(A in v&&E[A]!==v[A]){var y=new Error('Signature "'+A+'" is defined twice');throw y.data={signature:A,sourceFunction:E[A],destFunction:v[A]},y}v[A]=E[A]}}var uh=s;s=function(E){for(var A=typeof E=="string",y=A?1:0,S=A?E:"",M={},_=y;_<arguments.length;++_){var B=arguments[_],N={},O=void 0;if(typeof B=="function"?(O=B.name,typeof B.signature=="string"?N[B.signature]=B:c(B)&&(N=B.signatures)):e(B)&&(N=B,A||(O=nh(B))),Object.keys(N).length===0){var U=new TypeError("Argument to 'typed' at index "+_+" is not a (typed) function, nor an object with signatures as keys and functions as values.");throw U.data={index:_,argument:B},U}A||(S=$u(S,O)),rh(M,N)}return Qf(S||"",M)},s.create=Pr,s.createCount=uh.createCount,s.onMismatch=Mu,s.throwMismatchError=Mu,s.createError=G,s.clear=d,s.clearConversions=a,s.addTypes=l,s._findType=f,s.referTo=th,s.referToSelf=_u,s.convert=D,s.findSignature=h,s.find=p,s.isTypedFunction=c,s.warnAgainstDeprecatedThis=!0,s.addType=function(v,E){var A="any";E!==!1&&r.has("Object")&&(A="Object"),s.addTypes([v],A)};function Lu(v){if(!v||typeof v.from!="string"||typeof v.to!="string"||typeof v.convert!="function")throw new TypeError("Object with properties {from: string, to: string, convert: function} expected");if(v.to===v.from)throw new SyntaxError('Illegal to define conversion from "'+v.from+'" to itself.')}return s.addConversion=function(v){Lu(v);var E=f(v.to);if(E.conversionsTo.every(function(A){return A.from!==v.from}))E.conversionsTo.push({from:v.from,convert:v.convert,index:i++});else throw new Error('There is already a conversion from "'+v.from+'" to "'+E.name+'"')},s.addConversions=function(v){v.forEach(s.addConversion)},s.removeConversion=function(v){Lu(v);var E=f(v.to),A=Yf(E.conversionsTo,function(S){return S.from===v.from});if(!A)throw new Error("Attempt to remove nonexistent conversion from "+v.from+" to "+v.to);if(A.convert!==v.convert)throw new Error("Conversion to remove does not match existing conversion");var y=E.conversionsTo.indexOf(A);E.conversionsTo.splice(y,1)},s.resolve=function(v,E){if(!c(v))throw new TypeError(Or);for(var A=v._typedFunctionData.signatures,y=0;y<A.length;++y)if(A[y].test(E))return A[y];return null},s}var kr=Pr();function Oe(e){return typeof e=="boolean"?!0:isFinite(e)?e===Math.round(e):!1}function $n(e,t,n){var r={2:"0b",8:"0o",16:"0x"},u=r[t],i="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!Oe(n))throw new Error("size must be an integer");if(e>on(2,n-1)-1||e<-on(2,n-1))throw new Error("Value must be in range [-2^".concat(n-1,", 2^").concat(n-1,"-1]"));if(!Oe(e))throw new Error("Value must be an integer");e<0&&(e=e+on(2,n)),i="i".concat(n)}var s="";return e<0&&(e=-e,s="-"),"".concat(s).concat(u).concat(e.toString(t)).concat(i)}function Ln(e,t){if(typeof t=="function")return t(e);if(e===1/0)return"Infinity";if(e===-1/0)return"-Infinity";if(isNaN(e))return"NaN";var n="auto",r,u;if(t&&(t.notation&&(n=t.notation),de(t)?r=t:de(t.precision)&&(r=t.precision),t.wordSize&&(u=t.wordSize,typeof u!="number")))throw new Error('Option "wordSize" must be a number');switch(n){case"fixed":return kc(e,r);case"exponential":return jr(e,r);case"engineering":return Pc(e,r);case"bin":return $n(e,2,u);case"oct":return $n(e,8,u);case"hex":return $n(e,16,u);case"auto":return jc(e,r,t&&t).replace(/((\.\d*?)(0+))($|e)/,function(){var i=arguments[2],s=arguments[4];return i!=="."?i+s:s});default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function zt(e){var t=String(e).toLowerCase().match(/^(-?)(\d+\.?\d*)(e([+-]?\d+))?$/);if(!t)throw new SyntaxError("Invalid number "+e);var n=t[1],r=t[2],u=parseFloat(t[4]||"0"),i=r.indexOf(".");u+=i!==-1?i-1:r.length-1;var s=r.replace(".","").replace(/^0*/,function(f){return u-=f.length,""}).replace(/0*$/,"").split("").map(function(f){return parseInt(f)});return s.length===0&&(s.push(0),u++),{sign:n,coefficients:s,exponent:u}}function Pc(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=Wt(n,t),u=r.exponent,i=r.coefficients,s=u%3===0?u:u<0?u-3-u%3:u-u%3;if(de(t))for(;t>i.length||u-s+1>i.length;)i.push(0);else for(var f=Math.abs(u-s)-(i.length-1),l=0;l<f;l++)i.push(0);for(var d=Math.abs(u-s),a=1;d>0;)a++,d--;var o=i.slice(a).join(""),c=de(t)&&o.length||o.match(/[1-9]/)?"."+o:"",h=i.slice(0,a).join("")+c+"e"+(u>=0?"+":"")+s.toString();return r.sign+h}function kc(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=typeof t=="number"?Wt(n,n.exponent+1+t):n,u=r.coefficients,i=r.exponent+1,s=i+(t||0);return u.length<s&&(u=u.concat(ct(s-u.length))),i<0&&(u=ct(-i+1).concat(u),i=1),i<u.length&&u.splice(i,0,i===0?"0.":"."),r.sign+u.join("")}function jr(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=t?Wt(n,t):n,u=r.coefficients,i=r.exponent;u.length<t&&(u=u.concat(ct(t-u.length)));var s=u.shift();return r.sign+s+(u.length>0?"."+u.join(""):"")+"e"+(i>=0?"+":"")+i}function jc(e,t,n){if(isNaN(e)||!isFinite(e))return String(e);var r=n&&n.lowerExp!==void 0?n.lowerExp:-3,u=n&&n.upperExp!==void 0?n.upperExp:5,i=zt(e),s=t?Wt(i,t):i;if(s.exponent<r||s.exponent>=u)return jr(e,t);var f=s.coefficients,l=s.exponent;f.length<t&&(f=f.concat(ct(t-f.length))),f=f.concat(ct(l-f.length+1+(f.length<t?t-f.length:0))),f=ct(-l).concat(f);var d=l>0?l:0;return d<f.length-1&&f.splice(d+1,0,"."),s.sign+f.join("")}function Wt(e,t){for(var n={sign:e.sign,coefficients:e.coefficients,exponent:e.exponent},r=n.coefficients;t<=0;)r.unshift(0),n.exponent++,t++;if(r.length>t){var u=r.splice(t,r.length-t);if(u[0]>=5){var i=t-1;for(r[i]++;r[i]===10;)r.pop(),i===0&&(r.unshift(0),n.exponent++,i++),i--,r[i]++}}return n}function ct(e){for(var t=[],n=0;n<e;n++)t.push(0);return t}function Uc(e){return e.toExponential().replace(/e.*$/,"").replace(/^0\.?0*|\./,"").length}var Vc=Number.EPSILON||2220446049250313e-31;function qc(e,t,n){if(n==null)return e===t;if(e===t)return!0;if(isNaN(e)||isNaN(t))return!1;if(isFinite(e)&&isFinite(t)){var r=Math.abs(e-t);return r<Vc?!0:r<=Math.max(Math.abs(e),Math.abs(t))*n}return!1}function Tn(e,t,n){var r=e.constructor,u=new r(2),i="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!Oe(n))throw new Error("size must be an integer");if(e.greaterThan(u.pow(n-1).sub(1))||e.lessThan(u.pow(n-1).mul(-1)))throw new Error("Value must be in range [-2^".concat(n-1,", 2^").concat(n-1,"-1]"));if(!e.isInteger())throw new Error("Value must be an integer");e.lessThan(0)&&(e=e.add(u.pow(n))),i="i".concat(n)}switch(t){case 2:return"".concat(e.toBinary()).concat(i);case 8:return"".concat(e.toOctal()).concat(i);case 16:return"".concat(e.toHexadecimal()).concat(i);default:throw new Error("Base ".concat(t," not supported "))}}function Hc(e,t){if(typeof t=="function")return t(e);if(!e.isFinite())return e.isNaN()?"NaN":e.gt(0)?"Infinity":"-Infinity";var n="auto",r,u;if(t!==void 0&&(t.notation&&(n=t.notation),typeof t=="number"?r=t:t.precision&&(r=t.precision),t.wordSize&&(u=t.wordSize,typeof u!="number")))throw new Error('Option "wordSize" must be a number');switch(n){case"fixed":return Wc(e,r);case"exponential":return Ur(e,r);case"engineering":return zc(e,r);case"bin":return Tn(e,2,u);case"oct":return Tn(e,8,u);case"hex":return Tn(e,16,u);case"auto":{var i=t&&t.lowerExp!==void 0?t.lowerExp:-3,s=t&&t.upperExp!==void 0?t.upperExp:5;if(e.isZero())return"0";var f,l=e.toSignificantDigits(r),d=l.e;return d>=i&&d<s?f=l.toFixed():f=Ur(e,r),f.replace(/((\.\d*?)(0+))($|e)/,function(){var a=arguments[2],o=arguments[4];return a!=="."?a+o:o})}default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function zc(e,t){var n=e.e,r=n%3===0?n:n<0?n-3-n%3:n-n%3,u=e.mul(Math.pow(10,-r)),i=u.toPrecision(t);return i.indexOf("e")!==-1&&(i=u.toString()),i+"e"+(n>=0?"+":"")+r.toString()}function Ur(e,t){return t!==void 0?e.toExponential(t-1):e.toExponential()}function Wc(e,t){return e.toFixed(t)}function et(e,t){var n=Zc(e,t);return t&&typeof t=="object"&&"truncate"in t&&n.length>t.truncate?n.substring(0,t.truncate-3)+"...":n}function Zc(e,t){if(typeof e=="number")return Ln(e,t);if(Ze(e))return Hc(e,t);if(Xc(e))return!t||t.fraction!=="decimal"?e.s*e.n+"/"+e.d:e.toString();if(Array.isArray(e))return Vr(e,t);if(qt(e))return'"'+e+'"';if(typeof e=="function")return e.syntax?String(e.syntax):"function";if(e&&typeof e=="object"){if(typeof e.format=="function")return e.format(t);if(e&&e.toString(t)!=={}.toString())return e.toString(t);var n=Object.keys(e).map(r=>'"'+r+'": '+et(e[r],t));return"{"+n.join(", ")+"}"}return String(e)}function Vr(e,t){if(Array.isArray(e)){for(var n="[",r=e.length,u=0;u<r;u++)u!==0&&(n+=", "),n+=Vr(e[u],t);return n+="]",n}else return et(e,t)}function Xc(e){return e&&typeof e=="object"&&typeof e.s=="number"&&typeof e.n=="number"&&typeof e.d=="number"||!1}function re(e,t,n){if(!(this instanceof re))throw new SyntaxError("Constructor must be called with the new operator");this.actual=e,this.expected=t,this.relation=n,this.message="Dimension mismatch ("+(Array.isArray(e)?"["+e.join(", ")+"]":e)+" "+(this.relation||"!=")+" "+(Array.isArray(t)?"["+t.join(", ")+"]":t)+")",this.stack=new Error().stack}re.prototype=new RangeError,re.prototype.constructor=RangeError,re.prototype.name="DimensionError",re.prototype.isDimensionError=!0;function lt(e,t,n){if(!(this instanceof lt))throw new SyntaxError("Constructor must be called with the new operator");this.index=e,arguments.length<3?(this.min=0,this.max=t):(this.min=t,this.max=n),this.min!==void 0&&this.index<this.min?this.message="Index out of range ("+this.index+" < "+this.min+")":this.max!==void 0&&this.index>=this.max?this.message="Index out of range ("+this.index+" > "+(this.max-1)+")":this.message="Index out of range ("+this.index+")",this.stack=new Error().stack}lt.prototype=new RangeError,lt.prototype.constructor=RangeError,lt.prototype.name="IndexError",lt.prototype.isIndexError=!0;function On(e){for(var t=[];Array.isArray(e);)t.push(e.length),e=e[0];return t}function qr(e,t,n){var r,u=e.length;if(u!==t[n])throw new re(u,t[n]);if(n<t.length-1){var i=n+1;for(r=0;r<u;r++){var s=e[r];if(!Array.isArray(s))throw new re(t.length-1,t.length,"<");qr(e[r],t,i)}}else for(r=0;r<u;r++)if(Array.isArray(e[r]))throw new re(t.length+1,t.length,">")}function Hr(e,t){var n=t.length===0;if(n){if(Array.isArray(e))throw new re(e.length,0)}else qr(e,t,0)}function Me(e,t){if(!de(e)||!Oe(e))throw new TypeError("Index must be an integer (value: "+e+")");if(e<0||typeof t=="number"&&e>=t)throw new lt(e,t)}function zr(e,t,n){if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(t.length===0)throw new Error("Resizing to scalar is not supported");t.forEach(function(u){if(!de(u)||!Oe(u)||u<0)throw new TypeError("Invalid size, must contain positive integers (size: "+et(t)+")")});var r=n!==void 0?n:0;return Pn(e,t,0,r),e}function Pn(e,t,n,r){var u,i,s=e.length,f=t[n],l=Math.min(s,f);if(e.length=f,n<t.length-1){var d=n+1;for(u=0;u<l;u++)i=e[u],Array.isArray(i)||(i=[i],e[u]=i),Pn(i,t,d,r);for(u=l;u<f;u++)i=[],e[u]=i,Pn(i,t,d,r)}else{for(u=0;u<l;u++)for(;Array.isArray(e[u]);)e[u]=e[u][0];for(u=l;u<f;u++)e[u]=r}}function Jc(e,t){var n=Qc(e),r=n.length;if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(t.length===0)throw new re(0,r,"!=");t=Wr(t,r);var u=Zr(t);if(r!==u)throw new re(u,r,"!=");try{return Kc(n,t)}catch(i){throw i instanceof re?new re(u,r,"!="):i}}function Wr(e,t){var n=Zr(e),r=e.slice(),u=-1,i=e.indexOf(u),s=e.indexOf(u,i+1)>=0;if(s)throw new Error("More than one wildcard in sizes");var f=i>=0,l=t%n===0;if(f)if(l)r[i]=-t/n;else throw new Error("Could not replace wildcard, since "+t+" is no multiple of "+-n);return r}function Zr(e){return e.reduce((t,n)=>t*n,1)}function Kc(e,t){for(var n=e,r,u=t.length-1;u>0;u--){var i=t[u];r=[];for(var s=n.length/i,f=0;f<s;f++)r.push(n.slice(f*i,(f+1)*i));n=r}return n}function Gc(e,t,n,r){var u=r||On(e);if(n)for(var i=0;i<n;i++)e=[e],u.unshift(1);for(e=Xr(e,t,0);u.length<t;)u.push(1);return e}function Xr(e,t,n){var r,u;if(Array.isArray(e)){var i=n+1;for(r=0,u=e.length;r<u;r++)e[r]=Xr(e[r],t,i)}else for(var s=n;s<t;s++)e=[e];return e}function Qc(e){if(!Array.isArray(e))return e;var t=[];return e.forEach(function n(r){Array.isArray(r)?r.forEach(n):t.push(r)}),t}function kn(e,t){for(var n,r=0,u=0;u<e.length;u++){var i=e[u],s=Array.isArray(i);if(u===0&&s&&(r=i.length),s&&i.length!==r)return;var f=s?kn(i,t):t(i);if(n===void 0)n=f;else if(n!==f)return"mixed"}return n}function me(e,t,n,r){function u(i){var s=$c(i,t.map(tl));return Yc(e,t,i),n(s)}return u.isFactory=!0,u.fn=e,u.dependencies=t.slice().sort(),r&&(u.meta=r),u}function Yc(e,t,n){var r=t.filter(i=>!el(i)).every(i=>n[i]!==void 0);if(!r){var u=t.filter(i=>n[i]===void 0);throw new Error('Cannot create function "'.concat(e,'", ')+"some dependencies are missing: ".concat(u.map(i=>'"'.concat(i,'"')).join(", "),"."))}}function el(e){return e&&e[0]==="?"}function tl(e){return e&&e[0]==="?"?e.slice(1):e}function nl(e,t){if(Kr(e)&&Jr(e,t))return e[t];throw typeof e[t]=="function"&&il(e,t)?new Error('Cannot access method "'+t+'" as a property'):new Error('No access to property "'+t+'"')}function rl(e,t,n){if(Kr(e)&&Jr(e,t))return e[t]=n,n;throw new Error('No access to property "'+t+'"')}function ul(e,t){return t in e}function Jr(e,t){return!e||typeof e!="object"?!1:Ht(ol,t)?!0:!(t in Object.prototype||t in Function.prototype)}function il(e,t){return e==null||typeof e[t]!="function"||Ht(e,t)&&Object.getPrototypeOf&&t in Object.getPrototypeOf(e)?!1:Ht(al,t)?!0:!(t in Object.prototype||t in Function.prototype)}function Kr(e){return typeof e=="object"&&e&&e.constructor===Object}var ol={length:!0,name:!0},al={toString:!0,valueOf:!0,toLocaleString:!0};class sl{constructor(t){this.wrappedObject=t}keys(){return Object.keys(this.wrappedObject)}get(t){return nl(this.wrappedObject,t)}set(t,n){return rl(this.wrappedObject,t,n),this}has(t){return ul(this.wrappedObject,t)}}function cl(e){return e?e instanceof Map||e instanceof sl||typeof e.set=="function"&&typeof e.get=="function"&&typeof e.keys=="function"&&typeof e.has=="function":!1}var Gr=function(){return Gr=kr.create,kr},ll=["?BigNumber","?Complex","?DenseMatrix","?Fraction"],fl=me("typed",ll,function(t){var{BigNumber:n,Complex:r,DenseMatrix:u,Fraction:i}=t,s=Gr();return s.clear(),s.addTypes([{name:"number",test:de},{name:"Complex",test:Ir},{name:"BigNumber",test:Ze},{name:"Fraction",test:_r},{name:"Unit",test:Rr},{name:"identifier",test:f=>qt&&/^(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])*$/.test(f)},{name:"string",test:qt},{name:"Chain",test:Rc},{name:"Array",test:we},{name:"Matrix",test:Mt},{name:"DenseMatrix",test:uc},{name:"SparseMatrix",test:ic},{name:"Range",test:oc},{name:"Index",test:xr},{name:"boolean",test:ac},{name:"ResultSet",test:sc},{name:"Help",test:cc},{name:"function",test:lc},{name:"Date",test:fc},{name:"RegExp",test:hc},{name:"null",test:pc},{name:"undefined",test:Dc},{name:"AccessorNode",test:gc},{name:"ArrayNode",test:vc},{name:"AssignmentNode",test:mc},{name:"BlockNode",test:Ec},{name:"ConditionalNode",test:Ac},{name:"ConstantNode",test:Cc},{name:"FunctionNode",test:yc},{name:"FunctionAssignmentNode",test:Fc},{name:"IndexNode",test:wc},{name:"Node",test:Bc},{name:"ObjectNode",test:bc},{name:"OperatorNode",test:Sc},{name:"ParenthesisNode",test:Mc},{name:"RangeNode",test:Nc},{name:"RelationalNode",test:Ic},{name:"SymbolNode",test:_c},{name:"Map",test:cl},{name:"Object",test:dc}]),s.addConversions([{from:"number",to:"BigNumber",convert:function(l){if(n||jn(l),Uc(l)>15)throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: "+l+"). Use function bignumber(x) to convert to BigNumber.");return new n(l)}},{from:"number",to:"Complex",convert:function(l){return r||Zt(l),new r(l,0)}},{from:"BigNumber",to:"Complex",convert:function(l){return r||Zt(l),new r(l.toNumber(),0)}},{from:"Fraction",to:"BigNumber",convert:function(l){throw new TypeError("Cannot implicitly convert a Fraction to BigNumber or vice versa. Use function bignumber(x) to convert to BigNumber or fraction(x) to convert to Fraction.")}},{from:"Fraction",to:"Complex",convert:function(l){return r||Zt(l),new r(l.valueOf(),0)}},{from:"number",to:"Fraction",convert:function(l){i||Un(l);var d=new i(l);if(d.valueOf()!==l)throw new TypeError("Cannot implicitly convert a number to a Fraction when there will be a loss of precision (value: "+l+"). Use function fraction(x) to convert to Fraction.");return d}},{from:"string",to:"number",convert:function(l){var d=Number(l);if(isNaN(d))throw new Error('Cannot convert "'+l+'" to a number');return d}},{from:"string",to:"BigNumber",convert:function(l){n||jn(l);try{return new n(l)}catch(d){throw new Error('Cannot convert "'+l+'" to BigNumber')}}},{from:"string",to:"Fraction",convert:function(l){i||Un(l);try{return new i(l)}catch(d){throw new Error('Cannot convert "'+l+'" to Fraction')}}},{from:"string",to:"Complex",convert:function(l){r||Zt(l);try{return new r(l)}catch(d){throw new Error('Cannot convert "'+l+'" to Complex')}}},{from:"boolean",to:"number",convert:function(l){return+l}},{from:"boolean",to:"BigNumber",convert:function(l){return n||jn(l),new n(+l)}},{from:"boolean",to:"Fraction",convert:function(l){return i||Un(l),new i(+l)}},{from:"boolean",to:"string",convert:function(l){return String(l)}},{from:"Array",to:"Matrix",convert:function(l){return u||hl(),new u(l)}},{from:"Matrix",to:"Array",convert:function(l){return l.valueOf()}}]),s.onMismatch=(f,l,d)=>{var a=s.createError(f,l,d);if(["wrongType","mismatch"].includes(a.data.category)&&l.length===1&&_n(l[0])&&d.some(c=>!c.params.includes(","))){var o=new TypeError("Function '".concat(f,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(f,")'."));throw o.data=a.data,o}throw a},s.onMismatch=(f,l,d)=>{var a=s.createError(f,l,d);if(["wrongType","mismatch"].includes(a.data.category)&&l.length===1&&_n(l[0])&&d.some(c=>!c.params.includes(","))){var o=new TypeError("Function '".concat(f,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(f,")'."));throw o.data=a.data,o}throw a},s});function jn(e){throw new Error("Cannot convert value ".concat(e," into a BigNumber: no class 'BigNumber' provided"))}function Zt(e){throw new Error("Cannot convert value ".concat(e," into a Complex number: no class 'Complex' provided"))}function hl(){throw new Error("Cannot convert array into a Matrix: no class 'DenseMatrix' provided")}function Un(e){throw new Error("Cannot convert value ".concat(e," into a Fraction, no class 'Fraction' provided."))}/*!
9
+ `);return Object.freeze(Nr)};In($r,Nr,{MATRIX_OPTIONS:Lc,NUMBER_OPTIONS:Oc});function Re(e,t){var n=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Tc(e))||t&&e&&typeof e.length=="number"){n&&(e=n);var r=0,u=function(){};return{s:u,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(d){throw d},f:u}}throw new TypeError(`Invalid attempt to iterate non-iterable instance.
10
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i=!0,s=!1,f;return{s:function(){n=n.call(e)},n:function(){var d=n.next();return i=d.done,d},e:function(d){s=!0,f=d},f:function(){try{!i&&n.return!=null&&n.return()}finally{if(s)throw f}}}}function Tc(e,t){if(!!e){if(typeof e=="string")return Lr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);if(n==="Object"&&e.constructor&&(n=e.constructor.name),n==="Map"||n==="Set")return Array.from(e);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Lr(e,t)}}function Lr(e,t){(t==null||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function at(e){return at=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},at(e)}function Or(){return!0}function Se(){return!1}function st(){}var Tr="Argument is not a typed-function.";function Pr(){function e(v){return at(v)==="object"&&v!==null&&v.constructor===Object}var t=[{name:"number",test:function(E){return typeof E=="number"}},{name:"string",test:function(E){return typeof E=="string"}},{name:"boolean",test:function(E){return typeof E=="boolean"}},{name:"Function",test:function(E){return typeof E=="function"}},{name:"Array",test:Array.isArray},{name:"Date",test:function(E){return E instanceof Date}},{name:"RegExp",test:function(E){return E instanceof RegExp}},{name:"Object",test:e},{name:"null",test:function(E){return E===null}},{name:"undefined",test:function(E){return E===void 0}}],n={name:"any",test:Or,isAny:!0},r,u,i=0,s={createCount:0};function f(v){var E=r.get(v);if(E)return E;var A='Unknown type "'+v+'"',y=v.toLowerCase(),S,M=Re(u),_;try{for(M.s();!(_=M.n()).done;)if(S=_.value,S.toLowerCase()===y){A+='. Did you mean "'+S+'" ?';break}}catch(B){M.e(B)}finally{M.f()}throw new TypeError(A)}function l(v){for(var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"any",A=E?f(E).index:u.length,y=[],S=0;S<v.length;++S){if(!v[S]||typeof v[S].name!="string"||typeof v[S].test!="function")throw new TypeError("Object with properties {name: string, test: function} expected");var M=v[S].name;if(r.has(M))throw new TypeError('Duplicate type name "'+M+'"');y.push(M),r.set(M,{name:M,test:v[S].test,isAny:v[S].isAny,index:A+S,conversionsTo:[]})}var _=u.slice(A);u=u.slice(0,A).concat(y).concat(_);for(var B=A+y.length;B<u.length;++B)r.get(u[B]).index=B}function d(){r=new Map,u=[],i=0,l([n],!1)}d(),l(t);function a(){var v,E=Re(u),A;try{for(E.s();!(A=E.n()).done;)v=A.value,r.get(v).conversionsTo=[]}catch(y){E.e(y)}finally{E.f()}i=0}function o(v){var E=u.filter(function(A){var y=r.get(A);return!y.isAny&&y.test(v)});return E.length?E:["any"]}function c(v){return v&&typeof v=="function"&&"_typedFunctionData"in v}function h(v,E,A){if(!c(v))throw new TypeError(Tr);var y=A&&A.exact,S=Array.isArray(E)?E.join(","):E,M=b(S),_=m(M);if(!y||_ in v.signatures){var B=v._typedFunctionData.signatureMap.get(_);if(B)return B}var N=M.length,T;if(y){T=[];var U;for(U in v.signatures)T.push(v._typedFunctionData.signatureMap.get(U))}else T=v._typedFunctionData.signatures;for(var x=0;x<N;++x){var De=M[x],se=[],fe=void 0,te=Re(T),Ae;try{for(te.s();!(Ae=te.n()).done;){fe=Ae.value;var ue=I(fe.params,x);if(!(!ue||De.restParam&&!ue.restParam)){if(!ue.hasAny){var Ne=function(){var Ce=F(ue);if(De.types.some(function(nt){return!Ce.has(nt.name)}))return"continue"}();if(Ne==="continue")continue}se.push(fe)}}}catch(Ce){te.e(Ce)}finally{te.f()}if(T=se,T.length===0)break}var ge,ve=Re(T),tt;try{for(ve.s();!(tt=ve.n()).done;)if(ge=tt.value,ge.params.length<=N)return ge}catch(Ce){ve.e(Ce)}finally{ve.f()}throw new TypeError("Signature not found (signature: "+(v.name||"unnamed")+"("+m(M,", ")+"))")}function p(v,E,A){return h(v,E,A).implementation}function D(v,E){var A=f(E);if(A.test(v))return v;var y=A.conversionsTo;if(y.length===0)throw new Error("There are no conversions to "+E+" defined.");for(var S=0;S<y.length;S++){var M=f(y[S].from);if(M.test(v))return y[S].convert(v)}throw new Error("Cannot convert "+v+" to "+E)}function m(v){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:",";return v.map(function(A){return A.name}).join(E)}function g(v){var E=v.indexOf("...")===0,A=E?v.length>3?v.slice(3):"any":v,y=A.split("|").map(function(B){return f(B.trim())}),S=!1,M=E?"...":"",_=y.map(function(B){return S=B.isAny||S,M+=B.name+"|",{name:B.name,typeIndex:B.index,test:B.test,isAny:B.isAny,conversion:null,conversionIndex:-1}});return{types:_,name:M.slice(0,-1),hasAny:S,hasConversion:!1,restParam:E}}function C(v){var E=v.types.map(function(_){return _.name}),A=qf(E),y=v.hasAny,S=v.name,M=A.map(function(_){var B=f(_.from);return y=B.isAny||y,S+="|"+_.from,{name:_.from,typeIndex:B.index,test:B.test,isAny:B.isAny,conversion:_,conversionIndex:_.index}});return{types:v.types.concat(M),name:S,hasAny:y,hasConversion:M.length>0,restParam:v.restParam}}function F(v){return v.typeSet||(v.typeSet=new Set,v.types.forEach(function(E){return v.typeSet.add(E.name)})),v.typeSet}function b(v){var E=[];if(typeof v!="string")throw new TypeError("Signatures must be strings");var A=v.trim();if(A==="")return E;for(var y=A.split(","),S=0;S<y.length;++S){var M=g(y[S].trim());if(M.restParam&&S!==y.length-1)throw new SyntaxError('Unexpected rest parameter "'+y[S]+'": only allowed for the last parameter');if(M.types.length===0)return null;E.push(M)}return E}function R(v){var E=Dt(v);return E?E.restParam:!1}function L(v){if(!v||v.types.length===0)return Or;if(v.types.length===1)return f(v.types[0].name).test;if(v.types.length===2){var E=f(v.types[0].name).test,A=f(v.types[1].name).test;return function(M){return E(M)||A(M)}}else{var y=v.types.map(function(S){return f(S.name).test});return function(M){for(var _=0;_<y.length;_++)if(y[_](M))return!0;return!1}}}function k(v){var E,A,y;if(R(v)){E=Nu(v).map(L);var S=E.length,M=L(Dt(v)),_=function(N){for(var T=S;T<N.length;T++)if(!M(N[T]))return!1;return!0};return function(N){for(var T=0;T<E.length;T++)if(!E[T](N[T]))return!1;return _(N)&&N.length>=S+1}}else return v.length===0?function(N){return N.length===0}:v.length===1?(A=L(v[0]),function(N){return A(N[0])&&N.length===1}):v.length===2?(A=L(v[0]),y=L(v[1]),function(N){return A(N[0])&&y(N[1])&&N.length===2}):(E=v.map(L),function(N){for(var T=0;T<E.length;T++)if(!E[T](N[T]))return!1;return N.length===E.length})}function I(v,E){return E<v.length?v[E]:R(v)?Dt(v):null}function $(v,E){var A=I(v,E);return A?F(A):new Set}function J(v){return v.conversion===null||v.conversion===void 0}function V(v,E){var A=new Set;return v.forEach(function(y){var S=$(y.params,E),M,_=Re(S),B;try{for(_.s();!(B=_.n()).done;)M=B.value,A.add(M)}catch(N){_.e(N)}finally{_.f()}}),A.has("any")?["any"]:Array.from(A)}function G(v,E,A){var y,S,M=v||"unnamed",_=A,B,N=function(){var te=[];if(_.forEach(function(ue){var Ne=I(ue.params,B),ge=L(Ne);(B<ue.params.length||R(ue.params))&&ge(E[B])&&te.push(ue)}),te.length===0){if(S=V(_,B),S.length>0){var Ae=o(E[B]);return y=new TypeError("Unexpected type of argument in function "+M+" (expected: "+S.join(" or ")+", actual: "+Ae.join(" | ")+", index: "+B+")"),y.data={category:"wrongType",fn:M,index:B,actual:Ae,expected:S},{v:y}}}else _=te};for(B=0;B<E.length;B++){var T=N();if(at(T)==="object")return T.v}var U=_.map(function(fe){return R(fe.params)?1/0:fe.params.length});if(E.length<Math.min.apply(null,U))return S=V(_,B),y=new TypeError("Too few arguments in function "+M+" (expected: "+S.join(" or ")+", index: "+E.length+")"),y.data={category:"tooFewArgs",fn:M,index:E.length,expected:S},y;var x=Math.max.apply(null,U);if(E.length>x)return y=new TypeError("Too many arguments in function "+M+" (expected: "+x+", actual: "+E.length+")"),y.data={category:"tooManyArgs",fn:M,index:E.length,expectedLength:x},y;for(var De=[],se=0;se<E.length;++se)De.push(o(E[se]).join("|"));return y=new TypeError('Arguments of type "'+De.join(", ")+'" do not match any of the defined signatures of function '+M+"."),y.data={category:"mismatch",actual:De},y}function Q(v){for(var E=u.length+1,A=0;A<v.types.length;A++)J(v.types[A])&&(E=Math.min(E,v.types[A].typeIndex));return E}function pe(v){for(var E=i+1,A=0;A<v.types.length;A++)J(v.types[A])||(E=Math.min(E,v.types[A].conversionIndex));return E}function K(v,E){if(v.hasAny){if(!E.hasAny)return 1}else if(E.hasAny)return-1;if(v.restParam){if(!E.restParam)return 1}else if(E.restParam)return-1;if(v.hasConversion){if(!E.hasConversion)return 1}else if(E.hasConversion)return-1;var A=Q(v)-Q(E);if(A<0)return-1;if(A>0)return 1;var y=pe(v)-pe(E);return y<0?-1:y>0?1:0}function q(v,E){var A=v.params,y=E.params,S=Dt(A),M=Dt(y),_=R(A),B=R(y);if(_&&S.hasAny){if(!B||!M.hasAny)return 1}else if(B&&M.hasAny)return-1;var N=0,T=0,U,x=Re(A),De;try{for(x.s();!(De=x.n()).done;)U=De.value,U.hasAny&&++N,U.hasConversion&&++T}catch(_t){x.e(_t)}finally{x.f()}var se=0,fe=0,te=Re(y),Ae;try{for(te.s();!(Ae=te.n()).done;)U=Ae.value,U.hasAny&&++se,U.hasConversion&&++fe}catch(_t){te.e(_t)}finally{te.f()}if(N!==se)return N-se;if(_&&S.hasConversion){if(!B||!M.hasConversion)return 1}else if(B&&M.hasConversion)return-1;if(T!==fe)return T-fe;if(_){if(!B)return 1}else if(B)return-1;var ue=(A.length-y.length)*(_?-1:1);if(ue!==0)return ue;for(var Ne=[],ge=0,ve=0;ve<A.length;++ve){var tt=K(A[ve],y[ve]);Ne.push(tt),ge+=tt}if(ge!==0)return ge;for(var Ce,nt=0,nn=Ne;nt<nn.length;nt++)if(Ce=nn[nt],Ce!==0)return Ce;return 0}function qf(v){if(v.length===0)return[];var E=v.map(f);v.length>1&&E.sort(function(N,T){return N.index-T.index});var A=E[0].conversionsTo;if(v.length===1)return A;A=A.concat([]);for(var y=new Set(v),S=1;S<E.length;++S){var M=void 0,_=Re(E[S].conversionsTo),B;try{for(_.s();!(B=_.n()).done;)M=B.value,y.has(M.from)||(A.push(M),y.add(M.from))}catch(N){_.e(N)}finally{_.f()}}return A}function Hf(v,E){var A=E;if(v.some(function(B){return B.hasConversion})){var y=R(v),S=v.map(zf);A=function(){for(var N=[],T=y?arguments.length-1:arguments.length,U=0;U<T;U++)N[U]=S[U](arguments[U]);return y&&(N[T]=arguments[T].map(S[T])),E.apply(this,N)}}var M=A;if(R(v)){var _=v.length-1;M=function(){return A.apply(this,Xn(arguments,0,_).concat([Xn(arguments,_)]))}}return M}function zf(v){var E,A,y,S,M=[],_=[];switch(v.types.forEach(function(B){B.conversion&&(M.push(f(B.conversion.from).test),_.push(B.conversion.convert))}),_.length){case 0:return function(N){return N};case 1:return E=M[0],y=_[0],function(N){return E(N)?y(N):N};case 2:return E=M[0],A=M[1],y=_[0],S=_[1],function(N){return E(N)?y(N):A(N)?S(N):N};default:return function(N){for(var T=0;T<_.length;T++)if(M[T](N))return _[T](N);return N}}}function Wf(v){function E(A,y,S){if(y<A.length){var M=A[y],_=[];if(M.restParam){var B=M.types.filter(J);B.length<M.types.length&&_.push({types:B,name:"..."+B.map(function(N){return N.name}).join("|"),hasAny:B.some(function(N){return N.isAny}),hasConversion:!1,restParam:!0}),_.push(M)}else _=M.types.map(function(N){return{types:[N],name:N.name,hasAny:N.isAny,hasConversion:N.conversion,restParam:!1}});return eh(_,function(N){return E(A,y+1,S.concat([N]))})}else return[S]}return E(v,0,[])}function Zf(v,E){for(var A=Math.max(v.length,E.length),y=0;y<A;y++){var S=$(v,y),M=$(E,y),_=!1,B=void 0,N=Re(M),T;try{for(N.s();!(T=N.n()).done;)if(B=T.value,S.has(B)){_=!0;break}}catch(fe){N.e(fe)}finally{N.f()}if(!_)return!1}var U=v.length,x=E.length,De=R(v),se=R(E);return De?se?U===x:x>=U:se?U>=x:U===x}function Xf(v){return v.map(function(E){return xu(E)?_u(E.referToSelf.callback):Ru(E)?Iu(E.referTo.references,E.referTo.callback):E})}function Jf(v,E,A){var y=[],S,M=Re(v),_;try{for(M.s();!(_=M.n()).done;){S=_.value;var B=A[S];if(typeof B!="number")throw new TypeError('No definition for referenced signature "'+S+'"');if(B=E[B],typeof B!="function")return!1;y.push(B)}}catch(N){M.e(N)}finally{M.f()}return y}function Kf(v,E,A){for(var y=Xf(v),S=new Array(y.length).fill(!1),M=!0;M;){M=!1;for(var _=!0,B=0;B<y.length;++B)if(!S[B]){var N=y[B];if(xu(N))y[B]=N.referToSelf.callback(A),y[B].referToSelf=N.referToSelf,S[B]=!0,_=!1;else if(Ru(N)){var T=Jf(N.referTo.references,y,E);T?(y[B]=N.referTo.callback.apply(this,T),y[B].referTo=N.referTo,S[B]=!0,_=!1):M=!0}}if(_&&M)throw new SyntaxError("Circular reference detected in resolving typed.referTo")}return y}function Gf(v){var E=/\bthis(\(|\.signatures\b)/;Object.keys(v).forEach(function(A){var y=v[A];if(E.test(y.toString()))throw new SyntaxError("Using `this` to self-reference a function is deprecated since typed-function@3. Use typed.referTo and typed.referToSelf instead.")})}function Qf(v,E){if(s.createCount++,Object.keys(E).length===0)throw new SyntaxError("No signatures provided");s.warnAgainstDeprecatedThis&&Gf(E);var A=[],y=[],S={},M=[],_,B=function(){if(!Object.prototype.hasOwnProperty.call(E,_))return"continue";var ce=b(_);if(!ce)return"continue";A.forEach(function(gt){if(Zf(gt,ce))throw new TypeError('Conflicting signatures "'+m(gt)+'" and "'+m(ce)+'".')}),A.push(ce);var Ou=y.length;y.push(E[_]);var _h=ce.map(C),rn=void 0,un=Re(Wf(_h)),Tu;try{for(un.s();!(Tu=un.n()).done;){rn=Tu.value;var Pu=m(rn);M.push({params:rn,name:Pu,fn:Ou}),rn.every(function(gt){return!gt.hasConversion})&&(S[Pu]=Ou)}}catch(gt){un.e(gt)}finally{un.f()}};for(_ in E)var N=B();M.sort(q);var T=Kf(y,S,xt),U;for(U in S)Object.prototype.hasOwnProperty.call(S,U)&&(S[U]=T[S[U]]);for(var x=[],De=new Map,se=0,fe=M;se<fe.length;se++)U=fe[se],De.has(U.name)||(U.fn=T[U.fn],x.push(U),De.set(U.name,U));for(var te=x[0]&&x[0].params.length<=2&&!R(x[0].params),Ae=x[1]&&x[1].params.length<=2&&!R(x[1].params),ue=x[2]&&x[2].params.length<=2&&!R(x[2].params),Ne=x[3]&&x[3].params.length<=2&&!R(x[3].params),ge=x[4]&&x[4].params.length<=2&&!R(x[4].params),ve=x[5]&&x[5].params.length<=2&&!R(x[5].params),tt=te&&Ae&&ue&&Ne&&ge&&ve,Ce=0;Ce<x.length;++Ce)x[Ce].test=k(x[Ce].params);for(var nt=te?L(x[0].params[0]):Se,nn=Ae?L(x[1].params[0]):Se,_t=ue?L(x[2].params[0]):Se,ih=Ne?L(x[3].params[0]):Se,oh=ge?L(x[4].params[0]):Se,ah=ve?L(x[5].params[0]):Se,sh=te?L(x[0].params[1]):Se,ch=Ae?L(x[1].params[1]):Se,lh=ue?L(x[2].params[1]):Se,fh=Ne?L(x[3].params[1]):Se,hh=ge?L(x[4].params[1]):Se,dh=ve?L(x[5].params[1]):Se,Rt=0;Rt<x.length;++Rt)x[Rt].implementation=Hf(x[Rt].params,x[Rt].fn);var ph=te?x[0].implementation:st,Dh=Ae?x[1].implementation:st,gh=ue?x[2].implementation:st,vh=Ne?x[3].implementation:st,mh=ge?x[4].implementation:st,Eh=ve?x[5].implementation:st,Ah=te?x[0].params.length:-1,Ch=Ae?x[1].params.length:-1,Fh=ue?x[2].params.length:-1,yh=Ne?x[3].params.length:-1,wh=ge?x[4].params.length:-1,Bh=ve?x[5].params.length:-1,bh=tt?6:0,Sh=x.length,Mh=x.map(function(Be){return Be.test}),Nh=x.map(function(Be){return Be.implementation}),Ih=function(){for(var ce=bh;ce<Sh;ce++)if(Mh[ce](arguments))return Nh[ce].apply(this,arguments);return s.onMismatch(v,arguments,x)};function xt(Be,ce){return arguments.length===Ah&&nt(Be)&&sh(ce)?ph.apply(this,arguments):arguments.length===Ch&&nn(Be)&&ch(ce)?Dh.apply(this,arguments):arguments.length===Fh&&_t(Be)&&lh(ce)?gh.apply(this,arguments):arguments.length===yh&&ih(Be)&&fh(ce)?vh.apply(this,arguments):arguments.length===wh&&oh(Be)&&hh(ce)?mh.apply(this,arguments):arguments.length===Bh&&ah(Be)&&dh(ce)?Eh.apply(this,arguments):Ih.apply(this,arguments)}try{Object.defineProperty(xt,"name",{value:v})}catch(Be){}return xt.signatures=S,xt._typedFunctionData={signatures:x,signatureMap:De},xt}function Mu(v,E,A){throw G(v,E,A)}function Nu(v){return Xn(v,0,v.length-1)}function Dt(v){return v[v.length-1]}function Xn(v,E,A){return Array.prototype.slice.call(v,E,A)}function Yf(v,E){for(var A=0;A<v.length;A++)if(E(v[A]))return v[A]}function eh(v,E){return Array.prototype.concat.apply([],v.map(E))}function th(){var v=Nu(arguments).map(function(A){return m(b(A))}),E=Dt(arguments);if(typeof E!="function")throw new TypeError("Callback function expected as last argument");return Iu(v,E)}function Iu(v,E){return{referTo:{references:v,callback:E}}}function _u(v){if(typeof v!="function")throw new TypeError("Callback function expected as first argument");return{referToSelf:{callback:v}}}function Ru(v){return v&&at(v.referTo)==="object"&&Array.isArray(v.referTo.references)&&typeof v.referTo.callback=="function"}function xu(v){return v&&at(v.referToSelf)==="object"&&typeof v.referToSelf.callback=="function"}function $u(v,E){if(!v)return E;if(E&&E!==v){var A=new Error("Function names do not match (expected: "+v+", actual: "+E+")");throw A.data={actual:E,expected:v},A}return v}function nh(v){var E;for(var A in v)Object.prototype.hasOwnProperty.call(v,A)&&(c(v[A])||typeof v[A].signature=="string")&&(E=$u(E,v[A].name));return E}function rh(v,E){var A;for(A in E)if(Object.prototype.hasOwnProperty.call(E,A)){if(A in v&&E[A]!==v[A]){var y=new Error('Signature "'+A+'" is defined twice');throw y.data={signature:A,sourceFunction:E[A],destFunction:v[A]},y}v[A]=E[A]}}var uh=s;s=function(E){for(var A=typeof E=="string",y=A?1:0,S=A?E:"",M={},_=y;_<arguments.length;++_){var B=arguments[_],N={},T=void 0;if(typeof B=="function"?(T=B.name,typeof B.signature=="string"?N[B.signature]=B:c(B)&&(N=B.signatures)):e(B)&&(N=B,A||(T=nh(B))),Object.keys(N).length===0){var U=new TypeError("Argument to 'typed' at index "+_+" is not a (typed) function, nor an object with signatures as keys and functions as values.");throw U.data={index:_,argument:B},U}A||(S=$u(S,T)),rh(M,N)}return Qf(S||"",M)},s.create=Pr,s.createCount=uh.createCount,s.onMismatch=Mu,s.throwMismatchError=Mu,s.createError=G,s.clear=d,s.clearConversions=a,s.addTypes=l,s._findType=f,s.referTo=th,s.referToSelf=_u,s.convert=D,s.findSignature=h,s.find=p,s.isTypedFunction=c,s.warnAgainstDeprecatedThis=!0,s.addType=function(v,E){var A="any";E!==!1&&r.has("Object")&&(A="Object"),s.addTypes([v],A)};function Lu(v){if(!v||typeof v.from!="string"||typeof v.to!="string"||typeof v.convert!="function")throw new TypeError("Object with properties {from: string, to: string, convert: function} expected");if(v.to===v.from)throw new SyntaxError('Illegal to define conversion from "'+v.from+'" to itself.')}return s.addConversion=function(v){Lu(v);var E=f(v.to);if(E.conversionsTo.every(function(A){return A.from!==v.from}))E.conversionsTo.push({from:v.from,convert:v.convert,index:i++});else throw new Error('There is already a conversion from "'+v.from+'" to "'+E.name+'"')},s.addConversions=function(v){v.forEach(s.addConversion)},s.removeConversion=function(v){Lu(v);var E=f(v.to),A=Yf(E.conversionsTo,function(S){return S.from===v.from});if(!A)throw new Error("Attempt to remove nonexistent conversion from "+v.from+" to "+v.to);if(A.convert!==v.convert)throw new Error("Conversion to remove does not match existing conversion");var y=E.conversionsTo.indexOf(A);E.conversionsTo.splice(y,1)},s.resolve=function(v,E){if(!c(v))throw new TypeError(Tr);for(var A=v._typedFunctionData.signatures,y=0;y<A.length;++y)if(A[y].test(E))return A[y];return null},s}var kr=Pr();function Te(e){return typeof e=="boolean"?!0:isFinite(e)?e===Math.round(e):!1}function $n(e,t,n){var r={2:"0b",8:"0o",16:"0x"},u=r[t],i="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!Te(n))throw new Error("size must be an integer");if(e>on(2,n-1)-1||e<-on(2,n-1))throw new Error("Value must be in range [-2^".concat(n-1,", 2^").concat(n-1,"-1]"));if(!Te(e))throw new Error("Value must be an integer");e<0&&(e=e+on(2,n)),i="i".concat(n)}var s="";return e<0&&(e=-e,s="-"),"".concat(s).concat(u).concat(e.toString(t)).concat(i)}function Ln(e,t){if(typeof t=="function")return t(e);if(e===1/0)return"Infinity";if(e===-1/0)return"-Infinity";if(isNaN(e))return"NaN";var n="auto",r,u;if(t&&(t.notation&&(n=t.notation),de(t)?r=t:de(t.precision)&&(r=t.precision),t.wordSize&&(u=t.wordSize,typeof u!="number")))throw new Error('Option "wordSize" must be a number');switch(n){case"fixed":return kc(e,r);case"exponential":return jr(e,r);case"engineering":return Pc(e,r);case"bin":return $n(e,2,u);case"oct":return $n(e,8,u);case"hex":return $n(e,16,u);case"auto":return jc(e,r,t&&t).replace(/((\.\d*?)(0+))($|e)/,function(){var i=arguments[2],s=arguments[4];return i!=="."?i+s:s});default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function zt(e){var t=String(e).toLowerCase().match(/^(-?)(\d+\.?\d*)(e([+-]?\d+))?$/);if(!t)throw new SyntaxError("Invalid number "+e);var n=t[1],r=t[2],u=parseFloat(t[4]||"0"),i=r.indexOf(".");u+=i!==-1?i-1:r.length-1;var s=r.replace(".","").replace(/^0*/,function(f){return u-=f.length,""}).replace(/0*$/,"").split("").map(function(f){return parseInt(f)});return s.length===0&&(s.push(0),u++),{sign:n,coefficients:s,exponent:u}}function Pc(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=Wt(n,t),u=r.exponent,i=r.coefficients,s=u%3===0?u:u<0?u-3-u%3:u-u%3;if(de(t))for(;t>i.length||u-s+1>i.length;)i.push(0);else for(var f=Math.abs(u-s)-(i.length-1),l=0;l<f;l++)i.push(0);for(var d=Math.abs(u-s),a=1;d>0;)a++,d--;var o=i.slice(a).join(""),c=de(t)&&o.length||o.match(/[1-9]/)?"."+o:"",h=i.slice(0,a).join("")+c+"e"+(u>=0?"+":"")+s.toString();return r.sign+h}function kc(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=typeof t=="number"?Wt(n,n.exponent+1+t):n,u=r.coefficients,i=r.exponent+1,s=i+(t||0);return u.length<s&&(u=u.concat(ct(s-u.length))),i<0&&(u=ct(-i+1).concat(u),i=1),i<u.length&&u.splice(i,0,i===0?"0.":"."),r.sign+u.join("")}function jr(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=zt(e),r=t?Wt(n,t):n,u=r.coefficients,i=r.exponent;u.length<t&&(u=u.concat(ct(t-u.length)));var s=u.shift();return r.sign+s+(u.length>0?"."+u.join(""):"")+"e"+(i>=0?"+":"")+i}function jc(e,t,n){if(isNaN(e)||!isFinite(e))return String(e);var r=n&&n.lowerExp!==void 0?n.lowerExp:-3,u=n&&n.upperExp!==void 0?n.upperExp:5,i=zt(e),s=t?Wt(i,t):i;if(s.exponent<r||s.exponent>=u)return jr(e,t);var f=s.coefficients,l=s.exponent;f.length<t&&(f=f.concat(ct(t-f.length))),f=f.concat(ct(l-f.length+1+(f.length<t?t-f.length:0))),f=ct(-l).concat(f);var d=l>0?l:0;return d<f.length-1&&f.splice(d+1,0,"."),s.sign+f.join("")}function Wt(e,t){for(var n={sign:e.sign,coefficients:e.coefficients,exponent:e.exponent},r=n.coefficients;t<=0;)r.unshift(0),n.exponent++,t++;if(r.length>t){var u=r.splice(t,r.length-t);if(u[0]>=5){var i=t-1;for(r[i]++;r[i]===10;)r.pop(),i===0&&(r.unshift(0),n.exponent++,i++),i--,r[i]++}}return n}function ct(e){for(var t=[],n=0;n<e;n++)t.push(0);return t}function Uc(e){return e.toExponential().replace(/e.*$/,"").replace(/^0\.?0*|\./,"").length}var Vc=Number.EPSILON||2220446049250313e-31;function qc(e,t,n){if(n==null)return e===t;if(e===t)return!0;if(isNaN(e)||isNaN(t))return!1;if(isFinite(e)&&isFinite(t)){var r=Math.abs(e-t);return r<Vc?!0:r<=Math.max(Math.abs(e),Math.abs(t))*n}return!1}function On(e,t,n){var r=e.constructor,u=new r(2),i="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!Te(n))throw new Error("size must be an integer");if(e.greaterThan(u.pow(n-1).sub(1))||e.lessThan(u.pow(n-1).mul(-1)))throw new Error("Value must be in range [-2^".concat(n-1,", 2^").concat(n-1,"-1]"));if(!e.isInteger())throw new Error("Value must be an integer");e.lessThan(0)&&(e=e.add(u.pow(n))),i="i".concat(n)}switch(t){case 2:return"".concat(e.toBinary()).concat(i);case 8:return"".concat(e.toOctal()).concat(i);case 16:return"".concat(e.toHexadecimal()).concat(i);default:throw new Error("Base ".concat(t," not supported "))}}function Hc(e,t){if(typeof t=="function")return t(e);if(!e.isFinite())return e.isNaN()?"NaN":e.gt(0)?"Infinity":"-Infinity";var n="auto",r,u;if(t!==void 0&&(t.notation&&(n=t.notation),typeof t=="number"?r=t:t.precision&&(r=t.precision),t.wordSize&&(u=t.wordSize,typeof u!="number")))throw new Error('Option "wordSize" must be a number');switch(n){case"fixed":return Wc(e,r);case"exponential":return Ur(e,r);case"engineering":return zc(e,r);case"bin":return On(e,2,u);case"oct":return On(e,8,u);case"hex":return On(e,16,u);case"auto":{var i=t&&t.lowerExp!==void 0?t.lowerExp:-3,s=t&&t.upperExp!==void 0?t.upperExp:5;if(e.isZero())return"0";var f,l=e.toSignificantDigits(r),d=l.e;return d>=i&&d<s?f=l.toFixed():f=Ur(e,r),f.replace(/((\.\d*?)(0+))($|e)/,function(){var a=arguments[2],o=arguments[4];return a!=="."?a+o:o})}default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function zc(e,t){var n=e.e,r=n%3===0?n:n<0?n-3-n%3:n-n%3,u=e.mul(Math.pow(10,-r)),i=u.toPrecision(t);return i.indexOf("e")!==-1&&(i=u.toString()),i+"e"+(n>=0?"+":"")+r.toString()}function Ur(e,t){return t!==void 0?e.toExponential(t-1):e.toExponential()}function Wc(e,t){return e.toFixed(t)}function et(e,t){var n=Zc(e,t);return t&&typeof t=="object"&&"truncate"in t&&n.length>t.truncate?n.substring(0,t.truncate-3)+"...":n}function Zc(e,t){if(typeof e=="number")return Ln(e,t);if(Ze(e))return Hc(e,t);if(Xc(e))return!t||t.fraction!=="decimal"?e.s*e.n+"/"+e.d:e.toString();if(Array.isArray(e))return Vr(e,t);if(qt(e))return'"'+e+'"';if(typeof e=="function")return e.syntax?String(e.syntax):"function";if(e&&typeof e=="object"){if(typeof e.format=="function")return e.format(t);if(e&&e.toString(t)!=={}.toString())return e.toString(t);var n=Object.keys(e).map(r=>'"'+r+'": '+et(e[r],t));return"{"+n.join(", ")+"}"}return String(e)}function Vr(e,t){if(Array.isArray(e)){for(var n="[",r=e.length,u=0;u<r;u++)u!==0&&(n+=", "),n+=Vr(e[u],t);return n+="]",n}else return et(e,t)}function Xc(e){return e&&typeof e=="object"&&typeof e.s=="number"&&typeof e.n=="number"&&typeof e.d=="number"||!1}function re(e,t,n){if(!(this instanceof re))throw new SyntaxError("Constructor must be called with the new operator");this.actual=e,this.expected=t,this.relation=n,this.message="Dimension mismatch ("+(Array.isArray(e)?"["+e.join(", ")+"]":e)+" "+(this.relation||"!=")+" "+(Array.isArray(t)?"["+t.join(", ")+"]":t)+")",this.stack=new Error().stack}re.prototype=new RangeError,re.prototype.constructor=RangeError,re.prototype.name="DimensionError",re.prototype.isDimensionError=!0;function lt(e,t,n){if(!(this instanceof lt))throw new SyntaxError("Constructor must be called with the new operator");this.index=e,arguments.length<3?(this.min=0,this.max=t):(this.min=t,this.max=n),this.min!==void 0&&this.index<this.min?this.message="Index out of range ("+this.index+" < "+this.min+")":this.max!==void 0&&this.index>=this.max?this.message="Index out of range ("+this.index+" > "+(this.max-1)+")":this.message="Index out of range ("+this.index+")",this.stack=new Error().stack}lt.prototype=new RangeError,lt.prototype.constructor=RangeError,lt.prototype.name="IndexError",lt.prototype.isIndexError=!0;function Tn(e){for(var t=[];Array.isArray(e);)t.push(e.length),e=e[0];return t}function qr(e,t,n){var r,u=e.length;if(u!==t[n])throw new re(u,t[n]);if(n<t.length-1){var i=n+1;for(r=0;r<u;r++){var s=e[r];if(!Array.isArray(s))throw new re(t.length-1,t.length,"<");qr(e[r],t,i)}}else for(r=0;r<u;r++)if(Array.isArray(e[r]))throw new re(t.length+1,t.length,">")}function Hr(e,t){var n=t.length===0;if(n){if(Array.isArray(e))throw new re(e.length,0)}else qr(e,t,0)}function Me(e,t){if(!de(e)||!Te(e))throw new TypeError("Index must be an integer (value: "+e+")");if(e<0||typeof t=="number"&&e>=t)throw new lt(e,t)}function zr(e,t,n){if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(t.length===0)throw new Error("Resizing to scalar is not supported");t.forEach(function(u){if(!de(u)||!Te(u)||u<0)throw new TypeError("Invalid size, must contain positive integers (size: "+et(t)+")")});var r=n!==void 0?n:0;return Pn(e,t,0,r),e}function Pn(e,t,n,r){var u,i,s=e.length,f=t[n],l=Math.min(s,f);if(e.length=f,n<t.length-1){var d=n+1;for(u=0;u<l;u++)i=e[u],Array.isArray(i)||(i=[i],e[u]=i),Pn(i,t,d,r);for(u=l;u<f;u++)i=[],e[u]=i,Pn(i,t,d,r)}else{for(u=0;u<l;u++)for(;Array.isArray(e[u]);)e[u]=e[u][0];for(u=l;u<f;u++)e[u]=r}}function Jc(e,t){var n=Qc(e),r=n.length;if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(t.length===0)throw new re(0,r,"!=");t=Wr(t,r);var u=Zr(t);if(r!==u)throw new re(u,r,"!=");try{return Kc(n,t)}catch(i){throw i instanceof re?new re(u,r,"!="):i}}function Wr(e,t){var n=Zr(e),r=e.slice(),u=-1,i=e.indexOf(u),s=e.indexOf(u,i+1)>=0;if(s)throw new Error("More than one wildcard in sizes");var f=i>=0,l=t%n===0;if(f)if(l)r[i]=-t/n;else throw new Error("Could not replace wildcard, since "+t+" is no multiple of "+-n);return r}function Zr(e){return e.reduce((t,n)=>t*n,1)}function Kc(e,t){for(var n=e,r,u=t.length-1;u>0;u--){var i=t[u];r=[];for(var s=n.length/i,f=0;f<s;f++)r.push(n.slice(f*i,(f+1)*i));n=r}return n}function Gc(e,t,n,r){var u=r||Tn(e);if(n)for(var i=0;i<n;i++)e=[e],u.unshift(1);for(e=Xr(e,t,0);u.length<t;)u.push(1);return e}function Xr(e,t,n){var r,u;if(Array.isArray(e)){var i=n+1;for(r=0,u=e.length;r<u;r++)e[r]=Xr(e[r],t,i)}else for(var s=n;s<t;s++)e=[e];return e}function Qc(e){if(!Array.isArray(e))return e;var t=[];return e.forEach(function n(r){Array.isArray(r)?r.forEach(n):t.push(r)}),t}function kn(e,t){for(var n,r=0,u=0;u<e.length;u++){var i=e[u],s=Array.isArray(i);if(u===0&&s&&(r=i.length),s&&i.length!==r)return;var f=s?kn(i,t):t(i);if(n===void 0)n=f;else if(n!==f)return"mixed"}return n}function me(e,t,n,r){function u(i){var s=$c(i,t.map(tl));return Yc(e,t,i),n(s)}return u.isFactory=!0,u.fn=e,u.dependencies=t.slice().sort(),r&&(u.meta=r),u}function Yc(e,t,n){var r=t.filter(i=>!el(i)).every(i=>n[i]!==void 0);if(!r){var u=t.filter(i=>n[i]===void 0);throw new Error('Cannot create function "'.concat(e,'", ')+"some dependencies are missing: ".concat(u.map(i=>'"'.concat(i,'"')).join(", "),"."))}}function el(e){return e&&e[0]==="?"}function tl(e){return e&&e[0]==="?"?e.slice(1):e}function nl(e,t){if(Kr(e)&&Jr(e,t))return e[t];throw typeof e[t]=="function"&&il(e,t)?new Error('Cannot access method "'+t+'" as a property'):new Error('No access to property "'+t+'"')}function rl(e,t,n){if(Kr(e)&&Jr(e,t))return e[t]=n,n;throw new Error('No access to property "'+t+'"')}function ul(e,t){return t in e}function Jr(e,t){return!e||typeof e!="object"?!1:Ht(ol,t)?!0:!(t in Object.prototype||t in Function.prototype)}function il(e,t){return e==null||typeof e[t]!="function"||Ht(e,t)&&Object.getPrototypeOf&&t in Object.getPrototypeOf(e)?!1:Ht(al,t)?!0:!(t in Object.prototype||t in Function.prototype)}function Kr(e){return typeof e=="object"&&e&&e.constructor===Object}var ol={length:!0,name:!0},al={toString:!0,valueOf:!0,toLocaleString:!0};class sl{constructor(t){this.wrappedObject=t}keys(){return Object.keys(this.wrappedObject)}get(t){return nl(this.wrappedObject,t)}set(t,n){return rl(this.wrappedObject,t,n),this}has(t){return ul(this.wrappedObject,t)}}function cl(e){return e?e instanceof Map||e instanceof sl||typeof e.set=="function"&&typeof e.get=="function"&&typeof e.keys=="function"&&typeof e.has=="function":!1}var Gr=function(){return Gr=kr.create,kr},ll=["?BigNumber","?Complex","?DenseMatrix","?Fraction"],fl=me("typed",ll,function(t){var{BigNumber:n,Complex:r,DenseMatrix:u,Fraction:i}=t,s=Gr();return s.clear(),s.addTypes([{name:"number",test:de},{name:"Complex",test:Ir},{name:"BigNumber",test:Ze},{name:"Fraction",test:_r},{name:"Unit",test:Rr},{name:"identifier",test:f=>qt&&/^(?:[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])*$/.test(f)},{name:"string",test:qt},{name:"Chain",test:Rc},{name:"Array",test:we},{name:"Matrix",test:Mt},{name:"DenseMatrix",test:uc},{name:"SparseMatrix",test:ic},{name:"Range",test:oc},{name:"Index",test:xr},{name:"boolean",test:ac},{name:"ResultSet",test:sc},{name:"Help",test:cc},{name:"function",test:lc},{name:"Date",test:fc},{name:"RegExp",test:hc},{name:"null",test:pc},{name:"undefined",test:Dc},{name:"AccessorNode",test:gc},{name:"ArrayNode",test:vc},{name:"AssignmentNode",test:mc},{name:"BlockNode",test:Ec},{name:"ConditionalNode",test:Ac},{name:"ConstantNode",test:Cc},{name:"FunctionNode",test:yc},{name:"FunctionAssignmentNode",test:Fc},{name:"IndexNode",test:wc},{name:"Node",test:Bc},{name:"ObjectNode",test:bc},{name:"OperatorNode",test:Sc},{name:"ParenthesisNode",test:Mc},{name:"RangeNode",test:Nc},{name:"RelationalNode",test:Ic},{name:"SymbolNode",test:_c},{name:"Map",test:cl},{name:"Object",test:dc}]),s.addConversions([{from:"number",to:"BigNumber",convert:function(l){if(n||jn(l),Uc(l)>15)throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: "+l+"). Use function bignumber(x) to convert to BigNumber.");return new n(l)}},{from:"number",to:"Complex",convert:function(l){return r||Zt(l),new r(l,0)}},{from:"BigNumber",to:"Complex",convert:function(l){return r||Zt(l),new r(l.toNumber(),0)}},{from:"Fraction",to:"BigNumber",convert:function(l){throw new TypeError("Cannot implicitly convert a Fraction to BigNumber or vice versa. Use function bignumber(x) to convert to BigNumber or fraction(x) to convert to Fraction.")}},{from:"Fraction",to:"Complex",convert:function(l){return r||Zt(l),new r(l.valueOf(),0)}},{from:"number",to:"Fraction",convert:function(l){i||Un(l);var d=new i(l);if(d.valueOf()!==l)throw new TypeError("Cannot implicitly convert a number to a Fraction when there will be a loss of precision (value: "+l+"). Use function fraction(x) to convert to Fraction.");return d}},{from:"string",to:"number",convert:function(l){var d=Number(l);if(isNaN(d))throw new Error('Cannot convert "'+l+'" to a number');return d}},{from:"string",to:"BigNumber",convert:function(l){n||jn(l);try{return new n(l)}catch(d){throw new Error('Cannot convert "'+l+'" to BigNumber')}}},{from:"string",to:"Fraction",convert:function(l){i||Un(l);try{return new i(l)}catch(d){throw new Error('Cannot convert "'+l+'" to Fraction')}}},{from:"string",to:"Complex",convert:function(l){r||Zt(l);try{return new r(l)}catch(d){throw new Error('Cannot convert "'+l+'" to Complex')}}},{from:"boolean",to:"number",convert:function(l){return+l}},{from:"boolean",to:"BigNumber",convert:function(l){return n||jn(l),new n(+l)}},{from:"boolean",to:"Fraction",convert:function(l){return i||Un(l),new i(+l)}},{from:"boolean",to:"string",convert:function(l){return String(l)}},{from:"Array",to:"Matrix",convert:function(l){return u||hl(),new u(l)}},{from:"Matrix",to:"Array",convert:function(l){return l.valueOf()}}]),s.onMismatch=(f,l,d)=>{var a=s.createError(f,l,d);if(["wrongType","mismatch"].includes(a.data.category)&&l.length===1&&_n(l[0])&&d.some(c=>!c.params.includes(","))){var o=new TypeError("Function '".concat(f,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(f,")'."));throw o.data=a.data,o}throw a},s.onMismatch=(f,l,d)=>{var a=s.createError(f,l,d);if(["wrongType","mismatch"].includes(a.data.category)&&l.length===1&&_n(l[0])&&d.some(c=>!c.params.includes(","))){var o=new TypeError("Function '".concat(f,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(f,")'."));throw o.data=a.data,o}throw a},s});function jn(e){throw new Error("Cannot convert value ".concat(e," into a BigNumber: no class 'BigNumber' provided"))}function Zt(e){throw new Error("Cannot convert value ".concat(e," into a Complex number: no class 'Complex' provided"))}function hl(){throw new Error("Cannot convert array into a Matrix: no class 'DenseMatrix' provided")}function Un(e){throw new Error("Cannot convert value ".concat(e," into a Fraction, no class 'Fraction' provided."))}/*!
11
11
  * decimal.js v10.4.3
12
12
  * An arbitrary-precision Decimal type for JavaScript.
13
13
  * https://github.com/MikeMcl/decimal.js
14
14
  * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
15
15
  * MIT Licence
16
- */var ft=9e15,Xe=1e9,Vn="0123456789abcdef",Xt="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",Jt="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",qn={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-ft,maxE:ft,crypto:!1},Qr,Ve,j=!0,Kt="[DecimalError] ",Je=Kt+"Invalid argument: ",Yr=Kt+"Precision limit exceeded",eu=Kt+"crypto unavailable",tu="[object Decimal]",le=Math.floor,ee=Math.pow,dl=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,pl=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,Dl=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,nu=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,xe=1e7,P=7,gl=9007199254740991,vl=Xt.length-1,Hn=Jt.length-1,w={toStringTag:tu};w.absoluteValue=w.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),T(e)},w.ceil=function(){return T(new this.constructor(this),this.e+1,2)},w.clampedTo=w.clamp=function(e,t){var n,r=this,u=r.constructor;if(e=new u(e),t=new u(t),!e.s||!t.s)return new u(NaN);if(e.gt(t))throw Error(Je+t);return n=r.cmp(e),n<0?e:r.cmp(t)>0?t:new u(r)},w.comparedTo=w.cmp=function(e){var t,n,r,u,i=this,s=i.d,f=(e=new i.constructor(e)).d,l=i.s,d=e.s;if(!s||!f)return!l||!d?NaN:l!==d?l:s===f?0:!s^l<0?1:-1;if(!s[0]||!f[0])return s[0]?l:f[0]?-d:0;if(l!==d)return l;if(i.e!==e.e)return i.e>e.e^l<0?1:-1;for(r=s.length,u=f.length,t=0,n=r<u?r:u;t<n;++t)if(s[t]!==f[t])return s[t]>f[t]^l<0?1:-1;return r===u?0:r>u^l<0?1:-1},w.cosine=w.cos=function(){var e,t,n=this,r=n.constructor;return n.d?n.d[0]?(e=r.precision,t=r.rounding,r.precision=e+Math.max(n.e,n.sd())+P,r.rounding=1,n=ml(r,su(r,n)),r.precision=e,r.rounding=t,T(Ve==2||Ve==3?n.neg():n,e,t,!0)):new r(1):new r(NaN)},w.cubeRoot=w.cbrt=function(){var e,t,n,r,u,i,s,f,l,d,a=this,o=a.constructor;if(!a.isFinite()||a.isZero())return new o(a);for(j=!1,i=a.s*ee(a.s*a,1/3),!i||Math.abs(i)==1/0?(n=oe(a.d),e=a.e,(i=(e-n.length+1)%3)&&(n+=i==1||i==-2?"0":"00"),i=ee(n,1/3),e=le((e+1)/3)-(e%3==(e<0?-1:2)),i==1/0?n="5e"+e:(n=i.toExponential(),n=n.slice(0,n.indexOf("e")+1)+e),r=new o(n),r.s=a.s):r=new o(i.toString()),s=(e=o.precision)+3;;)if(f=r,l=f.times(f).times(f),d=l.plus(a),r=X(d.plus(a).times(f),d.plus(l),s+2,1),oe(f.d).slice(0,s)===(n=oe(r.d)).slice(0,s))if(n=n.slice(s-3,s+1),n=="9999"||!u&&n=="4999"){if(!u&&(T(f,e+1,0),f.times(f).times(f).eq(a))){r=f;break}s+=4,u=1}else{(!+n||!+n.slice(1)&&n.charAt(0)=="5")&&(T(r,e+1,1),t=!r.times(r).times(r).eq(a));break}return j=!0,T(r,e,o.rounding,t)},w.decimalPlaces=w.dp=function(){var e,t=this.d,n=NaN;if(t){if(e=t.length-1,n=(e-le(this.e/P))*P,e=t[e],e)for(;e%10==0;e/=10)n--;n<0&&(n=0)}return n},w.dividedBy=w.div=function(e){return X(this,new this.constructor(e))},w.dividedToIntegerBy=w.divToInt=function(e){var t=this,n=t.constructor;return T(X(t,new n(e),0,1,1),n.precision,n.rounding)},w.equals=w.eq=function(e){return this.cmp(e)===0},w.floor=function(){return T(new this.constructor(this),this.e+1,3)},w.greaterThan=w.gt=function(e){return this.cmp(e)>0},w.greaterThanOrEqualTo=w.gte=function(e){var t=this.cmp(e);return t==1||t===0},w.hyperbolicCosine=w.cosh=function(){var e,t,n,r,u,i=this,s=i.constructor,f=new s(1);if(!i.isFinite())return new s(i.s?1/0:NaN);if(i.isZero())return f;n=s.precision,r=s.rounding,s.precision=n+Math.max(i.e,i.sd())+4,s.rounding=1,u=i.d.length,u<32?(e=Math.ceil(u/3),t=(1/en(4,e)).toString()):(e=16,t="2.3283064365386962890625e-10"),i=ht(s,1,i.times(t),new s(1),!0);for(var l,d=e,a=new s(8);d--;)l=i.times(i),i=f.minus(l.times(a.minus(l.times(a))));return T(i,s.precision=n,s.rounding=r,!0)},w.hyperbolicSine=w.sinh=function(){var e,t,n,r,u=this,i=u.constructor;if(!u.isFinite()||u.isZero())return new i(u);if(t=i.precision,n=i.rounding,i.precision=t+Math.max(u.e,u.sd())+4,i.rounding=1,r=u.d.length,r<3)u=ht(i,2,u,u,!0);else{e=1.4*Math.sqrt(r),e=e>16?16:e|0,u=u.times(1/en(5,e)),u=ht(i,2,u,u,!0);for(var s,f=new i(5),l=new i(16),d=new i(20);e--;)s=u.times(u),u=u.times(f.plus(s.times(l.times(s).plus(d))))}return i.precision=t,i.rounding=n,T(u,t,n,!0)},w.hyperbolicTangent=w.tanh=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+7,r.rounding=1,X(n.sinh(),n.cosh(),r.precision=e,r.rounding=t)):new r(n.s)},w.inverseCosine=w.acos=function(){var e,t=this,n=t.constructor,r=t.abs().cmp(1),u=n.precision,i=n.rounding;return r!==-1?r===0?t.isNeg()?$e(n,u,i):new n(0):new n(NaN):t.isZero()?$e(n,u+4,i).times(.5):(n.precision=u+6,n.rounding=1,t=t.asin(),e=$e(n,u+4,i).times(.5),n.precision=u,n.rounding=i,e.minus(t))},w.inverseHyperbolicCosine=w.acosh=function(){var e,t,n=this,r=n.constructor;return n.lte(1)?new r(n.eq(1)?0:NaN):n.isFinite()?(e=r.precision,t=r.rounding,r.precision=e+Math.max(Math.abs(n.e),n.sd())+4,r.rounding=1,j=!1,n=n.times(n).minus(1).sqrt().plus(n),j=!0,r.precision=e,r.rounding=t,n.ln()):new r(n)},w.inverseHyperbolicSine=w.asinh=function(){var e,t,n=this,r=n.constructor;return!n.isFinite()||n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+2*Math.max(Math.abs(n.e),n.sd())+6,r.rounding=1,j=!1,n=n.times(n).plus(1).sqrt().plus(n),j=!0,r.precision=e,r.rounding=t,n.ln())},w.inverseHyperbolicTangent=w.atanh=function(){var e,t,n,r,u=this,i=u.constructor;return u.isFinite()?u.e>=0?new i(u.abs().eq(1)?u.s/0:u.isZero()?u:NaN):(e=i.precision,t=i.rounding,r=u.sd(),Math.max(r,e)<2*-u.e-1?T(new i(u),e,t,!0):(i.precision=n=r-u.e,u=X(u.plus(1),new i(1).minus(u),n+e,1),i.precision=e+4,i.rounding=1,u=u.ln(),i.precision=e,i.rounding=t,u.times(.5))):new i(NaN)},w.inverseSine=w.asin=function(){var e,t,n,r,u=this,i=u.constructor;return u.isZero()?new i(u):(t=u.abs().cmp(1),n=i.precision,r=i.rounding,t!==-1?t===0?(e=$e(i,n+4,r).times(.5),e.s=u.s,e):new i(NaN):(i.precision=n+6,i.rounding=1,u=u.div(new i(1).minus(u.times(u)).sqrt().plus(1)).atan(),i.precision=n,i.rounding=r,u.times(2)))},w.inverseTangent=w.atan=function(){var e,t,n,r,u,i,s,f,l,d=this,a=d.constructor,o=a.precision,c=a.rounding;if(d.isFinite()){if(d.isZero())return new a(d);if(d.abs().eq(1)&&o+4<=Hn)return s=$e(a,o+4,c).times(.25),s.s=d.s,s}else{if(!d.s)return new a(NaN);if(o+4<=Hn)return s=$e(a,o+4,c).times(.5),s.s=d.s,s}for(a.precision=f=o+10,a.rounding=1,n=Math.min(28,f/P+2|0),e=n;e;--e)d=d.div(d.times(d).plus(1).sqrt().plus(1));for(j=!1,t=Math.ceil(f/P),r=1,l=d.times(d),s=new a(d),u=d;e!==-1;)if(u=u.times(l),i=s.minus(u.div(r+=2)),u=u.times(l),s=i.plus(u.div(r+=2)),s.d[t]!==void 0)for(e=t;s.d[e]===i.d[e]&&e--;);return n&&(s=s.times(2<<n-1)),j=!0,T(s,a.precision=o,a.rounding=c,!0)},w.isFinite=function(){return!!this.d},w.isInteger=w.isInt=function(){return!!this.d&&le(this.e/P)>this.d.length-2},w.isNaN=function(){return!this.s},w.isNegative=w.isNeg=function(){return this.s<0},w.isPositive=w.isPos=function(){return this.s>0},w.isZero=function(){return!!this.d&&this.d[0]===0},w.lessThan=w.lt=function(e){return this.cmp(e)<0},w.lessThanOrEqualTo=w.lte=function(e){return this.cmp(e)<1},w.logarithm=w.log=function(e){var t,n,r,u,i,s,f,l,d=this,a=d.constructor,o=a.precision,c=a.rounding,h=5;if(e==null)e=new a(10),t=!0;else{if(e=new a(e),n=e.d,e.s<0||!n||!n[0]||e.eq(1))return new a(NaN);t=e.eq(10)}if(n=d.d,d.s<0||!n||!n[0]||d.eq(1))return new a(n&&!n[0]?-1/0:d.s!=1?NaN:n?0:1/0);if(t)if(n.length>1)i=!0;else{for(u=n[0];u%10===0;)u/=10;i=u!==1}if(j=!1,f=o+h,s=Ge(d,f),r=t?Yt(a,f+10):Ge(e,f),l=X(s,r,f,1),Nt(l.d,u=o,c))do if(f+=10,s=Ge(d,f),r=t?Yt(a,f+10):Ge(e,f),l=X(s,r,f,1),!i){+oe(l.d).slice(u+1,u+15)+1==1e14&&(l=T(l,o+1,0));break}while(Nt(l.d,u+=10,c));return j=!0,T(l,o,c)},w.minus=w.sub=function(e){var t,n,r,u,i,s,f,l,d,a,o,c,h=this,p=h.constructor;if(e=new p(e),!h.d||!e.d)return!h.s||!e.s?e=new p(NaN):h.d?e.s=-e.s:e=new p(e.d||h.s!==e.s?h:NaN),e;if(h.s!=e.s)return e.s=-e.s,h.plus(e);if(d=h.d,c=e.d,f=p.precision,l=p.rounding,!d[0]||!c[0]){if(c[0])e.s=-e.s;else if(d[0])e=new p(h);else return new p(l===3?-0:0);return j?T(e,f,l):e}if(n=le(e.e/P),a=le(h.e/P),d=d.slice(),i=a-n,i){for(o=i<0,o?(t=d,i=-i,s=c.length):(t=c,n=a,s=d.length),r=Math.max(Math.ceil(f/P),s)+2,i>r&&(i=r,t.length=1),t.reverse(),r=i;r--;)t.push(0);t.reverse()}else{for(r=d.length,s=c.length,o=r<s,o&&(s=r),r=0;r<s;r++)if(d[r]!=c[r]){o=d[r]<c[r];break}i=0}for(o&&(t=d,d=c,c=t,e.s=-e.s),s=d.length,r=c.length-s;r>0;--r)d[s++]=0;for(r=c.length;r>i;){if(d[--r]<c[r]){for(u=r;u&&d[--u]===0;)d[u]=xe-1;--d[u],d[r]+=xe}d[r]-=c[r]}for(;d[--s]===0;)d.pop();for(;d[0]===0;d.shift())--n;return d[0]?(e.d=d,e.e=Qt(d,n),j?T(e,f,l):e):new p(l===3?-0:0)},w.modulo=w.mod=function(e){var t,n=this,r=n.constructor;return e=new r(e),!n.d||!e.s||e.d&&!e.d[0]?new r(NaN):!e.d||n.d&&!n.d[0]?T(new r(n),r.precision,r.rounding):(j=!1,r.modulo==9?(t=X(n,e.abs(),0,3,1),t.s*=e.s):t=X(n,e,0,r.modulo,1),t=t.times(e),j=!0,n.minus(t))},w.naturalExponential=w.exp=function(){return zn(this)},w.naturalLogarithm=w.ln=function(){return Ge(this)},w.negated=w.neg=function(){var e=new this.constructor(this);return e.s=-e.s,T(e)},w.plus=w.add=function(e){var t,n,r,u,i,s,f,l,d,a,o=this,c=o.constructor;if(e=new c(e),!o.d||!e.d)return!o.s||!e.s?e=new c(NaN):o.d||(e=new c(e.d||o.s===e.s?o:NaN)),e;if(o.s!=e.s)return e.s=-e.s,o.minus(e);if(d=o.d,a=e.d,f=c.precision,l=c.rounding,!d[0]||!a[0])return a[0]||(e=new c(o)),j?T(e,f,l):e;if(i=le(o.e/P),r=le(e.e/P),d=d.slice(),u=i-r,u){for(u<0?(n=d,u=-u,s=a.length):(n=a,r=i,s=d.length),i=Math.ceil(f/P),s=i>s?i+1:s+1,u>s&&(u=s,n.length=1),n.reverse();u--;)n.push(0);n.reverse()}for(s=d.length,u=a.length,s-u<0&&(u=s,n=a,a=d,d=n),t=0;u;)t=(d[--u]=d[u]+a[u]+t)/xe|0,d[u]%=xe;for(t&&(d.unshift(t),++r),s=d.length;d[--s]==0;)d.pop();return e.d=d,e.e=Qt(d,r),j?T(e,f,l):e},w.precision=w.sd=function(e){var t,n=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(Je+e);return n.d?(t=ru(n.d),e&&n.e+1>t&&(t=n.e+1)):t=NaN,t},w.round=function(){var e=this,t=e.constructor;return T(new t(e),e.e+1,t.rounding)},w.sine=w.sin=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+Math.max(n.e,n.sd())+P,r.rounding=1,n=Al(r,su(r,n)),r.precision=e,r.rounding=t,T(Ve>2?n.neg():n,e,t,!0)):new r(NaN)},w.squareRoot=w.sqrt=function(){var e,t,n,r,u,i,s=this,f=s.d,l=s.e,d=s.s,a=s.constructor;if(d!==1||!f||!f[0])return new a(!d||d<0&&(!f||f[0])?NaN:f?s:1/0);for(j=!1,d=Math.sqrt(+s),d==0||d==1/0?(t=oe(f),(t.length+l)%2==0&&(t+="0"),d=Math.sqrt(t),l=le((l+1)/2)-(l<0||l%2),d==1/0?t="5e"+l:(t=d.toExponential(),t=t.slice(0,t.indexOf("e")+1)+l),r=new a(t)):r=new a(d.toString()),n=(l=a.precision)+3;;)if(i=r,r=i.plus(X(s,i,n+2,1)).times(.5),oe(i.d).slice(0,n)===(t=oe(r.d)).slice(0,n))if(t=t.slice(n-3,n+1),t=="9999"||!u&&t=="4999"){if(!u&&(T(i,l+1,0),i.times(i).eq(s))){r=i;break}n+=4,u=1}else{(!+t||!+t.slice(1)&&t.charAt(0)=="5")&&(T(r,l+1,1),e=!r.times(r).eq(s));break}return j=!0,T(r,l,a.rounding,e)},w.tangent=w.tan=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+10,r.rounding=1,n=n.sin(),n.s=1,n=X(n,new r(1).minus(n.times(n)).sqrt(),e+10,0),r.precision=e,r.rounding=t,T(Ve==2||Ve==4?n.neg():n,e,t,!0)):new r(NaN)},w.times=w.mul=function(e){var t,n,r,u,i,s,f,l,d,a=this,o=a.constructor,c=a.d,h=(e=new o(e)).d;if(e.s*=a.s,!c||!c[0]||!h||!h[0])return new o(!e.s||c&&!c[0]&&!h||h&&!h[0]&&!c?NaN:!c||!h?e.s/0:e.s*0);for(n=le(a.e/P)+le(e.e/P),l=c.length,d=h.length,l<d&&(i=c,c=h,h=i,s=l,l=d,d=s),i=[],s=l+d,r=s;r--;)i.push(0);for(r=d;--r>=0;){for(t=0,u=l+r;u>r;)f=i[u]+h[r]*c[u-r-1]+t,i[u--]=f%xe|0,t=f/xe|0;i[u]=(i[u]+t)%xe|0}for(;!i[--s];)i.pop();return t?++n:i.shift(),e.d=i,e.e=Qt(i,n),j?T(e,o.precision,o.rounding):e},w.toBinary=function(e,t){return Zn(this,2,e,t)},w.toDecimalPlaces=w.toDP=function(e,t){var n=this,r=n.constructor;return n=new r(n),e===void 0?n:(Ee(e,0,Xe),t===void 0?t=r.rounding:Ee(t,0,8),T(n,e+n.e+1,t))},w.toExponential=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Pe(r,!0):(Ee(e,0,Xe),t===void 0?t=u.rounding:Ee(t,0,8),r=T(new u(r),e+1,t),n=Pe(r,!0,e+1)),r.isNeg()&&!r.isZero()?"-"+n:n},w.toFixed=function(e,t){var n,r,u=this,i=u.constructor;return e===void 0?n=Pe(u):(Ee(e,0,Xe),t===void 0?t=i.rounding:Ee(t,0,8),r=T(new i(u),e+u.e+1,t),n=Pe(r,!1,e+r.e+1)),u.isNeg()&&!u.isZero()?"-"+n:n},w.toFraction=function(e){var t,n,r,u,i,s,f,l,d,a,o,c,h=this,p=h.d,D=h.constructor;if(!p)return new D(h);if(d=n=new D(1),r=l=new D(0),t=new D(r),i=t.e=ru(p)-h.e-1,s=i%P,t.d[0]=ee(10,s<0?P+s:s),e==null)e=i>0?t:d;else{if(f=new D(e),!f.isInt()||f.lt(d))throw Error(Je+f);e=f.gt(t)?i>0?t:d:f}for(j=!1,f=new D(oe(p)),a=D.precision,D.precision=i=p.length*P*2;o=X(f,t,0,1,1),u=n.plus(o.times(r)),u.cmp(e)!=1;)n=r,r=u,u=d,d=l.plus(o.times(u)),l=u,u=t,t=f.minus(o.times(u)),f=u;return u=X(e.minus(n),r,0,1,1),l=l.plus(u.times(d)),n=n.plus(u.times(r)),l.s=d.s=h.s,c=X(d,r,i,1).minus(h).abs().cmp(X(l,n,i,1).minus(h).abs())<1?[d,r]:[l,n],D.precision=a,j=!0,c},w.toHexadecimal=w.toHex=function(e,t){return Zn(this,16,e,t)},w.toNearest=function(e,t){var n=this,r=n.constructor;if(n=new r(n),e==null){if(!n.d)return n;e=new r(1),t=r.rounding}else{if(e=new r(e),t===void 0?t=r.rounding:Ee(t,0,8),!n.d)return e.s?n:e;if(!e.d)return e.s&&(e.s=n.s),e}return e.d[0]?(j=!1,n=X(n,e,0,t,1).times(e),j=!0,T(n)):(e.s=n.s,n=e),n},w.toNumber=function(){return+this},w.toOctal=function(e,t){return Zn(this,8,e,t)},w.toPower=w.pow=function(e){var t,n,r,u,i,s,f=this,l=f.constructor,d=+(e=new l(e));if(!f.d||!e.d||!f.d[0]||!e.d[0])return new l(ee(+f,d));if(f=new l(f),f.eq(1))return f;if(r=l.precision,i=l.rounding,e.eq(1))return T(f,r,i);if(t=le(e.e/P),t>=e.d.length-1&&(n=d<0?-d:d)<=gl)return u=uu(l,f,n,r),e.s<0?new l(1).div(u):T(u,r,i);if(s=f.s,s<0){if(t<e.d.length-1)return new l(NaN);if((e.d[t]&1)==0&&(s=1),f.e==0&&f.d[0]==1&&f.d.length==1)return f.s=s,f}return n=ee(+f,d),t=n==0||!isFinite(n)?le(d*(Math.log("0."+oe(f.d))/Math.LN10+f.e+1)):new l(n+"").e,t>l.maxE+1||t<l.minE-1?new l(t>0?s/0:0):(j=!1,l.rounding=f.s=1,n=Math.min(12,(t+"").length),u=zn(e.times(Ge(f,r+n)),r),u.d&&(u=T(u,r+5,1),Nt(u.d,r,i)&&(t=r+10,u=T(zn(e.times(Ge(f,t+n)),t),t+5,1),+oe(u.d).slice(r+1,r+15)+1==1e14&&(u=T(u,r+1,0)))),u.s=s,j=!0,l.rounding=i,T(u,r,i))},w.toPrecision=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Pe(r,r.e<=u.toExpNeg||r.e>=u.toExpPos):(Ee(e,1,Xe),t===void 0?t=u.rounding:Ee(t,0,8),r=T(new u(r),e,t),n=Pe(r,e<=r.e||r.e<=u.toExpNeg,e)),r.isNeg()&&!r.isZero()?"-"+n:n},w.toSignificantDigits=w.toSD=function(e,t){var n=this,r=n.constructor;return e===void 0?(e=r.precision,t=r.rounding):(Ee(e,1,Xe),t===void 0?t=r.rounding:Ee(t,0,8)),T(new r(n),e,t)},w.toString=function(){var e=this,t=e.constructor,n=Pe(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()&&!e.isZero()?"-"+n:n},w.truncated=w.trunc=function(){return T(new this.constructor(this),this.e+1,1)},w.valueOf=w.toJSON=function(){var e=this,t=e.constructor,n=Pe(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()?"-"+n:n};function oe(e){var t,n,r,u=e.length-1,i="",s=e[0];if(u>0){for(i+=s,t=1;t<u;t++)r=e[t]+"",n=P-r.length,n&&(i+=Ke(n)),i+=r;s=e[t],r=s+"",n=P-r.length,n&&(i+=Ke(n))}else if(s===0)return"0";for(;s%10===0;)s/=10;return i+s}function Ee(e,t,n){if(e!==~~e||e<t||e>n)throw Error(Je+e)}function Nt(e,t,n,r){var u,i,s,f;for(i=e[0];i>=10;i/=10)--t;return--t<0?(t+=P,u=0):(u=Math.ceil((t+1)/P),t%=P),i=ee(10,P-t),f=e[u]%i|0,r==null?t<3?(t==0?f=f/100|0:t==1&&(f=f/10|0),s=n<4&&f==99999||n>3&&f==49999||f==5e4||f==0):s=(n<4&&f+1==i||n>3&&f+1==i/2)&&(e[u+1]/i/100|0)==ee(10,t-2)-1||(f==i/2||f==0)&&(e[u+1]/i/100|0)==0:t<4?(t==0?f=f/1e3|0:t==1?f=f/100|0:t==2&&(f=f/10|0),s=(r||n<4)&&f==9999||!r&&n>3&&f==4999):s=((r||n<4)&&f+1==i||!r&&n>3&&f+1==i/2)&&(e[u+1]/i/1e3|0)==ee(10,t-3)-1,s}function Gt(e,t,n){for(var r,u=[0],i,s=0,f=e.length;s<f;){for(i=u.length;i--;)u[i]*=t;for(u[0]+=Vn.indexOf(e.charAt(s++)),r=0;r<u.length;r++)u[r]>n-1&&(u[r+1]===void 0&&(u[r+1]=0),u[r+1]+=u[r]/n|0,u[r]%=n)}return u.reverse()}function ml(e,t){var n,r,u;if(t.isZero())return t;r=t.d.length,r<32?(n=Math.ceil(r/3),u=(1/en(4,n)).toString()):(n=16,u="2.3283064365386962890625e-10"),e.precision+=n,t=ht(e,1,t.times(u),new e(1));for(var i=n;i--;){var s=t.times(t);t=s.times(s).minus(s).times(8).plus(1)}return e.precision-=n,t}var X=function(){function e(r,u,i){var s,f=0,l=r.length;for(r=r.slice();l--;)s=r[l]*u+f,r[l]=s%i|0,f=s/i|0;return f&&r.unshift(f),r}function t(r,u,i,s){var f,l;if(i!=s)l=i>s?1:-1;else for(f=l=0;f<i;f++)if(r[f]!=u[f]){l=r[f]>u[f]?1:-1;break}return l}function n(r,u,i,s){for(var f=0;i--;)r[i]-=f,f=r[i]<u[i]?1:0,r[i]=f*s+r[i]-u[i];for(;!r[0]&&r.length>1;)r.shift()}return function(r,u,i,s,f,l){var d,a,o,c,h,p,D,m,g,C,F,b,R,L,k,I,$,J,V,G,Q=r.constructor,pe=r.s==u.s?1:-1,K=r.d,q=u.d;if(!K||!K[0]||!q||!q[0])return new Q(!r.s||!u.s||(K?q&&K[0]==q[0]:!q)?NaN:K&&K[0]==0||!q?pe*0:pe/0);for(l?(h=1,a=r.e-u.e):(l=xe,h=P,a=le(r.e/h)-le(u.e/h)),V=q.length,$=K.length,g=new Q(pe),C=g.d=[],o=0;q[o]==(K[o]||0);o++);if(q[o]>(K[o]||0)&&a--,i==null?(L=i=Q.precision,s=Q.rounding):f?L=i+(r.e-u.e)+1:L=i,L<0)C.push(1),p=!0;else{if(L=L/h+2|0,o=0,V==1){for(c=0,q=q[0],L++;(o<$||c)&&L--;o++)k=c*l+(K[o]||0),C[o]=k/q|0,c=k%q|0;p=c||o<$}else{for(c=l/(q[0]+1)|0,c>1&&(q=e(q,c,l),K=e(K,c,l),V=q.length,$=K.length),I=V,F=K.slice(0,V),b=F.length;b<V;)F[b++]=0;G=q.slice(),G.unshift(0),J=q[0],q[1]>=l/2&&++J;do c=0,d=t(q,F,V,b),d<0?(R=F[0],V!=b&&(R=R*l+(F[1]||0)),c=R/J|0,c>1?(c>=l&&(c=l-1),D=e(q,c,l),m=D.length,b=F.length,d=t(D,F,m,b),d==1&&(c--,n(D,V<m?G:q,m,l))):(c==0&&(d=c=1),D=q.slice()),m=D.length,m<b&&D.unshift(0),n(F,D,b,l),d==-1&&(b=F.length,d=t(q,F,V,b),d<1&&(c++,n(F,V<b?G:q,b,l))),b=F.length):d===0&&(c++,F=[0]),C[o++]=c,d&&F[0]?F[b++]=K[I]||0:(F=[K[I]],b=1);while((I++<$||F[0]!==void 0)&&L--);p=F[0]!==void 0}C[0]||C.shift()}if(h==1)g.e=a,Qr=p;else{for(o=1,c=C[0];c>=10;c/=10)o++;g.e=o+a*h-1,T(g,f?i+g.e+1:i,s,p)}return g}}();function T(e,t,n,r){var u,i,s,f,l,d,a,o,c,h=e.constructor;e:if(t!=null){if(o=e.d,!o)return e;for(u=1,f=o[0];f>=10;f/=10)u++;if(i=t-u,i<0)i+=P,s=t,a=o[c=0],l=a/ee(10,u-s-1)%10|0;else if(c=Math.ceil((i+1)/P),f=o.length,c>=f)if(r){for(;f++<=c;)o.push(0);a=l=0,u=1,i%=P,s=i-P+1}else break e;else{for(a=f=o[c],u=1;f>=10;f/=10)u++;i%=P,s=i-P+u,l=s<0?0:a/ee(10,u-s-1)%10|0}if(r=r||t<0||o[c+1]!==void 0||(s<0?a:a%ee(10,u-s-1)),d=n<4?(l||r)&&(n==0||n==(e.s<0?3:2)):l>5||l==5&&(n==4||r||n==6&&(i>0?s>0?a/ee(10,u-s):0:o[c-1])%10&1||n==(e.s<0?8:7)),t<1||!o[0])return o.length=0,d?(t-=e.e+1,o[0]=ee(10,(P-t%P)%P),e.e=-t||0):o[0]=e.e=0,e;if(i==0?(o.length=c,f=1,c--):(o.length=c+1,f=ee(10,P-i),o[c]=s>0?(a/ee(10,u-s)%ee(10,s)|0)*f:0),d)for(;;)if(c==0){for(i=1,s=o[0];s>=10;s/=10)i++;for(s=o[0]+=f,f=1;s>=10;s/=10)f++;i!=f&&(e.e++,o[0]==xe&&(o[0]=1));break}else{if(o[c]+=f,o[c]!=xe)break;o[c--]=0,f=1}for(i=o.length;o[--i]===0;)o.pop()}return j&&(e.e>h.maxE?(e.d=null,e.e=NaN):e.e<h.minE&&(e.e=0,e.d=[0])),e}function Pe(e,t,n){if(!e.isFinite())return au(e);var r,u=e.e,i=oe(e.d),s=i.length;return t?(n&&(r=n-s)>0?i=i.charAt(0)+"."+i.slice(1)+Ke(r):s>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(e.e<0?"e":"e+")+e.e):u<0?(i="0."+Ke(-u-1)+i,n&&(r=n-s)>0&&(i+=Ke(r))):u>=s?(i+=Ke(u+1-s),n&&(r=n-u-1)>0&&(i=i+"."+Ke(r))):((r=u+1)<s&&(i=i.slice(0,r)+"."+i.slice(r)),n&&(r=n-s)>0&&(u+1===s&&(i+="."),i+=Ke(r))),i}function Qt(e,t){var n=e[0];for(t*=P;n>=10;n/=10)t++;return t}function Yt(e,t,n){if(t>vl)throw j=!0,n&&(e.precision=n),Error(Yr);return T(new e(Xt),t,1,!0)}function $e(e,t,n){if(t>Hn)throw Error(Yr);return T(new e(Jt),t,n,!0)}function ru(e){var t=e.length-1,n=t*P+1;if(t=e[t],t){for(;t%10==0;t/=10)n--;for(t=e[0];t>=10;t/=10)n++}return n}function Ke(e){for(var t="";e--;)t+="0";return t}function uu(e,t,n,r){var u,i=new e(1),s=Math.ceil(r/P+4);for(j=!1;;){if(n%2&&(i=i.times(t),cu(i.d,s)&&(u=!0)),n=le(n/2),n===0){n=i.d.length-1,u&&i.d[n]===0&&++i.d[n];break}t=t.times(t),cu(t.d,s)}return j=!0,i}function iu(e){return e.d[e.d.length-1]&1}function ou(e,t,n){for(var r,u=new e(t[0]),i=0;++i<t.length;)if(r=new e(t[i]),r.s)u[n](r)&&(u=r);else{u=r;break}return u}function zn(e,t){var n,r,u,i,s,f,l,d=0,a=0,o=0,c=e.constructor,h=c.rounding,p=c.precision;if(!e.d||!e.d[0]||e.e>17)return new c(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:0/0);for(t==null?(j=!1,l=p):l=t,f=new c(.03125);e.e>-2;)e=e.times(f),o+=5;for(r=Math.log(ee(2,o))/Math.LN10*2+5|0,l+=r,n=i=s=new c(1),c.precision=l;;){if(i=T(i.times(e),l,1),n=n.times(++a),f=s.plus(X(i,n,l,1)),oe(f.d).slice(0,l)===oe(s.d).slice(0,l)){for(u=o;u--;)s=T(s.times(s),l,1);if(t==null)if(d<3&&Nt(s.d,l-r,h,d))c.precision=l+=10,n=i=f=new c(1),a=0,d++;else return T(s,c.precision=p,h,j=!0);else return c.precision=p,s}s=f}}function Ge(e,t){var n,r,u,i,s,f,l,d,a,o,c,h=1,p=10,D=e,m=D.d,g=D.constructor,C=g.rounding,F=g.precision;if(D.s<0||!m||!m[0]||!D.e&&m[0]==1&&m.length==1)return new g(m&&!m[0]?-1/0:D.s!=1?NaN:m?0:D);if(t==null?(j=!1,a=F):a=t,g.precision=a+=p,n=oe(m),r=n.charAt(0),Math.abs(i=D.e)<15e14){for(;r<7&&r!=1||r==1&&n.charAt(1)>3;)D=D.times(e),n=oe(D.d),r=n.charAt(0),h++;i=D.e,r>1?(D=new g("0."+n),i++):D=new g(r+"."+n.slice(1))}else return d=Yt(g,a+2,F).times(i+""),D=Ge(new g(r+"."+n.slice(1)),a-p).plus(d),g.precision=F,t==null?T(D,F,C,j=!0):D;for(o=D,l=s=D=X(D.minus(1),D.plus(1),a,1),c=T(D.times(D),a,1),u=3;;){if(s=T(s.times(c),a,1),d=l.plus(X(s,new g(u),a,1)),oe(d.d).slice(0,a)===oe(l.d).slice(0,a))if(l=l.times(2),i!==0&&(l=l.plus(Yt(g,a+2,F).times(i+""))),l=X(l,new g(h),a,1),t==null)if(Nt(l.d,a-p,C,f))g.precision=a+=p,d=s=D=X(o.minus(1),o.plus(1),a,1),c=T(D.times(D),a,1),u=f=1;else return T(l,g.precision=F,C,j=!0);else return g.precision=F,l;l=d,u+=2}}function au(e){return String(e.s*e.s/0)}function Wn(e,t){var n,r,u;for((n=t.indexOf("."))>-1&&(t=t.replace(".","")),(r=t.search(/e/i))>0?(n<0&&(n=r),n+=+t.slice(r+1),t=t.substring(0,r)):n<0&&(n=t.length),r=0;t.charCodeAt(r)===48;r++);for(u=t.length;t.charCodeAt(u-1)===48;--u);if(t=t.slice(r,u),t){if(u-=r,e.e=n=n-r-1,e.d=[],r=(n+1)%P,n<0&&(r+=P),r<u){for(r&&e.d.push(+t.slice(0,r)),u-=P;r<u;)e.d.push(+t.slice(r,r+=P));t=t.slice(r),r=P-t.length}else r-=u;for(;r--;)t+="0";e.d.push(+t),j&&(e.e>e.constructor.maxE?(e.d=null,e.e=NaN):e.e<e.constructor.minE&&(e.e=0,e.d=[0]))}else e.e=0,e.d=[0];return e}function El(e,t){var n,r,u,i,s,f,l,d,a;if(t.indexOf("_")>-1){if(t=t.replace(/(\d)_(?=\d)/g,"$1"),nu.test(t))return Wn(e,t)}else if(t==="Infinity"||t==="NaN")return+t||(e.s=NaN),e.e=NaN,e.d=null,e;if(pl.test(t))n=16,t=t.toLowerCase();else if(dl.test(t))n=2;else if(Dl.test(t))n=8;else throw Error(Je+t);for(i=t.search(/p/i),i>0?(l=+t.slice(i+1),t=t.substring(2,i)):t=t.slice(2),i=t.indexOf("."),s=i>=0,r=e.constructor,s&&(t=t.replace(".",""),f=t.length,i=f-i,u=uu(r,new r(n),i,i*2)),d=Gt(t,n,xe),a=d.length-1,i=a;d[i]===0;--i)d.pop();return i<0?new r(e.s*0):(e.e=Qt(d,a),e.d=d,j=!1,s&&(e=X(e,u,f*4)),l&&(e=e.times(Math.abs(l)<54?ee(2,l):dt.pow(2,l))),j=!0,e)}function Al(e,t){var n,r=t.d.length;if(r<3)return t.isZero()?t:ht(e,2,t,t);n=1.4*Math.sqrt(r),n=n>16?16:n|0,t=t.times(1/en(5,n)),t=ht(e,2,t,t);for(var u,i=new e(5),s=new e(16),f=new e(20);n--;)u=t.times(t),t=t.times(i.plus(u.times(s.times(u).minus(f))));return t}function ht(e,t,n,r,u){var i,s,f,l,d=e.precision,a=Math.ceil(d/P);for(j=!1,l=n.times(n),f=new e(r);;){if(s=X(f.times(l),new e(t++*t++),d,1),f=u?r.plus(s):r.minus(s),r=X(s.times(l),new e(t++*t++),d,1),s=f.plus(r),s.d[a]!==void 0){for(i=a;s.d[i]===f.d[i]&&i--;);if(i==-1)break}i=f,f=r,r=s,s=i}return j=!0,s.d.length=a+1,s}function en(e,t){for(var n=e;--t;)n*=e;return n}function su(e,t){var n,r=t.s<0,u=$e(e,e.precision,1),i=u.times(.5);if(t=t.abs(),t.lte(i))return Ve=r?4:1,t;if(n=t.divToInt(u),n.isZero())Ve=r?3:2;else{if(t=t.minus(n.times(u)),t.lte(i))return Ve=iu(n)?r?2:3:r?4:1,t;Ve=iu(n)?r?1:4:r?3:2}return t.minus(u).abs()}function Zn(e,t,n,r){var u,i,s,f,l,d,a,o,c,h=e.constructor,p=n!==void 0;if(p?(Ee(n,1,Xe),r===void 0?r=h.rounding:Ee(r,0,8)):(n=h.precision,r=h.rounding),!e.isFinite())a=au(e);else{for(a=Pe(e),s=a.indexOf("."),p?(u=2,t==16?n=n*4-3:t==8&&(n=n*3-2)):u=t,s>=0&&(a=a.replace(".",""),c=new h(1),c.e=a.length-s,c.d=Gt(Pe(c),10,u),c.e=c.d.length),o=Gt(a,10,u),i=l=o.length;o[--l]==0;)o.pop();if(!o[0])a=p?"0p+0":"0";else{if(s<0?i--:(e=new h(e),e.d=o,e.e=i,e=X(e,c,n,r,0,u),o=e.d,i=e.e,d=Qr),s=o[n],f=u/2,d=d||o[n+1]!==void 0,d=r<4?(s!==void 0||d)&&(r===0||r===(e.s<0?3:2)):s>f||s===f&&(r===4||d||r===6&&o[n-1]&1||r===(e.s<0?8:7)),o.length=n,d)for(;++o[--n]>u-1;)o[n]=0,n||(++i,o.unshift(1));for(l=o.length;!o[l-1];--l);for(s=0,a="";s<l;s++)a+=Vn.charAt(o[s]);if(p){if(l>1)if(t==16||t==8){for(s=t==16?4:3,--l;l%s;l++)a+="0";for(o=Gt(a,u,t),l=o.length;!o[l-1];--l);for(s=1,a="1.";s<l;s++)a+=Vn.charAt(o[s])}else a=a.charAt(0)+"."+a.slice(1);a=a+(i<0?"p":"p+")+i}else if(i<0){for(;++i;)a="0"+a;a="0."+a}else if(++i>l)for(i-=l;i--;)a+="0";else i<l&&(a=a.slice(0,i)+"."+a.slice(i))}a=(t==16?"0x":t==2?"0b":t==8?"0o":"")+a}return e.s<0?"-"+a:a}function cu(e,t){if(e.length>t)return e.length=t,!0}function Cl(e){return new this(e).abs()}function Fl(e){return new this(e).acos()}function yl(e){return new this(e).acosh()}function wl(e,t){return new this(e).plus(t)}function Bl(e){return new this(e).asin()}function bl(e){return new this(e).asinh()}function Sl(e){return new this(e).atan()}function Ml(e){return new this(e).atanh()}function Nl(e,t){e=new this(e),t=new this(t);var n,r=this.precision,u=this.rounding,i=r+4;return!e.s||!t.s?n=new this(NaN):!e.d&&!t.d?(n=$e(this,i,1).times(t.s>0?.25:.75),n.s=e.s):!t.d||e.isZero()?(n=t.s<0?$e(this,r,u):new this(0),n.s=e.s):!e.d||t.isZero()?(n=$e(this,i,1).times(.5),n.s=e.s):t.s<0?(this.precision=i,this.rounding=1,n=this.atan(X(e,t,i,1)),t=$e(this,i,1),this.precision=r,this.rounding=u,n=e.s<0?n.minus(t):n.plus(t)):n=this.atan(X(e,t,i,1)),n}function Il(e){return new this(e).cbrt()}function _l(e){return T(e=new this(e),e.e+1,2)}function Rl(e,t,n){return new this(e).clamp(t,n)}function xl(e){if(!e||typeof e!="object")throw Error(Kt+"Object expected");var t,n,r,u=e.defaults===!0,i=["precision",1,Xe,"rounding",0,8,"toExpNeg",-ft,0,"toExpPos",0,ft,"maxE",0,ft,"minE",-ft,0,"modulo",0,9];for(t=0;t<i.length;t+=3)if(n=i[t],u&&(this[n]=qn[n]),(r=e[n])!==void 0)if(le(r)===r&&r>=i[t+1]&&r<=i[t+2])this[n]=r;else throw Error(Je+n+": "+r);if(n="crypto",u&&(this[n]=qn[n]),(r=e[n])!==void 0)if(r===!0||r===!1||r===0||r===1)if(r)if(typeof crypto!="undefined"&&crypto&&(crypto.getRandomValues||crypto.randomBytes))this[n]=!0;else throw Error(eu);else this[n]=!1;else throw Error(Je+n+": "+r);return this}function $l(e){return new this(e).cos()}function Ll(e){return new this(e).cosh()}function lu(e){var t,n,r;function u(i){var s,f,l,d=this;if(!(d instanceof u))return new u(i);if(d.constructor=u,fu(i)){d.s=i.s,j?!i.d||i.e>u.maxE?(d.e=NaN,d.d=null):i.e<u.minE?(d.e=0,d.d=[0]):(d.e=i.e,d.d=i.d.slice()):(d.e=i.e,d.d=i.d?i.d.slice():i.d);return}if(l=typeof i,l==="number"){if(i===0){d.s=1/i<0?-1:1,d.e=0,d.d=[0];return}if(i<0?(i=-i,d.s=-1):d.s=1,i===~~i&&i<1e7){for(s=0,f=i;f>=10;f/=10)s++;j?s>u.maxE?(d.e=NaN,d.d=null):s<u.minE?(d.e=0,d.d=[0]):(d.e=s,d.d=[i]):(d.e=s,d.d=[i]);return}else if(i*0!==0){i||(d.s=NaN),d.e=NaN,d.d=null;return}return Wn(d,i.toString())}else if(l!=="string")throw Error(Je+i);return(f=i.charCodeAt(0))===45?(i=i.slice(1),d.s=-1):(f===43&&(i=i.slice(1)),d.s=1),nu.test(i)?Wn(d,i):El(d,i)}if(u.prototype=w,u.ROUND_UP=0,u.ROUND_DOWN=1,u.ROUND_CEIL=2,u.ROUND_FLOOR=3,u.ROUND_HALF_UP=4,u.ROUND_HALF_DOWN=5,u.ROUND_HALF_EVEN=6,u.ROUND_HALF_CEIL=7,u.ROUND_HALF_FLOOR=8,u.EUCLID=9,u.config=u.set=xl,u.clone=lu,u.isDecimal=fu,u.abs=Cl,u.acos=Fl,u.acosh=yl,u.add=wl,u.asin=Bl,u.asinh=bl,u.atan=Sl,u.atanh=Ml,u.atan2=Nl,u.cbrt=Il,u.ceil=_l,u.clamp=Rl,u.cos=$l,u.cosh=Ll,u.div=Tl,u.exp=Ol,u.floor=Pl,u.hypot=kl,u.ln=jl,u.log=Ul,u.log10=ql,u.log2=Vl,u.max=Hl,u.min=zl,u.mod=Wl,u.mul=Zl,u.pow=Xl,u.random=Jl,u.round=Kl,u.sign=Gl,u.sin=Ql,u.sinh=Yl,u.sqrt=ef,u.sub=tf,u.sum=nf,u.tan=rf,u.tanh=uf,u.trunc=of,e===void 0&&(e={}),e&&e.defaults!==!0)for(r=["precision","rounding","toExpNeg","toExpPos","maxE","minE","modulo","crypto"],t=0;t<r.length;)e.hasOwnProperty(n=r[t++])||(e[n]=this[n]);return u.config(e),u}function Tl(e,t){return new this(e).div(t)}function Ol(e){return new this(e).exp()}function Pl(e){return T(e=new this(e),e.e+1,3)}function kl(){var e,t,n=new this(0);for(j=!1,e=0;e<arguments.length;)if(t=new this(arguments[e++]),t.d)n.d&&(n=n.plus(t.times(t)));else{if(t.s)return j=!0,new this(1/0);n=t}return j=!0,n.sqrt()}function fu(e){return e instanceof dt||e&&e.toStringTag===tu||!1}function jl(e){return new this(e).ln()}function Ul(e,t){return new this(e).log(t)}function Vl(e){return new this(e).log(2)}function ql(e){return new this(e).log(10)}function Hl(){return ou(this,arguments,"lt")}function zl(){return ou(this,arguments,"gt")}function Wl(e,t){return new this(e).mod(t)}function Zl(e,t){return new this(e).mul(t)}function Xl(e,t){return new this(e).pow(t)}function Jl(e){var t,n,r,u,i=0,s=new this(1),f=[];if(e===void 0?e=this.precision:Ee(e,1,Xe),r=Math.ceil(e/P),this.crypto)if(crypto.getRandomValues)for(t=crypto.getRandomValues(new Uint32Array(r));i<r;)u=t[i],u>=429e7?t[i]=crypto.getRandomValues(new Uint32Array(1))[0]:f[i++]=u%1e7;else if(crypto.randomBytes){for(t=crypto.randomBytes(r*=4);i<r;)u=t[i]+(t[i+1]<<8)+(t[i+2]<<16)+((t[i+3]&127)<<24),u>=214e7?crypto.randomBytes(4).copy(t,i):(f.push(u%1e7),i+=4);i=r/4}else throw Error(eu);else for(;i<r;)f[i++]=Math.random()*1e7|0;for(r=f[--i],e%=P,r&&e&&(u=ee(10,P-e),f[i]=(r/u|0)*u);f[i]===0;i--)f.pop();if(i<0)n=0,f=[0];else{for(n=-1;f[0]===0;n-=P)f.shift();for(r=1,u=f[0];u>=10;u/=10)r++;r<P&&(n-=P-r)}return s.e=n,s.d=f,s}function Kl(e){return T(e=new this(e),e.e+1,this.rounding)}function Gl(e){return e=new this(e),e.d?e.d[0]?e.s:0*e.s:e.s||NaN}function Ql(e){return new this(e).sin()}function Yl(e){return new this(e).sinh()}function ef(e){return new this(e).sqrt()}function tf(e,t){return new this(e).sub(t)}function nf(){var e=0,t=arguments,n=new this(t[e]);for(j=!1;n.s&&++e<t.length;)n=n.plus(t[e]);return j=!0,T(n,this.precision,this.rounding)}function rf(e){return new this(e).tan()}function uf(e){return new this(e).tanh()}function of(e){return T(e=new this(e),e.e+1,1)}w[Symbol.for("nodejs.util.inspect.custom")]=w.toString,w[Symbol.toStringTag]="Decimal";var dt=w.constructor=lu(qn);Xt=new dt(Xt),Jt=new dt(Jt);var af="BigNumber",sf=["?on","config"],cf=me(af,sf,e=>{var{on:t,config:n}=e,r=dt.clone({precision:n.precision,modulo:dt.EUCLID});return r.prototype=Object.create(r.prototype),r.prototype.type="BigNumber",r.prototype.isBigNumber=!0,r.prototype.toJSON=function(){return{mathjs:"BigNumber",value:this.toString()}},r.fromJSON=function(u){return new r(u.value)},t&&t("config",function(u,i){u.precision!==i.precision&&r.config({precision:u.precision})}),r},{isClass:!0}),hu={exports:{}};/**
16
+ */var ft=9e15,Xe=1e9,Vn="0123456789abcdef",Xt="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",Jt="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",qn={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-ft,maxE:ft,crypto:!1},Qr,Ve,j=!0,Kt="[DecimalError] ",Je=Kt+"Invalid argument: ",Yr=Kt+"Precision limit exceeded",eu=Kt+"crypto unavailable",tu="[object Decimal]",le=Math.floor,ee=Math.pow,dl=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,pl=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,Dl=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,nu=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,xe=1e7,P=7,gl=9007199254740991,vl=Xt.length-1,Hn=Jt.length-1,w={toStringTag:tu};w.absoluteValue=w.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),O(e)},w.ceil=function(){return O(new this.constructor(this),this.e+1,2)},w.clampedTo=w.clamp=function(e,t){var n,r=this,u=r.constructor;if(e=new u(e),t=new u(t),!e.s||!t.s)return new u(NaN);if(e.gt(t))throw Error(Je+t);return n=r.cmp(e),n<0?e:r.cmp(t)>0?t:new u(r)},w.comparedTo=w.cmp=function(e){var t,n,r,u,i=this,s=i.d,f=(e=new i.constructor(e)).d,l=i.s,d=e.s;if(!s||!f)return!l||!d?NaN:l!==d?l:s===f?0:!s^l<0?1:-1;if(!s[0]||!f[0])return s[0]?l:f[0]?-d:0;if(l!==d)return l;if(i.e!==e.e)return i.e>e.e^l<0?1:-1;for(r=s.length,u=f.length,t=0,n=r<u?r:u;t<n;++t)if(s[t]!==f[t])return s[t]>f[t]^l<0?1:-1;return r===u?0:r>u^l<0?1:-1},w.cosine=w.cos=function(){var e,t,n=this,r=n.constructor;return n.d?n.d[0]?(e=r.precision,t=r.rounding,r.precision=e+Math.max(n.e,n.sd())+P,r.rounding=1,n=ml(r,su(r,n)),r.precision=e,r.rounding=t,O(Ve==2||Ve==3?n.neg():n,e,t,!0)):new r(1):new r(NaN)},w.cubeRoot=w.cbrt=function(){var e,t,n,r,u,i,s,f,l,d,a=this,o=a.constructor;if(!a.isFinite()||a.isZero())return new o(a);for(j=!1,i=a.s*ee(a.s*a,1/3),!i||Math.abs(i)==1/0?(n=oe(a.d),e=a.e,(i=(e-n.length+1)%3)&&(n+=i==1||i==-2?"0":"00"),i=ee(n,1/3),e=le((e+1)/3)-(e%3==(e<0?-1:2)),i==1/0?n="5e"+e:(n=i.toExponential(),n=n.slice(0,n.indexOf("e")+1)+e),r=new o(n),r.s=a.s):r=new o(i.toString()),s=(e=o.precision)+3;;)if(f=r,l=f.times(f).times(f),d=l.plus(a),r=X(d.plus(a).times(f),d.plus(l),s+2,1),oe(f.d).slice(0,s)===(n=oe(r.d)).slice(0,s))if(n=n.slice(s-3,s+1),n=="9999"||!u&&n=="4999"){if(!u&&(O(f,e+1,0),f.times(f).times(f).eq(a))){r=f;break}s+=4,u=1}else{(!+n||!+n.slice(1)&&n.charAt(0)=="5")&&(O(r,e+1,1),t=!r.times(r).times(r).eq(a));break}return j=!0,O(r,e,o.rounding,t)},w.decimalPlaces=w.dp=function(){var e,t=this.d,n=NaN;if(t){if(e=t.length-1,n=(e-le(this.e/P))*P,e=t[e],e)for(;e%10==0;e/=10)n--;n<0&&(n=0)}return n},w.dividedBy=w.div=function(e){return X(this,new this.constructor(e))},w.dividedToIntegerBy=w.divToInt=function(e){var t=this,n=t.constructor;return O(X(t,new n(e),0,1,1),n.precision,n.rounding)},w.equals=w.eq=function(e){return this.cmp(e)===0},w.floor=function(){return O(new this.constructor(this),this.e+1,3)},w.greaterThan=w.gt=function(e){return this.cmp(e)>0},w.greaterThanOrEqualTo=w.gte=function(e){var t=this.cmp(e);return t==1||t===0},w.hyperbolicCosine=w.cosh=function(){var e,t,n,r,u,i=this,s=i.constructor,f=new s(1);if(!i.isFinite())return new s(i.s?1/0:NaN);if(i.isZero())return f;n=s.precision,r=s.rounding,s.precision=n+Math.max(i.e,i.sd())+4,s.rounding=1,u=i.d.length,u<32?(e=Math.ceil(u/3),t=(1/en(4,e)).toString()):(e=16,t="2.3283064365386962890625e-10"),i=ht(s,1,i.times(t),new s(1),!0);for(var l,d=e,a=new s(8);d--;)l=i.times(i),i=f.minus(l.times(a.minus(l.times(a))));return O(i,s.precision=n,s.rounding=r,!0)},w.hyperbolicSine=w.sinh=function(){var e,t,n,r,u=this,i=u.constructor;if(!u.isFinite()||u.isZero())return new i(u);if(t=i.precision,n=i.rounding,i.precision=t+Math.max(u.e,u.sd())+4,i.rounding=1,r=u.d.length,r<3)u=ht(i,2,u,u,!0);else{e=1.4*Math.sqrt(r),e=e>16?16:e|0,u=u.times(1/en(5,e)),u=ht(i,2,u,u,!0);for(var s,f=new i(5),l=new i(16),d=new i(20);e--;)s=u.times(u),u=u.times(f.plus(s.times(l.times(s).plus(d))))}return i.precision=t,i.rounding=n,O(u,t,n,!0)},w.hyperbolicTangent=w.tanh=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+7,r.rounding=1,X(n.sinh(),n.cosh(),r.precision=e,r.rounding=t)):new r(n.s)},w.inverseCosine=w.acos=function(){var e,t=this,n=t.constructor,r=t.abs().cmp(1),u=n.precision,i=n.rounding;return r!==-1?r===0?t.isNeg()?$e(n,u,i):new n(0):new n(NaN):t.isZero()?$e(n,u+4,i).times(.5):(n.precision=u+6,n.rounding=1,t=t.asin(),e=$e(n,u+4,i).times(.5),n.precision=u,n.rounding=i,e.minus(t))},w.inverseHyperbolicCosine=w.acosh=function(){var e,t,n=this,r=n.constructor;return n.lte(1)?new r(n.eq(1)?0:NaN):n.isFinite()?(e=r.precision,t=r.rounding,r.precision=e+Math.max(Math.abs(n.e),n.sd())+4,r.rounding=1,j=!1,n=n.times(n).minus(1).sqrt().plus(n),j=!0,r.precision=e,r.rounding=t,n.ln()):new r(n)},w.inverseHyperbolicSine=w.asinh=function(){var e,t,n=this,r=n.constructor;return!n.isFinite()||n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+2*Math.max(Math.abs(n.e),n.sd())+6,r.rounding=1,j=!1,n=n.times(n).plus(1).sqrt().plus(n),j=!0,r.precision=e,r.rounding=t,n.ln())},w.inverseHyperbolicTangent=w.atanh=function(){var e,t,n,r,u=this,i=u.constructor;return u.isFinite()?u.e>=0?new i(u.abs().eq(1)?u.s/0:u.isZero()?u:NaN):(e=i.precision,t=i.rounding,r=u.sd(),Math.max(r,e)<2*-u.e-1?O(new i(u),e,t,!0):(i.precision=n=r-u.e,u=X(u.plus(1),new i(1).minus(u),n+e,1),i.precision=e+4,i.rounding=1,u=u.ln(),i.precision=e,i.rounding=t,u.times(.5))):new i(NaN)},w.inverseSine=w.asin=function(){var e,t,n,r,u=this,i=u.constructor;return u.isZero()?new i(u):(t=u.abs().cmp(1),n=i.precision,r=i.rounding,t!==-1?t===0?(e=$e(i,n+4,r).times(.5),e.s=u.s,e):new i(NaN):(i.precision=n+6,i.rounding=1,u=u.div(new i(1).minus(u.times(u)).sqrt().plus(1)).atan(),i.precision=n,i.rounding=r,u.times(2)))},w.inverseTangent=w.atan=function(){var e,t,n,r,u,i,s,f,l,d=this,a=d.constructor,o=a.precision,c=a.rounding;if(d.isFinite()){if(d.isZero())return new a(d);if(d.abs().eq(1)&&o+4<=Hn)return s=$e(a,o+4,c).times(.25),s.s=d.s,s}else{if(!d.s)return new a(NaN);if(o+4<=Hn)return s=$e(a,o+4,c).times(.5),s.s=d.s,s}for(a.precision=f=o+10,a.rounding=1,n=Math.min(28,f/P+2|0),e=n;e;--e)d=d.div(d.times(d).plus(1).sqrt().plus(1));for(j=!1,t=Math.ceil(f/P),r=1,l=d.times(d),s=new a(d),u=d;e!==-1;)if(u=u.times(l),i=s.minus(u.div(r+=2)),u=u.times(l),s=i.plus(u.div(r+=2)),s.d[t]!==void 0)for(e=t;s.d[e]===i.d[e]&&e--;);return n&&(s=s.times(2<<n-1)),j=!0,O(s,a.precision=o,a.rounding=c,!0)},w.isFinite=function(){return!!this.d},w.isInteger=w.isInt=function(){return!!this.d&&le(this.e/P)>this.d.length-2},w.isNaN=function(){return!this.s},w.isNegative=w.isNeg=function(){return this.s<0},w.isPositive=w.isPos=function(){return this.s>0},w.isZero=function(){return!!this.d&&this.d[0]===0},w.lessThan=w.lt=function(e){return this.cmp(e)<0},w.lessThanOrEqualTo=w.lte=function(e){return this.cmp(e)<1},w.logarithm=w.log=function(e){var t,n,r,u,i,s,f,l,d=this,a=d.constructor,o=a.precision,c=a.rounding,h=5;if(e==null)e=new a(10),t=!0;else{if(e=new a(e),n=e.d,e.s<0||!n||!n[0]||e.eq(1))return new a(NaN);t=e.eq(10)}if(n=d.d,d.s<0||!n||!n[0]||d.eq(1))return new a(n&&!n[0]?-1/0:d.s!=1?NaN:n?0:1/0);if(t)if(n.length>1)i=!0;else{for(u=n[0];u%10===0;)u/=10;i=u!==1}if(j=!1,f=o+h,s=Ge(d,f),r=t?Yt(a,f+10):Ge(e,f),l=X(s,r,f,1),Nt(l.d,u=o,c))do if(f+=10,s=Ge(d,f),r=t?Yt(a,f+10):Ge(e,f),l=X(s,r,f,1),!i){+oe(l.d).slice(u+1,u+15)+1==1e14&&(l=O(l,o+1,0));break}while(Nt(l.d,u+=10,c));return j=!0,O(l,o,c)},w.minus=w.sub=function(e){var t,n,r,u,i,s,f,l,d,a,o,c,h=this,p=h.constructor;if(e=new p(e),!h.d||!e.d)return!h.s||!e.s?e=new p(NaN):h.d?e.s=-e.s:e=new p(e.d||h.s!==e.s?h:NaN),e;if(h.s!=e.s)return e.s=-e.s,h.plus(e);if(d=h.d,c=e.d,f=p.precision,l=p.rounding,!d[0]||!c[0]){if(c[0])e.s=-e.s;else if(d[0])e=new p(h);else return new p(l===3?-0:0);return j?O(e,f,l):e}if(n=le(e.e/P),a=le(h.e/P),d=d.slice(),i=a-n,i){for(o=i<0,o?(t=d,i=-i,s=c.length):(t=c,n=a,s=d.length),r=Math.max(Math.ceil(f/P),s)+2,i>r&&(i=r,t.length=1),t.reverse(),r=i;r--;)t.push(0);t.reverse()}else{for(r=d.length,s=c.length,o=r<s,o&&(s=r),r=0;r<s;r++)if(d[r]!=c[r]){o=d[r]<c[r];break}i=0}for(o&&(t=d,d=c,c=t,e.s=-e.s),s=d.length,r=c.length-s;r>0;--r)d[s++]=0;for(r=c.length;r>i;){if(d[--r]<c[r]){for(u=r;u&&d[--u]===0;)d[u]=xe-1;--d[u],d[r]+=xe}d[r]-=c[r]}for(;d[--s]===0;)d.pop();for(;d[0]===0;d.shift())--n;return d[0]?(e.d=d,e.e=Qt(d,n),j?O(e,f,l):e):new p(l===3?-0:0)},w.modulo=w.mod=function(e){var t,n=this,r=n.constructor;return e=new r(e),!n.d||!e.s||e.d&&!e.d[0]?new r(NaN):!e.d||n.d&&!n.d[0]?O(new r(n),r.precision,r.rounding):(j=!1,r.modulo==9?(t=X(n,e.abs(),0,3,1),t.s*=e.s):t=X(n,e,0,r.modulo,1),t=t.times(e),j=!0,n.minus(t))},w.naturalExponential=w.exp=function(){return zn(this)},w.naturalLogarithm=w.ln=function(){return Ge(this)},w.negated=w.neg=function(){var e=new this.constructor(this);return e.s=-e.s,O(e)},w.plus=w.add=function(e){var t,n,r,u,i,s,f,l,d,a,o=this,c=o.constructor;if(e=new c(e),!o.d||!e.d)return!o.s||!e.s?e=new c(NaN):o.d||(e=new c(e.d||o.s===e.s?o:NaN)),e;if(o.s!=e.s)return e.s=-e.s,o.minus(e);if(d=o.d,a=e.d,f=c.precision,l=c.rounding,!d[0]||!a[0])return a[0]||(e=new c(o)),j?O(e,f,l):e;if(i=le(o.e/P),r=le(e.e/P),d=d.slice(),u=i-r,u){for(u<0?(n=d,u=-u,s=a.length):(n=a,r=i,s=d.length),i=Math.ceil(f/P),s=i>s?i+1:s+1,u>s&&(u=s,n.length=1),n.reverse();u--;)n.push(0);n.reverse()}for(s=d.length,u=a.length,s-u<0&&(u=s,n=a,a=d,d=n),t=0;u;)t=(d[--u]=d[u]+a[u]+t)/xe|0,d[u]%=xe;for(t&&(d.unshift(t),++r),s=d.length;d[--s]==0;)d.pop();return e.d=d,e.e=Qt(d,r),j?O(e,f,l):e},w.precision=w.sd=function(e){var t,n=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(Je+e);return n.d?(t=ru(n.d),e&&n.e+1>t&&(t=n.e+1)):t=NaN,t},w.round=function(){var e=this,t=e.constructor;return O(new t(e),e.e+1,t.rounding)},w.sine=w.sin=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+Math.max(n.e,n.sd())+P,r.rounding=1,n=Al(r,su(r,n)),r.precision=e,r.rounding=t,O(Ve>2?n.neg():n,e,t,!0)):new r(NaN)},w.squareRoot=w.sqrt=function(){var e,t,n,r,u,i,s=this,f=s.d,l=s.e,d=s.s,a=s.constructor;if(d!==1||!f||!f[0])return new a(!d||d<0&&(!f||f[0])?NaN:f?s:1/0);for(j=!1,d=Math.sqrt(+s),d==0||d==1/0?(t=oe(f),(t.length+l)%2==0&&(t+="0"),d=Math.sqrt(t),l=le((l+1)/2)-(l<0||l%2),d==1/0?t="5e"+l:(t=d.toExponential(),t=t.slice(0,t.indexOf("e")+1)+l),r=new a(t)):r=new a(d.toString()),n=(l=a.precision)+3;;)if(i=r,r=i.plus(X(s,i,n+2,1)).times(.5),oe(i.d).slice(0,n)===(t=oe(r.d)).slice(0,n))if(t=t.slice(n-3,n+1),t=="9999"||!u&&t=="4999"){if(!u&&(O(i,l+1,0),i.times(i).eq(s))){r=i;break}n+=4,u=1}else{(!+t||!+t.slice(1)&&t.charAt(0)=="5")&&(O(r,l+1,1),e=!r.times(r).eq(s));break}return j=!0,O(r,l,a.rounding,e)},w.tangent=w.tan=function(){var e,t,n=this,r=n.constructor;return n.isFinite()?n.isZero()?new r(n):(e=r.precision,t=r.rounding,r.precision=e+10,r.rounding=1,n=n.sin(),n.s=1,n=X(n,new r(1).minus(n.times(n)).sqrt(),e+10,0),r.precision=e,r.rounding=t,O(Ve==2||Ve==4?n.neg():n,e,t,!0)):new r(NaN)},w.times=w.mul=function(e){var t,n,r,u,i,s,f,l,d,a=this,o=a.constructor,c=a.d,h=(e=new o(e)).d;if(e.s*=a.s,!c||!c[0]||!h||!h[0])return new o(!e.s||c&&!c[0]&&!h||h&&!h[0]&&!c?NaN:!c||!h?e.s/0:e.s*0);for(n=le(a.e/P)+le(e.e/P),l=c.length,d=h.length,l<d&&(i=c,c=h,h=i,s=l,l=d,d=s),i=[],s=l+d,r=s;r--;)i.push(0);for(r=d;--r>=0;){for(t=0,u=l+r;u>r;)f=i[u]+h[r]*c[u-r-1]+t,i[u--]=f%xe|0,t=f/xe|0;i[u]=(i[u]+t)%xe|0}for(;!i[--s];)i.pop();return t?++n:i.shift(),e.d=i,e.e=Qt(i,n),j?O(e,o.precision,o.rounding):e},w.toBinary=function(e,t){return Zn(this,2,e,t)},w.toDecimalPlaces=w.toDP=function(e,t){var n=this,r=n.constructor;return n=new r(n),e===void 0?n:(Ee(e,0,Xe),t===void 0?t=r.rounding:Ee(t,0,8),O(n,e+n.e+1,t))},w.toExponential=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Pe(r,!0):(Ee(e,0,Xe),t===void 0?t=u.rounding:Ee(t,0,8),r=O(new u(r),e+1,t),n=Pe(r,!0,e+1)),r.isNeg()&&!r.isZero()?"-"+n:n},w.toFixed=function(e,t){var n,r,u=this,i=u.constructor;return e===void 0?n=Pe(u):(Ee(e,0,Xe),t===void 0?t=i.rounding:Ee(t,0,8),r=O(new i(u),e+u.e+1,t),n=Pe(r,!1,e+r.e+1)),u.isNeg()&&!u.isZero()?"-"+n:n},w.toFraction=function(e){var t,n,r,u,i,s,f,l,d,a,o,c,h=this,p=h.d,D=h.constructor;if(!p)return new D(h);if(d=n=new D(1),r=l=new D(0),t=new D(r),i=t.e=ru(p)-h.e-1,s=i%P,t.d[0]=ee(10,s<0?P+s:s),e==null)e=i>0?t:d;else{if(f=new D(e),!f.isInt()||f.lt(d))throw Error(Je+f);e=f.gt(t)?i>0?t:d:f}for(j=!1,f=new D(oe(p)),a=D.precision,D.precision=i=p.length*P*2;o=X(f,t,0,1,1),u=n.plus(o.times(r)),u.cmp(e)!=1;)n=r,r=u,u=d,d=l.plus(o.times(u)),l=u,u=t,t=f.minus(o.times(u)),f=u;return u=X(e.minus(n),r,0,1,1),l=l.plus(u.times(d)),n=n.plus(u.times(r)),l.s=d.s=h.s,c=X(d,r,i,1).minus(h).abs().cmp(X(l,n,i,1).minus(h).abs())<1?[d,r]:[l,n],D.precision=a,j=!0,c},w.toHexadecimal=w.toHex=function(e,t){return Zn(this,16,e,t)},w.toNearest=function(e,t){var n=this,r=n.constructor;if(n=new r(n),e==null){if(!n.d)return n;e=new r(1),t=r.rounding}else{if(e=new r(e),t===void 0?t=r.rounding:Ee(t,0,8),!n.d)return e.s?n:e;if(!e.d)return e.s&&(e.s=n.s),e}return e.d[0]?(j=!1,n=X(n,e,0,t,1).times(e),j=!0,O(n)):(e.s=n.s,n=e),n},w.toNumber=function(){return+this},w.toOctal=function(e,t){return Zn(this,8,e,t)},w.toPower=w.pow=function(e){var t,n,r,u,i,s,f=this,l=f.constructor,d=+(e=new l(e));if(!f.d||!e.d||!f.d[0]||!e.d[0])return new l(ee(+f,d));if(f=new l(f),f.eq(1))return f;if(r=l.precision,i=l.rounding,e.eq(1))return O(f,r,i);if(t=le(e.e/P),t>=e.d.length-1&&(n=d<0?-d:d)<=gl)return u=uu(l,f,n,r),e.s<0?new l(1).div(u):O(u,r,i);if(s=f.s,s<0){if(t<e.d.length-1)return new l(NaN);if((e.d[t]&1)==0&&(s=1),f.e==0&&f.d[0]==1&&f.d.length==1)return f.s=s,f}return n=ee(+f,d),t=n==0||!isFinite(n)?le(d*(Math.log("0."+oe(f.d))/Math.LN10+f.e+1)):new l(n+"").e,t>l.maxE+1||t<l.minE-1?new l(t>0?s/0:0):(j=!1,l.rounding=f.s=1,n=Math.min(12,(t+"").length),u=zn(e.times(Ge(f,r+n)),r),u.d&&(u=O(u,r+5,1),Nt(u.d,r,i)&&(t=r+10,u=O(zn(e.times(Ge(f,t+n)),t),t+5,1),+oe(u.d).slice(r+1,r+15)+1==1e14&&(u=O(u,r+1,0)))),u.s=s,j=!0,l.rounding=i,O(u,r,i))},w.toPrecision=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Pe(r,r.e<=u.toExpNeg||r.e>=u.toExpPos):(Ee(e,1,Xe),t===void 0?t=u.rounding:Ee(t,0,8),r=O(new u(r),e,t),n=Pe(r,e<=r.e||r.e<=u.toExpNeg,e)),r.isNeg()&&!r.isZero()?"-"+n:n},w.toSignificantDigits=w.toSD=function(e,t){var n=this,r=n.constructor;return e===void 0?(e=r.precision,t=r.rounding):(Ee(e,1,Xe),t===void 0?t=r.rounding:Ee(t,0,8)),O(new r(n),e,t)},w.toString=function(){var e=this,t=e.constructor,n=Pe(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()&&!e.isZero()?"-"+n:n},w.truncated=w.trunc=function(){return O(new this.constructor(this),this.e+1,1)},w.valueOf=w.toJSON=function(){var e=this,t=e.constructor,n=Pe(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()?"-"+n:n};function oe(e){var t,n,r,u=e.length-1,i="",s=e[0];if(u>0){for(i+=s,t=1;t<u;t++)r=e[t]+"",n=P-r.length,n&&(i+=Ke(n)),i+=r;s=e[t],r=s+"",n=P-r.length,n&&(i+=Ke(n))}else if(s===0)return"0";for(;s%10===0;)s/=10;return i+s}function Ee(e,t,n){if(e!==~~e||e<t||e>n)throw Error(Je+e)}function Nt(e,t,n,r){var u,i,s,f;for(i=e[0];i>=10;i/=10)--t;return--t<0?(t+=P,u=0):(u=Math.ceil((t+1)/P),t%=P),i=ee(10,P-t),f=e[u]%i|0,r==null?t<3?(t==0?f=f/100|0:t==1&&(f=f/10|0),s=n<4&&f==99999||n>3&&f==49999||f==5e4||f==0):s=(n<4&&f+1==i||n>3&&f+1==i/2)&&(e[u+1]/i/100|0)==ee(10,t-2)-1||(f==i/2||f==0)&&(e[u+1]/i/100|0)==0:t<4?(t==0?f=f/1e3|0:t==1?f=f/100|0:t==2&&(f=f/10|0),s=(r||n<4)&&f==9999||!r&&n>3&&f==4999):s=((r||n<4)&&f+1==i||!r&&n>3&&f+1==i/2)&&(e[u+1]/i/1e3|0)==ee(10,t-3)-1,s}function Gt(e,t,n){for(var r,u=[0],i,s=0,f=e.length;s<f;){for(i=u.length;i--;)u[i]*=t;for(u[0]+=Vn.indexOf(e.charAt(s++)),r=0;r<u.length;r++)u[r]>n-1&&(u[r+1]===void 0&&(u[r+1]=0),u[r+1]+=u[r]/n|0,u[r]%=n)}return u.reverse()}function ml(e,t){var n,r,u;if(t.isZero())return t;r=t.d.length,r<32?(n=Math.ceil(r/3),u=(1/en(4,n)).toString()):(n=16,u="2.3283064365386962890625e-10"),e.precision+=n,t=ht(e,1,t.times(u),new e(1));for(var i=n;i--;){var s=t.times(t);t=s.times(s).minus(s).times(8).plus(1)}return e.precision-=n,t}var X=function(){function e(r,u,i){var s,f=0,l=r.length;for(r=r.slice();l--;)s=r[l]*u+f,r[l]=s%i|0,f=s/i|0;return f&&r.unshift(f),r}function t(r,u,i,s){var f,l;if(i!=s)l=i>s?1:-1;else for(f=l=0;f<i;f++)if(r[f]!=u[f]){l=r[f]>u[f]?1:-1;break}return l}function n(r,u,i,s){for(var f=0;i--;)r[i]-=f,f=r[i]<u[i]?1:0,r[i]=f*s+r[i]-u[i];for(;!r[0]&&r.length>1;)r.shift()}return function(r,u,i,s,f,l){var d,a,o,c,h,p,D,m,g,C,F,b,R,L,k,I,$,J,V,G,Q=r.constructor,pe=r.s==u.s?1:-1,K=r.d,q=u.d;if(!K||!K[0]||!q||!q[0])return new Q(!r.s||!u.s||(K?q&&K[0]==q[0]:!q)?NaN:K&&K[0]==0||!q?pe*0:pe/0);for(l?(h=1,a=r.e-u.e):(l=xe,h=P,a=le(r.e/h)-le(u.e/h)),V=q.length,$=K.length,g=new Q(pe),C=g.d=[],o=0;q[o]==(K[o]||0);o++);if(q[o]>(K[o]||0)&&a--,i==null?(L=i=Q.precision,s=Q.rounding):f?L=i+(r.e-u.e)+1:L=i,L<0)C.push(1),p=!0;else{if(L=L/h+2|0,o=0,V==1){for(c=0,q=q[0],L++;(o<$||c)&&L--;o++)k=c*l+(K[o]||0),C[o]=k/q|0,c=k%q|0;p=c||o<$}else{for(c=l/(q[0]+1)|0,c>1&&(q=e(q,c,l),K=e(K,c,l),V=q.length,$=K.length),I=V,F=K.slice(0,V),b=F.length;b<V;)F[b++]=0;G=q.slice(),G.unshift(0),J=q[0],q[1]>=l/2&&++J;do c=0,d=t(q,F,V,b),d<0?(R=F[0],V!=b&&(R=R*l+(F[1]||0)),c=R/J|0,c>1?(c>=l&&(c=l-1),D=e(q,c,l),m=D.length,b=F.length,d=t(D,F,m,b),d==1&&(c--,n(D,V<m?G:q,m,l))):(c==0&&(d=c=1),D=q.slice()),m=D.length,m<b&&D.unshift(0),n(F,D,b,l),d==-1&&(b=F.length,d=t(q,F,V,b),d<1&&(c++,n(F,V<b?G:q,b,l))),b=F.length):d===0&&(c++,F=[0]),C[o++]=c,d&&F[0]?F[b++]=K[I]||0:(F=[K[I]],b=1);while((I++<$||F[0]!==void 0)&&L--);p=F[0]!==void 0}C[0]||C.shift()}if(h==1)g.e=a,Qr=p;else{for(o=1,c=C[0];c>=10;c/=10)o++;g.e=o+a*h-1,O(g,f?i+g.e+1:i,s,p)}return g}}();function O(e,t,n,r){var u,i,s,f,l,d,a,o,c,h=e.constructor;e:if(t!=null){if(o=e.d,!o)return e;for(u=1,f=o[0];f>=10;f/=10)u++;if(i=t-u,i<0)i+=P,s=t,a=o[c=0],l=a/ee(10,u-s-1)%10|0;else if(c=Math.ceil((i+1)/P),f=o.length,c>=f)if(r){for(;f++<=c;)o.push(0);a=l=0,u=1,i%=P,s=i-P+1}else break e;else{for(a=f=o[c],u=1;f>=10;f/=10)u++;i%=P,s=i-P+u,l=s<0?0:a/ee(10,u-s-1)%10|0}if(r=r||t<0||o[c+1]!==void 0||(s<0?a:a%ee(10,u-s-1)),d=n<4?(l||r)&&(n==0||n==(e.s<0?3:2)):l>5||l==5&&(n==4||r||n==6&&(i>0?s>0?a/ee(10,u-s):0:o[c-1])%10&1||n==(e.s<0?8:7)),t<1||!o[0])return o.length=0,d?(t-=e.e+1,o[0]=ee(10,(P-t%P)%P),e.e=-t||0):o[0]=e.e=0,e;if(i==0?(o.length=c,f=1,c--):(o.length=c+1,f=ee(10,P-i),o[c]=s>0?(a/ee(10,u-s)%ee(10,s)|0)*f:0),d)for(;;)if(c==0){for(i=1,s=o[0];s>=10;s/=10)i++;for(s=o[0]+=f,f=1;s>=10;s/=10)f++;i!=f&&(e.e++,o[0]==xe&&(o[0]=1));break}else{if(o[c]+=f,o[c]!=xe)break;o[c--]=0,f=1}for(i=o.length;o[--i]===0;)o.pop()}return j&&(e.e>h.maxE?(e.d=null,e.e=NaN):e.e<h.minE&&(e.e=0,e.d=[0])),e}function Pe(e,t,n){if(!e.isFinite())return au(e);var r,u=e.e,i=oe(e.d),s=i.length;return t?(n&&(r=n-s)>0?i=i.charAt(0)+"."+i.slice(1)+Ke(r):s>1&&(i=i.charAt(0)+"."+i.slice(1)),i=i+(e.e<0?"e":"e+")+e.e):u<0?(i="0."+Ke(-u-1)+i,n&&(r=n-s)>0&&(i+=Ke(r))):u>=s?(i+=Ke(u+1-s),n&&(r=n-u-1)>0&&(i=i+"."+Ke(r))):((r=u+1)<s&&(i=i.slice(0,r)+"."+i.slice(r)),n&&(r=n-s)>0&&(u+1===s&&(i+="."),i+=Ke(r))),i}function Qt(e,t){var n=e[0];for(t*=P;n>=10;n/=10)t++;return t}function Yt(e,t,n){if(t>vl)throw j=!0,n&&(e.precision=n),Error(Yr);return O(new e(Xt),t,1,!0)}function $e(e,t,n){if(t>Hn)throw Error(Yr);return O(new e(Jt),t,n,!0)}function ru(e){var t=e.length-1,n=t*P+1;if(t=e[t],t){for(;t%10==0;t/=10)n--;for(t=e[0];t>=10;t/=10)n++}return n}function Ke(e){for(var t="";e--;)t+="0";return t}function uu(e,t,n,r){var u,i=new e(1),s=Math.ceil(r/P+4);for(j=!1;;){if(n%2&&(i=i.times(t),cu(i.d,s)&&(u=!0)),n=le(n/2),n===0){n=i.d.length-1,u&&i.d[n]===0&&++i.d[n];break}t=t.times(t),cu(t.d,s)}return j=!0,i}function iu(e){return e.d[e.d.length-1]&1}function ou(e,t,n){for(var r,u=new e(t[0]),i=0;++i<t.length;)if(r=new e(t[i]),r.s)u[n](r)&&(u=r);else{u=r;break}return u}function zn(e,t){var n,r,u,i,s,f,l,d=0,a=0,o=0,c=e.constructor,h=c.rounding,p=c.precision;if(!e.d||!e.d[0]||e.e>17)return new c(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:0/0);for(t==null?(j=!1,l=p):l=t,f=new c(.03125);e.e>-2;)e=e.times(f),o+=5;for(r=Math.log(ee(2,o))/Math.LN10*2+5|0,l+=r,n=i=s=new c(1),c.precision=l;;){if(i=O(i.times(e),l,1),n=n.times(++a),f=s.plus(X(i,n,l,1)),oe(f.d).slice(0,l)===oe(s.d).slice(0,l)){for(u=o;u--;)s=O(s.times(s),l,1);if(t==null)if(d<3&&Nt(s.d,l-r,h,d))c.precision=l+=10,n=i=f=new c(1),a=0,d++;else return O(s,c.precision=p,h,j=!0);else return c.precision=p,s}s=f}}function Ge(e,t){var n,r,u,i,s,f,l,d,a,o,c,h=1,p=10,D=e,m=D.d,g=D.constructor,C=g.rounding,F=g.precision;if(D.s<0||!m||!m[0]||!D.e&&m[0]==1&&m.length==1)return new g(m&&!m[0]?-1/0:D.s!=1?NaN:m?0:D);if(t==null?(j=!1,a=F):a=t,g.precision=a+=p,n=oe(m),r=n.charAt(0),Math.abs(i=D.e)<15e14){for(;r<7&&r!=1||r==1&&n.charAt(1)>3;)D=D.times(e),n=oe(D.d),r=n.charAt(0),h++;i=D.e,r>1?(D=new g("0."+n),i++):D=new g(r+"."+n.slice(1))}else return d=Yt(g,a+2,F).times(i+""),D=Ge(new g(r+"."+n.slice(1)),a-p).plus(d),g.precision=F,t==null?O(D,F,C,j=!0):D;for(o=D,l=s=D=X(D.minus(1),D.plus(1),a,1),c=O(D.times(D),a,1),u=3;;){if(s=O(s.times(c),a,1),d=l.plus(X(s,new g(u),a,1)),oe(d.d).slice(0,a)===oe(l.d).slice(0,a))if(l=l.times(2),i!==0&&(l=l.plus(Yt(g,a+2,F).times(i+""))),l=X(l,new g(h),a,1),t==null)if(Nt(l.d,a-p,C,f))g.precision=a+=p,d=s=D=X(o.minus(1),o.plus(1),a,1),c=O(D.times(D),a,1),u=f=1;else return O(l,g.precision=F,C,j=!0);else return g.precision=F,l;l=d,u+=2}}function au(e){return String(e.s*e.s/0)}function Wn(e,t){var n,r,u;for((n=t.indexOf("."))>-1&&(t=t.replace(".","")),(r=t.search(/e/i))>0?(n<0&&(n=r),n+=+t.slice(r+1),t=t.substring(0,r)):n<0&&(n=t.length),r=0;t.charCodeAt(r)===48;r++);for(u=t.length;t.charCodeAt(u-1)===48;--u);if(t=t.slice(r,u),t){if(u-=r,e.e=n=n-r-1,e.d=[],r=(n+1)%P,n<0&&(r+=P),r<u){for(r&&e.d.push(+t.slice(0,r)),u-=P;r<u;)e.d.push(+t.slice(r,r+=P));t=t.slice(r),r=P-t.length}else r-=u;for(;r--;)t+="0";e.d.push(+t),j&&(e.e>e.constructor.maxE?(e.d=null,e.e=NaN):e.e<e.constructor.minE&&(e.e=0,e.d=[0]))}else e.e=0,e.d=[0];return e}function El(e,t){var n,r,u,i,s,f,l,d,a;if(t.indexOf("_")>-1){if(t=t.replace(/(\d)_(?=\d)/g,"$1"),nu.test(t))return Wn(e,t)}else if(t==="Infinity"||t==="NaN")return+t||(e.s=NaN),e.e=NaN,e.d=null,e;if(pl.test(t))n=16,t=t.toLowerCase();else if(dl.test(t))n=2;else if(Dl.test(t))n=8;else throw Error(Je+t);for(i=t.search(/p/i),i>0?(l=+t.slice(i+1),t=t.substring(2,i)):t=t.slice(2),i=t.indexOf("."),s=i>=0,r=e.constructor,s&&(t=t.replace(".",""),f=t.length,i=f-i,u=uu(r,new r(n),i,i*2)),d=Gt(t,n,xe),a=d.length-1,i=a;d[i]===0;--i)d.pop();return i<0?new r(e.s*0):(e.e=Qt(d,a),e.d=d,j=!1,s&&(e=X(e,u,f*4)),l&&(e=e.times(Math.abs(l)<54?ee(2,l):dt.pow(2,l))),j=!0,e)}function Al(e,t){var n,r=t.d.length;if(r<3)return t.isZero()?t:ht(e,2,t,t);n=1.4*Math.sqrt(r),n=n>16?16:n|0,t=t.times(1/en(5,n)),t=ht(e,2,t,t);for(var u,i=new e(5),s=new e(16),f=new e(20);n--;)u=t.times(t),t=t.times(i.plus(u.times(s.times(u).minus(f))));return t}function ht(e,t,n,r,u){var i,s,f,l,d=e.precision,a=Math.ceil(d/P);for(j=!1,l=n.times(n),f=new e(r);;){if(s=X(f.times(l),new e(t++*t++),d,1),f=u?r.plus(s):r.minus(s),r=X(s.times(l),new e(t++*t++),d,1),s=f.plus(r),s.d[a]!==void 0){for(i=a;s.d[i]===f.d[i]&&i--;);if(i==-1)break}i=f,f=r,r=s,s=i}return j=!0,s.d.length=a+1,s}function en(e,t){for(var n=e;--t;)n*=e;return n}function su(e,t){var n,r=t.s<0,u=$e(e,e.precision,1),i=u.times(.5);if(t=t.abs(),t.lte(i))return Ve=r?4:1,t;if(n=t.divToInt(u),n.isZero())Ve=r?3:2;else{if(t=t.minus(n.times(u)),t.lte(i))return Ve=iu(n)?r?2:3:r?4:1,t;Ve=iu(n)?r?1:4:r?3:2}return t.minus(u).abs()}function Zn(e,t,n,r){var u,i,s,f,l,d,a,o,c,h=e.constructor,p=n!==void 0;if(p?(Ee(n,1,Xe),r===void 0?r=h.rounding:Ee(r,0,8)):(n=h.precision,r=h.rounding),!e.isFinite())a=au(e);else{for(a=Pe(e),s=a.indexOf("."),p?(u=2,t==16?n=n*4-3:t==8&&(n=n*3-2)):u=t,s>=0&&(a=a.replace(".",""),c=new h(1),c.e=a.length-s,c.d=Gt(Pe(c),10,u),c.e=c.d.length),o=Gt(a,10,u),i=l=o.length;o[--l]==0;)o.pop();if(!o[0])a=p?"0p+0":"0";else{if(s<0?i--:(e=new h(e),e.d=o,e.e=i,e=X(e,c,n,r,0,u),o=e.d,i=e.e,d=Qr),s=o[n],f=u/2,d=d||o[n+1]!==void 0,d=r<4?(s!==void 0||d)&&(r===0||r===(e.s<0?3:2)):s>f||s===f&&(r===4||d||r===6&&o[n-1]&1||r===(e.s<0?8:7)),o.length=n,d)for(;++o[--n]>u-1;)o[n]=0,n||(++i,o.unshift(1));for(l=o.length;!o[l-1];--l);for(s=0,a="";s<l;s++)a+=Vn.charAt(o[s]);if(p){if(l>1)if(t==16||t==8){for(s=t==16?4:3,--l;l%s;l++)a+="0";for(o=Gt(a,u,t),l=o.length;!o[l-1];--l);for(s=1,a="1.";s<l;s++)a+=Vn.charAt(o[s])}else a=a.charAt(0)+"."+a.slice(1);a=a+(i<0?"p":"p+")+i}else if(i<0){for(;++i;)a="0"+a;a="0."+a}else if(++i>l)for(i-=l;i--;)a+="0";else i<l&&(a=a.slice(0,i)+"."+a.slice(i))}a=(t==16?"0x":t==2?"0b":t==8?"0o":"")+a}return e.s<0?"-"+a:a}function cu(e,t){if(e.length>t)return e.length=t,!0}function Cl(e){return new this(e).abs()}function Fl(e){return new this(e).acos()}function yl(e){return new this(e).acosh()}function wl(e,t){return new this(e).plus(t)}function Bl(e){return new this(e).asin()}function bl(e){return new this(e).asinh()}function Sl(e){return new this(e).atan()}function Ml(e){return new this(e).atanh()}function Nl(e,t){e=new this(e),t=new this(t);var n,r=this.precision,u=this.rounding,i=r+4;return!e.s||!t.s?n=new this(NaN):!e.d&&!t.d?(n=$e(this,i,1).times(t.s>0?.25:.75),n.s=e.s):!t.d||e.isZero()?(n=t.s<0?$e(this,r,u):new this(0),n.s=e.s):!e.d||t.isZero()?(n=$e(this,i,1).times(.5),n.s=e.s):t.s<0?(this.precision=i,this.rounding=1,n=this.atan(X(e,t,i,1)),t=$e(this,i,1),this.precision=r,this.rounding=u,n=e.s<0?n.minus(t):n.plus(t)):n=this.atan(X(e,t,i,1)),n}function Il(e){return new this(e).cbrt()}function _l(e){return O(e=new this(e),e.e+1,2)}function Rl(e,t,n){return new this(e).clamp(t,n)}function xl(e){if(!e||typeof e!="object")throw Error(Kt+"Object expected");var t,n,r,u=e.defaults===!0,i=["precision",1,Xe,"rounding",0,8,"toExpNeg",-ft,0,"toExpPos",0,ft,"maxE",0,ft,"minE",-ft,0,"modulo",0,9];for(t=0;t<i.length;t+=3)if(n=i[t],u&&(this[n]=qn[n]),(r=e[n])!==void 0)if(le(r)===r&&r>=i[t+1]&&r<=i[t+2])this[n]=r;else throw Error(Je+n+": "+r);if(n="crypto",u&&(this[n]=qn[n]),(r=e[n])!==void 0)if(r===!0||r===!1||r===0||r===1)if(r)if(typeof crypto!="undefined"&&crypto&&(crypto.getRandomValues||crypto.randomBytes))this[n]=!0;else throw Error(eu);else this[n]=!1;else throw Error(Je+n+": "+r);return this}function $l(e){return new this(e).cos()}function Ll(e){return new this(e).cosh()}function lu(e){var t,n,r;function u(i){var s,f,l,d=this;if(!(d instanceof u))return new u(i);if(d.constructor=u,fu(i)){d.s=i.s,j?!i.d||i.e>u.maxE?(d.e=NaN,d.d=null):i.e<u.minE?(d.e=0,d.d=[0]):(d.e=i.e,d.d=i.d.slice()):(d.e=i.e,d.d=i.d?i.d.slice():i.d);return}if(l=typeof i,l==="number"){if(i===0){d.s=1/i<0?-1:1,d.e=0,d.d=[0];return}if(i<0?(i=-i,d.s=-1):d.s=1,i===~~i&&i<1e7){for(s=0,f=i;f>=10;f/=10)s++;j?s>u.maxE?(d.e=NaN,d.d=null):s<u.minE?(d.e=0,d.d=[0]):(d.e=s,d.d=[i]):(d.e=s,d.d=[i]);return}else if(i*0!==0){i||(d.s=NaN),d.e=NaN,d.d=null;return}return Wn(d,i.toString())}else if(l!=="string")throw Error(Je+i);return(f=i.charCodeAt(0))===45?(i=i.slice(1),d.s=-1):(f===43&&(i=i.slice(1)),d.s=1),nu.test(i)?Wn(d,i):El(d,i)}if(u.prototype=w,u.ROUND_UP=0,u.ROUND_DOWN=1,u.ROUND_CEIL=2,u.ROUND_FLOOR=3,u.ROUND_HALF_UP=4,u.ROUND_HALF_DOWN=5,u.ROUND_HALF_EVEN=6,u.ROUND_HALF_CEIL=7,u.ROUND_HALF_FLOOR=8,u.EUCLID=9,u.config=u.set=xl,u.clone=lu,u.isDecimal=fu,u.abs=Cl,u.acos=Fl,u.acosh=yl,u.add=wl,u.asin=Bl,u.asinh=bl,u.atan=Sl,u.atanh=Ml,u.atan2=Nl,u.cbrt=Il,u.ceil=_l,u.clamp=Rl,u.cos=$l,u.cosh=Ll,u.div=Ol,u.exp=Tl,u.floor=Pl,u.hypot=kl,u.ln=jl,u.log=Ul,u.log10=ql,u.log2=Vl,u.max=Hl,u.min=zl,u.mod=Wl,u.mul=Zl,u.pow=Xl,u.random=Jl,u.round=Kl,u.sign=Gl,u.sin=Ql,u.sinh=Yl,u.sqrt=ef,u.sub=tf,u.sum=nf,u.tan=rf,u.tanh=uf,u.trunc=of,e===void 0&&(e={}),e&&e.defaults!==!0)for(r=["precision","rounding","toExpNeg","toExpPos","maxE","minE","modulo","crypto"],t=0;t<r.length;)e.hasOwnProperty(n=r[t++])||(e[n]=this[n]);return u.config(e),u}function Ol(e,t){return new this(e).div(t)}function Tl(e){return new this(e).exp()}function Pl(e){return O(e=new this(e),e.e+1,3)}function kl(){var e,t,n=new this(0);for(j=!1,e=0;e<arguments.length;)if(t=new this(arguments[e++]),t.d)n.d&&(n=n.plus(t.times(t)));else{if(t.s)return j=!0,new this(1/0);n=t}return j=!0,n.sqrt()}function fu(e){return e instanceof dt||e&&e.toStringTag===tu||!1}function jl(e){return new this(e).ln()}function Ul(e,t){return new this(e).log(t)}function Vl(e){return new this(e).log(2)}function ql(e){return new this(e).log(10)}function Hl(){return ou(this,arguments,"lt")}function zl(){return ou(this,arguments,"gt")}function Wl(e,t){return new this(e).mod(t)}function Zl(e,t){return new this(e).mul(t)}function Xl(e,t){return new this(e).pow(t)}function Jl(e){var t,n,r,u,i=0,s=new this(1),f=[];if(e===void 0?e=this.precision:Ee(e,1,Xe),r=Math.ceil(e/P),this.crypto)if(crypto.getRandomValues)for(t=crypto.getRandomValues(new Uint32Array(r));i<r;)u=t[i],u>=429e7?t[i]=crypto.getRandomValues(new Uint32Array(1))[0]:f[i++]=u%1e7;else if(crypto.randomBytes){for(t=crypto.randomBytes(r*=4);i<r;)u=t[i]+(t[i+1]<<8)+(t[i+2]<<16)+((t[i+3]&127)<<24),u>=214e7?crypto.randomBytes(4).copy(t,i):(f.push(u%1e7),i+=4);i=r/4}else throw Error(eu);else for(;i<r;)f[i++]=Math.random()*1e7|0;for(r=f[--i],e%=P,r&&e&&(u=ee(10,P-e),f[i]=(r/u|0)*u);f[i]===0;i--)f.pop();if(i<0)n=0,f=[0];else{for(n=-1;f[0]===0;n-=P)f.shift();for(r=1,u=f[0];u>=10;u/=10)r++;r<P&&(n-=P-r)}return s.e=n,s.d=f,s}function Kl(e){return O(e=new this(e),e.e+1,this.rounding)}function Gl(e){return e=new this(e),e.d?e.d[0]?e.s:0*e.s:e.s||NaN}function Ql(e){return new this(e).sin()}function Yl(e){return new this(e).sinh()}function ef(e){return new this(e).sqrt()}function tf(e,t){return new this(e).sub(t)}function nf(){var e=0,t=arguments,n=new this(t[e]);for(j=!1;n.s&&++e<t.length;)n=n.plus(t[e]);return j=!0,O(n,this.precision,this.rounding)}function rf(e){return new this(e).tan()}function uf(e){return new this(e).tanh()}function of(e){return O(e=new this(e),e.e+1,1)}w[Symbol.for("nodejs.util.inspect.custom")]=w.toString,w[Symbol.toStringTag]="Decimal";var dt=w.constructor=lu(qn);Xt=new dt(Xt),Jt=new dt(Jt);var af="BigNumber",sf=["?on","config"],cf=me(af,sf,e=>{var{on:t,config:n}=e,r=dt.clone({precision:n.precision,modulo:dt.EUCLID});return r.prototype=Object.create(r.prototype),r.prototype.type="BigNumber",r.prototype.isBigNumber=!0,r.prototype.toJSON=function(){return{mathjs:"BigNumber",value:this.toString()}},r.fromJSON=function(u){return new r(u.value)},t&&t("config",function(u,i){u.precision!==i.precision&&r.config({precision:u.precision})}),r},{isClass:!0}),hu={exports:{}};/**
17
17
  * @license Complex.js v2.1.1 12/05/2020
18
18
  *
19
19
  * Copyright (c) 2020, Robert Eisele (robert@xarg.org)
@@ -25,4 +25,4 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
25
25
  *
26
26
  * Copyright (c) 2021, Robert Eisele (robert@xarg.org)
27
27
  * Dual licensed under the MIT or GPL Version 2 licenses.
28
- **/(function(e,t){(function(n){var r=2e3,u={s:1,n:0,d:1};function i(p,D){if(isNaN(p=parseInt(p,10)))throw h.InvalidParameter;return p*D}function s(p,D){if(D===0)throw h.DivisionByZero;var m=Object.create(h.prototype);m.s=p<0?-1:1,p=p<0?-p:p;var g=c(p,D);return m.n=p/g,m.d=D/g,m}function f(p){for(var D={},m=p,g=2,C=4;C<=m;){for(;m%g===0;)m/=g,D[g]=(D[g]||0)+1;C+=1+2*g++}return m!==p?m>1&&(D[m]=(D[m]||0)+1):D[p]=(D[p]||0)+1,D}var l=function(p,D){var m=0,g=1,C=1,F=0,b=0,R=0,L=1,k=1,I=0,$=1,J=1,V=1,G=1e7,Q;if(p!=null)if(D!==void 0){if(m=p,g=D,C=m*g,m%1!==0||g%1!==0)throw h.NonIntegerParameter}else switch(typeof p){case"object":{if("d"in p&&"n"in p)m=p.n,g=p.d,"s"in p&&(m*=p.s);else if(0 in p)m=p[0],1 in p&&(g=p[1]);else throw h.InvalidParameter;C=m*g;break}case"number":{if(p<0&&(C=p,p=-p),p%1===0)m=p;else if(p>0){for(p>=1&&(k=Math.pow(10,Math.floor(1+Math.log(p)/Math.LN10)),p/=k);$<=G&&V<=G;)if(Q=(I+J)/($+V),p===Q){$+V<=G?(m=I+J,g=$+V):V>$?(m=J,g=V):(m=I,g=$);break}else p>Q?(I+=J,$+=V):(J+=I,V+=$),$>G?(m=J,g=V):(m=I,g=$);m*=k}else(isNaN(p)||isNaN(D))&&(g=m=NaN);break}case"string":{if($=p.match(/\d+|./g),$===null)throw h.InvalidParameter;if($[I]==="-"?(C=-1,I++):$[I]==="+"&&I++,$.length===I+1?b=i($[I++],C):$[I+1]==="."||$[I]==="."?($[I]!=="."&&(F=i($[I++],C)),I++,(I+1===$.length||$[I+1]==="("&&$[I+3]===")"||$[I+1]==="'"&&$[I+3]==="'")&&(b=i($[I],C),L=Math.pow(10,$[I].length),I++),($[I]==="("&&$[I+2]===")"||$[I]==="'"&&$[I+2]==="'")&&(R=i($[I+1],C),k=Math.pow(10,$[I+1].length)-1,I+=3)):$[I+1]==="/"||$[I+1]===":"?(b=i($[I],C),L=i($[I+2],1),I+=3):$[I+3]==="/"&&$[I+1]===" "&&(F=i($[I],C),b=i($[I+2],C),L=i($[I+4],1),I+=5),$.length<=I){g=L*k,C=m=R+g*F+k*b;break}}default:throw h.InvalidParameter}if(g===0)throw h.DivisionByZero;u.s=C<0?-1:1,u.n=Math.abs(m),u.d=Math.abs(g)};function d(p,D,m){for(var g=1;D>0;p=p*p%m,D>>=1)D&1&&(g=g*p%m);return g}function a(p,D){for(;D%2===0;D/=2);for(;D%5===0;D/=5);if(D===1)return 0;for(var m=10%D,g=1;m!==1;g++)if(m=m*10%D,g>r)return 0;return g}function o(p,D,m){for(var g=1,C=d(10,m,D),F=0;F<300;F++){if(g===C)return F;g=g*10%D,C=C*10%D}return 0}function c(p,D){if(!p)return D;if(!D)return p;for(;;){if(p%=D,!p)return D;if(D%=p,!D)return p}}function h(p,D){if(l(p,D),this instanceof h)p=c(u.d,u.n),this.s=u.s,this.n=u.n/p,this.d=u.d/p;else return s(u.s*u.n,u.d)}h.DivisionByZero=new Error("Division by Zero"),h.InvalidParameter=new Error("Invalid argument"),h.NonIntegerParameter=new Error("Parameters must be integer"),h.prototype={s:1,n:0,d:1,abs:function(){return s(this.n,this.d)},neg:function(){return s(-this.s*this.n,this.d)},add:function(p,D){return l(p,D),s(this.s*this.n*u.d+u.s*this.d*u.n,this.d*u.d)},sub:function(p,D){return l(p,D),s(this.s*this.n*u.d-u.s*this.d*u.n,this.d*u.d)},mul:function(p,D){return l(p,D),s(this.s*u.s*this.n*u.n,this.d*u.d)},div:function(p,D){return l(p,D),s(this.s*u.s*this.n*u.d,this.d*u.n)},clone:function(){return s(this.s*this.n,this.d)},mod:function(p,D){if(isNaN(this.n)||isNaN(this.d))return new h(NaN);if(p===void 0)return s(this.s*this.n%this.d,1);if(l(p,D),u.n===0&&this.d===0)throw h.DivisionByZero;return s(this.s*(u.d*this.n)%(u.n*this.d),u.d*this.d)},gcd:function(p,D){return l(p,D),s(c(u.n,this.n)*c(u.d,this.d),u.d*this.d)},lcm:function(p,D){return l(p,D),u.n===0&&this.n===0?s(0,1):s(u.n*this.n,c(u.n,this.n)*c(u.d,this.d))},ceil:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.ceil(p*this.s*this.n/this.d),p)},floor:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.floor(p*this.s*this.n/this.d),p)},round:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.round(p*this.s*this.n/this.d),p)},inverse:function(){return s(this.s*this.d,this.n)},pow:function(p,D){if(l(p,D),u.d===1)return u.s<0?s(Math.pow(this.s*this.d,u.n),Math.pow(this.n,u.n)):s(Math.pow(this.s*this.n,u.n),Math.pow(this.d,u.n));if(this.s<0)return null;var m=f(this.n),g=f(this.d),C=1,F=1;for(var b in m)if(b!=="1"){if(b==="0"){C=0;break}if(m[b]*=u.n,m[b]%u.d===0)m[b]/=u.d;else return null;C*=Math.pow(b,m[b])}for(var b in g)if(b!=="1"){if(g[b]*=u.n,g[b]%u.d===0)g[b]/=u.d;else return null;F*=Math.pow(b,g[b])}return u.s<0?s(F,C):s(C,F)},equals:function(p,D){return l(p,D),this.s*this.n*u.d===u.s*u.n*this.d},compare:function(p,D){l(p,D);var m=this.s*this.n*u.d-u.s*u.n*this.d;return(0<m)-(m<0)},simplify:function(p){if(isNaN(this.n)||isNaN(this.d))return this;p=p||.001;for(var D=this.abs(),m=D.toContinued(),g=1;g<m.length;g++){for(var C=s(m[g-1],1),F=g-2;F>=0;F--)C=C.inverse().add(m[F]);if(C.sub(D).abs().valueOf()<p)return C.mul(this.s)}return this},divisible:function(p,D){return l(p,D),!(!(u.n*this.d)||this.n*u.d%(u.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(p){var D,m="",g=this.n,C=this.d;return this.s<0&&(m+="-"),C===1?m+=g:(p&&(D=Math.floor(g/C))>0&&(m+=D,m+=" ",g%=C),m+=g,m+="/",m+=C),m},toLatex:function(p){var D,m="",g=this.n,C=this.d;return this.s<0&&(m+="-"),C===1?m+=g:(p&&(D=Math.floor(g/C))>0&&(m+=D,g%=C),m+="\\frac{",m+=g,m+="}{",m+=C,m+="}"),m},toContinued:function(){var p,D=this.n,m=this.d,g=[];if(isNaN(D)||isNaN(m))return g;do g.push(Math.floor(D/m)),p=D%m,D=m,m=p;while(D!==1);return g},toString:function(p){var D=this.n,m=this.d;if(isNaN(D)||isNaN(m))return"NaN";p=p||15;var g=a(D,m),C=o(D,m,g),F=this.s<0?"-":"";if(F+=D/m|0,D%=m,D*=10,D&&(F+="."),g){for(var b=C;b--;)F+=D/m|0,D%=m,D*=10;F+="(";for(var b=g;b--;)F+=D/m|0,D%=m,D*=10;F+=")"}else for(var b=p;D&&b--;)F+=D/m|0,D%=m,D*=10;return F}},Object.defineProperty(h,"__esModule",{value:!0}),h.default=h,h.Fraction=h,e.exports=h})()})(du);var qe=ur(du.exports),df="Fraction",pf=[],Df=me(df,pf,()=>(Object.defineProperty(qe,"name",{value:"Fraction"}),qe.prototype.constructor=qe,qe.prototype.type="Fraction",qe.prototype.isFraction=!0,qe.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},qe.fromJSON=function(e){return new qe(e)},qe),{isClass:!0}),gf="Matrix",vf=[],mf=me(gf,vf,()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(t,n){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(t,n,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(t){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(t,n,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(t,n){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(t,n){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(t,n){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(t){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(t){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e},{isClass:!0});function Ef(e){return Object.keys(e.signatures||{}).reduce(function(t,n){var r=(n.match(/,/g)||[]).length+1;return Math.max(t,r)},-1)}var Af="DenseMatrix",Cf=["Matrix"],Ff=me(Af,Cf,e=>{var{Matrix:t}=e;function n(a,o){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(o&&!qt(o))throw new Error("Invalid datatype: "+o);if(Mt(a))a.type==="DenseMatrix"?(this._data=Ye(a._data),this._size=Ye(a._size),this._datatype=o||a._datatype):(this._data=a.toArray(),this._size=a.size(),this._datatype=o||a._datatype);else if(a&&we(a.data)&&we(a.size))this._data=a.data,this._size=a.size,Hr(this._data,this._size),this._datatype=o||a.datatype;else if(we(a))this._data=d(a),this._size=On(this._data),Hr(this._data,this._size),this._datatype=o;else{if(a)throw new TypeError("Unsupported type of data ("+Rn(a)+")");this._data=[],this._size=[0],this._datatype=o}}n.prototype=new t,n.prototype.createDenseMatrix=function(a,o){return new n(a,o)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return kn(this._data,Rn)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(a,o){return new n(a,o)},n.prototype.subset=function(a,o,c){switch(arguments.length){case 1:return r(this,a);case 2:case 3:return i(this,a,o,c);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(a){if(!we(a))throw new TypeError("Array expected");if(a.length!==this._size.length)throw new re(a.length,this._size.length);for(var o=0;o<a.length;o++)Me(a[o],this._size[o]);for(var c=this._data,h=0,p=a.length;h<p;h++){var D=a[h];Me(D,c.length),c=c[D]}return c},n.prototype.set=function(a,o,c){if(!we(a))throw new TypeError("Array expected");if(a.length<this._size.length)throw new re(a.length,this._size.length,"<");var h,p,D,m=a.map(function(C){return C+1});l(this,m,c);var g=this._data;for(h=0,p=a.length-1;h<p;h++)D=a[h],Me(D,g.length),g=g[D];return D=a[a.length-1],Me(D,g.length),g[D]=o,this};function r(a,o){if(!xr(o))throw new TypeError("Invalid index");var c=o.isScalar();if(c)return a.get(o.min());var h=o.size();if(h.length!==a._size.length)throw new re(h.length,a._size.length);for(var p=o.min(),D=o.max(),m=0,g=a._size.length;m<g;m++)Me(p[m],a._size[m]),Me(D[m],a._size[m]);return new n(u(a._data,o,h.length,0),a._datatype)}function u(a,o,c,h){var p=h===c-1,D=o.dimension(h);return p?D.map(function(m){return Me(m,a.length),a[m]}).valueOf():D.map(function(m){Me(m,a.length);var g=a[m];return u(g,o,c,h+1)}).valueOf()}function i(a,o,c,h){if(!o||o.isIndex!==!0)throw new TypeError("Invalid index");var p=o.size(),D=o.isScalar(),m;if(Mt(c)?(m=c.size(),c=c.valueOf()):m=On(c),D){if(m.length!==0)throw new TypeError("Scalar expected");a.set(o.min(),c,h)}else{if(p.length<a._size.length)throw new re(p.length,a._size.length,"<");if(m.length<p.length){for(var g=0,C=0;p[g]===1&&m[g]===1;)g++;for(;p[g]===1;)C++,g++;c=Gc(c,p.length,C,m)}if(!xn(p,m))throw new re(p,m,">");var F=o.max().map(function(L){return L+1});l(a,F,h);var b=p.length,R=0;s(a._data,o,c,b,R)}return a}function s(a,o,c,h,p){var D=p===h-1,m=o.dimension(p);D?m.forEach(function(g,C){Me(g),a[g]=c[C[0]]}):m.forEach(function(g,C){Me(g),s(a[g],o,c[C[0]],h,p+1)})}n.prototype.resize=function(a,o,c){if(!_n(a))throw new TypeError("Array or Matrix expected");var h=a.valueOf().map(D=>Array.isArray(D)&&D.length===1?D[0]:D),p=c?this.clone():this;return f(p,h,o)};function f(a,o,c){if(o.length===0){for(var h=a._data;we(h);)h=h[0];return h}return a._size=o.slice(0),a._data=zr(a._data,a._size,c),a}n.prototype.reshape=function(a,o){var c=o?this.clone():this;c._data=Jc(c._data,a);var h=c._size.reduce((p,D)=>p*D);return c._size=Wr(a,h),c};function l(a,o,c){for(var h=a._size.slice(0),p=!1;h.length<o.length;)h.push(0),p=!0;for(var D=0,m=o.length;D<m;D++)o[D]>h[D]&&(h[D]=o[D],p=!0);p&&f(a,h,c)}n.prototype.clone=function(){var a=new n({data:Ye(this._data),size:Ye(this._size),datatype:this._datatype});return a},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(a){var o=this,c=Ef(a),h=function m(g,C){return we(g)?g.map(function(F,b){return m(F,C.concat(b))}):c===1?a(g):c===2?a(g,C):a(g,C,o)},p=h(this._data,[]),D=this._datatype!==void 0?kn(p,Rn):void 0;return new n(p,D)},n.prototype.forEach=function(a){var o=this,c=function h(p,D){we(p)?p.forEach(function(m,g){h(m,D.concat(g))}):a(p,D,o)};c(this._data,[])},n.prototype[Symbol.iterator]=function*(){var a=function*o(c,h){if(we(c))for(var p=0;p<c.length;p++)yield*o(c[p],h.concat(p));else yield{value:c,index:h}};yield*a(this._data,[])},n.prototype.rows=function(){var a=[],o=this.size();if(o.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");var c=this._data;for(var h of c)a.push(new n([h],this._datatype));return a},n.prototype.columns=function(){var a=this,o=[],c=this.size();if(c.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");for(var h=this._data,p=function(g){var C=h.map(F=>[F[g]]);o.push(new n(C,a._datatype))},D=0;D<c[1];D++)p(D);return o},n.prototype.toArray=function(){return Ye(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(a){return et(this._data,a)},n.prototype.toString=function(){return et(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(a){if(a){if(Ze(a)&&(a=a.toNumber()),!de(a)||!Oe(a))throw new TypeError("The parameter k must be an integer number")}else a=0;for(var o=a>0?a:0,c=a<0?-a:0,h=this._size[0],p=this._size[1],D=Math.min(h-c,p-o),m=[],g=0;g<D;g++)m[g]=this._data[g+c][g+o];return new n({data:m,size:[D],datatype:this._datatype})},n.diagonal=function(a,o,c,h){if(!we(a))throw new TypeError("Array expected, size parameter");if(a.length!==2)throw new Error("Only two dimensions matrix are supported");if(a=a.map(function(k){if(Ze(k)&&(k=k.toNumber()),!de(k)||!Oe(k)||k<1)throw new Error("Size values must be positive integers");return k}),c){if(Ze(c)&&(c=c.toNumber()),!de(c)||!Oe(c))throw new TypeError("The parameter k must be an integer number")}else c=0;var p=c>0?c:0,D=c<0?-c:0,m=a[0],g=a[1],C=Math.min(m-D,g-p),F;if(we(o)){if(o.length!==C)throw new Error("Invalid value array length");F=function(I){return o[I]}}else if(Mt(o)){var b=o.size();if(b.length!==1||b[0]!==C)throw new Error("Invalid matrix length");F=function(I){return o.get([I])}}else F=function(){return o};h||(h=Ze(F(0))?F(0).mul(0):0);var R=[];if(a.length>0){R=zr(R,a,h);for(var L=0;L<C;L++)R[L+D][L+p]=F(L)}return new n({data:R,size:[m,g]})},n.fromJSON=function(a){return new n(a)},n.prototype.swapRows=function(a,o){if(!de(a)||!Oe(a)||!de(o)||!Oe(o))throw new Error("Row index must be positive integers");if(this._size.length!==2)throw new Error("Only two dimensional matrix is supported");return Me(a,this._size[0]),Me(o,this._size[0]),n._swapRows(a,o,this._data),this},n._swapRows=function(a,o,c){var h=c[a];c[a]=c[o],c[o]=h};function d(a){for(var o=0,c=a.length;o<c;o++){var h=a[o];we(h)?a[o]=d(h):h&&h.isMatrix===!0&&(a[o]=d(h.valueOf()))}return a}return n},{isClass:!0}),pu="equalScalar";me(pu,["typed","config"],e=>{var{typed:t,config:n}=e;return t(pu,{"number, number":function(u,i){return qc(u,i,n.epsilon)}})});function It(e,t,n,r){if(!(this instanceof It))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=n,this.max=r,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+n+(r!=null?"-"+r:"")+" expected)",this.stack=new Error().stack}It.prototype=new Error,It.prototype.constructor=Error,It.prototype.name="ArgumentsError",It.prototype.isArgumentsError=!0;var Du="format",yf=["typed"],wf=me(Du,yf,e=>{var{typed:t}=e;return t(Du,{any:et,"any, Object | function | number":et})}),gu="bin",Bf=["typed","format"];me(gu,Bf,e=>{var{typed:t,format:n}=e;return t(gu,{"number | BigNumber":function(u){return n(u,{notation:"bin"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"bin",wordSize:i})}})});var vu="oct",bf=["typed","format"];me(vu,bf,e=>{var{typed:t,format:n}=e;return t(vu,{"number | BigNumber":function(u){return n(u,{notation:"oct"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"oct",wordSize:i})}})});var mu="hex",Sf=["typed","format"];me(mu,Sf,e=>{var{typed:t,format:n}=e;return t(mu,{"number | BigNumber":function(u){return n(u,{notation:"hex"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"hex",wordSize:i})}})});var Eu="equal";me(Eu,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Eu,{"any, any":function(u,i){return u===null?i===null:i===null?u===null:u===void 0?i===void 0:i===void 0?u===void 0:n(u,i)}})});var Au="unequal";me(Au,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Au,{"any, any":function(u,i){return u===null?i!==null:i===null?u!==null:u===void 0?i!==void 0:i===void 0?u!==void 0:!n(u,i)}})});var Cu={exports:{}};(function(e){(function(t,n,r){function u(l){var d=this,a=f();d.next=function(){var o=2091639*d.s0+d.c*23283064365386963e-26;return d.s0=d.s1,d.s1=d.s2,d.s2=o-(d.c=o|0)},d.c=1,d.s0=a(" "),d.s1=a(" "),d.s2=a(" "),d.s0-=a(l),d.s0<0&&(d.s0+=1),d.s1-=a(l),d.s1<0&&(d.s1+=1),d.s2-=a(l),d.s2<0&&(d.s2+=1),a=null}function i(l,d){return d.c=l.c,d.s0=l.s0,d.s1=l.s1,d.s2=l.s2,d}function s(l,d){var a=new u(l),o=d&&d.state,c=a.next;return c.int32=function(){return a.next()*4294967296|0},c.double=function(){return c()+(c()*2097152|0)*11102230246251565e-32},c.quick=c,o&&(typeof o=="object"&&i(o,a),c.state=function(){return i(a,{})}),c}function f(){var l=4022871197,d=function(a){a=String(a);for(var o=0;o<a.length;o++){l+=a.charCodeAt(o);var c=.02519603282416938*l;l=c>>>0,c-=l,c*=l,l=c>>>0,c-=l,l+=c*4294967296}return(l>>>0)*23283064365386963e-26};return d}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.alea=s})(ze,e,!1)})(Cu);var Fu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.x=0,l.y=0,l.z=0,l.w=0,l.next=function(){var o=l.x^l.x<<11;return l.x=l.y,l.y=l.z,l.z=l.w,l.w^=l.w>>>19^o^o>>>8},f===(f|0)?l.x=f:d+=f;for(var a=0;a<d.length+64;a++)l.x^=d.charCodeAt(a)|0,l.next()}function i(f,l){return l.x=f.x,l.y=f.y,l.z=f.z,l.w=f.w,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xor128=s})(ze,e,!1)})(Fu);var yu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.next=function(){var o=l.x^l.x>>>2;return l.x=l.y,l.y=l.z,l.z=l.w,l.w=l.v,(l.d=l.d+362437|0)+(l.v=l.v^l.v<<4^(o^o<<1))|0},l.x=0,l.y=0,l.z=0,l.w=0,l.v=0,f===(f|0)?l.x=f:d+=f;for(var a=0;a<d.length+64;a++)l.x^=d.charCodeAt(a)|0,a==d.length&&(l.d=l.x<<10^l.x>>>4),l.next()}function i(f,l){return l.x=f.x,l.y=f.y,l.z=f.z,l.w=f.w,l.v=f.v,l.d=f.d,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xorwow=s})(ze,e,!1)})(yu);var wu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this;l.next=function(){var a=l.x,o=l.i,c,h;return c=a[o],c^=c>>>7,h=c^c<<24,c=a[o+1&7],h^=c^c>>>10,c=a[o+3&7],h^=c^c>>>3,c=a[o+4&7],h^=c^c<<7,c=a[o+7&7],c=c^c<<13,h^=c^c<<9,a[o]=h,l.i=o+1&7,h};function d(a,o){var c,h=[];if(o===(o|0))h[0]=o;else for(o=""+o,c=0;c<o.length;++c)h[c&7]=h[c&7]<<15^o.charCodeAt(c)+h[c+1&7]<<13;for(;h.length<8;)h.push(0);for(c=0;c<8&&h[c]===0;++c);for(c==8&&(h[7]=-1),a.x=h,a.i=0,c=256;c>0;--c)a.next()}d(l,f)}function i(f,l){return l.x=f.x.slice(),l.i=f.i,l}function s(f,l){f==null&&(f=+new Date);var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(a.x&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xorshift7=s})(ze,e,!1)})(wu);var Bu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this;l.next=function(){var a=l.w,o=l.X,c=l.i,h,p;return l.w=a=a+1640531527|0,p=o[c+34&127],h=o[c=c+1&127],p^=p<<13,h^=h<<17,p^=p>>>15,h^=h>>>12,p=o[c]=p^h,l.i=c,p+(a^a>>>16)|0};function d(a,o){var c,h,p,D,m,g=[],C=128;for(o===(o|0)?(h=o,o=null):(o=o+"\0",h=0,C=Math.max(C,o.length)),p=0,D=-32;D<C;++D)o&&(h^=o.charCodeAt((D+32)%o.length)),D===0&&(m=h),h^=h<<10,h^=h>>>15,h^=h<<4,h^=h>>>13,D>=0&&(m=m+1640531527|0,c=g[D&127]^=h+m,p=c==0?p+1:0);for(p>=128&&(g[(o&&o.length||0)&127]=-1),p=127,D=4*128;D>0;--D)h=g[p+34&127],c=g[p=p+1&127],h^=h<<13,c^=c<<17,h^=h>>>15,c^=c>>>12,g[p]=h^c;a.w=m,a.X=g,a.i=p}d(l,f)}function i(f,l){return l.i=f.i,l.w=f.w,l.X=f.X.slice(),l}function s(f,l){f==null&&(f=+new Date);var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(a.X&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xor4096=s})(ze,e,!1)})(Bu);var bu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.next=function(){var o=l.b,c=l.c,h=l.d,p=l.a;return o=o<<25^o>>>7^c,c=c-h|0,h=h<<24^h>>>8^p,p=p-o|0,l.b=o=o<<20^o>>>12^c,l.c=c=c-h|0,l.d=h<<16^c>>>16^p,l.a=p-o|0},l.a=0,l.b=0,l.c=-1640531527,l.d=1367130551,f===Math.floor(f)?(l.a=f/4294967296|0,l.b=f|0):d+=f;for(var a=0;a<d.length+20;a++)l.b^=d.charCodeAt(a)|0,l.next()}function i(f,l){return l.a=f.a,l.b=f.b,l.c=f.c,l.d=f.d,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.tychei=s})(ze,e,!1)})(bu);var Su={exports:{}};(function(e){(function(t,n,r){var u=256,i=6,s=52,f="random",l=r.pow(u,i),d=r.pow(2,s),a=d*2,o=u-1,c;function h(b,R,L){var k=[];R=R==!0?{entropy:!0}:R||{};var I=g(m(R.entropy?[b,F(n)]:b==null?C():b,3),k),$=new p(k),J=function(){for(var V=$.g(i),G=l,Q=0;V<d;)V=(V+Q)*u,G*=u,Q=$.g(1);for(;V>=a;)V/=2,G/=2,Q>>>=1;return(V+Q)/G};return J.int32=function(){return $.g(4)|0},J.quick=function(){return $.g(4)/4294967296},J.double=J,g(F($.S),n),(R.pass||L||function(V,G,Q,pe){return pe&&(pe.S&&D(pe,$),V.state=function(){return D($,{})}),Q?(r[f]=V,G):V})(J,I,"global"in R?R.global:this==r,R.state)}function p(b){var R,L=b.length,k=this,I=0,$=k.i=k.j=0,J=k.S=[];for(L||(b=[L++]);I<u;)J[I]=I++;for(I=0;I<u;I++)J[I]=J[$=o&$+b[I%L]+(R=J[I])],J[$]=R;(k.g=function(V){for(var G,Q=0,pe=k.i,K=k.j,q=k.S;V--;)G=q[pe=o&pe+1],Q=Q*u+q[o&(q[pe]=q[K=o&K+G])+(q[K]=G)];return k.i=pe,k.j=K,Q})(u)}function D(b,R){return R.i=b.i,R.j=b.j,R.S=b.S.slice(),R}function m(b,R){var L=[],k=typeof b,I;if(R&&k=="object")for(I in b)try{L.push(m(b[I],R-1))}catch($){}return L.length?L:k=="string"?b:b+"\0"}function g(b,R){for(var L=b+"",k,I=0;I<L.length;)R[o&I]=o&(k^=R[o&I]*19)+L.charCodeAt(I++);return F(R)}function C(){try{var b;return c&&(b=c.randomBytes)?b=b(u):(b=new Uint8Array(u),(t.crypto||t.msCrypto).getRandomValues(b)),F(b)}catch(k){var R=t.navigator,L=R&&R.plugins;return[+new Date,t,L,t.screen,F(n)]}}function F(b){return String.fromCharCode.apply(0,b)}if(g(r.random(),n),e.exports){e.exports=h;try{c=an.default}catch(b){}}else r["seed"+f]=h})(typeof self!="undefined"?self:ze,[],Math)})(Su);var Mf=Cu.exports,Nf=Fu.exports,If=yu.exports,_f=wu.exports,Rf=Bu.exports,xf=bu.exports,pt=Su.exports;pt.alea=Mf,pt.xor128=Nf,pt.xorwow=If,pt.xorshift7=_f,pt.xor4096=Rf,pt.tychei=xf,tn("fineStructure",.0072973525693),tn("weakMixingAngle",.2229),tn("efimovFactor",22.7),tn("sackurTetrode",-1.16487052358);function tn(e,t){var n=["config","BigNumber"];return me(e,n,r=>{var{config:u,BigNumber:i}=r;return u.number==="BigNumber"?new i(t):t})}var $f=cf({config:$r}),Lf=hf({}),Tf=Df({}),Of=mf({}),Pf=Ff({Matrix:Of}),kf=fl({BigNumber:$f,Complex:Lf,DenseMatrix:Pf,Fraction:Tf}),jf=wf({typed:kf});class Uf{constructor(t){this.calcControls=[],this.dependenciesTriggerMap=new Map,this.hideNotRememberControlIds=[],this.dontHasPermissionControlIds=[],this.cacheComputedResult={},this.options=t,this.getDontHasPermissionControlIds(),this.getNeedHideRememberControlIds()}getNeedHideRememberControlIds(){var t;!((t=this.options)==null?void 0:t.displayBoList)||(this.hideNotRememberControlIds=this.options.displayBoList.reduce((n,r)=>(r.is_remember||n.push(...r.hide_controls),n),[]))}getDontHasPermissionControlIds(){var t;!((t=this.options)==null?void 0:t.behavior)||(this.dontHasPermissionControlIds=this.options.behavior.reduce((n,r)=>(r.ctrlBehavior===1&&n.push(r.ctrlId),n),[]))}controlNeedComputedValue(t){if(!t)return!1;const n=this.getControlIsHide(t);return!(this.dontHasPermissionControlIds.includes(t.id)&&n||this.hideNotRememberControlIds.includes(t.id)&&n)}getControlIsHide(t){return t.props.isHide?!0:t.parent===null?!1:this.getControlIsHide(t.parent)}apply(t){this.engine=t,this.resetDependencies(),this.watchControlChange(),this.watchSubtableChange(),this.watchSchemaHideChange(),this.engine.on("engine-mounted",()=>{this.allCalcControlComputed()})}resetDependencies(){this.calcControls=[],this.dependenciesTriggerMap.clear(),this.getAllCalcControl(),this.getCalcDependencies()}allCalcControlComputed(){this.calcControls.forEach(t=>this.computedCalcValue(t))}getAllCalcControl(){this.calcControls=this.engine.runtime.flatInstances.filter(t=>t.type===W.CALC)}getCalcDependencies(){this.calcControls.forEach(t=>{const{scriptEcho:n}=t.props;n.forEach(r=>{(r.type===Ie.VariableInMainTable||r.type===Ie.VariableInCurrentSubTable||r.type===Ie.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(r.id,t),r.type===Ie.VariableInOtherSubTable&&r.subTableId&&this.setDependenciesTriggerMapItem(r.subTableId,t)})})}setDependenciesTriggerMapItem(t,n){this.dependenciesTriggerMap.has(t)||this.dependenciesTriggerMap.set(t,[]);const r=this.dependenciesTriggerMap.get(t);r.includes(n)||r.push(n)}getCalcControlsFromSubtableRows(t){return t.reduce((n,r)=>(r.children.forEach(u=>{const i=u.children[0];i&&this.engine.assertInstance(i,W.CALC)&&n.push(i)}),n),[])}watchSchemaHideChange(){this.engine.on("schema-change",t=>{var n;t.props==="isHide"&&((n=this.dependenciesTriggerMap.get(t.instance.id))!=null?n:[]).forEach(u=>{this.computedCalcValue(u)})})}watchSubtableChange(){this.engine.on("list-change",t=>{var i,s,f;this.resetDependencies();const n=(s=(i=t.options)==null?void 0:i.changed)!=null?s:[];this.getCalcControlsFromSubtableRows(n).forEach(l=>{this.computedCalcValue(l)}),((f=this.dependenciesTriggerMap.get(t.instance.id))!=null?f:[]).forEach(l=>{this.computedCalcValue(l)})})}watchControlChange(){this.engine.on("change",t=>{var u;const{instance:n}=t;if(!this.dependenciesTriggerMap.has(n.id))return;const r=(u=this.dependenciesTriggerMap.get(n.id))!=null?u:[];t.rowIndex!==void 0&&t.rowIndex>-1?r.forEach(i=>{this.controlInSubtable(i)&&this.engine.getInstanceRowIndex(i)!==t.rowIndex||this.computedCalcValue(i)}):r.forEach(i=>{this.computedCalcValue(i)})})}controlInSubtable(t){var n;return((n=t.parent)==null?void 0:n.type)===W.SUBTABLE_COLUMN}computedCalcValue(t){var l;const n=t.props.scriptEcho;if(!n||n.length===0)return;const r=n.reduce((d,a)=>{if(a.type===Ie.Operator||a.type===Ie.Number)return d+a.name;let o=0,c;switch(a.type){case Ie.VariableInMainTable:{const h=this.getNumberValue(this.engine.getState(a.id));c=this.engine.getInstance(a.id),o=Number(h);break}case Ie.VariableInCurrentSubTable:{const h=this.engine.getInstanceRowIndex(t);c=this.engine.getInstance(a.id,h);const p=this.engine.getState(a.id,h),D=this.getNumberValue(p);o=Number(D);break}case Ie.VariableInOtherSubTable:{const h=this.engine.getState(a.id),p=Array.isArray(h)?h.map(m=>this.getNumberValue(m)):[],D=this.getAggregateTypeValue(p,a.aggregateType);c=this.engine.getInstance(a.subTableId),o=Number(D);break}}return!Number.isNaN(o)&&this.controlNeedComputedValue(c)?d+=`(${o})`:d+=0,d},"");let u;this.cacheComputedResult[r]!==void 0?u=this.cacheComputedResult[r]:(u=Number(jf(new Function(`return ${r}`)(),{precision:16})),this.cacheComputedResult[r]=u);let i;if(this.controlInSubtable(t)&&(i=this.engine.getInstanceRowIndex(t),i===void 0))return;const s=this.engine.getState(t.id,i),f=!u||u===1/0||u===-1/0?0:t.props.precision===""?u:Number(u.toFixed(t.props.precision));f!==(s==null?void 0:s.result)&&this.engine.setState(t.id,{result:f,unit:(l=s==null?void 0:s.unit)!=null?l:""},i)}getNumberValue(t){if(typeof t=="object"&&t){if("result"in t)return t.result;if("amount"in t)return t.amount}return typeof t=="number"?t:0}getAggregateTypeValue(t,n){if(!n||!t||!t.length)return 0;switch(n){case rt.MAX:return Math.max(...t);case rt.MIN:return Math.min(...t);case rt.SUM:return t.reduce((r,u)=>r+u);case rt.AVG:return t.reduce((r,u)=>r+u)/t.length}}}class Vf{constructor(t){this.config=t}apply(t){var i,s;this.engine=t;const n=(s=(i=this.config)==null?void 0:i.source)!=null?s:"";let r=document.createElement("style");r.className="edit-css",r.type="text/css",r.innerHTML=n,document.querySelector("head").appendChild(r)}}z.CalcPlugin=Uf,z.ControlsEventPlugin=rc,z.ES6ModulePlugin=ec,z.Engine=Q0,z.LifecycleEventPlugin=nc,z.Plugin=Y0,z.StylePlugin=Vf,z.buildUUID=mr,z.hasChildrenControl=Ut,z.loopDataViewControl=it,z.loopFormControl=ut,z.parseModule=Mr,Object.defineProperty(z,"__esModule",{value:!0})});
28
+ **/(function(e,t){(function(n){var r=2e3,u={s:1,n:0,d:1};function i(p,D){if(isNaN(p=parseInt(p,10)))throw h.InvalidParameter;return p*D}function s(p,D){if(D===0)throw h.DivisionByZero;var m=Object.create(h.prototype);m.s=p<0?-1:1,p=p<0?-p:p;var g=c(p,D);return m.n=p/g,m.d=D/g,m}function f(p){for(var D={},m=p,g=2,C=4;C<=m;){for(;m%g===0;)m/=g,D[g]=(D[g]||0)+1;C+=1+2*g++}return m!==p?m>1&&(D[m]=(D[m]||0)+1):D[p]=(D[p]||0)+1,D}var l=function(p,D){var m=0,g=1,C=1,F=0,b=0,R=0,L=1,k=1,I=0,$=1,J=1,V=1,G=1e7,Q;if(p!=null)if(D!==void 0){if(m=p,g=D,C=m*g,m%1!==0||g%1!==0)throw h.NonIntegerParameter}else switch(typeof p){case"object":{if("d"in p&&"n"in p)m=p.n,g=p.d,"s"in p&&(m*=p.s);else if(0 in p)m=p[0],1 in p&&(g=p[1]);else throw h.InvalidParameter;C=m*g;break}case"number":{if(p<0&&(C=p,p=-p),p%1===0)m=p;else if(p>0){for(p>=1&&(k=Math.pow(10,Math.floor(1+Math.log(p)/Math.LN10)),p/=k);$<=G&&V<=G;)if(Q=(I+J)/($+V),p===Q){$+V<=G?(m=I+J,g=$+V):V>$?(m=J,g=V):(m=I,g=$);break}else p>Q?(I+=J,$+=V):(J+=I,V+=$),$>G?(m=J,g=V):(m=I,g=$);m*=k}else(isNaN(p)||isNaN(D))&&(g=m=NaN);break}case"string":{if($=p.match(/\d+|./g),$===null)throw h.InvalidParameter;if($[I]==="-"?(C=-1,I++):$[I]==="+"&&I++,$.length===I+1?b=i($[I++],C):$[I+1]==="."||$[I]==="."?($[I]!=="."&&(F=i($[I++],C)),I++,(I+1===$.length||$[I+1]==="("&&$[I+3]===")"||$[I+1]==="'"&&$[I+3]==="'")&&(b=i($[I],C),L=Math.pow(10,$[I].length),I++),($[I]==="("&&$[I+2]===")"||$[I]==="'"&&$[I+2]==="'")&&(R=i($[I+1],C),k=Math.pow(10,$[I+1].length)-1,I+=3)):$[I+1]==="/"||$[I+1]===":"?(b=i($[I],C),L=i($[I+2],1),I+=3):$[I+3]==="/"&&$[I+1]===" "&&(F=i($[I],C),b=i($[I+2],C),L=i($[I+4],1),I+=5),$.length<=I){g=L*k,C=m=R+g*F+k*b;break}}default:throw h.InvalidParameter}if(g===0)throw h.DivisionByZero;u.s=C<0?-1:1,u.n=Math.abs(m),u.d=Math.abs(g)};function d(p,D,m){for(var g=1;D>0;p=p*p%m,D>>=1)D&1&&(g=g*p%m);return g}function a(p,D){for(;D%2===0;D/=2);for(;D%5===0;D/=5);if(D===1)return 0;for(var m=10%D,g=1;m!==1;g++)if(m=m*10%D,g>r)return 0;return g}function o(p,D,m){for(var g=1,C=d(10,m,D),F=0;F<300;F++){if(g===C)return F;g=g*10%D,C=C*10%D}return 0}function c(p,D){if(!p)return D;if(!D)return p;for(;;){if(p%=D,!p)return D;if(D%=p,!D)return p}}function h(p,D){if(l(p,D),this instanceof h)p=c(u.d,u.n),this.s=u.s,this.n=u.n/p,this.d=u.d/p;else return s(u.s*u.n,u.d)}h.DivisionByZero=new Error("Division by Zero"),h.InvalidParameter=new Error("Invalid argument"),h.NonIntegerParameter=new Error("Parameters must be integer"),h.prototype={s:1,n:0,d:1,abs:function(){return s(this.n,this.d)},neg:function(){return s(-this.s*this.n,this.d)},add:function(p,D){return l(p,D),s(this.s*this.n*u.d+u.s*this.d*u.n,this.d*u.d)},sub:function(p,D){return l(p,D),s(this.s*this.n*u.d-u.s*this.d*u.n,this.d*u.d)},mul:function(p,D){return l(p,D),s(this.s*u.s*this.n*u.n,this.d*u.d)},div:function(p,D){return l(p,D),s(this.s*u.s*this.n*u.d,this.d*u.n)},clone:function(){return s(this.s*this.n,this.d)},mod:function(p,D){if(isNaN(this.n)||isNaN(this.d))return new h(NaN);if(p===void 0)return s(this.s*this.n%this.d,1);if(l(p,D),u.n===0&&this.d===0)throw h.DivisionByZero;return s(this.s*(u.d*this.n)%(u.n*this.d),u.d*this.d)},gcd:function(p,D){return l(p,D),s(c(u.n,this.n)*c(u.d,this.d),u.d*this.d)},lcm:function(p,D){return l(p,D),u.n===0&&this.n===0?s(0,1):s(u.n*this.n,c(u.n,this.n)*c(u.d,this.d))},ceil:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.ceil(p*this.s*this.n/this.d),p)},floor:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.floor(p*this.s*this.n/this.d),p)},round:function(p){return p=Math.pow(10,p||0),isNaN(this.n)||isNaN(this.d)?new h(NaN):s(Math.round(p*this.s*this.n/this.d),p)},inverse:function(){return s(this.s*this.d,this.n)},pow:function(p,D){if(l(p,D),u.d===1)return u.s<0?s(Math.pow(this.s*this.d,u.n),Math.pow(this.n,u.n)):s(Math.pow(this.s*this.n,u.n),Math.pow(this.d,u.n));if(this.s<0)return null;var m=f(this.n),g=f(this.d),C=1,F=1;for(var b in m)if(b!=="1"){if(b==="0"){C=0;break}if(m[b]*=u.n,m[b]%u.d===0)m[b]/=u.d;else return null;C*=Math.pow(b,m[b])}for(var b in g)if(b!=="1"){if(g[b]*=u.n,g[b]%u.d===0)g[b]/=u.d;else return null;F*=Math.pow(b,g[b])}return u.s<0?s(F,C):s(C,F)},equals:function(p,D){return l(p,D),this.s*this.n*u.d===u.s*u.n*this.d},compare:function(p,D){l(p,D);var m=this.s*this.n*u.d-u.s*u.n*this.d;return(0<m)-(m<0)},simplify:function(p){if(isNaN(this.n)||isNaN(this.d))return this;p=p||.001;for(var D=this.abs(),m=D.toContinued(),g=1;g<m.length;g++){for(var C=s(m[g-1],1),F=g-2;F>=0;F--)C=C.inverse().add(m[F]);if(C.sub(D).abs().valueOf()<p)return C.mul(this.s)}return this},divisible:function(p,D){return l(p,D),!(!(u.n*this.d)||this.n*u.d%(u.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(p){var D,m="",g=this.n,C=this.d;return this.s<0&&(m+="-"),C===1?m+=g:(p&&(D=Math.floor(g/C))>0&&(m+=D,m+=" ",g%=C),m+=g,m+="/",m+=C),m},toLatex:function(p){var D,m="",g=this.n,C=this.d;return this.s<0&&(m+="-"),C===1?m+=g:(p&&(D=Math.floor(g/C))>0&&(m+=D,g%=C),m+="\\frac{",m+=g,m+="}{",m+=C,m+="}"),m},toContinued:function(){var p,D=this.n,m=this.d,g=[];if(isNaN(D)||isNaN(m))return g;do g.push(Math.floor(D/m)),p=D%m,D=m,m=p;while(D!==1);return g},toString:function(p){var D=this.n,m=this.d;if(isNaN(D)||isNaN(m))return"NaN";p=p||15;var g=a(D,m),C=o(D,m,g),F=this.s<0?"-":"";if(F+=D/m|0,D%=m,D*=10,D&&(F+="."),g){for(var b=C;b--;)F+=D/m|0,D%=m,D*=10;F+="(";for(var b=g;b--;)F+=D/m|0,D%=m,D*=10;F+=")"}else for(var b=p;D&&b--;)F+=D/m|0,D%=m,D*=10;return F}},Object.defineProperty(h,"__esModule",{value:!0}),h.default=h,h.Fraction=h,e.exports=h})()})(du);var qe=ur(du.exports),df="Fraction",pf=[],Df=me(df,pf,()=>(Object.defineProperty(qe,"name",{value:"Fraction"}),qe.prototype.constructor=qe,qe.prototype.type="Fraction",qe.prototype.isFraction=!0,qe.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},qe.fromJSON=function(e){return new qe(e)},qe),{isClass:!0}),gf="Matrix",vf=[],mf=me(gf,vf,()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(t,n){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(t,n,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(t){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(t,n,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(t,n){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(t,n){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(t,n){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(t){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(t){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e},{isClass:!0});function Ef(e){return Object.keys(e.signatures||{}).reduce(function(t,n){var r=(n.match(/,/g)||[]).length+1;return Math.max(t,r)},-1)}var Af="DenseMatrix",Cf=["Matrix"],Ff=me(Af,Cf,e=>{var{Matrix:t}=e;function n(a,o){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(o&&!qt(o))throw new Error("Invalid datatype: "+o);if(Mt(a))a.type==="DenseMatrix"?(this._data=Ye(a._data),this._size=Ye(a._size),this._datatype=o||a._datatype):(this._data=a.toArray(),this._size=a.size(),this._datatype=o||a._datatype);else if(a&&we(a.data)&&we(a.size))this._data=a.data,this._size=a.size,Hr(this._data,this._size),this._datatype=o||a.datatype;else if(we(a))this._data=d(a),this._size=Tn(this._data),Hr(this._data,this._size),this._datatype=o;else{if(a)throw new TypeError("Unsupported type of data ("+Rn(a)+")");this._data=[],this._size=[0],this._datatype=o}}n.prototype=new t,n.prototype.createDenseMatrix=function(a,o){return new n(a,o)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return kn(this._data,Rn)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(a,o){return new n(a,o)},n.prototype.subset=function(a,o,c){switch(arguments.length){case 1:return r(this,a);case 2:case 3:return i(this,a,o,c);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(a){if(!we(a))throw new TypeError("Array expected");if(a.length!==this._size.length)throw new re(a.length,this._size.length);for(var o=0;o<a.length;o++)Me(a[o],this._size[o]);for(var c=this._data,h=0,p=a.length;h<p;h++){var D=a[h];Me(D,c.length),c=c[D]}return c},n.prototype.set=function(a,o,c){if(!we(a))throw new TypeError("Array expected");if(a.length<this._size.length)throw new re(a.length,this._size.length,"<");var h,p,D,m=a.map(function(C){return C+1});l(this,m,c);var g=this._data;for(h=0,p=a.length-1;h<p;h++)D=a[h],Me(D,g.length),g=g[D];return D=a[a.length-1],Me(D,g.length),g[D]=o,this};function r(a,o){if(!xr(o))throw new TypeError("Invalid index");var c=o.isScalar();if(c)return a.get(o.min());var h=o.size();if(h.length!==a._size.length)throw new re(h.length,a._size.length);for(var p=o.min(),D=o.max(),m=0,g=a._size.length;m<g;m++)Me(p[m],a._size[m]),Me(D[m],a._size[m]);return new n(u(a._data,o,h.length,0),a._datatype)}function u(a,o,c,h){var p=h===c-1,D=o.dimension(h);return p?D.map(function(m){return Me(m,a.length),a[m]}).valueOf():D.map(function(m){Me(m,a.length);var g=a[m];return u(g,o,c,h+1)}).valueOf()}function i(a,o,c,h){if(!o||o.isIndex!==!0)throw new TypeError("Invalid index");var p=o.size(),D=o.isScalar(),m;if(Mt(c)?(m=c.size(),c=c.valueOf()):m=Tn(c),D){if(m.length!==0)throw new TypeError("Scalar expected");a.set(o.min(),c,h)}else{if(p.length<a._size.length)throw new re(p.length,a._size.length,"<");if(m.length<p.length){for(var g=0,C=0;p[g]===1&&m[g]===1;)g++;for(;p[g]===1;)C++,g++;c=Gc(c,p.length,C,m)}if(!xn(p,m))throw new re(p,m,">");var F=o.max().map(function(L){return L+1});l(a,F,h);var b=p.length,R=0;s(a._data,o,c,b,R)}return a}function s(a,o,c,h,p){var D=p===h-1,m=o.dimension(p);D?m.forEach(function(g,C){Me(g),a[g]=c[C[0]]}):m.forEach(function(g,C){Me(g),s(a[g],o,c[C[0]],h,p+1)})}n.prototype.resize=function(a,o,c){if(!_n(a))throw new TypeError("Array or Matrix expected");var h=a.valueOf().map(D=>Array.isArray(D)&&D.length===1?D[0]:D),p=c?this.clone():this;return f(p,h,o)};function f(a,o,c){if(o.length===0){for(var h=a._data;we(h);)h=h[0];return h}return a._size=o.slice(0),a._data=zr(a._data,a._size,c),a}n.prototype.reshape=function(a,o){var c=o?this.clone():this;c._data=Jc(c._data,a);var h=c._size.reduce((p,D)=>p*D);return c._size=Wr(a,h),c};function l(a,o,c){for(var h=a._size.slice(0),p=!1;h.length<o.length;)h.push(0),p=!0;for(var D=0,m=o.length;D<m;D++)o[D]>h[D]&&(h[D]=o[D],p=!0);p&&f(a,h,c)}n.prototype.clone=function(){var a=new n({data:Ye(this._data),size:Ye(this._size),datatype:this._datatype});return a},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(a){var o=this,c=Ef(a),h=function m(g,C){return we(g)?g.map(function(F,b){return m(F,C.concat(b))}):c===1?a(g):c===2?a(g,C):a(g,C,o)},p=h(this._data,[]),D=this._datatype!==void 0?kn(p,Rn):void 0;return new n(p,D)},n.prototype.forEach=function(a){var o=this,c=function h(p,D){we(p)?p.forEach(function(m,g){h(m,D.concat(g))}):a(p,D,o)};c(this._data,[])},n.prototype[Symbol.iterator]=function*(){var a=function*o(c,h){if(we(c))for(var p=0;p<c.length;p++)yield*o(c[p],h.concat(p));else yield{value:c,index:h}};yield*a(this._data,[])},n.prototype.rows=function(){var a=[],o=this.size();if(o.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");var c=this._data;for(var h of c)a.push(new n([h],this._datatype));return a},n.prototype.columns=function(){var a=this,o=[],c=this.size();if(c.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");for(var h=this._data,p=function(g){var C=h.map(F=>[F[g]]);o.push(new n(C,a._datatype))},D=0;D<c[1];D++)p(D);return o},n.prototype.toArray=function(){return Ye(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(a){return et(this._data,a)},n.prototype.toString=function(){return et(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(a){if(a){if(Ze(a)&&(a=a.toNumber()),!de(a)||!Te(a))throw new TypeError("The parameter k must be an integer number")}else a=0;for(var o=a>0?a:0,c=a<0?-a:0,h=this._size[0],p=this._size[1],D=Math.min(h-c,p-o),m=[],g=0;g<D;g++)m[g]=this._data[g+c][g+o];return new n({data:m,size:[D],datatype:this._datatype})},n.diagonal=function(a,o,c,h){if(!we(a))throw new TypeError("Array expected, size parameter");if(a.length!==2)throw new Error("Only two dimensions matrix are supported");if(a=a.map(function(k){if(Ze(k)&&(k=k.toNumber()),!de(k)||!Te(k)||k<1)throw new Error("Size values must be positive integers");return k}),c){if(Ze(c)&&(c=c.toNumber()),!de(c)||!Te(c))throw new TypeError("The parameter k must be an integer number")}else c=0;var p=c>0?c:0,D=c<0?-c:0,m=a[0],g=a[1],C=Math.min(m-D,g-p),F;if(we(o)){if(o.length!==C)throw new Error("Invalid value array length");F=function(I){return o[I]}}else if(Mt(o)){var b=o.size();if(b.length!==1||b[0]!==C)throw new Error("Invalid matrix length");F=function(I){return o.get([I])}}else F=function(){return o};h||(h=Ze(F(0))?F(0).mul(0):0);var R=[];if(a.length>0){R=zr(R,a,h);for(var L=0;L<C;L++)R[L+D][L+p]=F(L)}return new n({data:R,size:[m,g]})},n.fromJSON=function(a){return new n(a)},n.prototype.swapRows=function(a,o){if(!de(a)||!Te(a)||!de(o)||!Te(o))throw new Error("Row index must be positive integers");if(this._size.length!==2)throw new Error("Only two dimensional matrix is supported");return Me(a,this._size[0]),Me(o,this._size[0]),n._swapRows(a,o,this._data),this},n._swapRows=function(a,o,c){var h=c[a];c[a]=c[o],c[o]=h};function d(a){for(var o=0,c=a.length;o<c;o++){var h=a[o];we(h)?a[o]=d(h):h&&h.isMatrix===!0&&(a[o]=d(h.valueOf()))}return a}return n},{isClass:!0}),pu="equalScalar";me(pu,["typed","config"],e=>{var{typed:t,config:n}=e;return t(pu,{"number, number":function(u,i){return qc(u,i,n.epsilon)}})});function It(e,t,n,r){if(!(this instanceof It))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=n,this.max=r,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+n+(r!=null?"-"+r:"")+" expected)",this.stack=new Error().stack}It.prototype=new Error,It.prototype.constructor=Error,It.prototype.name="ArgumentsError",It.prototype.isArgumentsError=!0;var Du="format",yf=["typed"],wf=me(Du,yf,e=>{var{typed:t}=e;return t(Du,{any:et,"any, Object | function | number":et})}),gu="bin",Bf=["typed","format"];me(gu,Bf,e=>{var{typed:t,format:n}=e;return t(gu,{"number | BigNumber":function(u){return n(u,{notation:"bin"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"bin",wordSize:i})}})});var vu="oct",bf=["typed","format"];me(vu,bf,e=>{var{typed:t,format:n}=e;return t(vu,{"number | BigNumber":function(u){return n(u,{notation:"oct"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"oct",wordSize:i})}})});var mu="hex",Sf=["typed","format"];me(mu,Sf,e=>{var{typed:t,format:n}=e;return t(mu,{"number | BigNumber":function(u){return n(u,{notation:"hex"})},"number | BigNumber, number":function(u,i){return n(u,{notation:"hex",wordSize:i})}})});var Eu="equal";me(Eu,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Eu,{"any, any":function(u,i){return u===null?i===null:i===null?u===null:u===void 0?i===void 0:i===void 0?u===void 0:n(u,i)}})});var Au="unequal";me(Au,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Au,{"any, any":function(u,i){return u===null?i!==null:i===null?u!==null:u===void 0?i!==void 0:i===void 0?u!==void 0:!n(u,i)}})});var Cu={exports:{}};(function(e){(function(t,n,r){function u(l){var d=this,a=f();d.next=function(){var o=2091639*d.s0+d.c*23283064365386963e-26;return d.s0=d.s1,d.s1=d.s2,d.s2=o-(d.c=o|0)},d.c=1,d.s0=a(" "),d.s1=a(" "),d.s2=a(" "),d.s0-=a(l),d.s0<0&&(d.s0+=1),d.s1-=a(l),d.s1<0&&(d.s1+=1),d.s2-=a(l),d.s2<0&&(d.s2+=1),a=null}function i(l,d){return d.c=l.c,d.s0=l.s0,d.s1=l.s1,d.s2=l.s2,d}function s(l,d){var a=new u(l),o=d&&d.state,c=a.next;return c.int32=function(){return a.next()*4294967296|0},c.double=function(){return c()+(c()*2097152|0)*11102230246251565e-32},c.quick=c,o&&(typeof o=="object"&&i(o,a),c.state=function(){return i(a,{})}),c}function f(){var l=4022871197,d=function(a){a=String(a);for(var o=0;o<a.length;o++){l+=a.charCodeAt(o);var c=.02519603282416938*l;l=c>>>0,c-=l,c*=l,l=c>>>0,c-=l,l+=c*4294967296}return(l>>>0)*23283064365386963e-26};return d}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.alea=s})(ze,e,!1)})(Cu);var Fu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.x=0,l.y=0,l.z=0,l.w=0,l.next=function(){var o=l.x^l.x<<11;return l.x=l.y,l.y=l.z,l.z=l.w,l.w^=l.w>>>19^o^o>>>8},f===(f|0)?l.x=f:d+=f;for(var a=0;a<d.length+64;a++)l.x^=d.charCodeAt(a)|0,l.next()}function i(f,l){return l.x=f.x,l.y=f.y,l.z=f.z,l.w=f.w,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xor128=s})(ze,e,!1)})(Fu);var yu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.next=function(){var o=l.x^l.x>>>2;return l.x=l.y,l.y=l.z,l.z=l.w,l.w=l.v,(l.d=l.d+362437|0)+(l.v=l.v^l.v<<4^(o^o<<1))|0},l.x=0,l.y=0,l.z=0,l.w=0,l.v=0,f===(f|0)?l.x=f:d+=f;for(var a=0;a<d.length+64;a++)l.x^=d.charCodeAt(a)|0,a==d.length&&(l.d=l.x<<10^l.x>>>4),l.next()}function i(f,l){return l.x=f.x,l.y=f.y,l.z=f.z,l.w=f.w,l.v=f.v,l.d=f.d,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xorwow=s})(ze,e,!1)})(yu);var wu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this;l.next=function(){var a=l.x,o=l.i,c,h;return c=a[o],c^=c>>>7,h=c^c<<24,c=a[o+1&7],h^=c^c>>>10,c=a[o+3&7],h^=c^c>>>3,c=a[o+4&7],h^=c^c<<7,c=a[o+7&7],c=c^c<<13,h^=c^c<<9,a[o]=h,l.i=o+1&7,h};function d(a,o){var c,h=[];if(o===(o|0))h[0]=o;else for(o=""+o,c=0;c<o.length;++c)h[c&7]=h[c&7]<<15^o.charCodeAt(c)+h[c+1&7]<<13;for(;h.length<8;)h.push(0);for(c=0;c<8&&h[c]===0;++c);for(c==8&&(h[7]=-1),a.x=h,a.i=0,c=256;c>0;--c)a.next()}d(l,f)}function i(f,l){return l.x=f.x.slice(),l.i=f.i,l}function s(f,l){f==null&&(f=+new Date);var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(a.x&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xorshift7=s})(ze,e,!1)})(wu);var Bu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this;l.next=function(){var a=l.w,o=l.X,c=l.i,h,p;return l.w=a=a+1640531527|0,p=o[c+34&127],h=o[c=c+1&127],p^=p<<13,h^=h<<17,p^=p>>>15,h^=h>>>12,p=o[c]=p^h,l.i=c,p+(a^a>>>16)|0};function d(a,o){var c,h,p,D,m,g=[],C=128;for(o===(o|0)?(h=o,o=null):(o=o+"\0",h=0,C=Math.max(C,o.length)),p=0,D=-32;D<C;++D)o&&(h^=o.charCodeAt((D+32)%o.length)),D===0&&(m=h),h^=h<<10,h^=h>>>15,h^=h<<4,h^=h>>>13,D>=0&&(m=m+1640531527|0,c=g[D&127]^=h+m,p=c==0?p+1:0);for(p>=128&&(g[(o&&o.length||0)&127]=-1),p=127,D=4*128;D>0;--D)h=g[p+34&127],c=g[p=p+1&127],h^=h<<13,c^=c<<17,h^=h>>>15,c^=c>>>12,g[p]=h^c;a.w=m,a.X=g,a.i=p}d(l,f)}function i(f,l){return l.i=f.i,l.w=f.w,l.X=f.X.slice(),l}function s(f,l){f==null&&(f=+new Date);var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(a.X&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.xor4096=s})(ze,e,!1)})(Bu);var bu={exports:{}};(function(e){(function(t,n,r){function u(f){var l=this,d="";l.next=function(){var o=l.b,c=l.c,h=l.d,p=l.a;return o=o<<25^o>>>7^c,c=c-h|0,h=h<<24^h>>>8^p,p=p-o|0,l.b=o=o<<20^o>>>12^c,l.c=c=c-h|0,l.d=h<<16^c>>>16^p,l.a=p-o|0},l.a=0,l.b=0,l.c=-1640531527,l.d=1367130551,f===Math.floor(f)?(l.a=f/4294967296|0,l.b=f|0):d+=f;for(var a=0;a<d.length+20;a++)l.b^=d.charCodeAt(a)|0,l.next()}function i(f,l){return l.a=f.a,l.b=f.b,l.c=f.c,l.d=f.d,l}function s(f,l){var d=new u(f),a=l&&l.state,o=function(){return(d.next()>>>0)/4294967296};return o.double=function(){do var c=d.next()>>>11,h=(d.next()>>>0)/4294967296,p=(c+h)/(1<<21);while(p===0);return p},o.int32=d.next,o.quick=o,a&&(typeof a=="object"&&i(a,d),o.state=function(){return i(d,{})}),o}n&&n.exports?n.exports=s:r&&r.amd?r(function(){return s}):this.tychei=s})(ze,e,!1)})(bu);var Su={exports:{}};(function(e){(function(t,n,r){var u=256,i=6,s=52,f="random",l=r.pow(u,i),d=r.pow(2,s),a=d*2,o=u-1,c;function h(b,R,L){var k=[];R=R==!0?{entropy:!0}:R||{};var I=g(m(R.entropy?[b,F(n)]:b==null?C():b,3),k),$=new p(k),J=function(){for(var V=$.g(i),G=l,Q=0;V<d;)V=(V+Q)*u,G*=u,Q=$.g(1);for(;V>=a;)V/=2,G/=2,Q>>>=1;return(V+Q)/G};return J.int32=function(){return $.g(4)|0},J.quick=function(){return $.g(4)/4294967296},J.double=J,g(F($.S),n),(R.pass||L||function(V,G,Q,pe){return pe&&(pe.S&&D(pe,$),V.state=function(){return D($,{})}),Q?(r[f]=V,G):V})(J,I,"global"in R?R.global:this==r,R.state)}function p(b){var R,L=b.length,k=this,I=0,$=k.i=k.j=0,J=k.S=[];for(L||(b=[L++]);I<u;)J[I]=I++;for(I=0;I<u;I++)J[I]=J[$=o&$+b[I%L]+(R=J[I])],J[$]=R;(k.g=function(V){for(var G,Q=0,pe=k.i,K=k.j,q=k.S;V--;)G=q[pe=o&pe+1],Q=Q*u+q[o&(q[pe]=q[K=o&K+G])+(q[K]=G)];return k.i=pe,k.j=K,Q})(u)}function D(b,R){return R.i=b.i,R.j=b.j,R.S=b.S.slice(),R}function m(b,R){var L=[],k=typeof b,I;if(R&&k=="object")for(I in b)try{L.push(m(b[I],R-1))}catch($){}return L.length?L:k=="string"?b:b+"\0"}function g(b,R){for(var L=b+"",k,I=0;I<L.length;)R[o&I]=o&(k^=R[o&I]*19)+L.charCodeAt(I++);return F(R)}function C(){try{var b;return c&&(b=c.randomBytes)?b=b(u):(b=new Uint8Array(u),(t.crypto||t.msCrypto).getRandomValues(b)),F(b)}catch(k){var R=t.navigator,L=R&&R.plugins;return[+new Date,t,L,t.screen,F(n)]}}function F(b){return String.fromCharCode.apply(0,b)}if(g(r.random(),n),e.exports){e.exports=h;try{c=an.default}catch(b){}}else r["seed"+f]=h})(typeof self!="undefined"?self:ze,[],Math)})(Su);var Mf=Cu.exports,Nf=Fu.exports,If=yu.exports,_f=wu.exports,Rf=Bu.exports,xf=bu.exports,pt=Su.exports;pt.alea=Mf,pt.xor128=Nf,pt.xorwow=If,pt.xorshift7=_f,pt.xor4096=Rf,pt.tychei=xf,tn("fineStructure",.0072973525693),tn("weakMixingAngle",.2229),tn("efimovFactor",22.7),tn("sackurTetrode",-1.16487052358);function tn(e,t){var n=["config","BigNumber"];return me(e,n,r=>{var{config:u,BigNumber:i}=r;return u.number==="BigNumber"?new i(t):t})}var $f=cf({config:$r}),Lf=hf({}),Of=Df({}),Tf=mf({}),Pf=Ff({Matrix:Tf}),kf=fl({BigNumber:$f,Complex:Lf,DenseMatrix:Pf,Fraction:Of}),jf=wf({typed:kf});class Uf{constructor(t){this.calcControls=[],this.dependenciesTriggerMap=new Map,this.hideNotRememberControlIds=[],this.dontHasPermissionControlIds=[],this.cacheComputedResult={},this.options=t,this.getDontHasPermissionControlIds(),this.getNeedHideRememberControlIds()}getNeedHideRememberControlIds(){var t;!((t=this.options)==null?void 0:t.displayBoList)||(this.hideNotRememberControlIds=this.options.displayBoList.reduce((n,r)=>(r.is_remember||n.push(...r.hide_controls),n),[]))}getDontHasPermissionControlIds(){var t;!((t=this.options)==null?void 0:t.behavior)||(this.dontHasPermissionControlIds=this.options.behavior.reduce((n,r)=>(r.ctrlBehavior===1&&n.push(r.ctrlId),n),[]))}controlNeedComputedValue(t){if(!t)return!1;const n=this.getControlIsHide(t);return!(this.dontHasPermissionControlIds.includes(t.id)&&n||this.hideNotRememberControlIds.includes(t.id)&&n)}getControlIsHide(t){return t.props.isHide?!0:t.parent===null?!1:this.getControlIsHide(t.parent)}apply(t){this.engine=t,this.resetDependencies(),this.watchControlChange(),this.watchSubtableChange(),this.watchSchemaHideChange(),this.engine.on("engine-mounted",()=>{this.allCalcControlComputed()})}resetDependencies(){this.calcControls=[],this.dependenciesTriggerMap.clear(),this.getAllCalcControl(),this.getCalcDependencies()}allCalcControlComputed(){this.calcControls.forEach(t=>this.computedCalcValue(t))}getAllCalcControl(){this.calcControls=this.engine.runtime.flatInstances.filter(t=>t.type===W.CALC)}getCalcDependencies(){this.calcControls.forEach(t=>{const{scriptEcho:n}=t.props;n.forEach(r=>{(r.type===Ie.VariableInMainTable||r.type===Ie.VariableInCurrentSubTable||r.type===Ie.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(r.id,t),r.type===Ie.VariableInOtherSubTable&&r.subTableId&&this.setDependenciesTriggerMapItem(r.subTableId,t)})})}setDependenciesTriggerMapItem(t,n){this.dependenciesTriggerMap.has(t)||this.dependenciesTriggerMap.set(t,[]);const r=this.dependenciesTriggerMap.get(t);r.includes(n)||r.push(n)}getCalcControlsFromSubtableRows(t){return t.reduce((n,r)=>(r.children.forEach(u=>{const i=u.children[0];i&&this.engine.assertInstance(i,W.CALC)&&n.push(i)}),n),[])}watchSchemaHideChange(){this.engine.on("schema-change",t=>{var n;t.props==="isHide"&&((n=this.dependenciesTriggerMap.get(t.instance.id))!=null?n:[]).forEach(u=>{this.computedCalcValue(u)})})}watchSubtableChange(){this.engine.on("list-change",t=>{var i,s,f;this.resetDependencies();const n=(s=(i=t.options)==null?void 0:i.changed)!=null?s:[];this.getCalcControlsFromSubtableRows(n).forEach(l=>{this.computedCalcValue(l)}),((f=this.dependenciesTriggerMap.get(t.instance.id))!=null?f:[]).forEach(l=>{this.computedCalcValue(l)})})}watchControlChange(){this.engine.on("change",t=>{var u;const{instance:n}=t;if(!this.dependenciesTriggerMap.has(n.id))return;const r=(u=this.dependenciesTriggerMap.get(n.id))!=null?u:[];t.rowIndex!==void 0&&t.rowIndex>-1?r.forEach(i=>{this.controlInSubtable(i)&&this.engine.getInstanceRowIndex(i)!==t.rowIndex||this.computedCalcValue(i)}):r.forEach(i=>{this.computedCalcValue(i)})})}controlInSubtable(t){var n;return((n=t.parent)==null?void 0:n.type)===W.SUBTABLE_COLUMN}computedCalcValue(t){var l;const n=t.props.scriptEcho;if(!n||n.length===0)return;const r=n.reduce((d,a)=>{if(a.type===Ie.Operator||a.type===Ie.Number)return d+a.name;let o=0,c;switch(a.type){case Ie.VariableInMainTable:{const h=this.getNumberValue(this.engine.getState(a.id));c=this.engine.getInstance(a.id),o=Number(h);break}case Ie.VariableInCurrentSubTable:{const h=this.engine.getInstanceRowIndex(t);c=this.engine.getInstance(a.id,h);const p=this.engine.getState(a.id,h),D=this.getNumberValue(p);o=Number(D);break}case Ie.VariableInOtherSubTable:{const h=this.engine.getState(a.id),p=Array.isArray(h)?h.map(m=>this.getNumberValue(m)):[],D=this.getAggregateTypeValue(p,a.aggregateType);c=this.engine.getInstance(a.subTableId),o=Number(D);break}}return!Number.isNaN(o)&&this.controlNeedComputedValue(c)?d+=`(${o})`:d+=0,d},"");let u;this.cacheComputedResult[r]!==void 0?u=this.cacheComputedResult[r]:(u=Number(jf(new Function(`return ${r}`)(),{precision:16})),this.cacheComputedResult[r]=u);let i;if(this.controlInSubtable(t)&&(i=this.engine.getInstanceRowIndex(t),i===void 0))return;const s=this.engine.getState(t.id,i),f=!u||u===1/0||u===-1/0?0:t.props.precision===""?u:Number(u.toFixed(t.props.precision));f!==(s==null?void 0:s.result)&&this.engine.setState(t.id,{result:f,unit:(l=s==null?void 0:s.unit)!=null?l:""},i)}getNumberValue(t){if(typeof t=="object"&&t){if("result"in t)return t.result;if("amount"in t)return t.amount}return typeof t=="number"?t:0}getAggregateTypeValue(t,n){if(!n||!t||!t.length)return 0;switch(n){case rt.MAX:return Math.max(...t);case rt.MIN:return Math.min(...t);case rt.SUM:return t.reduce((r,u)=>r+u);case rt.AVG:return t.reduce((r,u)=>r+u)/t.length}}}class Vf{constructor(t){this.config=t}apply(t){var i,s;this.engine=t;const n=(s=(i=this.config)==null?void 0:i.source)!=null?s:"";let r=document.createElement("style");r.className="edit-css",r.type="text/css",r.innerHTML=n,document.querySelector("head").appendChild(r)}}z.CalcPlugin=Uf,z.ControlsEventPlugin=rc,z.ES6ModulePlugin=ec,z.Engine=Q0,z.LifecycleEventPlugin=nc,z.Plugin=Y0,z.StylePlugin=Vf,z.buildUUID=mr,z.hasChildrenControl=Ut,z.loopDataViewControl=it,z.loopFormControl=ut,z.parseModule=Mr,Object.defineProperty(z,"__esModule",{value:!0})});
@@ -175,6 +175,6 @@ declare class Engine extends Watcher<EventKeys> {
175
175
  getInstanceInSubtableHeader<T extends ControlsKeys>(instance: ControlRuntimeInstance<T> | RuntimeControl): ControlRuntimeInstance<T> | undefined;
176
176
  setControlConfig(...args: Parameters<Runtime['registerControlConfig']>): Runtime;
177
177
  getControlConfig(control: ControlsKeys): Readonly<Record<string, unknown>> | undefined;
178
- inList(controlId: string): boolean;
178
+ inList(controlId: string): undefined;
179
179
  }
180
180
  export { Engine, EventPayload, SchemaEventPayload, EngineProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-engine",
3
- "version": "2.6.0-alpha.13",
3
+ "version": "2.6.0-alpha.15",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -34,5 +34,5 @@
34
34
  "devDependencies": {
35
35
  "@types/node": "~18.0.6"
36
36
  },
37
- "gitHead": "a0d1c3b35420a2f1e42744cefd8c31cf2adf0851"
37
+ "gitHead": "938021a22cbdc55d0f96e31489d6dcebacbcbf55"
38
38
  }