@byteluck-fe/model-driven-engine 1.5.0-beta.7 → 1.7.0

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.
@@ -654,6 +654,13 @@ var Engine = /*#__PURE__*/ function(Watcher) {
654
654
  return this.store.getState(controlId, rowIndex);
655
655
  }
656
656
  };
657
+ _proto.getFieldCodeState = function getFieldCodeState(controlId) {
658
+ if (controlId === undefined) {
659
+ return this.store.fieldCodeState;
660
+ } else {
661
+ return this.store.getFieldCodeState(controlId);
662
+ }
663
+ };
657
664
  _proto.getEmptyState = function getEmptyState(controlId) {
658
665
  if (controlId === undefined) {
659
666
  return JSONCopy(this.store.emptyState);
@@ -733,6 +740,16 @@ var Engine = /*#__PURE__*/ function(Watcher) {
733
740
  return state;
734
741
  }
735
742
  };
743
+ _proto.getData = function getData(dataCode) {
744
+ if (dataCode) {
745
+ var dataBindMapping = this.getDataBindMapping(dataCode);
746
+ if (dataBindMapping) {
747
+ var controlId = dataBindMapping.controlId;
748
+ return this.getFieldCodeState(controlId);
749
+ }
750
+ }
751
+ return;
752
+ };
736
753
  /**
737
754
  * 通过dataCode和fieldCode来设置控件的值
738
755
  * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
@@ -30,9 +30,10 @@ var Store = /*#__PURE__*/ function() {
30
30
  "use strict";
31
31
  function Store(props) {
32
32
  _classCallCheck(this, Store);
33
- var ref = init(props.instance), state = ref.state, emptyState = ref.emptyState, databindMapping = ref.databindMapping, controlidMapping = ref.controlidMapping;
33
+ var ref = init(props.instance), state = ref.state, emptyState = ref.emptyState, databindMapping = ref.databindMapping, controlidMapping = ref.controlidMapping, fieldCodeState = ref.fieldCodeState;
34
34
  this.emptyState = emptyState;
35
35
  this.state = state;
36
+ this.fieldCodeState = fieldCodeState;
36
37
  this.dataBindMapping = databindMapping;
37
38
  this.controlIdMapping = controlidMapping;
38
39
  }
@@ -123,6 +124,25 @@ var Store = /*#__PURE__*/ function() {
123
124
  }
124
125
  }
125
126
  };
127
+ _proto.getFieldCodeState = function getFieldCodeState(controlId) {
128
+ //qiyu 由于header的数据是后补充的,所以从state获取第一层值。
129
+ // const controlInfo = this.controlIdMapping[controlId]
130
+ var detection = this.fieldCodeState[controlId];
131
+ if (detection !== undefined) {
132
+ return this.fieldCodeState[controlId];
133
+ } else {
134
+ var controlInfo = this.controlIdMapping[controlId];
135
+ var dataCode = controlInfo.dataBind.dataCode;
136
+ if (controlInfo !== undefined) {
137
+ if (controlInfo.dataView === controlId) {
138
+ return this.fieldCodeState[controlId];
139
+ } else {
140
+ var dataCode1 = controlInfo.dataBind.dataCode;
141
+ return this.fieldCodeState[controlInfo.dataView][dataCode1] || this.fieldCodeState[controlInfo.dataView];
142
+ }
143
+ }
144
+ }
145
+ };
126
146
  _proto.getEmptyState = function getEmptyState(controlId) {
127
147
  var _this = this;
128
148
  var detection = this.emptyState[controlId];
@@ -173,6 +193,8 @@ var Store = /*#__PURE__*/ function() {
173
193
  function init(instance) {
174
194
  var state = {};
175
195
  var emptyState = {};
196
+ var fieldCodeState = {};
197
+ var fieldCodeEmptyState = {};
176
198
  var databindMapping = {};
177
199
  var controlidMapping = {};
178
200
  // loopFormControl(instance, (item, children) => {
@@ -182,39 +204,76 @@ function init(instance) {
182
204
  var dvId = dataView.id;
183
205
  var dataViewState = {};
184
206
  var emptyDataViewState = {};
207
+ var dataViewFieldCodeState = {};
208
+ var emptyDataViewFieldCodeState = {};
185
209
  // @ts-ignore
186
210
  loopFormControl([
187
211
  dataView
188
212
  ], function(item, children) {
189
- buildState(dataViewState, emptyDataViewState, item);
213
+ buildState(dataViewState, emptyDataViewState, dataViewFieldCodeState, emptyDataViewFieldCodeState, item);
190
214
  buildDataBindMapping(databindMapping, dvId, item);
191
215
  buildControlIdMapping(controlidMapping, dvId, item);
192
216
  });
193
217
  state[dvId] = dataViewState;
194
218
  emptyState[dvId] = emptyDataViewState;
219
+ fieldCodeState[dvId] = dataViewFieldCodeState;
220
+ fieldCodeEmptyState[dvId] = emptyDataViewFieldCodeState;
195
221
  });
196
222
  return {
197
223
  state: state,
198
224
  emptyState: emptyState,
199
225
  databindMapping: databindMapping,
200
- controlidMapping: controlidMapping
226
+ controlidMapping: controlidMapping,
227
+ fieldCodeState: fieldCodeState,
228
+ fieldCodeEmptyState: fieldCodeEmptyState
201
229
  };
202
230
  }
203
- function buildState(dataViewState, emptyDataViewState, // @ts-ignore
231
+ function buildState(dataViewState, emptyDataViewState, dataViewFieldCodeState, emptyDataViewFieldCodeState, // @ts-ignore
204
232
  item) {
205
233
  if (_instanceof(item, RuntimeFormControl)) {
206
234
  dataViewState[item.id] = JSONCopy(item.props.defaultValue);
207
235
  emptyDataViewState[item.id] = JSONCopy(item.props.defaultValue);
236
+ if (_instanceof(item.props.dataBind, ObjectDataBind)) {
237
+ // 特殊的dataBind,比如:金额是currency+amount两个key组成的,日期区间,继承自ObjectDataBind的需要通过Object.keys拿到多个databind
238
+ Object.keys(item.props.dataBind).forEach(function(key) {
239
+ var dataBind = item.props.dataBind;
240
+ var defaultValue = item.props.defaultValue;
241
+ var dataBindFieldCode = dataBind[key].fieldCode;
242
+ dataViewFieldCodeState[dataBindFieldCode] = JSONCopy(defaultValue[key]);
243
+ emptyDataViewFieldCodeState[dataBindFieldCode] = JSONCopy(defaultValue[key]);
244
+ });
245
+ } else {
246
+ var dataBindFieldCode = item.props.dataBind.fieldCode;
247
+ dataViewFieldCodeState[dataBindFieldCode] = JSONCopy(item.props.defaultValue);
248
+ emptyDataViewFieldCodeState[dataBindFieldCode] = JSONCopy(item.props.defaultValue);
249
+ }
208
250
  } else {
209
251
  var emptyTemplate = {};
252
+ var emptyFieldCodeTemplate = {};
210
253
  loopFormSchema(item.props.headers, function(headerItem) {
211
254
  emptyTemplate[headerItem.id] = JSONCopy(headerItem.props.defaultValue);
255
+ // 处理成fieldCode
256
+ var headerItemFieldCode = headerItem.props.dataBind.fieldCode;
257
+ if (_instanceof(headerItem.props.dataBind, ObjectDataBind)) {
258
+ // 特殊的dataBind,比如:金额是currency+amount两个key组成的,日期区间,继承自ObjectDataBind的需要通过Object.keys拿到多个databind
259
+ Object.keys(headerItem.props.dataBind).forEach(function(key) {
260
+ emptyFieldCodeTemplate[headerItem.props.dataBind[key].fieldCode] = JSONCopy(headerItem.props.defaultValue[key]);
261
+ });
262
+ } else {
263
+ emptyFieldCodeTemplate[headerItemFieldCode] = JSONCopy(headerItem.props.defaultValue);
264
+ }
212
265
  });
213
266
  var _defaultRows;
214
267
  dataViewState[item.id] = new Array((_defaultRows = item.props.defaultRows) !== null && _defaultRows !== void 0 ? _defaultRows : 1).fill(0).map(function() {
215
268
  return JSONCopy(emptyTemplate);
216
269
  });
217
270
  emptyDataViewState[item.id] = emptyTemplate;
271
+ var dataBindFieldCode1 = item.props.datasourceBind.dataCode;
272
+ var _defaultRows1;
273
+ dataViewFieldCodeState[dataBindFieldCode1] = new Array((_defaultRows1 = item.props.defaultRows) !== null && _defaultRows1 !== void 0 ? _defaultRows1 : 1).fill(0).map(function() {
274
+ return JSONCopy(emptyFieldCodeTemplate);
275
+ });
276
+ emptyDataViewFieldCodeState[dataBindFieldCode1] = emptyFieldCodeTemplate;
218
277
  }
219
278
  }
220
279
  function buildDataBindMapping(data, dataViewId, // @ts-ignore
@@ -29,6 +29,7 @@ function _unsupportedIterableToArray(o, minLen) {
29
29
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
30
30
  }
31
31
  import { CONTROL_TYPE, CALC_TOKEN_TYPE, CALC_AGGREGATE_TYPE } from "@byteluck-fe/model-driven-shared";
32
+ import { format } from "mathjs";
32
33
  var DisplayType;
33
34
  (function(DisplayType) {
34
35
  DisplayType[/**
@@ -331,7 +332,10 @@ export var CalcPlugin = /*#__PURE__*/ function() {
331
332
  if (this.cacheComputedResult[scriptText] !== undefined) {
332
333
  value = this.cacheComputedResult[scriptText];
333
334
  } else {
334
- value = new Function("return ".concat(scriptText))();
335
+ // 解决js精准度问题
336
+ value = Number(format(new Function("return ".concat(scriptText))(), {
337
+ precision: 16
338
+ }));
335
339
  this.cacheComputedResult[scriptText] = value;
336
340
  }
337
341
  var rowIndex = undefined;
package/dist/index.umd.js CHANGED
@@ -1,2 +1,28 @@
1
- var kc=Object.defineProperty,Hc=Object.defineProperties;var Wc=Object.getOwnPropertyDescriptors;var Kn=Object.getOwnPropertySymbols,zc=Object.getPrototypeOf,Kc=Object.prototype.hasOwnProperty,Jc=Object.prototype.propertyIsEnumerable,Gc=Reflect.get;var Jn=(C,F,I)=>F in C?kc(C,F,{enumerable:!0,configurable:!0,writable:!0,value:I}):C[F]=I,$=(C,F)=>{for(var I in F||(F={}))Kc.call(F,I)&&Jn(C,I,F[I]);if(Kn)for(var I of Kn(F))Jc.call(F,I)&&Jn(C,I,F[I]);return C},qt=(C,F)=>Hc(C,Wc(F));var Gn=(C,F,I)=>Gc(zc(C),I,F);var J=(C,F,I)=>new Promise((V,Fe)=>{var Ge=G=>{try{pe(I.next(G))}catch(he){Fe(he)}},Xe=G=>{try{pe(I.throw(G))}catch(he){Fe(he)}},pe=G=>G.done?V(G.value):Promise.resolve(G.value).then(Ge,Xe);pe((I=I.apply(C,F)).next())});(function(C,F){typeof exports=="object"&&typeof module!="undefined"?F(exports,require("regenerator-runtime")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime"],F):(C=typeof globalThis!="undefined"?globalThis:C||self,F(C.modelDrivenEngine={},C.regeneratorRuntime))})(this,function(C,F){"use strict";function I(t){return t&&typeof t=="object"&&"default"in t?t:{default:t}}var V=I(F),Fe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Ge="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Xe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",pe="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",G="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",he="{caption}\u5FC5\u586B",Xn="\u8BF7\u8F93\u5165\u6807\u9898",Qn="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",Zn="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",Yn="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",er="\u8BF7\u7ED1\u5B9A\u8868\u5355",tr="\u8BF7\u7ED1\u5B9A\u5217\u8868",nr="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",rr="\u8BF7\u8F93\u5165\u663E\u793A\u503C",ir="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",ur="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",ar="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",or="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",sr="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",cr="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",lr="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",fr="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",dr="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",pr="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",hr="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",gr="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",yr="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",mr="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",vr="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",Er="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",br="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",Ar="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",Br="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Cr="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",wr="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Sr="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Fr="\u8BF7\u9009\u62E9\u7701",_r="\u8BF7\u9009\u62E9\u5E02",Dr="\u8BF7\u9009\u62E9\u533A",Ir="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Rr="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",$r="\u8BF7\u8F93\u5165\u5217\u5BBD",Mr="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Or="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Pr="\u8BF7\u9009\u62E9\u63A7\u4EF6",Lr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",xr="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",jr="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Nr="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",Tr="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Vr="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",qr="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Ur="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",kr="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Hr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Wr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",zr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Kr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Jr="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Gr="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",Xr="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Qr="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Zr="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Yr="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ei="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ti="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",ni={isNotNumber:Fe,isNotString:Ge,isNotObject:Xe,isNotArray:pe,isNotBoolean:G,runtimeRequired:he,pleaseEnterCaption:Xn,pleaseEnterCaptionTip:Qn,pleaseEnterPlaceholder:Zn,pleaseEnterFieldCode:Yn,pleaseEnterForm:er,pleaseEnterList:tr,pleaseEnterProcess:nr,pleaseEnterLabel:rr,pleaseEnterValue:ir,bizKeyNotBindFiled:ur,pleaseEnterNumberRange:ar,pleaseEnterAValueGreaterThanMin:or,pleaseEnterAValueLessThanMax:sr,numberRangeSetError:cr,stringRangeError:lr,attachmentMaxSize:fr,pleaseEnterTotalScoreSetting:dr,theTotalScoreMustNotBeLessThan1:pr,scoreDefaultValueRange:hr,attachmentLimitError:gr,PleaseReselectTheOptionalQuantity:yr,TheMaximumLengthIsGreaterThanTheMinimumLength:mr,TheMinimumLengthIsGreaterThanTheMaximumLength:vr,PleaseSelectTheCorrectOptionSettings:Er,optionIdIsRepeat:br,optionIsRequired:Ar,pleaseEnterDataCode:Br,pleaseEnterValueFieldCode:Cr,pleaseEnterSvcCode:wr,pleaseBindAtLeastOneDisplayValue:Sr,pleaseSelectProvince:Fr,pleaseSelectCity:_r,pleaseSelectDistrict:Dr,limitRowsCannotBeLessThan0:Ir,TheNumberOfRowsCannotBeLessThanMinRows:Rr,pleaseEnterColumnWidth:$r,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Mr,pleaseCompleteAllRulesAndConditions:Or,pleaseSelectControl:Pr,pleaseSelectAtLeastOneColumn:Lr,pleaseSelectFillBackMode:xr,pleaseSelectDashboard:jr,rootNodeIsRequired:Nr,theViewNameCannotBeEmpty:Tr,pleaseSelectOcrType:Vr,pleaseSelectAtLeastOneFieldToFillIn:qr,pleaseChooseAtLeastOne:Ur,pleaseEnterButtonContent:kr,pleaseEnterDataCodeInDataSetting:Hr,pleaseEnterValueFieldCodeInDataSetting:Wr,pleaseEnterSvcCodeInDataSetting:zr,pleaseBindAtLeastOneDisplayValueInDataSetting:Kr,rootNodeIsRequiredInDataSetting:Jr,pleaseEnterMaxHeight:Gr,pleaseEnter:Xr,pleaseEnterWatermark:Qr,pleaseEnterFileName:Zr,pleaseUploadAtLeastOnePrintTemplate:Yr,pleaseAssignBusiness:ei,pleaseAssignExternal:ti},ri="Please enter a number",ii="Please enter a string",ui="Please enter an object",ai="Please enter an array",oi="Please enter a boolean",si="{caption} Required",ci="Please enter the title",li="Please enter the bubble prompt",fi="Please enter the prompt text",di="Please bind data items",pi="Please bind the form",hi="Please bind the list",gi="Please bind the process",yi="Please enter the displayed value",mi="Please enter the stored value",vi="The document number is not bound to the data item",Ei="Please enter a value greater than or equal to {min} and less than or equal to {max}",bi="Please enter a value greater than or equal to {min}",Ai="Please enter a value less than or equal to {max}",Bi="The value range is set incorrectly",Ci="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",wi="The attachment size must be between 0MB and 1000MB",Si="Please fill in the total score setting",Fi="The total score cannot be less than 1",_i="The default value must be between {min} and {max}",Di="The number of attachments uploaded must be between {min} and {max}",Ii="Please re-select the optional quantity",Ri="The maximum length of the control must be greater than the minimum length",$i="The minimum length of the control must be less than the maximum length",Mi="Please select the correct option setting",Oi="Option ID cannot be repeated",Pi="Please enter at least one option",Li="Please bind the data source",xi="Please bind the stored value",ji="Please bind the service",Ni="At least one display value must be bound",Ti="Please select a province",Vi="Please select a city",qi="Please select a district",Ui="The minimum number of lines to fill in cannot be less than 0",ki="The number of rows cannot be less than {min} rows",Hi="Please enter the column width",Wi="Please set the logical relationship of all rule conditions",zi="Please complete all rules and conditions",Ki="please select control",Ji="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Gi="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Xi="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Qi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",Zi="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Yi="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",eu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",tu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",nu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",ru="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",iu="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",uu="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",au="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ou="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",su="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",cu="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",lu="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",fu="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",du={isNotNumber:ri,isNotString:ii,isNotObject:ui,isNotArray:ai,isNotBoolean:oi,runtimeRequired:si,pleaseEnterCaption:ci,pleaseEnterCaptionTip:li,pleaseEnterPlaceholder:fi,pleaseEnterFieldCode:di,pleaseEnterForm:pi,pleaseEnterList:hi,pleaseEnterProcess:gi,pleaseEnterLabel:yi,pleaseEnterValue:mi,bizKeyNotBindFiled:vi,pleaseEnterNumberRange:Ei,pleaseEnterAValueGreaterThanMin:bi,pleaseEnterAValueLessThanMax:Ai,numberRangeSetError:Bi,stringRangeError:Ci,attachmentMaxSize:wi,pleaseEnterTotalScoreSetting:Si,theTotalScoreMustNotBeLessThan1:Fi,scoreDefaultValueRange:_i,attachmentLimitError:Di,PleaseReselectTheOptionalQuantity:Ii,TheMaximumLengthIsGreaterThanTheMinimumLength:Ri,TheMinimumLengthIsGreaterThanTheMaximumLength:$i,PleaseSelectTheCorrectOptionSettings:Mi,optionIdIsRepeat:Oi,optionIsRequired:Pi,pleaseEnterDataCode:Li,pleaseEnterValueFieldCode:xi,pleaseEnterSvcCode:ji,pleaseBindAtLeastOneDisplayValue:Ni,pleaseSelectProvince:Ti,pleaseSelectCity:Vi,pleaseSelectDistrict:qi,limitRowsCannotBeLessThan0:Ui,TheNumberOfRowsCannotBeLessThanMinRows:ki,pleaseEnterColumnWidth:Hi,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Wi,pleaseCompleteAllRulesAndConditions:zi,pleaseSelectControl:Ki,pleaseSelectDashboard:Ji,theViewNameCannotBeEmpty:Gi,pleaseSelectOcrType:Xi,pleaseSelectAtLeastOneFieldToFillIn:Qi,pleaseChooseAtLeastOne:Zi,pleaseEnterButtonContent:Yi,pleaseEnterDataCodeInDataSetting:eu,pleaseEnterValueFieldCodeInDataSetting:tu,pleaseEnterSvcCodeInDataSetting:nu,pleaseBindAtLeastOneDisplayValueInDataSetting:ru,rootNodeIsRequiredInDataSetting:iu,pleaseEnterMaxHeight:uu,pleaseEnter:au,pleaseEnterWatermark:ou,pleaseEnterFileName:su,pleaseUploadAtLeastOnePrintTemplate:cu,pleaseAssignBusiness:lu,pleaseAssignExternal:fu},pu="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",hu="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",gu="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yu="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",mu="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",vu="{caption}\u5FC5\u9808",Eu="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",bu="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Au="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Bu="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Cu="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",wu="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Su="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Fu="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",_u="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Du="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Iu="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Ru="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",$u="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Mu="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ou="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Pu="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Lu="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",xu="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",ju="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Nu="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",Tu="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Vu="\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",qu="\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",Uu="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ku="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Hu="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",Wu="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",zu="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ku="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Ju="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",Gu="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Xu="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Qu="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Zu="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Yu="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",ea="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",ta="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",na="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",ra="please select control",ia="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ua="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",aa="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",oa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",sa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",ca="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",da="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",pa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",ga="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ya="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",ma="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",va="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ea="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ba="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Aa="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ba={isNotNumber:pu,isNotString:hu,isNotObject:gu,isNotArray:yu,isNotBoolean:mu,runtimeRequired:vu,pleaseEnterCaption:Eu,pleaseEnterCaptionTip:bu,pleaseEnterPlaceholder:Au,pleaseEnterFieldCode:Bu,pleaseEnterForm:Cu,pleaseEnterList:wu,pleaseEnterProcess:Su,pleaseEnterLabel:Fu,pleaseEnterValue:_u,bizKeyNotBindFiled:Du,pleaseEnterNumberRange:Iu,pleaseEnterAValueGreaterThanMin:Ru,pleaseEnterAValueLessThanMax:$u,numberRangeSetError:Mu,stringRangeError:Ou,attachmentMaxSize:Pu,pleaseEnterTotalScoreSetting:Lu,theTotalScoreMustNotBeLessThan1:xu,scoreDefaultValueRange:ju,attachmentLimitError:Nu,PleaseReselectTheOptionalQuantity:Tu,TheMaximumLengthIsGreaterThanTheMinimumLength:Vu,TheMinimumLengthIsGreaterThanTheMaximumLength:qu,PleaseSelectTheCorrectOptionSettings:Uu,optionIdIsRepeat:ku,optionIsRequired:Hu,pleaseEnterDataCode:Wu,pleaseEnterValueFieldCode:zu,pleaseEnterSvcCode:Ku,pleaseBindAtLeastOneDisplayValue:Ju,pleaseSelectProvince:Gu,pleaseSelectCity:Xu,pleaseSelectDistrict:Qu,limitRowsCannotBeLessThan0:Zu,TheNumberOfRowsCannotBeLessThanMinRows:Yu,pleaseEnterColumnWidth:ea,pleaseSetTheLogicalRelationshipOfAllRuleConditions:ta,pleaseCompleteAllRulesAndConditions:na,pleaseSelectControl:ra,pleaseSelectDashboard:ia,theViewNameCannotBeEmpty:ua,pleaseSelectOcrType:aa,pleaseSelectAtLeastOneFieldToFillIn:oa,pleaseChooseAtLeastOne:sa,pleaseEnterButtonContent:ca,pleaseEnterDataCodeInDataSetting:la,pleaseEnterValueFieldCodeInDataSetting:fa,pleaseEnterSvcCodeInDataSetting:da,pleaseBindAtLeastOneDisplayValueInDataSetting:pa,rootNodeIsRequiredInDataSetting:ha,pleaseEnterMaxHeight:ga,pleaseEnter:ya,pleaseEnterWatermark:ma,pleaseEnterFileName:va,pleaseUploadAtLeastOnePrintTemplate:Ea,pleaseAssignBusiness:ba,pleaseAssignExternal:Aa},Ca={zhCN:ni,enUS:du,jaJP:Ba},j;(function(t){t.Number="Number",t.Operator="Operator",t.VariableInMainTable="VariableInMainTable",t.VariableInCurrentSubTable="VariableInCurrentSubTable",t.VariableInOtherSubTable="VariableInOtherSubTable",t.UndefinedVariable="UndefinedVariable"})(j||(j={}));var ue;(function(t){t.SUM="SUM",t.AVG="AVG",t.MAX="MAX",t.MIN="MIN"})(ue||(ue={}));var Ut="zh-CN";function P(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var q;(function(t){t.BASE="base",t.FORM="form",t.LAYOUT="layout",t.WRAP="wrap",t.COLUMN="column",t.LIST="list",t.SEARCH="search"})(q||(q={}));var w;(function(t){t.TITLE="title",t.LINK="link",t.BUTTON="button",t.DIVIDER="divider",t.TEXT="text",t.CREATE_FORM_LIST_BUTTON="list-page-btn-create-form",t.BATCH_SUBMISSION_LIST_BUTTON="list-page-btn-batch-submission",t.SUBMISSION_RECORD_LIST_BUTTON="list-page-btn-submission-record",t.IMPORT_RECORD_LIST_BUTTON="list-page-btn-import-record",t.EXPORT_RECORD_LIST_BUTTON="list-page-btn-export-record",t.EXPORT_LIST_BUTTON="list-page-btn-export-list",t.LIST_SELECT_BUTTON="list-select-button",t.FORM_SELECT_BUTTON="form-select-button",t.LIST_VIEW_SELECT="list-view-select",t.TEXT_OCR_BUTTON="text-ocr-button",t.INVOICE_CHECK_BUTTON="invoice-check-button",t.LIST_PAGE_BTN_BATCH_PRINT="list-page-btn-batch-print",t.LIST_PAGE_BTN_BATCH_PRINT_RECORD="list-page-btn-batch-print-record",t.VARCHAR_COLUMN="varchar-column",t.TEXT_COLUMN="text-column",t.DECIMAL_COLUMN="decimal-column",t.TIMESCOPE_COLUMN="timescope-column",t.TIMESTAMP_COLUMN="timestamp-column",t.ARRAY_COLUMN="array-column",t.DEPARTMENT_COLUMN="department-column",t.AUTO_NUMBER_COLUMN="auto-number-column",t.FILE_COLUMN="file-column",t.IMAGE_COLUMN="image-column",t.PEOPLE_COLUMN="people-column",t.LOCATION_COLUMN="location-column",t.CUSTOM_COLUMN="custom-column",t.ORDER_COLUMN="order-column",t.OPERATION_COLUMN="operation-column",t.EMPLOYEE_COLUMN="employee-column",t.ADDRESS="address",t.AMOUNT="amount",t.ATTACHMENT="attachment",t.AUTO_NUMBER="auto-number",t.CALC="calc",t.CHECKBOX="checkbox",t.DATE_PICKER="date-picker",t.DATE_RANGE="date-range",t.DEPARTMENT="department",t.EMPLOYEE="employee",t.IMAGE="image",t.INPUT="input",t.NUMBER="number",t.RADIO="radio",t.RICH_TEXT="rich-text",t.SCORE="score",t.SEARCH_DATE_RANGE="search-date-range",t.SEARCH_NUMBER_RANGE="search-number-range",t.SEARCH_INPUT="search-input",t.SELECT="select",t.SELECT_MULTIPLE="select-multiple",t.SELECT_RELATION="select-relation",t.VUE_FORM_ITEM="vue-form-item",t.TEXTAREA="textarea",t.EMAIL="email",t.FOOTER="footer",t.HEADER="header",t.ID_CARD="id-card",t.MOBILE="mobile",t.PHONE="phone",t.RADIO_IMAGE="radio-image",t.ELECTRONIC_SIGNATURE="electronic-signature",t.WPS="wps",t.CARD_GROUP="card-group",t.COL="col",t.GRID="grid",t.GRID_ROW="grid-row",t.GRID_TABLE_COLUMN="grid-table-column",t.ROW="row",t.TWO_COLUMNS="two-columns",t.SUBTABLE_COLUMN="subtable-column",t.SUBTABLE_ROW="subtable-row",t.TAB="tab",t.TAB_PANE="tab-pane",t.TOOLBOX="toolbox",t.DATA_VIEW="data-view",t.LIST_VIEW="list-view",t.SUBTABLE="subtable",t.GRID_TABLE="grid-table",t.SIMPLE_SEARCH="simple-search",t.PAGINATION="pagination",t.CHECKBOX_IMAGE="checkbox-image",t.DASHBOARD="dashboard",t.TREE="tree",t.EMPLOYEE2="employee2",t.DEPARTMENT2="department2"})(w||(w={}));var B;(function(t){t.VARCHAR="varchar",t.TEXT="text",t.ARRAY="array",t.ADDRESS="location",t.DECIMAL="decimal",t.DECIMAL_RANGE="decimal_range",t.TIMESTAMP="timestamp",t.EMPLOYEES="people",t.DEPARTMENTS="department",t.MONEY="money",t.TIMESCOPE="timescope",t.FILE="file",t.IMAGE="image",t.AUTO_NUMBER="auto_number",t.CALC="calc",t.RELATION="relation",t.LIST="list",t.RELATION_FIELD="relation-field",t.REFERENCE_FIELD="reference-field",t.CALC_FIELD="calc",t.JSON="json",t.BIGINT="bigint",t.ANY="ANY",t.ENCRYPTED_FIELD="encrypted_field"})(B||(B={}));var O;O={},P(O,B.ARRAY,w.ARRAY_COLUMN),P(O,B.AUTO_NUMBER,w.AUTO_NUMBER_COLUMN),P(O,B.DECIMAL,w.DECIMAL_COLUMN),P(O,B.DEPARTMENTS,w.DEPARTMENT_COLUMN),P(O,B.FILE,w.FILE_COLUMN),P(O,B.IMAGE,w.IMAGE_COLUMN),P(O,B.ADDRESS,w.LOCATION_COLUMN),P(O,B.EMPLOYEES,w.EMPLOYEE_COLUMN),P(O,B.TEXT,w.TEXT_COLUMN),P(O,B.TIMESCOPE,w.TIMESCOPE_COLUMN),P(O,B.TIMESTAMP,w.TIMESTAMP_COLUMN),P(O,B.VARCHAR,w.VARCHAR_COLUMN),P(O,B.RELATION,w.VARCHAR_COLUMN);var kt;(function(t){t.YEAR="year",t.MONTH="month",t.DATE="date",t.DATETIME="datetime"})(kt||(kt={}));var Ht="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",wa=Ht+"0123456789";function Qe(){for(var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,e="",r=0;r<t;r++){var n=r===0?Ht:wa,u=Math.random()*n.length;e+=n[parseInt(String(u),10)]}return e}function Ze(t,e){(e==null||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Sa(t){if(Array.isArray(t))return Ze(t)}function Fa(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Wt(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function _a(){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(t){return!1}}function _e(t,e,r){return _a()?_e=Reflect.construct:_e=function(u,a,o){var s=[null];s.push.apply(s,a);var c=Function.bind.apply(u,s),l=new c;return o&&ye(l,o.prototype),l},_e.apply(null,arguments)}function ge(t){return ge=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ge(t)}function zt(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&ye(t,e)}function Da(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function Ia(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ra(){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 $a(t,e){return e&&(Ma(e)==="object"||typeof e=="function")?e:Fa(t)}function ye(t,e){return ye=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},ye(t,e)}function Kt(t){return Sa(t)||Ia(t)||Oa(t)||Ra()}var Ma=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function Oa(t,e){if(!!t){if(typeof t=="string")return Ze(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor&&(r=t.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ze(t,e)}}function Ye(t){var e=typeof Map=="function"?new Map:void 0;return Ye=function(n){if(n===null||!Da(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,u)}function u(){return _e(n,arguments,ge(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),ye(u,n)},Ye(t)}function Pa(){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(t){return!1}}function Jt(t){var e=Pa();return function(){var n=ge(t),u;if(e){var a=ge(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return $a(this,u)}}var et=console;function Q(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n,u=e.slice(1);(n=et).warn.apply(n,["\u{1F9D0} Driven Warning:"+e[0]].concat(Kt(u)))}function tt(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n,u=e.slice(1);(n=et).log.apply(n,["\u{1F680} Driven Log:"+e[0]].concat(Kt(u)))}function La(t){return t+" \u{1F41B}\u{1F41B}\u{1F41B}"}var nt=function(t){zt(r,t);var e=Jt(r);function r(n){Wt(this,r);var u;return u=e.call(this,n),u.name="\u{1F4A5} Driven Error",u.message=n?La(n):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return r}(Ye(Error)),xa=function(t){zt(r,t);var e=Jt(r);function r(n){Wt(this,r);var u;return u=e.call(this,n),u.name="\u{1F6A8} Driven Reference Error",u}return r}(nt);function X(t){throw new nt(t)}function Gt(t){throw new xa(t)}function De(t){et.error(new nt(t))}function ne(t,e){Array.isArray(t)&&t.map(function(r){switch(r.controlType){case"layout":ne(r==null?void 0:r.children,e);break;case"search":ne(r==null?void 0:r.children,e);break;case"form":e(r)}})}var ja=Object.prototype.toString;function Xt(t,e){return ja.call(t)==="[object "+e+"]"}function Na(t){return Xt(t,"String")}function Ta(t){return Xt(t,"Promise")}var Va=function(){function t(e){var r,n;this._messageCache=new Map,this.messages={},this.variableRegExp=/\{([0-9a-zA-Z_]+)\}/g,this._messages=Object.freeze((n=(r=e.messages)!==null&&r!==void 0?r:this.getPreImport(e.locale))!==null&&n!==void 0?n:{}),e.variableRegExp&&(this.variableRegExp=e.variableRegExp),this.setLocale(e.locale)}return t.prototype.setLocale=function(e){var r=this;this.locale=e,this._messageCache.clear();var n=this.getMessageData();Ta(n)?n.then(function(u){r._messageCache.clear(),r.messages[r.localeInMessageKey]=u}):this.messages[this.localeInMessageKey]=n},t.prototype.getMessageData=function(){var e=this._messages[this.localeInMessageKey];return typeof e=="function"?e():e},t.prototype.translate=function(e,r,n){var u=this.getMessage(e);return u?this.formatMessage(u,n):this.formatMessage(r,n)},t.prototype.getMessage=function(e){if(this._messageCache.has(e))return this._messageCache.get(e);var r=this.getPathArray(e),n=r.reduce(function(u,a,o,s){if(u!==void 0){var c=u[a];if(!(o===s.length-1&&!Na(c)))return c}},this.message);return this._messageCache.set(e,n),n},t.prototype.formatMessage=function(e,r){return r?e.replace(this.variableRegExp,function(n,u){var a=r[u];return a!==void 0?String(a):n}):e},t.prototype.getPreImport=function(e){var r;if(window.okI18nPreImport){var n=this.getLocaleInMessageKey(e);return window.okI18nPreImport.hasOwnProperty(n)?window.okI18nPreImport:(r={},r[n]=window.okI18nPreImport,r)}},t.prototype.getPathArray=function(e){return e.split(".")},t.prototype.getLocaleInMessageKey=function(e){return e.replace(/-/g,"")},Object.defineProperty(t.prototype,"$t",{get:function(){return this.translate},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"localeInMessageKey",{get:function(){return this.getLocaleInMessageKey(this.locale)},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"message",{get:function(){var e;return(e=this.messages[this.localeInMessageKey])!==null&&e!==void 0?e:{}},enumerable:!1,configurable:!0}),t}();function qa(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var N=function(){function t(){qa(this,t)}return t.getMessage=function(r){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(r,"",n)},t.resetI18n=function(){var r=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Ut;return new Va({locale:r,messages:Ca})},t.setLocale=function(r){return this.$i18n.setLocale(r)},t}();N.$i18n=N.resetI18n();function Qt(t,e,r){var n=e.replace(/\[(\d)]/g,function(a,o){return"."+o}).split("."),u=!1;return n.reduce(function(a,o,s,c){var l=a;if(!!a){if(!Object.prototype.hasOwnProperty.call(a,o)){Q("Can not set ".concat(e,"'s ").concat(o," property in current %o, Because there is no ").concat(o," property on the %o"),a,a);return}return s===c.length-1&&!Object.is(l[o],r)&&(l[o]=r,u=!0),l[o]}},t),u}var Ua=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{},rt={exports:{}};(function(t){(function(e){var r=function(f,m,M){if(!l(m)||p(m)||h(m)||g(m)||c(m))return m;var v,D=0,z=0;if(d(m))for(v=[],z=m.length;D<z;D++)v.push(r(f,m[D],M));else{v={};for(var S in m)Object.prototype.hasOwnProperty.call(m,S)&&(v[f(S,M)]=r(f,m[S],M))}return v},n=function(f,m){m=m||{};var M=m.separator||"_",v=m.split||/(?=[A-Z])/;return f.split(v).join(M)},u=function(f){return E(f)?f:(f=f.replace(/[\-_\s]+(.)?/g,function(m,M){return M?M.toUpperCase():""}),f.substr(0,1).toLowerCase()+f.substr(1))},a=function(f){var m=u(f);return m.substr(0,1).toUpperCase()+m.substr(1)},o=function(f,m){return n(f,m).toLowerCase()},s=Object.prototype.toString,c=function(f){return typeof f=="function"},l=function(f){return f===Object(f)},d=function(f){return s.call(f)=="[object Array]"},p=function(f){return s.call(f)=="[object Date]"},h=function(f){return s.call(f)=="[object RegExp]"},g=function(f){return s.call(f)=="[object Boolean]"},E=function(f){return f=f-0,f===f},y=function(f,m){var M=m&&"process"in m?m.process:m;return typeof M!="function"?f:function(v,D){return M(v,f,D)}},b={camelize:u,decamelize:o,pascalize:a,depascalize:o,camelizeKeys:function(f,m){return r(y(u,m),f)},decamelizeKeys:function(f,m){return r(y(o,m),f,m)},pascalizeKeys:function(f,m){return r(y(a,m),f)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};t.exports?t.exports=b:e.humps=b})(Ua)})(rt);function _(t){if(t!==void 0)return typeof t=="object"?JSON.parse(JSON.stringify(t)):t}function U(t){return Object.prototype.toString.call(t)==="[object Object]"}function ka(t){return t!=null&&typeof t=="object"&&Array.isArray(t)===!1}function ae(t){return Array.isArray(t)}function L(t){return typeof t=="string"}function Ie(t){return typeof t=="number"}function Zt(t){return typeof t=="function"}function Ha(t){return ae(t)&&t.every(function(e){return L(e)})}function Wa(t){return ae(t)&&t.every(function(e){return Ie(e)||e===""})}function Yt(t){return/^\[.*?]$/.test(t)}function Re(t){return/^{.*?}$/.test(t)}function it(t,e){(e==null||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function za(t){if(Array.isArray(t))return it(t)}function en(t,e,r,n,u,a,o){try{var s=t[a](o),c=s.value}catch(l){r(l);return}s.done?e(c):Promise.resolve(c).then(n,u)}function Ka(t){return function(){var e=this,r=arguments;return new Promise(function(n,u){var a=t.apply(e,r);function o(c){en(a,n,u,o,s,"next",c)}function s(c){en(a,n,u,o,s,"throw",c)}o(void 0)})}}function Ja(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ga(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Xa(){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 ut(t){return za(t)||Ga(t)||Qa(t)||Xa()}function Qa(t,e){if(!!t){if(typeof t=="string")return it(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor&&(r=t.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return it(t,e)}}var tn=function(){function t(){Ja(this,t),this._events=new Map,this.debug=!1}var e=t.prototype;return e.emit=function(n){for(var u=arguments.length,a=new Array(u>1?u-1:0),o=1;o<u;o++)a[o-1]=arguments[o];var s=this;return Ka(V.default.mark(function c(){var l,d,p,h,g,E,y,b,f,m;return V.default.wrap(function(v){for(;;)switch(v.prev=v.next){case 0:if(l=s._events.get(n),d=[],!l){v.next=42;break}p=l.slice(),h=!0,g=!1,E=void 0,v.prev=5,y=p[Symbol.iterator]();case 7:if(h=(b=y.next()).done){v.next=28;break}if(f=b.value,l.includes(f)){v.next=11;break}return v.abrupt("continue",25);case 11:return v.prev=11,s.debug&&tt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"\u3002")].concat(ut(a))),v.next=15,f.apply(null,ut(a));case 15:if(m=v.sent,s.debug&&tt.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(n," \u4E8B\u4EF6: ").concat(f.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+f.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(a.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(ut(a),[m])),d.push(m),m!==!1){v.next=20;break}return v.abrupt("break",28);case 20:v.next=25;break;case 22:v.prev=22,v.t0=v.catch(11),De(String(v.t0));case 25:h=!0,v.next=7;break;case 28:v.next=34;break;case 30:v.prev=30,v.t1=v.catch(5),g=!0,E=v.t1;case 34:v.prev=34,v.prev=35,!h&&y.return!=null&&y.return();case 37:if(v.prev=37,!g){v.next=40;break}throw E;case 40:return v.finish(37);case 41:return v.finish(34);case 42:return v.abrupt("return",d);case 43:case"end":return v.stop()}},c,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()},e.on=function(n,u){if(this._events.has(n)){var a;(a=this._events.get(n))===null||a===void 0||a.push(u)}else this._events.set(n,[u])},e.off=function(n,u){if(this._events.has(n)){var a=this._events.get(n),o=a==null?void 0:a.indexOf(u);a==null||a.splice(o,1)}},e.delete=function(n){this._events.has(n)&&this._events.delete(n)},e.clear=function(){this._events=new Map},t}();function Za(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var Ya=[{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_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_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"}],nn=function(){function t(){Za(this,t)}var e=t.prototype;return e.getEventsFromKeys=function(n){var u=typeof n=="string"?[n]:n;return t.events.filter(function(a){return u.includes(a.key)})},t}();nn.events=Ya;function eo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var rn=[],$e=function(){function t(r){eo(this,t),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=r,this._initControls(r)}var e=t.prototype;return e.registerControlConfig=function(n,u){return this.controlConfigMap.set(n,u),this},e.getControlConfig=function(n){return this.controlConfigMap.get(n)},e.getControls=function(){return this._controls},e.register=function(n){n.__is_control__||X("".concat(n.name," is not a Control"));var u=this._controls.findIndex(function(a){return a.controlType===n.controlType});return u>-1&&(Q("The ".concat(n.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(n.controlType),this._controls.push(n),this},e.isLayoutControl=function(n){return n.controlType===q.LAYOUT},e.isFormControl=function(n){return n.controlType===q.FORM},e.isListControl=function(n){return n.controlType===q.LIST},e.isColumnControl=function(n){return n.controlType===q.COLUMN},e.createControl=function(n,u){var a=this;if(Array.isArray(n))return n.map(function(d){return a.createControl(d,u)});n.children&&(n.children=n.children.map(function(d){return a.createControl(d,u)})),this.isListControl(n)&&n.props.headers&&(n.props.headers=n.props.headers.map(function(d){return a.createControl(d,u)}));var o=this.getControlFormType(n.type);if(o){var s=n;if(typeof u=="function"){var c=u(s);c&&(s=c)}var l=new o(s);return l}else X("The constructor of ".concat(n.type," could not be found, please confirm that the constructor has been registered"))},e.createControlInstance=function(n,u){var a=this.getControlFormType(n);if(a)return new a(u)},e.getControlFormType=function(n){return this._controls.find(function(u){return u.controlType===n})},e._initControls=function(n){var u=this;this.constructor.staticControls.forEach(function(a){u.register(a[n])})},t.register=function(n){var u=n.Designer,a=n.Runtime;(!u||!a||!u.__is_control__||!a.__is_control__)&&X("".concat(n," is can't register as a Control"));var o=this.staticControls.findIndex(function(s){return s.Designer.controlType===u.controlType});return o>-1&&(Q("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(o,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(n),this},t}();$e.staticControls=rn,$e.staticRegisteredTypes=new Set(rn.map(function(t){return t.Designer.controlType})),$e.staticRegisteredConfigs=new Map;function re(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var me=function t(e){re(this,t);var r;this.dataCode=(r=e==null?void 0:e.dataCode)!==null&&r!==void 0?r:"";var n;this.fieldCode=(n=e==null?void 0:e.fieldCode)!==null&&n!==void 0?n:"";var u;this.fieldType=(u=e==null?void 0:e.fieldType)!==null&&u!==void 0?u:""},Z=function t(){re(this,t)},Me=function t(e){re(this,t);var r;this.amount=(r=e==null?void 0:e.amount)!==null&&r!==void 0?r:"";var n;this.currency=(n=e==null?void 0:e.currency)!==null&&n!==void 0?n:at.CNY},Oe=function t(e){re(this,t);var r;this.min=(r=e==null?void 0:e.min)!==null&&r!==void 0?r:"";var n;this.max=(n=e==null?void 0:e.max)!==null&&n!==void 0?n:""},Pe=function t(e){re(this,t);var r;this.city=(r=e==null?void 0:e.city)!==null&&r!==void 0?r:"";var n;this.cityDisplay=(n=e==null?void 0:e.cityDisplay)!==null&&n!==void 0?n:"";var u;this.district=(u=e==null?void 0:e.district)!==null&&u!==void 0?u:"";var a;this.districtDisplay=(a=e==null?void 0:e.districtDisplay)!==null&&a!==void 0?a:"";var o;this.province=(o=e==null?void 0:e.province)!==null&&o!==void 0?o:"";var s;this.provinceDisplay=(s=e==null?void 0:e.provinceDisplay)!==null&&s!==void 0?s:""},Le=function t(e){re(this,t);var r;this.result=(r=e==null?void 0:e.result)!==null&&r!==void 0?r:0;var n;this.unit=(n=e==null?void 0:e.unit)!==null&&n!==void 0?n:""},at;(function(t){t.CNY="CNY",t.USD="USD",t.JPY="JPY",t.EUR="EUR",t.INR="INR",t.IDR="IDR",t.BRL="BRL",t.AED="AED",t.AUD="AUD",t.CAD="CAD",t.EGP="EGP",t.GBP="GBP",t.ZAR="ZAR",t.KRW="KRW",t.MAD="MAD",t.MXN="MXN",t.MYR="MYR",t.PHP="PHP",t.PLN="PLN",t.RUB="RUB",t.SGD="SGD",t.THB="THB",t.TRY="TRY",t.TWD="TWD",t.VND="VND",t.HKD="HKD",t.IEP="IEP"})(at||(at={}));var un;(function(t){t.REQUIRED="required",t.IS_HIDE="isHide",t.IS_SHOW_UNIT="isShowUnit",t.IMD_SEARCH="immediatelySearch",t.MULTIPLE="multiple",t.SUBMIT_SELECT_CURRENCY="submitSelectCurrency",t.CAPTION="caption",t.IS_HIDE_CAPTION="isHideCaption",t.DEFAULT_SHOW_OPTIONS="defaultShowOptions",t.CAN_SEARCH="canSearch",t.CAN_CHECK="canCheck",t.CAN_EDIT="canEdit",t.CAN_DELETE="canDelete",t.SHOW_UPPER_CASE="showUpperCase",t.MICROMETER="micrometer",t.PRECISION="precision",t.PERCENTAGE="percentage",t.OPTIONAL_LEVEL="optionalLevel",t.CONTAINS_SUB_NODE="containsSubNode",t.DEFAULT_COLLAPSE="defaultCollapse",t.CAN_VIEW_FORM="canViewForm",t.SERVER_PAGINATION="serverPagination",t.IS_SHOW_CAPTION_TIP="isShowCaptionTip",t.ENCRYPTED="encrypted",t.IS_INLINE_EDIT="isInlineEdit"})(un||(un={}));var ot;(function(t){t[t.UNKNOWN=0]="UNKNOWN",t[t.READONLY=1]="READONLY",t[t.EDITABLE=2]="EDITABLE",t[t.PRINT=5]="PRINT"})(ot||(ot={}));var to=function t(e){re(this,t);var r;this.width=(r=e==null?void 0:e.width)!==null&&r!==void 0?r:"";var n;this.height=(n=e==null?void 0:e.height)!==null&&n!==void 0?n:"";var u;this.widthConfig=(u=e==null?void 0:e.widthConfig)!==null&&u!==void 0?u:"fill";var a;this.heightConfig=(a=e==null?void 0:e.heightConfig)!==null&&a!==void 0?a:"fill"};function no(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function st(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ro(){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(t){return!1}}function xe(t,e,r){return ro()?xe=Reflect.construct:xe=function(u,a,o){var s=[null];s.push.apply(s,a);var c=Function.bind.apply(u,s),l=new c;return o&&Ee(l,o.prototype),l},xe.apply(null,arguments)}function ve(t){return ve=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ve(t)}function io(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Ee(t,e)}function uo(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ao(t,e){return e&&(oo(e)==="object"||typeof e=="function")?e:no(t)}function Ee(t,e){return Ee=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Ee(t,e)}var oo=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function ct(t){var e=typeof Map=="function"?new Map:void 0;return ct=function(n){if(n===null||!uo(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,u)}function u(){return xe(n,arguments,ve(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Ee(u,n)},ct(t)}function so(){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(t){return!1}}function co(t){var e=so();return function(){var n=ve(t),u;if(e){var a=ve(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return ao(this,u)}}var an=function t(e){st(this,t),this.isHide={type:"boolean"}},on=function(t){io(r,t);var e=co(r);function r(n){return st(this,r),e.call(this)}return r}(ct(Array)),ie=function t(e){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";st(this,t);var n;this.isHide=(n=e==null?void 0:e.isHide)!==null&&n!==void 0?n:!1,this.style=new to(e==null?void 0:e.style);var u;this.caption=(u=e==null?void 0:e.caption)!==null&&u!==void 0?u:r};ie.Rules=an,ie.RuntimeRules=on;function k(){return k=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t},k.apply(this,arguments)}function lo(t,e){t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t.__proto__=e}function lt(t){return lt=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},lt(t)}function je(t,e){return je=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},je(t,e)}function fo(){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(t){return!1}}function Ne(t,e,r){return fo()?Ne=Reflect.construct:Ne=function(u,a,o){var s=[null];s.push.apply(s,a);var c=Function.bind.apply(u,s),l=new c;return o&&je(l,o.prototype),l},Ne.apply(null,arguments)}function po(t){return Function.toString.call(t).indexOf("[native code]")!==-1}function ft(t){var e=typeof Map=="function"?new Map:void 0;return ft=function(n){if(n===null||!po(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e!="undefined"){if(e.has(n))return e.get(n);e.set(n,u)}function u(){return Ne(n,arguments,lt(this).constructor)}return u.prototype=Object.create(n.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),je(u,n)},ft(t)}var ho=/%[sdj%]/g,sn=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(sn=function(e,r){typeof console!="undefined"&&console.warn&&r.every(function(n){return typeof n=="string"})&&console.warn(e,r)});function dt(t){if(!t||!t.length)return null;var e={};return t.forEach(function(r){var n=r.field;e[n]=e[n]||[],e[n].push(r)}),e}function x(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n=1,u=e[0],a=e.length;if(typeof u=="function")return u.apply(null,e.slice(1));if(typeof u=="string"){var o=String(u).replace(ho,function(s){if(s==="%%")return"%";if(n>=a)return s;switch(s){case"%s":return String(e[n++]);case"%d":return Number(e[n++]);case"%j":try{return JSON.stringify(e[n++])}catch(c){return"[Circular]"}break;default:return s}});return o}return u}function go(t){return t==="string"||t==="url"||t==="hex"||t==="email"||t==="date"||t==="pattern"}function R(t,e){return!!(t==null||e==="array"&&Array.isArray(t)&&!t.length||go(e)&&typeof t=="string"&&!t)}function yo(t,e,r){var n=[],u=0,a=t.length;function o(s){n.push.apply(n,s),u++,u===a&&r(n)}t.forEach(function(s){e(s,o)})}function cn(t,e,r){var n=0,u=t.length;function a(o){if(o&&o.length){r(o);return}var s=n;n=n+1,s<u?e(t[s],a):r([])}a([])}function mo(t){var e=[];return Object.keys(t).forEach(function(r){e.push.apply(e,t[r])}),e}var ln=function(t){lo(e,t);function e(r,n){var u;return u=t.call(this,"Async Validation Error")||this,u.errors=r,u.fields=n,u}return e}(ft(Error));function vo(t,e,r,n){if(e.first){var u=new Promise(function(p,h){var g=function(b){return n(b),b.length?h(new ln(b,dt(b))):p()},E=mo(t);cn(E,r,g)});return u.catch(function(p){return p}),u}var a=e.firstFields||[];a===!0&&(a=Object.keys(t));var o=Object.keys(t),s=o.length,c=0,l=[],d=new Promise(function(p,h){var g=function(y){if(l.push.apply(l,y),c++,c===s)return n(l),l.length?h(new ln(l,dt(l))):p()};o.length||(n(l),p()),o.forEach(function(E){var y=t[E];a.indexOf(E)!==-1?cn(y,r,g):yo(y,r,g)})});return d.catch(function(p){return p}),d}function fn(t){return function(e){return e&&e.message?(e.field=e.field||t.fullField,e):{message:typeof e=="function"?e():e,field:e.field||t.fullField}}}function dn(t,e){if(e){for(var r in e)if(e.hasOwnProperty(r)){var n=e[r];typeof n=="object"&&typeof t[r]=="object"?t[r]=k(k({},t[r]),n):t[r]=n}}return t}function pn(t,e,r,n,u,a){t.required&&(!r.hasOwnProperty(t.field)||R(e,a||t.type))&&n.push(x(u.messages.required,t.fullField))}function Eo(t,e,r,n,u){(/^\s+$/.test(e)||e==="")&&n.push(x(u.messages.whitespace,t.fullField))}var pt={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},be={integer:function(e){return be.number(e)&&parseInt(e,10)===e},float:function(e){return be.number(e)&&!be.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(r){return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!be.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&!!e.match(pt.email)&&e.length<255},url:function(e){return typeof e=="string"&&!!e.match(pt.url)},hex:function(e){return typeof e=="string"&&!!e.match(pt.hex)}};function bo(t,e,r,n,u){if(t.required&&e===void 0){pn(t,e,r,n,u);return}var a=["integer","float","array","regexp","object","method","email","number","date","url","hex"],o=t.type;a.indexOf(o)>-1?be[o](e)||n.push(x(u.messages.types[o],t.fullField,t.type)):o&&typeof e!==t.type&&n.push(x(u.messages.types[o],t.fullField,t.type))}function Ao(t,e,r,n,u){var a=typeof t.len=="number",o=typeof t.min=="number",s=typeof t.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,l=e,d=null,p=typeof e=="number",h=typeof e=="string",g=Array.isArray(e);if(p?d="number":h?d="string":g&&(d="array"),!d)return!1;g&&(l=e.length),h&&(l=e.replace(c,"_").length),a?l!==t.len&&n.push(x(u.messages[d].len,t.fullField,t.len)):o&&!s&&l<t.min?n.push(x(u.messages[d].min,t.fullField,t.min)):s&&!o&&l>t.max?n.push(x(u.messages[d].max,t.fullField,t.max)):o&&s&&(l<t.min||l>t.max)&&n.push(x(u.messages[d].range,t.fullField,t.min,t.max))}var oe="enum";function Bo(t,e,r,n,u){t[oe]=Array.isArray(t[oe])?t[oe]:[],t[oe].indexOf(e)===-1&&n.push(x(u.messages[oe],t.fullField,t[oe].join(", ")))}function Co(t,e,r,n,u){if(t.pattern){if(t.pattern instanceof RegExp)t.pattern.lastIndex=0,t.pattern.test(e)||n.push(x(u.messages.pattern.mismatch,t.fullField,e,t.pattern));else if(typeof t.pattern=="string"){var a=new RegExp(t.pattern);a.test(e)||n.push(x(u.messages.pattern.mismatch,t.fullField,e,t.pattern))}}}var A={required:pn,whitespace:Eo,type:bo,range:Ao,enum:Bo,pattern:Co};function wo(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e,"string")&&!t.required)return r();A.required(t,e,n,a,u,"string"),R(e,"string")||(A.type(t,e,n,a,u),A.range(t,e,n,a,u),A.pattern(t,e,n,a,u),t.whitespace===!0&&A.whitespace(t,e,n,a,u))}r(a)}function So(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&A.type(t,e,n,a,u)}r(a)}function Fo(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(e===""&&(e=void 0),R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&(A.type(t,e,n,a,u),A.range(t,e,n,a,u))}r(a)}function _o(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&A.type(t,e,n,a,u)}r(a)}function Do(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),R(e)||A.type(t,e,n,a,u)}r(a)}function Io(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&(A.type(t,e,n,a,u),A.range(t,e,n,a,u))}r(a)}function Ro(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&(A.type(t,e,n,a,u),A.range(t,e,n,a,u))}r(a)}function $o(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(e==null&&!t.required)return r();A.required(t,e,n,a,u,"array"),e!=null&&(A.type(t,e,n,a,u),A.range(t,e,n,a,u))}r(a)}function Mo(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&A.type(t,e,n,a,u)}r(a)}var Oo="enum";function Po(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u),e!==void 0&&A[Oo](t,e,n,a,u)}r(a)}function Lo(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e,"string")&&!t.required)return r();A.required(t,e,n,a,u),R(e,"string")||A.pattern(t,e,n,a,u)}r(a)}function xo(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e,"date")&&!t.required)return r();if(A.required(t,e,n,a,u),!R(e,"date")){var s;e instanceof Date?s=e:s=new Date(e),A.type(t,s,n,a,u),s&&A.range(t,s.getTime(),n,a,u)}}r(a)}function jo(t,e,r,n,u){var a=[],o=Array.isArray(e)?"array":typeof e;A.required(t,e,n,a,u,o),r(a)}function ht(t,e,r,n,u){var a=t.type,o=[],s=t.required||!t.required&&n.hasOwnProperty(t.field);if(s){if(R(e,a)&&!t.required)return r();A.required(t,e,n,o,u,a),R(e,a)||A.type(t,e,n,o,u)}r(o)}function No(t,e,r,n,u){var a=[],o=t.required||!t.required&&n.hasOwnProperty(t.field);if(o){if(R(e)&&!t.required)return r();A.required(t,e,n,a,u)}r(a)}var Ae={string:wo,method:So,number:Fo,boolean:_o,regexp:Do,integer:Io,float:Ro,array:$o,object:Mo,enum:Po,pattern:Lo,date:xo,url:ht,hex:ht,email:ht,required:jo,any:No};function gt(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var yt=gt();function Y(t){this.rules=null,this._messages=yt,this.define(t)}Y.prototype={messages:function(e){return e&&(this._messages=dn(gt(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if(typeof e!="object"||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var r,n;for(r in e)e.hasOwnProperty(r)&&(n=e[r],this.rules[r]=Array.isArray(n)?n:[n])},validate:function(e,r,n){var u=this;r===void 0&&(r={}),n===void 0&&(n=function(){});var a=e,o=r,s=n;if(typeof o=="function"&&(s=o,o={}),!this.rules||Object.keys(this.rules).length===0)return s&&s(),Promise.resolve();function c(y){var b,f=[],m={};function M(v){if(Array.isArray(v)){var D;f=(D=f).concat.apply(D,v)}else f.push(v)}for(b=0;b<y.length;b++)M(y[b]);f.length?m=dt(f):(f=null,m=null),s(f,m)}if(o.messages){var l=this.messages();l===yt&&(l=gt()),dn(l,o.messages),o.messages=l}else o.messages=this.messages();var d,p,h={},g=o.keys||Object.keys(this.rules);g.forEach(function(y){d=u.rules[y],p=a[y],d.forEach(function(b){var f=b;typeof f.transform=="function"&&(a===e&&(a=k({},a)),p=a[y]=f.transform(p)),typeof f=="function"?f={validator:f}:f=k({},f),f.validator=u.getValidationMethod(f),f.field=y,f.fullField=f.fullField||y,f.type=u.getType(f),f.validator&&(h[y]=h[y]||[],h[y].push({rule:f,value:p,source:a,field:y}))})});var E={};return vo(h,o,function(y,b){var f=y.rule,m=(f.type==="object"||f.type==="array")&&(typeof f.fields=="object"||typeof f.defaultField=="object");m=m&&(f.required||!f.required&&y.value),f.field=y.field;function M(z,S){return k(k({},S),{},{fullField:f.fullField+"."+z})}function v(z){z===void 0&&(z=[]);var S=z;if(Array.isArray(S)||(S=[S]),!o.suppressWarning&&S.length&&Y.warning("async-validator:",S),S.length&&f.message!==void 0&&(S=[].concat(f.message)),S=S.map(fn(f)),o.first&&S.length)return E[f.field]=1,b(S);if(!m)b(S);else{if(f.required&&!y.value)return f.message!==void 0?S=[].concat(f.message).map(fn(f)):o.error&&(S=[o.error(f,x(o.messages.required,f.field))]),b(S);var K={};if(f.defaultField)for(var Wn in y.value)y.value.hasOwnProperty(Wn)&&(K[Wn]=f.defaultField);K=k(k({},K),y.rule.fields);for(var fe in K)if(K.hasOwnProperty(fe)){var Uc=Array.isArray(K[fe])?K[fe]:[K[fe]];K[fe]=Uc.map(M.bind(null,fe))}var zn=new Y(K);zn.messages(o.messages),y.rule.options&&(y.rule.options.messages=o.messages,y.rule.options.error=o.error),zn.validate(y.value,y.rule.options||o,function(Vt){var de=[];S&&S.length&&de.push.apply(de,S),Vt&&Vt.length&&de.push.apply(de,Vt),b(de.length?de:null)})}}var D;f.asyncValidator?D=f.asyncValidator(f,y.value,v,y.source,o):f.validator&&(D=f.validator(f,y.value,v,y.source,o),D===!0?v():D===!1?v(f.message||f.field+" fails"):D instanceof Array?v(D):D instanceof Error&&v(D.message)),D&&D.then&&D.then(function(){return v()},function(z){return v(z)})},function(y){c(y)})},getType:function(e){if(e.type===void 0&&e.pattern instanceof RegExp&&(e.type="pattern"),typeof e.validator!="function"&&e.type&&!Ae.hasOwnProperty(e.type))throw new Error(x("Unknown rule type %s",e.type));return e.type||"string"},getValidationMethod:function(e){if(typeof e.validator=="function")return e.validator;var r=Object.keys(e),n=r.indexOf("message");return n!==-1&&r.splice(n,1),r.length===1&&r[0]==="required"?Ae.required:Ae[this.getType(e)]||!1}},Y.register=function(e,r){if(typeof r!="function")throw new Error("Cannot register a validator by type, validator is not a function");Ae[e]=r},Y.warning=sn,Y.messages=yt,Y.validators=Ae;var To={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function Vo(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=new Y(t);return r.messages(Object.assign(To,e)),r}var qo=new tn;function mt(t,e){(e==null||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Uo(t){if(Array.isArray(t))return t}function ko(t){if(Array.isArray(t))return mt(t)}function hn(t,e,r,n,u,a,o){try{var s=t[a](o),c=s.value}catch(l){r(l);return}s.done?e(c):Promise.resolve(c).then(n,u)}function gn(t){return function(){var e=this,r=arguments;return new Promise(function(n,u){var a=t.apply(e,r);function o(c){hn(a,n,u,o,s,"next",c)}function s(c){hn(a,n,u,o,s,"throw",c)}o(void 0)})}}function Ho(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function yn(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function Wo(t,e,r){return e&&yn(t.prototype,e),r&&yn(t,r),t}function zo(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function mn(t,e){return e!=null&&typeof Symbol!="undefined"&&e[Symbol.hasInstance]?!!e[Symbol.hasInstance](t):t instanceof e}function vn(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ko(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Jo(){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 En(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){zo(t,u,r[u])})}return t}function Go(t){return Uo(t)||vn(t)||bn(t,i)||Ko()}function vt(t){return ko(t)||vn(t)||bn(t)||Jo()}function bn(t,e){if(!!t){if(typeof t=="string")return mt(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor&&(r=t.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return mt(t,e)}}var H=function(){function e(n){var u=this;Ho(this,e),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Bn,this.removeSetting=An,this._callControlHooks("preInstance",n);var a=mn(this,e)?this.constructor:void 0,o=a.controlName,s=a.controlIcon,c=a.controlType,l=a.controlFieldType,d=a.controlEventKeys,p=a.controlCustomEvents,h=a.name,g=a.setting;o&&s&&c||Gt("The ".concat(h," controlName,controlIcon,controlType is not define"));var E;this.id=(E=n==null?void 0:n.id)!==null&&E!==void 0?E:Qe(10),this.name=o,this.icon=s;var y;this.type=(y=n==null?void 0:n.type)!==null&&y!==void 0?y:c,this.props=new ie(n==null?void 0:n.props,(mn(this,e)?this.constructor:void 0).controlName);var b;this.controlType=(b=n==null?void 0:n.controlType)!==null&&b!==void 0?b:"base",this.setting=_(g);var f;this.fieldType=(f=n==null?void 0:n.fieldType)!==null&&f!==void 0?f:l,this.eventKeys=_(d),this.customEvents=_(p),Promise.resolve().then(function(){u._callControlHooks("postInstance",n)})}var r=e.prototype;return r._callControlHooks=function(){for(var u=arguments.length,a=new Array(u),o=0;o<u;o++)a[o]=arguments[o];var s,c=Go(a),l=c[0],d=c.slice(1);return(s=qo).emit.apply(s,[l,this].concat(vt(d)))},r.preUpdate=function(u,a){this._callControlHooks("preUpdateProps",u,a)},r.postUpdate=function(u,a){this._callControlHooks("postUpdateProps",u,a)},r.updateProps=function(u,a){this.preUpdate(u,a),Qt(this.props,u,a),this.postUpdate(u,a)},r.preValidate=function(){var u=this;return gn(V.default.mark(function a(){var o,s,c;return V.default.wrap(function(d){for(;;)switch(d.prev=d.next){case 0:return o=En({},u.rules),d.next=3,u._callControlHooks("preValidate",o);case 3:return s=d.sent,c=s[s.length-1],d.abrupt("return",c===!1?void 0:c);case 6:case"end":return d.stop()}},a)}))()},r.validate=function(u,a){var o=this;return gn(V.default.mark(function s(){var c,l,d;return V.default.wrap(function(h){for(;;)switch(h.prev=h.next){case 0:return h.next=2,o.preValidate();case 2:return c=h.sent,l=c!==void 0?c:En({},o.rules),Array.isArray(a)&&a.forEach(function(g){l.hasOwnProperty(g)&&delete l[g]}),d=Vo(l,u),h.prev=6,h.next=9,d.validate(o.props);case 9:return h.abrupt("return",!0);case 12:throw h.prev=12,h.t0=h.catch(6),h.t0.control||(h.t0.control=o),h.t0;case 16:case"end":return h.stop()}},s,null,[[6,12]])}))()},r.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,a=this.fieldType,o=this.id,s=this.type,c=this.props,l=c.dataBind,d=c.datasourceBind,p=c.optionConfig,h=c.caption,g=c.required,E=c.maxLength,y=c.options,b=c.encrypted,f=c.encryptedMode;if(!(!a&&!l&&!d)){var m={parentId:u,fieldType:a,controlId:o,caption:h,type:s,props:{}};switch(l&&(m.dataBind=l),p){case"datasource":case void 0:d&&(m.datasourceBind=d);break;case"custom":m.props.options=y;break}return g!==void 0&&(m.required=g),E!==void 0&&(m.maxLength=E),b!==void 0&&(m.encrypted=b),f!==void 0&&(m.encryptedMode=f),m}},r.preToSchema=function(){this._callControlHooks("preToSchema",this)},r.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:_(this.props),fieldType:this.fieldType,controlType:this.controlType}},e.updateBasicControl=function(u,a){if(u==="setting"){if(a.add){var o;(o=this.setting).push.apply(o,vt(a.add))}a.remove&&this.removeSettingItem(a.remove),a.update}},Wo(e,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),e}();H.controlName="\u63A7\u4EF6",H.controlIcon="icon",H.controlType="control",H.controlEventKeys=[],H.controlCustomEvents=[],H.setting=[],H.__is_control__=!0,H.removeSettingItem=An,H.updateSettingItem=Bn;function An(t){var e=this,r=Array.isArray(t)?t:[t];r.forEach(function(n){var u=typeof n!="string",a=e.setting.findIndex(function(c){return c.key===(u?n.key:n)});if(a!==-1){var o,s;u?e.setting[a].showItems=(o=e.setting[a].showItems)===null||o===void 0?void 0:o.filter(function(c){return!n.hideItems.includes(c)}):e.setting.splice(a,1),u&&!(!((s=e.setting[a].showItems)===null||s===void 0)&&s.length)&&e.setting.splice(a,1)}})}function Bn(t,e){var r=this,n=typeof t=="string"?[t]:t;n.forEach(function(u){var a=r.setting.find(function(l){return l.key===u});if(a){if(typeof e=="boolean")a.visible=e;else if(typeof e=="object"){var o,s=(o=e.type)!==null&&o!==void 0?o:"replace";if(s==="replace")a.showItems=e.showItems;else{var c;(c=a.showItems).push.apply(c,vt(e.showItems))}}}})}function Xo(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Cn(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function Qo(t,e,r){return e&&Cn(t.prototype,e),r&&Cn(t,r),t}function Zo(t,e){return e!=null&&typeof Symbol!="undefined"&&e[Symbol.hasInstance]?!!e[Symbol.hasInstance](t):t instanceof e}var se=function(){function e(r){Xo(this,e),this.customEvents=[],this.parent=null;var n=Zo(this,e)?this.constructor:void 0,u=n.controlType,a=n.controlFieldType,o=n.name,s=n.controlCustomEvents;u||Gt("The ".concat(o," controlType is not define"));var c;this.id=(c=r==null?void 0:r.id)!==null&&c!==void 0?c:Qe(10);var l;this.type=(l=r==null?void 0:r.type)!==null&&l!==void 0?l:u,this.props=new ie(r==null?void 0:r.props),this.customEvents=s;var d;this.controlType=(d=r==null?void 0:r.controlType)!==null&&d!==void 0?d:"base";var p;this.fieldType=(p=r==null?void 0:r.fieldType)!==null&&p!==void 0?p:a;var h;this.pageStatus=(h=r==null?void 0:r.pageStatus)!==null&&h!==void 0?h:ot.UNKNOWN}return Qo(e,[{key:"rules",get:function(){var n=this.props.constructor.RuntimeRules;if(n){var u=new n(this.props);return Array.from(u)}return[]}}]),e}();se.controlType="control",se.__is_control__=!0,se.controlCustomEvents=[];function Yo(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Et(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Te(t){return Te=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Te(t)}function bt(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&At(t,e)}function es(t,e){return e!=null&&typeof Symbol!="undefined"&&e[Symbol.hasInstance]?!!e[Symbol.hasInstance](t):t instanceof e}function ts(t,e){return e&&(ns(e)==="object"||typeof e=="function")?e:Yo(t)}function At(t,e){return At=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},At(t,e)}var ns=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function rs(){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(t){return!1}}function Bt(t){var e=rs();return function(){var n=Te(t),u;if(e){var a=Te(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return ts(this,u)}}var is=function(t){bt(r,t);var e=Bt(r);function r(n){Et(this,r);var u;u=e.call(this,n),u.dataBind={},u.caption={type:"string",required:!0,message:N.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:N.getMessage("pleaseEnterCaptionTip")};var a={fieldCode:{type:"string",required:!0,message:N.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:N.getMessage("pleaseEnterFieldCode")}};if(es(n.dataBind,me))u.dataBind={type:"object",required:!0,fields:_(a),message:N.getMessage("pleaseEnterFieldCode")};else{var o={type:"object",required:!0,fields:{},message:N.getMessage("pleaseEnterFieldCode")};Object.keys(n.dataBind).forEach(function(s){o.fields[s]={type:"object",required:!0,fields:_(a),message:N.getMessage("pleaseEnterFieldCode")}}),u.dataBind=o}return n.isShowCaptionTip&&(u.captionTip.required=!0),u}return r}(an),us=function(t){bt(r,t);var e=Bt(r);function r(n){Et(this,r);var u;return u=e.call(this,n),u.push({type:"string",required:n.isHide?!1:n.required,message:n.requiredMessage!==""?n.requiredMessage:N.getMessage("runtimeRequired",{caption:n.caption})}),u}return r}(on),Ct=function(t){bt(r,t);var e=Bt(r);function r(n){Et(this,r);var u;u=e.call(this,n);var a;u.caption=(a=n==null?void 0:n.caption)!==null&&a!==void 0?a:"";var o;u.isHideCaption=(o=n==null?void 0:n.isHideCaption)!==null&&o!==void 0?o:!1;var s;u.isShowCaptionTip=(s=n==null?void 0:n.isShowCaptionTip)!==null&&s!==void 0?s:!1;var c;u.captionTip=(c=n==null?void 0:n.captionTip)!==null&&c!==void 0?c:"";var l;u.defaultState=(l=n==null?void 0:n.defaultState)!==null&&l!==void 0?l:"default";var d;u.labelPosition=(d=n==null?void 0:n.labelPosition)!==null&&d!==void 0?d:"top";var p;u.placeholder=(p=n==null?void 0:n.placeholder)!==null&&p!==void 0?p:"";var h;u.required=(h=n==null?void 0:n.required)!==null&&h!==void 0?h:!1;var g;u.requiredMessage=(g=n==null?void 0:n.requiredMessage)!==null&&g!==void 0?g:"",u.dataBind=new me(n==null?void 0:n.dataBind);var E;return u.defaultValue=(E=n==null?void 0:n.defaultValue)!==null&&E!==void 0?E:"",u}return r}(ie);Ct.Rules=is,Ct.RuntimeRules=us;function as(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function os(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Ve(t){return Ve=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},Ve(t)}function ss(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&wt(t,e)}function cs(t,e){return e&&(ls(e)==="object"||typeof e=="function")?e:as(t)}function wt(t,e){return wt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},wt(t,e)}var ls=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function fs(){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(t){return!1}}function ds(t){var e=fs();return function(){var n=Ve(t),u;if(e){var a=Ve(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return cs(this,u)}}var W=function(t){ss(r,t);var e=ds(r);function r(n){os(this,r);var u;return u=e.call(this,n),u.controlType="form",u.props=new Ct(n==null?void 0:n.props),u}return r}(se);function ps(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function hs(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function qe(t){return qe=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},qe(t)}function gs(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&St(t,e)}function ys(t,e){return e&&(ms(e)==="object"||typeof e=="function")?e:ps(t)}function St(t,e){return St=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},St(t,e)}var ms=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function vs(){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(t){return!1}}function Es(t){var e=vs();return function(){var n=qe(t),u;if(e){var a=qe(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return ys(this,u)}}var wn=function(t){gs(r,t);var e=Es(r);function r(n){return hs(this,r),e.call(this,n)}return r}(ie);function Ft(t,e){(e==null||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function bs(t){if(Array.isArray(t))return Ft(t)}function As(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Bs(){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 Sn(t){return bs(t)||As(t)||Cs(t)||Bs()}function Cs(t,e){if(!!t){if(typeof t=="string")return Ft(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor&&(r=t.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ft(t,e)}}function ws(t,e){var r;!((r=Object.getOwnPropertyDescriptors(t)[e])===null||r===void 0)&&r.enumerable&&Object.defineProperty(t,e,{enumerable:!1})}function Fn(t,e){t.parent=e,ws(t,"parent")}function Ss(t,e){t.forEach(function(r){Fn(r,e)})}var _n=Symbol("targetKey");function Dn(t){var e;return(e=t[_n])!==null&&e!==void 0?e:t}function In(t,e){return Ss(t,e),new Proxy(t,{get:function(n,u){for(var a=arguments.length,o=new Array(a>2?a-2:0),s=2;s<a;s++)o[s-2]=arguments[s];var c;return u===_n?n:(c=Reflect).get.apply(c,[n,u].concat(Sn(o)))},set:function(n,u,a){for(var o=arguments.length,s=new Array(o>3?o-3:0),c=3;c<o;c++)s[c-3]=arguments[c];var l;if(ae(t)&&u==="length"&&a===t.length)return!0;var d=(l=Reflect).set.apply(l,[n,u,a].concat(Sn(s)));return U(a)&&Fn(a,e),d}})}function Ue(t,e,r,n){var u=n!=null?n:t,a=In(Dn(r!=null?r:[]),u);Object.defineProperty(t,e,{get:function(){return a},set:function(s){a=In(Dn(s),u)},enumerable:!0})}function _t(t,e){(e==null||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function Fs(t){if(Array.isArray(t))return _t(t)}function Rn(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function $n(t,e,r,n,u,a,o){try{var s=t[a](o),c=s.value}catch(l){r(l);return}s.done?e(c):Promise.resolve(c).then(n,u)}function _s(t){return function(){var e=this,r=arguments;return new Promise(function(n,u){var a=t.apply(e,r);function o(c){$n(a,n,u,o,s,"next",c)}function s(c){$n(a,n,u,o,s,"throw",c)}o(void 0)})}}function Ds(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Is(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function ce(t,e,r){return typeof Reflect!="undefined"&&Reflect.get?ce=Reflect.get:ce=function(u,a,o){var s=Ns(u,a);if(!!s){var c=Object.getOwnPropertyDescriptor(s,a);return c.get?c.get.call(o):c.value}},ce(t,e,r||t)}function ee(t){return ee=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ee(t)}function Rs(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Dt(t,e)}function $s(t,e){return e!=null&&typeof Symbol!="undefined"&&e[Symbol.hasInstance]?!!e[Symbol.hasInstance](t):t instanceof e}function Ms(t){if(typeof Symbol!="undefined"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Os(){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 Ps(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{},n=Object.keys(r);typeof Object.getOwnPropertySymbols=="function"&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(u){return Object.getOwnPropertyDescriptor(r,u).enumerable}))),n.forEach(function(u){Is(t,u,r[u])})}return t}function Ls(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(u){return Object.getOwnPropertyDescriptor(t,u).enumerable})),r.push.apply(r,n)}return r}function xs(t,e){return e=e!=null?e:{},Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):Ls(Object(e)).forEach(function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r))}),t}function js(t,e){return e&&(Ts(e)==="object"||typeof e=="function")?e:Rn(t)}function Dt(t,e){return Dt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Dt(t,e)}function Ns(t,e){for(;!Object.prototype.hasOwnProperty.call(t,e)&&(t=ee(t),t!==null););return t}function Mn(t){return Fs(t)||Ms(t)||Vs(t)||Os()}var Ts=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function Vs(t,e){if(!!t){if(typeof t=="string")return _t(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);if(r==="Object"&&t.constructor&&(r=t.constructor.name),r==="Map"||r==="Set")return Array.from(r);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return _t(t,e)}}function qs(){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(t){return!1}}function Us(t){var e=qs();return function(){var n=ee(t),u;if(e){var a=ee(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return js(this,u)}}var ks=1e4,On=function(e){Rs(n,e);var r=Us(n);function n(a){Ds(this,n);var o;o=r.call(this,a),o.controlType="layout";var s=$s(this,n)?this.constructor:void 0,c=s.excludes,l=s.childrenMaxLength;return o.props=new wn(a==null?void 0:a.props),Ue(Rn(o),"children",a==null?void 0:a.children),o.excludes=_(c),o.childrenMaxLength=l,o}var u=n.prototype;return u.judgeExcludesChildren=function(o){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(o)},u.judgeJoinChildren=function(o){var s=this.judgeExcludesChildren(o);return s&&this.childrenMaxLength>this.children.length},u.validate=function(o,s){var c=this,l=this,d=function(){return ce(ee(n.prototype),"validate",c)};return _s(V.default.mark(function p(){return V.default.wrap(function(g){for(;;)switch(g.prev=g.next){case 0:return g.next=2,d().call(l,o,s);case 2:return g.next=4,Promise.all(l.children.map(function(E){return E.validate(o,s)}));case 4:return g.abrupt("return",!0);case 5:case"end":return g.stop()}},p)}))()},u.toDataBindModel=function(){var o=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,s=ce(ee(n.prototype),"toDataBindModel",this).call(this),c=s?[s]:[];return this.children.reduce(function(l,d){var p=d.toDataBindModel(o);if(Array.isArray(p)){var h=p.filter(function(g){return!!g});return Mn(l).concat(Mn(h))}return p&&l.push(p),l},c)},u.toSchema=function(){var o=ce(ee(n.prototype),"toSchema",this).call(this),s=this.children.map(function(c){var l=c.toSchema();return l});return xs(Ps({},o),{children:s})},n}(H);On.excludes=!1,On.childrenMaxLength=ks;function Pn(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Hs(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function ke(t){return ke=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},ke(t)}function Ws(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&It(t,e)}function zs(t,e){return e&&(Ks(e)==="object"||typeof e=="function")?e:Pn(t)}function It(t,e){return It=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},It(t,e)}var Ks=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};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(t){return!1}}function Gs(t){var e=Js();return function(){var n=ke(t),u;if(e){var a=ke(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return zs(this,u)}}var Xs=function(t){Ws(r,t);var e=Gs(r);function r(n){Hs(this,r);var u;return u=e.call(this,n),u.controlType="layout",u.props=new wn(n==null?void 0:n.props),Ue(Pn(u),"children",n==null?void 0:n.children),u}return r}(se);function Ln(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Qs(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function He(t){return He=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},He(t)}function Zs(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Rt(t,e)}function Ys(t,e){return e&&(ec(e)==="object"||typeof e=="function")?e:Ln(t)}function Rt(t,e){return Rt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Rt(t,e)}var ec=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function tc(){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(t){return!1}}function nc(t){var e=tc();return function(){var n=He(t),u;if(e){var a=He(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return Ys(this,u)}}var rc=function(t){Zs(r,t);var e=nc(r);function r(n,u){Qs(this,r);var a;return a=e.call(this,u),Ue(Ln(a),"headers",u==null?void 0:u.headers,n),a}return r}(ie);B.LIST;function $t(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function ic(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function xn(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function uc(t,e,r){return e&&xn(t.prototype,e),r&&xn(t,r),t}function We(t){return We=Object.setPrototypeOf?Object.getPrototypeOf:function(r){return r.__proto__||Object.getPrototypeOf(r)},We(t)}function ac(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&Mt(t,e)}function oc(t,e){return e&&(sc(e)==="object"||typeof e=="function")?e:$t(t)}function Mt(t,e){return Mt=Object.setPrototypeOf||function(n,u){return n.__proto__=u,n},Mt(t,e)}var sc=function(t){return t&&typeof Symbol!="undefined"&&t.constructor===Symbol?"symbol":typeof t};function cc(){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(t){return!1}}function lc(t){var e=cc();return function(){var n=We(t),u;if(e){var a=We(this).constructor;u=Reflect.construct(n,arguments,a)}else u=n.apply(this,arguments);return oc(this,u)}}var ze=function(t){ac(r,t);var e=lc(r);function r(n){ic(this,r);var u;return u=e.call(this,n),u.controlType="list",u.props=new rc($t(u),n==null?void 0:n.props),Ue($t(u),"children",n==null?void 0:n.children),u}return uc(r,[{key:"length",get:function(){return this.children.length}}]),r}(se);function Ke(t){return t.controlType===q.LAYOUT||t.controlType===q.WRAP||t.controlType===q.LIST||t.controlType===q.SEARCH}function Be(t,e){Array.isArray(t)&&t.map(r=>{if(r.type===w.SUBTABLE){const n=r.getChildrenFormControl();e(r,n)}else Ke(r)?Be(r==null?void 0:r.children,e):r instanceof W&&e(r)})}function Ce(t,e){Array.isArray(t)&&t.map(r=>{r.type===w.DATA_VIEW||r.type===w.SIMPLE_SEARCH?e(r):Ke(r)&&Ce(r==null?void 0:r.children,e)})}class Ot extends $e{constructor(e){super("Runtime"),this._flatInstances=[],this._instanceMap={};const{schema:r}=e;this._schema=r,this._instance=this.createControl(r,e.beforeCreateInstance),this.getFlatInstances()}getFlatInstances(){const e=[],r={};return jn(this._instance,n=>{e.push(n),r[n.id]||(r[n.id]=[]),r[n.id].push(n)}),this._flatInstances=e,this._instanceMap=r,this._flatInstances}get schema(){return this._schema}get instance(){return this._instance}get flatInstances(){return this._flatInstances}get instanceMap(){return this._instanceMap}get rules(){let e={};return Ce(this._instance,r=>{e[r.id]=r.rules[0],Be(r.children,n=>{(n instanceof W||n instanceof ze)&&fc(e[r.id].fields,n)})}),e}get antdRules(){let e={};return Ce(this._instance,r=>{e[r.id]=r.rules[0],Be(r.children,n=>{(n instanceof W||n instanceof ze)&&dc(e[r.id].fields,n)})}),e}}function jn(t,e){Array.isArray(t)?t.map(r=>{e(r),Ke(r)&&jn(r.children,e)}):e(t)}function Pt(t){return t.props.isHide?!0:t.parent===null?!1:Pt(t.parent)}function fc(t,e){if(!Pt(e)){if(e instanceof W)t[e.id]=e.rules;else if(e.type===w.SUBTABLE){t[e.id]=e.rules;const r={type:"array",fields:{}};e.children.forEach((n,u)=>{ne(n.children,a=>{r.fields&&(r.fields[u]||(r.fields[u]={type:"object",required:!0,fields:{}}),r.fields[u].fields[a.id]=a.rules)})}),t[e.id].push(r)}}}function dc(t,e){Pt(e)||(e instanceof W?t[e.id]=e.rules:e.type===w.SUBTABLE&&e.children.length&&(t[e.id]=[],e.children.forEach(r=>{let n={};ne(r.children,u=>{n[u.id]=u.rules}),t[e.id].push(n)})))}class pc{constructor(e){const{state:r,emptyState:n,databindMapping:u,controlidMapping:a}=hc(e.instance);this.emptyState=n,this.state=r,this.dataBindMapping=u,this.controlIdMapping=a}setState(e,r,n){const u=this.controlIdMapping[e];u!==void 0?this.state[u.dataView][e]=r:n!==void 0?Object.keys(this.controlIdMapping).map(a=>{const o=this.controlIdMapping[a].dataView,s=this.controlIdMapping[a].children;s!==void 0&&Object.keys(s).map(c=>{c===e&&(this.state[o][a][n][e]=r)})}):this.state[e]=r}getState(e,r){if(this.state[e]!==void 0)return this.state[e];{const u=this.controlIdMapping[e];if(u!==void 0)return this.state[u.dataView][e];if(r!==void 0){let a;return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{var d;l===e&&(a=(d=this.state[s][o][r])==null?void 0:d[e])})}),a}else{let a=[];return Object.keys(this.controlIdMapping).map(o=>{const s=this.controlIdMapping[o].dataView,c=this.controlIdMapping[o].children;c!==void 0&&Object.keys(c).map(l=>{l===e&&this.state[s][o].map(d=>{a.push(d[e])})})}),a}}}getEmptyState(e){if(this.emptyState[e]!==void 0)return this.emptyState[e];{const n=this.controlIdMapping[e];if(n!==void 0)return this.emptyState[n.dataView][e];{let u;return Object.keys(this.controlIdMapping).map(a=>{const o=this.controlIdMapping[a].dataView,s=this.controlIdMapping[a].children;s!==void 0&&Object.keys(s).map(c=>{c===e&&(u=this.emptyState[o][a][e])})}),u}}}getDataBind(e){let r=this.controlIdMapping[e];if(r)return r.dataBind;e:for(let n in this.controlIdMapping){const u=this.controlIdMapping[n];if(u.children){for(let a in u.children)if(a===e){r=u.children[a];break e}}}return r==null?void 0:r.dataBind}}function hc(t){let e={},r={},n={},u={};return Ce(t,a=>{const o=a.id,s={},c={};Be([a],(l,d)=>{gc(s,c,l),yc(n,o,l),mc(u,o,l)}),e[o]=s,r[o]=c}),{state:e,emptyState:r,databindMapping:n,controlidMapping:u}}function gc(t,e,r){var n;if(r instanceof W)t[r.id]=_(r.props.defaultValue),e[r.id]=_(r.props.defaultValue);else{const u={};ne(r.props.headers,a=>{u[a.id]=_(a.props.defaultValue)}),t[r.id]=new Array((n=r.props.defaultRows)!=null?n:1).fill(0).map(()=>_(u)),e[r.id]=u}}function yc(t,e,r){if(r instanceof W)r.props.dataBind instanceof Z?Object.keys(r.props.dataBind).map(n=>{const u=r.props.dataBind,a=u[n].dataCode;a!==void 0&&(t[a]===void 0&&(t[a]={controlId:r.id,fields:[],dataViewId:e}),t[a].fields.push({fieldCode:u[n].fieldCode,controlId:r.id,dataBind:u,dataViewId:[e]}))}):(t[r.props.dataBind.dataCode]===void 0&&(t[r.props.dataBind.dataCode]={controlId:e,fields:[],dataViewId:e}),t[r.props.dataBind.dataCode].fields.push({fieldCode:r.props.dataBind.fieldCode,controlId:r.id,dataBind:r.props.dataBind,dataViewId:[e]}));else{if(r.props.datasourceBind.dataCode===""){Q(`datasourceBind.dataCode is empty! maybe in preview mode, control:${r.id} type:${r.type}`);return}t[r.props.datasourceBind.dataCode]={controlId:r.id,fields:[],dataViewId:e};const n=r.id;ne(r.props.headers,u=>{u.props.dataBind instanceof Z?Object.keys(u.props.dataBind).map(a=>{const o=u.props.dataBind,s=o[a].dataCode;t[s].fields.push({fieldCode:o[a].fieldCode,controlId:u.id,dataBind:o,dataViewId:[e,n]})}):t[u.props.dataBind.dataCode].fields.push({fieldCode:u.props.dataBind.fieldCode,controlId:u.id,dataBind:u.props.dataBind,dataViewId:[e,n]})})}}function mc(t,e,r){r instanceof W?t[r.id]={dataBind:r.props.dataBind,options:[],dataView:e}:r.type===w.SUBTABLE&&(t[r.id]={dataBind:new me({dataCode:r.props.datasourceBind.dataCode,fieldCode:""}),dataView:e,children:{},options:[]},ne(r.props.headers,n=>{var u,a;Object.assign((a=(u=t[r.id])==null?void 0:u.children)!=null?a:{},{[n.id]:{dataBind:n.props.dataBind}})}))}const Nn=["splice","push","shift","pop","unshift","reverse"],Lt=Symbol("__engineProxy__"),xt=Symbol("__engineTarget__"),Tn=Symbol("__engineArrayBeforeSetCallbackFlag__"),Vn=Symbol("__engineProxyThisKey__"),T={type:"",args:[],callback:qn};function qn(){}Bc();function vc(t,e,r,n,u){if(T.type){T.callback=u.bind(null,t,n);return}const a=Number(e);if(a>t.length){X(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${Nn.join(",")} for array operations`);return}if(!(Number.isNaN(a)&&e!=="length"))if(e==="length"){const s=r,c=t.length;if(s>t.length){X("Do not directly modify the length of the array data, please add new rows");return}return s===t.length?void 0:()=>u.call(null,t,n,"splice",[s,c-s])}else return a===t.length?()=>u.call(null,t,n,"push",[r]):()=>u.call(null,t,n,"splice",[a,1,r])}function Ec(t,e,r){return{__engineProxy__:!0,get(n,u,a){return u===Lt?!0:u===xt?n:Array.isArray(n)&&u===Tn?r:u===Vn?t:Reflect.get(n,u,a)},set(n,u,a,o){var h;let s=a;const c=n[u],l=t===""?u:t+"."+u;function d(g){if(typeof g=="object"&&g!==null)return g[Lt]!==!0?Je(g,e,r,l):Je(g[xt],e,r,l)}s=(h=d(a))!=null?h:s;let p;if(Array.isArray(n)){const g=vc(n,u,a,t,e);p=Reflect.set(n,u,s,o),g&&g()}else{try{let g=s;if(s=r.call(null,n,l,s,c),g!==s){const E=d(s);E!==void 0&&(s=E)}}catch(g){return De(`${l} set error ${g}`),!0}p=Reflect.set(n,u,s,o),e.call(null,n,l,a,c)}return p}}}function Je(t,e,r,n=""){if(Object.isFrozen(t))return t;for(let u in t){const a=n===""?u:n+"."+u,o=t[u];typeof o=="object"&&o!==null&&(t[u]=Je(o,e,r,a))}return new Proxy(t,Ec(n,e,r))}function Un(t){const e=[];return t.forEach(r=>{e.push(r),r.controlType==="layout"&&e.push(...Un(r.children))}),e}function jt(t,e){if(e==="")return;const r=e.split(".");if(r.length===0)return;const n=r[0],u=r.slice(1),a=t.find(o=>o.id===n);return u.length===0?a:u.reduce((o,s)=>{var d,p;const c=Number(s);if(Number.isNaN(c)){const h=o!=null&&o.children?Un(o.children):void 0,g=h==null?void 0:h.find(E=>E.id===s);return g||(o instanceof W?o:void 0)}else return(p=(d=o==null?void 0:o.children)==null?void 0:d[c])!=null?p:o},a)}function bc(t,e){return["push","unshift"].includes(t)?e:t==="splice"?e.slice(2):[]}function Ac(t,e,r){if(["push","unshift"].includes(t))return r;if(t==="splice")return e.slice(0,2).concat(r)}function Bc(){Nn.forEach(t=>{const e=Array.prototype[t];Array.prototype[t]=function(...r){var n;if(this[Lt]){let u;const a=bc(t,r);if(a.length){const o=(n=this[Tn])==null?void 0:n.call(this,this[xt],this[Vn],a),s=Ac(t,r,o);T.type=t,T.args=s,u=e.apply(this,s)}else T.type=t,T.args=r,u=e.apply(this,r);return typeof T.callback=="function"&&T.callback(t,r,u),T.type="",T.args=[],T.callback=qn,u}else return e.apply(this,r)}})}class Cc{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(e,r,...n){return J(this,null,function*(){const u=this.actionMap.get(e);if(!!u)try{return yield u.func.call(null,r,...n)}catch(a){De(`${u.id} Exception during calling action: ${a}`)}})}addAction(e,r){this.actionMap.has(e)&&X("duplicated action key");const n=new wc(e,r);this.actionMap.set(e,n)}}class wc{constructor(e,r){this.id="",this.id=e,this.func=r}}class Sc{constructor(e){this._dataStore=new Map,this.executer=e}add(e,r){this._dataStore.set(e,r)}get(e){let r=this._dataStore.get(e);return _(r)}remove(e){this._dataStore.delete(e)}getRemoteData(e){return J(this,null,function*(){return this.executer===void 0?(De("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(e)})}}class te{}class we extends te{validate(e){return L(e)}transform(e){if(e==null)return"";if(!U(e)&&!Zt(e))return String(e);if(ka(e))return JSON.stringify(e);throw`${e} is not a string`}}class Nt extends te{validate(e){return Ie(e)||e===""}transform(e){if(e==null)return"";const r=!U(e)&&!Zt(e)?Number(e):void 0;if(!Number.isNaN(r)&&r!==void 0)return r;throw`${e} is not a number`}}class Fc extends te{validate(e){return Ha(e)}transform(e){if(e==null)return[];function r(n){return n.map(u=>u?String(u):"")}if(ae(e))return r(e);if(L(e)&&Yt(e))try{const n=JSON.parse(e);if(Array.isArray(n))return r(n)}catch(n){}return[String(e)]}}class _c extends te{validate(e){return Wa(e)}transform(e){if(e==null)return[];function r(u){return u.map(a=>!a&&a!==0?"":Number(a)).filter(a=>a===""||!Number.isNaN(a))}if(ae(e))return r(e);if(L(e)&&Yt(e))try{const u=JSON.parse(e);if(ae(u))return r(u)}catch(u){}const n=Number(e);if(Number.isNaN(n))throw`${e} is not a number array`;return[n]}}class Dc extends te{validate(e){return e instanceof Me||U(e)&&"amount"in e&&Ie(e.amount)&&"currency"in e&&L(e.currency)}transform(e,r){if(e==null||e==="")return new Me({currency:r==null?void 0:r.currency});let n;if(U(e)&&(n=new Me($($({},r),e))),L(e)&&Re(e))try{const u=JSON.parse(e);n=new Me($($({},r),u))}catch(u){}if(n){const u=new Nt,a=new we;return u.validate(n.amount)||(n.amount=u.transform(n.amount)),a.validate(n.currency)||(n.currency=a.transform(n.currency)),n}throw`${e} is not a { amount: number, currency: string } object`}}class Ic extends te{validate(e){return e instanceof Oe||U(e)&&"min"in e&&L(e.min)&&"max"in e&&L(e.max)}transform(e,r){if(e==null||e==="")return new Oe;let n;if(U(e)&&(n=new Oe($($({},r),e))),L(e)&&Re(e))try{const u=JSON.parse(e);n=new Oe($($({},r),u))}catch(u){}if(n){const u=new we;return u.validate(n.min)||(n.min=u.transform(n.min)),u.validate(n.max)||(n.max=u.transform(n.max)),n}throw`${e} is not a { min: string, max: string } object`}}class Rc extends te{validate(e){return e instanceof Le||U(e)&&"result"in e&&Ie(e.result)&&"unit"in e&&L(e.unit)}transform(e,r){if(e==null||e==="")return new Le({unit:r==null?void 0:r.unit});let n;if(U(e)&&(n=new Le($($({},r),e))),L(e)&&Re(e))try{const u=JSON.parse(e);n=new Le($($({},r),u))}catch(u){}if(n){const u=new Nt,a=new we;return u.validate(n.result)||(n.result=u.transform(n.result)),a.validate(n.unit)||(n.unit=a.transform(n.unit)),n}throw`${e} is not a { result: string, unit: string } object`}}class $c extends te{validate(e){return e instanceof Pe}transform(e,r){if(e==null||e==="")return new Pe;let n;if(U(e)&&(n=new Pe($($({},r),rt.exports.camelizeKeys(e)))),L(e)&&Re(e))try{const u=JSON.parse(e);n=new Pe($($({},r),rt.exports.camelizeKeys(u)))}catch(u){}if(n){const u=new we;return u.validate(n.city)||(n.city=u.transform(n.city)),u.validate(n.district)||(n.district=u.transform(n.district)),u.validate(n.province)||(n.province=u.transform(n.province)),n}throw`${e} is not a { city: string, district: string, province: string } object`}}class Mc{static getValueChecker(e){let r;switch(e){case B.VARCHAR:case B.TIMESTAMP:case B.TEXT:case B.RELATION:case B.AUTO_NUMBER:r=new we;break;case B.DECIMAL:r=new Nt;break;case B.EMPLOYEES:case B.DEPARTMENTS:case B.IMAGE:case B.FILE:case B.ARRAY:r=new Fc;break;case B.MONEY:r=new Dc;break;case B.TIMESCOPE:r=new Ic;break;case B.CALC:r=new Rc;break;case B.DECIMAL_RANGE:r=new _c;break;case B.ADDRESS:r=new $c;break}return r}}function Oc(t){if(["min","max","currency","unit"].includes(t))return B.VARCHAR;if(["result","amount"].includes(t))return B.DECIMAL}function kn(t,e,r,n){var o;let u=(o=Oc(e))!=null?o:t,a=Mc.getValueChecker(u);if(!a||a.validate(r))return r;try{const s=a.transform(r,n);return s!==void 0?s:r}catch(s){throw`${e} ${s}`}}function Pc(t,e,r){return Object.entries(t).reduce((n,[u,a])=>{const o=e[u];return n[u]=kn(a,u,o,r[u]),n},Object.assign({},e))}typeof window!="undefined"&&(window.engines={});let le=null,Se="";class Tt extends tn{constructor(e){super(),this.isMounted=!1,this.id=Qe(8),this.__pluginsApplied=!1,this.actionManager=new Cc,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(e);const{autoMount:r=!0,schema:n,beforeCreateInstance:u,externalParams:a,language:o=Ut,debug:s=!1}=this.$options;N.setLocale(o),this.debug=s,this.runtime=new Ot({schema:n,beforeCreateInstance:u}),this.externalParams=a,this.store=new pc({instance:this.runtime.instance}),this.debugLog("engine is Instantiation complete"),r&&this.mount()}debugLog(...e){this.debug&&tt(...e)}use(e){return this.__pluginsApplied||this.__plugins.push(e),this}registerControl(...e){return this.runtime.register(...e),this}static register(...e){return Ot.register(...e)}static judgeControlIsRegistered(e){return Ot.staticRegisteredTypes.has(e.Runtime.controlType)}mount(){this.debugLog("engine\u7684mount\u65B9\u6CD5\u5F00\u59CB\u8C03\u7528");const{plugins:e=[]}=this.$options;this._handlerProxyState(),this.__plugins=e,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=Je(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(e,r,n,u){const a=jt(this.runtime.flatInstances,r);if(!a)return n;if(this.assertInstance(a,w.SUBTABLE)){const c=a.props.headers.reduce((l,d)=>{const p=d.children[0];return p&&p instanceof W&&(l[p.id]=p.fieldType),l},{});return n===null?[]:n.map(l=>Pc(c,l,this.getEmptyState(a.id)))}const o=r.split("."),s=o[o.length-1];try{return kn(a.fieldType,s,n,u)}catch(c){throw Q(`the id=${a.id}'s instance setState error, %o ${c}.`,n),c}}_proxyStateCallback(e,r,n,u,a){Array.isArray(e)?this._handlerArrayUpdate(e,r,n,u,a):this._handlerObjectUpdate(e,r,n,u)}_handlerArrayUpdate(e,r,n,u,a){const o=jt(this.runtime.flatInstances,r);if(!(o instanceof ze))return;const s=h=>{const g=[];for(let E=0;E<h;E++){const y=this.listControlCreateRow(o,"subtable-row");y&&g.push(y)}return g},c=le;let l=[],d=[],p=[];if(n&&u){switch(n){case"push":case"unshift":const h=u.length;l=s(h),d=u,o.children[n](...l),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const g=u.length-2,E=u.slice(2);l=s(g),d=E;const y=u[0],b=u[1];o.children[n](y,b,...l),this.runtime.getFlatInstances()}else o.children[n](...u),this.runtime.getFlatInstances();break;default:o.children[n](...u),this.runtime.getFlatInstances();break}n==="splice"?p=a:["pop","shift"].includes(n)&&(p=[a]),this.emit("list-change",{instance:o,value:this.getState(o.id),options:Object.assign({},c,{changed:l,data:d,deleted:p!=null?p:[]})}),le=null}}_handlerObjectUpdate(e,r,n,u){const a=jt(this.runtime.flatInstances,r);if(!a)return;const o=this.getInstanceRowIndex(a),s=le||{};if(a instanceof ze){a.children.length=0;const c=n;let l=[];for(let d=0;d<c.length;d++){const p=this.listControlCreateRow(a,"subtable-row");p&&l.push(p)}a.children.push(...l),this.runtime.getFlatInstances(),this.emit("list-change",{instance:a,value:n,options:qt($({},s),{changed:l,data:c,deleted:u!=null?u:[]})})}else this.emit("change",{instance:a,value:this.getState(a.id,o),rowIndex:o,options:qt($({},s),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(e=>{var r;try{Se=(r=e.pluginName)!=null?r:e.constructor.name,e.apply(this)}catch(n){X(`${Se} Plugin apply Error
2
- ${n}`)}finally{Se=""}}),this.__pluginsApplied=!0)}listControlCreateRow(e,r){const n=this.runtime.createControlInstance(r);if(!!n){if(n instanceof Xs){const u=_(e.props.headers),a=this.createControl(u);n.children.push(...a)}return n}}listControlAddRow(e,r="subtable-row"){const n=this.listControlCreateRow(e,r);!n||e.children.push(n)}emit(e,r){return J(this,null,function*(){if(e==="engine-mounted"){if(this.isMounted)return Q("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const o=[...this._jobTasks];yield Promise.all(o),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let n,u;this.isMounted||(u=new Promise(o=>{n=o}),this._jobTasks.push(u));const a=yield Gn(Tt.prototype,this,"emit").call(this,e,r);return n&&u&&(n(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),a})}on(e,r){return Se&&(r.applyingPluginName=Se),super.on(e,r)}createControl(...e){return this.runtime.createControl(...e)}createInstance(e,r){return this.runtime.createControlInstance(e,r)}schemaEvent(e,r){this.emit(e,r)}updateInstanceProps(e,r,n,u){return this.setInstance(e,r,n,u)}getRules(e){var r;return e===void 0?this.runtime.rules:(r=this.runtime.rules[e])==null?void 0:r.fields}getAntdRules(e){var r;return e===void 0?this.runtime.antdRules:(r=this.runtime.antdRules[e])==null?void 0:r.fields}getState(e,r){return e===void 0?this.store.state:this.store.getState(e,r)}getEmptyState(e){return _(e===void 0?this.store.emptyState:this.store.getEmptyState(e))}setPayloadOptions(e){le=e}setState(e,r,n,u){le=u,this.debugLog("[%o]: \u89E6\u53D1setState, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o, options=%o",e,r,n,u),this.store.setState(e,r,n),this.debugLog("[%o]: setState\u5B8C\u6210, \u4FEE\u6539\u7684\u503C\u4E3A%o, rowIndex=%o",e,r,n),le=null}setStates(e,r,n){let u=e;Object.keys(u).forEach(a=>{Object.entries(this.store.controlIdMapping).forEach(([o,s])=>{if(s.dataView===a){const c=u[a][o];c!==void 0&&this.setState(o,c,r,n)}else(o===a||s.children&&s.children[a])&&u[a]!==void 0&&this.setState(a,u[a],r,n)})})}getField(e,r,n){if(!r){const c=this.getDataBindMapping(e);if(c){const{controlId:l}=c;return this.getState(l)}return}const u=this.getDataBindMapping(e,r);if(!u)return;const{dataBind:a,controlId:o}=u,s=this.getState(o,n);return a instanceof Z?Object.entries(a).reduce((c,[l,d])=>d.fieldCode===r?c[l]:c,s):s}setField(e,r,n,u,a){var l;const o=this.getDataBindMapping(e,r);if(!o)return;const{dataBind:s,controlId:c}=o;if(s instanceof Z){const d=(l=_(this.getState(c,u)))!=null?l:this.getEmptyState(c),p=Object.entries(s).reduce((h,[g,E])=>(E.fieldCode===r&&(h[g]=n),h),d);this.setState(c,p,u,a)}else this.setState(c,n,u,a)}setFields(e,r,n,u){const a=this.getDataBindMapping(e);if(!a)return;let o=[];a.fields.forEach(s=>{var p;const{dataBind:c,controlId:l,fieldCode:d}=s;if(!o.includes(d)&&!!Object.hasOwnProperty.call(r,d))if(c instanceof Z){const h=(p=_(this.getState(l,n)))!=null?p:this.getEmptyState(l),g=Object.entries(c).reduce((E,[y,b])=>{o.push(b.fieldCode);const f=r[b.fieldCode];return f!==void 0&&(E[y]=f),E},h);this.setState(s.controlId,g,n,u)}else this.setState(l,r[d],n,u)})}buildFields(e,r){const n=this.getDataBindMapping(e);if(!n)return;let u=[];const a={};return n.fields.forEach(o=>{const{dataBind:s,controlId:c,fieldCode:l}=o;if(!u.includes(l)&&!!Object.hasOwnProperty.call(r,l))if(s instanceof Z){const d=this.getEmptyState(c);a[o.controlId]=Object.entries(s).reduce((p,[h,g])=>{u.push(g.fieldCode);const E=r[g.fieldCode];return E!==void 0&&(p[h]=E),p},d)}else a[c]=r[l]}),a}setData(e,r){this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\uFF0C\u53C2\u6570\u4E3A%o\uFF0C%o\u3002",e,r);let n={};Object.keys(e).map(u=>{const a=e[u];if(Array.isArray(a))a.map(o=>{const s=this.getDataBindMapping(u);if(!s)return;let c=_(this.store.emptyState[s.dataViewId][s.controlId]),l=[];Object.keys(o).map(d=>{var h,g,E;if(l.includes(d))return;const p=(g=(h=this.store.dataBindMapping[u])==null?void 0:h.fields)==null?void 0:g.find(y=>y.fieldCode===d);if(p){if(p.dataBind instanceof me&&o[d]!==void 0)c[p.controlId]=o[d];else if(p.dataBind instanceof Z){let y=_((E=this.getEmptyState(p.controlId))!=null?E:{});Object.keys(p.dataBind).map(b=>{const f=p.dataBind[b];o[f.fieldCode]!==void 0&&(y[b]=o[f.fieldCode]),l.push(f.fieldCode)}),c[p.controlId]=y}}}),n[s.dataViewId]||(n[s.dataViewId]={}),n[s.dataViewId][s.controlId]||(n[s.dataViewId][s.controlId]=[]),n[s.dataViewId][s.controlId].push(c)});else if(a){let o=[];Object.keys(a).map(s=>{var l;if(o.includes(s))return;const c=this.getDataBindMapping(u,s);if(c){if(n[c.dataViewId[0]]||(n[c.dataViewId[0]]={}),c.dataBind instanceof me&&a[s]!==void 0)n[c.dataViewId[0]][c.controlId]=a[s];else if(c.dataBind instanceof Z){let d=_((l=this.getEmptyState(c.controlId))!=null?l:{});Object.keys(c.dataBind).map(p=>{const h=c.dataBind[p];a[h.fieldCode]!==void 0&&(d[p]=a[h.fieldCode]),o.push(h.fieldCode)}),n[c.dataViewId[0]][c.controlId]=d}}})}}),this.debugLog("engine setData\u65B9\u6CD5\u6570\u636E\u7EC4\u5408\u5B8C\u6210\uFF0C\u53C2\u6570\u4E3A%o\u3002",n),this.setStates(n,void 0,r),this.debugLog("engine setData\u65B9\u6CD5\u6267\u884C\u5B8C\u6210\u3002")}getDataBind(e){return this.store.getDataBind(e)}getInstance(e,r){const n=this.getInstances(e,r===-1);if(n.length>0)return r!==void 0?r===-1?n[0]:n[r]:n[0]}getInstances(e,r=!1){var u;if(e===void 0)return this.runtime.flatInstances;const n=this.runtime.flatInstances.filter(a=>a.id===e);if(r)if(n.length){const a=n[0];if(this.getInstanceRowIndex(a)!==void 0){const o=this.getInstanceInSubtableHeader(a);o&&n.unshift(o)}}else{const a=this.getControlIdMapping(),[o]=(u=Object.entries(a).find(([s,c])=>c.children&&e in c.children))!=null?u:[];if(o){const c=this.getInstance(o).props.headers.find(l=>l.children.find(d=>d.id===e));if(c){const l=c.children.find(d=>d.id===e);l&&n.unshift(l)}}}return n}setInstance(e,r,n,u){try{let a;if(typeof e=="string"?a=this.getInstance(e,u):a=e,!a)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",a.id,a,r,n),Qt(a.props,r,n),this.schemaEvent("schema-change",{instance:a,props:r,value:n})}catch(a){throw a}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(e,r){if(!e&&!r)return this.store.dataBindMapping;const n=this.store.dataBindMapping[e];if(!n){Q(`No corresponding dataCode=${e} was found`);return}if(!r)return n;const u=n.fields.find(a=>a.fieldCode===r);if(!u){Q(`No corresponding fieldCode=${r} was found`);return}return u}getAction(){return this.actionManager}initDataManager(e){this.dataManager=new Sc(e)}getDataManager(){return this.dataManager}assertInstance(e,r){return L(r)?e.type===r:r.includes(e.type)}getInstanceRowIndex(e){if(!e.parent)return;let r;if(this.assertInstance(e.parent,w.SUBTABLE))if(this.assertInstance(e,w.SUBTABLE_COLUMN))r=-1;else{const n=e.parent.children.findIndex(u=>u===e);n>-1&&(r=n)}else r=this.getInstanceRowIndex(e.parent);return r}getInstanceParentControl(e,r){if(!!e.parent)return this.assertInstance(e.parent,r)?e.parent:this.getInstanceParentControl(e.parent,r)}getInstanceInSubtableHeader(e){const r=this.getInstanceRowIndex(e);if(r===void 0)return;if(r===-1)return e;const n=this.assertInstance(e,w.SUBTABLE_COLUMN)?e:this.getInstanceParentControl(e,w.SUBTABLE_COLUMN);if(!n)return;const a=this.getInstanceParentControl(e,w.SUBTABLE).props.headers.find(o=>o.id===n.id);if(!!a)return a.children.find(o=>o.id===e.id)}setControlConfig(...e){return this.runtime.registerControlConfig(...e)}getControlConfig(e){return this.runtime.getControlConfig(e)}}class Lc{}class xc{constructor(e){this.config=e}apply(e){this.engine=e;const r=this.config;if(!r)return;const n=Hn(r,e);if(!n)return;const u=e.getAction();for(let[a,o]of Object.entries(n.funcMap))u.addAction(a,o)}}function Hn(t,e){if(!t.module||!t.module.compiled)return;const r=t.module.compiled,n={exports:{ctx:e,utils:e.getAction().actionUtils}};try{new Function("module","exports",r).call(n,n,n.exports)}catch(o){X(o.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&X("fail to parse the module")}const u={},a={};for(const[o,s]of Object.entries(n.exports))typeof s=="function"?u[o]=s:a[o]=s;return{funcMap:u,variables:a}}const jc={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class Nc{constructor(e){this.config=e}apply(e){this.engine=e,Object.entries(jc).forEach(([r,n])=>{e.on(r,u=>J(this,null,function*(){const a=yield this.callLifecycleEvent(n,u);return a.includes(!1)?!1:a}))})}callLifecycleEvent(e,r){return J(this,null,function*(){const n=this.config;return!n||!Array.isArray(n[e])?[]:yield Promise.all(n[e].map(a=>J(this,null,function*(){return yield this.engine.getAction().execAction(a,r)})))})}}class Tc{constructor(e){this.config=e}apply(e){this.engine=e,nn.events.forEach(r=>{r.code&&r.key&&this.engineAddEventListener(r.code,r.key)})}engineAddEventListener(e,r){this.engine.on(e,n=>J(this,null,function*(){if(!(e==="change"&&!this.engine.isMounted)&&n.instance!==void 0)return yield this.callControlEvent(r,n)}))}callControlEvent(e,r){return J(this,null,function*(){const n=this.config[r.instance.id];if(!n||!Array.isArray(n[e]))return[];const u=yield Promise.all(n[e].map(a=>J(this,null,function*(){return yield this.engine.getAction().execAction(a,r)})));return u.includes(!1)?!1:u})}}class Vc{constructor(e){this.calcControls=[],this.dependenciesTriggerMap=new Map,this.hideNotRememberControlIds=[],this.dontHasPermissionControlIds=[],this.cacheComputedResult={},this.options=e,this.getDontHasPermissionControlIds(),this.getNeedHideRememberControlIds()}getNeedHideRememberControlIds(){var e;!((e=this.options)!=null&&e.displayBoList)||(this.hideNotRememberControlIds=this.options.displayBoList.reduce((r,n)=>(n.is_remember||r.push(...n.hide_controls),r),[]))}getDontHasPermissionControlIds(){var e;!((e=this.options)!=null&&e.behavior)||(this.dontHasPermissionControlIds=this.options.behavior.reduce((r,n)=>(n.ctrlBehavior===1&&r.push(n.ctrlId),r),[]))}controlNeedComputedValue(e){if(!e)return!1;const r=this.getControlIsHide(e);return!(this.dontHasPermissionControlIds.includes(e.id)&&r||this.hideNotRememberControlIds.includes(e.id)&&r)}getControlIsHide(e){return e.props.isHide?!0:e.parent===null?!1:this.getControlIsHide(e.parent)}apply(e){this.engine=e,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(e=>this.computedCalcValue(e))}getAllCalcControl(){this.calcControls=this.engine.runtime.flatInstances.filter(e=>e.type===w.CALC)}getCalcDependencies(){this.calcControls.forEach(e=>{const{scriptEcho:r}=e.props;r.forEach(n=>{(n.type===j.VariableInMainTable||n.type===j.VariableInCurrentSubTable||n.type===j.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(n.id,e),n.type===j.VariableInOtherSubTable&&n.subTableId&&this.setDependenciesTriggerMapItem(n.subTableId,e)})})}setDependenciesTriggerMapItem(e,r){this.dependenciesTriggerMap.has(e)||this.dependenciesTriggerMap.set(e,[]);const n=this.dependenciesTriggerMap.get(e);n.includes(r)||n.push(r)}getCalcControlsFromSubtableRows(e){return e.reduce((r,n)=>(n.children.forEach(u=>{const a=u.children[0];a&&this.engine.assertInstance(a,w.CALC)&&r.push(a)}),r),[])}watchSchemaHideChange(){this.engine.on("schema-change",e=>{var r;e.props==="isHide"&&((r=this.dependenciesTriggerMap.get(e.instance.id))!=null?r:[]).forEach(u=>{this.computedCalcValue(u)})})}watchSubtableChange(){this.engine.on("list-change",e=>{var a,o,s;this.resetDependencies();const r=(o=(a=e.options)==null?void 0:a.changed)!=null?o:[];this.getCalcControlsFromSubtableRows(r).forEach(c=>{this.computedCalcValue(c)}),((s=this.dependenciesTriggerMap.get(e.instance.id))!=null?s:[]).forEach(c=>{this.computedCalcValue(c)})})}watchControlChange(){this.engine.on("change",e=>{var u;const{instance:r}=e;if(!this.dependenciesTriggerMap.has(r.id))return;const n=(u=this.dependenciesTriggerMap.get(r.id))!=null?u:[];e.rowIndex!==void 0&&e.rowIndex>-1?n.forEach(a=>{this.controlInSubtable(a)&&this.engine.getInstanceRowIndex(a)!==e.rowIndex||this.computedCalcValue(a)}):n.forEach(a=>{this.computedCalcValue(a)})})}controlInSubtable(e){var r;return((r=e.parent)==null?void 0:r.type)===w.SUBTABLE_COLUMN}computedCalcValue(e){var c;const r=e.props.scriptEcho;if(!r||r.length===0)return;const n=r.reduce((l,d)=>{if(d.type===j.Operator||d.type===j.Number)return l+d.name;let p=0,h;switch(d.type){case j.VariableInMainTable:{const g=this.getNumberValue(this.engine.getState(d.id));h=this.engine.getInstance(d.id),p=Number(g);break}case j.VariableInCurrentSubTable:{const g=this.engine.getInstanceRowIndex(e);h=this.engine.getInstance(d.id,g);const E=this.engine.getState(d.id,g),y=this.getNumberValue(E);p=Number(y);break}case j.VariableInOtherSubTable:{const g=this.engine.getState(d.id),E=Array.isArray(g)?g.map(b=>this.getNumberValue(b)):[],y=this.getAggregateTypeValue(E,d.aggregateType);h=this.engine.getInstance(d.subTableId),p=Number(y);break}}return!Number.isNaN(p)&&this.controlNeedComputedValue(h)?l+=`(${p})`:l+=0,l},"");let u;this.cacheComputedResult[n]!==void 0?u=this.cacheComputedResult[n]:(u=new Function(`return ${n}`)(),this.cacheComputedResult[n]=u);let a;if(this.controlInSubtable(e)&&(a=this.engine.getInstanceRowIndex(e),a===void 0))return;const o=this.engine.getState(e.id,a),s=!u||u===1/0||u===-1/0?0:e.props.precision===""?u:Number(u.toFixed(e.props.precision));s!==(o==null?void 0:o.result)&&this.engine.setState(e.id,{result:s,unit:(c=o==null?void 0:o.unit)!=null?c:""},a)}getNumberValue(e){if(typeof e=="object"&&e){if("result"in e)return e.result;if("amount"in e)return e.amount}return typeof e=="number"?e:0}getAggregateTypeValue(e,r){if(!r||!e||!e.length)return 0;switch(r){case ue.MAX:return Math.max(...e);case ue.MIN:return Math.min(...e);case ue.SUM:return e.reduce((n,u)=>n+u);case ue.AVG:return e.reduce((n,u)=>n+u)/e.length}}}class qc{constructor(e){this.config=e}apply(e){var a,o;this.engine=e;const r=(o=(a=this.config)==null?void 0:a.source)!=null?o:"";let n=document.createElement("style");n.className="edit-css",n.type="text/css",n.innerHTML=r,document.querySelector("head").appendChild(n)}}C.CalcPlugin=Vc,C.ControlsEventPlugin=Tc,C.ES6ModulePlugin=xc,C.Engine=Tt,C.LifecycleEventPlugin=Nc,C.Plugin=Lc,C.StylePlugin=qc,C.hasChildrenControl=Ke,C.loopDataViewControl=Ce,C.loopFormControl=Be,C.parseModule=Hn,Object.defineProperty(C,"__esModule",{value:!0})});
1
+ var _D=Object.defineProperty,ID=Object.defineProperties;var OD=Object.getOwnPropertyDescriptors;var so=Object.getOwnPropertySymbols,RD=Object.getPrototypeOf,xD=Object.prototype.hasOwnProperty,$D=Object.prototype.propertyIsEnumerable,PD=Reflect.get;var Tn=Math.pow,co=(X,te,re)=>te in X?_D(X,te,{enumerable:!0,configurable:!0,writable:!0,value:re}):X[te]=re,ae=(X,te)=>{for(var re in te||(te={}))xD.call(te,re)&&co(X,re,te[re]);if(so)for(var re of so(te))$D.call(te,re)&&co(X,re,te[re]);return X},Xr=(X,te)=>ID(X,OD(te));var fo=(X,te,re)=>PD(RD(X),re,te);var Xe=(X,te,re)=>new Promise((Kt,Re)=>{var Ln=Je=>{try{Ot(re.next(Je))}catch(Rt){Re(Rt)}},jn=Je=>{try{Ot(re.throw(Je))}catch(Rt){Re(Rt)}},Ot=Je=>Je.done?Kt(Je.value):Promise.resolve(Je.value).then(Ln,jn);Ot((re=re.apply(X,te)).next())});(function(X,te){typeof exports=="object"&&typeof module!="undefined"?te(exports,require("regenerator-runtime"),require("crypto")):typeof define=="function"&&define.amd?define(["exports","regenerator-runtime","crypto"],te):(X=typeof globalThis!="undefined"?globalThis:X||self,te(X.modelDrivenEngine={},X.regeneratorRuntime,X.require$$0))})(this,function(X,te,re){"use strict";function Kt(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var Re=Kt(te),Ln=Kt(re),jn="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u5B57",Ot="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5B57\u7B26\u4E32",Je="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5BF9\u8C61",Rt="\u8BF7\u8F93\u5165\u4E00\u4E2A\u6570\u7EC4",lo="\u8BF7\u8F93\u5165\u4E00\u4E2A\u5E03\u5C14",ho="{caption}\u5FC5\u586B",po="\u8BF7\u8F93\u5165\u6807\u9898",Do="\u8BF7\u8F93\u5165\u6C14\u6CE1\u63D0\u793A\u8BED",go="\u8BF7\u8F93\u5165\u63D0\u793A\u6587\u5B57",vo="\u8BF7\u7ED1\u5B9A\u6570\u636E\u9879",mo="\u8BF7\u7ED1\u5B9A\u8868\u5355",yo="\u8BF7\u7ED1\u5B9A\u5217\u8868",Eo="\u8BF7\u7ED1\u5B9A\u6D41\u7A0B",Ao="\u8BF7\u8F93\u5165\u663E\u793A\u503C",Co="\u8BF7\u8F93\u5165\u5B58\u50A8\u503C",Fo="\u5355\u636E\u7F16\u53F7\u672A\u7ED1\u5B9A\u6570\u636E\u9879",wo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",Bo="\u8BF7\u8F93\u5165\u5927\u4E8E\u7B49\u4E8E{min}\u7684\u6570\u503C",bo="\u8BF7\u8F93\u5165\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u6570\u503C",So="\u6570\u503C\u8303\u56F4\u8BBE\u7F6E\u6709\u8BEF",Mo="\u8BF7\u8F93\u5165\u957F\u5EA6\u5927\u4E8E\u7B49\u4E8E{min}\u4E14\u5C0F\u4E8E\u7B49\u4E8E{max}\u7684\u503C",No="\u9644\u4EF6\u5927\u5C0F\u5FC5\u987B\u57280MB\u81F31000MB\u4E4B\u95F4",_o="\u8BF7\u586B\u5199\u603B\u5206\u8BBE\u7F6E",Io="\u603B\u5206\u4E0D\u80FD\u5C0F\u4E8E1",Oo="\u9ED8\u8BA4\u503C\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",Ro="\u9644\u4EF6\u4E0A\u4F20\u7684\u6570\u91CF\u5FC5\u987B\u5728{min}\u548C{max}\u4E4B\u95F4",xo="\u8BF7\u91CD\u65B0\u9009\u62E9\u53EF\u9009\u6570\u91CF",$o="\u8BE5\u63A7\u4EF6\u6700\u5927\u957F\u5EA6\u9700\u5927\u4E8E\u6700\u5C0F\u957F\u5EA6",Po="\u8BE5\u63A7\u4EF6\u6700\u5C0F\u957F\u5EA6\u9700\u5C0F\u4E8E\u6700\u5927\u957F\u5EA6",To="\u8BF7\u9009\u62E9\u6B63\u786E\u7684\u9009\u9879\u8BBE\u7F6E",Lo="\u9009\u9879ID\u4E0D\u80FD\u91CD\u590D",jo="\u8BF7\u8F93\u5165\u81F3\u5C11\u4E00\u6761\u9009\u9879",qo="\u8BF7\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ko="\u8BF7\u7ED1\u5B9A\u5B58\u50A8\u503C",Vo="\u8BF7\u7ED1\u5B9A\u670D\u52A1",Uo="\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Ho="\u8BF7\u9009\u62E9\u7701",zo="\u8BF7\u9009\u62E9\u5E02",Wo="\u8BF7\u9009\u62E9\u533A",Zo="\u6700\u5C11\u586B\u5199\u884C\u6570\u4E0D\u80FD\u5C0F\u4E8E0",Xo="\u884C\u6570\u91CF\u4E0D\u80FD\u5C0F\u4E8E{min}\u884C",Jo="\u8BF7\u8F93\u5165\u5217\u5BBD",Go="\u8BF7\u8BBE\u7F6E\u6240\u6709\u89C4\u5219\u6761\u4EF6\u7684\u903B\u8F91\u5173\u7CFB",Ko="\u8BF7\u5C06\u6240\u6709\u89C4\u5219\u6761\u4EF6\u586B\u5199\u5B8C\u6574",Qo="\u8BF7\u9009\u62E9\u63A7\u4EF6",Yo="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u663E\u793A\u5B57\u6BB5",ea="\u8BF7\u9009\u62E9\u56DE\u586B\u8BBE\u7F6E",ta="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",na="\u8BF7\u9009\u62E9\u6839\u8282\u70B9",ra="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ua="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",ia="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",oa="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",aa="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",sa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ca="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",fa="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",la="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",ha="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",da="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",pa="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Da="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",ga="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",va="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",ma="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",ya="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",Ea={isNotNumber:jn,isNotString:Ot,isNotObject:Je,isNotArray:Rt,isNotBoolean:lo,runtimeRequired:ho,pleaseEnterCaption:po,pleaseEnterCaptionTip:Do,pleaseEnterPlaceholder:go,pleaseEnterFieldCode:vo,pleaseEnterForm:mo,pleaseEnterList:yo,pleaseEnterProcess:Eo,pleaseEnterLabel:Ao,pleaseEnterValue:Co,bizKeyNotBindFiled:Fo,pleaseEnterNumberRange:wo,pleaseEnterAValueGreaterThanMin:Bo,pleaseEnterAValueLessThanMax:bo,numberRangeSetError:So,stringRangeError:Mo,attachmentMaxSize:No,pleaseEnterTotalScoreSetting:_o,theTotalScoreMustNotBeLessThan1:Io,scoreDefaultValueRange:Oo,attachmentLimitError:Ro,PleaseReselectTheOptionalQuantity:xo,TheMaximumLengthIsGreaterThanTheMinimumLength:$o,TheMinimumLengthIsGreaterThanTheMaximumLength:Po,PleaseSelectTheCorrectOptionSettings:To,optionIdIsRepeat:Lo,optionIsRequired:jo,pleaseEnterDataCode:qo,pleaseEnterValueFieldCode:ko,pleaseEnterSvcCode:Vo,pleaseBindAtLeastOneDisplayValue:Uo,pleaseSelectProvince:Ho,pleaseSelectCity:zo,pleaseSelectDistrict:Wo,limitRowsCannotBeLessThan0:Zo,TheNumberOfRowsCannotBeLessThanMinRows:Xo,pleaseEnterColumnWidth:Jo,pleaseSetTheLogicalRelationshipOfAllRuleConditions:Go,pleaseCompleteAllRulesAndConditions:Ko,pleaseSelectControl:Qo,pleaseSelectAtLeastOneColumn:Yo,pleaseSelectFillBackMode:ea,pleaseSelectDashboard:ta,rootNodeIsRequired:na,theViewNameCannotBeEmpty:ra,pleaseSelectOcrType:ua,pleaseSelectAtLeastOneFieldToFillIn:ia,pleaseChooseAtLeastOne:oa,pleaseEnterButtonContent:aa,pleaseEnterDataCodeInDataSetting:sa,pleaseEnterValueFieldCodeInDataSetting:ca,pleaseEnterSvcCodeInDataSetting:fa,pleaseBindAtLeastOneDisplayValueInDataSetting:la,rootNodeIsRequiredInDataSetting:ha,pleaseEnterMaxHeight:da,pleaseEnter:pa,pleaseEnterWatermark:Da,pleaseEnterFileName:ga,pleaseUploadAtLeastOnePrintTemplate:va,pleaseAssignBusiness:ma,pleaseAssignExternal:ya},Aa="Please enter a number",Ca="Please enter a string",Fa="Please enter an object",wa="Please enter an array",Ba="Please enter a boolean",ba="{caption} Required",Sa="Please enter the title",Ma="Please enter the bubble prompt",Na="Please enter the prompt text",_a="Please bind data items",Ia="Please bind the form",Oa="Please bind the list",Ra="Please bind the process",xa="Please enter the displayed value",$a="Please enter the stored value",Pa="The document number is not bound to the data item",Ta="Please enter a value greater than or equal to {min} and less than or equal to {max}",La="Please enter a value greater than or equal to {min}",ja="Please enter a value less than or equal to {max}",qa="The value range is set incorrectly",ka="Please enter a value with a length greater than or equal to {min} and less than or equal to {max}",Va="The attachment size must be between 0MB and 1000MB",Ua="Please fill in the total score setting",Ha="The total score cannot be less than 1",za="The default value must be between {min} and {max}",Wa="The number of attachments uploaded must be between {min} and {max}",Za="Please re-select the optional quantity",Xa="The maximum length of the control must be greater than the minimum length",Ja="The minimum length of the control must be less than the maximum length",Ga="Please select the correct option setting",Ka="Option ID cannot be repeated",Qa="Please enter at least one option",Ya="Please bind the data source",es="Please bind the stored value",ts="Please bind the service",ns="At least one display value must be bound",rs="Please select a province",us="Please select a city",is="Please select a district",os="The minimum number of lines to fill in cannot be less than 0",as="The number of rows cannot be less than {min} rows",ss="Please enter the column width",cs="Please set the logical relationship of all rule conditions",fs="Please complete all rules and conditions",ls="please select control",hs="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",ds="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",ps="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Ds="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",gs="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",vs="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",ms="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",ys="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",Es="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",As="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Cs="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Fs="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",ws="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",Bs="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",bs="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Ss="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Ms="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",Ns="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",_s={isNotNumber:Aa,isNotString:Ca,isNotObject:Fa,isNotArray:wa,isNotBoolean:Ba,runtimeRequired:ba,pleaseEnterCaption:Sa,pleaseEnterCaptionTip:Ma,pleaseEnterPlaceholder:Na,pleaseEnterFieldCode:_a,pleaseEnterForm:Ia,pleaseEnterList:Oa,pleaseEnterProcess:Ra,pleaseEnterLabel:xa,pleaseEnterValue:$a,bizKeyNotBindFiled:Pa,pleaseEnterNumberRange:Ta,pleaseEnterAValueGreaterThanMin:La,pleaseEnterAValueLessThanMax:ja,numberRangeSetError:qa,stringRangeError:ka,attachmentMaxSize:Va,pleaseEnterTotalScoreSetting:Ua,theTotalScoreMustNotBeLessThan1:Ha,scoreDefaultValueRange:za,attachmentLimitError:Wa,PleaseReselectTheOptionalQuantity:Za,TheMaximumLengthIsGreaterThanTheMinimumLength:Xa,TheMinimumLengthIsGreaterThanTheMaximumLength:Ja,PleaseSelectTheCorrectOptionSettings:Ga,optionIdIsRepeat:Ka,optionIsRequired:Qa,pleaseEnterDataCode:Ya,pleaseEnterValueFieldCode:es,pleaseEnterSvcCode:ts,pleaseBindAtLeastOneDisplayValue:ns,pleaseSelectProvince:rs,pleaseSelectCity:us,pleaseSelectDistrict:is,limitRowsCannotBeLessThan0:os,TheNumberOfRowsCannotBeLessThanMinRows:as,pleaseEnterColumnWidth:ss,pleaseSetTheLogicalRelationshipOfAllRuleConditions:cs,pleaseCompleteAllRulesAndConditions:fs,pleaseSelectControl:ls,pleaseSelectDashboard:hs,theViewNameCannotBeEmpty:ds,pleaseSelectOcrType:ps,pleaseSelectAtLeastOneFieldToFillIn:Ds,pleaseChooseAtLeastOne:gs,pleaseEnterButtonContent:vs,pleaseEnterDataCodeInDataSetting:ms,pleaseEnterValueFieldCodeInDataSetting:ys,pleaseEnterSvcCodeInDataSetting:Es,pleaseBindAtLeastOneDisplayValueInDataSetting:As,rootNodeIsRequiredInDataSetting:Cs,pleaseEnterMaxHeight:Fs,pleaseEnter:ws,pleaseEnterWatermark:Bs,pleaseEnterFileName:bs,pleaseUploadAtLeastOnePrintTemplate:Ss,pleaseAssignBusiness:Ms,pleaseAssignExternal:Ns},Is="\u6570\u5B57\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Os="\u6587\u5B57\u5217\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Rs="\u5BFE\u8C61\u7269\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",xs="\u6570\u5B57\u7D44\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",$s="\u30D6\u30FC\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ps="{caption}\u5FC5\u9808",Ts="\u30BF\u30A4\u30C8\u30EB\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ls="\u6C17\u6CE1\u306E\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",js="\u30D2\u30F3\u30C8\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",qs="\u30C7\u30FC\u30BF\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",ks="\u30B7\u30FC\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Vs="\u30EA\u30B9\u30C8\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Us="\u30D5\u30ED\u30FC\u3092\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",Hs="\u8868\u793A\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",zs="\u4FDD\u5B58\u5024\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",Ws="\u30B7\u30FC\u30C8\u756A\u53F7\u304C\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3055\u308C\u3066\u3044\u307E\u305B\u3093\u3002",Zs="{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Xs="{min}\u4EE5\u4E0A\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Js="{max}\u672A\u6E80\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Gs="\u6570\u5024\u7BC4\u56F2\u8A2D\u5B9A\u30A8\u30E9\u30FC",Ks="\u9577\u3055\u304C{min}\u4EE5\u4E0A{max}\u4EE5\u4E0B\u306E\u5024\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044",Qs="\u6DFB\u4ED8\u30D5\u30A1\u30A4\u30EB\u306F0MB\u304B\u30891000MB\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",Ys="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",ec="\u30C8\u30FC\u30BF\u30EB\u70B9\u6570\u306F\uFF11\u4EE5\u4E0A\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",tc="\u57FA\u672C\u8A2D\u5B9A\u5024\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059\u3002",nc="\u30A2\u30C3\u30D7\u30C7\u30FC\u30C8\u4EF6\u6570\u306F{min}\u304B\u3089{max}\u306E\u9593\u3067\u304A\u9858\u3044\u3057\u307E\u3059",rc="\u6570\u91CF\u3092\u518D\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",uc="\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",ic="\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",oc="\u6B63\u78BA\u306A\u8A2D\u5B9A\u5024\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",ac="ID\u306F\u91CD\u8907\u3057\u306A\u3044\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",sc="\u6700\u4F4E\uFF11\u70B9\u3092\u9078\u3076\u3088\u3046\u306B\u304A\u9858\u3044\u3057\u307E\u3059",cc="\u5143\u30C7\u30FC\u30BF\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",fc="\u4FDD\u5B58\u5024\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",lc="\u30B5\u30FC\u30D3\u30B9\u306B\u30EA\u30F3\u30AF\u3057\u3066\u4E0B\u3055\u3044",hc="\u8868\u793A\u5024\u3092\u30EA\u30F3\u30AF\u3057\u76F4\u3057\u3057\u3066\u4E0B\u3055\u3044",dc="\u7701\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",pc="\u5E02\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",Dc="\u533A\u3092\u9078\u629E\u3057\u3066\u4E0B\u3055\u3044",gc="\u6700\u5C0F\u5024\u306F\uFF10\u3088\u308A\u5927\u304D\u304F\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",vc="\u6700\u4F4E\u884C\u6570\u306F{min}\u884C\u3067\u304A\u9858\u3044\u3057\u307E\u3059",mc="\u5217\u5E45\u3092\u5165\u529B\u3057\u3066\u4E0B\u3055\u3044",yc="\u5168\u3066\u306E\u6761\u4EF6\u306E\u30ED\u30B8\u30C3\u30AF\u3092\u8A2D\u5B9A\u3057\u3066\u4E0B\u3055\u3044",Ec="\u5168\u3066\u306E\u6761\u4EF6\u3092\u5B8C\u6210\u3055\u305B\u3066\u4E0B\u3055\u3044",Ac="please select control",Cc="\u8BF7\u9009\u62E9\u4EEA\u8868\u76D8",Fc="\u89C6\u56FE\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",wc="\u8BF7\u9009\u62E9\u8BC6\u522B\u7C7B\u578B",Bc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A\u5B57\u6BB5\u8FDB\u884C\u586B\u5145",bc="\u8BF7\u81F3\u5C11\u9009\u62E9\u4E00\u4E2A",Sc="\u8BF7\u8F93\u5165\u6309\u94AE\u6807\u9898",Mc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u4E1A\u52A1\u6A21\u578B",Nc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u5B58\u50A8\u503C",_c="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u7ED1\u5B9A\u670D\u52A1",Ic="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u81F3\u5C11\u7ED1\u5B9A\u4E00\u4E2A\u663E\u793A\u503C",Oc="\u8BF7\u5728\u6570\u636E\u8BBE\u7F6E\u4E2D\u9009\u62E9\u6839\u8282\u70B9",Rc="\u8BF7\u8F93\u5165\u6700\u5927\u9AD8\u5EA6",xc="\u8F93\u5165\u5185\u5BB9\u4E0D\u80FD\u4E3A\u7A7A",$c="\u6C34\u5370\u4E0D\u80FD\u4E3A\u7A7A",Pc="\u6587\u4EF6\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A",Tc="\u8BF7\u81F3\u5C11\u4E0A\u4F20\u4E00\u4E2A\u6253\u5370\u6A21\u7248\uFF01",Lc="\u8BF7\u9009\u62E9\u6307\u5B9A\u4E1A\u52A1\u90E8\u95E8",jc="\u8BF7\u9009\u62E9\u6307\u5B9A\u5916\u90E8\u7EC4\u7EC7",qc={isNotNumber:Is,isNotString:Os,isNotObject:Rs,isNotArray:xs,isNotBoolean:$s,runtimeRequired:Ps,pleaseEnterCaption:Ts,pleaseEnterCaptionTip:Ls,pleaseEnterPlaceholder:js,pleaseEnterFieldCode:qs,pleaseEnterForm:ks,pleaseEnterList:Vs,pleaseEnterProcess:Us,pleaseEnterLabel:Hs,pleaseEnterValue:zs,bizKeyNotBindFiled:Ws,pleaseEnterNumberRange:Zs,pleaseEnterAValueGreaterThanMin:Xs,pleaseEnterAValueLessThanMax:Js,numberRangeSetError:Gs,stringRangeError:Ks,attachmentMaxSize:Qs,pleaseEnterTotalScoreSetting:Ys,theTotalScoreMustNotBeLessThan1:ec,scoreDefaultValueRange:tc,attachmentLimitError:nc,PleaseReselectTheOptionalQuantity:rc,TheMaximumLengthIsGreaterThanTheMinimumLength:uc,TheMinimumLengthIsGreaterThanTheMaximumLength:ic,PleaseSelectTheCorrectOptionSettings:oc,optionIdIsRepeat:ac,optionIsRequired:sc,pleaseEnterDataCode:cc,pleaseEnterValueFieldCode:fc,pleaseEnterSvcCode:lc,pleaseBindAtLeastOneDisplayValue:hc,pleaseSelectProvince:dc,pleaseSelectCity:pc,pleaseSelectDistrict:Dc,limitRowsCannotBeLessThan0:gc,TheNumberOfRowsCannotBeLessThanMinRows:vc,pleaseEnterColumnWidth:mc,pleaseSetTheLogicalRelationshipOfAllRuleConditions:yc,pleaseCompleteAllRulesAndConditions:Ec,pleaseSelectControl:Ac,pleaseSelectDashboard:Cc,theViewNameCannotBeEmpty:Fc,pleaseSelectOcrType:wc,pleaseSelectAtLeastOneFieldToFillIn:Bc,pleaseChooseAtLeastOne:bc,pleaseEnterButtonContent:Sc,pleaseEnterDataCodeInDataSetting:Mc,pleaseEnterValueFieldCodeInDataSetting:Nc,pleaseEnterSvcCodeInDataSetting:_c,pleaseBindAtLeastOneDisplayValueInDataSetting:Ic,rootNodeIsRequiredInDataSetting:Oc,pleaseEnterMaxHeight:Rc,pleaseEnter:xc,pleaseEnterWatermark:$c,pleaseEnterFileName:Pc,pleaseUploadAtLeastOnePrintTemplate:Tc,pleaseAssignBusiness:Lc,pleaseAssignExternal:jc},kc={zhCN:Ea,enUS:_s,jaJP:qc},xe;(function(e){e.Number="Number",e.Operator="Operator",e.VariableInMainTable="VariableInMainTable",e.VariableInCurrentSubTable="VariableInCurrentSubTable",e.VariableInOtherSubTable="VariableInOtherSubTable",e.UndefinedVariable="UndefinedVariable"})(xe||(xe={}));var gt;(function(e){e.SUM="SUM",e.AVG="AVG",e.MAX="MAX",e.MIN="MIN"})(gt||(gt={}));var Jr="zh-CN";function Be(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var qe;(function(e){e.BASE="base",e.FORM="form",e.LAYOUT="layout",e.WRAP="wrap",e.COLUMN="column",e.LIST="list",e.SEARCH="search"})(qe||(qe={}));var J;(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.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.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.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"})(J||(J={}));var z;(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"})(z||(z={}));var ge;ge={},Be(ge,z.ARRAY,J.ARRAY_COLUMN),Be(ge,z.AUTO_NUMBER,J.AUTO_NUMBER_COLUMN),Be(ge,z.DECIMAL,J.DECIMAL_COLUMN),Be(ge,z.DEPARTMENTS,J.DEPARTMENT_COLUMN),Be(ge,z.FILE,J.FILE_COLUMN),Be(ge,z.IMAGE,J.IMAGE_COLUMN),Be(ge,z.ADDRESS,J.LOCATION_COLUMN),Be(ge,z.EMPLOYEES,J.EMPLOYEE_COLUMN),Be(ge,z.TEXT,J.TEXT_COLUMN),Be(ge,z.TIMESCOPE,J.TIMESCOPE_COLUMN),Be(ge,z.TIMESTAMP,J.TIMESTAMP_COLUMN),Be(ge,z.VARCHAR,J.VARCHAR_COLUMN),Be(ge,z.RELATION,J.VARCHAR_COLUMN);var Gr;(function(e){e.YEAR="year",e.MONTH="month",e.DATE="date",e.DATETIME="datetime"})(Gr||(Gr={}));var Kr="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",Vc=Kr+"0123456789";function qn(){for(var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:15,t="",n=0;n<e;n++){var r=n===0?Kr:Vc,u=Math.random()*r.length;t+=r[parseInt(String(u),10)]}return t}function kn(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 Uc(e){if(Array.isArray(e))return kn(e)}function Hc(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Qr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function zc(){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 Qt(e,t,n){return zc()?Qt=Reflect.construct:Qt=function(u,o,a){var l=[null];l.push.apply(l,o);var c=Function.bind.apply(u,l),d=new c;return a&&$t(d,a.prototype),d},Qt.apply(null,arguments)}function xt(e){return xt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},xt(e)}function Yr(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&&$t(e,t)}function Wc(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function Zc(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Xc(){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 Jc(e,t){return t&&(Gc(t)==="object"||typeof t=="function")?t:Hc(e)}function $t(e,t){return $t=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},$t(e,t)}function eu(e){return Uc(e)||Zc(e)||Kc(e)||Xc()}var Gc=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Kc(e,t){if(!!e){if(typeof e=="string")return kn(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 kn(e,t)}}function Vn(e){var t=typeof Map=="function"?new Map:void 0;return Vn=function(r){if(r===null||!Wc(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 Qt(r,arguments,xt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),$t(u,r)},Vn(e)}function Qc(){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 tu(e){var t=Qc();return function(){var r=xt(e),u;if(t){var o=xt(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return Jc(this,u)}}var Un=console;function Ye(){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=Un).warn.apply(r,["\u{1F9D0} Driven Warning:"+t[0]].concat(eu(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=Un).log.apply(r,["\u{1F680} Driven Log:"+t[0]].concat(eu(u)))}function Yc(e){return e+" \u{1F41B}\u{1F41B}\u{1F41B}"}var zn=function(e){Yr(n,e);var t=tu(n);function n(r){Qr(this,n);var u;return u=t.call(this,r),u.name="\u{1F4A5} Driven Error",u.message=r?Yc(r):"An unknown error occurred in the Driven, please contact the person in charge \u{1F691}\u{1F691}\u{1F691}",u}return n}(Vn(Error)),ef=function(e){Yr(n,e);var t=tu(n);function n(r){Qr(this,n);var u;return u=t.call(this,r),u.name="\u{1F6A8} Driven Reference Error",u}return n}(zn);function Ge(e){throw new zn(e)}function nu(e){throw new ef(e)}function Yt(e){Un.error(new zn(e))}function ct(e,t){Array.isArray(e)&&e.map(function(n){switch(n.controlType){case"layout":ct(n==null?void 0:n.children,t);break;case"search":ct(n==null?void 0:n.children,t);break;case"form":t(n)}})}var tf=Object.prototype.toString;function ru(e,t){return tf.call(e)==="[object "+t+"]"}function nf(e){return ru(e,"String")}function rf(e){return ru(e,"Promise")}var uf=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();rf(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,o,a,l){if(u!==void 0){var c=u[o];if(!(a===l.length-1&&!nf(c)))return c}},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 o=n[u];return o!==void 0?String(o):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 of(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var $e=function(){function e(){of(this,e)}return e.getMessage=function(n){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};return this.$i18n.$t(n,"",r)},e.resetI18n=function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:Jr;return new uf({locale:n,messages:kc})},e.setLocale=function(n){return this.$i18n.setLocale(n)},e}();$e.$i18n=$e.resetI18n();function uu(e,t,n){var r=t.replace(/\[(\d)]/g,function(o,a){return"."+a}).split("."),u=!1;return r.reduce(function(o,a,l,c){var d=o;if(!!o){if(!Object.prototype.hasOwnProperty.call(o,a)){Ye("Can not set ".concat(t,"'s ").concat(a," property in current %o, Because there is no ").concat(a," property on the %o"),o,o);return}return l===c.length-1&&!Object.is(d[a],n)&&(d[a]=n,u=!0),d[a]}},e),u}var et=typeof globalThis!="undefined"?globalThis:typeof window!="undefined"?window:typeof global!="undefined"?global:typeof self!="undefined"?self:{};function iu(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Wn={exports:{}};(function(e){(function(t){var n=function(v,A,S){if(!d(A)||s(A)||h(A)||p(A)||c(A))return A;var F,R=0,P=0;if(f(A))for(F=[],P=A.length;R<P;R++)F.push(n(v,A[R],S));else{F={};for(var T in A)Object.prototype.hasOwnProperty.call(A,T)&&(F[v(T,S)]=n(v,A[T],S))}return F},r=function(v,A){A=A||{};var S=A.separator||"_",F=A.split||/(?=[A-Z])/;return v.split(F).join(S)},u=function(v){return D(v)?v:(v=v.replace(/[\-_\s]+(.)?/g,function(A,S){return S?S.toUpperCase():""}),v.substr(0,1).toLowerCase()+v.substr(1))},o=function(v){var A=u(v);return A.substr(0,1).toUpperCase()+A.substr(1)},a=function(v,A){return r(v,A).toLowerCase()},l=Object.prototype.toString,c=function(v){return typeof v=="function"},d=function(v){return v===Object(v)},f=function(v){return l.call(v)=="[object Array]"},s=function(v){return l.call(v)=="[object Date]"},h=function(v){return l.call(v)=="[object RegExp]"},p=function(v){return l.call(v)=="[object Boolean]"},D=function(v){return v=v-0,v===v},g=function(v,A){var S=A&&"process"in A?A.process:A;return typeof S!="function"?v:function(F,R){return S(F,v,R)}},y={camelize:u,decamelize:a,pascalize:o,depascalize:a,camelizeKeys:function(v,A){return n(g(u,A),v)},decamelizeKeys:function(v,A){return n(g(a,A),v,A)},pascalizeKeys:function(v,A){return n(g(o,A),v)},depascalizeKeys:function(){return this.decamelizeKeys.apply(this,arguments)}};e.exports?e.exports=y:t.humps=y})(et)})(Wn);function G(e){if(e!==void 0)return typeof e=="object"?JSON.parse(JSON.stringify(e)):e}function ke(e){return Object.prototype.toString.call(e)==="[object Object]"}function af(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}function vt(e){return Array.isArray(e)}function be(e){return typeof e=="string"}function en(e){return typeof e=="number"}function ou(e){return typeof e=="function"}function sf(e){return vt(e)&&e.every(function(t){return be(t)})}function cf(e){return vt(e)&&e.every(function(t){return en(t)||t===""})}function au(e){return/^\[.*?]$/.test(e)}function tn(e){return/^{.*?}$/.test(e)}function Zn(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 ff(e){if(Array.isArray(e))return Zn(e)}function su(e,t,n,r,u,o,a){try{var l=e[o](a),c=l.value}catch(d){n(d);return}l.done?t(c):Promise.resolve(c).then(r,u)}function lf(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function a(c){su(o,r,u,a,l,"next",c)}function l(c){su(o,r,u,a,l,"throw",c)}a(void 0)})}}function hf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function df(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function pf(){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 Xn(e){return ff(e)||df(e)||Df(e)||pf()}function Df(e,t){if(!!e){if(typeof e=="string")return Zn(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 Zn(e,t)}}var cu=function(){function e(){hf(this,e),this._events=new Map,this.debug=!1}var t=e.prototype;return t.emit=function(r){for(var u=arguments.length,o=new Array(u>1?u-1:0),a=1;a<u;a++)o[a-1]=arguments[a];var l=this;return lf(Re.default.mark(function c(){var d,f,s,h,p,D,g,y,v,A;return Re.default.wrap(function(F){for(;;)switch(F.prev=F.next){case 0:if(d=l._events.get(r),f=[],!d){F.next=42;break}s=d.slice(),h=!0,p=!1,D=void 0,F.prev=5,g=s[Symbol.iterator]();case 7:if(h=(y=g.next()).done){F.next=28;break}if(v=y.value,d.includes(v)){F.next=11;break}return F.abrupt("continue",25);case 11:return F.prev=11,l.debug&&Hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"\u3002")].concat(Xn(o))),F.next=15,v.apply(null,Xn(o));case 15:if(A=F.sent,l.debug&&Hn.apply(void 0,["\u6B63\u5728\u6267\u884C ".concat(r," \u4E8B\u4EF6: ").concat(v.applyingPluginName?"\u5F53\u524D\u6267\u884C\u7684\u63D2\u4EF6\u4E3A:"+v.applyingPluginName:"",", \u5F53\u524D\u6267\u884C\u51FD\u6570\u7684\u53C2\u6570\u4E3A").concat(o.map(function(){return"%o"}).join(","),"; \u51FD\u6570\u7684\u8FD4\u56DE\u7ED3\u679C\u4E3A%o")].concat(Xn(o),[A])),f.push(A),A!==!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),Yt(String(F.t0));case 25:h=!0,F.next=7;break;case 28:F.next=34;break;case 30:F.prev=30,F.t1=F.catch(5),p=!0,D=F.t1;case 34:F.prev=34,F.prev=35,!h&&g.return!=null&&g.return();case 37:if(F.prev=37,!p){F.next=40;break}throw D;case 40:return F.finish(37);case 41:return F.finish(34);case 42:return F.abrupt("return",f);case 43:case"end":return F.stop()}},c,null,[[5,30,34,42],[11,22],[35,,37,41]])}))()},t.on=function(r,u){if(this._events.has(r)){var o;(o=this._events.get(r))===null||o===void 0||o.push(u)}else this._events.set(r,[u])},t.off=function(r,u){if(this._events.has(r)){var o=this._events.get(r),a=o==null?void 0:o.indexOf(u);o==null||o.splice(a,1)}},t.delete=function(r){this._events.has(r)&&this._events.delete(r)},t.clear=function(){this._events=new Map},e}();function gf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var vf=[{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_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_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"}],fu=function(){function e(){gf(this,e)}var t=e.prototype;return t.getEventsFromKeys=function(r){var u=typeof r=="string"?[r]:r;return e.events.filter(function(o){return u.includes(o.key)})},e}();fu.events=vf;function mf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var lu=[],nn=function(){function e(n){mf(this,e),this.registeredControlTypes=new Set,this.controlConfigMap=new Map,this._controls=[],this._type=n,this._initControls(n)}var t=e.prototype;return t.registerControlConfig=function(r,u){return this.controlConfigMap.set(r,u),this},t.getControlConfig=function(r){return this.controlConfigMap.get(r)},t.getControls=function(){return this._controls},t.register=function(r){r.__is_control__||Ge("".concat(r.name," is not a Control"));var u=this._controls.findIndex(function(o){return o.controlType===r.controlType});return u>-1&&(Ye("The ".concat(r.controlType," is repeat register, So it overwrites the one that was registered before.")),this._controls.splice(u,1)),this.registeredControlTypes.add(r.controlType),this._controls.push(r),this},t.isLayoutControl=function(r){return r.controlType===qe.LAYOUT},t.isFormControl=function(r){return r.controlType===qe.FORM},t.isListControl=function(r){return r.controlType===qe.LIST},t.isColumnControl=function(r){return r.controlType===qe.COLUMN},t.createControl=function(r,u){var o=this;if(Array.isArray(r))return r.map(function(f){return o.createControl(f,u)});r.children&&(r.children=r.children.map(function(f){return o.createControl(f,u)})),this.isListControl(r)&&r.props.headers&&(r.props.headers=r.props.headers.map(function(f){return o.createControl(f,u)}));var a=this.getControlFormType(r.type);if(a){var l=r;if(typeof u=="function"){var c=u(l);c&&(l=c)}var d=new a(l);return d}else Ge("The constructor of ".concat(r.type," could not be found, please confirm that the constructor has been registered"))},t.createControlInstance=function(r,u){var o=this.getControlFormType(r);if(o)return new o(u)},t.getControlFormType=function(r){return this._controls.find(function(u){return u.controlType===r})},t._initControls=function(r){var u=this;this.constructor.staticControls.forEach(function(o){u.register(o[r])})},e.register=function(r){var u=r.Designer,o=r.Runtime;(!u||!o||!u.__is_control__||!o.__is_control__)&&Ge("".concat(r," is can't register as a Control"));var a=this.staticControls.findIndex(function(l){return l.Designer.controlType===u.controlType});return a>-1&&(Ye("The ".concat(u.controlType," is repeat register, So it overwrites the one that was registered before.")),this.staticControls.splice(a,1)),this.staticRegisteredTypes.add(u.controlType),this.staticControls.push(r),this},e}();nn.staticControls=lu,nn.staticRegisteredTypes=new Set(lu.map(function(e){return e.Designer.controlType})),nn.staticRegisteredConfigs=new Map;function ft(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Pt=function e(t){ft(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:""},Ve=function e(){ft(this,e)},rn=function e(t){ft(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:Jn.CNY},un=function e(t){ft(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:""},on=function e(t){ft(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 o;this.districtDisplay=(o=t==null?void 0:t.districtDisplay)!==null&&o!==void 0?o:"";var a;this.province=(a=t==null?void 0:t.province)!==null&&a!==void 0?a:"";var l;this.provinceDisplay=(l=t==null?void 0:t.provinceDisplay)!==null&&l!==void 0?l:""},an=function e(t){ft(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:""},Jn;(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"})(Jn||(Jn={}));var hu;(function(e){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.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"})(hu||(hu={}));var Gn;(function(e){e[e.UNKNOWN=0]="UNKNOWN",e[e.READONLY=1]="READONLY",e[e.EDITABLE=2]="EDITABLE",e[e.PRINT=5]="PRINT"})(Gn||(Gn={}));var yf=function e(t){ft(this,e);var n;this.width=(n=t==null?void 0:t.width)!==null&&n!==void 0?n:"";var r;this.height=(r=t==null?void 0:t.height)!==null&&r!==void 0?r:"";var u;this.widthConfig=(u=t==null?void 0:t.widthConfig)!==null&&u!==void 0?u:"fill";var o;this.heightConfig=(o=t==null?void 0:t.heightConfig)!==null&&o!==void 0?o:"fill"};function Ef(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Kn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Af(){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 sn(e,t,n){return Af()?sn=Reflect.construct:sn=function(u,o,a){var l=[null];l.push.apply(l,o);var c=Function.bind.apply(u,l),d=new c;return a&&Lt(d,a.prototype),d},sn.apply(null,arguments)}function Tt(e){return Tt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Tt(e)}function Cf(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&&Lt(e,t)}function Ff(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function wf(e,t){return t&&(Bf(t)==="object"||typeof t=="function")?t:Ef(e)}function Lt(e,t){return Lt=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Lt(e,t)}var Bf=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Qn(e){var t=typeof Map=="function"?new Map:void 0;return Qn=function(r){if(r===null||!Ff(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 sn(r,arguments,Tt(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),Lt(u,r)},Qn(e)}function bf(){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 Sf(e){var t=bf();return function(){var r=Tt(e),u;if(t){var o=Tt(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return wf(this,u)}}var du=function e(t){Kn(this,e),this.isHide={type:"boolean"}},pu=function(e){Cf(n,e);var t=Sf(n);function n(r){return Kn(this,n),t.call(this)}return n}(Qn(Array)),lt=function e(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"";Kn(this,e);var r;this.isHide=(r=t==null?void 0:t.isHide)!==null&&r!==void 0?r:!1,this.style=new yf(t==null?void 0:t.style);var u;this.caption=(u=t==null?void 0:t.caption)!==null&&u!==void 0?u:n};lt.Rules=du,lt.RuntimeRules=pu;function Ue(){return Ue=Object.assign||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},Ue.apply(this,arguments)}function Mf(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e.__proto__=t}function Yn(e){return Yn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Yn(e)}function cn(e,t){return cn=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},cn(e,t)}function Nf(){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 fn(e,t,n){return Nf()?fn=Reflect.construct:fn=function(u,o,a){var l=[null];l.push.apply(l,o);var c=Function.bind.apply(u,l),d=new c;return a&&cn(d,a.prototype),d},fn.apply(null,arguments)}function _f(e){return Function.toString.call(e).indexOf("[native code]")!==-1}function er(e){var t=typeof Map=="function"?new Map:void 0;return er=function(r){if(r===null||!_f(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 fn(r,arguments,Yn(this).constructor)}return u.prototype=Object.create(r.prototype,{constructor:{value:u,enumerable:!1,writable:!0,configurable:!0}}),cn(u,r)},er(e)}var If=/%[sdj%]/g,Du=function(){};typeof process!="undefined"&&process.env&&process.env.NODE_ENV!=="production"&&typeof window!="undefined"&&typeof document!="undefined"&&(Du=function(t,n){typeof console!="undefined"&&console.warn&&n.every(function(r){return typeof r=="string"})&&console.warn(t,n)});function tr(e){if(!e||!e.length)return null;var t={};return e.forEach(function(n){var r=n.field;t[r]=t[r]||[],t[r].push(n)}),t}function Se(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var r=1,u=t[0],o=t.length;if(typeof u=="function")return u.apply(null,t.slice(1));if(typeof u=="string"){var a=String(u).replace(If,function(l){if(l==="%%")return"%";if(r>=o)return l;switch(l){case"%s":return String(t[r++]);case"%d":return Number(t[r++]);case"%j":try{return JSON.stringify(t[r++])}catch(c){return"[Circular]"}break;default:return l}});return a}return u}function Of(e){return e==="string"||e==="url"||e==="hex"||e==="email"||e==="date"||e==="pattern"}function ue(e,t){return!!(e==null||t==="array"&&Array.isArray(e)&&!e.length||Of(t)&&typeof e=="string"&&!e)}function Rf(e,t,n){var r=[],u=0,o=e.length;function a(l){r.push.apply(r,l),u++,u===o&&n(r)}e.forEach(function(l){t(l,a)})}function gu(e,t,n){var r=0,u=e.length;function o(a){if(a&&a.length){n(a);return}var l=r;r=r+1,l<u?t(e[l],o):n([])}o([])}function xf(e){var t=[];return Object.keys(e).forEach(function(n){t.push.apply(t,e[n])}),t}var vu=function(e){Mf(t,e);function t(n,r){var u;return u=e.call(this,"Async Validation Error")||this,u.errors=n,u.fields=r,u}return t}(er(Error));function $f(e,t,n,r){if(t.first){var u=new Promise(function(s,h){var p=function(y){return r(y),y.length?h(new vu(y,tr(y))):s()},D=xf(e);gu(D,n,p)});return u.catch(function(s){return s}),u}var o=t.firstFields||[];o===!0&&(o=Object.keys(e));var a=Object.keys(e),l=a.length,c=0,d=[],f=new Promise(function(s,h){var p=function(g){if(d.push.apply(d,g),c++,c===l)return r(d),d.length?h(new vu(d,tr(d))):s()};a.length||(r(d),s()),a.forEach(function(D){var g=e[D];o.indexOf(D)!==-1?gu(g,n,p):Rf(g,n,p)})});return f.catch(function(s){return s}),f}function mu(e){return function(t){return t&&t.message?(t.field=t.field||e.fullField,t):{message:typeof t=="function"?t():t,field:t.field||e.fullField}}}function yu(e,t){if(t){for(var n in t)if(t.hasOwnProperty(n)){var r=t[n];typeof r=="object"&&typeof e[n]=="object"?e[n]=Ue(Ue({},e[n]),r):e[n]=r}}return e}function Eu(e,t,n,r,u,o){e.required&&(!n.hasOwnProperty(e.field)||ue(t,o||e.type))&&r.push(Se(u.messages.required,e.fullField))}function Pf(e,t,n,r,u){(/^\s+$/.test(t)||t==="")&&r.push(Se(u.messages.whitespace,e.fullField))}var nr={email:/^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},jt={integer:function(t){return jt.number(t)&&parseInt(t,10)===t},float:function(t){return jt.number(t)&&!jt.integer(t)},array:function(t){return Array.isArray(t)},regexp:function(t){if(t instanceof RegExp)return!0;try{return!!new RegExp(t)}catch(n){return!1}},date:function(t){return typeof t.getTime=="function"&&typeof t.getMonth=="function"&&typeof t.getYear=="function"&&!isNaN(t.getTime())},number:function(t){return isNaN(t)?!1:typeof t=="number"},object:function(t){return typeof t=="object"&&!jt.array(t)},method:function(t){return typeof t=="function"},email:function(t){return typeof t=="string"&&!!t.match(nr.email)&&t.length<255},url:function(t){return typeof t=="string"&&!!t.match(nr.url)},hex:function(t){return typeof t=="string"&&!!t.match(nr.hex)}};function Tf(e,t,n,r,u){if(e.required&&t===void 0){Eu(e,t,n,r,u);return}var o=["integer","float","array","regexp","object","method","email","number","date","url","hex"],a=e.type;o.indexOf(a)>-1?jt[a](t)||r.push(Se(u.messages.types[a],e.fullField,e.type)):a&&typeof t!==e.type&&r.push(Se(u.messages.types[a],e.fullField,e.type))}function Lf(e,t,n,r,u){var o=typeof e.len=="number",a=typeof e.min=="number",l=typeof e.max=="number",c=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,d=t,f=null,s=typeof t=="number",h=typeof t=="string",p=Array.isArray(t);if(s?f="number":h?f="string":p&&(f="array"),!f)return!1;p&&(d=t.length),h&&(d=t.replace(c,"_").length),o?d!==e.len&&r.push(Se(u.messages[f].len,e.fullField,e.len)):a&&!l&&d<e.min?r.push(Se(u.messages[f].min,e.fullField,e.min)):l&&!a&&d>e.max?r.push(Se(u.messages[f].max,e.fullField,e.max)):a&&l&&(d<e.min||d>e.max)&&r.push(Se(u.messages[f].range,e.fullField,e.min,e.max))}var mt="enum";function jf(e,t,n,r,u){e[mt]=Array.isArray(e[mt])?e[mt]:[],e[mt].indexOf(t)===-1&&r.push(Se(u.messages[mt],e.fullField,e[mt].join(", ")))}function qf(e,t,n,r,u){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||r.push(Se(u.messages.pattern.mismatch,e.fullField,t,e.pattern));else if(typeof e.pattern=="string"){var o=new RegExp(e.pattern);o.test(t)||r.push(Se(u.messages.pattern.mismatch,e.fullField,t,e.pattern))}}}var H={required:Eu,whitespace:Pf,type:Tf,range:Lf,enum:jf,pattern:qf};function kf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t,"string")&&!e.required)return n();H.required(e,t,r,o,u,"string"),ue(t,"string")||(H.type(e,t,r,o,u),H.range(e,t,r,o,u),H.pattern(e,t,r,o,u),e.whitespace===!0&&H.whitespace(e,t,r,o,u))}n(o)}function Vf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&H.type(e,t,r,o,u)}n(o)}function Uf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(t===""&&(t=void 0),ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&(H.type(e,t,r,o,u),H.range(e,t,r,o,u))}n(o)}function Hf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&H.type(e,t,r,o,u)}n(o)}function zf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),ue(t)||H.type(e,t,r,o,u)}n(o)}function Wf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&(H.type(e,t,r,o,u),H.range(e,t,r,o,u))}n(o)}function Zf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&(H.type(e,t,r,o,u),H.range(e,t,r,o,u))}n(o)}function Xf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(t==null&&!e.required)return n();H.required(e,t,r,o,u,"array"),t!=null&&(H.type(e,t,r,o,u),H.range(e,t,r,o,u))}n(o)}function Jf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&H.type(e,t,r,o,u)}n(o)}var Gf="enum";function Kf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u),t!==void 0&&H[Gf](e,t,r,o,u)}n(o)}function Qf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t,"string")&&!e.required)return n();H.required(e,t,r,o,u),ue(t,"string")||H.pattern(e,t,r,o,u)}n(o)}function Yf(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t,"date")&&!e.required)return n();if(H.required(e,t,r,o,u),!ue(t,"date")){var l;t instanceof Date?l=t:l=new Date(t),H.type(e,l,r,o,u),l&&H.range(e,l.getTime(),r,o,u)}}n(o)}function el(e,t,n,r,u){var o=[],a=Array.isArray(t)?"array":typeof t;H.required(e,t,r,o,u,a),n(o)}function rr(e,t,n,r,u){var o=e.type,a=[],l=e.required||!e.required&&r.hasOwnProperty(e.field);if(l){if(ue(t,o)&&!e.required)return n();H.required(e,t,r,a,u,o),ue(t,o)||H.type(e,t,r,a,u)}n(a)}function tl(e,t,n,r,u){var o=[],a=e.required||!e.required&&r.hasOwnProperty(e.field);if(a){if(ue(t)&&!e.required)return n();H.required(e,t,r,o,u)}n(o)}var qt={string:kf,method:Vf,number:Uf,boolean:Hf,regexp:zf,integer:Wf,float:Zf,array:Xf,object:Jf,enum:Kf,pattern:Qf,date:Yf,url:rr,hex:rr,email:rr,required:el,any:tl};function ur(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var t=JSON.parse(JSON.stringify(this));return t.clone=this.clone,t}}}var ir=ur();function tt(e){this.rules=null,this._messages=ir,this.define(e)}tt.prototype={messages:function(t){return t&&(this._messages=yu(ur(),t)),this._messages},define:function(t){if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={};var n,r;for(n in t)t.hasOwnProperty(n)&&(r=t[n],this.rules[n]=Array.isArray(r)?r:[r])},validate:function(t,n,r){var u=this;n===void 0&&(n={}),r===void 0&&(r=function(){});var o=t,a=n,l=r;if(typeof a=="function"&&(l=a,a={}),!this.rules||Object.keys(this.rules).length===0)return l&&l(),Promise.resolve();function c(g){var y,v=[],A={};function S(F){if(Array.isArray(F)){var R;v=(R=v).concat.apply(R,F)}else v.push(F)}for(y=0;y<g.length;y++)S(g[y]);v.length?A=tr(v):(v=null,A=null),l(v,A)}if(a.messages){var d=this.messages();d===ir&&(d=ur()),yu(d,a.messages),a.messages=d}else a.messages=this.messages();var f,s,h={},p=a.keys||Object.keys(this.rules);p.forEach(function(g){f=u.rules[g],s=o[g],f.forEach(function(y){var v=y;typeof v.transform=="function"&&(o===t&&(o=Ue({},o)),s=o[g]=v.transform(s)),typeof v=="function"?v={validator:v}:v=Ue({},v),v.validator=u.getValidationMethod(v),v.field=g,v.fullField=v.fullField||g,v.type=u.getType(v),v.validator&&(h[g]=h[g]||[],h[g].push({rule:v,value:s,source:o,field:g}))})});var D={};return $f(h,a,function(g,y){var v=g.rule,A=(v.type==="object"||v.type==="array")&&(typeof v.fields=="object"||typeof v.defaultField=="object");A=A&&(v.required||!v.required&&g.value),v.field=g.field;function S(P,T){return Ue(Ue({},T),{},{fullField:v.fullField+"."+P})}function F(P){P===void 0&&(P=[]);var T=P;if(Array.isArray(T)||(T=[T]),!a.suppressWarning&&T.length&&tt.warning("async-validator:",T),T.length&&v.message!==void 0&&(T=[].concat(v.message)),T=T.map(mu(v)),a.first&&T.length)return D[v.field]=1,y(T);if(!A)y(T);else{if(v.required&&!g.value)return v.message!==void 0?T=[].concat(v.message).map(mu(v)):a.error&&(T=[a.error(v,Se(a.messages.required,v.field))]),y(T);var _={};if(v.defaultField)for(var $ in g.value)g.value.hasOwnProperty($)&&(_[$]=v.defaultField);_=Ue(Ue({},_),g.rule.fields);for(var Z in _)if(_.hasOwnProperty(Z)){var V=Array.isArray(_[Z])?_[Z]:[_[Z]];_[Z]=V.map(S.bind(null,Z))}var Y=new tt(_);Y.messages(a.messages),g.rule.options&&(g.rule.options.messages=a.messages,g.rule.options.error=a.error),Y.validate(g.value,g.rule.options||a,function(Q){var ne=[];T&&T.length&&ne.push.apply(ne,T),Q&&Q.length&&ne.push.apply(ne,Q),y(ne.length?ne:null)})}}var R;v.asyncValidator?R=v.asyncValidator(v,g.value,F,g.source,a):v.validator&&(R=v.validator(v,g.value,F,g.source,a),R===!0?F():R===!1?F(v.message||v.field+" fails"):R instanceof Array?F(R):R instanceof Error&&F(R.message)),R&&R.then&&R.then(function(){return F()},function(P){return F(P)})},function(g){c(g)})},getType:function(t){if(t.type===void 0&&t.pattern instanceof RegExp&&(t.type="pattern"),typeof t.validator!="function"&&t.type&&!qt.hasOwnProperty(t.type))throw new Error(Se("Unknown rule type %s",t.type));return t.type||"string"},getValidationMethod:function(t){if(typeof t.validator=="function")return t.validator;var n=Object.keys(t),r=n.indexOf("message");return r!==-1&&n.splice(r,1),n.length===1&&n[0]==="required"?qt.required:qt[this.getType(t)]||!1}},tt.register=function(t,n){if(typeof n!="function")throw new Error("Cannot register a validator by type, validator is not a function");qt[t]=n},tt.warning=Du,tt.messages=ir,tt.validators=qt;var nl={required:"%s \u5FC5\u586B",maxLength:"%s \u8D85\u51FA\u6700\u5927\u957F\u5EA6\u9650\u5236",minLength:"%s \u5C0F\u4E8E\u6700\u5C0F\u957F\u5EA6\u9650\u5236",string:{range:"%s \u4E0D\u5728\u6307\u5B9A\u957F\u5EA6\u5185"}};function rl(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=new tt(e);return n.messages(Object.assign(nl,t)),n}var ul=new cu;function or(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 il(e){if(Array.isArray(e))return e}function ol(e){if(Array.isArray(e))return or(e)}function Au(e,t,n,r,u,o,a){try{var l=e[o](a),c=l.value}catch(d){n(d);return}l.done?t(c):Promise.resolve(c).then(r,u)}function Cu(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function a(c){Au(o,r,u,a,l,"next",c)}function l(c){Au(o,r,u,a,l,"throw",c)}a(void 0)})}}function al(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Fu(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 sl(e,t,n){return t&&Fu(e.prototype,t),n&&Fu(e,n),e}function cl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function wu(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Bu(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function fl(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ll(){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 bu(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){cl(e,u,n[u])})}return e}function hl(e){return il(e)||Bu(e)||Su(e,i)||fl()}function ar(e){return ol(e)||Bu(e)||Su(e)||ll()}function Su(e,t){if(!!e){if(typeof e=="string")return or(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 or(e,t)}}var He=function(){function t(r){var u=this;al(this,t),this.setting=[],this.eventKeys=[],this.customEvents=[],this.parent=null,this.updateSetting=Nu,this.removeSetting=Mu,this._callControlHooks("preInstance",r);var o=wu(this,t)?this.constructor:void 0,a=o.controlName,l=o.controlIcon,c=o.controlType,d=o.controlFieldType,f=o.controlEventKeys,s=o.controlCustomEvents,h=o.name,p=o.setting;a&&l&&c||nu("The ".concat(h," controlName,controlIcon,controlType is not define"));var D;this.id=(D=r==null?void 0:r.id)!==null&&D!==void 0?D:qn(10),this.name=a,this.icon=l;var g;this.type=(g=r==null?void 0:r.type)!==null&&g!==void 0?g:c,this.props=new lt(r==null?void 0:r.props,(wu(this,t)?this.constructor:void 0).controlName);var y;this.controlType=(y=r==null?void 0:r.controlType)!==null&&y!==void 0?y:"base",this.setting=G(p);var v;this.fieldType=(v=r==null?void 0:r.fieldType)!==null&&v!==void 0?v:d,this.eventKeys=G(f),this.customEvents=G(s),Promise.resolve().then(function(){u._callControlHooks("postInstance",r)})}var n=t.prototype;return n._callControlHooks=function(){for(var u=arguments.length,o=new Array(u),a=0;a<u;a++)o[a]=arguments[a];var l,c=hl(o),d=c[0],f=c.slice(1);return(l=ul).emit.apply(l,[d,this].concat(ar(f)))},n.preUpdate=function(u,o){this._callControlHooks("preUpdateProps",u,o)},n.postUpdate=function(u,o){this._callControlHooks("postUpdateProps",u,o)},n.updateProps=function(u,o){this.preUpdate(u,o),uu(this.props,u,o),this.postUpdate(u,o)},n.preValidate=function(){var u=this;return Cu(Re.default.mark(function o(){var a,l,c;return Re.default.wrap(function(f){for(;;)switch(f.prev=f.next){case 0:return a=bu({},u.rules),f.next=3,u._callControlHooks("preValidate",a);case 3:return l=f.sent,c=l[l.length-1],f.abrupt("return",c===!1?void 0:c);case 6:case"end":return f.stop()}},o)}))()},n.validate=function(u,o){var a=this;return Cu(Re.default.mark(function l(){var c,d,f;return Re.default.wrap(function(h){for(;;)switch(h.prev=h.next){case 0:return h.next=2,a.preValidate();case 2:return c=h.sent,d=c!==void 0?c:bu({},a.rules),Array.isArray(o)&&o.forEach(function(p){d.hasOwnProperty(p)&&delete d[p]}),f=rl(d,u),h.prev=6,h.next=9,f.validate(a.props);case 9:return h.abrupt("return",!0);case 12:throw h.prev=12,h.t0=h.catch(6),h.t0.control||(h.t0.control=a),h.t0;case 16:case"end":return h.stop()}},l,null,[[6,12]])}))()},n.toDataBindModel=function(){var u=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,o=this.fieldType,a=this.id,l=this.type,c=this.props,d=c.dataBind,f=c.datasourceBind,s=c.optionConfig,h=c.caption,p=c.required,D=c.maxLength,g=c.options,y=c.encrypted,v=c.encryptedMode;if(!(!o&&!d&&!f)){var A={parentId:u,fieldType:o,controlId:a,caption:h,type:l,props:{}};switch(d&&(A.dataBind=d),s){case"datasource":case void 0:f&&(A.datasourceBind=f);break;case"custom":A.props.options=g;break}return p!==void 0&&(A.required=p),D!==void 0&&(A.maxLength=D),y!==void 0&&(A.encrypted=y),v!==void 0&&(A.encryptedMode=v),A}},n.preToSchema=function(){this._callControlHooks("preToSchema",this)},n.toSchema=function(){return this.preToSchema(),{id:this.id,type:this.type,props:G(this.props),fieldType:this.fieldType,controlType:this.controlType}},t.updateBasicControl=function(u,o){if(u==="setting"){if(o.add){var a;(a=this.setting).push.apply(a,ar(o.add))}o.remove&&this.removeSettingItem(o.remove),o.update}},sl(t,[{key:"rules",get:function(){var u=this.props.constructor.Rules;return u?new u(this.props):{}}}]),t}();He.controlName="\u63A7\u4EF6",He.controlIcon="icon",He.controlType="control",He.controlEventKeys=[],He.controlCustomEvents=[],He.setting=[],He.__is_control__=!0,He.removeSettingItem=Mu,He.updateSettingItem=Nu;function Mu(e){var t=this,n=Array.isArray(e)?e:[e];n.forEach(function(r){var u=typeof r!="string",o=t.setting.findIndex(function(c){return c.key===(u?r.key:r)});if(o!==-1){var a,l;u?t.setting[o].showItems=(a=t.setting[o].showItems)===null||a===void 0?void 0:a.filter(function(c){return!r.hideItems.includes(c)}):t.setting.splice(o,1),u&&!(!((l=t.setting[o].showItems)===null||l===void 0)&&l.length)&&t.setting.splice(o,1)}})}function Nu(e,t){var n=this,r=typeof e=="string"?[e]:e;r.forEach(function(u){var o=n.setting.find(function(d){return d.key===u});if(o){if(typeof t=="boolean")o.visible=t;else if(typeof t=="object"){var a,l=(a=t.type)!==null&&a!==void 0?a:"replace";if(l==="replace")o.showItems=t.showItems;else{var c;(c=o.showItems).push.apply(c,ar(t.showItems))}}}})}function dl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _u(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 pl(e,t,n){return t&&_u(e.prototype,t),n&&_u(e,n),e}function Dl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}var yt=function(){function t(n){dl(this,t),this.customEvents=[],this.parent=null;var r=Dl(this,t)?this.constructor:void 0,u=r.controlType,o=r.controlFieldType,a=r.name,l=r.controlCustomEvents;u||nu("The ".concat(a," controlType is not define"));var c;this.id=(c=n==null?void 0:n.id)!==null&&c!==void 0?c:qn(10);var d;this.type=(d=n==null?void 0:n.type)!==null&&d!==void 0?d:u,this.props=new lt(n==null?void 0:n.props),this.customEvents=l;var f;this.controlType=(f=n==null?void 0:n.controlType)!==null&&f!==void 0?f:"base";var s;this.fieldType=(s=n==null?void 0:n.fieldType)!==null&&s!==void 0?s:o;var h;this.pageStatus=(h=n==null?void 0:n.pageStatus)!==null&&h!==void 0?h:Gn.UNKNOWN}return pl(t,[{key:"rules",get:function(){var r=this.props.constructor.RuntimeRules;if(r){var u=new r(this.props);return Array.from(u)}return[]}}]),t}();yt.controlType="control",yt.__is_control__=!0,yt.controlCustomEvents=[];function gl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function sr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ln(e){return ln=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},ln(e)}function cr(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&&fr(e,t)}function vl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function ml(e,t){return t&&(yl(t)==="object"||typeof t=="function")?t:gl(e)}function fr(e,t){return fr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},fr(e,t)}var yl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function El(){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 lr(e){var t=El();return function(){var r=ln(e),u;if(t){var o=ln(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return ml(this,u)}}var Al=function(e){cr(n,e);var t=lr(n);function n(r){sr(this,n);var u;u=t.call(this,r),u.dataBind={},u.caption={type:"string",required:!0,message:$e.getMessage("pleaseEnterCaption")},u.isHideCaption={type:"boolean"},u.labelPosition={type:"enum",enum:["top","left"]},u.defaultState={type:"enum",enum:["default","readonly"]},u.required={type:"boolean"},u.captionTip={type:"string",required:!1,message:$e.getMessage("pleaseEnterCaptionTip")};var o={fieldCode:{type:"string",required:!0,message:$e.getMessage("pleaseEnterFieldCode")},dataCode:{type:"string",required:!0,message:$e.getMessage("pleaseEnterFieldCode")}};if(vl(r.dataBind,Pt))u.dataBind={type:"object",required:!0,fields:G(o),message:$e.getMessage("pleaseEnterFieldCode")};else{var a={type:"object",required:!0,fields:{},message:$e.getMessage("pleaseEnterFieldCode")};Object.keys(r.dataBind).forEach(function(l){a.fields[l]={type:"object",required:!0,fields:G(o),message:$e.getMessage("pleaseEnterFieldCode")}}),u.dataBind=a}return r.isShowCaptionTip&&(u.captionTip.required=!0),u}return n}(du),Cl=function(e){cr(n,e);var t=lr(n);function n(r){sr(this,n);var u;return u=t.call(this,r),u.push({type:"string",required:r.isHide?!1:r.required,message:r.requiredMessage!==""?r.requiredMessage:$e.getMessage("runtimeRequired",{caption:r.caption})}),u}return n}(pu),hr=function(e){cr(n,e);var t=lr(n);function n(r){sr(this,n);var u;u=t.call(this,r);var o;u.caption=(o=r==null?void 0:r.caption)!==null&&o!==void 0?o:"";var a;u.isHideCaption=(a=r==null?void 0:r.isHideCaption)!==null&&a!==void 0?a:!1;var l;u.isShowCaptionTip=(l=r==null?void 0:r.isShowCaptionTip)!==null&&l!==void 0?l:!1;var c;u.captionTip=(c=r==null?void 0:r.captionTip)!==null&&c!==void 0?c:"";var d;u.defaultState=(d=r==null?void 0:r.defaultState)!==null&&d!==void 0?d:"default";var f;u.labelPosition=(f=r==null?void 0:r.labelPosition)!==null&&f!==void 0?f:"top";var s;u.placeholder=(s=r==null?void 0:r.placeholder)!==null&&s!==void 0?s:"";var h;u.required=(h=r==null?void 0:r.required)!==null&&h!==void 0?h:!1;var p;u.requiredMessage=(p=r==null?void 0:r.requiredMessage)!==null&&p!==void 0?p:"",u.dataBind=new Pt(r==null?void 0:r.dataBind);var D;return u.defaultValue=(D=r==null?void 0:r.defaultValue)!==null&&D!==void 0?D:"",u}return n}(lt);hr.Rules=Al,hr.RuntimeRules=Cl;function Fl(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function wl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function hn(e){return hn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},hn(e)}function Bl(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&&dr(e,t)}function bl(e,t){return t&&(Sl(t)==="object"||typeof t=="function")?t:Fl(e)}function dr(e,t){return dr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},dr(e,t)}var Sl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function Ml(){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 Nl(e){var t=Ml();return function(){var r=hn(e),u;if(t){var o=hn(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return bl(this,u)}}var ze=function(e){Bl(n,e);var t=Nl(n);function n(r){wl(this,n);var u;return u=t.call(this,r),u.controlType="form",u.props=new hr(r==null?void 0:r.props),u}return n}(yt);function _l(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Il(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dn(e){return dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},dn(e)}function Ol(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&&pr(e,t)}function Rl(e,t){return t&&(xl(t)==="object"||typeof t=="function")?t:_l(e)}function pr(e,t){return pr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},pr(e,t)}var xl=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function $l(){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 Pl(e){var t=$l();return function(){var r=dn(e),u;if(t){var o=dn(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return Rl(this,u)}}var Iu=function(e){Ol(n,e);var t=Pl(n);function n(r){return Il(this,n),t.call(this,r)}return n}(lt);function Dr(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 Tl(e){if(Array.isArray(e))return Dr(e)}function Ll(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function jl(){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 Ou(e){return Tl(e)||Ll(e)||ql(e)||jl()}function ql(e,t){if(!!e){if(typeof e=="string")return Dr(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 Dr(e,t)}}function kl(e,t){var n;!((n=Object.getOwnPropertyDescriptors(e)[t])===null||n===void 0)&&n.enumerable&&Object.defineProperty(e,t,{enumerable:!1})}function Ru(e,t){e.parent=t,kl(e,"parent")}function Vl(e,t){e.forEach(function(n){Ru(n,t)})}var xu=Symbol("targetKey");function $u(e){var t;return(t=e[xu])!==null&&t!==void 0?t:e}function Pu(e,t){return Vl(e,t),new Proxy(e,{get:function(r,u){for(var o=arguments.length,a=new Array(o>2?o-2:0),l=2;l<o;l++)a[l-2]=arguments[l];var c;return u===xu?r:(c=Reflect).get.apply(c,[r,u].concat(Ou(a)))},set:function(r,u,o){for(var a=arguments.length,l=new Array(a>3?a-3:0),c=3;c<a;c++)l[c-3]=arguments[c];var d;if(vt(e)&&u==="length"&&o===e.length)return!0;var f=(d=Reflect).set.apply(d,[r,u,o].concat(Ou(l)));return ke(o)&&Ru(o,t),f}})}function pn(e,t,n,r){var u=r!=null?r:e,o=Pu($u(n!=null?n:[]),u);Object.defineProperty(e,t,{get:function(){return o},set:function(l){o=Pu($u(l),u)},enumerable:!0})}function gr(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 Ul(e){if(Array.isArray(e))return gr(e)}function Tu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function Lu(e,t,n,r,u,o,a){try{var l=e[o](a),c=l.value}catch(d){n(d);return}l.done?t(c):Promise.resolve(c).then(r,u)}function Hl(e){return function(){var t=this,n=arguments;return new Promise(function(r,u){var o=e.apply(t,n);function a(c){Lu(o,r,u,a,l,"next",c)}function l(c){Lu(o,r,u,a,l,"throw",c)}a(void 0)})}}function zl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Et(e,t,n){return typeof Reflect!="undefined"&&Reflect.get?Et=Reflect.get:Et=function(u,o,a){var l=t0(u,o);if(!!l){var c=Object.getOwnPropertyDescriptor(l,o);return c.get?c.get.call(a):c.value}},Et(e,t,n||e)}function nt(e){return nt=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},nt(e)}function Zl(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&&vr(e,t)}function Xl(e,t){return t!=null&&typeof Symbol!="undefined"&&t[Symbol.hasInstance]?!!t[Symbol.hasInstance](e):e instanceof t}function Jl(e){if(typeof Symbol!="undefined"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Gl(){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 Kl(e){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{},r=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(u){return Object.getOwnPropertyDescriptor(n,u).enumerable}))),r.forEach(function(u){Wl(e,u,n[u])})}return e}function Ql(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(u){return Object.getOwnPropertyDescriptor(e,u).enumerable})),n.push.apply(n,r)}return n}function Yl(e,t){return t=t!=null?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Ql(Object(t)).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}),e}function e0(e,t){return t&&(n0(t)==="object"||typeof t=="function")?t:Tu(e)}function vr(e,t){return vr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},vr(e,t)}function t0(e,t){for(;!Object.prototype.hasOwnProperty.call(e,t)&&(e=nt(e),e!==null););return e}function ju(e){return Ul(e)||Jl(e)||r0(e)||Gl()}var n0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function r0(e,t){if(!!e){if(typeof e=="string")return gr(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 gr(e,t)}}function u0(){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 i0(e){var t=u0();return function(){var r=nt(e),u;if(t){var o=nt(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return e0(this,u)}}var o0=1e4,qu=function(t){Zl(r,t);var n=i0(r);function r(o){zl(this,r);var a;a=n.call(this,o),a.controlType="layout";var l=Xl(this,r)?this.constructor:void 0,c=l.excludes,d=l.childrenMaxLength;return a.props=new Iu(o==null?void 0:o.props),pn(Tu(a),"children",o==null?void 0:o.children),a.excludes=G(c),a.childrenMaxLength=d,a}var u=r.prototype;return u.judgeExcludesChildren=function(a){return this.excludes===!1||Array.isArray(this.excludes)&&!this.excludes.includes(a)},u.judgeJoinChildren=function(a){var l=this.judgeExcludesChildren(a);return l&&this.childrenMaxLength>this.children.length},u.validate=function(a,l){var c=this,d=this,f=function(){return Et(nt(r.prototype),"validate",c)};return Hl(Re.default.mark(function s(){return Re.default.wrap(function(p){for(;;)switch(p.prev=p.next){case 0:return p.next=2,f().call(d,a,l);case 2:return p.next=4,Promise.all(d.children.map(function(D){return D.validate(a,l)}));case 4:return p.abrupt("return",!0);case 5:case"end":return p.stop()}},s)}))()},u.toDataBindModel=function(){var a=arguments.length>0&&arguments[0]!==void 0?arguments[0]:null,l=Et(nt(r.prototype),"toDataBindModel",this).call(this),c=l?[l]:[];return this.children.reduce(function(d,f){var s=f.toDataBindModel(a);if(Array.isArray(s)){var h=s.filter(function(p){return!!p});return ju(d).concat(ju(h))}return s&&d.push(s),d},c)},u.toSchema=function(){var a=Et(nt(r.prototype),"toSchema",this).call(this),l=this.children.map(function(c){var d=c.toSchema();return d});return Yl(Kl({},a),{children:l})},r}(He);qu.excludes=!1,qu.childrenMaxLength=o0;function ku(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function a0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Dn(e){return Dn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},Dn(e)}function s0(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&&mr(e,t)}function c0(e,t){return t&&(f0(t)==="object"||typeof t=="function")?t:ku(e)}function mr(e,t){return mr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},mr(e,t)}var f0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function l0(){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 h0(e){var t=l0();return function(){var r=Dn(e),u;if(t){var o=Dn(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return c0(this,u)}}var d0=function(e){s0(n,e);var t=h0(n);function n(r){a0(this,n);var u;return u=t.call(this,r),u.controlType="layout",u.props=new Iu(r==null?void 0:r.props),pn(ku(u),"children",r==null?void 0:r.children),u}return n}(yt);function Vu(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function gn(e){return gn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},gn(e)}function D0(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&&yr(e,t)}function g0(e,t){return t&&(v0(t)==="object"||typeof t=="function")?t:Vu(e)}function yr(e,t){return yr=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},yr(e,t)}var v0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof 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 y0(e){var t=m0();return function(){var r=gn(e),u;if(t){var o=gn(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return g0(this,u)}}var E0=function(e){D0(n,e);var t=y0(n);function n(r,u){p0(this,n);var o;return o=t.call(this,u),pn(Vu(o),"headers",u==null?void 0:u.headers,r),o}return n}(lt);z.LIST;function Er(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function A0(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Uu(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 C0(e,t,n){return t&&Uu(e.prototype,t),n&&Uu(e,n),e}function vn(e){return vn=Object.setPrototypeOf?Object.getPrototypeOf:function(n){return n.__proto__||Object.getPrototypeOf(n)},vn(e)}function F0(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&&Ar(e,t)}function w0(e,t){return t&&(B0(t)==="object"||typeof t=="function")?t:Er(e)}function Ar(e,t){return Ar=Object.setPrototypeOf||function(r,u){return r.__proto__=u,r},Ar(e,t)}var B0=function(e){return e&&typeof Symbol!="undefined"&&e.constructor===Symbol?"symbol":typeof e};function b0(){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 S0(e){var t=b0();return function(){var r=vn(e),u;if(t){var o=vn(this).constructor;u=Reflect.construct(r,arguments,o)}else u=r.apply(this,arguments);return w0(this,u)}}var mn=function(e){F0(n,e);var t=S0(n);function n(r){A0(this,n);var u;return u=t.call(this,r),u.controlType="list",u.props=new E0(Er(u),r==null?void 0:r.props),pn(Er(u),"children",r==null?void 0:r.children),u}return C0(n,[{key:"length",get:function(){return this.children.length}}]),n}(yt);function yn(e){return e.controlType===qe.LAYOUT||e.controlType===qe.WRAP||e.controlType===qe.LIST||e.controlType===qe.SEARCH}function kt(e,t){Array.isArray(e)&&e.map(n=>{if(n.type===J.SUBTABLE){const r=n.getChildrenFormControl();t(n,r)}else yn(n)?kt(n==null?void 0:n.children,t):n instanceof ze&&t(n)})}function Vt(e,t){Array.isArray(e)&&e.map(n=>{n.type===J.DATA_VIEW||n.type===J.SIMPLE_SEARCH?t(n):yn(n)&&Vt(n==null?void 0:n.children,t)})}class Cr extends nn{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 Hu(this._instance,r=>{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 rules(){let t={};return Vt(this._instance,n=>{t[n.id]=n.rules[0],kt(n.children,r=>{(r instanceof ze||r instanceof mn)&&M0(t[n.id].fields,r)})}),t}get antdRules(){let t={};return Vt(this._instance,n=>{t[n.id]=n.rules[0],kt(n.children,r=>{(r instanceof ze||r instanceof mn)&&N0(t[n.id].fields,r)})}),t}}function Hu(e,t){Array.isArray(e)?e.map(n=>{t(n),yn(n)&&Hu(n.children,t)}):t(e)}function Fr(e){return e.props.isHide?!0:e.parent===null?!1:Fr(e.parent)}function M0(e,t){if(!Fr(t)){if(t instanceof ze)e[t.id]=t.rules;else if(t.type===J.SUBTABLE){e[t.id]=t.rules;const n={type:"array",fields:{}};t.children.forEach((r,u)=>{ct(r.children,o=>{n.fields&&(n.fields[u]||(n.fields[u]={type:"object",required:!0,fields:{}}),n.fields[u].fields[o.id]=o.rules)})}),e[t.id].push(n)}}}function N0(e,t){Fr(t)||(t instanceof ze?e[t.id]=t.rules:t.type===J.SUBTABLE&&t.children.length&&(e[t.id]=[],t.children.forEach(n=>{let r={};ct(n.children,u=>{r[u.id]=u.rules}),e[t.id].push(r)})))}class _0{constructor(t){const{state:n,emptyState:r,databindMapping:u,controlidMapping:o,fieldCodeState:a}=I0(t.instance);this.emptyState=r,this.state=n,this.fieldCodeState=a,this.dataBindMapping=u,this.controlIdMapping=o}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(o=>{const a=this.controlIdMapping[o].dataView,l=this.controlIdMapping[o].children;l!==void 0&&Object.keys(l).map(c=>{c===t&&(this.state[a][o][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 o;return Object.keys(this.controlIdMapping).map(a=>{const l=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(d=>{var f;d===t&&(o=(f=this.state[l][a][n])==null?void 0:f[t])})}),o}else{let o=[];return Object.keys(this.controlIdMapping).map(a=>{const l=this.controlIdMapping[a].dataView,c=this.controlIdMapping[a].children;c!==void 0&&Object.keys(c).map(d=>{d===t&&this.state[l][a].map(f=>{o.push(f[t])})})}),o}}}getFieldCodeState(t){if(this.fieldCodeState[t]!==void 0)return this.fieldCodeState[t];{const r=this.controlIdMapping[t];if(r.dataBind.dataCode,r!==void 0){if(r.dataView===t)return this.fieldCodeState[t];{const u=r.dataBind.dataCode;return this.fieldCodeState[r.dataView][u]||this.fieldCodeState[r.dataView]}}}}getEmptyState(t){if(this.emptyState[t]!==void 0)return this.emptyState[t];{const r=this.controlIdMapping[t];if(r!==void 0)return this.emptyState[r.dataView][t];{let u;return Object.keys(this.controlIdMapping).map(o=>{const a=this.controlIdMapping[o].dataView,l=this.controlIdMapping[o].children;l!==void 0&&Object.keys(l).map(c=>{c===t&&(u=this.emptyState[a][o][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 o in u.children)if(o===t){n=u.children[o];break e}}}return n==null?void 0:n.dataBind}}function I0(e){let t={},n={},r={},u={},o={},a={};return Vt(e,l=>{const c=l.id,d={},f={},s={},h={};kt([l],(p,D)=>{O0(d,f,s,h,p),R0(o,c,p),x0(a,c,p)}),t[c]=d,n[c]=f,r[c]=s,u[c]=h}),{state:t,emptyState:n,databindMapping:o,controlidMapping:a,fieldCodeState:r,fieldCodeEmptyState:u}}function O0(e,t,n,r,u){var o,a;if(u instanceof ze)if(e[u.id]=G(u.props.defaultValue),t[u.id]=G(u.props.defaultValue),u.props.dataBind instanceof Ve)Object.keys(u.props.dataBind).forEach(function(l){const c=u.props.dataBind,d=u.props.defaultValue;let f=c[l].fieldCode;n[f]=G(d[l]),r[f]=G(d[l])});else{let l=u.props.dataBind.fieldCode;n[l]=G(u.props.defaultValue),r[l]=G(u.props.defaultValue)}else{const l={},c={};ct(u.props.headers,f=>{l[f.id]=G(f.props.defaultValue);const s=f.props.dataBind.fieldCode;f.props.dataBind instanceof Ve?Object.keys(f.props.dataBind).forEach(function(h){c[f.props.dataBind[h].fieldCode]=G(f.props.defaultValue[h])}):c[s]=G(f.props.defaultValue)}),e[u.id]=new Array((o=u.props.defaultRows)!=null?o:1).fill(0).map(()=>G(l)),t[u.id]=l;const d=u.props.datasourceBind.dataCode;n[d]=new Array((a=u.props.defaultRows)!=null?a:1).fill(0).map(()=>G(c)),r[d]=c}}function R0(e,t,n){if(n instanceof ze)n.props.dataBind instanceof Ve?Object.keys(n.props.dataBind).map(r=>{const u=n.props.dataBind,o=u[r].dataCode;o!==void 0&&(e[o]===void 0&&(e[o]={controlId:n.id,fields:[],dataViewId:t}),e[o].fields.push({fieldCode:u[r].fieldCode,controlId:n.id,dataBind:u,dataViewId:[t]}))}):(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]}));else{if(n.props.datasourceBind.dataCode===""){Ye(`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 r=n.id;ct(n.props.headers,u=>{u.props.dataBind instanceof Ve?Object.keys(u.props.dataBind).map(o=>{const a=u.props.dataBind,l=a[o].dataCode;e[l].fields.push({fieldCode:a[o].fieldCode,controlId:u.id,dataBind:a,dataViewId:[t,r]})}):e[u.props.dataBind.dataCode].fields.push({fieldCode:u.props.dataBind.fieldCode,controlId:u.id,dataBind:u.props.dataBind,dataViewId:[t,r]})})}}function x0(e,t,n){n instanceof ze?e[n.id]={dataBind:n.props.dataBind,options:[],dataView:t}:n.type===J.SUBTABLE&&(e[n.id]={dataBind:new Pt({dataCode:n.props.datasourceBind.dataCode,fieldCode:""}),dataView:t,children:{},options:[]},ct(n.props.headers,r=>{var u,o;Object.assign((o=(u=e[n.id])==null?void 0:u.children)!=null?o:{},{[r.id]:{dataBind:r.props.dataBind}})}))}const zu=["splice","push","shift","pop","unshift","reverse"],wr=Symbol("__engineProxy__"),Br=Symbol("__engineTarget__"),Wu=Symbol("__engineArrayBeforeSetCallbackFlag__"),Zu=Symbol("__engineProxyThisKey__"),Pe={type:"",args:[],callback:Xu};function Xu(){}j0();function $0(e,t,n,r,u){if(Pe.type){Pe.callback=u.bind(null,e,r);return}const o=Number(t);if(o>e.length){Ge(`Wrong array operations may cause unknown errors. It is recommended to use APIs such as ${zu.join(",")} for array operations`);return}if(!(Number.isNaN(o)&&t!=="length"))if(t==="length"){const l=n,c=e.length;if(l>e.length){Ge("Do not directly modify the length of the array data, please add new rows");return}return l===e.length?void 0:()=>u.call(null,e,r,"splice",[l,c-l])}else return o===e.length?()=>u.call(null,e,r,"push",[n]):()=>u.call(null,e,r,"splice",[o,1,n])}function P0(e,t,n){return{__engineProxy__:!0,get(r,u,o){return u===wr?!0:u===Br?r:Array.isArray(r)&&u===Wu?n:u===Zu?e:Reflect.get(r,u,o)},set(r,u,o,a){var h;let l=o;const c=r[u],d=e===""?u:e+"."+u;function f(p){if(typeof p=="object"&&p!==null)return p[wr]!==!0?En(p,t,n,d):En(p[Br],t,n,d)}l=(h=f(o))!=null?h:l;let s;if(Array.isArray(r)){const p=$0(r,u,o,e,t);s=Reflect.set(r,u,l,a),p&&p()}else{try{let p=l;if(l=n.call(null,r,d,l,c),p!==l){const D=f(l);D!==void 0&&(l=D)}}catch(p){return Yt(`${d} set error ${p}`),!0}s=Reflect.set(r,u,l,a),t.call(null,r,d,o,c)}return s}}}function En(e,t,n,r=""){if(Object.isFrozen(e))return e;for(let u in e){const o=r===""?u:r+"."+u,a=e[u];typeof a=="object"&&a!==null&&(e[u]=En(a,t,n,o))}return new Proxy(e,P0(r,t,n))}function Ju(e){const t=[];return e.forEach(n=>{t.push(n),n.controlType==="layout"&&t.push(...Ju(n.children))}),t}function br(e,t){if(t==="")return;const n=t.split(".");if(n.length===0)return;const r=n[0],u=n.slice(1),o=e.find(a=>a.id===r);return u.length===0?o:u.reduce((a,l)=>{var f,s;const c=Number(l);if(Number.isNaN(c)){const h=a!=null&&a.children?Ju(a.children):void 0,p=h==null?void 0:h.find(D=>D.id===l);return p||(a instanceof ze?a:void 0)}else return(s=(f=a==null?void 0:a.children)==null?void 0:f[c])!=null?s:a},o)}function T0(e,t){return["push","unshift"].includes(e)?t:e==="splice"?t.slice(2):[]}function L0(e,t,n){if(["push","unshift"].includes(e))return n;if(e==="splice")return t.slice(0,2).concat(n)}function j0(){zu.forEach(e=>{const t=Array.prototype[e];Array.prototype[e]=function(...n){var r;if(this[wr]){let u;const o=T0(e,n);if(o.length){const a=(r=this[Wu])==null?void 0:r.call(this,this[Br],this[Zu],o),l=L0(e,n,a);Pe.type=e,Pe.args=l,u=t.apply(this,l)}else Pe.type=e,Pe.args=n,u=t.apply(this,n);return typeof Pe.callback=="function"&&Pe.callback(e,n,u),Pe.type="",Pe.args=[],Pe.callback=Xu,u}else return t.apply(this,n)}})}class q0{constructor(){this.actionMap=new Map,this.buildinActions={},this.actionUtils={},this.sources={}}execAction(t,n,...r){return Xe(this,null,function*(){const u=this.actionMap.get(t);if(!!u)try{return yield u.func.call(null,n,...r)}catch(o){Yt(`${u.id} Exception during calling action: ${o}`)}})}addAction(t,n){this.actionMap.has(t)&&Ge("duplicated action key");const r=new k0(t,n);this.actionMap.set(t,r)}}class k0{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 G(n)}remove(t){this._dataStore.delete(t)}getRemoteData(t){return Xe(this,null,function*(){return this.executer===void 0?(Yt("\u672A\u521D\u59CB\u5316executer"),[]):this.executer(t)})}}class rt{}class Ut extends rt{validate(t){return be(t)}transform(t){if(t==null)return"";if(!ke(t)&&!ou(t))return String(t);if(af(t))return JSON.stringify(t);throw`${t} is not a string`}}class Sr extends rt{validate(t){return en(t)||t===""}transform(t){if(t==null)return"";const n=!ke(t)&&!ou(t)?Number(t):void 0;if(!Number.isNaN(n)&&n!==void 0)return n;throw`${t} is not a number`}}class U0 extends rt{validate(t){return sf(t)}transform(t){if(t==null)return[];function n(r){return r.map(u=>u?String(u):"")}if(vt(t))return n(t);if(be(t)&&au(t))try{const r=JSON.parse(t);if(Array.isArray(r))return n(r)}catch(r){}return[String(t)]}}class H0 extends rt{validate(t){return cf(t)}transform(t){if(t==null)return[];function n(u){return u.map(o=>!o&&o!==0?"":Number(o)).filter(o=>o===""||!Number.isNaN(o))}if(vt(t))return n(t);if(be(t)&&au(t))try{const u=JSON.parse(t);if(vt(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 rt{validate(t){return t instanceof rn||ke(t)&&"amount"in t&&en(t.amount)&&"currency"in t&&be(t.currency)}transform(t,n){if(t==null||t==="")return new rn({currency:n==null?void 0:n.currency});let r;if(ke(t)&&(r=new rn(ae(ae({},n),t))),be(t)&&tn(t))try{const u=JSON.parse(t);r=new rn(ae(ae({},n),u))}catch(u){}if(r){const u=new Sr,o=new Ut;return u.validate(r.amount)||(r.amount=u.transform(r.amount)),o.validate(r.currency)||(r.currency=o.transform(r.currency)),r}throw`${t} is not a { amount: number, currency: string } object`}}class W0 extends rt{validate(t){return t instanceof un||ke(t)&&"min"in t&&be(t.min)&&"max"in t&&be(t.max)}transform(t,n){if(t==null||t==="")return new un;let r;if(ke(t)&&(r=new un(ae(ae({},n),t))),be(t)&&tn(t))try{const u=JSON.parse(t);r=new un(ae(ae({},n),u))}catch(u){}if(r){const u=new Ut;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 rt{validate(t){return t instanceof an||ke(t)&&"result"in t&&en(t.result)&&"unit"in t&&be(t.unit)}transform(t,n){if(t==null||t==="")return new an({unit:n==null?void 0:n.unit});let r;if(ke(t)&&(r=new an(ae(ae({},n),t))),be(t)&&tn(t))try{const u=JSON.parse(t);r=new an(ae(ae({},n),u))}catch(u){}if(r){const u=new Sr,o=new Ut;return u.validate(r.result)||(r.result=u.transform(r.result)),o.validate(r.unit)||(r.unit=o.transform(r.unit)),r}throw`${t} is not a { result: string, unit: string } object`}}class X0 extends rt{validate(t){return t instanceof on}transform(t,n){if(t==null||t==="")return new on;let r;if(ke(t)&&(r=new on(ae(ae({},n),Wn.exports.camelizeKeys(t)))),be(t)&&tn(t))try{const u=JSON.parse(t);r=new on(ae(ae({},n),Wn.exports.camelizeKeys(u)))}catch(u){}if(r){const u=new Ut;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 z.VARCHAR:case z.TIMESTAMP:case z.TEXT:case z.RELATION:case z.AUTO_NUMBER:n=new Ut;break;case z.DECIMAL:n=new Sr;break;case z.EMPLOYEES:case z.DEPARTMENTS:case z.IMAGE:case z.FILE:case z.ARRAY:n=new U0;break;case z.MONEY:n=new z0;break;case z.TIMESCOPE:n=new W0;break;case z.CALC:n=new Z0;break;case z.DECIMAL_RANGE:n=new H0;break;case z.ADDRESS:n=new X0;break}return n}}function G0(e){if(["min","max","currency","unit"].includes(e))return z.VARCHAR;if(["result","amount"].includes(e))return z.DECIMAL}function Gu(e,t,n,r){var a;let u=(a=G0(t))!=null?a:e,o=J0.getValueChecker(u);if(!o||o.validate(n))return n;try{const l=o.transform(n,r);return l!==void 0?l:n}catch(l){throw`${t} ${l}`}}function K0(e,t,n){return Object.entries(e).reduce((r,[u,o])=>{const a=t[u];return r[u]=Gu(o,u,a,n[u]),r},Object.assign({},t))}typeof window!="undefined"&&(window.engines={});let At=null,Ht="";class Mr extends cu{constructor(t){super(),this.isMounted=!1,this.id=qn(8),this.__pluginsApplied=!1,this.actionManager=new q0,this._jobTasks=[],this.createControlInstance=this.createInstance,this.$options=Object.freeze(t);const{autoMount:n=!0,schema:r,beforeCreateInstance:u,externalParams:o,language:a=Jr,debug:l=!1}=this.$options;$e.setLocale(a),this.debug=l,this.runtime=new Cr({schema:r,beforeCreateInstance:u}),this.externalParams=o,this.store=new _0({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 Cr.register(...t)}static judgeControlIsRegistered(t){return Cr.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=En(this.store.state,this._proxyStateCallback.bind(this),this._proxyStateBeforeSetCallback.bind(this))}_proxyStateBeforeSetCallback(t,n,r,u){const o=br(this.runtime.flatInstances,n);if(!o)return r;if(this.assertInstance(o,J.SUBTABLE)){const c=o.props.headers.reduce((d,f)=>{const s=f.children[0];return s&&s instanceof ze&&(d[s.id]=s.fieldType),d},{});return r===null?[]:r.map(d=>K0(c,d,this.getEmptyState(o.id)))}const a=n.split("."),l=a[a.length-1];try{return Gu(o.fieldType,l,r,u)}catch(c){throw Ye(`the id=${o.id}'s instance setState error, %o ${c}.`,r),c}}_proxyStateCallback(t,n,r,u,o){Array.isArray(t)?this._handlerArrayUpdate(t,n,r,u,o):this._handlerObjectUpdate(t,n,r,u)}_handlerArrayUpdate(t,n,r,u,o){const a=br(this.runtime.flatInstances,n);if(!(a instanceof mn))return;const l=h=>{const p=[];for(let D=0;D<h;D++){const g=this.listControlCreateRow(a,"subtable-row");g&&p.push(g)}return p},c=At;let d=[],f=[],s=[];if(r&&u){switch(r){case"push":case"unshift":const h=u.length;d=l(h),f=u,a.children[r](...d),this.runtime.getFlatInstances();break;case"splice":if(u.length>2){const p=u.length-2,D=u.slice(2);d=l(p),f=D;const g=u[0],y=u[1];a.children[r](g,y,...d),this.runtime.getFlatInstances()}else a.children[r](...u),this.runtime.getFlatInstances();break;default:a.children[r](...u),this.runtime.getFlatInstances();break}r==="splice"?s=o:["pop","shift"].includes(r)&&(s=[o]),this.emit("list-change",{instance:a,value:this.getState(a.id),options:Object.assign({},c,{changed:d,data:f,deleted:s!=null?s:[]})}),At=null}}_handlerObjectUpdate(t,n,r,u){const o=br(this.runtime.flatInstances,n);if(!o)return;const a=this.getInstanceRowIndex(o),l=At||{};if(o instanceof mn){o.children.length=0;const c=r;let d=[];for(let f=0;f<c.length;f++){const s=this.listControlCreateRow(o,"subtable-row");s&&d.push(s)}o.children.push(...d),this.runtime.getFlatInstances(),this.emit("list-change",{instance:o,value:r,options:Xr(ae({},l),{changed:d,data:c,deleted:u!=null?u:[]})})}else this.emit("change",{instance:o,value:this.getState(o.id,a),rowIndex:a,options:Xr(ae({},l),{oldValue:u})})}applyPlugins(){this.__pluginsApplied||(this.__plugins.forEach(t=>{var n;try{Ht=(n=t.pluginName)!=null?n:t.constructor.name,t.apply(this)}catch(r){Ge(`${Ht} Plugin apply Error
2
+ ${r}`)}finally{Ht=""}}),this.__pluginsApplied=!0)}listControlCreateRow(t,n){const r=this.runtime.createControlInstance(n);if(!!r){if(r instanceof d0){const u=G(t.props.headers),o=this.createControl(u);r.children.push(...o)}return r}}listControlAddRow(t,n="subtable-row"){const r=this.listControlCreateRow(t,n);!r||t.children.push(r)}emit(t,n){return Xe(this,null,function*(){if(t==="engine-mounted"){if(this.isMounted)return Ye("The engine-mounted life cycle can only be triggered once"),Promise.resolve([]);if(this._jobTasks.length){console.time("engine-mounted need wait");const a=[...this._jobTasks];yield Promise.all(a),console.timeEnd("engine-mounted need wait")}this.isMounted=!0}let r,u;this.isMounted||(u=new Promise(a=>{r=a}),this._jobTasks.push(u));const o=yield fo(Mr.prototype,this,"emit").call(this,t,n);return r&&u&&(r(),this._jobTasks.splice(this._jobTasks.indexOf(u),1)),o})}on(t,n){return Ht&&(n.applyingPluginName=Ht),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)}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)}getFieldCodeState(t){return t===void 0?this.store.fieldCodeState:this.store.getFieldCodeState(t)}getEmptyState(t){return G(t===void 0?this.store.emptyState:this.store.getEmptyState(t))}setPayloadOptions(t){At=t}setState(t,n,r,u){At=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),At=null}setStates(t,n,r){let u=t;Object.keys(u).forEach(o=>{Object.entries(this.store.controlIdMapping).forEach(([a,l])=>{if(l.dataView===o){const c=u[o][a];c!==void 0&&this.setState(a,c,n,r)}else(a===o||l.children&&l.children[o])&&u[o]!==void 0&&this.setState(o,u[o],n,r)})})}getField(t,n,r){if(!n){const c=this.getDataBindMapping(t);if(c){const{controlId:d}=c;return this.getState(d)}return}const u=this.getDataBindMapping(t,n);if(!u)return;const{dataBind:o,controlId:a}=u,l=this.getState(a,r);return o instanceof Ve?Object.entries(o).reduce((c,[d,f])=>f.fieldCode===n?c[d]:c,l):l}getData(t){if(t){const n=this.getDataBindMapping(t);if(n){const{controlId:r}=n;return this.getFieldCodeState(r)}}}setField(t,n,r,u,o){var d;const a=this.getDataBindMapping(t,n);if(!a)return;const{dataBind:l,controlId:c}=a;if(l instanceof Ve){const f=(d=G(this.getState(c,u)))!=null?d:this.getEmptyState(c),s=Object.entries(l).reduce((h,[p,D])=>(D.fieldCode===n&&(h[p]=r),h),f);this.setState(c,s,u,o)}else this.setState(c,r,u,o)}setFields(t,n,r,u){const o=this.getDataBindMapping(t);if(!o)return;let a=[];o.fields.forEach(l=>{var s;const{dataBind:c,controlId:d,fieldCode:f}=l;if(!a.includes(f)&&!!Object.hasOwnProperty.call(n,f))if(c instanceof Ve){const h=(s=G(this.getState(d,r)))!=null?s:this.getEmptyState(d),p=Object.entries(c).reduce((D,[g,y])=>{a.push(y.fieldCode);const v=n[y.fieldCode];return v!==void 0&&(D[g]=v),D},h);this.setState(l.controlId,p,r,u)}else this.setState(d,n[f],r,u)})}buildFields(t,n){const r=this.getDataBindMapping(t);if(!r)return;let u=[];const o={};return r.fields.forEach(a=>{const{dataBind:l,controlId:c,fieldCode:d}=a;if(!u.includes(d)&&!!Object.hasOwnProperty.call(n,d))if(l instanceof Ve){const f=this.getEmptyState(c);o[a.controlId]=Object.entries(l).reduce((s,[h,p])=>{u.push(p.fieldCode);const D=n[p.fieldCode];return D!==void 0&&(s[h]=D),s},f)}else o[c]=n[d]}),o}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=>{const o=t[u];if(Array.isArray(o))o.map(a=>{const l=this.getDataBindMapping(u);if(!l)return;let c=G(this.store.emptyState[l.dataViewId][l.controlId]),d=[];Object.keys(a).map(f=>{var h,p,D;if(d.includes(f))return;const s=(p=(h=this.store.dataBindMapping[u])==null?void 0:h.fields)==null?void 0:p.find(g=>g.fieldCode===f);if(s){if(s.dataBind instanceof Pt&&a[f]!==void 0)c[s.controlId]=a[f];else if(s.dataBind instanceof Ve){let g=G((D=this.getEmptyState(s.controlId))!=null?D:{});Object.keys(s.dataBind).map(y=>{const v=s.dataBind[y];a[v.fieldCode]!==void 0&&(g[y]=a[v.fieldCode]),d.push(v.fieldCode)}),c[s.controlId]=g}}}),r[l.dataViewId]||(r[l.dataViewId]={}),r[l.dataViewId][l.controlId]||(r[l.dataViewId][l.controlId]=[]),r[l.dataViewId][l.controlId].push(c)});else if(o){let a=[];Object.keys(o).map(l=>{var d;if(a.includes(l))return;const c=this.getDataBindMapping(u,l);if(c){if(r[c.dataViewId[0]]||(r[c.dataViewId[0]]={}),c.dataBind instanceof Pt&&o[l]!==void 0)r[c.dataViewId[0]][c.controlId]=o[l];else if(c.dataBind instanceof Ve){let f=G((d=this.getEmptyState(c.controlId))!=null?d:{});Object.keys(c.dataBind).map(s=>{const h=c.dataBind[s];o[h.fieldCode]!==void 0&&(f[s]=o[h.fieldCode]),a.push(h.fieldCode)}),r[c.dataViewId[0]][c.controlId]=f}}})}}),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=this.runtime.flatInstances.filter(o=>o.id===t);if(n)if(r.length){const o=r[0];if(this.getInstanceRowIndex(o)!==void 0){const a=this.getInstanceInSubtableHeader(o);a&&r.unshift(a)}}else{const o=this.getControlIdMapping(),[a]=(u=Object.entries(o).find(([l,c])=>c.children&&t in c.children))!=null?u:[];if(a){const c=this.getInstance(a).props.headers.find(d=>d.children.find(f=>f.id===t));if(c){const d=c.children.find(f=>f.id===t);d&&r.unshift(d)}}}return r}setInstance(t,n,r,u){try{let o;if(typeof t=="string"?o=this.getInstance(t,u):o=t,!o)return;this.debugLog("[%o]: \u4FEE\u6539instance: %o\u7684%o\u5C5E\u6027\uFF0C\u4FEE\u6539\u7684\u503C\u4E3A%o\u3002",o.id,o,n,r),uu(o.props,n,r),this.schemaEvent("schema-change",{instance:o,props:n,value:r})}catch(o){throw o}}getControlIdMapping(){return this.store.controlIdMapping}getDataBindMapping(t,n){if(!t&&!n)return this.store.dataBindMapping;const r=this.store.dataBindMapping[t];if(!r){Ye(`No corresponding dataCode=${t} was found`);return}if(!n)return r;const u=r.fields.find(o=>o.fieldCode===n);if(!u){Ye(`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 be(n)?t.type===n:n.includes(t.type)}getInstanceRowIndex(t){if(!t.parent)return;let n;if(this.assertInstance(t.parent,J.SUBTABLE))if(this.assertInstance(t,J.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,J.SUBTABLE_COLUMN)?t:this.getInstanceParentControl(t,J.SUBTABLE_COLUMN);if(!r)return;const o=this.getInstanceParentControl(t,J.SUBTABLE).props.headers.find(a=>a.id===r.id);if(!!o)return o.children.find(a=>a.id===t.id)}setControlConfig(...t){return this.runtime.registerControlConfig(...t)}getControlConfig(t){return this.runtime.getControlConfig(t)}}class Q0{}class Y0{constructor(t){this.config=t}apply(t){this.engine=t;const n=this.config;if(!n)return;const r=Ku(n,t);if(!r)return;const u=t.getAction();for(let[o,a]of Object.entries(r.funcMap))u.addAction(o,a)}}function Ku(e,t){if(!e.module||!e.module.compiled)return;const n=e.module.compiled,r={exports:{ctx:t,utils:t.getAction().actionUtils}};try{new Function("module","exports",n).call(r,r,r.exports)}catch(a){Ge(a.message+". fail to parse the module"),process.env.NODE_ENV!=="production"&&Ge("fail to parse the module")}const u={},o={};for(const[a,l]of Object.entries(r.exports))typeof l=="function"?u[a]=l:o[a]=l;return{funcMap:u,variables:o}}const eh={"engine-mounted":"did_mount","engine-submit":"will_submit","engine-submit-params":"do_submit","engine-submitted":"did_submit"};class th{constructor(t){this.config=t}apply(t){this.engine=t,Object.entries(eh).forEach(([n,r])=>{t.on(n,u=>Xe(this,null,function*(){const o=yield this.callLifecycleEvent(r,u);return o.includes(!1)?!1:o}))})}callLifecycleEvent(t,n){return Xe(this,null,function*(){const r=this.config;return!r||!Array.isArray(r[t])?[]:yield Promise.all(r[t].map(o=>Xe(this,null,function*(){return yield this.engine.getAction().execAction(o,n)})))})}}class nh{constructor(t){this.config=t}apply(t){this.engine=t,fu.events.forEach(n=>{n.code&&n.key&&this.engineAddEventListener(n.code,n.key)})}engineAddEventListener(t,n){this.engine.on(t,r=>Xe(this,null,function*(){if(!(t==="change"&&!this.engine.isMounted)&&r.instance!==void 0)return yield this.callControlEvent(n,r)}))}callControlEvent(t,n){return Xe(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(o=>Xe(this,null,function*(){return yield this.engine.getAction().execAction(o,n)})));return u.includes(!1)?!1:u})}}function Nr(){return Nr=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},Nr.apply(this,arguments)}var Qu={epsilon:1e-12,matrix:"Matrix",number:"number",precision:64,predictable:!1,randomSeed:null};function ve(e){return typeof e=="number"}function ut(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 Yu(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isComplex===!0||!1}function ei(e){return e&&typeof e=="object"&&Object.getPrototypeOf(e).isFraction===!0||!1}function ti(e){return e&&e.constructor.prototype.isUnit===!0||!1}function An(e){return typeof e=="string"}var Me=Array.isArray;function zt(e){return e&&e.constructor.prototype.isMatrix===!0||!1}function _r(e){return Array.isArray(e)||zt(e)}function rh(e){return e&&e.isDenseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function uh(e){return e&&e.isSparseMatrix&&e.constructor.prototype.isMatrix===!0||!1}function ih(e){return e&&e.constructor.prototype.isRange===!0||!1}function ni(e){return e&&e.constructor.prototype.isIndex===!0||!1}function oh(e){return typeof e=="boolean"}function ah(e){return e&&e.constructor.prototype.isResultSet===!0||!1}function sh(e){return e&&e.constructor.prototype.isHelp===!0||!1}function ch(e){return typeof e=="function"}function fh(e){return e instanceof Date}function lh(e){return e instanceof RegExp}function hh(e){return!!(e&&typeof e=="object"&&e.constructor===Object&&!Yu(e)&&!ei(e))}function dh(e){return e===null}function ph(e){return e===void 0}function Dh(e){return e&&e.isAccessorNode===!0&&e.constructor.prototype.isNode===!0||!1}function gh(e){return e&&e.isArrayNode===!0&&e.constructor.prototype.isNode===!0||!1}function vh(e){return e&&e.isAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function mh(e){return e&&e.isBlockNode===!0&&e.constructor.prototype.isNode===!0||!1}function yh(e){return e&&e.isConditionalNode===!0&&e.constructor.prototype.isNode===!0||!1}function Eh(e){return e&&e.isConstantNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ah(e){return e&&e.isFunctionAssignmentNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ch(e){return e&&e.isFunctionNode===!0&&e.constructor.prototype.isNode===!0||!1}function Fh(e){return e&&e.isIndexNode===!0&&e.constructor.prototype.isNode===!0||!1}function wh(e){return e&&e.isNode===!0&&e.constructor.prototype.isNode===!0||!1}function Bh(e){return e&&e.isObjectNode===!0&&e.constructor.prototype.isNode===!0||!1}function bh(e){return e&&e.isOperatorNode===!0&&e.constructor.prototype.isNode===!0||!1}function Sh(e){return e&&e.isParenthesisNode===!0&&e.constructor.prototype.isNode===!0||!1}function Mh(e){return e&&e.isRangeNode===!0&&e.constructor.prototype.isNode===!0||!1}function Nh(e){return e&&e.isRelationalNode===!0&&e.constructor.prototype.isNode===!0||!1}function _h(e){return e&&e.isSymbolNode===!0&&e.constructor.prototype.isNode===!0||!1}function Ih(e){return e&&e.constructor.prototype.isChain===!0||!1}function Ir(e){var t=typeof e;return t==="object"?e===null?"null":ut(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function ht(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 ht(n)});if(e instanceof Date)return new Date(e.valueOf());if(ut(e))return e;if(e instanceof RegExp)throw new TypeError("Cannot clone "+e);return Oh(e,ht)}function Oh(e,t){var n={};for(var r in e)Cn(e,r)&&(n[r]=t(e[r]));return n}function Or(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(!Or(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)||!Or(e[n],t[n]))return!1;for(n in t)if(!(n in e))return!1;return!0}else return e===t}}function Cn(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Rh(e,t){for(var n={},r=0;r<t.length;r++){var u=t[r],o=e[u];o!==void 0&&(n[u]=o)}return n}var xh=["Matrix","Array"],$h=["number","BigNumber","Fraction"],ri=function(t){if(t)throw new Error(`The global config is readonly.
3
+ Please create a mathjs instance if you want to change the default configuration.
4
+ Example:
5
+
6
+ import { create, all } from 'mathjs';
7
+ const mathjs = create(all);
8
+ mathjs.config({ number: 'BigNumber' });
9
+ `);return Object.freeze(Qu)};Nr(ri,Qu,{MATRIX_OPTIONS:xh,NUMBER_OPTIONS:$h});function Te(e,t){var n=typeof Symbol!="undefined"&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Ph(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 o=!0,a=!1,l;return{s:function(){n=n.call(e)},n:function(){var d=n.next();return o=d.done,d},e:function(d){a=!0,l=d},f:function(){try{!o&&n.return!=null&&n.return()}finally{if(a)throw l}}}}function Ph(e,t){if(!!e){if(typeof e=="string")return ui(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 ui(e,t)}}function ui(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 Ct(e){return Ct=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},Ct(e)}function ii(){return!0}function _e(){return!1}function Ft(){}var oi="Argument is not a typed-function.";function ai(){function e(m){return Ct(m)==="object"&&m!==null&&m.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:ii,isAny:!0},r,u,o=0,a={createCount:0};function l(m){var E=r.get(m);if(E)return E;var C='Unknown type "'+m+'"',w=m.toLowerCase(),M,N=Te(u),O;try{for(N.s();!(O=N.n()).done;)if(M=O.value,M.toLowerCase()===w){C+='. Did you mean "'+M+'" ?';break}}catch(b){N.e(b)}finally{N.f()}throw new TypeError(C)}function c(m){for(var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"any",C=E?l(E).index:u.length,w=[],M=0;M<m.length;++M){if(!m[M]||typeof m[M].name!="string"||typeof m[M].test!="function")throw new TypeError("Object with properties {name: string, test: function} expected");var N=m[M].name;if(r.has(N))throw new TypeError('Duplicate type name "'+N+'"');w.push(N),r.set(N,{name:N,test:m[M].test,isAny:m[M].isAny,index:C+M,conversionsTo:[]})}var O=u.slice(C);u=u.slice(0,C).concat(w).concat(O);for(var b=C+w.length;b<u.length;++b)r.get(u[b]).index=b}function d(){r=new Map,u=[],o=0,c([n],!1)}d(),c(t);function f(){var m,E=Te(u),C;try{for(E.s();!(C=E.n()).done;)m=C.value,r.get(m).conversionsTo=[]}catch(w){E.e(w)}finally{E.f()}o=0}function s(m){var E=u.filter(function(C){var w=r.get(C);return!w.isAny&&w.test(m)});return E.length?E:["any"]}function h(m){return m&&typeof m=="function"&&"_typedFunctionData"in m}function p(m,E,C){if(!h(m))throw new TypeError(oi);var w=C&&C.exact,M=Array.isArray(E)?E.join(","):E,N=F(M),O=y(N);if(!w||O in m.signatures){var b=m._typedFunctionData.signatureMap.get(O);if(b)return b}var I=N.length,j;if(w){j=[];var U;for(U in m.signatures)j.push(m._typedFunctionData.signatureMap.get(U))}else j=m._typedFunctionData.signatures;for(var x=0;x<I;++x){var me=N[x],he=[],De=void 0,oe=Te(j),Fe;try{for(oe.s();!(Fe=oe.n()).done;){De=Fe.value;var ce=_(De.params,x);if(!(!ce||me.restParam&&!ce.restParam)){if(!ce.hasAny){var Oe=function(){var we=S(ce);if(me.types.some(function(Dt){return!we.has(Dt.name)}))return"continue"}();if(Oe==="continue")continue}he.push(De)}}}catch(we){oe.e(we)}finally{oe.f()}if(j=he,j.length===0)break}var ye,Ee=Te(j),pt;try{for(Ee.s();!(pt=Ee.n()).done;)if(ye=pt.value,ye.params.length<=I)return ye}catch(we){Ee.e(we)}finally{Ee.f()}throw new TypeError("Signature not found (signature: "+(m.name||"unnamed")+"("+y(N,", ")+"))")}function D(m,E,C){return p(m,E,C).implementation}function g(m,E){var C=l(E);if(C.test(m))return m;var w=C.conversionsTo;if(w.length===0)throw new Error("There are no conversions to "+E+" defined.");for(var M=0;M<w.length;M++){var N=l(w[M].from);if(N.test(m))return w[M].convert(m)}throw new Error("Cannot convert "+m+" to "+E)}function y(m){var E=arguments.length>1&&arguments[1]!==void 0?arguments[1]:",";return m.map(function(C){return C.name}).join(E)}function v(m){var E=m.indexOf("...")===0,C=E?m.length>3?m.slice(3):"any":m,w=C.split("|").map(function(b){return l(b.trim())}),M=!1,N=E?"...":"",O=w.map(function(b){return M=b.isAny||M,N+=b.name+"|",{name:b.name,typeIndex:b.index,test:b.test,isAny:b.isAny,conversion:null,conversionIndex:-1}});return{types:O,name:N.slice(0,-1),hasAny:M,hasConversion:!1,restParam:E}}function A(m){var E=m.types.map(function(O){return O.name}),C=kp(E),w=m.hasAny,M=m.name,N=C.map(function(O){var b=l(O.from);return w=b.isAny||w,M+="|"+O.from,{name:O.from,typeIndex:b.index,test:b.test,isAny:b.isAny,conversion:O,conversionIndex:O.index}});return{types:m.types.concat(N),name:M,hasAny:w,hasConversion:N.length>0,restParam:m.restParam}}function S(m){return m.typeSet||(m.typeSet=new Set,m.types.forEach(function(E){return m.typeSet.add(E.name)})),m.typeSet}function F(m){var E=[];if(typeof m!="string")throw new TypeError("Signatures must be strings");var C=m.trim();if(C==="")return E;for(var w=C.split(","),M=0;M<w.length;++M){var N=v(w[M].trim());if(N.restParam&&M!==w.length-1)throw new SyntaxError('Unexpected rest parameter "'+w[M]+'": only allowed for the last parameter');if(N.types.length===0)return null;E.push(N)}return E}function R(m){var E=_t(m);return E?E.restParam:!1}function P(m){if(!m||m.types.length===0)return ii;if(m.types.length===1)return l(m.types[0].name).test;if(m.types.length===2){var E=l(m.types[0].name).test,C=l(m.types[1].name).test;return function(N){return E(N)||C(N)}}else{var w=m.types.map(function(M){return l(M.name).test});return function(N){for(var O=0;O<w.length;O++)if(w[O](N))return!0;return!1}}}function T(m){var E,C,w;if(R(m)){E=Qi(m).map(P);var M=E.length,N=P(_t(m)),O=function(I){for(var j=M;j<I.length;j++)if(!N(I[j]))return!1;return!0};return function(I){for(var j=0;j<E.length;j++)if(!E[j](I[j]))return!1;return O(I)&&I.length>=M+1}}else return m.length===0?function(I){return I.length===0}:m.length===1?(C=P(m[0]),function(I){return C(I[0])&&I.length===1}):m.length===2?(C=P(m[0]),w=P(m[1]),function(I){return C(I[0])&&w(I[1])&&I.length===2}):(E=m.map(P),function(I){for(var j=0;j<E.length;j++)if(!E[j](I[j]))return!1;return I.length===E.length})}function _(m,E){return E<m.length?m[E]:R(m)?_t(m):null}function $(m,E){var C=_(m,E);return C?S(C):new Set}function Z(m){return m.conversion===null||m.conversion===void 0}function V(m,E){var C=new Set;return m.forEach(function(w){var M=$(w.params,E),N,O=Te(M),b;try{for(O.s();!(b=O.n()).done;)N=b.value,C.add(N)}catch(I){O.e(I)}finally{O.f()}}),C.has("any")?["any"]:Array.from(C)}function Y(m,E,C){var w,M,N=m||"unnamed",O=C,b,I=function(){var oe=[];if(O.forEach(function(ce){var Oe=_(ce.params,b),ye=P(Oe);(b<ce.params.length||R(ce.params))&&ye(E[b])&&oe.push(ce)}),oe.length===0){if(M=V(O,b),M.length>0){var Fe=s(E[b]);return w=new TypeError("Unexpected type of argument in function "+N+" (expected: "+M.join(" or ")+", actual: "+Fe.join(" | ")+", index: "+b+")"),w.data={category:"wrongType",fn:N,index:b,actual:Fe,expected:M},{v:w}}}else O=oe};for(b=0;b<E.length;b++){var j=I();if(Ct(j)==="object")return j.v}var U=O.map(function(De){return R(De.params)?1/0:De.params.length});if(E.length<Math.min.apply(null,U))return M=V(O,b),w=new TypeError("Too few arguments in function "+N+" (expected: "+M.join(" or ")+", index: "+E.length+")"),w.data={category:"tooFewArgs",fn:N,index:E.length,expected:M},w;var x=Math.max.apply(null,U);if(E.length>x)return w=new TypeError("Too many arguments in function "+N+" (expected: "+x+", actual: "+E.length+")"),w.data={category:"tooManyArgs",fn:N,index:E.length,expectedLength:x},w;for(var me=[],he=0;he<E.length;++he)me.push(s(E[he]).join("|"));return w=new TypeError('Arguments of type "'+me.join(", ")+'" do not match any of the defined signatures of function '+N+"."),w.data={category:"mismatch",actual:me},w}function Q(m){for(var E=u.length+1,C=0;C<m.types.length;C++)Z(m.types[C])&&(E=Math.min(E,m.types[C].typeIndex));return E}function ne(m){for(var E=o+1,C=0;C<m.types.length;C++)Z(m.types[C])||(E=Math.min(E,m.types[C].conversionIndex));return E}function ee(m,E){if(m.hasAny){if(!E.hasAny)return 1}else if(E.hasAny)return-1;if(m.restParam){if(!E.restParam)return 1}else if(E.restParam)return-1;if(m.hasConversion){if(!E.hasConversion)return 1}else if(E.hasConversion)return-1;var C=Q(m)-Q(E);if(C<0)return-1;if(C>0)return 1;var w=ne(m)-ne(E);return w<0?-1:w>0?1:0}function W(m,E){var C=m.params,w=E.params,M=_t(C),N=_t(w),O=R(C),b=R(w);if(O&&M.hasAny){if(!b||!N.hasAny)return 1}else if(b&&N.hasAny)return-1;var I=0,j=0,U,x=Te(C),me;try{for(x.s();!(me=x.n()).done;)U=me.value,U.hasAny&&++I,U.hasConversion&&++j}catch(Xt){x.e(Xt)}finally{x.f()}var he=0,De=0,oe=Te(w),Fe;try{for(oe.s();!(Fe=oe.n()).done;)U=Fe.value,U.hasAny&&++he,U.hasConversion&&++De}catch(Xt){oe.e(Xt)}finally{oe.f()}if(I!==he)return I-he;if(O&&M.hasConversion){if(!b||!N.hasConversion)return 1}else if(b&&N.hasConversion)return-1;if(j!==De)return j-De;if(O){if(!b)return 1}else if(b)return-1;var ce=(C.length-w.length)*(O?-1:1);if(ce!==0)return ce;for(var Oe=[],ye=0,Ee=0;Ee<C.length;++Ee){var pt=ee(C[Ee],w[Ee]);Oe.push(pt),ye+=pt}if(ye!==0)return ye;for(var we,Dt=0,xn=Oe;Dt<xn.length;Dt++)if(we=xn[Dt],we!==0)return we;return 0}function kp(m){if(m.length===0)return[];var E=m.map(l);m.length>1&&E.sort(function(I,j){return I.index-j.index});var C=E[0].conversionsTo;if(m.length===1)return C;C=C.concat([]);for(var w=new Set(m),M=1;M<E.length;++M){var N=void 0,O=Te(E[M].conversionsTo),b;try{for(O.s();!(b=O.n()).done;)N=b.value,w.has(N.from)||(C.push(N),w.add(N.from))}catch(I){O.e(I)}finally{O.f()}}return C}function Vp(m,E){var C=E;if(m.some(function(b){return b.hasConversion})){var w=R(m),M=m.map(Up);C=function(){for(var I=[],j=w?arguments.length-1:arguments.length,U=0;U<j;U++)I[U]=M[U](arguments[U]);return w&&(I[j]=arguments[j].map(M[j])),E.apply(this,I)}}var N=C;if(R(m)){var O=m.length-1;N=function(){return C.apply(this,Zr(arguments,0,O).concat([Zr(arguments,O)]))}}return N}function Up(m){var E,C,w,M,N=[],O=[];switch(m.types.forEach(function(b){b.conversion&&(N.push(l(b.conversion.from).test),O.push(b.conversion.convert))}),O.length){case 0:return function(I){return I};case 1:return E=N[0],w=O[0],function(I){return E(I)?w(I):I};case 2:return E=N[0],C=N[1],w=O[0],M=O[1],function(I){return E(I)?w(I):C(I)?M(I):I};default:return function(I){for(var j=0;j<O.length;j++)if(N[j](I))return O[j](I);return I}}}function Hp(m){function E(C,w,M){if(w<C.length){var N=C[w],O=[];if(N.restParam){var b=N.types.filter(Z);b.length<N.types.length&&O.push({types:b,name:"..."+b.map(function(I){return I.name}).join("|"),hasAny:b.some(function(I){return I.isAny}),hasConversion:!1,restParam:!0}),O.push(N)}else O=N.types.map(function(I){return{types:[I],name:I.name,hasAny:I.isAny,hasConversion:I.conversion,restParam:!1}});return Qp(O,function(I){return E(C,w+1,M.concat([I]))})}else return[M]}return E(m,0,[])}function zp(m,E){for(var C=Math.max(m.length,E.length),w=0;w<C;w++){var M=$(m,w),N=$(E,w),O=!1,b=void 0,I=Te(N),j;try{for(I.s();!(j=I.n()).done;)if(b=j.value,M.has(b)){O=!0;break}}catch(De){I.e(De)}finally{I.f()}if(!O)return!1}var U=m.length,x=E.length,me=R(m),he=R(E);return me?he?U===x:x>=U:he?U>=x:U===x}function Wp(m){return m.map(function(E){return no(E)?eo(E.referToSelf.callback):to(E)?Yi(E.referTo.references,E.referTo.callback):E})}function Zp(m,E,C){var w=[],M,N=Te(m),O;try{for(N.s();!(O=N.n()).done;){M=O.value;var b=C[M];if(typeof b!="number")throw new TypeError('No definition for referenced signature "'+M+'"');if(b=E[b],typeof b!="function")return!1;w.push(b)}}catch(I){N.e(I)}finally{N.f()}return w}function Xp(m,E,C){for(var w=Wp(m),M=new Array(w.length).fill(!1),N=!0;N;){N=!1;for(var O=!0,b=0;b<w.length;++b)if(!M[b]){var I=w[b];if(no(I))w[b]=I.referToSelf.callback(C),w[b].referToSelf=I.referToSelf,M[b]=!0,O=!1;else if(to(I)){var j=Zp(I.referTo.references,w,E);j?(w[b]=I.referTo.callback.apply(this,j),w[b].referTo=I.referTo,M[b]=!0,O=!1):N=!0}}if(O&&N)throw new SyntaxError("Circular reference detected in resolving typed.referTo")}return w}function Jp(m){var E=/\bthis(\(|\.signatures\b)/;Object.keys(m).forEach(function(C){var w=m[C];if(E.test(w.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 Gp(m,E){if(a.createCount++,Object.keys(E).length===0)throw new SyntaxError("No signatures provided");a.warnAgainstDeprecatedThis&&Jp(E);var C=[],w=[],M={},N=[],O,b=function(){if(!Object.prototype.hasOwnProperty.call(E,O))return"continue";var de=F(O);if(!de)return"continue";C.forEach(function(It){if(zp(It,de))throw new TypeError('Conflicting signatures "'+y(It)+'" and "'+y(de)+'".')}),C.push(de);var io=w.length;w.push(E[O]);var ND=de.map(A),$n=void 0,Pn=Te(Hp(ND)),oo;try{for(Pn.s();!(oo=Pn.n()).done;){$n=oo.value;var ao=y($n);N.push({params:$n,name:ao,fn:io}),$n.every(function(It){return!It.hasConversion})&&(M[ao]=io)}}catch(It){Pn.e(It)}finally{Pn.f()}};for(O in E)var I=b();N.sort(W);var j=Xp(w,M,Gt),U;for(U in M)Object.prototype.hasOwnProperty.call(M,U)&&(M[U]=j[M[U]]);for(var x=[],me=new Map,he=0,De=N;he<De.length;he++)U=De[he],me.has(U.name)||(U.fn=j[U.fn],x.push(U),me.set(U.name,U));for(var oe=x[0]&&x[0].params.length<=2&&!R(x[0].params),Fe=x[1]&&x[1].params.length<=2&&!R(x[1].params),ce=x[2]&&x[2].params.length<=2&&!R(x[2].params),Oe=x[3]&&x[3].params.length<=2&&!R(x[3].params),ye=x[4]&&x[4].params.length<=2&&!R(x[4].params),Ee=x[5]&&x[5].params.length<=2&&!R(x[5].params),pt=oe&&Fe&&ce&&Oe&&ye&&Ee,we=0;we<x.length;++we)x[we].test=T(x[we].params);for(var Dt=oe?P(x[0].params[0]):_e,xn=Fe?P(x[1].params[0]):_e,Xt=ce?P(x[2].params[0]):_e,rD=Oe?P(x[3].params[0]):_e,uD=ye?P(x[4].params[0]):_e,iD=Ee?P(x[5].params[0]):_e,oD=oe?P(x[0].params[1]):_e,aD=Fe?P(x[1].params[1]):_e,sD=ce?P(x[2].params[1]):_e,cD=Oe?P(x[3].params[1]):_e,fD=ye?P(x[4].params[1]):_e,lD=Ee?P(x[5].params[1]):_e,Jt=0;Jt<x.length;++Jt)x[Jt].implementation=Vp(x[Jt].params,x[Jt].fn);var hD=oe?x[0].implementation:Ft,dD=Fe?x[1].implementation:Ft,pD=ce?x[2].implementation:Ft,DD=Oe?x[3].implementation:Ft,gD=ye?x[4].implementation:Ft,vD=Ee?x[5].implementation:Ft,mD=oe?x[0].params.length:-1,yD=Fe?x[1].params.length:-1,ED=ce?x[2].params.length:-1,AD=Oe?x[3].params.length:-1,CD=ye?x[4].params.length:-1,FD=Ee?x[5].params.length:-1,wD=pt?6:0,BD=x.length,bD=x.map(function(Ne){return Ne.test}),SD=x.map(function(Ne){return Ne.implementation}),MD=function(){for(var de=wD;de<BD;de++)if(bD[de](arguments))return SD[de].apply(this,arguments);return a.onMismatch(m,arguments,x)};function Gt(Ne,de){return arguments.length===mD&&Dt(Ne)&&oD(de)?hD.apply(this,arguments):arguments.length===yD&&xn(Ne)&&aD(de)?dD.apply(this,arguments):arguments.length===ED&&Xt(Ne)&&sD(de)?pD.apply(this,arguments):arguments.length===AD&&rD(Ne)&&cD(de)?DD.apply(this,arguments):arguments.length===CD&&uD(Ne)&&fD(de)?gD.apply(this,arguments):arguments.length===FD&&iD(Ne)&&lD(de)?vD.apply(this,arguments):MD.apply(this,arguments)}try{Object.defineProperty(Gt,"name",{value:m})}catch(Ne){}return Gt.signatures=M,Gt._typedFunctionData={signatures:x,signatureMap:me},Gt}function Ki(m,E,C){throw Y(m,E,C)}function Qi(m){return Zr(m,0,m.length-1)}function _t(m){return m[m.length-1]}function Zr(m,E,C){return Array.prototype.slice.call(m,E,C)}function Kp(m,E){for(var C=0;C<m.length;C++)if(E(m[C]))return m[C]}function Qp(m,E){return Array.prototype.concat.apply([],m.map(E))}function Yp(){var m=Qi(arguments).map(function(C){return y(F(C))}),E=_t(arguments);if(typeof E!="function")throw new TypeError("Callback function expected as last argument");return Yi(m,E)}function Yi(m,E){return{referTo:{references:m,callback:E}}}function eo(m){if(typeof m!="function")throw new TypeError("Callback function expected as first argument");return{referToSelf:{callback:m}}}function to(m){return m&&Ct(m.referTo)==="object"&&Array.isArray(m.referTo.references)&&typeof m.referTo.callback=="function"}function no(m){return m&&Ct(m.referToSelf)==="object"&&typeof m.referToSelf.callback=="function"}function ro(m,E){if(!m)return E;if(E&&E!==m){var C=new Error("Function names do not match (expected: "+m+", actual: "+E+")");throw C.data={actual:E,expected:m},C}return m}function eD(m){var E;for(var C in m)Object.prototype.hasOwnProperty.call(m,C)&&(h(m[C])||typeof m[C].signature=="string")&&(E=ro(E,m[C].name));return E}function tD(m,E){var C;for(C in E)if(Object.prototype.hasOwnProperty.call(E,C)){if(C in m&&E[C]!==m[C]){var w=new Error('Signature "'+C+'" is defined twice');throw w.data={signature:C,sourceFunction:E[C],destFunction:m[C]},w}m[C]=E[C]}}var nD=a;a=function(E){for(var C=typeof E=="string",w=C?1:0,M=C?E:"",N={},O=w;O<arguments.length;++O){var b=arguments[O],I={},j=void 0;if(typeof b=="function"?(j=b.name,typeof b.signature=="string"?I[b.signature]=b:h(b)&&(I=b.signatures)):e(b)&&(I=b,C||(j=eD(b))),Object.keys(I).length===0){var U=new TypeError("Argument to 'typed' at index "+O+" is not a (typed) function, nor an object with signatures as keys and functions as values.");throw U.data={index:O,argument:b},U}C||(M=ro(M,j)),tD(N,I)}return Gp(M||"",N)},a.create=ai,a.createCount=nD.createCount,a.onMismatch=Ki,a.throwMismatchError=Ki,a.createError=Y,a.clear=d,a.clearConversions=f,a.addTypes=c,a._findType=l,a.referTo=Yp,a.referToSelf=eo,a.convert=g,a.findSignature=p,a.find=D,a.isTypedFunction=h,a.warnAgainstDeprecatedThis=!0,a.addType=function(m,E){var C="any";E!==!1&&r.has("Object")&&(C="Object"),a.addTypes([m],C)};function uo(m){if(!m||typeof m.from!="string"||typeof m.to!="string"||typeof m.convert!="function")throw new TypeError("Object with properties {from: string, to: string, convert: function} expected");if(m.to===m.from)throw new SyntaxError('Illegal to define conversion from "'+m.from+'" to itself.')}return a.addConversion=function(m){uo(m);var E=l(m.to);if(E.conversionsTo.every(function(C){return C.from!==m.from}))E.conversionsTo.push({from:m.from,convert:m.convert,index:o++});else throw new Error('There is already a conversion from "'+m.from+'" to "'+E.name+'"')},a.addConversions=function(m){m.forEach(a.addConversion)},a.removeConversion=function(m){uo(m);var E=l(m.to),C=Kp(E.conversionsTo,function(M){return M.from===m.from});if(!C)throw new Error("Attempt to remove nonexistent conversion from "+m.from+" to "+m.to);if(C.convert!==m.convert)throw new Error("Conversion to remove does not match existing conversion");var w=E.conversionsTo.indexOf(C);E.conversionsTo.splice(w,1)},a.resolve=function(m,E){if(!h(m))throw new TypeError(oi);for(var C=m._typedFunctionData.signatures,w=0;w<C.length;++w)if(C[w].test(E))return C[w];return null},a}var si=ai();function We(e){return typeof e=="boolean"?!0:isFinite(e)?e===Math.round(e):!1}function Rr(e,t,n){var r={2:"0b",8:"0o",16:"0x"},u=r[t],o="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!We(n))throw new Error("size must be an integer");if(e>Tn(2,n-1)-1||e<-Tn(2,n-1))throw new Error("Value must be in range [-2^".concat(n-1,", 2^").concat(n-1,"-1]"));if(!We(e))throw new Error("Value must be an integer");e<0&&(e=e+Tn(2,n)),o="i".concat(n)}var a="";return e<0&&(e=-e,a="-"),"".concat(a).concat(u).concat(e.toString(t)).concat(o)}function xr(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),ve(t)?r=t:ve(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 Lh(e,r);case"exponential":return ci(e,r);case"engineering":return Th(e,r);case"bin":return Rr(e,2,u);case"oct":return Rr(e,8,u);case"hex":return Rr(e,16,u);case"auto":return jh(e,r,t&&t).replace(/((\.\d*?)(0+))($|e)/,function(){var o=arguments[2],a=arguments[4];return o!=="."?o+a:a});default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function Fn(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"),o=r.indexOf(".");u+=o!==-1?o-1:r.length-1;var a=r.replace(".","").replace(/^0*/,function(l){return u-=l.length,""}).replace(/0*$/,"").split("").map(function(l){return parseInt(l)});return a.length===0&&(a.push(0),u++),{sign:n,coefficients:a,exponent:u}}function Th(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=Fn(e),r=wn(n,t),u=r.exponent,o=r.coefficients,a=u%3===0?u:u<0?u-3-u%3:u-u%3;if(ve(t))for(;t>o.length||u-a+1>o.length;)o.push(0);else for(var l=Math.abs(u-a)-(o.length-1),c=0;c<l;c++)o.push(0);for(var d=Math.abs(u-a),f=1;d>0;)f++,d--;var s=o.slice(f).join(""),h=ve(t)&&s.length||s.match(/[1-9]/)?"."+s:"",p=o.slice(0,f).join("")+h+"e"+(u>=0?"+":"")+a.toString();return r.sign+p}function Lh(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=Fn(e),r=typeof t=="number"?wn(n,n.exponent+1+t):n,u=r.coefficients,o=r.exponent+1,a=o+(t||0);return u.length<a&&(u=u.concat(wt(a-u.length))),o<0&&(u=wt(-o+1).concat(u),o=1),o<u.length&&u.splice(o,0,o===0?"0.":"."),r.sign+u.join("")}function ci(e,t){if(isNaN(e)||!isFinite(e))return String(e);var n=Fn(e),r=t?wn(n,t):n,u=r.coefficients,o=r.exponent;u.length<t&&(u=u.concat(wt(t-u.length)));var a=u.shift();return r.sign+a+(u.length>0?"."+u.join(""):"")+"e"+(o>=0?"+":"")+o}function jh(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,o=Fn(e),a=t?wn(o,t):o;if(a.exponent<r||a.exponent>=u)return ci(e,t);var l=a.coefficients,c=a.exponent;l.length<t&&(l=l.concat(wt(t-l.length))),l=l.concat(wt(c-l.length+1+(l.length<t?t-l.length:0))),l=wt(-c).concat(l);var d=c>0?c:0;return d<l.length-1&&l.splice(d+1,0,"."),a.sign+l.join("")}function wn(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 o=t-1;for(r[o]++;r[o]===10;)r.pop(),o===0&&(r.unshift(0),n.exponent++,o++),o--,r[o]++}}return n}function wt(e){for(var t=[],n=0;n<e;n++)t.push(0);return t}function qh(e){return e.toExponential().replace(/e.*$/,"").replace(/^0\.?0*|\./,"").length}var kh=Number.EPSILON||2220446049250313e-31;function Vh(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<kh?!0:r<=Math.max(Math.abs(e),Math.abs(t))*n}return!1}function $r(e,t,n){var r=e.constructor,u=new r(2),o="";if(n){if(n<1)throw new Error("size must be in greater than 0");if(!We(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))),o="i".concat(n)}switch(t){case 2:return"".concat(e.toBinary()).concat(o);case 8:return"".concat(e.toOctal()).concat(o);case 16:return"".concat(e.toHexadecimal()).concat(o);default:throw new Error("Base ".concat(t," not supported "))}}function Uh(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 zh(e,r);case"exponential":return fi(e,r);case"engineering":return Hh(e,r);case"bin":return $r(e,2,u);case"oct":return $r(e,8,u);case"hex":return $r(e,16,u);case"auto":{var o=t&&t.lowerExp!==void 0?t.lowerExp:-3,a=t&&t.upperExp!==void 0?t.upperExp:5;if(e.isZero())return"0";var l,c=e.toSignificantDigits(r),d=c.e;return d>=o&&d<a?l=c.toFixed():l=fi(e,r),l.replace(/((\.\d*?)(0+))($|e)/,function(){var f=arguments[2],s=arguments[4];return f!=="."?f+s:s})}default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function Hh(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)),o=u.toPrecision(t);return o.indexOf("e")!==-1&&(o=u.toString()),o+"e"+(n>=0?"+":"")+r.toString()}function fi(e,t){return t!==void 0?e.toExponential(t-1):e.toExponential()}function zh(e,t){return e.toFixed(t)}function dt(e,t){var n=Wh(e,t);return t&&typeof t=="object"&&"truncate"in t&&n.length>t.truncate?n.substring(0,t.truncate-3)+"...":n}function Wh(e,t){if(typeof e=="number")return xr(e,t);if(ut(e))return Uh(e,t);if(Zh(e))return!t||t.fraction!=="decimal"?e.s*e.n+"/"+e.d:e.toString();if(Array.isArray(e))return li(e,t);if(An(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+'": '+dt(e[r],t));return"{"+n.join(", ")+"}"}return String(e)}function li(e,t){if(Array.isArray(e)){for(var n="[",r=e.length,u=0;u<r;u++)u!==0&&(n+=", "),n+=li(e[u],t);return n+="]",n}else return dt(e,t)}function Zh(e){return e&&typeof e=="object"&&typeof e.s=="number"&&typeof e.n=="number"&&typeof e.d=="number"||!1}function se(e,t,n){if(!(this instanceof se))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}se.prototype=new RangeError,se.prototype.constructor=RangeError,se.prototype.name="DimensionError",se.prototype.isDimensionError=!0;function Bt(e,t,n){if(!(this instanceof Bt))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}Bt.prototype=new RangeError,Bt.prototype.constructor=RangeError,Bt.prototype.name="IndexError",Bt.prototype.isIndexError=!0;function Pr(e){for(var t=[];Array.isArray(e);)t.push(e.length),e=e[0];return t}function hi(e,t,n){var r,u=e.length;if(u!==t[n])throw new se(u,t[n]);if(n<t.length-1){var o=n+1;for(r=0;r<u;r++){var a=e[r];if(!Array.isArray(a))throw new se(t.length-1,t.length,"<");hi(e[r],t,o)}}else for(r=0;r<u;r++)if(Array.isArray(e[r]))throw new se(t.length+1,t.length,">")}function di(e,t){var n=t.length===0;if(n){if(Array.isArray(e))throw new se(e.length,0)}else hi(e,t,0)}function Ie(e,t){if(!ve(e)||!We(e))throw new TypeError("Index must be an integer (value: "+e+")");if(e<0||typeof t=="number"&&e>=t)throw new Bt(e,t)}function pi(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(!ve(u)||!We(u)||u<0)throw new TypeError("Invalid size, must contain positive integers (size: "+dt(t)+")")});var r=n!==void 0?n:0;return Tr(e,t,0,r),e}function Tr(e,t,n,r){var u,o,a=e.length,l=t[n],c=Math.min(a,l);if(e.length=l,n<t.length-1){var d=n+1;for(u=0;u<c;u++)o=e[u],Array.isArray(o)||(o=[o],e[u]=o),Tr(o,t,d,r);for(u=c;u<l;u++)o=[],e[u]=o,Tr(o,t,d,r)}else{for(u=0;u<c;u++)for(;Array.isArray(e[u]);)e[u]=e[u][0];for(u=c;u<l;u++)e[u]=r}}function Xh(e,t){var n=Kh(e),r=n.length;if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(t.length===0)throw new se(0,r,"!=");t=Di(t,r);var u=gi(t);if(r!==u)throw new se(u,r,"!=");try{return Jh(n,t)}catch(o){throw o instanceof se?new se(u,r,"!="):o}}function Di(e,t){var n=gi(e),r=e.slice(),u=-1,o=e.indexOf(u),a=e.indexOf(u,o+1)>=0;if(a)throw new Error("More than one wildcard in sizes");var l=o>=0,c=t%n===0;if(l)if(c)r[o]=-t/n;else throw new Error("Could not replace wildcard, since "+t+" is no multiple of "+-n);return r}function gi(e){return e.reduce((t,n)=>t*n,1)}function Jh(e,t){for(var n=e,r,u=t.length-1;u>0;u--){var o=t[u];r=[];for(var a=n.length/o,l=0;l<a;l++)r.push(n.slice(l*o,(l+1)*o));n=r}return n}function Gh(e,t,n,r){var u=r||Pr(e);if(n)for(var o=0;o<n;o++)e=[e],u.unshift(1);for(e=vi(e,t,0);u.length<t;)u.push(1);return e}function vi(e,t,n){var r,u;if(Array.isArray(e)){var o=n+1;for(r=0,u=e.length;r<u;r++)e[r]=vi(e[r],t,o)}else for(var a=n;a<t;a++)e=[e];return e}function Kh(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 Lr(e,t){for(var n,r=0,u=0;u<e.length;u++){var o=e[u],a=Array.isArray(o);if(u===0&&a&&(r=o.length),a&&o.length!==r)return;var l=a?Lr(o,t):t(o);if(n===void 0)n=l;else if(n!==l)return"mixed"}return n}function Ae(e,t,n,r){function u(o){var a=Rh(o,t.map(ed));return Qh(e,t,o),n(a)}return u.isFactory=!0,u.fn=e,u.dependencies=t.slice().sort(),r&&(u.meta=r),u}function Qh(e,t,n){var r=t.filter(o=>!Yh(o)).every(o=>n[o]!==void 0);if(!r){var u=t.filter(o=>n[o]===void 0);throw new Error('Cannot create function "'.concat(e,'", ')+"some dependencies are missing: ".concat(u.map(o=>'"'.concat(o,'"')).join(", "),"."))}}function Yh(e){return e&&e[0]==="?"}function ed(e){return e&&e[0]==="?"?e.slice(1):e}function td(e,t){if(yi(e)&&mi(e,t))return e[t];throw typeof e[t]=="function"&&ud(e,t)?new Error('Cannot access method "'+t+'" as a property'):new Error('No access to property "'+t+'"')}function nd(e,t,n){if(yi(e)&&mi(e,t))return e[t]=n,n;throw new Error('No access to property "'+t+'"')}function rd(e,t){return t in e}function mi(e,t){return!e||typeof e!="object"?!1:Cn(id,t)?!0:!(t in Object.prototype||t in Function.prototype)}function ud(e,t){return e==null||typeof e[t]!="function"||Cn(e,t)&&Object.getPrototypeOf&&t in Object.getPrototypeOf(e)?!1:Cn(od,t)?!0:!(t in Object.prototype||t in Function.prototype)}function yi(e){return typeof e=="object"&&e&&e.constructor===Object}var id={length:!0,name:!0},od={toString:!0,valueOf:!0,toLocaleString:!0};class ad{constructor(t){this.wrappedObject=t}keys(){return Object.keys(this.wrappedObject)}get(t){return td(this.wrappedObject,t)}set(t,n){return nd(this.wrappedObject,t,n),this}has(t){return rd(this.wrappedObject,t)}}function sd(e){return e?e instanceof Map||e instanceof ad||typeof e.set=="function"&&typeof e.get=="function"&&typeof e.keys=="function"&&typeof e.has=="function":!1}var Ei=function(){return Ei=si.create,si},cd=["?BigNumber","?Complex","?DenseMatrix","?Fraction"],fd=Ae("typed",cd,function(t){var{BigNumber:n,Complex:r,DenseMatrix:u,Fraction:o}=t,a=Ei();return a.clear(),a.addTypes([{name:"number",test:ve},{name:"Complex",test:Yu},{name:"BigNumber",test:ut},{name:"Fraction",test:ei},{name:"Unit",test:ti},{name:"identifier",test:l=>An&&/^(?:[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(l)},{name:"string",test:An},{name:"Chain",test:Ih},{name:"Array",test:Me},{name:"Matrix",test:zt},{name:"DenseMatrix",test:rh},{name:"SparseMatrix",test:uh},{name:"Range",test:ih},{name:"Index",test:ni},{name:"boolean",test:oh},{name:"ResultSet",test:ah},{name:"Help",test:sh},{name:"function",test:ch},{name:"Date",test:fh},{name:"RegExp",test:lh},{name:"null",test:dh},{name:"undefined",test:ph},{name:"AccessorNode",test:Dh},{name:"ArrayNode",test:gh},{name:"AssignmentNode",test:vh},{name:"BlockNode",test:mh},{name:"ConditionalNode",test:yh},{name:"ConstantNode",test:Eh},{name:"FunctionNode",test:Ch},{name:"FunctionAssignmentNode",test:Ah},{name:"IndexNode",test:Fh},{name:"Node",test:wh},{name:"ObjectNode",test:Bh},{name:"OperatorNode",test:bh},{name:"ParenthesisNode",test:Sh},{name:"RangeNode",test:Mh},{name:"RelationalNode",test:Nh},{name:"SymbolNode",test:_h},{name:"Map",test:sd},{name:"Object",test:hh}]),a.addConversions([{from:"number",to:"BigNumber",convert:function(c){if(n||jr(c),qh(c)>15)throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: "+c+"). Use function bignumber(x) to convert to BigNumber.");return new n(c)}},{from:"number",to:"Complex",convert:function(c){return r||Bn(c),new r(c,0)}},{from:"BigNumber",to:"Complex",convert:function(c){return r||Bn(c),new r(c.toNumber(),0)}},{from:"Fraction",to:"BigNumber",convert:function(c){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(c){return r||Bn(c),new r(c.valueOf(),0)}},{from:"number",to:"Fraction",convert:function(c){o||qr(c);var d=new o(c);if(d.valueOf()!==c)throw new TypeError("Cannot implicitly convert a number to a Fraction when there will be a loss of precision (value: "+c+"). Use function fraction(x) to convert to Fraction.");return d}},{from:"string",to:"number",convert:function(c){var d=Number(c);if(isNaN(d))throw new Error('Cannot convert "'+c+'" to a number');return d}},{from:"string",to:"BigNumber",convert:function(c){n||jr(c);try{return new n(c)}catch(d){throw new Error('Cannot convert "'+c+'" to BigNumber')}}},{from:"string",to:"Fraction",convert:function(c){o||qr(c);try{return new o(c)}catch(d){throw new Error('Cannot convert "'+c+'" to Fraction')}}},{from:"string",to:"Complex",convert:function(c){r||Bn(c);try{return new r(c)}catch(d){throw new Error('Cannot convert "'+c+'" to Complex')}}},{from:"boolean",to:"number",convert:function(c){return+c}},{from:"boolean",to:"BigNumber",convert:function(c){return n||jr(c),new n(+c)}},{from:"boolean",to:"Fraction",convert:function(c){return o||qr(c),new o(+c)}},{from:"boolean",to:"string",convert:function(c){return String(c)}},{from:"Array",to:"Matrix",convert:function(c){return u||ld(),new u(c)}},{from:"Matrix",to:"Array",convert:function(c){return c.valueOf()}}]),a.onMismatch=(l,c,d)=>{var f=a.createError(l,c,d);if(["wrongType","mismatch"].includes(f.data.category)&&c.length===1&&_r(c[0])&&d.some(h=>!h.params.includes(","))){var s=new TypeError("Function '".concat(l,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(l,")'."));throw s.data=f.data,s}throw f},a.onMismatch=(l,c,d)=>{var f=a.createError(l,c,d);if(["wrongType","mismatch"].includes(f.data.category)&&c.length===1&&_r(c[0])&&d.some(h=>!h.params.includes(","))){var s=new TypeError("Function '".concat(l,"' doesn't apply to matrices. To call it ")+"elementwise on a matrix 'M', try 'map(M, ".concat(l,")'."));throw s.data=f.data,s}throw f},a});function jr(e){throw new Error("Cannot convert value ".concat(e," into a BigNumber: no class 'BigNumber' provided"))}function Bn(e){throw new Error("Cannot convert value ".concat(e," into a Complex number: no class 'Complex' provided"))}function ld(){throw new Error("Cannot convert array into a Matrix: no class 'DenseMatrix' provided")}function qr(e){throw new Error("Cannot convert value ".concat(e," into a Fraction, no class 'Fraction' provided."))}/*!
11
+ * decimal.js v10.4.2
12
+ * An arbitrary-precision Decimal type for JavaScript.
13
+ * https://github.com/MikeMcl/decimal.js
14
+ * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
15
+ * MIT Licence
16
+ */var bt=9e15,it=1e9,kr="0123456789abcdef",bn="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",Sn="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",Vr={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-bt,maxE:bt,crypto:!1},Ai,Ke,k=!0,Mn="[DecimalError] ",ot=Mn+"Invalid argument: ",Ci=Mn+"Precision limit exceeded",Fi=Mn+"crypto unavailable",wi="[object Decimal]",pe=Math.floor,ie=Math.pow,hd=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,dd=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,pd=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,Bi=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,Le=1e7,q=7,Dd=9007199254740991,gd=bn.length-1,Ur=Sn.length-1,B={toStringTag:wi};B.absoluteValue=B.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),L(e)},B.ceil=function(){return L(new this.constructor(this),this.e+1,2)},B.clampedTo=B.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(ot+t);return n=r.cmp(e),n<0?e:r.cmp(t)>0?t:new u(r)},B.comparedTo=B.cmp=function(e){var t,n,r,u,o=this,a=o.d,l=(e=new o.constructor(e)).d,c=o.s,d=e.s;if(!a||!l)return!c||!d?NaN:c!==d?c:a===l?0:!a^c<0?1:-1;if(!a[0]||!l[0])return a[0]?c:l[0]?-d:0;if(c!==d)return c;if(o.e!==e.e)return o.e>e.e^c<0?1:-1;for(r=a.length,u=l.length,t=0,n=r<u?r:u;t<n;++t)if(a[t]!==l[t])return a[t]>l[t]^c<0?1:-1;return r===u?0:r>u^c<0?1:-1},B.cosine=B.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())+q,r.rounding=1,n=vd(r,Ii(r,n)),r.precision=e,r.rounding=t,L(Ke==2||Ke==3?n.neg():n,e,t,!0)):new r(1):new r(NaN)},B.cubeRoot=B.cbrt=function(){var e,t,n,r,u,o,a,l,c,d,f=this,s=f.constructor;if(!f.isFinite()||f.isZero())return new s(f);for(k=!1,o=f.s*ie(f.s*f,1/3),!o||Math.abs(o)==1/0?(n=fe(f.d),e=f.e,(o=(e-n.length+1)%3)&&(n+=o==1||o==-2?"0":"00"),o=ie(n,1/3),e=pe((e+1)/3)-(e%3==(e<0?-1:2)),o==1/0?n="5e"+e:(n=o.toExponential(),n=n.slice(0,n.indexOf("e")+1)+e),r=new s(n),r.s=f.s):r=new s(o.toString()),a=(e=s.precision)+3;;)if(l=r,c=l.times(l).times(l),d=c.plus(f),r=K(d.plus(f).times(l),d.plus(c),a+2,1),fe(l.d).slice(0,a)===(n=fe(r.d)).slice(0,a))if(n=n.slice(a-3,a+1),n=="9999"||!u&&n=="4999"){if(!u&&(L(l,e+1,0),l.times(l).times(l).eq(f))){r=l;break}a+=4,u=1}else{(!+n||!+n.slice(1)&&n.charAt(0)=="5")&&(L(r,e+1,1),t=!r.times(r).times(r).eq(f));break}return k=!0,L(r,e,s.rounding,t)},B.decimalPlaces=B.dp=function(){var e,t=this.d,n=NaN;if(t){if(e=t.length-1,n=(e-pe(this.e/q))*q,e=t[e],e)for(;e%10==0;e/=10)n--;n<0&&(n=0)}return n},B.dividedBy=B.div=function(e){return K(this,new this.constructor(e))},B.dividedToIntegerBy=B.divToInt=function(e){var t=this,n=t.constructor;return L(K(t,new n(e),0,1,1),n.precision,n.rounding)},B.equals=B.eq=function(e){return this.cmp(e)===0},B.floor=function(){return L(new this.constructor(this),this.e+1,3)},B.greaterThan=B.gt=function(e){return this.cmp(e)>0},B.greaterThanOrEqualTo=B.gte=function(e){var t=this.cmp(e);return t==1||t===0},B.hyperbolicCosine=B.cosh=function(){var e,t,n,r,u,o=this,a=o.constructor,l=new a(1);if(!o.isFinite())return new a(o.s?1/0:NaN);if(o.isZero())return l;n=a.precision,r=a.rounding,a.precision=n+Math.max(o.e,o.sd())+4,a.rounding=1,u=o.d.length,u<32?(e=Math.ceil(u/3),t=(1/On(4,e)).toString()):(e=16,t="2.3283064365386962890625e-10"),o=St(a,1,o.times(t),new a(1),!0);for(var c,d=e,f=new a(8);d--;)c=o.times(o),o=l.minus(c.times(f.minus(c.times(f))));return L(o,a.precision=n,a.rounding=r,!0)},B.hyperbolicSine=B.sinh=function(){var e,t,n,r,u=this,o=u.constructor;if(!u.isFinite()||u.isZero())return new o(u);if(t=o.precision,n=o.rounding,o.precision=t+Math.max(u.e,u.sd())+4,o.rounding=1,r=u.d.length,r<3)u=St(o,2,u,u,!0);else{e=1.4*Math.sqrt(r),e=e>16?16:e|0,u=u.times(1/On(5,e)),u=St(o,2,u,u,!0);for(var a,l=new o(5),c=new o(16),d=new o(20);e--;)a=u.times(u),u=u.times(l.plus(a.times(c.times(a).plus(d))))}return o.precision=t,o.rounding=n,L(u,t,n,!0)},B.hyperbolicTangent=B.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,K(n.sinh(),n.cosh(),r.precision=e,r.rounding=t)):new r(n.s)},B.inverseCosine=B.acos=function(){var e,t=this,n=t.constructor,r=t.abs().cmp(1),u=n.precision,o=n.rounding;return r!==-1?r===0?t.isNeg()?je(n,u,o):new n(0):new n(NaN):t.isZero()?je(n,u+4,o).times(.5):(n.precision=u+6,n.rounding=1,t=t.asin(),e=je(n,u+4,o).times(.5),n.precision=u,n.rounding=o,e.minus(t))},B.inverseHyperbolicCosine=B.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,k=!1,n=n.times(n).minus(1).sqrt().plus(n),k=!0,r.precision=e,r.rounding=t,n.ln()):new r(n)},B.inverseHyperbolicSine=B.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,k=!1,n=n.times(n).plus(1).sqrt().plus(n),k=!0,r.precision=e,r.rounding=t,n.ln())},B.inverseHyperbolicTangent=B.atanh=function(){var e,t,n,r,u=this,o=u.constructor;return u.isFinite()?u.e>=0?new o(u.abs().eq(1)?u.s/0:u.isZero()?u:NaN):(e=o.precision,t=o.rounding,r=u.sd(),Math.max(r,e)<2*-u.e-1?L(new o(u),e,t,!0):(o.precision=n=r-u.e,u=K(u.plus(1),new o(1).minus(u),n+e,1),o.precision=e+4,o.rounding=1,u=u.ln(),o.precision=e,o.rounding=t,u.times(.5))):new o(NaN)},B.inverseSine=B.asin=function(){var e,t,n,r,u=this,o=u.constructor;return u.isZero()?new o(u):(t=u.abs().cmp(1),n=o.precision,r=o.rounding,t!==-1?t===0?(e=je(o,n+4,r).times(.5),e.s=u.s,e):new o(NaN):(o.precision=n+6,o.rounding=1,u=u.div(new o(1).minus(u.times(u)).sqrt().plus(1)).atan(),o.precision=n,o.rounding=r,u.times(2)))},B.inverseTangent=B.atan=function(){var e,t,n,r,u,o,a,l,c,d=this,f=d.constructor,s=f.precision,h=f.rounding;if(d.isFinite()){if(d.isZero())return new f(d);if(d.abs().eq(1)&&s+4<=Ur)return a=je(f,s+4,h).times(.25),a.s=d.s,a}else{if(!d.s)return new f(NaN);if(s+4<=Ur)return a=je(f,s+4,h).times(.5),a.s=d.s,a}for(f.precision=l=s+10,f.rounding=1,n=Math.min(28,l/q+2|0),e=n;e;--e)d=d.div(d.times(d).plus(1).sqrt().plus(1));for(k=!1,t=Math.ceil(l/q),r=1,c=d.times(d),a=new f(d),u=d;e!==-1;)if(u=u.times(c),o=a.minus(u.div(r+=2)),u=u.times(c),a=o.plus(u.div(r+=2)),a.d[t]!==void 0)for(e=t;a.d[e]===o.d[e]&&e--;);return n&&(a=a.times(2<<n-1)),k=!0,L(a,f.precision=s,f.rounding=h,!0)},B.isFinite=function(){return!!this.d},B.isInteger=B.isInt=function(){return!!this.d&&pe(this.e/q)>this.d.length-2},B.isNaN=function(){return!this.s},B.isNegative=B.isNeg=function(){return this.s<0},B.isPositive=B.isPos=function(){return this.s>0},B.isZero=function(){return!!this.d&&this.d[0]===0},B.lessThan=B.lt=function(e){return this.cmp(e)<0},B.lessThanOrEqualTo=B.lte=function(e){return this.cmp(e)<1},B.logarithm=B.log=function(e){var t,n,r,u,o,a,l,c,d=this,f=d.constructor,s=f.precision,h=f.rounding,p=5;if(e==null)e=new f(10),t=!0;else{if(e=new f(e),n=e.d,e.s<0||!n||!n[0]||e.eq(1))return new f(NaN);t=e.eq(10)}if(n=d.d,d.s<0||!n||!n[0]||d.eq(1))return new f(n&&!n[0]?-1/0:d.s!=1?NaN:n?0:1/0);if(t)if(n.length>1)o=!0;else{for(u=n[0];u%10===0;)u/=10;o=u!==1}if(k=!1,l=s+p,a=st(d,l),r=t?In(f,l+10):st(e,l),c=K(a,r,l,1),Wt(c.d,u=s,h))do if(l+=10,a=st(d,l),r=t?In(f,l+10):st(e,l),c=K(a,r,l,1),!o){+fe(c.d).slice(u+1,u+15)+1==1e14&&(c=L(c,s+1,0));break}while(Wt(c.d,u+=10,h));return k=!0,L(c,s,h)},B.minus=B.sub=function(e){var t,n,r,u,o,a,l,c,d,f,s,h,p=this,D=p.constructor;if(e=new D(e),!p.d||!e.d)return!p.s||!e.s?e=new D(NaN):p.d?e.s=-e.s:e=new D(e.d||p.s!==e.s?p:NaN),e;if(p.s!=e.s)return e.s=-e.s,p.plus(e);if(d=p.d,h=e.d,l=D.precision,c=D.rounding,!d[0]||!h[0]){if(h[0])e.s=-e.s;else if(d[0])e=new D(p);else return new D(c===3?-0:0);return k?L(e,l,c):e}if(n=pe(e.e/q),f=pe(p.e/q),d=d.slice(),o=f-n,o){for(s=o<0,s?(t=d,o=-o,a=h.length):(t=h,n=f,a=d.length),r=Math.max(Math.ceil(l/q),a)+2,o>r&&(o=r,t.length=1),t.reverse(),r=o;r--;)t.push(0);t.reverse()}else{for(r=d.length,a=h.length,s=r<a,s&&(a=r),r=0;r<a;r++)if(d[r]!=h[r]){s=d[r]<h[r];break}o=0}for(s&&(t=d,d=h,h=t,e.s=-e.s),a=d.length,r=h.length-a;r>0;--r)d[a++]=0;for(r=h.length;r>o;){if(d[--r]<h[r]){for(u=r;u&&d[--u]===0;)d[u]=Le-1;--d[u],d[r]+=Le}d[r]-=h[r]}for(;d[--a]===0;)d.pop();for(;d[0]===0;d.shift())--n;return d[0]?(e.d=d,e.e=_n(d,n),k?L(e,l,c):e):new D(c===3?-0:0)},B.modulo=B.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]?L(new r(n),r.precision,r.rounding):(k=!1,r.modulo==9?(t=K(n,e.abs(),0,3,1),t.s*=e.s):t=K(n,e,0,r.modulo,1),t=t.times(e),k=!0,n.minus(t))},B.naturalExponential=B.exp=function(){return Hr(this)},B.naturalLogarithm=B.ln=function(){return st(this)},B.negated=B.neg=function(){var e=new this.constructor(this);return e.s=-e.s,L(e)},B.plus=B.add=function(e){var t,n,r,u,o,a,l,c,d,f,s=this,h=s.constructor;if(e=new h(e),!s.d||!e.d)return!s.s||!e.s?e=new h(NaN):s.d||(e=new h(e.d||s.s===e.s?s:NaN)),e;if(s.s!=e.s)return e.s=-e.s,s.minus(e);if(d=s.d,f=e.d,l=h.precision,c=h.rounding,!d[0]||!f[0])return f[0]||(e=new h(s)),k?L(e,l,c):e;if(o=pe(s.e/q),r=pe(e.e/q),d=d.slice(),u=o-r,u){for(u<0?(n=d,u=-u,a=f.length):(n=f,r=o,a=d.length),o=Math.ceil(l/q),a=o>a?o+1:a+1,u>a&&(u=a,n.length=1),n.reverse();u--;)n.push(0);n.reverse()}for(a=d.length,u=f.length,a-u<0&&(u=a,n=f,f=d,d=n),t=0;u;)t=(d[--u]=d[u]+f[u]+t)/Le|0,d[u]%=Le;for(t&&(d.unshift(t),++r),a=d.length;d[--a]==0;)d.pop();return e.d=d,e.e=_n(d,r),k?L(e,l,c):e},B.precision=B.sd=function(e){var t,n=this;if(e!==void 0&&e!==!!e&&e!==1&&e!==0)throw Error(ot+e);return n.d?(t=bi(n.d),e&&n.e+1>t&&(t=n.e+1)):t=NaN,t},B.round=function(){var e=this,t=e.constructor;return L(new t(e),e.e+1,t.rounding)},B.sine=B.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())+q,r.rounding=1,n=yd(r,Ii(r,n)),r.precision=e,r.rounding=t,L(Ke>2?n.neg():n,e,t,!0)):new r(NaN)},B.squareRoot=B.sqrt=function(){var e,t,n,r,u,o,a=this,l=a.d,c=a.e,d=a.s,f=a.constructor;if(d!==1||!l||!l[0])return new f(!d||d<0&&(!l||l[0])?NaN:l?a:1/0);for(k=!1,d=Math.sqrt(+a),d==0||d==1/0?(t=fe(l),(t.length+c)%2==0&&(t+="0"),d=Math.sqrt(t),c=pe((c+1)/2)-(c<0||c%2),d==1/0?t="5e"+c:(t=d.toExponential(),t=t.slice(0,t.indexOf("e")+1)+c),r=new f(t)):r=new f(d.toString()),n=(c=f.precision)+3;;)if(o=r,r=o.plus(K(a,o,n+2,1)).times(.5),fe(o.d).slice(0,n)===(t=fe(r.d)).slice(0,n))if(t=t.slice(n-3,n+1),t=="9999"||!u&&t=="4999"){if(!u&&(L(o,c+1,0),o.times(o).eq(a))){r=o;break}n+=4,u=1}else{(!+t||!+t.slice(1)&&t.charAt(0)=="5")&&(L(r,c+1,1),e=!r.times(r).eq(a));break}return k=!0,L(r,c,f.rounding,e)},B.tangent=B.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=K(n,new r(1).minus(n.times(n)).sqrt(),e+10,0),r.precision=e,r.rounding=t,L(Ke==2||Ke==4?n.neg():n,e,t,!0)):new r(NaN)},B.times=B.mul=function(e){var t,n,r,u,o,a,l,c,d,f=this,s=f.constructor,h=f.d,p=(e=new s(e)).d;if(e.s*=f.s,!h||!h[0]||!p||!p[0])return new s(!e.s||h&&!h[0]&&!p||p&&!p[0]&&!h?NaN:!h||!p?e.s/0:e.s*0);for(n=pe(f.e/q)+pe(e.e/q),c=h.length,d=p.length,c<d&&(o=h,h=p,p=o,a=c,c=d,d=a),o=[],a=c+d,r=a;r--;)o.push(0);for(r=d;--r>=0;){for(t=0,u=c+r;u>r;)l=o[u]+p[r]*h[u-r-1]+t,o[u--]=l%Le|0,t=l/Le|0;o[u]=(o[u]+t)%Le|0}for(;!o[--a];)o.pop();return t?++n:o.shift(),e.d=o,e.e=_n(o,n),k?L(e,s.precision,s.rounding):e},B.toBinary=function(e,t){return Wr(this,2,e,t)},B.toDecimalPlaces=B.toDP=function(e,t){var n=this,r=n.constructor;return n=new r(n),e===void 0?n:(Ce(e,0,it),t===void 0?t=r.rounding:Ce(t,0,8),L(n,e+n.e+1,t))},B.toExponential=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Ze(r,!0):(Ce(e,0,it),t===void 0?t=u.rounding:Ce(t,0,8),r=L(new u(r),e+1,t),n=Ze(r,!0,e+1)),r.isNeg()&&!r.isZero()?"-"+n:n},B.toFixed=function(e,t){var n,r,u=this,o=u.constructor;return e===void 0?n=Ze(u):(Ce(e,0,it),t===void 0?t=o.rounding:Ce(t,0,8),r=L(new o(u),e+u.e+1,t),n=Ze(r,!1,e+r.e+1)),u.isNeg()&&!u.isZero()?"-"+n:n},B.toFraction=function(e){var t,n,r,u,o,a,l,c,d,f,s,h,p=this,D=p.d,g=p.constructor;if(!D)return new g(p);if(d=n=new g(1),r=c=new g(0),t=new g(r),o=t.e=bi(D)-p.e-1,a=o%q,t.d[0]=ie(10,a<0?q+a:a),e==null)e=o>0?t:d;else{if(l=new g(e),!l.isInt()||l.lt(d))throw Error(ot+l);e=l.gt(t)?o>0?t:d:l}for(k=!1,l=new g(fe(D)),f=g.precision,g.precision=o=D.length*q*2;s=K(l,t,0,1,1),u=n.plus(s.times(r)),u.cmp(e)!=1;)n=r,r=u,u=d,d=c.plus(s.times(u)),c=u,u=t,t=l.minus(s.times(u)),l=u;return u=K(e.minus(n),r,0,1,1),c=c.plus(u.times(d)),n=n.plus(u.times(r)),c.s=d.s=p.s,h=K(d,r,o,1).minus(p).abs().cmp(K(c,n,o,1).minus(p).abs())<1?[d,r]:[c,n],g.precision=f,k=!0,h},B.toHexadecimal=B.toHex=function(e,t){return Wr(this,16,e,t)},B.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:Ce(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]?(k=!1,n=K(n,e,0,t,1).times(e),k=!0,L(n)):(e.s=n.s,n=e),n},B.toNumber=function(){return+this},B.toOctal=function(e,t){return Wr(this,8,e,t)},B.toPower=B.pow=function(e){var t,n,r,u,o,a,l=this,c=l.constructor,d=+(e=new c(e));if(!l.d||!e.d||!l.d[0]||!e.d[0])return new c(ie(+l,d));if(l=new c(l),l.eq(1))return l;if(r=c.precision,o=c.rounding,e.eq(1))return L(l,r,o);if(t=pe(e.e/q),t>=e.d.length-1&&(n=d<0?-d:d)<=Dd)return u=Si(c,l,n,r),e.s<0?new c(1).div(u):L(u,r,o);if(a=l.s,a<0){if(t<e.d.length-1)return new c(NaN);if((e.d[t]&1)==0&&(a=1),l.e==0&&l.d[0]==1&&l.d.length==1)return l.s=a,l}return n=ie(+l,d),t=n==0||!isFinite(n)?pe(d*(Math.log("0."+fe(l.d))/Math.LN10+l.e+1)):new c(n+"").e,t>c.maxE+1||t<c.minE-1?new c(t>0?a/0:0):(k=!1,c.rounding=l.s=1,n=Math.min(12,(t+"").length),u=Hr(e.times(st(l,r+n)),r),u.d&&(u=L(u,r+5,1),Wt(u.d,r,o)&&(t=r+10,u=L(Hr(e.times(st(l,t+n)),t),t+5,1),+fe(u.d).slice(r+1,r+15)+1==1e14&&(u=L(u,r+1,0)))),u.s=a,k=!0,c.rounding=o,L(u,r,o))},B.toPrecision=function(e,t){var n,r=this,u=r.constructor;return e===void 0?n=Ze(r,r.e<=u.toExpNeg||r.e>=u.toExpPos):(Ce(e,1,it),t===void 0?t=u.rounding:Ce(t,0,8),r=L(new u(r),e,t),n=Ze(r,e<=r.e||r.e<=u.toExpNeg,e)),r.isNeg()&&!r.isZero()?"-"+n:n},B.toSignificantDigits=B.toSD=function(e,t){var n=this,r=n.constructor;return e===void 0?(e=r.precision,t=r.rounding):(Ce(e,1,it),t===void 0?t=r.rounding:Ce(t,0,8)),L(new r(n),e,t)},B.toString=function(){var e=this,t=e.constructor,n=Ze(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()&&!e.isZero()?"-"+n:n},B.truncated=B.trunc=function(){return L(new this.constructor(this),this.e+1,1)},B.valueOf=B.toJSON=function(){var e=this,t=e.constructor,n=Ze(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()?"-"+n:n};function fe(e){var t,n,r,u=e.length-1,o="",a=e[0];if(u>0){for(o+=a,t=1;t<u;t++)r=e[t]+"",n=q-r.length,n&&(o+=at(n)),o+=r;a=e[t],r=a+"",n=q-r.length,n&&(o+=at(n))}else if(a===0)return"0";for(;a%10===0;)a/=10;return o+a}function Ce(e,t,n){if(e!==~~e||e<t||e>n)throw Error(ot+e)}function Wt(e,t,n,r){var u,o,a,l;for(o=e[0];o>=10;o/=10)--t;return--t<0?(t+=q,u=0):(u=Math.ceil((t+1)/q),t%=q),o=ie(10,q-t),l=e[u]%o|0,r==null?t<3?(t==0?l=l/100|0:t==1&&(l=l/10|0),a=n<4&&l==99999||n>3&&l==49999||l==5e4||l==0):a=(n<4&&l+1==o||n>3&&l+1==o/2)&&(e[u+1]/o/100|0)==ie(10,t-2)-1||(l==o/2||l==0)&&(e[u+1]/o/100|0)==0:t<4?(t==0?l=l/1e3|0:t==1?l=l/100|0:t==2&&(l=l/10|0),a=(r||n<4)&&l==9999||!r&&n>3&&l==4999):a=((r||n<4)&&l+1==o||!r&&n>3&&l+1==o/2)&&(e[u+1]/o/1e3|0)==ie(10,t-3)-1,a}function Nn(e,t,n){for(var r,u=[0],o,a=0,l=e.length;a<l;){for(o=u.length;o--;)u[o]*=t;for(u[0]+=kr.indexOf(e.charAt(a++)),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 vd(e,t){var n,r,u;if(t.isZero())return t;r=t.d.length,r<32?(n=Math.ceil(r/3),u=(1/On(4,n)).toString()):(n=16,u="2.3283064365386962890625e-10"),e.precision+=n,t=St(e,1,t.times(u),new e(1));for(var o=n;o--;){var a=t.times(t);t=a.times(a).minus(a).times(8).plus(1)}return e.precision-=n,t}var K=function(){function e(r,u,o){var a,l=0,c=r.length;for(r=r.slice();c--;)a=r[c]*u+l,r[c]=a%o|0,l=a/o|0;return l&&r.unshift(l),r}function t(r,u,o,a){var l,c;if(o!=a)c=o>a?1:-1;else for(l=c=0;l<o;l++)if(r[l]!=u[l]){c=r[l]>u[l]?1:-1;break}return c}function n(r,u,o,a){for(var l=0;o--;)r[o]-=l,l=r[o]<u[o]?1:0,r[o]=l*a+r[o]-u[o];for(;!r[0]&&r.length>1;)r.shift()}return function(r,u,o,a,l,c){var d,f,s,h,p,D,g,y,v,A,S,F,R,P,T,_,$,Z,V,Y,Q=r.constructor,ne=r.s==u.s?1:-1,ee=r.d,W=u.d;if(!ee||!ee[0]||!W||!W[0])return new Q(!r.s||!u.s||(ee?W&&ee[0]==W[0]:!W)?NaN:ee&&ee[0]==0||!W?ne*0:ne/0);for(c?(p=1,f=r.e-u.e):(c=Le,p=q,f=pe(r.e/p)-pe(u.e/p)),V=W.length,$=ee.length,v=new Q(ne),A=v.d=[],s=0;W[s]==(ee[s]||0);s++);if(W[s]>(ee[s]||0)&&f--,o==null?(P=o=Q.precision,a=Q.rounding):l?P=o+(r.e-u.e)+1:P=o,P<0)A.push(1),D=!0;else{if(P=P/p+2|0,s=0,V==1){for(h=0,W=W[0],P++;(s<$||h)&&P--;s++)T=h*c+(ee[s]||0),A[s]=T/W|0,h=T%W|0;D=h||s<$}else{for(h=c/(W[0]+1)|0,h>1&&(W=e(W,h,c),ee=e(ee,h,c),V=W.length,$=ee.length),_=V,S=ee.slice(0,V),F=S.length;F<V;)S[F++]=0;Y=W.slice(),Y.unshift(0),Z=W[0],W[1]>=c/2&&++Z;do h=0,d=t(W,S,V,F),d<0?(R=S[0],V!=F&&(R=R*c+(S[1]||0)),h=R/Z|0,h>1?(h>=c&&(h=c-1),g=e(W,h,c),y=g.length,F=S.length,d=t(g,S,y,F),d==1&&(h--,n(g,V<y?Y:W,y,c))):(h==0&&(d=h=1),g=W.slice()),y=g.length,y<F&&g.unshift(0),n(S,g,F,c),d==-1&&(F=S.length,d=t(W,S,V,F),d<1&&(h++,n(S,V<F?Y:W,F,c))),F=S.length):d===0&&(h++,S=[0]),A[s++]=h,d&&S[0]?S[F++]=ee[_]||0:(S=[ee[_]],F=1);while((_++<$||S[0]!==void 0)&&P--);D=S[0]!==void 0}A[0]||A.shift()}if(p==1)v.e=f,Ai=D;else{for(s=1,h=A[0];h>=10;h/=10)s++;v.e=s+f*p-1,L(v,l?o+v.e+1:o,a,D)}return v}}();function L(e,t,n,r){var u,o,a,l,c,d,f,s,h,p=e.constructor;e:if(t!=null){if(s=e.d,!s)return e;for(u=1,l=s[0];l>=10;l/=10)u++;if(o=t-u,o<0)o+=q,a=t,f=s[h=0],c=f/ie(10,u-a-1)%10|0;else if(h=Math.ceil((o+1)/q),l=s.length,h>=l)if(r){for(;l++<=h;)s.push(0);f=c=0,u=1,o%=q,a=o-q+1}else break e;else{for(f=l=s[h],u=1;l>=10;l/=10)u++;o%=q,a=o-q+u,c=a<0?0:f/ie(10,u-a-1)%10|0}if(r=r||t<0||s[h+1]!==void 0||(a<0?f:f%ie(10,u-a-1)),d=n<4?(c||r)&&(n==0||n==(e.s<0?3:2)):c>5||c==5&&(n==4||r||n==6&&(o>0?a>0?f/ie(10,u-a):0:s[h-1])%10&1||n==(e.s<0?8:7)),t<1||!s[0])return s.length=0,d?(t-=e.e+1,s[0]=ie(10,(q-t%q)%q),e.e=-t||0):s[0]=e.e=0,e;if(o==0?(s.length=h,l=1,h--):(s.length=h+1,l=ie(10,q-o),s[h]=a>0?(f/ie(10,u-a)%ie(10,a)|0)*l:0),d)for(;;)if(h==0){for(o=1,a=s[0];a>=10;a/=10)o++;for(a=s[0]+=l,l=1;a>=10;a/=10)l++;o!=l&&(e.e++,s[0]==Le&&(s[0]=1));break}else{if(s[h]+=l,s[h]!=Le)break;s[h--]=0,l=1}for(o=s.length;s[--o]===0;)s.pop()}return k&&(e.e>p.maxE?(e.d=null,e.e=NaN):e.e<p.minE&&(e.e=0,e.d=[0])),e}function Ze(e,t,n){if(!e.isFinite())return _i(e);var r,u=e.e,o=fe(e.d),a=o.length;return t?(n&&(r=n-a)>0?o=o.charAt(0)+"."+o.slice(1)+at(r):a>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(e.e<0?"e":"e+")+e.e):u<0?(o="0."+at(-u-1)+o,n&&(r=n-a)>0&&(o+=at(r))):u>=a?(o+=at(u+1-a),n&&(r=n-u-1)>0&&(o=o+"."+at(r))):((r=u+1)<a&&(o=o.slice(0,r)+"."+o.slice(r)),n&&(r=n-a)>0&&(u+1===a&&(o+="."),o+=at(r))),o}function _n(e,t){var n=e[0];for(t*=q;n>=10;n/=10)t++;return t}function In(e,t,n){if(t>gd)throw k=!0,n&&(e.precision=n),Error(Ci);return L(new e(bn),t,1,!0)}function je(e,t,n){if(t>Ur)throw Error(Ci);return L(new e(Sn),t,n,!0)}function bi(e){var t=e.length-1,n=t*q+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 at(e){for(var t="";e--;)t+="0";return t}function Si(e,t,n,r){var u,o=new e(1),a=Math.ceil(r/q+4);for(k=!1;;){if(n%2&&(o=o.times(t),Oi(o.d,a)&&(u=!0)),n=pe(n/2),n===0){n=o.d.length-1,u&&o.d[n]===0&&++o.d[n];break}t=t.times(t),Oi(t.d,a)}return k=!0,o}function Mi(e){return e.d[e.d.length-1]&1}function Ni(e,t,n){for(var r,u=new e(t[0]),o=0;++o<t.length;)if(r=new e(t[o]),r.s)u[n](r)&&(u=r);else{u=r;break}return u}function Hr(e,t){var n,r,u,o,a,l,c,d=0,f=0,s=0,h=e.constructor,p=h.rounding,D=h.precision;if(!e.d||!e.d[0]||e.e>17)return new h(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:0/0);for(t==null?(k=!1,c=D):c=t,l=new h(.03125);e.e>-2;)e=e.times(l),s+=5;for(r=Math.log(ie(2,s))/Math.LN10*2+5|0,c+=r,n=o=a=new h(1),h.precision=c;;){if(o=L(o.times(e),c,1),n=n.times(++f),l=a.plus(K(o,n,c,1)),fe(l.d).slice(0,c)===fe(a.d).slice(0,c)){for(u=s;u--;)a=L(a.times(a),c,1);if(t==null)if(d<3&&Wt(a.d,c-r,p,d))h.precision=c+=10,n=o=l=new h(1),f=0,d++;else return L(a,h.precision=D,p,k=!0);else return h.precision=D,a}a=l}}function st(e,t){var n,r,u,o,a,l,c,d,f,s,h,p=1,D=10,g=e,y=g.d,v=g.constructor,A=v.rounding,S=v.precision;if(g.s<0||!y||!y[0]||!g.e&&y[0]==1&&y.length==1)return new v(y&&!y[0]?-1/0:g.s!=1?NaN:y?0:g);if(t==null?(k=!1,f=S):f=t,v.precision=f+=D,n=fe(y),r=n.charAt(0),Math.abs(o=g.e)<15e14){for(;r<7&&r!=1||r==1&&n.charAt(1)>3;)g=g.times(e),n=fe(g.d),r=n.charAt(0),p++;o=g.e,r>1?(g=new v("0."+n),o++):g=new v(r+"."+n.slice(1))}else return d=In(v,f+2,S).times(o+""),g=st(new v(r+"."+n.slice(1)),f-D).plus(d),v.precision=S,t==null?L(g,S,A,k=!0):g;for(s=g,c=a=g=K(g.minus(1),g.plus(1),f,1),h=L(g.times(g),f,1),u=3;;){if(a=L(a.times(h),f,1),d=c.plus(K(a,new v(u),f,1)),fe(d.d).slice(0,f)===fe(c.d).slice(0,f))if(c=c.times(2),o!==0&&(c=c.plus(In(v,f+2,S).times(o+""))),c=K(c,new v(p),f,1),t==null)if(Wt(c.d,f-D,A,l))v.precision=f+=D,d=a=g=K(s.minus(1),s.plus(1),f,1),h=L(g.times(g),f,1),u=l=1;else return L(c,v.precision=S,A,k=!0);else return v.precision=S,c;c=d,u+=2}}function _i(e){return String(e.s*e.s/0)}function zr(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)%q,n<0&&(r+=q),r<u){for(r&&e.d.push(+t.slice(0,r)),u-=q;r<u;)e.d.push(+t.slice(r,r+=q));t=t.slice(r),r=q-t.length}else r-=u;for(;r--;)t+="0";e.d.push(+t),k&&(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 md(e,t){var n,r,u,o,a,l,c,d,f;if(t.indexOf("_")>-1){if(t=t.replace(/(\d)_(?=\d)/g,"$1"),Bi.test(t))return zr(e,t)}else if(t==="Infinity"||t==="NaN")return+t||(e.s=NaN),e.e=NaN,e.d=null,e;if(dd.test(t))n=16,t=t.toLowerCase();else if(hd.test(t))n=2;else if(pd.test(t))n=8;else throw Error(ot+t);for(o=t.search(/p/i),o>0?(c=+t.slice(o+1),t=t.substring(2,o)):t=t.slice(2),o=t.indexOf("."),a=o>=0,r=e.constructor,a&&(t=t.replace(".",""),l=t.length,o=l-o,u=Si(r,new r(n),o,o*2)),d=Nn(t,n,Le),f=d.length-1,o=f;d[o]===0;--o)d.pop();return o<0?new r(e.s*0):(e.e=_n(d,f),e.d=d,k=!1,a&&(e=K(e,u,l*4)),c&&(e=e.times(Math.abs(c)<54?ie(2,c):Mt.pow(2,c))),k=!0,e)}function yd(e,t){var n,r=t.d.length;if(r<3)return t.isZero()?t:St(e,2,t,t);n=1.4*Math.sqrt(r),n=n>16?16:n|0,t=t.times(1/On(5,n)),t=St(e,2,t,t);for(var u,o=new e(5),a=new e(16),l=new e(20);n--;)u=t.times(t),t=t.times(o.plus(u.times(a.times(u).minus(l))));return t}function St(e,t,n,r,u){var o,a,l,c,d=e.precision,f=Math.ceil(d/q);for(k=!1,c=n.times(n),l=new e(r);;){if(a=K(l.times(c),new e(t++*t++),d,1),l=u?r.plus(a):r.minus(a),r=K(a.times(c),new e(t++*t++),d,1),a=l.plus(r),a.d[f]!==void 0){for(o=f;a.d[o]===l.d[o]&&o--;);if(o==-1)break}o=l,l=r,r=a,a=o}return k=!0,a.d.length=f+1,a}function On(e,t){for(var n=e;--t;)n*=e;return n}function Ii(e,t){var n,r=t.s<0,u=je(e,e.precision,1),o=u.times(.5);if(t=t.abs(),t.lte(o))return Ke=r?4:1,t;if(n=t.divToInt(u),n.isZero())Ke=r?3:2;else{if(t=t.minus(n.times(u)),t.lte(o))return Ke=Mi(n)?r?2:3:r?4:1,t;Ke=Mi(n)?r?1:4:r?3:2}return t.minus(u).abs()}function Wr(e,t,n,r){var u,o,a,l,c,d,f,s,h,p=e.constructor,D=n!==void 0;if(D?(Ce(n,1,it),r===void 0?r=p.rounding:Ce(r,0,8)):(n=p.precision,r=p.rounding),!e.isFinite())f=_i(e);else{for(f=Ze(e),a=f.indexOf("."),D?(u=2,t==16?n=n*4-3:t==8&&(n=n*3-2)):u=t,a>=0&&(f=f.replace(".",""),h=new p(1),h.e=f.length-a,h.d=Nn(Ze(h),10,u),h.e=h.d.length),s=Nn(f,10,u),o=c=s.length;s[--c]==0;)s.pop();if(!s[0])f=D?"0p+0":"0";else{if(a<0?o--:(e=new p(e),e.d=s,e.e=o,e=K(e,h,n,r,0,u),s=e.d,o=e.e,d=Ai),a=s[n],l=u/2,d=d||s[n+1]!==void 0,d=r<4?(a!==void 0||d)&&(r===0||r===(e.s<0?3:2)):a>l||a===l&&(r===4||d||r===6&&s[n-1]&1||r===(e.s<0?8:7)),s.length=n,d)for(;++s[--n]>u-1;)s[n]=0,n||(++o,s.unshift(1));for(c=s.length;!s[c-1];--c);for(a=0,f="";a<c;a++)f+=kr.charAt(s[a]);if(D){if(c>1)if(t==16||t==8){for(a=t==16?4:3,--c;c%a;c++)f+="0";for(s=Nn(f,u,t),c=s.length;!s[c-1];--c);for(a=1,f="1.";a<c;a++)f+=kr.charAt(s[a])}else f=f.charAt(0)+"."+f.slice(1);f=f+(o<0?"p":"p+")+o}else if(o<0){for(;++o;)f="0"+f;f="0."+f}else if(++o>c)for(o-=c;o--;)f+="0";else o<c&&(f=f.slice(0,o)+"."+f.slice(o))}f=(t==16?"0x":t==2?"0b":t==8?"0o":"")+f}return e.s<0?"-"+f:f}function Oi(e,t){if(e.length>t)return e.length=t,!0}function Ed(e){return new this(e).abs()}function Ad(e){return new this(e).acos()}function Cd(e){return new this(e).acosh()}function Fd(e,t){return new this(e).plus(t)}function wd(e){return new this(e).asin()}function Bd(e){return new this(e).asinh()}function bd(e){return new this(e).atan()}function Sd(e){return new this(e).atanh()}function Md(e,t){e=new this(e),t=new this(t);var n,r=this.precision,u=this.rounding,o=r+4;return!e.s||!t.s?n=new this(NaN):!e.d&&!t.d?(n=je(this,o,1).times(t.s>0?.25:.75),n.s=e.s):!t.d||e.isZero()?(n=t.s<0?je(this,r,u):new this(0),n.s=e.s):!e.d||t.isZero()?(n=je(this,o,1).times(.5),n.s=e.s):t.s<0?(this.precision=o,this.rounding=1,n=this.atan(K(e,t,o,1)),t=je(this,o,1),this.precision=r,this.rounding=u,n=e.s<0?n.minus(t):n.plus(t)):n=this.atan(K(e,t,o,1)),n}function Nd(e){return new this(e).cbrt()}function _d(e){return L(e=new this(e),e.e+1,2)}function Id(e,t,n){return new this(e).clamp(t,n)}function Od(e){if(!e||typeof e!="object")throw Error(Mn+"Object expected");var t,n,r,u=e.defaults===!0,o=["precision",1,it,"rounding",0,8,"toExpNeg",-bt,0,"toExpPos",0,bt,"maxE",0,bt,"minE",-bt,0,"modulo",0,9];for(t=0;t<o.length;t+=3)if(n=o[t],u&&(this[n]=Vr[n]),(r=e[n])!==void 0)if(pe(r)===r&&r>=o[t+1]&&r<=o[t+2])this[n]=r;else throw Error(ot+n+": "+r);if(n="crypto",u&&(this[n]=Vr[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(Fi);else this[n]=!1;else throw Error(ot+n+": "+r);return this}function Rd(e){return new this(e).cos()}function xd(e){return new this(e).cosh()}function Ri(e){var t,n,r;function u(o){var a,l,c,d=this;if(!(d instanceof u))return new u(o);if(d.constructor=u,xi(o)){d.s=o.s,k?!o.d||o.e>u.maxE?(d.e=NaN,d.d=null):o.e<u.minE?(d.e=0,d.d=[0]):(d.e=o.e,d.d=o.d.slice()):(d.e=o.e,d.d=o.d?o.d.slice():o.d);return}if(c=typeof o,c==="number"){if(o===0){d.s=1/o<0?-1:1,d.e=0,d.d=[0];return}if(o<0?(o=-o,d.s=-1):d.s=1,o===~~o&&o<1e7){for(a=0,l=o;l>=10;l/=10)a++;k?a>u.maxE?(d.e=NaN,d.d=null):a<u.minE?(d.e=0,d.d=[0]):(d.e=a,d.d=[o]):(d.e=a,d.d=[o]);return}else if(o*0!==0){o||(d.s=NaN),d.e=NaN,d.d=null;return}return zr(d,o.toString())}else if(c!=="string")throw Error(ot+o);return(l=o.charCodeAt(0))===45?(o=o.slice(1),d.s=-1):(l===43&&(o=o.slice(1)),d.s=1),Bi.test(o)?zr(d,o):md(d,o)}if(u.prototype=B,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=Od,u.clone=Ri,u.isDecimal=xi,u.abs=Ed,u.acos=Ad,u.acosh=Cd,u.add=Fd,u.asin=wd,u.asinh=Bd,u.atan=bd,u.atanh=Sd,u.atan2=Md,u.cbrt=Nd,u.ceil=_d,u.clamp=Id,u.cos=Rd,u.cosh=xd,u.div=$d,u.exp=Pd,u.floor=Td,u.hypot=Ld,u.ln=jd,u.log=qd,u.log10=Vd,u.log2=kd,u.max=Ud,u.min=Hd,u.mod=zd,u.mul=Wd,u.pow=Zd,u.random=Xd,u.round=Jd,u.sign=Gd,u.sin=Kd,u.sinh=Qd,u.sqrt=Yd,u.sub=ep,u.sum=tp,u.tan=np,u.tanh=rp,u.trunc=up,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 $d(e,t){return new this(e).div(t)}function Pd(e){return new this(e).exp()}function Td(e){return L(e=new this(e),e.e+1,3)}function Ld(){var e,t,n=new this(0);for(k=!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 k=!0,new this(1/0);n=t}return k=!0,n.sqrt()}function xi(e){return e instanceof Mt||e&&e.toStringTag===wi||!1}function jd(e){return new this(e).ln()}function qd(e,t){return new this(e).log(t)}function kd(e){return new this(e).log(2)}function Vd(e){return new this(e).log(10)}function Ud(){return Ni(this,arguments,"lt")}function Hd(){return Ni(this,arguments,"gt")}function zd(e,t){return new this(e).mod(t)}function Wd(e,t){return new this(e).mul(t)}function Zd(e,t){return new this(e).pow(t)}function Xd(e){var t,n,r,u,o=0,a=new this(1),l=[];if(e===void 0?e=this.precision:Ce(e,1,it),r=Math.ceil(e/q),this.crypto)if(crypto.getRandomValues)for(t=crypto.getRandomValues(new Uint32Array(r));o<r;)u=t[o],u>=429e7?t[o]=crypto.getRandomValues(new Uint32Array(1))[0]:l[o++]=u%1e7;else if(crypto.randomBytes){for(t=crypto.randomBytes(r*=4);o<r;)u=t[o]+(t[o+1]<<8)+(t[o+2]<<16)+((t[o+3]&127)<<24),u>=214e7?crypto.randomBytes(4).copy(t,o):(l.push(u%1e7),o+=4);o=r/4}else throw Error(Fi);else for(;o<r;)l[o++]=Math.random()*1e7|0;for(r=l[--o],e%=q,r&&e&&(u=ie(10,q-e),l[o]=(r/u|0)*u);l[o]===0;o--)l.pop();if(o<0)n=0,l=[0];else{for(n=-1;l[0]===0;n-=q)l.shift();for(r=1,u=l[0];u>=10;u/=10)r++;r<q&&(n-=q-r)}return a.e=n,a.d=l,a}function Jd(e){return L(e=new this(e),e.e+1,this.rounding)}function Gd(e){return e=new this(e),e.d?e.d[0]?e.s:0*e.s:e.s||NaN}function Kd(e){return new this(e).sin()}function Qd(e){return new this(e).sinh()}function Yd(e){return new this(e).sqrt()}function ep(e,t){return new this(e).sub(t)}function tp(){var e=0,t=arguments,n=new this(t[e]);for(k=!1;n.s&&++e<t.length;)n=n.plus(t[e]);return k=!0,L(n,this.precision,this.rounding)}function np(e){return new this(e).tan()}function rp(e){return new this(e).tanh()}function up(e){return L(e=new this(e),e.e+1,1)}B[Symbol.for("nodejs.util.inspect.custom")]=B.toString,B[Symbol.toStringTag]="Decimal";var Mt=B.constructor=Ri(Vr);bn=new Mt(bn),Sn=new Mt(Sn);var ip="BigNumber",op=["?on","config"],ap=Ae(ip,op,e=>{var{on:t,config:n}=e,r=Mt.clone({precision:n.precision,modulo:Mt.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,o){u.precision!==o.precision&&r.config({precision:u.precision})}),r},{isClass:!0}),$i={exports:{}};/**
17
+ * @license Complex.js v2.1.1 12/05/2020
18
+ *
19
+ * Copyright (c) 2020, Robert Eisele (robert@xarg.org)
20
+ * Dual licensed under the MIT or GPL Version 2 licenses.
21
+ **/(function(e,t){(function(n){var r=Math.cosh||function(s){return Math.abs(s)<1e-9?1-s:(Math.exp(s)+Math.exp(-s))*.5},u=Math.sinh||function(s){return Math.abs(s)<1e-9?s:(Math.exp(s)-Math.exp(-s))*.5},o=function(s){var h=Math.PI/4;if(-h>s||s>h)return Math.cos(s)-1;var p=s*s;return p*(p*(p*(p*(p*(p*(p*(p/20922789888e3-1/87178291200)+1/479001600)-1/3628800)+1/40320)-1/720)+1/24)-1/2)},a=function(s,h){var p=Math.abs(s),D=Math.abs(h);return p<3e3&&D<3e3?Math.sqrt(p*p+D*D):(p<D?(p=D,D=s/h):D=h/s,p*Math.sqrt(1+D*D))},l=function(){throw SyntaxError("Invalid Param")};function c(s,h){var p=Math.abs(s),D=Math.abs(h);return s===0?Math.log(D):h===0?Math.log(p):p<3e3&&D<3e3?Math.log(s*s+h*h)*.5:(s=s/2,h=h/2,.5*Math.log(s*s+h*h)+Math.LN2)}var d=function(s,h){var p={re:0,im:0};if(s==null)p.re=p.im=0;else if(h!==void 0)p.re=s,p.im=h;else switch(typeof s){case"object":if("im"in s&&"re"in s)p.re=s.re,p.im=s.im;else if("abs"in s&&"arg"in s){if(!Number.isFinite(s.abs)&&Number.isFinite(s.arg))return f.INFINITY;p.re=s.abs*Math.cos(s.arg),p.im=s.abs*Math.sin(s.arg)}else if("r"in s&&"phi"in s){if(!Number.isFinite(s.r)&&Number.isFinite(s.phi))return f.INFINITY;p.re=s.r*Math.cos(s.phi),p.im=s.r*Math.sin(s.phi)}else s.length===2?(p.re=s[0],p.im=s[1]):l();break;case"string":p.im=p.re=0;var D=s.match(/\d+\.?\d*e[+-]?\d+|\d+\.?\d*|\.\d+|./g),g=1,y=0;D===null&&l();for(var v=0;v<D.length;v++){var A=D[v];A===" "||A===" "||A===`
22
+ `||(A==="+"?g++:A==="-"?y++:A==="i"||A==="I"?(g+y===0&&l(),D[v+1]!==" "&&!isNaN(D[v+1])?(p.im+=parseFloat((y%2?"-":"")+D[v+1]),v++):p.im+=parseFloat((y%2?"-":"")+"1"),g=y=0):((g+y===0||isNaN(A))&&l(),D[v+1]==="i"||D[v+1]==="I"?(p.im+=parseFloat((y%2?"-":"")+A),v++):p.re+=parseFloat((y%2?"-":"")+A),g=y=0))}g+y>0&&l();break;case"number":p.im=0,p.re=s;break;default:l()}return isNaN(p.re)||isNaN(p.im),p};function f(s,h){if(!(this instanceof f))return new f(s,h);var p=d(s,h);this.re=p.re,this.im=p.im}f.prototype={re:0,im:0,sign:function(){var s=this.abs();return new f(this.re/s,this.im/s)},add:function(s,h){var p=new f(s,h);return this.isInfinite()&&p.isInfinite()?f.NAN:this.isInfinite()||p.isInfinite()?f.INFINITY:new f(this.re+p.re,this.im+p.im)},sub:function(s,h){var p=new f(s,h);return this.isInfinite()&&p.isInfinite()?f.NAN:this.isInfinite()||p.isInfinite()?f.INFINITY:new f(this.re-p.re,this.im-p.im)},mul:function(s,h){var p=new f(s,h);return this.isInfinite()&&p.isZero()||this.isZero()&&p.isInfinite()?f.NAN:this.isInfinite()||p.isInfinite()?f.INFINITY:p.im===0&&this.im===0?new f(this.re*p.re,0):new f(this.re*p.re-this.im*p.im,this.re*p.im+this.im*p.re)},div:function(s,h){var p=new f(s,h);if(this.isZero()&&p.isZero()||this.isInfinite()&&p.isInfinite())return f.NAN;if(this.isInfinite()||p.isZero())return f.INFINITY;if(this.isZero()||p.isInfinite())return f.ZERO;s=this.re,h=this.im;var D=p.re,g=p.im,y,v;return g===0?new f(s/D,h/D):Math.abs(D)<Math.abs(g)?(v=D/g,y=D*v+g,new f((s*v+h)/y,(h*v-s)/y)):(v=g/D,y=g*v+D,new f((s+h*v)/y,(h-s*v)/y))},pow:function(s,h){var p=new f(s,h);if(s=this.re,h=this.im,p.isZero())return f.ONE;if(p.im===0){if(h===0&&s>0)return new f(Math.pow(s,p.re),0);if(s===0)switch((p.re%4+4)%4){case 0:return new f(Math.pow(h,p.re),0);case 1:return new f(0,Math.pow(h,p.re));case 2:return new f(-Math.pow(h,p.re),0);case 3:return new f(0,-Math.pow(h,p.re))}}if(s===0&&h===0&&p.re>0&&p.im>=0)return f.ZERO;var D=Math.atan2(h,s),g=c(s,h);return s=Math.exp(p.re*g-p.im*D),h=p.im*g+p.re*D,new f(s*Math.cos(h),s*Math.sin(h))},sqrt:function(){var s=this.re,h=this.im,p=this.abs(),D,g;if(s>=0){if(h===0)return new f(Math.sqrt(s),0);D=.5*Math.sqrt(2*(p+s))}else D=Math.abs(h)/Math.sqrt(2*(p-s));return s<=0?g=.5*Math.sqrt(2*(p-s)):g=Math.abs(h)/Math.sqrt(2*(p+s)),new f(D,h<0?-g:g)},exp:function(){var s=Math.exp(this.re);return this.im,new f(s*Math.cos(this.im),s*Math.sin(this.im))},expm1:function(){var s=this.re,h=this.im;return new f(Math.expm1(s)*Math.cos(h)+o(h),Math.exp(s)*Math.sin(h))},log:function(){var s=this.re,h=this.im;return new f(c(s,h),Math.atan2(h,s))},abs:function(){return a(this.re,this.im)},arg:function(){return Math.atan2(this.im,this.re)},sin:function(){var s=this.re,h=this.im;return new f(Math.sin(s)*r(h),Math.cos(s)*u(h))},cos:function(){var s=this.re,h=this.im;return new f(Math.cos(s)*r(h),-Math.sin(s)*u(h))},tan:function(){var s=2*this.re,h=2*this.im,p=Math.cos(s)+r(h);return new f(Math.sin(s)/p,u(h)/p)},cot:function(){var s=2*this.re,h=2*this.im,p=Math.cos(s)-r(h);return new f(-Math.sin(s)/p,u(h)/p)},sec:function(){var s=this.re,h=this.im,p=.5*r(2*h)+.5*Math.cos(2*s);return new f(Math.cos(s)*r(h)/p,Math.sin(s)*u(h)/p)},csc:function(){var s=this.re,h=this.im,p=.5*r(2*h)-.5*Math.cos(2*s);return new f(Math.sin(s)*r(h)/p,-Math.cos(s)*u(h)/p)},asin:function(){var s=this.re,h=this.im,p=new f(h*h-s*s+1,-2*s*h).sqrt(),D=new f(p.re-h,p.im+s).log();return new f(D.im,-D.re)},acos:function(){var s=this.re,h=this.im,p=new f(h*h-s*s+1,-2*s*h).sqrt(),D=new f(p.re-h,p.im+s).log();return new f(Math.PI/2-D.im,D.re)},atan:function(){var s=this.re,h=this.im;if(s===0){if(h===1)return new f(0,1/0);if(h===-1)return new f(0,-1/0)}var p=s*s+(1-h)*(1-h),D=new f((1-h*h-s*s)/p,-2*s/p).log();return new f(-.5*D.im,.5*D.re)},acot:function(){var s=this.re,h=this.im;if(h===0)return new f(Math.atan2(1,s),0);var p=s*s+h*h;return p!==0?new f(s/p,-h/p).atan():new f(s!==0?s/0:0,h!==0?-h/0:0).atan()},asec:function(){var s=this.re,h=this.im;if(s===0&&h===0)return new f(0,1/0);var p=s*s+h*h;return p!==0?new f(s/p,-h/p).acos():new f(s!==0?s/0:0,h!==0?-h/0:0).acos()},acsc:function(){var s=this.re,h=this.im;if(s===0&&h===0)return new f(Math.PI/2,1/0);var p=s*s+h*h;return p!==0?new f(s/p,-h/p).asin():new f(s!==0?s/0:0,h!==0?-h/0:0).asin()},sinh:function(){var s=this.re,h=this.im;return new f(u(s)*Math.cos(h),r(s)*Math.sin(h))},cosh:function(){var s=this.re,h=this.im;return new f(r(s)*Math.cos(h),u(s)*Math.sin(h))},tanh:function(){var s=2*this.re,h=2*this.im,p=r(s)+Math.cos(h);return new f(u(s)/p,Math.sin(h)/p)},coth:function(){var s=2*this.re,h=2*this.im,p=r(s)-Math.cos(h);return new f(u(s)/p,-Math.sin(h)/p)},csch:function(){var s=this.re,h=this.im,p=Math.cos(2*h)-r(2*s);return new f(-2*u(s)*Math.cos(h)/p,2*r(s)*Math.sin(h)/p)},sech:function(){var s=this.re,h=this.im,p=Math.cos(2*h)+r(2*s);return new f(2*r(s)*Math.cos(h)/p,-2*u(s)*Math.sin(h)/p)},asinh:function(){var s=this.im;this.im=-this.re,this.re=s;var h=this.asin();return this.re=-this.im,this.im=s,s=h.re,h.re=-h.im,h.im=s,h},acosh:function(){var s=this.acos();if(s.im<=0){var h=s.re;s.re=-s.im,s.im=h}else{var h=s.im;s.im=-s.re,s.re=h}return s},atanh:function(){var s=this.re,h=this.im,p=s>1&&h===0,D=1-s,g=1+s,y=D*D+h*h,v=y!==0?new f((g*D-h*h)/y,(h*D+g*h)/y):new f(s!==-1?s/0:0,h!==0?h/0:0),A=v.re;return v.re=c(v.re,v.im)/2,v.im=Math.atan2(v.im,A)/2,p&&(v.im=-v.im),v},acoth:function(){var s=this.re,h=this.im;if(s===0&&h===0)return new f(0,Math.PI/2);var p=s*s+h*h;return p!==0?new f(s/p,-h/p).atanh():new f(s!==0?s/0:0,h!==0?-h/0:0).atanh()},acsch:function(){var s=this.re,h=this.im;if(h===0)return new f(s!==0?Math.log(s+Math.sqrt(s*s+1)):1/0,0);var p=s*s+h*h;return p!==0?new f(s/p,-h/p).asinh():new f(s!==0?s/0:0,h!==0?-h/0:0).asinh()},asech:function(){var s=this.re,h=this.im;if(this.isZero())return f.INFINITY;var p=s*s+h*h;return p!==0?new f(s/p,-h/p).acosh():new f(s!==0?s/0:0,h!==0?-h/0:0).acosh()},inverse:function(){if(this.isZero())return f.INFINITY;if(this.isInfinite())return f.ZERO;var s=this.re,h=this.im,p=s*s+h*h;return new f(s/p,-h/p)},conjugate:function(){return new f(this.re,-this.im)},neg:function(){return new f(-this.re,-this.im)},ceil:function(s){return s=Math.pow(10,s||0),new f(Math.ceil(this.re*s)/s,Math.ceil(this.im*s)/s)},floor:function(s){return s=Math.pow(10,s||0),new f(Math.floor(this.re*s)/s,Math.floor(this.im*s)/s)},round:function(s){return s=Math.pow(10,s||0),new f(Math.round(this.re*s)/s,Math.round(this.im*s)/s)},equals:function(s,h){var p=new f(s,h);return Math.abs(p.re-this.re)<=f.EPSILON&&Math.abs(p.im-this.im)<=f.EPSILON},clone:function(){return new f(this.re,this.im)},toString:function(){var s=this.re,h=this.im,p="";return this.isNaN()?"NaN":this.isInfinite()?"Infinity":(Math.abs(s)<f.EPSILON&&(s=0),Math.abs(h)<f.EPSILON&&(h=0),h===0?p+s:(s!==0?(p+=s,p+=" ",h<0?(h=-h,p+="-"):p+="+",p+=" "):h<0&&(h=-h,p+="-"),h!==1&&(p+=h),p+"i"))},toVector:function(){return[this.re,this.im]},valueOf:function(){return this.im===0?this.re:null},isNaN:function(){return isNaN(this.re)||isNaN(this.im)},isZero:function(){return this.im===0&&this.re===0},isFinite:function(){return isFinite(this.re)&&isFinite(this.im)},isInfinite:function(){return!(this.isNaN()||this.isFinite())}},f.ZERO=new f(0,0),f.ONE=new f(1,0),f.I=new f(0,1),f.PI=new f(Math.PI,0),f.E=new f(Math.E,0),f.INFINITY=new f(1/0,1/0),f.NAN=new f(NaN,NaN),f.EPSILON=1e-15,Object.defineProperty(f,"__esModule",{value:!0}),f.default=f,f.Complex=f,e.exports=f})()})($i);var le=iu($i.exports),sp="Complex",cp=[],fp=Ae(sp,cp,()=>(Object.defineProperty(le,"name",{value:"Complex"}),le.prototype.constructor=le,le.prototype.type="Complex",le.prototype.isComplex=!0,le.prototype.toJSON=function(){return{mathjs:"Complex",re:this.re,im:this.im}},le.prototype.toPolar=function(){return{r:this.abs(),phi:this.arg()}},le.prototype.format=function(e){var t="",n=this.im,r=this.re,u=xr(this.re,e),o=xr(this.im,e),a=ve(e)?e:e?e.precision:null;if(a!==null){var l=Math.pow(10,-a);Math.abs(r/n)<l&&(r=0),Math.abs(n/r)<l&&(n=0)}return n===0?t=u:r===0?n===1?t="i":n===-1?t="-i":t=o+"i":n<0?n===-1?t=u+" - i":t=u+" - "+o.substring(1)+"i":n===1?t=u+" + i":t=u+" + "+o+"i",t},le.fromPolar=function(e){switch(arguments.length){case 1:{var t=arguments[0];if(typeof t=="object")return le(t);throw new TypeError("Input has to be an object with r and phi keys.")}case 2:{var n=arguments[0],r=arguments[1];if(ve(n)){if(ti(r)&&r.hasBase("ANGLE")&&(r=r.toNumber("rad")),ve(r))return new le({r:n,phi:r});throw new TypeError("Phi is not a number nor an angle unit.")}else throw new TypeError("Radius r is not a number.")}default:throw new SyntaxError("Wrong number of arguments in function fromPolar")}},le.prototype.valueOf=le.prototype.toString,le.fromJSON=function(e){return new le(e)},le.compare=function(e,t){return e.re>t.re?1:e.re<t.re?-1:e.im>t.im?1:e.im<t.im?-1:0},le),{isClass:!0}),Pi={exports:{}};/**
23
+ * @license Fraction.js v4.2.0 05/03/2022
24
+ * https://www.xarg.org/2014/03/rational-numbers-in-javascript/
25
+ *
26
+ * Copyright (c) 2021, Robert Eisele (robert@xarg.org)
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 o(D,g){if(isNaN(D=parseInt(D,10)))throw p.InvalidParameter;return D*g}function a(D,g){if(g===0)throw p.DivisionByZero;var y=Object.create(p.prototype);y.s=D<0?-1:1,D=D<0?-D:D;var v=h(D,g);return y.n=D/v,y.d=g/v,y}function l(D){for(var g={},y=D,v=2,A=4;A<=y;){for(;y%v===0;)y/=v,g[v]=(g[v]||0)+1;A+=1+2*v++}return y!==D?y>1&&(g[y]=(g[y]||0)+1):g[D]=(g[D]||0)+1,g}var c=function(D,g){var y=0,v=1,A=1,S=0,F=0,R=0,P=1,T=1,_=0,$=1,Z=1,V=1,Y=1e7,Q;if(D!=null)if(g!==void 0){if(y=D,v=g,A=y*v,y%1!==0||v%1!==0)throw p.NonIntegerParameter}else switch(typeof D){case"object":{if("d"in D&&"n"in D)y=D.n,v=D.d,"s"in D&&(y*=D.s);else if(0 in D)y=D[0],1 in D&&(v=D[1]);else throw p.InvalidParameter;A=y*v;break}case"number":{if(D<0&&(A=D,D=-D),D%1===0)y=D;else if(D>0){for(D>=1&&(T=Math.pow(10,Math.floor(1+Math.log(D)/Math.LN10)),D/=T);$<=Y&&V<=Y;)if(Q=(_+Z)/($+V),D===Q){$+V<=Y?(y=_+Z,v=$+V):V>$?(y=Z,v=V):(y=_,v=$);break}else D>Q?(_+=Z,$+=V):(Z+=_,V+=$),$>Y?(y=Z,v=V):(y=_,v=$);y*=T}else(isNaN(D)||isNaN(g))&&(v=y=NaN);break}case"string":{if($=D.match(/\d+|./g),$===null)throw p.InvalidParameter;if($[_]==="-"?(A=-1,_++):$[_]==="+"&&_++,$.length===_+1?F=o($[_++],A):$[_+1]==="."||$[_]==="."?($[_]!=="."&&(S=o($[_++],A)),_++,(_+1===$.length||$[_+1]==="("&&$[_+3]===")"||$[_+1]==="'"&&$[_+3]==="'")&&(F=o($[_],A),P=Math.pow(10,$[_].length),_++),($[_]==="("&&$[_+2]===")"||$[_]==="'"&&$[_+2]==="'")&&(R=o($[_+1],A),T=Math.pow(10,$[_+1].length)-1,_+=3)):$[_+1]==="/"||$[_+1]===":"?(F=o($[_],A),P=o($[_+2],1),_+=3):$[_+3]==="/"&&$[_+1]===" "&&(S=o($[_],A),F=o($[_+2],A),P=o($[_+4],1),_+=5),$.length<=_){v=P*T,A=y=R+v*S+T*F;break}}default:throw p.InvalidParameter}if(v===0)throw p.DivisionByZero;u.s=A<0?-1:1,u.n=Math.abs(y),u.d=Math.abs(v)};function d(D,g,y){for(var v=1;g>0;D=D*D%y,g>>=1)g&1&&(v=v*D%y);return v}function f(D,g){for(;g%2===0;g/=2);for(;g%5===0;g/=5);if(g===1)return 0;for(var y=10%g,v=1;y!==1;v++)if(y=y*10%g,v>r)return 0;return v}function s(D,g,y){for(var v=1,A=d(10,y,g),S=0;S<300;S++){if(v===A)return S;v=v*10%g,A=A*10%g}return 0}function h(D,g){if(!D)return g;if(!g)return D;for(;;){if(D%=g,!D)return g;if(g%=D,!g)return D}}function p(D,g){if(c(D,g),this instanceof p)D=h(u.d,u.n),this.s=u.s,this.n=u.n/D,this.d=u.d/D;else return a(u.s*u.n,u.d)}p.DivisionByZero=new Error("Division by Zero"),p.InvalidParameter=new Error("Invalid argument"),p.NonIntegerParameter=new Error("Parameters must be integer"),p.prototype={s:1,n:0,d:1,abs:function(){return a(this.n,this.d)},neg:function(){return a(-this.s*this.n,this.d)},add:function(D,g){return c(D,g),a(this.s*this.n*u.d+u.s*this.d*u.n,this.d*u.d)},sub:function(D,g){return c(D,g),a(this.s*this.n*u.d-u.s*this.d*u.n,this.d*u.d)},mul:function(D,g){return c(D,g),a(this.s*u.s*this.n*u.n,this.d*u.d)},div:function(D,g){return c(D,g),a(this.s*u.s*this.n*u.d,this.d*u.n)},clone:function(){return a(this.s*this.n,this.d)},mod:function(D,g){if(isNaN(this.n)||isNaN(this.d))return new p(NaN);if(D===void 0)return a(this.s*this.n%this.d,1);if(c(D,g),u.n===0&&this.d===0)throw p.DivisionByZero;return a(this.s*(u.d*this.n)%(u.n*this.d),u.d*this.d)},gcd:function(D,g){return c(D,g),a(h(u.n,this.n)*h(u.d,this.d),u.d*this.d)},lcm:function(D,g){return c(D,g),u.n===0&&this.n===0?a(0,1):a(u.n*this.n,h(u.n,this.n)*h(u.d,this.d))},ceil:function(D){return D=Math.pow(10,D||0),isNaN(this.n)||isNaN(this.d)?new p(NaN):a(Math.ceil(D*this.s*this.n/this.d),D)},floor:function(D){return D=Math.pow(10,D||0),isNaN(this.n)||isNaN(this.d)?new p(NaN):a(Math.floor(D*this.s*this.n/this.d),D)},round:function(D){return D=Math.pow(10,D||0),isNaN(this.n)||isNaN(this.d)?new p(NaN):a(Math.round(D*this.s*this.n/this.d),D)},inverse:function(){return a(this.s*this.d,this.n)},pow:function(D,g){if(c(D,g),u.d===1)return u.s<0?a(Math.pow(this.s*this.d,u.n),Math.pow(this.n,u.n)):a(Math.pow(this.s*this.n,u.n),Math.pow(this.d,u.n));if(this.s<0)return null;var y=l(this.n),v=l(this.d),A=1,S=1;for(var F in y)if(F!=="1"){if(F==="0"){A=0;break}if(y[F]*=u.n,y[F]%u.d===0)y[F]/=u.d;else return null;A*=Math.pow(F,y[F])}for(var F in v)if(F!=="1"){if(v[F]*=u.n,v[F]%u.d===0)v[F]/=u.d;else return null;S*=Math.pow(F,v[F])}return u.s<0?a(S,A):a(A,S)},equals:function(D,g){return c(D,g),this.s*this.n*u.d===u.s*u.n*this.d},compare:function(D,g){c(D,g);var y=this.s*this.n*u.d-u.s*u.n*this.d;return(0<y)-(y<0)},simplify:function(D){if(isNaN(this.n)||isNaN(this.d))return this;D=D||.001;for(var g=this.abs(),y=g.toContinued(),v=1;v<y.length;v++){for(var A=a(y[v-1],1),S=v-2;S>=0;S--)A=A.inverse().add(y[S]);if(A.sub(g).abs().valueOf()<D)return A.mul(this.s)}return this},divisible:function(D,g){return c(D,g),!(!(u.n*this.d)||this.n*u.d%(u.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(D){var g,y="",v=this.n,A=this.d;return this.s<0&&(y+="-"),A===1?y+=v:(D&&(g=Math.floor(v/A))>0&&(y+=g,y+=" ",v%=A),y+=v,y+="/",y+=A),y},toLatex:function(D){var g,y="",v=this.n,A=this.d;return this.s<0&&(y+="-"),A===1?y+=v:(D&&(g=Math.floor(v/A))>0&&(y+=g,v%=A),y+="\\frac{",y+=v,y+="}{",y+=A,y+="}"),y},toContinued:function(){var D,g=this.n,y=this.d,v=[];if(isNaN(g)||isNaN(y))return v;do v.push(Math.floor(g/y)),D=g%y,g=y,y=D;while(g!==1);return v},toString:function(D){var g=this.n,y=this.d;if(isNaN(g)||isNaN(y))return"NaN";D=D||15;var v=f(g,y),A=s(g,y,v),S=this.s<0?"-":"";if(S+=g/y|0,g%=y,g*=10,g&&(S+="."),v){for(var F=A;F--;)S+=g/y|0,g%=y,g*=10;S+="(";for(var F=v;F--;)S+=g/y|0,g%=y,g*=10;S+=")"}else for(var F=D;g&&F--;)S+=g/y|0,g%=y,g*=10;return S}},Object.defineProperty(p,"__esModule",{value:!0}),p.default=p,p.Fraction=p,e.exports=p})()})(Pi);var Qe=iu(Pi.exports),lp="Fraction",hp=[],dp=Ae(lp,hp,()=>(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}),pp="Matrix",Dp=[],gp=Ae(pp,Dp,()=>{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 vp(e){return Object.keys(e.signatures||{}).reduce(function(t,n){var r=(n.match(/,/g)||[]).length+1;return Math.max(t,r)},-1)}var mp="DenseMatrix",yp=["Matrix"],Ep=Ae(mp,yp,e=>{var{Matrix:t}=e;function n(f,s){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(s&&!An(s))throw new Error("Invalid datatype: "+s);if(zt(f))f.type==="DenseMatrix"?(this._data=ht(f._data),this._size=ht(f._size),this._datatype=s||f._datatype):(this._data=f.toArray(),this._size=f.size(),this._datatype=s||f._datatype);else if(f&&Me(f.data)&&Me(f.size))this._data=f.data,this._size=f.size,di(this._data,this._size),this._datatype=s||f.datatype;else if(Me(f))this._data=d(f),this._size=Pr(this._data),di(this._data,this._size),this._datatype=s;else{if(f)throw new TypeError("Unsupported type of data ("+Ir(f)+")");this._data=[],this._size=[0],this._datatype=s}}n.prototype=new t,n.prototype.createDenseMatrix=function(f,s){return new n(f,s)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return Lr(this._data,Ir)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(f,s){return new n(f,s)},n.prototype.subset=function(f,s,h){switch(arguments.length){case 1:return r(this,f);case 2:case 3:return o(this,f,s,h);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(f){if(!Me(f))throw new TypeError("Array expected");if(f.length!==this._size.length)throw new se(f.length,this._size.length);for(var s=0;s<f.length;s++)Ie(f[s],this._size[s]);for(var h=this._data,p=0,D=f.length;p<D;p++){var g=f[p];Ie(g,h.length),h=h[g]}return h},n.prototype.set=function(f,s,h){if(!Me(f))throw new TypeError("Array expected");if(f.length<this._size.length)throw new se(f.length,this._size.length,"<");var p,D,g,y=f.map(function(A){return A+1});c(this,y,h);var v=this._data;for(p=0,D=f.length-1;p<D;p++)g=f[p],Ie(g,v.length),v=v[g];return g=f[f.length-1],Ie(g,v.length),v[g]=s,this};function r(f,s){if(!ni(s))throw new TypeError("Invalid index");var h=s.isScalar();if(h)return f.get(s.min());var p=s.size();if(p.length!==f._size.length)throw new se(p.length,f._size.length);for(var D=s.min(),g=s.max(),y=0,v=f._size.length;y<v;y++)Ie(D[y],f._size[y]),Ie(g[y],f._size[y]);return new n(u(f._data,s,p.length,0),f._datatype)}function u(f,s,h,p){var D=p===h-1,g=s.dimension(p);return D?g.map(function(y){return Ie(y,f.length),f[y]}).valueOf():g.map(function(y){Ie(y,f.length);var v=f[y];return u(v,s,h,p+1)}).valueOf()}function o(f,s,h,p){if(!s||s.isIndex!==!0)throw new TypeError("Invalid index");var D=s.size(),g=s.isScalar(),y;if(zt(h)?(y=h.size(),h=h.valueOf()):y=Pr(h),g){if(y.length!==0)throw new TypeError("Scalar expected");f.set(s.min(),h,p)}else{if(D.length<f._size.length)throw new se(D.length,f._size.length,"<");if(y.length<D.length){for(var v=0,A=0;D[v]===1&&y[v]===1;)v++;for(;D[v]===1;)A++,v++;h=Gh(h,D.length,A,y)}if(!Or(D,y))throw new se(D,y,">");var S=s.max().map(function(P){return P+1});c(f,S,p);var F=D.length,R=0;a(f._data,s,h,F,R)}return f}function a(f,s,h,p,D){var g=D===p-1,y=s.dimension(D);g?y.forEach(function(v,A){Ie(v),f[v]=h[A[0]]}):y.forEach(function(v,A){Ie(v),a(f[v],s,h[A[0]],p,D+1)})}n.prototype.resize=function(f,s,h){if(!_r(f))throw new TypeError("Array or Matrix expected");var p=f.valueOf().map(g=>Array.isArray(g)&&g.length===1?g[0]:g),D=h?this.clone():this;return l(D,p,s)};function l(f,s,h){if(s.length===0){for(var p=f._data;Me(p);)p=p[0];return p}return f._size=s.slice(0),f._data=pi(f._data,f._size,h),f}n.prototype.reshape=function(f,s){var h=s?this.clone():this;h._data=Xh(h._data,f);var p=h._size.reduce((D,g)=>D*g);return h._size=Di(f,p),h};function c(f,s,h){for(var p=f._size.slice(0),D=!1;p.length<s.length;)p.push(0),D=!0;for(var g=0,y=s.length;g<y;g++)s[g]>p[g]&&(p[g]=s[g],D=!0);D&&l(f,p,h)}n.prototype.clone=function(){var f=new n({data:ht(this._data),size:ht(this._size),datatype:this._datatype});return f},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(f){var s=this,h=vp(f),p=function y(v,A){return Me(v)?v.map(function(S,F){return y(S,A.concat(F))}):h===1?f(v):h===2?f(v,A):f(v,A,s)},D=p(this._data,[]),g=this._datatype!==void 0?Lr(D,Ir):void 0;return new n(D,g)},n.prototype.forEach=function(f){var s=this,h=function p(D,g){Me(D)?D.forEach(function(y,v){p(y,g.concat(v))}):f(D,g,s)};h(this._data,[])},n.prototype[Symbol.iterator]=function*(){var f=function*s(h,p){if(Me(h))for(var D=0;D<h.length;D++)yield*s(h[D],p.concat(D));else yield{value:h,index:p}};yield*f(this._data,[])},n.prototype.rows=function(){var f=[],s=this.size();if(s.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");var h=this._data;for(var p of h)f.push(new n([p],this._datatype));return f},n.prototype.columns=function(){var f=this,s=[],h=this.size();if(h.length!==2)throw new TypeError("Rows can only be returned for a 2D matrix.");for(var p=this._data,D=function(v){var A=p.map(S=>[S[v]]);s.push(new n(A,f._datatype))},g=0;g<h[1];g++)D(g);return s},n.prototype.toArray=function(){return ht(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(f){return dt(this._data,f)},n.prototype.toString=function(){return dt(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(f){if(f){if(ut(f)&&(f=f.toNumber()),!ve(f)||!We(f))throw new TypeError("The parameter k must be an integer number")}else f=0;for(var s=f>0?f:0,h=f<0?-f:0,p=this._size[0],D=this._size[1],g=Math.min(p-h,D-s),y=[],v=0;v<g;v++)y[v]=this._data[v+h][v+s];return new n({data:y,size:[g],datatype:this._datatype})},n.diagonal=function(f,s,h,p){if(!Me(f))throw new TypeError("Array expected, size parameter");if(f.length!==2)throw new Error("Only two dimensions matrix are supported");if(f=f.map(function(T){if(ut(T)&&(T=T.toNumber()),!ve(T)||!We(T)||T<1)throw new Error("Size values must be positive integers");return T}),h){if(ut(h)&&(h=h.toNumber()),!ve(h)||!We(h))throw new TypeError("The parameter k must be an integer number")}else h=0;var D=h>0?h:0,g=h<0?-h:0,y=f[0],v=f[1],A=Math.min(y-g,v-D),S;if(Me(s)){if(s.length!==A)throw new Error("Invalid value array length");S=function(_){return s[_]}}else if(zt(s)){var F=s.size();if(F.length!==1||F[0]!==A)throw new Error("Invalid matrix length");S=function(_){return s.get([_])}}else S=function(){return s};p||(p=ut(S(0))?S(0).mul(0):0);var R=[];if(f.length>0){R=pi(R,f,p);for(var P=0;P<A;P++)R[P+g][P+D]=S(P)}return new n({data:R,size:[y,v]})},n.fromJSON=function(f){return new n(f)},n.prototype.swapRows=function(f,s){if(!ve(f)||!We(f)||!ve(s)||!We(s))throw new Error("Row index must be positive integers");if(this._size.length!==2)throw new Error("Only two dimensional matrix is supported");return Ie(f,this._size[0]),Ie(s,this._size[0]),n._swapRows(f,s,this._data),this},n._swapRows=function(f,s,h){var p=h[f];h[f]=h[s],h[s]=p};function d(f){for(var s=0,h=f.length;s<h;s++){var p=f[s];Me(p)?f[s]=d(p):p&&p.isMatrix===!0&&(f[s]=d(p.valueOf()))}return f}return n},{isClass:!0}),Ti="equalScalar";Ae(Ti,["typed","config"],e=>{var{typed:t,config:n}=e;return t(Ti,{"number, number":function(u,o){return Vh(u,o,n.epsilon)}})});function Zt(e,t,n,r){if(!(this instanceof Zt))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}Zt.prototype=new Error,Zt.prototype.constructor=Error,Zt.prototype.name="ArgumentsError",Zt.prototype.isArgumentsError=!0;var Li="format",Ap=["typed"],Cp=Ae(Li,Ap,e=>{var{typed:t}=e;return t(Li,{any:dt,"any, Object | function | number":dt})}),ji="bin",Fp=["typed","format"];Ae(ji,Fp,e=>{var{typed:t,format:n}=e;return t(ji,{"number | BigNumber":function(u){return n(u,{notation:"bin"})},"number | BigNumber, number":function(u,o){return n(u,{notation:"bin",wordSize:o})}})});var qi="oct",wp=["typed","format"];Ae(qi,wp,e=>{var{typed:t,format:n}=e;return t(qi,{"number | BigNumber":function(u){return n(u,{notation:"oct"})},"number | BigNumber, number":function(u,o){return n(u,{notation:"oct",wordSize:o})}})});var ki="hex",Bp=["typed","format"];Ae(ki,Bp,e=>{var{typed:t,format:n}=e;return t(ki,{"number | BigNumber":function(u){return n(u,{notation:"hex"})},"number | BigNumber, number":function(u,o){return n(u,{notation:"hex",wordSize:o})}})});var Vi="equal";Ae(Vi,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Vi,{"any, any":function(u,o){return u===null?o===null:o===null?u===null:u===void 0?o===void 0:o===void 0?u===void 0:n(u,o)}})});var Ui="unequal";Ae(Ui,["typed","equalScalar"],e=>{var{typed:t,equalScalar:n}=e;return t(Ui,{"any, any":function(u,o){return u===null?o!==null:o===null?u!==null:u===void 0?o!==void 0:o===void 0?u!==void 0:!n(u,o)}})});var Hi={exports:{}};(function(e){(function(t,n,r){function u(c){var d=this,f=l();d.next=function(){var s=2091639*d.s0+d.c*23283064365386963e-26;return d.s0=d.s1,d.s1=d.s2,d.s2=s-(d.c=s|0)},d.c=1,d.s0=f(" "),d.s1=f(" "),d.s2=f(" "),d.s0-=f(c),d.s0<0&&(d.s0+=1),d.s1-=f(c),d.s1<0&&(d.s1+=1),d.s2-=f(c),d.s2<0&&(d.s2+=1),f=null}function o(c,d){return d.c=c.c,d.s0=c.s0,d.s1=c.s1,d.s2=c.s2,d}function a(c,d){var f=new u(c),s=d&&d.state,h=f.next;return h.int32=function(){return f.next()*4294967296|0},h.double=function(){return h()+(h()*2097152|0)*11102230246251565e-32},h.quick=h,s&&(typeof s=="object"&&o(s,f),h.state=function(){return o(f,{})}),h}function l(){var c=4022871197,d=function(f){f=String(f);for(var s=0;s<f.length;s++){c+=f.charCodeAt(s);var h=.02519603282416938*c;c=h>>>0,h-=c,h*=c,c=h>>>0,h-=c,c+=h*4294967296}return(c>>>0)*23283064365386963e-26};return d}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.alea=a})(et,e,!1)})(Hi);var zi={exports:{}};(function(e){(function(t,n,r){function u(l){var c=this,d="";c.x=0,c.y=0,c.z=0,c.w=0,c.next=function(){var s=c.x^c.x<<11;return c.x=c.y,c.y=c.z,c.z=c.w,c.w^=c.w>>>19^s^s>>>8},l===(l|0)?c.x=l:d+=l;for(var f=0;f<d.length+64;f++)c.x^=d.charCodeAt(f)|0,c.next()}function o(l,c){return c.x=l.x,c.y=l.y,c.z=l.z,c.w=l.w,c}function a(l,c){var d=new u(l),f=c&&c.state,s=function(){return(d.next()>>>0)/4294967296};return s.double=function(){do var h=d.next()>>>11,p=(d.next()>>>0)/4294967296,D=(h+p)/(1<<21);while(D===0);return D},s.int32=d.next,s.quick=s,f&&(typeof f=="object"&&o(f,d),s.state=function(){return o(d,{})}),s}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.xor128=a})(et,e,!1)})(zi);var Wi={exports:{}};(function(e){(function(t,n,r){function u(l){var c=this,d="";c.next=function(){var s=c.x^c.x>>>2;return c.x=c.y,c.y=c.z,c.z=c.w,c.w=c.v,(c.d=c.d+362437|0)+(c.v=c.v^c.v<<4^(s^s<<1))|0},c.x=0,c.y=0,c.z=0,c.w=0,c.v=0,l===(l|0)?c.x=l:d+=l;for(var f=0;f<d.length+64;f++)c.x^=d.charCodeAt(f)|0,f==d.length&&(c.d=c.x<<10^c.x>>>4),c.next()}function o(l,c){return c.x=l.x,c.y=l.y,c.z=l.z,c.w=l.w,c.v=l.v,c.d=l.d,c}function a(l,c){var d=new u(l),f=c&&c.state,s=function(){return(d.next()>>>0)/4294967296};return s.double=function(){do var h=d.next()>>>11,p=(d.next()>>>0)/4294967296,D=(h+p)/(1<<21);while(D===0);return D},s.int32=d.next,s.quick=s,f&&(typeof f=="object"&&o(f,d),s.state=function(){return o(d,{})}),s}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.xorwow=a})(et,e,!1)})(Wi);var Zi={exports:{}};(function(e){(function(t,n,r){function u(l){var c=this;c.next=function(){var f=c.x,s=c.i,h,p;return h=f[s],h^=h>>>7,p=h^h<<24,h=f[s+1&7],p^=h^h>>>10,h=f[s+3&7],p^=h^h>>>3,h=f[s+4&7],p^=h^h<<7,h=f[s+7&7],h=h^h<<13,p^=h^h<<9,f[s]=p,c.i=s+1&7,p};function d(f,s){var h,p=[];if(s===(s|0))p[0]=s;else for(s=""+s,h=0;h<s.length;++h)p[h&7]=p[h&7]<<15^s.charCodeAt(h)+p[h+1&7]<<13;for(;p.length<8;)p.push(0);for(h=0;h<8&&p[h]===0;++h);for(h==8?p[7]=-1:p[h],f.x=p,f.i=0,h=256;h>0;--h)f.next()}d(c,l)}function o(l,c){return c.x=l.x.slice(),c.i=l.i,c}function a(l,c){l==null&&(l=+new Date);var d=new u(l),f=c&&c.state,s=function(){return(d.next()>>>0)/4294967296};return s.double=function(){do var h=d.next()>>>11,p=(d.next()>>>0)/4294967296,D=(h+p)/(1<<21);while(D===0);return D},s.int32=d.next,s.quick=s,f&&(f.x&&o(f,d),s.state=function(){return o(d,{})}),s}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.xorshift7=a})(et,e,!1)})(Zi);var Xi={exports:{}};(function(e){(function(t,n,r){function u(l){var c=this;c.next=function(){var f=c.w,s=c.X,h=c.i,p,D;return c.w=f=f+1640531527|0,D=s[h+34&127],p=s[h=h+1&127],D^=D<<13,p^=p<<17,D^=D>>>15,p^=p>>>12,D=s[h]=D^p,c.i=h,D+(f^f>>>16)|0};function d(f,s){var h,p,D,g,y,v=[],A=128;for(s===(s|0)?(p=s,s=null):(s=s+"\0",p=0,A=Math.max(A,s.length)),D=0,g=-32;g<A;++g)s&&(p^=s.charCodeAt((g+32)%s.length)),g===0&&(y=p),p^=p<<10,p^=p>>>15,p^=p<<4,p^=p>>>13,g>=0&&(y=y+1640531527|0,h=v[g&127]^=p+y,D=h==0?D+1:0);for(D>=128&&(v[(s&&s.length||0)&127]=-1),D=127,g=4*128;g>0;--g)p=v[D+34&127],h=v[D=D+1&127],p^=p<<13,h^=h<<17,p^=p>>>15,h^=h>>>12,v[D]=p^h;f.w=y,f.X=v,f.i=D}d(c,l)}function o(l,c){return c.i=l.i,c.w=l.w,c.X=l.X.slice(),c}function a(l,c){l==null&&(l=+new Date);var d=new u(l),f=c&&c.state,s=function(){return(d.next()>>>0)/4294967296};return s.double=function(){do var h=d.next()>>>11,p=(d.next()>>>0)/4294967296,D=(h+p)/(1<<21);while(D===0);return D},s.int32=d.next,s.quick=s,f&&(f.X&&o(f,d),s.state=function(){return o(d,{})}),s}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.xor4096=a})(et,e,!1)})(Xi);var Ji={exports:{}};(function(e){(function(t,n,r){function u(l){var c=this,d="";c.next=function(){var s=c.b,h=c.c,p=c.d,D=c.a;return s=s<<25^s>>>7^h,h=h-p|0,p=p<<24^p>>>8^D,D=D-s|0,c.b=s=s<<20^s>>>12^h,c.c=h=h-p|0,c.d=p<<16^h>>>16^D,c.a=D-s|0},c.a=0,c.b=0,c.c=-1640531527,c.d=1367130551,l===Math.floor(l)?(c.a=l/4294967296|0,c.b=l|0):d+=l;for(var f=0;f<d.length+20;f++)c.b^=d.charCodeAt(f)|0,c.next()}function o(l,c){return c.a=l.a,c.b=l.b,c.c=l.c,c.d=l.d,c}function a(l,c){var d=new u(l),f=c&&c.state,s=function(){return(d.next()>>>0)/4294967296};return s.double=function(){do var h=d.next()>>>11,p=(d.next()>>>0)/4294967296,D=(h+p)/(1<<21);while(D===0);return D},s.int32=d.next,s.quick=s,f&&(typeof f=="object"&&o(f,d),s.state=function(){return o(d,{})}),s}n&&n.exports?n.exports=a:r&&r.amd?r(function(){return a}):this.tychei=a})(et,e,!1)})(Ji);var Gi={exports:{}};(function(e){(function(t,n,r){var u=256,o=6,a=52,l="random",c=r.pow(u,o),d=r.pow(2,a),f=d*2,s=u-1,h;function p(F,R,P){var T=[];R=R==!0?{entropy:!0}:R||{};var _=v(y(R.entropy?[F,S(n)]:F==null?A():F,3),T),$=new D(T),Z=function(){for(var V=$.g(o),Y=c,Q=0;V<d;)V=(V+Q)*u,Y*=u,Q=$.g(1);for(;V>=f;)V/=2,Y/=2,Q>>>=1;return(V+Q)/Y};return Z.int32=function(){return $.g(4)|0},Z.quick=function(){return $.g(4)/4294967296},Z.double=Z,v(S($.S),n),(R.pass||P||function(V,Y,Q,ne){return ne&&(ne.S&&g(ne,$),V.state=function(){return g($,{})}),Q?(r[l]=V,Y):V})(Z,_,"global"in R?R.global:this==r,R.state)}function D(F){var R,P=F.length,T=this,_=0,$=T.i=T.j=0,Z=T.S=[];for(P||(F=[P++]);_<u;)Z[_]=_++;for(_=0;_<u;_++)Z[_]=Z[$=s&$+F[_%P]+(R=Z[_])],Z[$]=R;(T.g=function(V){for(var Y,Q=0,ne=T.i,ee=T.j,W=T.S;V--;)Y=W[ne=s&ne+1],Q=Q*u+W[s&(W[ne]=W[ee=s&ee+Y])+(W[ee]=Y)];return T.i=ne,T.j=ee,Q})(u)}function g(F,R){return R.i=F.i,R.j=F.j,R.S=F.S.slice(),R}function y(F,R){var P=[],T=typeof F,_;if(R&&T=="object")for(_ in F)try{P.push(y(F[_],R-1))}catch($){}return P.length?P:T=="string"?F:F+"\0"}function v(F,R){for(var P=F+"",T,_=0;_<P.length;)R[s&_]=s&(T^=R[s&_]*19)+P.charCodeAt(_++);return S(R)}function A(){try{var F;return h&&(F=h.randomBytes)?F=F(u):(F=new Uint8Array(u),(t.crypto||t.msCrypto).getRandomValues(F)),S(F)}catch(T){var R=t.navigator,P=R&&R.plugins;return[+new Date,t,P,t.screen,S(n)]}}function S(F){return String.fromCharCode.apply(0,F)}if(v(r.random(),n),e.exports){e.exports=p;try{h=Ln.default}catch(F){}}else r["seed"+l]=p})(typeof self!="undefined"?self:et,[],Math)})(Gi);var bp=Hi.exports,Sp=zi.exports,Mp=Wi.exports,Np=Zi.exports,_p=Xi.exports,Ip=Ji.exports,Nt=Gi.exports;Nt.alea=bp,Nt.xor128=Sp,Nt.xorwow=Mp,Nt.xorshift7=Np,Nt.xor4096=_p,Nt.tychei=Ip,Rn("fineStructure",.0072973525693),Rn("weakMixingAngle",.2229),Rn("efimovFactor",22.7),Rn("sackurTetrode",-1.16487052358);function Rn(e,t){var n=["config","BigNumber"];return Ae(e,n,r=>{var{config:u,BigNumber:o}=r;return u.number==="BigNumber"?new o(t):t})}var Op=ap({config:ri}),Rp=fp({}),xp=dp({}),$p=gp({}),Pp=Ep({Matrix:$p}),Tp=fd({BigNumber:Op,Complex:Rp,DenseMatrix:Pp,Fraction:xp}),Lp=Cp({typed:Tp});class jp{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&&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&&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===J.CALC)}getCalcDependencies(){this.calcControls.forEach(t=>{const{scriptEcho:n}=t.props;n.forEach(r=>{(r.type===xe.VariableInMainTable||r.type===xe.VariableInCurrentSubTable||r.type===xe.VariableInOtherSubTable)&&this.setDependenciesTriggerMapItem(r.id,t),r.type===xe.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 o=u.children[0];o&&this.engine.assertInstance(o,J.CALC)&&n.push(o)}),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 o,a,l;this.resetDependencies();const n=(a=(o=t.options)==null?void 0:o.changed)!=null?a:[];this.getCalcControlsFromSubtableRows(n).forEach(c=>{this.computedCalcValue(c)}),((l=this.dependenciesTriggerMap.get(t.instance.id))!=null?l:[]).forEach(c=>{this.computedCalcValue(c)})})}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(o=>{this.controlInSubtable(o)&&this.engine.getInstanceRowIndex(o)!==t.rowIndex||this.computedCalcValue(o)}):r.forEach(o=>{this.computedCalcValue(o)})})}controlInSubtable(t){var n;return((n=t.parent)==null?void 0:n.type)===J.SUBTABLE_COLUMN}computedCalcValue(t){var c;const n=t.props.scriptEcho;if(!n||n.length===0)return;const r=n.reduce((d,f)=>{if(f.type===xe.Operator||f.type===xe.Number)return d+f.name;let s=0,h;switch(f.type){case xe.VariableInMainTable:{const p=this.getNumberValue(this.engine.getState(f.id));h=this.engine.getInstance(f.id),s=Number(p);break}case xe.VariableInCurrentSubTable:{const p=this.engine.getInstanceRowIndex(t);h=this.engine.getInstance(f.id,p);const D=this.engine.getState(f.id,p),g=this.getNumberValue(D);s=Number(g);break}case xe.VariableInOtherSubTable:{const p=this.engine.getState(f.id),D=Array.isArray(p)?p.map(y=>this.getNumberValue(y)):[],g=this.getAggregateTypeValue(D,f.aggregateType);h=this.engine.getInstance(f.subTableId),s=Number(g);break}}return!Number.isNaN(s)&&this.controlNeedComputedValue(h)?d+=`(${s})`:d+=0,d},"");let u;this.cacheComputedResult[r]!==void 0?u=this.cacheComputedResult[r]:(u=Number(Lp(new Function(`return ${r}`)(),{precision:16})),this.cacheComputedResult[r]=u);let o;if(this.controlInSubtable(t)&&(o=this.engine.getInstanceRowIndex(t),o===void 0))return;const a=this.engine.getState(t.id,o),l=!u||u===1/0||u===-1/0?0:t.props.precision===""?u:Number(u.toFixed(t.props.precision));l!==(a==null?void 0:a.result)&&this.engine.setState(t.id,{result:l,unit:(c=a==null?void 0:a.unit)!=null?c:""},o)}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 gt.MAX:return Math.max(...t);case gt.MIN:return Math.min(...t);case gt.SUM:return t.reduce((r,u)=>r+u);case gt.AVG:return t.reduce((r,u)=>r+u)/t.length}}}class qp{constructor(t){this.config=t}apply(t){var o,a;this.engine=t;const n=(a=(o=this.config)==null?void 0:o.source)!=null?a:"";let r=document.createElement("style");r.className="edit-css",r.type="text/css",r.innerHTML=n,document.querySelector("head").appendChild(r)}}X.CalcPlugin=jp,X.ControlsEventPlugin=nh,X.ES6ModulePlugin=Y0,X.Engine=Mr,X.LifecycleEventPlugin=th,X.Plugin=Q0,X.StylePlugin=qp,X.hasChildrenControl=yn,X.loopDataViewControl=Vt,X.loopFormControl=kt,X.parseModule=Ku,Object.defineProperty(X,"__esModule",{value:!0})});
@@ -73,6 +73,7 @@ declare class Engine extends Watcher<EventKeys> {
73
73
  getRules(controlId?: string): import("async-validator").Rules | undefined;
74
74
  getAntdRules(controlId?: string): import("async-validator").Rules | undefined;
75
75
  getState(controlId?: string, rowIndex?: number): unknown;
76
+ getFieldCodeState(controlId?: string): unknown;
76
77
  getEmptyState(controlId?: string): any;
77
78
  /**
78
79
  * 设置payload的options,提供在不是使用标准api修改state的时候可以传递options,会在本次任务执行完成之后清空
@@ -92,6 +93,7 @@ declare class Engine extends Watcher<EventKeys> {
92
93
  * @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
93
94
  * */
94
95
  getField(dataCode: string, fieldCode?: string, rowIndex?: number): unknown;
96
+ getData(dataCode: string): unknown;
95
97
  /**
96
98
  * 通过dataCode和fieldCode来设置控件的值
97
99
  * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
@@ -33,6 +33,7 @@ declare type StoreProps = {
33
33
  declare class Store {
34
34
  readonly emptyState: StatesType;
35
35
  state: StatesType;
36
+ fieldCodeState: StatesType;
36
37
  dataBindMapping: dataBindMappingType;
37
38
  controlIdMapping: controlIdMappingType;
38
39
  constructor(props: StoreProps);
@@ -43,6 +44,7 @@ declare class Store {
43
44
  */
44
45
  setState(controlId: string, value: unknown, rowIndex?: number): void;
45
46
  getState(controlId: string, rowIndex?: number): unknown;
47
+ getFieldCodeState(controlId: string): unknown;
46
48
  getEmptyState(controlId: string): unknown;
47
49
  getDataBind(controlId: string): DataBind | ObjectDataBind | undefined;
48
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-engine",
3
- "version": "1.5.0-beta.7",
3
+ "version": "1.7.0",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -22,11 +22,12 @@
22
22
  "postpublish": "node ../../scripts/postpublish.js"
23
23
  },
24
24
  "dependencies": {
25
- "@byteluck-fe/model-driven-core": "^1.5.0-beta.7",
26
- "@byteluck-fe/model-driven-shared": "^1.5.0-beta.7"
25
+ "@byteluck-fe/model-driven-core": "^1.7.0",
26
+ "@byteluck-fe/model-driven-shared": "^1.7.0",
27
+ "mathjs": "^11.3.3"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@types/node": "~18.0.3"
30
31
  },
31
- "gitHead": "2bf73ab3e217309949421c3e60f75631093e35e0"
32
+ "gitHead": "8450ef2f928f886c6cb0cf0f9d504f328b3d8a80"
32
33
  }