@univerjs-pro/collaboration 0.5.0-alpha.0 → 0.5.0-beta.1
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.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/types/command/create-unit.mutation.d.ts +8 -0
- package/lib/types/command/revert-revision.mutation.d.ts +6 -0
- package/lib/types/controllers/config.schema.d.ts +5 -0
- package/lib/types/controllers/doc-transform/algorithms/doc-algo.d.ts +4 -0
- package/lib/types/controllers/doc-transform/doc-transform.controller.d.ts +9 -0
- package/lib/types/controllers/rev/rev.controller.d.ts +8 -0
- package/lib/types/controllers/sheet-transform/algorithms/__tests__/transform-test-bed.d.ts +17 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/add-comment.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/util.d.ts +13 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/add-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/__test__/add-conditional-rule.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/add-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/util.d.ts +13 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/add-data-validation.algo.d.ts +16 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/update-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-hyper-link/add-hyper-link.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-col.algo.d.ts +5 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-row.algo.d.ts +5 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-selection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/utils/merge-tools.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/change-sheet-order.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-name.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-comment/add-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-comment/delete-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-conditional-formatting-rule/delete-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/gridlines/__tests__/gridlines.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/gridlines/gridlines.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-comment.algo.d.ts +18 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-comment-ref.algo.d.ts +19 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-data-validation.algo.d.ts +6 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/update-data-validation.algo.d.ts +9 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/__test__/move-conditional-formatting-rule.algo.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/move-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/remove-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-hyper-link/remove-hyper-link.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-range-value.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/remove-sheets-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/set-selection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/reorder-range/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/revert-revision/revert-revision.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/__test__/set-conditional-formatting-rule.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/set-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-drawing/__tests__/set-drawing-apply.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-drawing/set-drawing-apply.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-frozen/__test__/set-frozen.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-frozen/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/set-range-valuea.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/__tests__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/move-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/remove-sheets-filter.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-range-values.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-sheets-filter-criteria.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/remove-sheets-filter.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/set-sheets-filter-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/__test__/set-tab-color.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/set-tab-color.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-name/set-worksheet-name.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-comment/update-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-comment-ref/update-comment-ref.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/add-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/remove-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/update-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link/update-hyper-link.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link-ref/update-hyper-link-ref.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/utils.d.ts +33 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/worksheet.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/add-worksheet-merge.algo.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/remove-worksheet-merge.algo.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/worksheet.algo.d.ts +8 -0
- package/lib/types/controllers/sheet-transform/sheet-transform.controller.d.ts +9 -0
- package/lib/types/index.d.ts +17 -716
- package/lib/types/models/changeset.d.ts +20 -0
- package/lib/types/models/collaboration-events.d.ts +235 -0
- package/lib/types/models/socket-events.d.ts +53 -0
- package/lib/types/plugin.d.ts +10 -0
- package/lib/types/services/compose-changesets/compose-changesets.service.d.ts +5 -0
- package/lib/types/services/compress-mutation/compress-mutation-service.d.ts +19 -0
- package/lib/types/services/compress-mutation/compress-mutations/__test__/set-range-values.spec.d.ts +1 -0
- package/lib/types/services/compress-mutation/compress-mutations/set-range-values.d.ts +13 -0
- package/lib/types/services/history/type.d.ts +6 -0
- package/lib/types/services/rev/__tests__/rev.service.spec.d.ts +18 -0
- package/lib/types/services/rev/rev.service.d.ts +23 -0
- package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +27 -0
- package/lib/types/services/snapshot/__tests__/snapshot-transform.spec.d.ts +1 -0
- package/lib/types/services/snapshot/__tests__/snapshot.service.spec.d.ts +23 -0
- package/lib/types/services/snapshot/snapshot-transform.d.ts +30 -0
- package/lib/types/services/snapshot/snapshot-utils.d.ts +15 -0
- package/lib/types/services/snapshot/snapshot.service.d.ts +46 -0
- package/lib/types/services/transform/__tests__/doc.transform.service.spec.d.ts +1 -0
- package/lib/types/services/transform/__tests__/transform.service.spec.d.ts +1 -0
- package/lib/types/services/transform/transform.service.d.ts +114 -0
- package/lib/types/services/transform/types.d.ts +47 -0
- package/lib/types/utils.d.ts +8 -0
- package/lib/umd/index.js +1 -1
- package/package.json +21 -21
package/lib/es/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const _0x572182=_0x2b5d;(function(_0x4b9b1d,_0x3e021a){const _0xff1461=_0x2b5d,_0x225327=_0x4b9b1d();while(!![]){try{const _0xb05c3d=parseInt(_0xff1461(0x117))/0x1*(parseInt(_0xff1461(0x1db))/0x2)+-parseInt(_0xff1461(0x18d))/0x3+parseInt(_0xff1461(0x1c1))/0x4+parseInt(_0xff1461(0x1d7))/0x5*(-parseInt(_0xff1461(0x98))/0x6)+-parseInt(_0xff1461(0x114))/0x7+-parseInt(_0xff1461(0xe3))/0x8*(-parseInt(_0xff1461(0x10d))/0x9)+parseInt(_0xff1461(0x1ee))/0xa;if(_0xb05c3d===_0x3e021a)break;else _0x225327['push'](_0x225327['shift']());}catch(_0xe7d836){_0x225327['push'](_0x225327['shift']());}}}(_0x1690,0x90b7e));var gr=Object['defineProperty'],Ir=(_0x14f62d,_0x25fbed,_0x4d5cbe)=>_0x25fbed in _0x14f62d?gr(_0x14f62d,_0x25fbed,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4d5cbe}):_0x14f62d[_0x25fbed]=_0x4d5cbe,se=(_0x1d2af1,_0x74cd29,_0x534357)=>Ir(_0x1d2af1,typeof _0x74cd29!=_0x572182(0x8e)?_0x74cd29+'':_0x74cd29,_0x534357);import{createIdentifier as _0x39c530,Disposable as _0x522e72,Tools as _0x570d2f,ObjectMatrix as _0x1f7bb9,Range as _0x563f2d,queryObjectMatrix as _0x2de447,isRangesEqual as _0x592f19,Rectangle as _0x5b3986,RANGE_TYPE as _0x3e1f4a,isFormulaString as _0x20a3db,insertMatrixArray as _0x4a2d3e,moveMatrixArray as _0x3d006d,spliceArray as _0x4aa10e,CommandType as _0x361ef7,JSON1 as _0x3dbcac,JSONX as _0x430aeb,ICommandService as _0x29be17,createInterceptorKey as _0xe27569,InterceptorManager as _0x17f18b,IUniverInstanceService as _0x2c40b4,UniverInstanceType as _0x2e0eae,SheetTypes as _0x527d41,LocaleType as _0x96e036,Inject as _0x55268a,Injector as _0x5cafd9,IResourceManagerService as _0x3dfe73,DependentOn as _0xd02a03,Plugin as _0x10409a,IConfigService as _0x70987}from'@univerjs/core';import{AddCommentMutation as _0x1b398d,DeleteCommentMutation as _0x5b7f88,UpdateCommentMutation as _0x2c3db1,UpdateCommentRefMutation as _0x2afd0c}from'@univerjs/thread-comment';import{AddConditionalRuleMutation as _0x4ae767,MoveConditionalRuleMutation as _0x396099,DeleteConditionalRuleMutation as _0x7e7ab0,SetConditionalRuleMutation as _0x36306e}from'@univerjs/sheets-conditional-formatting';import{AddDataValidationMutation as _0x3bedd8,RemoveDataValidationMutation as _0x13693a,UpdateRuleType as _0x4e3a21,UpdateDataValidationMutation as _0x4e1baf}from'@univerjs/data-validation';import{AddHyperLinkMutation as _0x3101d1,RemoveHyperLinkMutation as _0x336ff4,UpdateHyperLinkMutation as _0x4325f9,UpdateHyperLinkRefMutation as _0x3ece39}from'@univerjs/sheets-hyper-link';import{AddRangeProtectionMutation as _0x532e28,AddWorksheetMergeMutation as _0x4b0a3e,AddWorksheetProtectionMutation as _0xeba0d,InsertColMutation as _0x541ec4,InsertRowMutation as _0x224ab4,MoveColsMutation as _0x31c10b,MoveRangeMutation as _0x43f1cd,MoveRowsMutation as _0x454b7a,RemoveColMutation as _0xe5c4bd,RemoveNumfmtMutation as _0x3dcda7,RemoveWorksheetMergeMutation as _0x3c47fd,SetFrozenMutation as _0xe30a36,SetNumfmtMutation as _0x4075e,SetRangeProtectionMutation as _0x225790,SetRangeValuesMutation as _0x15eb0a,SetWorksheetColWidthMutation as _0x4cb95c,EmptyMutation as _0x1a62da,RemoveRowMutation as _0x1c90fa,SetSelectionsOperation as _0x23969e,SetWorksheetOrderMutation as _0xdfc809,RemoveSheetMutation as _0x2df765,SetWorksheetNameMutation as _0x5a5428,InsertColCommand as _0x172802,handleDefaultRangeChangeWithEffectRefCommands as _0x8e6890,RangeMergeUtil as _0x252072,handleBaseInsertRange as _0x44a143,handleBaseRemoveRange as _0x180da6,MoveColsCommand as _0x563de0,handleCommonDefaultRangeChangeWithEffectRefCommands as _0x44a031,ReorderRangeMutation as _0x587c63,SetColDataMutation as _0x35fae0,SetColHiddenMutation as _0x519e99,SetColVisibleMutation as _0x20806c,InsertRowCommand as _0x1bb87d,rotateRange as _0x48173f,SetRowDataMutation as _0x36a513,SetRowHiddenMutation as _0xce09a7,SetRowVisibleMutation as _0x2b245f,SetWorksheetRowAutoHeightMutation as _0x5357b7,SetWorksheetRowHeightMutation as _0xdb3bc1,SetWorksheetRowIsAutoHeightMutation as _0x386b55,handleBaseMoveRowsCols as _0x2e8050,MoveRowsCommand as _0x6ac3e3,RemoveColCommand as _0xf0fff1,RemoveRowCommand as _0x484aa2,SetTabColorMutation as _0x5a93b5,InsertSheetMutation as _0x4189f4,SetWorksheetProtectionMutation as _0x36d2a9}from'@univerjs/sheets';import{RemoveSheetsFilterMutation as _0x224fc7,SetSheetsFilterCriteriaMutation as _0x4112c4,SetSheetsFilterRangeMutation as _0x23aded,ReCalcSheetsFilterMutation as _0x581092}from'@univerjs/sheets-filter';import{singleReferenceToGrid as _0x426d2f,serializeRange as _0x572940,LexerTreeBuilder as _0x3ccc0f,sequenceNodeType as _0x329dfa,deserializeRangeWithSheetWithCache as _0x15fb8c,serializeRangeToRefString as _0x35dead,ErrorType as _0x5c62ee,generateStringWithSequence as _0x50f8e7}from'@univerjs/engine-formula';import{SetDrawingApplyMutation as _0x2c5cc6,DrawingApplyType as _0x2f30d6}from'@univerjs/sheets-drawing';import{RichTextEditingMutation as _0x5bfddc}from'@univerjs/docs';import{UniverLicensePlugin as _0x2a75a1}from'@univerjs-pro/license';function le(_0x4b71da){const _0x45bc55=_0x572182;return!!_0x4b71da[_0x45bc55(0x20c)];}function at(_0x2ff024){return!le(_0x2ff024);}function De(_0x1cdb86){return!!_0x1cdb86['error'];}function ce(_0x5d1bf8){const _0xbed45a=_0x572182;return!!_0x5d1bf8[_0xbed45a(0x20c)];}function qd(_0x1d431f){return!ce(_0x1d431f);}function Dr(_0x2fbb6e){return!!_0x2fbb6e['error'];}function Zd(_0x449a01){return!Dr(_0x449a01);}function Ar(_0xb2a207){const _0x38d38d=_0x572182;return!!_0xb2a207[_0x38d38d(0x20c)];}function Qd(_0x2488d){return!Ar(_0x2488d);}const Pe=_0x39c530(_0x572182(0xd4));class Tr extends _0x522e72{constructor(){const _0x2455d9=_0x572182;super(...arguments),se(this,_0x2455d9(0x123),new Map());}['dispose'](){this['_transformMap']['clear']();}[_0x572182(0x1e9)](_0x4b1b49){const _0x60cbd=_0x572182,{m1:_0x3d83a4,m2:_0x2784eb='any'}=_0x4b1b49;this['_transformMap'][_0x60cbd(0x110)](_0x3d83a4)||this[_0x60cbd(0x123)][_0x60cbd(0x1aa)](_0x3d83a4,new Map());const _0x1a1880=this['_transformMap']['get'](_0x3d83a4);if(_0x1a1880[_0x60cbd(0x110)](_0x2784eb))throw new Error('[TransformService]\x20Transform\x20algorithm\x20for\x20'+_0x3d83a4+_0x60cbd(0xb0)+_0x2784eb+'\x20already\x20exists.');_0x1a1880[_0x60cbd(0x1aa)](_0x2784eb,_0x4b1b49);}[_0x572182(0xb8)](_0x1b5f97,_0x4fb5b8,_0x59ee83){const _0x182b15=_0x572182;var _0x1d284e,_0x202747,_0x15e287,_0x2a4e75,_0x2d602c,_0x41911d;const _0x4be2a5=this[_0x182b15(0x123)],_0x157c1d=((_0x1d284e=_0x4be2a5[_0x182b15(0xc4)](_0x1b5f97['id']))==null?void 0x0:_0x1d284e[_0x182b15(0xc4)](_0x4fb5b8['id']))||((_0x202747=_0x4be2a5[_0x182b15(0xc4)](_0x1b5f97['id']))==null?void 0x0:_0x202747['get'](_0x182b15(0x131)))||((_0x15e287=_0x4be2a5[_0x182b15(0xc4)](_0x182b15(0x131)))==null?void 0x0:_0x15e287['get'](_0x4fb5b8['id']));if(_0x157c1d)return _0x59ee83?_0x157c1d[_0x182b15(0xcd)](_0x1b5f97,_0x4fb5b8,_0x59ee83):_0x157c1d[_0x182b15(0xcd)](_0x1b5f97,_0x4fb5b8);const _0x445cec=((_0x2a4e75=_0x4be2a5[_0x182b15(0xc4)](_0x4fb5b8['id']))==null?void 0x0:_0x2a4e75[_0x182b15(0xc4)](_0x1b5f97['id']))||((_0x2d602c=_0x4be2a5[_0x182b15(0xc4)](_0x4fb5b8['id']))==null?void 0x0:_0x2d602c[_0x182b15(0xc4)]('any'))||((_0x41911d=_0x4be2a5[_0x182b15(0xc4)](_0x182b15(0x131)))==null?void 0x0:_0x41911d[_0x182b15(0xc4)](_0x1b5f97['id']));if(_0x445cec){const _0x5b765b=_0x59ee83?_0x445cec[_0x182b15(0xcd)](_0x4fb5b8,_0x1b5f97,_0x59ee83):_0x445cec[_0x182b15(0xcd)](_0x4fb5b8,_0x1b5f97);return at(_0x5b765b)?_0x59ee83?{'m2Prime':_0x5b765b[_0x182b15(0x119)]}:{'m2Prime':_0x5b765b[_0x182b15(0x119)],'m1Prime':_0x5b765b[_0x182b15(0xcf)]}:_0x5b765b;}return{'m1Prime':_0x1b5f97,'m2Prime':_0x4fb5b8};}['transformMutations'](_0x4db820,_0x167e33,_0x29ed4f){const _0x2ee903=this['_rightInclineTransformMutations'](_0x4db820,_0x167e33);if(De(_0x2ee903))return _0x2ee903;if(_0x29ed4f)return{'m2Prime':_0x2ee903};const _0x218f46=this['_leftInclineTransformMutations'](_0x4db820,_0x167e33);return De(_0x218f46)?_0x218f46:{'m1Prime':_0x218f46,'m2Prime':_0x2ee903};}[_0x572182(0x1dd)](_0x2a6c75,_0x13bf6e){const _0x36353c=_0x572182,_0x519c74=_0x2a6c75[_0x36353c(0xf6)];let _0x741661;for(_0x741661=0x0;_0x741661<_0x519c74;_0x741661++){let _0x386778=[_0x2a6c75[_0x741661]],_0x40781c=[];for(let _0x203d89=0x0,_0x15a073=_0x13bf6e[_0x36353c(0xf6)];_0x203d89<_0x15a073;_0x203d89++){const _0x3e20bd=_0x13bf6e[_0x203d89];let _0x11c50b;if(_0x386778[_0x36353c(0xf6)]===0x0)_0x11c50b=[_0x3e20bd],_0x386778=[];else{if(_0x386778[_0x36353c(0xf6)]===0x1){const _0x86b10d=this[_0x36353c(0xb8)](_0x386778[0x0],_0x3e20bd);if(le(_0x86b10d))return _0x86b10d;if(_0x11c50b=Lt(_0x86b10d[_0x36353c(0xcf)]),!_0x86b10d[_0x36353c(0x119)])throw new Error(_0x36353c(0xdd));_0x386778=Lt(_0x86b10d[_0x36353c(0x119)]);}else{const _0x4c2124=this[_0x36353c(0x1dd)](_0x386778,[_0x3e20bd]);if(_0x4c2124[_0x36353c(0x20c)])return _0x4c2124;if(_0x11c50b=_0x4c2124,_0x203d89<_0x15a073-0x1){const _0x3dc5ae=this['_leftInclineTransformMutations'](_0x386778,[_0x3e20bd]);if(_0x3dc5ae[_0x36353c(0x20c)])return _0x3dc5ae;_0x386778=_0x3dc5ae;}}}_0x40781c=_0x40781c['concat'](_0x11c50b);}_0x13bf6e=_0x40781c;}return _0x13bf6e;}[_0x572182(0x14e)](_0x397685,_0x2c2d1a){const _0x40a97f=_0x572182,_0x493b32=_0x2c2d1a[_0x40a97f(0xf6)];let _0x55fa59;for(_0x55fa59=0x0;_0x55fa59<_0x493b32;_0x55fa59++){let _0x536860=[_0x2c2d1a[_0x55fa59]],_0x305afa=[];for(let _0x28d9a7=0x0,_0x69c033=_0x397685[_0x40a97f(0xf6)];_0x28d9a7<_0x69c033;_0x28d9a7++){const _0x3546da=_0x397685[_0x28d9a7];let _0x575351;if(_0x536860[_0x40a97f(0xf6)]===0x0)_0x575351=[_0x3546da],_0x536860=[];else{if(_0x536860['length']===0x1){const _0x2feb20=this['transformMutation'](_0x3546da,_0x536860[0x0]);if(le(_0x2feb20))return _0x2feb20;if(!_0x2feb20['m1Prime'])throw new Error(_0x40a97f(0xdd));_0x575351=Lt(_0x2feb20[_0x40a97f(0x119)]),_0x536860=Lt(_0x2feb20[_0x40a97f(0xcf)]);}else{const _0x261e76=this[_0x40a97f(0x14e)]([_0x3546da],_0x536860);if(_0x261e76['error'])return _0x261e76;if(_0x575351=_0x261e76,_0x28d9a7<_0x69c033-0x1){const _0x5239bc=this[_0x40a97f(0x1dd)]([_0x3546da],_0x536860);if(_0x5239bc[_0x40a97f(0x20c)])return _0x5239bc;_0x536860=_0x5239bc;}}}_0x305afa=_0x305afa[_0x40a97f(0x9a)](_0x575351);}_0x397685=_0x305afa;}return _0x397685;}[_0x572182(0xb1)](_0x2010e7,_0x42ee4b,_0xb802f9){const _0x7e555c=_0x572182;if(!Lr(_0x2010e7,_0x42ee4b))throw new Error('[TransformService]:\x20changesets\x20revisions\x20miss\x20match.\x20The\x20\x27baseRev\x27\x20of\x20c2\x20is\x20'+_0x42ee4b[0x0][_0x7e555c(0xe2)]+_0x7e555c(0xce)+_0x2010e7[0x0][_0x7e555c(0x10a)]+'.');const _0x337438=_0x2010e7[_0x7e555c(0xf6)],_0x109283=_0x42ee4b[_0x7e555c(0xf6)],_0x15d661=Ae(_0x337438,_0x109283+0x1),_0x544389=Ae(_0x337438+0x1,_0x109283);_0x2010e7[_0x7e555c(0xc5)]((_0x4b28c7,_0x172a2d)=>_0x15d661[_0x172a2d][0x0]=_0x4b28c7),_0x42ee4b['forEach']((_0x1d089b,_0x6987ba)=>_0x544389[0x0][_0x6987ba]=_0x1d089b);try{for(let _0x55e72d=0x0;_0x55e72d<_0x109283;_0x55e72d++)for(let _0xa96ba9=0x0;_0xa96ba9<_0x337438;_0xa96ba9++){const _0x61e001=_0x544389[_0xa96ba9][_0x55e72d],_0x5b994=_0x15d661[_0xa96ba9][_0x55e72d];if(!_0x61e001||!_0x5b994)throw new Error(_0x7e555c(0x1f8));const _0x5abde0=this[_0x7e555c(0x1d3)](_0x5b994[_0x7e555c(0x1d6)],_0x61e001[_0x7e555c(0x1d6)]);if(ce(_0x5abde0))return{'error':_0x5abde0[_0x7e555c(0x20c)]};_0x544389[_0xa96ba9+0x1][_0x55e72d]={..._0x61e001,'mutations':_0x5abde0[_0x7e555c(0xcf)]},_0x15d661[_0xa96ba9][_0x55e72d+0x1]={..._0x5b994,'mutations':_0x5abde0['m1Prime']};}return _0xb802f9?{'c2Prime':_0x544389[_0x337438]}:{'c1Prime':_0x15d661[_0x7e555c(0x1e0)](_0x290295=>_0x290295[_0x109283])[_0x7e555c(0x13b)](),'c2Prime':_0x544389[_0x337438]};}catch(_0x2aa032){throw console[_0x7e555c(0x20c)](_0x2aa032),_0x2aa032;}}[_0x572182(0x162)](_0x47dbbc,_0x172a45){const _0xd15100=_0x572182,_0x346ba9=_0x47dbbc['mutations'],_0x109572=this['transformMutations'](_0x346ba9,_0x172a45);return ce(_0x109572)?{'error':_0x109572[_0xd15100(0x20c)]}:{'m2Prime':_0x109572[_0xd15100(0xcf)],'c1Prime':{..._0x47dbbc,'mutations':_0x109572[_0xd15100(0x119)]}};}}function Lr(_0x527438,_0x2239e7){const _0x2e7d29=_0x572182;return _0x527438[0x0][_0x2e7d29(0x10a)]-0x1===_0x2239e7[0x0][_0x2e7d29(0xe2)];}function Ae(_0x2f5df0,_0x471a83){const _0x346c53=_0x572182;return new Array(_0x2f5df0)['fill'](void 0x0)[_0x346c53(0x1e0)](()=>new Array(_0x471a83));}function Lt(_0x293105){const _0x5a98cb=_0x572182;return Array[_0x5a98cb(0x16c)](_0x293105)?_0x293105:[_0x293105];}const kr={'m1':_0x1b398d['id'],'m2':_0x1b398d['id'],'handler':(_0x4d24b9,_0x565816)=>{const _0x30531b=_0x572182,_0x49533d=_0x4d24b9['params'],_0x305159=_0x565816[_0x30531b(0x8d)],_0x24680c={'m1Prime':_0x4d24b9,'m2Prime':_0x565816};if(_0x49533d[_0x30531b(0xdb)]!==_0x305159[_0x30531b(0xdb)]||_0x49533d[_0x30531b(0x20b)]!==_0x305159['subUnitId']||_0x49533d[_0x30531b(0x95)][_0x30531b(0x1c7)]!==_0x305159[_0x30531b(0x95)][_0x30531b(0x1c7)])return _0x24680c;if(!_0x49533d[_0x30531b(0x95)][_0x30531b(0x7c)]&&!_0x305159['comment']['parentId']){const _0x5e525f=_0x570d2f['deepClone'](_0x565816);return _0x5e525f[_0x30531b(0x8d)]['comment'][_0x30531b(0x7c)]=_0x4d24b9['params'][_0x30531b(0x95)]['id'],{'m1Prime':[{'id':_0x5b7f88['id'],'params':{'unitId':_0x49533d[_0x30531b(0xdb)],'subUnitId':_0x305159[_0x30531b(0x20b)],'commentId':_0x305159[_0x30531b(0x95)]['id']}},_0x4d24b9,_0x5e525f],'m2Prime':[_0x5e525f]};}return _0x24680c;}},xr={'m1':_0x4ae767['id'],'m2':_0x4ae767['id'],'handler'(_0x304b39,_0x16776f){const _0x133344=_0x572182;if(_0x304b39[_0x133344(0x8d)]['unitId']!==_0x16776f[_0x133344(0x8d)][_0x133344(0xdb)]||_0x304b39['params'][_0x133344(0x20b)]!==_0x16776f[_0x133344(0x8d)][_0x133344(0x20b)])return{'m1Prime':_0x304b39,'m2Prime':_0x16776f};const {unitId:_0x26a31f,subUnitId:_0x3406ad}=_0x304b39[_0x133344(0x8d)],_0x12f4eb=_0x570d2f['deepClone'](_0x304b39),_0x69743c=_0x570d2f[_0x133344(0xb4)](_0x16776f),_0x5c15c9=[_0x12f4eb],_0x34bcfe={'unitId':_0x26a31f,'subUnitId':_0x3406ad,'start':{'id':_0x69743c[_0x133344(0x8d)][_0x133344(0xea)][_0x133344(0x10b)],'type':_0x133344(0x12a)},'end':{'id':_0x69743c[_0x133344(0x8d)][_0x133344(0xea)]['cfId'],'type':_0x133344(0x18a)}};return _0x5c15c9['push']({'id':_0x396099['id'],'params':_0x34bcfe}),{'m1Prime':_0x5c15c9,'m2Prime':_0x69743c};}};function oe(_0xffa448,_0x5992f,_0x3218da,_0x3f034f){const _0x4f09c7=_0x572182,_0x18ba6f=new _0x1f7bb9();_0x3218da['forEach'](_0x1ca778=>{const _0x24d6e1=_0x2b5d;_0x1ca778[_0x24d6e1(0xd1)][_0x24d6e1(0xc5)](_0x407ef7=>{const _0x4cae6c=_0x24d6e1;_0x563f2d[_0x4cae6c(0x1f3)](_0x407ef7,(_0x5a2972,_0x512267)=>{_0x18ba6f['setValue'](_0x5a2972,_0x512267,_0x1ca778['uid']);});});}),_0x3f034f[_0x4f09c7(0xc5)](_0x49d059=>{const _0x567e19=_0x4f09c7;_0x49d059[_0x567e19(0xd1)][_0x567e19(0xc5)](_0x15bf5a=>{const _0x391095=_0x567e19;_0x563f2d[_0x391095(0x1f3)](_0x15bf5a,(_0x5d42cb,_0x2e6b4e)=>{const _0x491b6c=_0x391095;_0x18ba6f[_0x491b6c(0x134)](_0x5d42cb,_0x2e6b4e,_0x49d059[_0x491b6c(0x96)]);});});});const _0x127965=[];return _0x3218da[_0x4f09c7(0xc5)](_0x2406fe=>{const _0x3660ae=_0x4f09c7,_0x2dd987=_0x2de447(_0x18ba6f,_0x206b89=>_0x206b89===_0x2406fe[_0x3660ae(0x96)]);if(_0x2dd987[_0x3660ae(0xf6)]){if(!_0x592f19(_0x2dd987,_0x2406fe[_0x3660ae(0xd1)])){const _0x2592ca={'ruleId':_0x2406fe['uid'],'unitId':_0xffa448,'subUnitId':_0x5992f,'payload':{'type':_0x4e3a21[_0x3660ae(0x94)],'payload':_0x2dd987}};_0x127965['push']({'id':_0x4e1baf['id'],'params':_0x2592ca});}}else{const _0x36ebbc={'ruleId':_0x2406fe[_0x3660ae(0x96)],'unitId':_0xffa448,'subUnitId':_0x5992f};_0x127965[_0x3660ae(0x1ca)]({'id':_0x13693a['id'],'params':_0x36ebbc});}}),_0x127965;}function kt(_0x828021,_0xc41c4d){const _0x523d88=_0x572182,_0x4d8ca2=_0x570d2f['deepClone'](Array[_0x523d88(0x16c)](_0x828021['params'][_0x523d88(0xea)])?_0x828021[_0x523d88(0x8d)][_0x523d88(0xea)]:[_0x828021[_0x523d88(0x8d)][_0x523d88(0xea)]]);return _0xc41c4d['forEach'](_0x4e40d6=>{const _0x2514b9=_0x523d88;if(_0x4e40d6['id']===_0x4e1baf['id']){const _0x43cafe=_0x4e40d6,_0x3b631e=_0x4d8ca2[_0x2514b9(0xa1)](_0x55fa31=>_0x55fa31[_0x2514b9(0x96)]===_0x43cafe[_0x2514b9(0x8d)]['ruleId']);_0x3b631e['ranges']=_0x43cafe[_0x2514b9(0x8d)][_0x2514b9(0x176)]['payload'];}else{if(_0x4e40d6['id']===_0x13693a['id']){const _0x538bde=_0x4d8ca2[_0x2514b9(0x1c6)](_0x27db7e=>_0x27db7e[_0x2514b9(0x96)]===_0x4e40d6[_0x2514b9(0x8d)]['ruleId']);_0x4d8ca2[_0x538bde]=null;}}}),_0x4d8ca2['filter'](Boolean)[_0x523d88(0xf6)]?[{..._0x828021,'params':{..._0x828021[_0x523d88(0x8d)],'rule':_0x4d8ca2[_0x523d88(0x9f)](Boolean)}}]:[];}const Hr={'m1':_0x3bedd8['id'],'m2':_0x3bedd8['id'],'handler':(_0xc2b488,_0x4590d1)=>{const _0x533275=_0x572182,_0x35b031={'m1Prime':_0xc2b488,'m2Prime':_0x4590d1},_0x205c45=_0xc2b488['params'],_0x57cea1=_0x4590d1[_0x533275(0x8d)];if(_0x205c45['unitId']!==_0x57cea1['unitId']||_0x205c45['subUnitId']!==_0x57cea1[_0x533275(0x20b)])return _0x35b031;const _0x4ea139=_0x570d2f[_0x533275(0xb4)](_0xc2b488),_0x3e7ab3=_0x570d2f['deepClone'](_0x4590d1),_0x1d151a=_0x205c45[_0x533275(0xdb)],_0xdddd07=_0x57cea1['subUnitId'],_0x237a98=_0x4ea139[_0x533275(0x8d)][_0x533275(0xea)],_0x498cae=_0x3e7ab3['params'][_0x533275(0xea)];if(Array[_0x533275(0x16c)](_0x237a98)&&Array[_0x533275(0x16c)](_0x498cae))return{'m1Prime':[],'m2Prime':[]};if(Array['isArray'](_0x237a98)){_0x4ea139[_0x533275(0x8d)][_0x533275(0x17b)]=0x0;const _0x10a5cd=oe(_0x1d151a,_0xdddd07,_0x237a98,[_0x498cae]);return{'m1Prime':kt(_0x4ea139,_0x10a5cd),'m2Prime':[..._0x10a5cd,_0x3e7ab3]};}if(Array['isArray'](_0x498cae)){const _0x1ba151=oe(_0x1d151a,_0xdddd07,_0x498cae,[_0x237a98]);return _0x3e7ab3['params'][_0x533275(0x17b)]=0x0,{'m1Prime':kt(_0x4ea139,_0x1ba151),'m2Prime':[..._0x1ba151,_0x3e7ab3]};}const _0x28d538=oe(_0x1d151a,_0xdddd07,[_0x237a98],[_0x498cae]);return _0x3e7ab3[_0x533275(0x8d)][_0x533275(0x17b)]=-0x1,{'m1Prime':kt(_0x4ea139,_0x28d538),'m2Prime':[..._0x28d538,_0x3e7ab3]};}},Fr={'m1':_0x3bedd8['id'],'m2':_0x4e1baf['id'],'handler':(_0x1b0960,_0x2773c8)=>{const _0x55a5fb=_0x572182,_0x21f881={'m1Prime':_0x1b0960,'m2Prime':_0x2773c8},_0x350d02=_0x1b0960[_0x55a5fb(0x8d)],_0x247e28=_0x2773c8[_0x55a5fb(0x8d)];if(_0x350d02['unitId']!==_0x247e28[_0x55a5fb(0xdb)]||_0x350d02[_0x55a5fb(0x20b)]!==_0x247e28['subUnitId'])return _0x21f881;if(_0x2773c8[_0x55a5fb(0x8d)][_0x55a5fb(0x176)][_0x55a5fb(0x120)]===_0x4e3a21[_0x55a5fb(0x94)]){const {unitId:_0x1f98d4,subUnitId:_0x907f29}=_0x1b0960[_0x55a5fb(0x8d)],_0x192890=Array['isArray'](_0x1b0960[_0x55a5fb(0x8d)][_0x55a5fb(0xea)])?_0x1b0960['params']['rule']:[_0x1b0960[_0x55a5fb(0x8d)]['rule']],_0x49814e=[],_0x2170bd=new _0x1f7bb9();return _0x192890[_0x55a5fb(0xc5)](_0x554fce=>{const _0x7b8949=_0x55a5fb;_0x554fce['ranges'][_0x7b8949(0xc5)](_0x193158=>{const _0x14780c=_0x7b8949;_0x563f2d[_0x14780c(0x1f3)](_0x193158,(_0x1f597c,_0x3f2bc9)=>{const _0x3b58a6=_0x14780c;_0x2170bd[_0x3b58a6(0x134)](_0x1f597c,_0x3f2bc9,_0x554fce[_0x3b58a6(0x96)]);});});}),_0x2773c8[_0x55a5fb(0x8d)][_0x55a5fb(0x176)][_0x55a5fb(0x176)][_0x55a5fb(0xc5)](_0x311be2=>{_0x563f2d['foreach'](_0x311be2,(_0x557159,_0x449ffa)=>{const _0x3a46ef=_0x2b5d;_0x2170bd[_0x3a46ef(0x134)](_0x557159,_0x449ffa,_0x2773c8[_0x3a46ef(0x8d)]['ruleId']);});}),_0x192890[_0x55a5fb(0xc5)](_0x4eeedc=>{const _0x3d34bd=_0x55a5fb,_0x41cfb3=_0x2de447(_0x2170bd,_0xa88176=>_0xa88176===_0x4eeedc[_0x3d34bd(0x96)]);_0x592f19(_0x41cfb3,_0x4eeedc[_0x3d34bd(0xd1)])||(_0x41cfb3[_0x3d34bd(0xf6)]?_0x49814e[_0x3d34bd(0x1ca)]({'id':_0x4e1baf['id'],'params':{'unitId':_0x1f98d4,'subUnitId':_0x907f29,'ruleId':_0x4eeedc['uid'],'payload':{'type':_0x4e3a21[_0x3d34bd(0x94)],'payload':_0x41cfb3}}}):_0x49814e[_0x3d34bd(0x1ca)]({'id':_0x13693a['id'],'params':{'unitId':_0x1f98d4,'subUnitId':_0x907f29,'ruleId':_0x4eeedc[_0x3d34bd(0x96)]}}));}),{'m1Prime':kt(_0x1b0960,_0x49814e),'m2Prime':[..._0x49814e,_0x2773c8]};}return _0x21f881;}},Br={'m1':_0x3101d1['id'],'m2':_0x3101d1['id'],'handler':(_0xd7e287,_0x5c94d2)=>{const _0x5e83c1=_0x572182,_0x63b6c8=_0xd7e287[_0x5e83c1(0x8d)],_0x360777=_0x5c94d2[_0x5e83c1(0x8d)];return _0x63b6c8[_0x5e83c1(0xdb)]===_0x360777[_0x5e83c1(0xdb)]&&_0x63b6c8[_0x5e83c1(0x20b)]===_0x360777[_0x5e83c1(0x20b)]&&_0x63b6c8[_0x5e83c1(0x1b8)][_0x5e83c1(0x1cb)]===_0x360777['link'][_0x5e83c1(0x1cb)]&&_0x63b6c8[_0x5e83c1(0x1b8)][_0x5e83c1(0x14c)]===_0x360777[_0x5e83c1(0x1b8)][_0x5e83c1(0x14c)]?{'m2Prime':_0x5c94d2,'m1Prime':[]}:{'m1Prime':_0xd7e287,'m2Prime':_0x5c94d2};}},Gr={'m1':_0x532e28['id'],'m2':_0x1b398d['id'],'handler':(_0x5a6a81,_0x3282f2)=>{const _0x4131e8=_0x572182,_0xaf90e9={'m1Prime':_0x5a6a81,'m2Prime':_0x3282f2};return _0x5a6a81['params'][_0x4131e8(0xdb)]!==_0x3282f2['params']['unitId']||_0x5a6a81[_0x4131e8(0x8d)][_0x4131e8(0x20b)]!==_0x3282f2[_0x4131e8(0x8d)]['subUnitId']?_0xaf90e9:{'error':new Error(_0x4131e8(0x181))};}},jr={'m1':_0x532e28['id'],'m2':_0x4ae767['id'],'handler':(_0x4cacdc,_0x735bcc)=>{const _0x417410=_0x572182,_0x3d9e69={'m1Prime':_0x4cacdc,'m2Prime':_0x735bcc};if(_0x4cacdc[_0x417410(0x8d)][_0x417410(0xdb)]!==_0x735bcc[_0x417410(0x8d)]['unitId']||_0x4cacdc[_0x417410(0x8d)][_0x417410(0x20b)]!==_0x735bcc[_0x417410(0x8d)]['subUnitId'])return _0x3d9e69;const _0x4c1472=_0x4cacdc[_0x417410(0x8d)][_0x417410(0x1a2)][_0x417410(0x1e0)](_0x580271=>_0x580271[_0x417410(0xd1)])[_0x417410(0x13b)](),_0x4c305e=_0x735bcc[_0x417410(0x8d)][_0x417410(0xea)][_0x417410(0xd1)];return _0x4c1472[_0x417410(0xaf)](_0x2e0072=>_0x4c305e[_0x417410(0xaf)](_0x55cf92=>_0x5b3986['intersects'](_0x2e0072,_0x55cf92)))?{'error':new Error(_0x417410(0xae))}:_0x3d9e69;}},$r={'m1':_0x532e28['id'],'m2':_0x532e28['id'],'handler':(_0x349ac8,_0x8a7ec)=>{const _0x554dc2=_0x572182,_0x27ce1a={'m1Prime':_0x349ac8,'m2Prime':_0x8a7ec};if(_0x349ac8['params']['unitId']!==_0x8a7ec['params'][_0x554dc2(0xdb)]||_0x349ac8['params'][_0x554dc2(0x20b)]!==_0x8a7ec[_0x554dc2(0x8d)][_0x554dc2(0x20b)])return _0x27ce1a;const _0x18dce1=_0x349ac8[_0x554dc2(0x8d)][_0x554dc2(0x1a2)][_0x554dc2(0x1e0)](_0x9f360b=>_0x9f360b['ranges'])[_0x554dc2(0x13b)](),_0x523fd9=_0x8a7ec[_0x554dc2(0x8d)][_0x554dc2(0x1a2)][_0x554dc2(0x1e0)](_0x598e87=>_0x598e87['ranges'])[_0x554dc2(0x13b)]();return _0x18dce1[_0x554dc2(0xaf)](_0x4d7c4f=>_0x523fd9[_0x554dc2(0xaf)](_0x52cab3=>_0x5b3986['intersects'](_0x4d7c4f,_0x52cab3)))?{'error':new Error(_0x554dc2(0x141))}:_0x27ce1a;}},Yr={'m1':_0x532e28['id'],'m2':_0x4b0a3e['id'],'handler':(_0x52f751,_0x4e05d1)=>{const _0x3ea399=_0x572182,_0x2140bf={'m1Prime':_0x52f751,'m2Prime':_0x4e05d1};if(_0x52f751[_0x3ea399(0x8d)][_0x3ea399(0xdb)]!==_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0xdb)]||_0x52f751[_0x3ea399(0x8d)]['subUnitId']!==_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0x20b)])return _0x2140bf;const _0x59e21c=_0x52f751[_0x3ea399(0x8d)][_0x3ea399(0x1a2)][_0x3ea399(0x1e0)](_0x5495eb=>_0x5495eb[_0x3ea399(0xd1)])['flat'](),_0x4528f3=_0x4e05d1[_0x3ea399(0x8d)][_0x3ea399(0xd1)];return _0x59e21c[_0x3ea399(0xaf)](_0x1c518e=>_0x4528f3['some'](_0x2fb7e1=>_0x5b3986['intersects'](_0x1c518e,_0x2fb7e1)))?{'error':new Error(_0x3ea399(0x1d8))}:_0x2140bf;}},Jr={'m1':_0x532e28['id'],'m2':_0xeba0d['id'],'handler':(_0x4d0176,_0x1746fb)=>{const _0x4f49c6=_0x572182,_0x58517e={'m1Prime':_0x4d0176,'m2Prime':_0x1746fb};return _0x4d0176['params']['unitId']!==_0x1746fb[_0x4f49c6(0x8d)][_0x4f49c6(0xdb)]||_0x4d0176[_0x4f49c6(0x8d)]['subUnitId']!==_0x1746fb[_0x4f49c6(0x8d)][_0x4f49c6(0xea)][_0x4f49c6(0x20b)]?_0x58517e:{'error':new Error(_0x4f49c6(0xbf))};}},Xr={'m1':_0x532e28['id'],'m2':_0x7e7ab0['id'],'handler':(_0x599360,_0x9504bf)=>{const _0x470cb9=_0x572182,_0x27e1a2={'m1Prime':_0x599360,'m2Prime':_0x9504bf};return _0x599360['params'][_0x470cb9(0xdb)]!==_0x9504bf[_0x470cb9(0x8d)][_0x470cb9(0xdb)]||_0x599360[_0x470cb9(0x8d)][_0x470cb9(0x20b)]!==_0x9504bf['params'][_0x470cb9(0x20b)]?_0x27e1a2:{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule')};}},Kr={'m1':_0x532e28['id'],'m2':_0x541ec4['id'],'handler':(_0x5389a5,_0x537b6f)=>{const _0x1ec535=_0x572182,_0x43708b={'m1Prime':_0x5389a5,'m2Prime':_0x537b6f};if(_0x5389a5[_0x1ec535(0x8d)][_0x1ec535(0xdb)]!==_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0xdb)]||_0x5389a5[_0x1ec535(0x8d)]['subUnitId']!==_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0x20b)])return _0x43708b;const _0x50c736=_0x5389a5[_0x1ec535(0x8d)][_0x1ec535(0x1a2)][_0x1ec535(0x1e0)](_0x4d8a39=>_0x4d8a39[_0x1ec535(0xd1)])[_0x1ec535(0x13b)](),_0x250e29=_0x537b6f[_0x1ec535(0x8d)][_0x1ec535(0x19f)];return _0x50c736[_0x1ec535(0xaf)](_0x4a44ca=>_0x5b3986['intersects'](_0x4a44ca,_0x250e29))?{'error':new Error(_0x1ec535(0x19a))}:_0x43708b;}},zr={'m1':_0x532e28['id'],'m2':_0x224ab4['id'],'handler':(_0x526b38,_0x287371)=>{const _0x10c4e0=_0x572182,_0x3f02ef={'m1Prime':_0x526b38,'m2Prime':_0x287371};if(_0x526b38['params'][_0x10c4e0(0xdb)]!==_0x287371[_0x10c4e0(0x8d)]['unitId']||_0x526b38[_0x10c4e0(0x8d)][_0x10c4e0(0x20b)]!==_0x287371[_0x10c4e0(0x8d)][_0x10c4e0(0x20b)])return _0x3f02ef;const _0xcac1b6=_0x526b38[_0x10c4e0(0x8d)][_0x10c4e0(0x1a2)][_0x10c4e0(0x1e0)](_0x197e1f=>_0x197e1f['ranges'])[_0x10c4e0(0x13b)](),_0x57b945=_0x287371[_0x10c4e0(0x8d)][_0x10c4e0(0x19f)];return _0xcac1b6[_0x10c4e0(0xaf)](_0x47b7e1=>_0x5b3986[_0x10c4e0(0x7a)](_0x47b7e1,_0x57b945))?{'error':new Error(_0x10c4e0(0x16d))}:_0x3f02ef;}},qr={'m1':_0x532e28['id'],'m2':_0x31c10b['id'],'handler':(_0x54f50f,_0x31ba5d)=>{const _0x21d3df=_0x572182,_0x5563a8={'m1Prime':_0x54f50f,'m2Prime':_0x31ba5d};if(_0x54f50f[_0x21d3df(0x8d)]['unitId']!==_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0xdb)]||_0x54f50f[_0x21d3df(0x8d)][_0x21d3df(0x20b)]!==_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0x20b)])return _0x5563a8;const _0x5b47cd=_0x54f50f['params']['rules'][_0x21d3df(0x1e0)](_0x67fce6=>_0x67fce6[_0x21d3df(0xd1)])[_0x21d3df(0x13b)](),_0x4323b2=[_0x31ba5d['params']['sourceRange'],_0x31ba5d[_0x21d3df(0x8d)][_0x21d3df(0x1d0)]];return _0x5b47cd[_0x21d3df(0xaf)](_0x788aa=>_0x4323b2[_0x21d3df(0xaf)](_0x502156=>_0x5b3986[_0x21d3df(0x7a)](_0x788aa,_0x502156)))?{'error':new Error(_0x21d3df(0x190))}:_0x5563a8;}},Zr={'m1':_0x532e28['id'],'m2':_0x43f1cd['id'],'handler':(_0x307799,_0x5c4057)=>{const _0x23577d=_0x572182,_0x3e99b8={'m1Prime':_0x307799,'m2Prime':_0x5c4057};if(_0x307799[_0x23577d(0x8d)]['unitId']!==_0x5c4057[_0x23577d(0x8d)][_0x23577d(0xdb)]||_0x307799['params']['subUnitId']!==_0x5c4057['params'][_0x23577d(0x1b0)][_0x23577d(0x20b)])return _0x3e99b8;const _0x5234d4=_0x307799[_0x23577d(0x8d)]['rules'][_0x23577d(0x1e0)](_0x261016=>_0x261016[_0x23577d(0xd1)])['flat'](),_0x4ef111=new _0x1f7bb9(_0x5c4057[_0x23577d(0x8d)][_0x23577d(0x1b0)]['value'])[_0x23577d(0x182)](),_0x113951=new _0x1f7bb9(_0x5c4057[_0x23577d(0x8d)]['to'][_0x23577d(0x17e)])[_0x23577d(0x182)](),_0x280997=[_0x4ef111,_0x113951];return _0x5234d4[_0x23577d(0xaf)](_0x2717a2=>_0x280997[_0x23577d(0xaf)](_0x238f3d=>_0x5b3986[_0x23577d(0x7a)](_0x2717a2,_0x238f3d)))?{'error':new Error(_0x23577d(0xb6))}:_0x3e99b8;}},Qr={'m1':_0x532e28['id'],'m2':_0x454b7a['id'],'handler':(_0x450808,_0x23f706)=>{const _0x507a6a=_0x572182,_0x5c23c5={'m1Prime':_0x450808,'m2Prime':_0x23f706};if(_0x450808[_0x507a6a(0x8d)][_0x507a6a(0xdb)]!==_0x23f706[_0x507a6a(0x8d)][_0x507a6a(0xdb)]||_0x450808[_0x507a6a(0x8d)]['subUnitId']!==_0x23f706['params'][_0x507a6a(0x20b)])return _0x5c23c5;const _0x42ff4c=_0x450808['params'][_0x507a6a(0x1a2)]['map'](_0x524cc9=>_0x524cc9['ranges'])[_0x507a6a(0x13b)](),_0x5c9d28=[_0x23f706['params'][_0x507a6a(0x11d)],_0x23f706[_0x507a6a(0x8d)][_0x507a6a(0x1d0)]];return _0x42ff4c[_0x507a6a(0xaf)](_0x3dc014=>_0x5c9d28[_0x507a6a(0xaf)](_0x3bdbd3=>_0x5b3986[_0x507a6a(0x7a)](_0x3dc014,_0x3bdbd3)))?{'error':new Error(_0x507a6a(0x107))}:_0x5c23c5;}},tn={'m1':_0x532e28['id'],'m2':_0xe5c4bd['id'],'handler':(_0x440ab3,_0x46f1a0)=>{const _0x208b97=_0x572182,_0x4a07ff={'m1Prime':_0x440ab3,'m2Prime':_0x46f1a0};if(_0x440ab3['params'][_0x208b97(0xdb)]!==_0x46f1a0[_0x208b97(0x8d)]['unitId']||_0x440ab3[_0x208b97(0x8d)][_0x208b97(0x20b)]!==_0x46f1a0['params'][_0x208b97(0x20b)])return _0x4a07ff;const _0x3efe46=_0x440ab3[_0x208b97(0x8d)]['rules']['map'](_0x5dbade=>_0x5dbade[_0x208b97(0xd1)])[_0x208b97(0x13b)](),_0x2cbd2e=_0x46f1a0[_0x208b97(0x8d)][_0x208b97(0x19f)];return _0x3efe46[_0x208b97(0xaf)](_0x17169d=>_0x5b3986['intersects'](_0x17169d,_0x2cbd2e))?{'error':new Error(_0x208b97(0x1d4))}:_0x4a07ff;}},en={'m1':_0x532e28['id'],'m2':_0x13693a['id'],'handler':(_0x4f519d,_0x1ea471)=>{const _0xa32c4d=_0x572182,_0x3eb830={'m1Prime':_0x4f519d,'m2Prime':_0x1ea471};return _0x4f519d[_0xa32c4d(0x8d)][_0xa32c4d(0xdb)]!==_0x1ea471[_0xa32c4d(0x8d)][_0xa32c4d(0xdb)]||_0x4f519d['params'][_0xa32c4d(0x20b)]!==_0x1ea471['params'][_0xa32c4d(0x20b)]?_0x3eb830:{'error':new Error(_0xa32c4d(0x20f))};}},rn={'m1':_0x532e28['id'],'m2':_0x3dcda7['id'],'handler':(_0x2c5f6b,_0x1aef9f)=>{const _0x5b2052=_0x572182,_0x2b9dfa={'m1Prime':_0x2c5f6b,'m2Prime':_0x1aef9f};if(_0x2c5f6b['params'][_0x5b2052(0xdb)]!==_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0xdb)]||_0x2c5f6b[_0x5b2052(0x8d)][_0x5b2052(0x20b)]!==_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0x20b)])return _0x2b9dfa;const _0x5662f9=_0x2c5f6b[_0x5b2052(0x8d)][_0x5b2052(0x1a2)][_0x5b2052(0x1e0)](_0x22a593=>_0x22a593[_0x5b2052(0xd1)])[_0x5b2052(0x13b)](),_0x19318d=_0x1aef9f[_0x5b2052(0x8d)][_0x5b2052(0xd1)];return _0x5662f9[_0x5b2052(0xaf)](_0x2f04f0=>_0x19318d[_0x5b2052(0xaf)](_0x312e3f=>_0x5b3986[_0x5b2052(0x7a)](_0x2f04f0,_0x312e3f)))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')}:_0x2b9dfa;}},nn={'m1':_0x532e28['id'],'m2':_0x224fc7['id'],'handler':(_0x34ab7e,_0x2c6f5b)=>{const _0x525b61=_0x572182,_0x2bc2e0={'m1Prime':_0x34ab7e,'m2Prime':_0x2c6f5b};return _0x34ab7e[_0x525b61(0x8d)][_0x525b61(0xdb)]!==_0x2c6f5b['params'][_0x525b61(0xdb)]||_0x34ab7e['params'][_0x525b61(0x20b)]!==_0x2c6f5b['params'][_0x525b61(0x20b)]?_0x2bc2e0:{'error':new Error(_0x525b61(0xa3))};}},an={'m1':_0x532e28['id'],'m2':_0x3c47fd['id'],'handler':(_0x488cf3,_0xef2c39)=>{const _0x1ff910=_0x572182,_0x31eaea={'m1Prime':_0x488cf3,'m2Prime':_0xef2c39};if(_0x488cf3[_0x1ff910(0x8d)][_0x1ff910(0xdb)]!==_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0xdb)]||_0x488cf3[_0x1ff910(0x8d)]['subUnitId']!==_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0x20b)])return _0x31eaea;const _0x2f17de=_0x488cf3['params']['rules']['map'](_0x4103f8=>_0x4103f8[_0x1ff910(0xd1)])['flat'](),_0x319203=_0xef2c39[_0x1ff910(0x8d)][_0x1ff910(0xd1)];return _0x2f17de[_0x1ff910(0xaf)](_0x3ebaff=>_0x319203[_0x1ff910(0xaf)](_0x54c91c=>_0x5b3986[_0x1ff910(0x7a)](_0x3ebaff,_0x54c91c)))?{'error':new Error(_0x1ff910(0x1e1))}:_0x31eaea;}},sn={'m1':_0x532e28['id'],'m2':_0x36306e['id'],'handler':(_0x5d222c,_0x5b7302)=>{const _0x528b4d=_0x572182,_0x2feb4c={'m1Prime':_0x5d222c,'m2Prime':_0x5b7302};if(_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0xdb)]!==_0x5b7302[_0x528b4d(0x8d)]['unitId']||_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0x20b)]!==_0x5b7302[_0x528b4d(0x8d)]['subUnitId'])return _0x2feb4c;const _0x500a4c=_0x5d222c[_0x528b4d(0x8d)][_0x528b4d(0x1a2)][_0x528b4d(0x1e0)](_0x12ff72=>_0x12ff72[_0x528b4d(0xd1)])[_0x528b4d(0x13b)](),_0x233a4f=_0x5b7302[_0x528b4d(0x8d)][_0x528b4d(0xea)][_0x528b4d(0xd1)];return _0x500a4c[_0x528b4d(0xaf)](_0x3ec76a=>_0x233a4f[_0x528b4d(0xaf)](_0x713ed7=>_0x5b3986[_0x528b4d(0x7a)](_0x3ec76a,_0x713ed7)))?{'error':new Error(_0x528b4d(0x1f5))}:_0x2feb4c;}},on={'m1':_0x532e28['id'],'m2':_0xe30a36['id'],'handler':(_0x498f30,_0x3f17d0)=>{const _0x1a8ba7=_0x572182,_0x2be1d1={'m1Prime':_0x498f30,'m2Prime':_0x3f17d0};if(_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0xdb)]!==_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0xdb)]||_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0x20b)]!==_0x3f17d0['params'][_0x1a8ba7(0x20b)])return _0x2be1d1;const _0x484387=_0x498f30[_0x1a8ba7(0x8d)][_0x1a8ba7(0x1a2)][_0x1a8ba7(0x1e0)](_0x2b1f29=>_0x2b1f29['ranges'])['flat'](),_0x45501e=[{'startRow':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x102)],'endRow':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x102)],'startColumn':_0x3f17d0[_0x1a8ba7(0x8d)]['startColumn'],'endColumn':_0x3f17d0[_0x1a8ba7(0x8d)][_0x1a8ba7(0x15a)]}];return _0x484387['some'](_0x4afcc6=>_0x45501e[_0x1a8ba7(0xaf)](_0x3aee1b=>_0x5b3986[_0x1a8ba7(0x7a)](_0x4afcc6,_0x3aee1b)))?{'error':new Error(_0x1a8ba7(0x11c))}:_0x2be1d1;}},dn={'m1':_0x532e28['id'],'m2':_0x4075e['id'],'handler':(_0x31eee9,_0x12b0b9)=>{const _0x467542=_0x572182,_0x2b97f8={'m1Prime':_0x31eee9,'m2Prime':_0x12b0b9};return _0x31eee9['params'][_0x467542(0xdb)]!==_0x12b0b9['params'][_0x467542(0xdb)]||_0x31eee9['params']['subUnitId']!==_0x12b0b9[_0x467542(0x8d)][_0x467542(0x20b)]?_0x2b97f8:{'error':new Error(_0x467542(0x1dc))};}},mn={'m1':_0x532e28['id'],'m2':_0x225790['id'],'handler':(_0x3c9bfb,_0x2bc88d)=>{const _0x28ffbc=_0x572182,_0x49ff6a={'m1Prime':_0x3c9bfb,'m2Prime':_0x2bc88d};if(_0x3c9bfb[_0x28ffbc(0x8d)][_0x28ffbc(0xdb)]!==_0x2bc88d[_0x28ffbc(0x8d)]['unitId']||_0x3c9bfb[_0x28ffbc(0x8d)][_0x28ffbc(0x20b)]!==_0x2bc88d[_0x28ffbc(0x8d)][_0x28ffbc(0x20b)])return _0x49ff6a;const _0x372065=_0x3c9bfb[_0x28ffbc(0x8d)]['rules'][_0x28ffbc(0x1e0)](_0x196a40=>_0x196a40[_0x28ffbc(0xd1)])[_0x28ffbc(0x13b)](),_0x1e5a7e=_0x2bc88d['params'][_0x28ffbc(0xea)]['ranges'];return _0x372065[_0x28ffbc(0xaf)](_0x412877=>_0x1e5a7e[_0x28ffbc(0xaf)](_0x5ae8d5=>_0x5b3986[_0x28ffbc(0x7a)](_0x412877,_0x5ae8d5)))?{'error':new Error(_0x28ffbc(0x210))}:_0x49ff6a;}},un={'m1':_0x532e28['id'],'m2':_0x15eb0a['id'],'handler':(_0x16a585,_0x938595)=>{const _0x1fa475=_0x572182,_0x26c3fc={'m1Prime':_0x16a585,'m2Prime':_0x938595};if(_0x16a585[_0x1fa475(0x8d)][_0x1fa475(0xdb)]!==_0x938595[_0x1fa475(0x8d)]['unitId']||_0x16a585['params'][_0x1fa475(0x20b)]!==_0x938595[_0x1fa475(0x8d)][_0x1fa475(0x20b)])return _0x26c3fc;const _0x51656c=_0x16a585[_0x1fa475(0x8d)]['rules'][_0x1fa475(0x1e0)](_0x297cc7=>_0x297cc7[_0x1fa475(0xd1)])[_0x1fa475(0x13b)](),_0x5bfcd0=new _0x1f7bb9(_0x938595[_0x1fa475(0x8d)][_0x1fa475(0x208)])['getDataRange']();return _0x51656c[_0x1fa475(0xaf)](_0x143113=>_0x5b3986[_0x1fa475(0x7a)](_0x143113,_0x5bfcd0))?{'error':new Error(_0x1fa475(0x1a5))}:_0x26c3fc;}},ln={'m1':_0x532e28['id'],'m2':_0x4cb95c['id'],'handler':(_0x1ae796,_0x2f3be4)=>{const _0x86292d=_0x572182,_0x1c37d3={'m1Prime':_0x1ae796,'m2Prime':_0x2f3be4};if(_0x1ae796['params'][_0x86292d(0xdb)]!==_0x2f3be4[_0x86292d(0x8d)][_0x86292d(0xdb)]||_0x1ae796[_0x86292d(0x8d)]['subUnitId']!==_0x2f3be4[_0x86292d(0x8d)][_0x86292d(0x20b)])return _0x1c37d3;const _0x47089c=_0x1ae796[_0x86292d(0x8d)]['rules'][_0x86292d(0x1e0)](_0x5c1bd8=>_0x5c1bd8[_0x86292d(0xd1)])[_0x86292d(0x13b)](),_0x2f93b2=_0x2f3be4['params'][_0x86292d(0xd1)];return _0x47089c[_0x86292d(0xaf)](_0x3f3f00=>_0x2f93b2[_0x86292d(0xaf)](_0x20636f=>_0x5b3986['intersects'](_0x3f3f00,_0x20636f)))?{'error':new Error(_0x86292d(0xc2))}:_0x1c37d3;}},cn={'m1':_0x532e28['id'],'m2':_0x2c3db1['id'],'handler':(_0x5b2181,_0x3996f8)=>{const _0x467c26=_0x572182,_0x934201={'m1Prime':_0x5b2181,'m2Prime':_0x3996f8};return _0x5b2181[_0x467c26(0x8d)][_0x467c26(0xdb)]!==_0x3996f8[_0x467c26(0x8d)][_0x467c26(0xdb)]||_0x5b2181[_0x467c26(0x8d)][_0x467c26(0x20b)]!==_0x3996f8[_0x467c26(0x8d)]['subUnitId']?_0x934201:{'error':new Error(_0x467c26(0x1c5))};}},pn={'m1':_0x532e28['id'],'m2':_0x4e1baf['id'],'handler':(_0x4efd2a,_0x3b0ec7)=>{const _0x57a500=_0x572182,_0x2de419={'m1Prime':_0x4efd2a,'m2Prime':_0x3b0ec7};return _0x4efd2a[_0x57a500(0x8d)]['unitId']!==_0x3b0ec7[_0x57a500(0x8d)][_0x57a500(0xdb)]||_0x4efd2a[_0x57a500(0x8d)][_0x57a500(0x20b)]!==_0x3b0ec7[_0x57a500(0x8d)]['subUnitId']?_0x2de419:{'error':new Error(_0x57a500(0x83))};}},fn={'m1':_0x4b0a3e['id'],'m2':_0x4b0a3e['id'],'handler'(_0x588f1d,_0x1dceae){const _0xa49002=_0x572182,_0x2dc3c5=_0x570d2f[_0xa49002(0xb4)](_0x588f1d),_0xb0480b=_0x570d2f[_0xa49002(0xb4)](_0x1dceae);if(_0x588f1d[_0xa49002(0x8d)][_0xa49002(0xdb)]!==_0x1dceae[_0xa49002(0x8d)][_0xa49002(0xdb)]||_0x588f1d['params']['subUnitId']!==_0x1dceae[_0xa49002(0x8d)][_0xa49002(0x20b)])return{'m1Prime':_0x2dc3c5,'m2Prime':_0xb0480b};const _0x5bba1a=_0x2dc3c5[_0xa49002(0x8d)][_0xa49002(0xd1)],_0x541e0f=_0xb0480b[_0xa49002(0x8d)][_0xa49002(0xd1)],_0x5c44f0=[_0xb0480b],_0x11aaab=new Set();for(let _0x2f0855=0x0;_0x2f0855<_0x5bba1a['length'];_0x2f0855++)for(let _0x4b0b54=0x0;_0x4b0b54<_0x541e0f[_0xa49002(0xf6)];_0x4b0b54++)if(_0x5b3986['intersects'](_0x5bba1a[_0x2f0855],_0x541e0f[_0x4b0b54])){_0x11aaab[_0xa49002(0x12d)](_0x5bba1a[_0x2f0855]),_0x5bba1a[_0xa49002(0xf0)](_0x2f0855,0x1),_0x2f0855--;break;}return _0x11aaab['size']>0x0&&_0x5c44f0['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x588f1d[_0xa49002(0x8d)][_0xa49002(0xdb)],'subUnitId':_0x588f1d[_0xa49002(0x8d)][_0xa49002(0x20b)],'ranges':Array[_0xa49002(0x1b0)](_0x11aaab)}}),_0x5bba1a['length']===0x0&&(_0x2dc3c5['id']=_0x1a62da['id']),{'m1Prime':_0x2dc3c5,'m2Prime':_0x5c44f0[_0xa49002(0xf6)]>0x1?_0x5c44f0:_0xb0480b};}},rr={'m1':_0x4b0a3e['id'],'m2':_0x541ec4['id'],'handler'(_0x1b19a4,_0x1a4a02){const _0x4fb627=_0x572182,_0x1d136a=_0x570d2f[_0x4fb627(0xb4)](_0x1b19a4),_0x5fe499=_0x570d2f[_0x4fb627(0xb4)](_0x1a4a02);if(_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0xdb)]!==_0x1a4a02[_0x4fb627(0x8d)][_0x4fb627(0xdb)]||_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0x20b)]!==_0x1a4a02[_0x4fb627(0x8d)][_0x4fb627(0x20b)])return{'m1Prime':_0x1d136a,'m2Prime':_0x5fe499};const _0x4c9b35=_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0xdb)],_0x30f34b=_0x1b19a4[_0x4fb627(0x8d)][_0x4fb627(0x20b)],_0x347c14=[_0x5fe499],_0x5a48c3=[],_0x113988=[];return _0x1d136a[_0x4fb627(0x8d)][_0x4fb627(0xd1)][_0x4fb627(0xc5)](_0x16fa80=>{const _0x4fa0b5=_0x4fb627,_0x44f0fb=_0x1a4a02[_0x4fa0b5(0x8d)][_0x4fa0b5(0x19f)],_0x55eee4=_0x44f0fb[_0x4fa0b5(0x9d)]-_0x44f0fb['startColumn']+0x1;_0x44f0fb[_0x4fa0b5(0x15a)]<=_0x16fa80[_0x4fa0b5(0x15a)]?(_0x5a48c3[_0x4fa0b5(0x1ca)]({..._0x16fa80}),_0x113988[_0x4fa0b5(0x1ca)]({..._0x16fa80,'startColumn':_0x16fa80[_0x4fa0b5(0x15a)]+_0x55eee4,'endColumn':_0x16fa80[_0x4fa0b5(0x9d)]+_0x55eee4}),_0x16fa80[_0x4fa0b5(0x15a)]=_0x16fa80[_0x4fa0b5(0x15a)]+_0x55eee4,_0x16fa80[_0x4fa0b5(0x9d)]=_0x16fa80['endColumn']+_0x55eee4):_0x44f0fb['startColumn']>_0x16fa80[_0x4fa0b5(0x15a)]&&_0x44f0fb[_0x4fa0b5(0x15a)]<=_0x16fa80['endColumn']&&(_0x5a48c3['push']({..._0x16fa80}),_0x113988[_0x4fa0b5(0x1ca)]({..._0x16fa80,'endColumn':_0x16fa80['endColumn']+_0x55eee4}),_0x16fa80[_0x4fa0b5(0x9d)]=_0x16fa80['endColumn']+_0x55eee4);}),_0x5a48c3[_0x4fb627(0xf6)]>0x0&&_0x347c14[_0x4fb627(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x4c9b35,'subUnitId':_0x30f34b,'ranges':_0x5a48c3}}),_0x113988[_0x4fb627(0xf6)]>0x0&&_0x347c14['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x4c9b35,'subUnitId':_0x30f34b,'ranges':_0x113988}}),{'m1Prime':_0x1d136a,'m2Prime':_0x347c14[_0x4fb627(0xf6)]>0x1?_0x347c14:_0x347c14[0x0]};}},nr={'m1':_0x4b0a3e['id'],'m2':_0x224ab4['id'],'handler'(_0x118f75,_0x2034aa){const _0x18099a=_0x572182,_0x2e5859=_0x570d2f['deepClone'](_0x118f75),_0x2bc95a=_0x570d2f[_0x18099a(0xb4)](_0x2034aa);if(_0x118f75['params'][_0x18099a(0xdb)]!==_0x2034aa[_0x18099a(0x8d)]['unitId']||_0x118f75['params'][_0x18099a(0x20b)]!==_0x2034aa[_0x18099a(0x8d)][_0x18099a(0x20b)])return{'m1Prime':_0x2e5859,'m2Prime':_0x2bc95a};const _0x265d5c=_0x118f75[_0x18099a(0x8d)]['unitId'],_0x22710c=_0x118f75[_0x18099a(0x8d)][_0x18099a(0x20b)],_0x1c2701=[_0x2bc95a],_0x4f8ca8=[],_0x2bfa3b=[];return _0x2e5859[_0x18099a(0x8d)][_0x18099a(0xd1)][_0x18099a(0xc5)](_0x2c1e39=>{const _0x203cf8=_0x18099a,_0x16274f=_0x2034aa['params'][_0x203cf8(0x19f)],_0x484c43=_0x16274f[_0x203cf8(0x111)]-_0x16274f[_0x203cf8(0x102)]+0x1;_0x16274f[_0x203cf8(0x102)]<=_0x2c1e39[_0x203cf8(0x102)]?(_0x4f8ca8[_0x203cf8(0x1ca)]({..._0x2c1e39}),_0x2bfa3b[_0x203cf8(0x1ca)]({..._0x2c1e39,'startRow':_0x2c1e39['startRow']+_0x484c43,'endRow':_0x2c1e39['endRow']+_0x484c43}),_0x2c1e39[_0x203cf8(0x102)]=_0x2c1e39[_0x203cf8(0x102)]+_0x484c43,_0x2c1e39['endRow']=_0x2c1e39[_0x203cf8(0x111)]+_0x484c43):_0x16274f[_0x203cf8(0x102)]>_0x2c1e39[_0x203cf8(0x102)]&&_0x16274f['startRow']<=_0x2c1e39[_0x203cf8(0x111)]&&(_0x4f8ca8[_0x203cf8(0x1ca)]({..._0x2c1e39}),_0x2bfa3b['push']({..._0x2c1e39,'endRow':_0x2c1e39[_0x203cf8(0x111)]+_0x484c43}),_0x2c1e39[_0x203cf8(0x111)]=_0x2c1e39[_0x203cf8(0x111)]+_0x484c43);}),_0x4f8ca8['length']>0x0&&_0x1c2701['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x265d5c,'subUnitId':_0x22710c,'ranges':_0x4f8ca8}}),_0x2bfa3b['length']>0x0&&_0x1c2701['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x265d5c,'subUnitId':_0x22710c,'ranges':_0x2bfa3b}}),{'m1Prime':_0x2e5859,'m2Prime':_0x1c2701['length']>0x1?_0x1c2701:_0x1c2701[0x0]};}},ar={'m1':_0x4b0a3e['id'],'m2':_0x31c10b['id'],'handler'(_0x685329,_0x1bb9c2){const _0x2dbe66=_0x572182,_0x527bad=_0x570d2f[_0x2dbe66(0xb4)](_0x685329),_0x28e7d4=_0x570d2f[_0x2dbe66(0xb4)](_0x1bb9c2);if(_0x685329[_0x2dbe66(0x8d)]['unitId']!==_0x1bb9c2[_0x2dbe66(0x8d)][_0x2dbe66(0xdb)]||_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)]!==_0x1bb9c2[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)])return{'m1Prime':_0x527bad,'m2Prime':_0x28e7d4};const _0xd58ce0=[],_0x4a7909=[],_0x55802a=[_0x28e7d4];for(let _0xeff13d=0x0;_0xeff13d<_0x527bad[_0x2dbe66(0x8d)]['ranges']['length'];_0xeff13d++){const _0x3214cc=_0x527bad['params'][_0x2dbe66(0xd1)][_0xeff13d],{sourceRange:_0x19a28f,targetRange:_0x151e4a}=_0x1bb9c2[_0x2dbe66(0x8d)];_0x5b3986[_0x2dbe66(0x7a)](_0x3214cc,_0x19a28f)||_0x5b3986[_0x2dbe66(0x7a)](_0x3214cc,_0x151e4a)?(_0xd58ce0['push']({..._0x3214cc}),_0x527bad[_0x2dbe66(0x8d)][_0x2dbe66(0xd1)][_0x2dbe66(0xf0)](_0xeff13d,0x1),_0xeff13d--):_0x19a28f[_0x2dbe66(0x15a)]<_0x3214cc['startColumn']&&_0x151e4a[_0x2dbe66(0x15a)]>_0x3214cc[_0x2dbe66(0x9d)]?(_0xd58ce0[_0x2dbe66(0x1ca)]({..._0x3214cc}),_0x4a7909[_0x2dbe66(0x1ca)]({..._0x3214cc,'startColumn':_0x3214cc['startColumn']-(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1),'endColumn':_0x3214cc[_0x2dbe66(0x9d)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1)}),_0x3214cc[_0x2dbe66(0x15a)]=_0x3214cc[_0x2dbe66(0x15a)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f['startColumn']+0x1),_0x3214cc[_0x2dbe66(0x9d)]=_0x3214cc[_0x2dbe66(0x9d)]-(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1)):_0x19a28f['startColumn']>_0x3214cc['endColumn']&&_0x151e4a[_0x2dbe66(0x9d)]<_0x3214cc[_0x2dbe66(0x15a)]&&(_0xd58ce0[_0x2dbe66(0x1ca)]({..._0x3214cc}),_0x4a7909[_0x2dbe66(0x1ca)]({..._0x3214cc,'startColumn':_0x3214cc[_0x2dbe66(0x15a)]+(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1),'endColumn':_0x3214cc['endColumn']+(_0x19a28f['endColumn']-_0x19a28f[_0x2dbe66(0x15a)]+0x1)}),_0x3214cc[_0x2dbe66(0x15a)]=_0x3214cc[_0x2dbe66(0x15a)]+(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f['startColumn']+0x1),_0x3214cc[_0x2dbe66(0x9d)]=_0x3214cc[_0x2dbe66(0x9d)]+(_0x19a28f[_0x2dbe66(0x9d)]-_0x19a28f[_0x2dbe66(0x15a)]+0x1));}return _0xd58ce0[_0x2dbe66(0xf6)]>0x0&&_0x55802a[_0x2dbe66(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x685329['params'][_0x2dbe66(0xdb)],'subUnitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)],'ranges':_0xd58ce0}}),_0x4a7909[_0x2dbe66(0xf6)]>0x0&&_0x55802a[_0x2dbe66(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0xdb)],'subUnitId':_0x685329[_0x2dbe66(0x8d)][_0x2dbe66(0x20b)],'ranges':_0x4a7909}}),_0x527bad[_0x2dbe66(0x8d)]['ranges'][_0x2dbe66(0xf6)]===0x0&&(_0x527bad['id']=_0x1a62da['id']),{'m1Prime':_0x527bad,'m2Prime':_0x55802a['length']>0x1?_0x55802a:_0x55802a[0x0]};}},sr={'m1':_0x4b0a3e['id'],'m2':_0x43f1cd['id'],'handler'(_0x315cf7,_0x3bbc23){const _0x3c57b9=_0x572182,_0x5c43d5=_0x570d2f['deepClone'](_0x315cf7),_0x53025f=_0x570d2f[_0x3c57b9(0xb4)](_0x3bbc23);if(_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0xdb)]!==_0x3bbc23['params'][_0x3c57b9(0xdb)])return{'m1Prime':_0x5c43d5,'m2Prime':_0x53025f};const _0x3b3ccd=[],_0x1c4cb2=[_0x53025f],_0x2c43dc=new _0x1f7bb9(_0x3bbc23[_0x3c57b9(0x8d)][_0x3c57b9(0x1b0)][_0x3c57b9(0x17e)])[_0x3c57b9(0x182)](),_0x518f4e=new _0x1f7bb9(_0x3bbc23[_0x3c57b9(0x8d)]['to'][_0x3c57b9(0x17e)])[_0x3c57b9(0x182)]();for(let _0x49e280=0x0;_0x49e280<_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)]['length'];_0x49e280++){const _0x435d9d=_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)][_0x49e280];(_0x5b3986[_0x3c57b9(0x7a)](_0x2c43dc,_0x435d9d)||_0x5b3986['intersects'](_0x518f4e,_0x435d9d))&&(_0x3b3ccd[_0x3c57b9(0x1ca)](_0x435d9d),_0x5c43d5[_0x3c57b9(0x8d)][_0x3c57b9(0xd1)][_0x3c57b9(0xf0)](_0x49e280,0x1),_0x49e280--);}return _0x3b3ccd['length']>0x0&&_0x1c4cb2[_0x3c57b9(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0xdb)],'subUnitId':_0x315cf7[_0x3c57b9(0x8d)][_0x3c57b9(0x20b)],'ranges':_0x3b3ccd}}),_0x5c43d5[_0x3c57b9(0x8d)]['ranges'][_0x3c57b9(0xf6)]===0x0&&(_0x5c43d5['id']=_0x1a62da['id']),{'m1Prime':_0x5c43d5,'m2Prime':_0x1c4cb2['length']>0x1?_0x1c4cb2:_0x1c4cb2[0x0]};}},or={'m1':_0x4b0a3e['id'],'m2':_0x454b7a['id'],'handler'(_0x378060,_0x1e4a27){const _0x11e2ce=_0x572182,_0x2ecf41=_0x570d2f[_0x11e2ce(0xb4)](_0x378060),_0x31c0f7=_0x570d2f[_0x11e2ce(0xb4)](_0x1e4a27);if(_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)]!==_0x1e4a27[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)]||_0x378060[_0x11e2ce(0x8d)]['subUnitId']!==_0x1e4a27[_0x11e2ce(0x8d)][_0x11e2ce(0x20b)])return{'m1Prime':_0x2ecf41,'m2Prime':_0x31c0f7};const _0x48b790=[],_0x5ee518=[],_0xbee94b=[_0x31c0f7];for(let _0x34bd65=0x0;_0x34bd65<_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)]['length'];_0x34bd65++){const _0x302315=_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)][_0x34bd65],{sourceRange:_0x321156,targetRange:_0x474551}=_0x1e4a27['params'];_0x5b3986[_0x11e2ce(0x7a)](_0x302315,_0x321156)||_0x5b3986[_0x11e2ce(0x7a)](_0x302315,_0x474551)?(_0x48b790['push']({..._0x302315}),_0x2ecf41[_0x11e2ce(0x8d)][_0x11e2ce(0xd1)][_0x11e2ce(0xf0)](_0x34bd65,0x1),_0x34bd65--):_0x321156[_0x11e2ce(0x102)]<_0x302315[_0x11e2ce(0x102)]&&_0x474551[_0x11e2ce(0x102)]>_0x302315[_0x11e2ce(0x111)]?(_0x48b790[_0x11e2ce(0x1ca)]({..._0x302315}),_0x5ee518[_0x11e2ce(0x1ca)]({..._0x302315,'startRow':_0x302315[_0x11e2ce(0x102)]-(_0x321156[_0x11e2ce(0x111)]-_0x321156['startRow']+0x1),'endRow':_0x302315[_0x11e2ce(0x111)]-(_0x321156[_0x11e2ce(0x111)]-_0x321156['startRow']+0x1)}),_0x302315[_0x11e2ce(0x102)]=_0x302315['startRow']-(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),_0x302315[_0x11e2ce(0x111)]=_0x302315['endRow']-(_0x321156['endRow']-_0x321156[_0x11e2ce(0x102)]+0x1)):_0x321156[_0x11e2ce(0x102)]>_0x302315[_0x11e2ce(0x111)]&&_0x474551[_0x11e2ce(0x111)]<_0x302315['startRow']&&(_0x48b790['push']({..._0x302315}),_0x5ee518['push']({..._0x302315,'startRow':_0x302315['startRow']+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),'endRow':_0x302315[_0x11e2ce(0x111)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1)}),_0x302315[_0x11e2ce(0x102)]=_0x302315[_0x11e2ce(0x102)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1),_0x302315[_0x11e2ce(0x111)]=_0x302315[_0x11e2ce(0x111)]+(_0x321156[_0x11e2ce(0x111)]-_0x321156[_0x11e2ce(0x102)]+0x1));}return _0x48b790[_0x11e2ce(0xf6)]>0x0&&_0xbee94b['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)],'subUnitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0x20b)],'ranges':_0x48b790}}),_0x5ee518[_0x11e2ce(0xf6)]>0x0&&_0xbee94b[_0x11e2ce(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x378060[_0x11e2ce(0x8d)][_0x11e2ce(0xdb)],'subUnitId':_0x378060['params']['subUnitId'],'ranges':_0x5ee518}}),_0x2ecf41[_0x11e2ce(0x8d)]['ranges'][_0x11e2ce(0xf6)]===0x0&&(_0x2ecf41['id']=_0x1a62da['id']),{'m1Prime':_0x2ecf41,'m2Prime':_0xbee94b[_0x11e2ce(0xf6)]>0x1?_0xbee94b:_0xbee94b[0x0]};}};function K(_0x4dedbc){const _0x4ed937=_0x572182;return _0x4dedbc[_0x4ed937(0x15a)]>_0x4dedbc['endColumn']||_0x4dedbc[_0x4ed937(0x102)]>_0x4dedbc[_0x4ed937(0x111)]?!0x1:!(_0x4dedbc[_0x4ed937(0x102)]===_0x4dedbc[_0x4ed937(0x111)]&&_0x4dedbc['startColumn']===_0x4dedbc[_0x4ed937(0x9d)]);}const ir={'m1':_0x4b0a3e['id'],'m2':_0xe5c4bd['id'],'handler'(_0x6f8662,_0x23dd5b){const _0x1e60c6=_0x572182,_0x44530b=_0x570d2f[_0x1e60c6(0xb4)](_0x6f8662),_0x23e5a2=_0x570d2f[_0x1e60c6(0xb4)](_0x23dd5b);if(_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0xdb)]!==_0x23dd5b[_0x1e60c6(0x8d)][_0x1e60c6(0xdb)]||_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)]!==_0x23dd5b[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)])return{'m1Prime':_0x44530b,'m2Prime':_0x23e5a2};const _0x350105=_0x6f8662['params'][_0x1e60c6(0xdb)],_0x55f48b=_0x6f8662[_0x1e60c6(0x8d)][_0x1e60c6(0x20b)],_0x193aa8=[_0x23e5a2],_0x4f1d22=[],_0x475721=[];for(let _0x539cca=0x0;_0x539cca<_0x44530b['params'][_0x1e60c6(0xd1)][_0x1e60c6(0xf6)];_0x539cca++){const _0x590e1f=_0x44530b[_0x1e60c6(0x8d)]['ranges'][_0x539cca],_0x557c59=_0x23dd5b['params']['range'],_0x2c4ab1=_0x557c59[_0x1e60c6(0x9d)]-_0x557c59[_0x1e60c6(0x15a)]+0x1;if(_0x557c59[_0x1e60c6(0x15a)]<_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x15a)])_0x4f1d22['push']({..._0x590e1f}),_0x475721['push']({..._0x590e1f,'startColumn':_0x590e1f[_0x1e60c6(0x15a)]-_0x2c4ab1,'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1}),_0x590e1f[_0x1e60c6(0x15a)]=_0x590e1f[_0x1e60c6(0x15a)]-_0x2c4ab1,_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1;else{if(_0x557c59[_0x1e60c6(0x15a)]<_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]>=_0x590e1f['startColumn']&&_0x557c59[_0x1e60c6(0x9d)]<=_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x37812f={..._0x590e1f,'startColumn':_0x557c59[_0x1e60c6(0x15a)],'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1};K(_0x37812f)&&_0x557c59['endColumn']<_0x590e1f[_0x1e60c6(0x9d)]?(_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x9d)]&&_0x475721[_0x1e60c6(0x1ca)](_0x37812f),_0x590e1f[_0x1e60c6(0x15a)]=_0x557c59[_0x1e60c6(0x15a)],_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['splice'](_0x539cca,0x1),_0x539cca--);}else{if(_0x557c59['startColumn']>_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]<_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x2743e5={..._0x590e1f,'endColumn':_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1};K(_0x2743e5)?(_0x475721[_0x1e60c6(0x1ca)](_0x2743e5),_0x590e1f[_0x1e60c6(0x9d)]=_0x590e1f[_0x1e60c6(0x9d)]-_0x2c4ab1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)][_0x1e60c6(0xf0)](_0x539cca,0x1),_0x539cca--);}else{if(_0x557c59['startColumn']>=_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x15a)]<=_0x590e1f[_0x1e60c6(0x9d)]&&_0x557c59[_0x1e60c6(0x9d)]>_0x590e1f[_0x1e60c6(0x9d)]){_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f});const _0x233883={..._0x590e1f,'endColumn':_0x557c59['startColumn']-0x1};K(_0x233883)&&_0x557c59[_0x1e60c6(0x15a)]>_0x590e1f[_0x1e60c6(0x15a)]?(_0x475721[_0x1e60c6(0x1ca)](_0x233883),_0x590e1f[_0x1e60c6(0x9d)]=_0x557c59[_0x1e60c6(0x15a)]-0x1):(_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['splice'](_0x539cca,0x1),_0x539cca--);}else _0x557c59['startColumn']>_0x590e1f[_0x1e60c6(0x9d)]||_0x557c59[_0x1e60c6(0x15a)]<=_0x590e1f[_0x1e60c6(0x15a)]&&_0x557c59[_0x1e60c6(0x9d)]>=_0x590e1f['endColumn']&&(_0x4f1d22[_0x1e60c6(0x1ca)]({..._0x590e1f}),_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)][_0x1e60c6(0xf0)](_0x539cca,0x1),_0x539cca--);}}}}return _0x4f1d22[_0x1e60c6(0xf6)]>0x0&&_0x193aa8[_0x1e60c6(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x350105,'subUnitId':_0x55f48b,'ranges':_0x4f1d22}}),_0x475721[_0x1e60c6(0xf6)]>0x0&&_0x193aa8['push']({'id':_0x4b0a3e['id'],'params':{'unitId':_0x350105,'subUnitId':_0x55f48b,'ranges':_0x475721}}),_0x44530b[_0x1e60c6(0x8d)][_0x1e60c6(0xd1)]['length']===0x0&&(_0x44530b['id']=_0x1a62da['id']),{'m1Prime':_0x44530b,'m2Prime':_0x193aa8[_0x1e60c6(0xf6)]>0x1?_0x193aa8:_0x193aa8[0x0]};}},dr={'m1':_0x4b0a3e['id'],'m2':_0x1c90fa['id'],'handler'(_0x1cf0ab,_0x5225ad){const _0x31bb2d=_0x572182,_0x581c5d=_0x570d2f['deepClone'](_0x1cf0ab),_0x174e9f=_0x570d2f['deepClone'](_0x5225ad);if(_0x1cf0ab[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)]!==_0x5225ad[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)]||_0x1cf0ab['params']['subUnitId']!==_0x5225ad['params'][_0x31bb2d(0x20b)])return{'m1Prime':_0x581c5d,'m2Prime':_0x174e9f};const _0x35fbca=_0x1cf0ab[_0x31bb2d(0x8d)][_0x31bb2d(0xdb)],_0x5b7e56=_0x1cf0ab['params'][_0x31bb2d(0x20b)],_0x57b036=[_0x174e9f],_0x510206=[],_0xa9fe25=[];for(let _0x1d842c=0x0;_0x1d842c<_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf6)];_0x1d842c++){const _0x47e6bd=_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x1d842c],_0x27280d=_0x5225ad['params'][_0x31bb2d(0x19f)],_0x4b580b=_0x27280d[_0x31bb2d(0x111)]-_0x27280d[_0x31bb2d(0x102)]+0x1;if(_0x27280d[_0x31bb2d(0x102)]<_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d['endRow']<_0x47e6bd[_0x31bb2d(0x102)])_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd}),_0xa9fe25[_0x31bb2d(0x1ca)]({..._0x47e6bd,'startRow':_0x47e6bd[_0x31bb2d(0x102)]-_0x4b580b,'endRow':_0x47e6bd['endRow']-_0x4b580b}),_0x47e6bd[_0x31bb2d(0x102)]=_0x47e6bd[_0x31bb2d(0x102)]-_0x4b580b,_0x47e6bd[_0x31bb2d(0x111)]=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b;else{if(_0x27280d[_0x31bb2d(0x102)]<_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d['endRow']>=_0x47e6bd['startRow']&&_0x27280d['endRow']<=_0x47e6bd[_0x31bb2d(0x111)]){_0x510206['push']({..._0x47e6bd});const _0xa75778={..._0x47e6bd,'startRow':_0x27280d[_0x31bb2d(0x102)],'endRow':_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b};K(_0xa75778)&&_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd['endRow']?(_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd[_0x31bb2d(0x111)]&&_0xa9fe25[_0x31bb2d(0x1ca)](_0xa75778),_0x47e6bd[_0x31bb2d(0x102)]=_0x27280d[_0x31bb2d(0x102)],_0x47e6bd['endRow']=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b):(_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}else{if(_0x27280d[_0x31bb2d(0x102)]>_0x47e6bd['startRow']&&_0x27280d[_0x31bb2d(0x111)]<_0x47e6bd['endRow']){_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd});const _0x10fdee={..._0x47e6bd,'endRow':_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b};K(_0x10fdee)?(_0xa9fe25[_0x31bb2d(0x1ca)](_0x10fdee),_0x47e6bd[_0x31bb2d(0x111)]=_0x47e6bd[_0x31bb2d(0x111)]-_0x4b580b):(_0x581c5d['params'][_0x31bb2d(0xd1)]['splice'](_0x1d842c,0x1),_0x1d842c--);}else{if(_0x27280d[_0x31bb2d(0x102)]>=_0x47e6bd['startRow']&&_0x27280d[_0x31bb2d(0x102)]<=_0x47e6bd['endRow']&&_0x27280d[_0x31bb2d(0x111)]>_0x47e6bd['endRow']){_0x510206[_0x31bb2d(0x1ca)]({..._0x47e6bd});const _0x5c6d7a={..._0x47e6bd,'endRow':_0x27280d[_0x31bb2d(0x102)]-0x1};K(_0x5c6d7a)&&_0x27280d[_0x31bb2d(0x102)]>_0x47e6bd[_0x31bb2d(0x102)]?(_0xa9fe25[_0x31bb2d(0x1ca)](_0x5c6d7a),_0x47e6bd[_0x31bb2d(0x111)]=_0x27280d[_0x31bb2d(0x102)]-0x1):(_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}else _0x27280d[_0x31bb2d(0x102)]>_0x47e6bd[_0x31bb2d(0x111)]||_0x27280d[_0x31bb2d(0x102)]<=_0x47e6bd[_0x31bb2d(0x102)]&&_0x27280d[_0x31bb2d(0x111)]>=_0x47e6bd['endRow']&&(_0x510206['push']({..._0x47e6bd}),_0x581c5d['params']['ranges'][_0x31bb2d(0xf0)](_0x1d842c,0x1),_0x1d842c--);}}}}return _0x510206[_0x31bb2d(0xf6)]>0x0&&_0x57b036[_0x31bb2d(0xb9)]({'id':_0x3c47fd['id'],'params':{'unitId':_0x35fbca,'subUnitId':_0x5b7e56,'ranges':_0x510206}}),_0xa9fe25[_0x31bb2d(0xf6)]>0x0&&_0x57b036[_0x31bb2d(0x1ca)]({'id':_0x4b0a3e['id'],'params':{'unitId':_0x35fbca,'subUnitId':_0x5b7e56,'ranges':_0xa9fe25}}),_0x581c5d[_0x31bb2d(0x8d)][_0x31bb2d(0xd1)][_0x31bb2d(0xf6)]===0x0&&(_0x581c5d['id']=_0x1a62da['id']),{'m1Prime':_0x581c5d,'m2Prime':_0x57b036[_0x31bb2d(0xf6)]>0x1?_0x57b036:_0x57b036[0x0]};}},Rn={'m1':_0x4b0a3e['id'],'m2':_0x3c47fd['id'],'handler'(_0x2fa5be,_0x7170ff){const _0x4d3cc2=_0x572182,_0x1f4c48=_0x570d2f[_0x4d3cc2(0xb4)](_0x2fa5be),_0x287451=_0x570d2f[_0x4d3cc2(0xb4)](_0x7170ff);if(_0x2fa5be[_0x4d3cc2(0x8d)]['unitId']!==_0x7170ff['params'][_0x4d3cc2(0xdb)]||_0x2fa5be['params'][_0x4d3cc2(0x20b)]!==_0x7170ff[_0x4d3cc2(0x8d)][_0x4d3cc2(0x20b)])return{'m1Prime':_0x1f4c48,'m2Prime':_0x287451};const _0x16d7ae=[..._0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)]];for(let _0x17b88f=0x0;_0x17b88f<_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)];_0x17b88f++){let _0x333636=!0x1;for(let _0x192392=0x0;_0x192392<_0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)];_0x192392++){const _0x475439=_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x17b88f],_0x5e098a=_0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x192392];if(_0x5b3986[_0x4d3cc2(0x7a)](_0x475439,_0x5e098a)){_0x333636=!0x0;break;}}_0x333636&&(_0x16d7ae['push'](_0x1f4c48['params'][_0x4d3cc2(0xd1)][_0x17b88f]),_0x1f4c48['params']['ranges'][_0x4d3cc2(0xf0)](_0x17b88f,0x1),_0x17b88f--);}return _0x287451[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)]=_0x16d7ae,_0x1f4c48[_0x4d3cc2(0x8d)][_0x4d3cc2(0xd1)][_0x4d3cc2(0xf6)]===0x0&&(_0x1f4c48['id']=_0x1a62da['id']),{'m1Prime':_0x1f4c48,'m2Prime':_0x287451};}},mr={'m1':_0x4b0a3e['id'],'m2':_0x15eb0a['id'],'handler'(_0x5a0da3,_0xd5e2bb){const _0x20cf9e=_0x572182,_0x59a3c2=_0x570d2f[_0x20cf9e(0xb4)](_0x5a0da3),_0x17c9ff=_0x570d2f[_0x20cf9e(0xb4)](_0xd5e2bb);if(_0x5a0da3[_0x20cf9e(0x8d)]['unitId']!==_0xd5e2bb[_0x20cf9e(0x8d)][_0x20cf9e(0xdb)]||_0x5a0da3[_0x20cf9e(0x8d)]['subUnitId']!==_0xd5e2bb[_0x20cf9e(0x8d)][_0x20cf9e(0x20b)])return{'m1Prime':_0x59a3c2,'m2Prime':_0x17c9ff};const _0x5c132d=[_0x59a3c2],_0x522c9f=[_0x17c9ff],_0x41166b=new _0x1f7bb9(_0x570d2f[_0x20cf9e(0xb4)](_0xd5e2bb['params'][_0x20cf9e(0x208)])),_0x35df32=new Set(),_0x401ce4={};for(let _0x8af7c2=0x0;_0x8af7c2<_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x20cf9e(0xf6)];_0x8af7c2++){const _0x3e97a6=_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x8af7c2],{startRow:_0x275ff0,startColumn:_0x34dd96,endRow:_0x2b4485,endColumn:_0x546d45}=_0x3e97a6;let _0x43db8d=!0x1;_0x41166b[_0x20cf9e(0x86)]((_0x4c0e93,_0x22c39b,_0x1a5415)=>{const _0xc45517=_0x20cf9e;if(_0x4c0e93>=_0x275ff0&&_0x4c0e93<=_0x2b4485&&_0x22c39b>=_0x34dd96&&_0x22c39b<=_0x546d45){const _0x3d7b84=_0x41166b[_0xc45517(0xaa)](_0x4c0e93,_0x22c39b),_0x2e5e2c=_0x3d7b84===null?{'v':null,'s':null,'t':null,'si':null,'p':null,'f':null}:_0x3d7b84;_0x2e5e2c&&(_0x401ce4[_0x4c0e93]||(_0x401ce4[_0x4c0e93]={}),_0x401ce4[_0x4c0e93][_0x22c39b]={},(_0x1a5415==null?void 0x0:_0x1a5415['v'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['v']=null,delete _0x2e5e2c['v']),(_0x1a5415==null?void 0x0:_0x1a5415['f'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['f']=null,delete _0x2e5e2c['f']),(_0x1a5415==null?void 0x0:_0x1a5415['t'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['t']=null,delete _0x2e5e2c['t']),(_0x1a5415==null?void 0x0:_0x1a5415['si'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['si']=null,delete _0x2e5e2c['si']),(_0x1a5415==null?void 0x0:_0x1a5415['p'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['p']=null,delete _0x2e5e2c['p']),(_0x1a5415==null?void 0x0:_0x1a5415['s'])!==void 0x0&&(_0x401ce4[_0x4c0e93][_0x22c39b]['s']=null,delete _0x2e5e2c['s']),_0x41166b[_0xc45517(0x134)](_0x4c0e93,_0x22c39b,_0x2e5e2c),_0x43db8d=!0x0);}}),_0x43db8d&&(_0x35df32[_0x20cf9e(0x12d)]({..._0x3e97a6}),_0x59a3c2[_0x20cf9e(0x8d)]['ranges']['splice'](_0x8af7c2,0x1),_0x8af7c2--);}return _0x17c9ff[_0x20cf9e(0x8d)]['cellValue']=_0x41166b[_0x20cf9e(0x16a)](),_0x35df32[_0x20cf9e(0xe5)]>0x0&&_0x522c9f['unshift']({'id':_0x3c47fd['id'],'params':{'unitId':_0x5a0da3['params'][_0x20cf9e(0xdb)],'subUnitId':_0x5a0da3[_0x20cf9e(0x8d)][_0x20cf9e(0x20b)],'ranges':Array[_0x20cf9e(0x1b0)](_0x35df32)}}),_0x59a3c2[_0x20cf9e(0x8d)][_0x20cf9e(0xd1)][_0x20cf9e(0xf6)]===0x0&&(_0x59a3c2['id']=_0x1a62da['id']),Object[_0x20cf9e(0xab)](_0x401ce4)[_0x20cf9e(0xf6)]>0x0&&_0x5c132d[_0x20cf9e(0xb9)]({'id':_0x15eb0a['id'],'params':{'unitId':_0x5a0da3[_0x20cf9e(0x8d)][_0x20cf9e(0xdb)],'subUnitId':_0x5a0da3['params']['subUnitId'],'cellValue':_0x401ce4}}),{'m1Prime':_0x5c132d[_0x20cf9e(0xf6)]>0x1?_0x5c132d:_0x5c132d[0x0],'m2Prime':_0x522c9f[_0x20cf9e(0xf6)]>0x1?_0x522c9f:_0x522c9f[0x0]};}},hn={'m1':_0x4b0a3e['id'],'m2':_0x23969e['id'],'handler'(_0x18fa1d,_0xba97c1){const _0x368e5d=_0x572182,_0x59c943={'m1Prime':[],'m2Prime':[]};if(_0x18fa1d[_0x368e5d(0x8d)]['unitId']!==_0xba97c1[_0x368e5d(0x8d)]['unitId']||_0x18fa1d['params']['subUnitId']!==_0xba97c1[_0x368e5d(0x8d)][_0x368e5d(0x20b)])return _0x59c943;const _0x1e500c=_0x570d2f[_0x368e5d(0xb4)](_0xba97c1),_0x43cecb=_0x1e500c[_0x368e5d(0x8d)][_0x368e5d(0x138)];_0x43cecb['forEach']((_0x8f07f9,_0x49cb54)=>{const _0x3976fd=_0x368e5d,{range:_0x556905,primary:_0x16bf23}=_0x8f07f9;_0x18fa1d[_0x3976fd(0x8d)][_0x3976fd(0xd1)]['forEach'](_0x45b26a=>{const _0x4d048a=_0x3976fd;_0x5b3986[_0x4d048a(0x7a)](_0x45b26a,_0x556905)&&(_0x556905[_0x4d048a(0x102)]=Math['min'](_0x45b26a['startRow'],_0x556905[_0x4d048a(0x102)]),_0x556905[_0x4d048a(0x15a)]=Math[_0x4d048a(0x126)](_0x45b26a['startColumn'],_0x556905[_0x4d048a(0x15a)]),_0x556905[_0x4d048a(0x111)]=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x111)],_0x556905[_0x4d048a(0x111)]),_0x556905['endColumn']=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x9d)],_0x556905['endColumn'])),_0x16bf23&&_0x5b3986['intersects'](_0x45b26a,_0x16bf23)&&_0x49cb54===_0x43cecb['length']-0x1&&(_0x16bf23[_0x4d048a(0x15a)]===_0x45b26a['startColumn']&&_0x16bf23['startRow']&&_0x45b26a[_0x4d048a(0x102)]&&(_0x16bf23[_0x4d048a(0x187)]=!0x0),_0x16bf23['startRow']=Math[_0x4d048a(0x126)](_0x45b26a[_0x4d048a(0x102)],_0x16bf23[_0x4d048a(0x102)]),_0x16bf23[_0x4d048a(0x15a)]=Math['min'](_0x45b26a[_0x4d048a(0x15a)],_0x16bf23[_0x4d048a(0x15a)]),_0x16bf23[_0x4d048a(0x111)]=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x111)],_0x16bf23[_0x4d048a(0x111)]),_0x16bf23['endColumn']=Math[_0x4d048a(0xed)](_0x45b26a[_0x4d048a(0x9d)],_0x16bf23[_0x4d048a(0x9d)]),_0x16bf23[_0x4d048a(0xd5)]=!0x0);});}),_0x43cecb[_0x368e5d(0x14f)]((_0x1ea9fe,_0x20ce8b)=>{const _0x5e3b89=_0x368e5d,_0x5a50f5=_0x1ea9fe[_0x5e3b89(0x19f)],_0x486278=_0x20ce8b[_0x5e3b89(0x19f)];return _0x5a50f5[_0x5e3b89(0x102)]===_0x486278[_0x5e3b89(0x102)]?_0x5a50f5[_0x5e3b89(0x15a)]-_0x486278[_0x5e3b89(0x15a)]:_0x5a50f5['startRow']-_0x486278[_0x5e3b89(0x102)];});const _0xda81a5=[];let _0xd8c8d5=null;for(const _0x285476 of _0x43cecb)_0xd8c8d5===null||!_0x5b3986[_0x368e5d(0x7a)](_0xd8c8d5['range'],_0x285476[_0x368e5d(0x19f)])?(_0xda81a5[_0x368e5d(0x1ca)](_0x285476),_0xd8c8d5=_0x285476):(_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x102)]=Math[_0x368e5d(0x126)](_0xd8c8d5[_0x368e5d(0x19f)]['startRow'],_0x285476[_0x368e5d(0x19f)]['startRow']),_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x15a)]=Math['min'](_0xd8c8d5[_0x368e5d(0x19f)]['startColumn'],_0x285476[_0x368e5d(0x19f)][_0x368e5d(0x15a)]),_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x111)]=Math['max'](_0xd8c8d5[_0x368e5d(0x19f)][_0x368e5d(0x111)],_0x285476[_0x368e5d(0x19f)]['endRow']),_0xd8c8d5['range']['endColumn']=Math[_0x368e5d(0xed)](_0xd8c8d5['range'][_0x368e5d(0x9d)],_0x285476[_0x368e5d(0x19f)][_0x368e5d(0x9d)]),_0x285476['primary']&&(_0xd8c8d5[_0x368e5d(0x19d)]=_0x285476['primary']));return _0x1e500c[_0x368e5d(0x8d)][_0x368e5d(0x138)]=_0xda81a5,_0x59c943[_0x368e5d(0xcf)][_0x368e5d(0x1ca)](_0x1e500c),_0x59c943;}},gn={'m1':_0xeba0d['id'],'m2':_0x1b398d['id'],'handler':(_0x226242,_0x2baf5c)=>{const _0x134f08=_0x572182,_0x15f190={'m1Prime':_0x226242,'m2Prime':_0x2baf5c};return _0x226242[_0x134f08(0x8d)][_0x134f08(0xdb)]!==_0x2baf5c[_0x134f08(0x8d)][_0x134f08(0xdb)]||_0x226242[_0x134f08(0x8d)][_0x134f08(0x20b)]!==_0x2baf5c[_0x134f08(0x8d)][_0x134f08(0x20b)]?_0x15f190:{'error':new Error(_0x134f08(0x1be))};}},In={'m1':_0xeba0d['id'],'m2':_0x4ae767['id'],'handler':(_0xc8c0eb,_0x27d96c)=>{const _0x2a4d19=_0x572182,_0x1686f8={'m1Prime':_0xc8c0eb,'m2Prime':_0x27d96c};return _0xc8c0eb[_0x2a4d19(0x8d)][_0x2a4d19(0xdb)]!==_0x27d96c[_0x2a4d19(0x8d)]['unitId']||_0xc8c0eb['params'][_0x2a4d19(0x20b)]!==_0x27d96c[_0x2a4d19(0x8d)]['subUnitId']?_0x1686f8:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule')};}},wn={'m1':_0xeba0d['id'],'m2':_0x532e28['id'],'handler':(_0x5b9c7d,_0x3fd7b6)=>{const _0x5ba750=_0x572182,_0x39b8cc={'m1Prime':_0x5b9c7d,'m2Prime':_0x3fd7b6};return _0x5b9c7d[_0x5ba750(0x8d)][_0x5ba750(0xdb)]!==_0x3fd7b6[_0x5ba750(0x8d)][_0x5ba750(0xdb)]||_0x5b9c7d[_0x5ba750(0x8d)][_0x5ba750(0x20b)]!==_0x3fd7b6[_0x5ba750(0x8d)][_0x5ba750(0x20b)]?_0x39b8cc:{'error':new Error(_0x5ba750(0x12e))};}},Cn={'m1':_0xeba0d['id'],'m2':_0x4b0a3e['id'],'handler':(_0x17ab15,_0x4a876)=>{const _0x71a181=_0x572182,_0x257739={'m1Prime':_0x17ab15,'m2Prime':_0x4a876};return _0x17ab15[_0x71a181(0x8d)]['unitId']!==_0x4a876[_0x71a181(0x8d)]['unitId']||_0x17ab15[_0x71a181(0x8d)][_0x71a181(0x20b)]!==_0x4a876[_0x71a181(0x8d)][_0x71a181(0x20b)]?_0x257739:{'error':new Error(_0x71a181(0x172))};}},Pn={'m1':_0xeba0d['id'],'m2':_0xeba0d['id'],'handler':(_0x360b2c,_0x701d58)=>{const _0x32e7b7=_0x572182,_0x2b2116={'m1Prime':_0x360b2c,'m2Prime':_0x701d58};return _0x360b2c['params'][_0x32e7b7(0xdb)]!==_0x701d58[_0x32e7b7(0x8d)][_0x32e7b7(0xdb)]||_0x360b2c[_0x32e7b7(0x8d)]['subUnitId']!==_0x701d58[_0x32e7b7(0x8d)]['rule'][_0x32e7b7(0x20b)]?_0x2b2116:{'error':new Error(_0x32e7b7(0x202))};}},Un={'m1':_0xeba0d['id'],'m2':_0xdfc809['id'],'handler':(_0x165c0b,_0x594f18)=>{const _0x325719=_0x572182,_0xb4db8c={'m1Prime':_0x165c0b,'m2Prime':_0x594f18};return _0x165c0b[_0x325719(0x8d)]['unitId']!==_0x594f18[_0x325719(0x8d)][_0x325719(0xdb)]||_0x165c0b['params'][_0x325719(0x20b)]!==_0x594f18[_0x325719(0x8d)][_0x325719(0x20b)]?_0xb4db8c:{'error':new Error(_0x325719(0x1de))};}},bn={'m1':_0xeba0d['id'],'m2':_0x7e7ab0['id'],'handler':(_0xdfde85,_0x58bd56)=>{const _0x12ea76=_0x572182,_0x15b607={'m1Prime':_0xdfde85,'m2Prime':_0x58bd56};return _0xdfde85[_0x12ea76(0x8d)][_0x12ea76(0xdb)]!==_0x58bd56[_0x12ea76(0x8d)][_0x12ea76(0xdb)]||_0xdfde85[_0x12ea76(0x8d)]['subUnitId']!==_0x58bd56[_0x12ea76(0x8d)]['subUnitId']?_0x15b607:{'error':new Error(_0x12ea76(0x17f))};}},Mn={'m1':_0xeba0d['id'],'m2':_0x541ec4['id'],'handler':(_0x412a61,_0x231f36)=>{const _0x1e4d8d=_0x572182,_0x260593={'m1Prime':_0x412a61,'m2Prime':_0x231f36};return _0x412a61['params']['unitId']!==_0x231f36[_0x1e4d8d(0x8d)]['unitId']||_0x412a61[_0x1e4d8d(0x8d)][_0x1e4d8d(0x20b)]!==_0x231f36[_0x1e4d8d(0x8d)]['subUnitId']?_0x260593:{'error':new Error(_0x1e4d8d(0x180))};}},vn={'m1':_0xeba0d['id'],'m2':_0x224ab4['id'],'handler':(_0x452820,_0x40b07c)=>{const _0x2c5d7b=_0x572182,_0x1c92cc={'m1Prime':_0x452820,'m2Prime':_0x40b07c};return _0x452820['params'][_0x2c5d7b(0xdb)]!==_0x40b07c[_0x2c5d7b(0x8d)][_0x2c5d7b(0xdb)]||_0x452820[_0x2c5d7b(0x8d)][_0x2c5d7b(0x20b)]!==_0x40b07c['params']['subUnitId']?_0x1c92cc:{'error':new Error(_0x2c5d7b(0x1ce))};}},En={'m1':_0xeba0d['id'],'m2':_0x31c10b['id'],'handler':(_0xa34202,_0x28a721)=>{const _0x27d172=_0x572182,_0x9daeaf={'m1Prime':_0xa34202,'m2Prime':_0x28a721};return _0xa34202[_0x27d172(0x8d)][_0x27d172(0xdb)]!==_0x28a721[_0x27d172(0x8d)]['unitId']||_0xa34202[_0x27d172(0x8d)][_0x27d172(0x20b)]!==_0x28a721[_0x27d172(0x8d)][_0x27d172(0x20b)]?_0x9daeaf:{'error':new Error(_0x27d172(0x145))};}},Sn={'m1':_0xeba0d['id'],'m2':_0x43f1cd['id'],'handler':(_0xa00ee1,_0x5c9167)=>{const _0xe35a68=_0x572182,_0x17a7f7={'m1Prime':_0xa00ee1,'m2Prime':_0x5c9167};return _0xa00ee1[_0xe35a68(0x8d)][_0xe35a68(0xdb)]!==_0x5c9167[_0xe35a68(0x8d)][_0xe35a68(0xdb)]||_0xa00ee1[_0xe35a68(0x8d)][_0xe35a68(0x20b)]!==_0x5c9167[_0xe35a68(0x8d)][_0xe35a68(0x1b0)][_0xe35a68(0x20b)]?_0x17a7f7:{'error':new Error(_0xe35a68(0x1f7))};}},Wn={'m1':_0xeba0d['id'],'m2':_0x454b7a['id'],'handler':(_0x5033ec,_0x5a329f)=>{const _0x2dc085=_0x572182,_0x143b56={'m1Prime':_0x5033ec,'m2Prime':_0x5a329f};return _0x5033ec[_0x2dc085(0x8d)][_0x2dc085(0xdb)]!==_0x5a329f[_0x2dc085(0x8d)][_0x2dc085(0xdb)]||_0x5033ec[_0x2dc085(0x8d)][_0x2dc085(0x20b)]!==_0x5a329f[_0x2dc085(0x8d)][_0x2dc085(0x20b)]?_0x143b56:{'error':new Error(_0x2dc085(0x101))};}},Vn={'m1':_0xeba0d['id'],'m2':_0xe5c4bd['id'],'handler':(_0x2eefb6,_0xfb30cf)=>{const _0x3aee81=_0x572182,_0x4c4685={'m1Prime':_0x2eefb6,'m2Prime':_0xfb30cf};return _0x2eefb6['params'][_0x3aee81(0xdb)]!==_0xfb30cf[_0x3aee81(0x8d)][_0x3aee81(0xdb)]||_0x2eefb6[_0x3aee81(0x8d)][_0x3aee81(0x20b)]!==_0xfb30cf[_0x3aee81(0x8d)]['subUnitId']?_0x4c4685:{'error':new Error(_0x3aee81(0x156))};}},_n={'m1':_0xeba0d['id'],'m2':_0x13693a['id'],'handler':(_0x16e6c7,_0x529f23)=>{const _0x5c1347=_0x572182,_0x257303={'m1Prime':_0x16e6c7,'m2Prime':_0x529f23};return _0x16e6c7[_0x5c1347(0x8d)][_0x5c1347(0xdb)]!==_0x529f23[_0x5c1347(0x8d)][_0x5c1347(0xdb)]||_0x16e6c7['params'][_0x5c1347(0x20b)]!==_0x529f23[_0x5c1347(0x8d)][_0x5c1347(0x20b)]?_0x257303:{'error':new Error(_0x5c1347(0x10e))};}},On={'m1':_0xeba0d['id'],'m2':_0x3dcda7['id'],'handler':(_0x493f4a,_0x258a6e)=>{const _0xdfcfc1=_0x572182,_0x50caf6={'m1Prime':_0x493f4a,'m2Prime':_0x258a6e};return _0x493f4a[_0xdfcfc1(0x8d)][_0xdfcfc1(0xdb)]!==_0x258a6e[_0xdfcfc1(0x8d)][_0xdfcfc1(0xdb)]||_0x493f4a[_0xdfcfc1(0x8d)][_0xdfcfc1(0x20b)]!==_0x258a6e['params'][_0xdfcfc1(0x20b)]?_0x50caf6:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')};}},yn={'m1':_0xeba0d['id'],'m2':_0x1c90fa['id'],'handler':(_0x185b56,_0x52195a)=>{const _0xa4c8b7=_0x572182,_0x2b4332={'m1Prime':_0x185b56,'m2Prime':_0x52195a};return _0x185b56[_0xa4c8b7(0x8d)][_0xa4c8b7(0xdb)]!==_0x52195a[_0xa4c8b7(0x8d)][_0xa4c8b7(0xdb)]||_0x185b56[_0xa4c8b7(0x8d)][_0xa4c8b7(0x20b)]!==_0x52195a[_0xa4c8b7(0x8d)][_0xa4c8b7(0x20b)]?_0x2b4332:{'error':new Error(_0xa4c8b7(0x171))};}},Nn={'m1':_0xeba0d['id'],'m2':_0x224fc7['id'],'handler':(_0x9f81,_0x491ab6)=>{const _0x29ae28=_0x572182,_0x13e0fb={'m1Prime':_0x9f81,'m2Prime':_0x491ab6};return _0x9f81[_0x29ae28(0x8d)][_0x29ae28(0xdb)]!==_0x491ab6[_0x29ae28(0x8d)][_0x29ae28(0xdb)]||_0x9f81[_0x29ae28(0x8d)][_0x29ae28(0x20b)]!==_0x491ab6['params'][_0x29ae28(0x20b)]?_0x13e0fb:{'error':new Error(_0x29ae28(0x149))};}},Dn={'m1':_0xeba0d['id'],'m2':_0x2df765['id'],'handler':(_0x21b594,_0x7fb383)=>{const _0x38bf32=_0x572182,_0x5a2e00={'m1Prime':_0x21b594,'m2Prime':_0x7fb383};return _0x21b594[_0x38bf32(0x8d)][_0x38bf32(0xdb)]!==_0x7fb383[_0x38bf32(0x8d)][_0x38bf32(0xdb)]||_0x21b594['params']['subUnitId']!==_0x7fb383[_0x38bf32(0x8d)][_0x38bf32(0x20b)]?_0x5a2e00:{'error':new Error(_0x38bf32(0x148))};}},An={'m1':_0xeba0d['id'],'m2':_0x3c47fd['id'],'handler':(_0x5c0ceb,_0x19dab6)=>{const _0x6695ce=_0x572182,_0x47d7aa={'m1Prime':_0x5c0ceb,'m2Prime':_0x19dab6};return _0x5c0ceb[_0x6695ce(0x8d)]['unitId']!==_0x19dab6[_0x6695ce(0x8d)][_0x6695ce(0xdb)]||_0x5c0ceb[_0x6695ce(0x8d)][_0x6695ce(0x20b)]!==_0x19dab6[_0x6695ce(0x8d)][_0x6695ce(0x20b)]?_0x47d7aa:{'error':new Error(_0x6695ce(0x154))};}},Tn={'m1':_0xeba0d['id'],'m2':_0x36306e['id'],'handler':(_0x389efa,_0x4bafc1)=>{const _0x2b71e6=_0x572182,_0x473108={'m1Prime':_0x389efa,'m2Prime':_0x4bafc1};return _0x389efa[_0x2b71e6(0x8d)][_0x2b71e6(0xdb)]!==_0x4bafc1[_0x2b71e6(0x8d)][_0x2b71e6(0xdb)]||_0x389efa[_0x2b71e6(0x8d)][_0x2b71e6(0x20b)]!==_0x4bafc1[_0x2b71e6(0x8d)]['subUnitId']?_0x473108:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule')};}},Ln={'m1':_0xeba0d['id'],'m2':_0xe30a36['id'],'handler':(_0x32adc1,_0x3c10df)=>{const _0x47a113=_0x572182,_0x61f1a4={'m1Prime':_0x32adc1,'m2Prime':_0x3c10df};return _0x32adc1[_0x47a113(0x8d)][_0x47a113(0xdb)]!==_0x3c10df[_0x47a113(0x8d)][_0x47a113(0xdb)]||_0x32adc1['params'][_0x47a113(0x20b)]!==_0x3c10df['params']['subUnitId']?_0x61f1a4:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20frozen')};}},kn={'m1':_0xeba0d['id'],'m2':_0x4075e['id'],'handler':(_0x51a41b,_0x4add43)=>{const _0x219495=_0x572182,_0x365dd0={'m1Prime':_0x51a41b,'m2Prime':_0x4add43};return _0x51a41b[_0x219495(0x8d)]['unitId']!==_0x4add43[_0x219495(0x8d)]['unitId']||_0x51a41b[_0x219495(0x8d)][_0x219495(0x20b)]!==_0x4add43[_0x219495(0x8d)][_0x219495(0x20b)]?_0x365dd0:{'error':new Error(_0x219495(0x1c2))};}},xn={'m1':_0xeba0d['id'],'m2':_0x225790['id'],'handler':(_0x5e883b,_0x4a40e8)=>{const _0x1e7d4a=_0x572182,_0xb03e={'m1Prime':_0x5e883b,'m2Prime':_0x4a40e8};return _0x5e883b[_0x1e7d4a(0x8d)][_0x1e7d4a(0xdb)]!==_0x4a40e8[_0x1e7d4a(0x8d)][_0x1e7d4a(0xdb)]||_0x5e883b['params'][_0x1e7d4a(0x20b)]!==_0x4a40e8[_0x1e7d4a(0x8d)][_0x1e7d4a(0x20b)]?_0xb03e:{'error':new Error(_0x1e7d4a(0xbb))};}},Hn={'m1':_0xeba0d['id'],'m2':_0x4cb95c['id'],'handler':(_0x2b2d9d,_0x5b5431)=>{const _0x41d80f=_0x572182,_0x45937f={'m1Prime':_0x2b2d9d,'m2Prime':_0x5b5431};return _0x2b2d9d[_0x41d80f(0x8d)][_0x41d80f(0xdb)]!==_0x5b5431[_0x41d80f(0x8d)][_0x41d80f(0xdb)]||_0x2b2d9d[_0x41d80f(0x8d)][_0x41d80f(0x20b)]!==_0x5b5431[_0x41d80f(0x8d)]['subUnitId']?_0x45937f:{'error':new Error(_0x41d80f(0x15b))};}},Fn={'m1':_0xeba0d['id'],'m2':_0x5a5428['id'],'handler':(_0x4fc029,_0x12788a)=>{const _0x2e903b=_0x572182,_0x4ecaeb={'m1Prime':_0x4fc029,'m2Prime':_0x12788a};return _0x4fc029[_0x2e903b(0x8d)][_0x2e903b(0xdb)]!==_0x12788a[_0x2e903b(0x8d)][_0x2e903b(0xdb)]||_0x4fc029[_0x2e903b(0x8d)][_0x2e903b(0x20b)]!==_0x12788a[_0x2e903b(0x8d)][_0x2e903b(0x20b)]?_0x4ecaeb:{'error':new Error(_0x2e903b(0x153))};}},Bn={'m1':_0xeba0d['id'],'m2':_0x2c3db1['id'],'handler':(_0x564625,_0x404f4b)=>{const _0x999681=_0x572182,_0x3acd3b={'m1Prime':_0x564625,'m2Prime':_0x404f4b};return _0x564625[_0x999681(0x8d)][_0x999681(0xdb)]!==_0x404f4b[_0x999681(0x8d)][_0x999681(0xdb)]||_0x564625['params']['subUnitId']!==_0x404f4b[_0x999681(0x8d)][_0x999681(0x20b)]?_0x3acd3b:{'error':new Error(_0x999681(0x121))};}},Gn={'m1':_0xeba0d['id'],'m2':_0x4e1baf['id'],'handler':(_0x51883b,_0x8fc69e)=>{const _0x3aec59=_0x572182,_0x2e8c3a={'m1Prime':_0x51883b,'m2Prime':_0x8fc69e};return _0x51883b[_0x3aec59(0x8d)]['unitId']!==_0x8fc69e[_0x3aec59(0x8d)][_0x3aec59(0xdb)]||_0x51883b['params'][_0x3aec59(0x20b)]!==_0x8fc69e[_0x3aec59(0x8d)][_0x3aec59(0x20b)]?_0x2e8c3a:{'error':new Error(_0x3aec59(0x11e))};}},jn={'m1':_0x5b7f88['id'],'m2':_0x1b398d['id'],'handler':(_0x4d7cd4,_0x34628e)=>{const _0x3a5dc7=_0x572182,_0x22ee50=_0x4d7cd4[_0x3a5dc7(0x8d)],_0x32bfd5=_0x34628e[_0x3a5dc7(0x8d)];return _0x22ee50['unitId']===_0x32bfd5['unitId']&&_0x22ee50[_0x3a5dc7(0x20b)]===_0x32bfd5[_0x3a5dc7(0x20b)]&&_0x22ee50[_0x3a5dc7(0xf8)]===_0x32bfd5[_0x3a5dc7(0x95)][_0x3a5dc7(0x7c)]?{'m1Prime':_0x4d7cd4,'m2Prime':[]}:{'m1Prime':_0x4d7cd4,'m2Prime':_0x34628e};}},$n={'m1':_0x5b7f88['id'],'m2':_0x5b7f88['id'],'handler':(_0x5db964,_0x361633)=>{const _0x1859f9=_0x572182,_0x8eff79=_0x5db964[_0x1859f9(0x8d)],_0x2c53a0=_0x361633[_0x1859f9(0x8d)],_0x410d3c={'m1Prime':_0x5db964,'m2Prime':_0x361633};return _0x8eff79[_0x1859f9(0xdb)]!==_0x2c53a0[_0x1859f9(0xdb)]||_0x8eff79[_0x1859f9(0x20b)]!==_0x2c53a0['subUnitId']||_0x8eff79[_0x1859f9(0xf8)]!==_0x2c53a0[_0x1859f9(0xf8)]?_0x410d3c:{'m1Prime':[],'m2Prime':[]};}},Yn={'m1':_0x7e7ab0['id'],'m2':_0x7e7ab0['id'],'handler'(_0x44fd31,_0x19726f){return{'m1Prime':_0x44fd31,'m2Prime':_0x19726f};}},It=(_0x2ceaf9,_0x4264d3)=>{const _0x43ab4a=_0x572182,_0x5ddc8b=_0x426d2f(_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)][_0x43ab4a(0x1c7)]),_0x2fdb1a={'startColumn':_0x5ddc8b[_0x43ab4a(0x14c)],'endColumn':_0x5ddc8b['column'],'startRow':_0x5ddc8b['row'],'endRow':_0x5ddc8b[_0x43ab4a(0x1cb)]},_0x33859c=_0x8e6890(_0x2fdb1a,_0x4264d3);if(!_0x33859c)return[{'id':_0x5b7f88['id'],'params':{..._0x2ceaf9['params'],'comment':void 0x0,'commentId':_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)]['id']}}];const _0x25ab4d=_0x572940(_0x33859c);return _0x25ab4d===_0x2ceaf9[_0x43ab4a(0x8d)][_0x43ab4a(0x95)][_0x43ab4a(0x1c7)]?[]:[{'id':_0x2afd0c['id'],'params':{..._0x2ceaf9[_0x43ab4a(0x8d)],'comment':void 0x0,'payload':{'ref':_0x25ab4d,'commentId':_0x2ceaf9[_0x43ab4a(0x8d)]['comment']['id']}}}];},Jn={'m1':_0x541ec4['id'],'m2':_0x1b398d['id'],'handler':(_0x36ceae,_0x5ba9d7)=>{const _0x5ce49c=_0x572182,_0xe30955={'m1Prime':_0x36ceae,'m2Prime':_0x5ba9d7};if(_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)]!==_0x5ba9d7[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)]||_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x20b)]!==_0x5ba9d7[_0x5ce49c(0x8d)]['subUnitId'])return _0xe30955;const _0x1743f1={'id':_0x172802['id'],'params':{'unitId':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0xdb)],'subUnitId':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x20b)],'range':_0x36ceae[_0x5ce49c(0x8d)][_0x5ce49c(0x19f)]}},_0x48fe51=It(_0x5ba9d7,_0x1743f1);return{'m1Prime':[_0x36ceae,..._0x48fe51],'m2Prime':[_0x5ba9d7,..._0x48fe51]};}};function h(_0x45fa83){const _0x2df25a=_0x572182;return{..._0x45fa83,'rangeType':_0x3e1f4a[_0x2df25a(0x1ff)]};}function ft(_0x1892db,_0x3f26ca,_0x1c46ac,_0x16a79d){const _0x5dfc5e=_0x572182;if(_0x16a79d<0x0){for(let _0x57aa3b=_0x3f26ca;_0x57aa3b<_0x3f26ca+_0x1c46ac;_0x57aa3b++)if(_0x1892db[_0x5dfc5e(0x185)](_0x57aa3b)){_0x1892db['hasOwnProperty'](_0x57aa3b+_0x16a79d)||(_0x1892db[_0x57aa3b+_0x16a79d]={});const _0x55828e=_0x1892db[_0x57aa3b],_0x1ec135=Object[_0x5dfc5e(0xab)](_0x55828e)['map'](Number)[_0x5dfc5e(0x14f)]((_0x7326a3,_0x5c4a84)=>_0x7326a3-_0x5c4a84);for(const _0x55d0bb of _0x1ec135)_0x1892db[_0x57aa3b+_0x16a79d][_0x55d0bb]=_0x55828e[_0x55d0bb];delete _0x1892db[_0x57aa3b];}else delete _0x1892db[_0x57aa3b+_0x16a79d];}else{for(let _0x505f31=_0x3f26ca+_0x1c46ac-0x1;_0x505f31>=_0x3f26ca;_0x505f31--)if(_0x1892db[_0x5dfc5e(0x185)](_0x505f31)){_0x1892db[_0x5dfc5e(0x185)](_0x505f31+_0x16a79d)||(_0x1892db[_0x505f31+_0x16a79d]={});const _0x3faa28=_0x1892db[_0x505f31],_0x5b19dc=Object[_0x5dfc5e(0xab)](_0x3faa28)[_0x5dfc5e(0x1e0)](Number)['sort']((_0x5ed1a0,_0x452a75)=>_0x5ed1a0-_0x452a75);for(const _0x36eac1 of _0x5b19dc)_0x1892db[_0x505f31+_0x16a79d][_0x36eac1]=_0x3faa28[_0x36eac1];delete _0x1892db[_0x505f31];}else delete _0x1892db[_0x505f31+_0x16a79d];}}function Rt(_0xe3de85,_0x5b124e,_0x4d0382,_0x1cd392){const _0x24d37f=_0x572182,_0x1cec0c=Object[_0x24d37f(0xab)](_0xe3de85)['map'](Number)[_0x24d37f(0x14f)]((_0x35c357,_0x5164b3)=>_0x35c357-_0x5164b3);if(_0x1cd392<0x0)for(const _0x50edff of _0x1cec0c){const _0x496243=_0xe3de85[_0x50edff];for(let _0x309d6f=_0x5b124e;_0x309d6f<_0x5b124e+_0x4d0382;_0x309d6f++)_0x496243[_0x24d37f(0x185)](_0x309d6f)?(_0x496243[_0x309d6f+_0x1cd392]=_0x496243[_0x309d6f],delete _0x496243[_0x309d6f]):delete _0x496243[_0x309d6f+_0x1cd392];}else for(const _0x5a2bda of _0x1cec0c){const _0x417199=_0xe3de85[_0x5a2bda];for(let _0x3810d2=_0x5b124e+_0x4d0382-0x1;_0x3810d2>=_0x5b124e;_0x3810d2--)_0x417199[_0x24d37f(0x185)](_0x3810d2)?(_0x417199[_0x3810d2+_0x1cd392]=_0x417199[_0x3810d2],delete _0x417199[_0x3810d2]):delete _0x417199[_0x3810d2+_0x1cd392];}}function ee(_0x581986,_0x567457){const _0x148541=_0x572182;return new _0x252072()['add'](_0x581986)['subtract'](..._0x567457)[_0x148541(0x127)]();}function dt(_0x314060,_0x521231,_0x4b254c,_0x2863de){const _0x2a6671=_0x572182,_0x550293=new _0x3ccc0f()[_0x2a6671(0x144)](_0x4b254c);if(_0x550293==null)return _0x4b254c;const _0xc165e5=[];for(let _0x1a6071=0x0,_0x2739b7=_0x550293['length'];_0x1a6071<_0x2739b7;_0x1a6071++){const _0x57247b=_0x550293[_0x1a6071];if(typeof _0x57247b==_0x2a6671(0xa6)||_0x57247b['nodeType']!==_0x329dfa['REFERENCE']){_0xc165e5[_0x2a6671(0x1ca)](_0x57247b);continue;}const {token:_0x115746}=_0x57247b,_0x5b0ce2=_0x15fb8c(_0x115746),{range:_0x3cbd3c,sheetName:_0x25cf3d,unitId:_0x2d89fe}=_0x5b0ce2;if((_0x314060===_0x2d89fe||_0x2d89fe==='')&&(_0x521231===_0x25cf3d||_0x25cf3d==='')){const _0x4f835b=_0x2863de(_0x3cbd3c),_0x54826f=_0x4f835b?_0x35dead({'range':_0x4f835b,'sheetName':_0x25cf3d,'unitId':_0x2d89fe}):_0x5c62ee['ERROR'];_0xc165e5[_0x2a6671(0x1ca)]({..._0x57247b,'token':_0x54826f});}else _0xc165e5[_0x2a6671(0x1ca)](_0x57247b);}return'='+_0x50f8e7(_0xc165e5);}function H(_0x59bd1b,_0x343a1e){const _0x14c682=_0x572182;return _0x59bd1b[_0x14c682(0xa5)]<=_0x343a1e['end']&&_0x59bd1b['end']>=_0x343a1e[_0x14c682(0xa5)];}function Te(_0x13ea45,_0xf8ff8a){const _0x5af745=_0x572182;return _0x13ea45[_0x5af745(0xa5)]<=_0xf8ff8a[_0x5af745(0xa5)]&&_0x13ea45[_0x5af745(0x1c4)]>=_0xf8ff8a['end'];}function Ue(_0x5edcbe,_0x4f1314){let _0x253ded=[_0x5edcbe];for(const _0x5c1fc0 of _0x4f1314){const _0xeee277=[];for(const _0x36365c of _0x253ded)_0xeee277['push'](...Xn(_0x36365c,_0x5c1fc0));_0x253ded=_0xeee277;}return _0x253ded;}function _0x2b5d(_0xd147b8,_0x1fb142){const _0x16907c=_0x1690();return _0x2b5d=function(_0x2b5da4,_0x352e56){_0x2b5da4=_0x2b5da4-0x7a;let _0xda4ce0=_0x16907c[_0x2b5da4];return _0xda4ce0;},_0x2b5d(_0xd147b8,_0x1fb142);}function Xn(_0x41c5d5,_0x5d120b){const _0x444505=_0x572182,_0x49ceed=[];if(Te(_0x5d120b,_0x41c5d5))return _0x49ceed;if(Te(_0x41c5d5,_0x5d120b)){const _0x2cfd1b=_0x41c5d5[_0x444505(0xa5)],_0x164990=_0x5d120b[_0x444505(0xa5)]-0x1,_0x5a8672=_0x5d120b[_0x444505(0x1c4)]+0x1,_0x4a2821=_0x41c5d5[_0x444505(0x1c4)];return _0x2cfd1b<=_0x164990&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x2cfd1b,'end':_0x164990}),_0x5a8672<=_0x4a2821&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x5a8672,'end':_0x4a2821}),_0x49ceed;}return H(_0x41c5d5,_0x5d120b)?(_0x41c5d5[_0x444505(0xa5)]<_0x5d120b[_0x444505(0xa5)]&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x41c5d5['start'],'end':_0x5d120b[_0x444505(0xa5)]-0x1}),_0x41c5d5[_0x444505(0x1c4)]>_0x5d120b[_0x444505(0x1c4)]&&_0x49ceed[_0x444505(0x1ca)]({'start':_0x5d120b[_0x444505(0x1c4)]+0x1,'end':_0x41c5d5['end']}),_0x49ceed):[_0x41c5d5];}function be(_0x1f8d48,_0x50990e){const _0x57aca7=_0x572182,_0x2871a9={'startColumn':_0x1f8d48[_0x57aca7(0xa5)],'endColumn':_0x1f8d48[_0x57aca7(0x1c4)],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x57aca7(0x1ff)]},_0x9178da={'startColumn':_0x50990e[_0x57aca7(0xa5)],'endColumn':_0x50990e[_0x57aca7(0x1c4)],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x57aca7(0x1ff)]},_0xd56d3=_0x44a143(_0x2871a9,_0x9178da);return{'start':_0x50990e['start']+_0xd56d3[_0x57aca7(0xc3)],'end':_0x50990e[_0x57aca7(0x1c4)]+_0xd56d3[_0x57aca7(0xc3)]+_0xd56d3[_0x57aca7(0xf6)]};}function Me(_0xd0c35e,_0xa253af){const _0x3e1f5a=_0x572182,_0x186a8e={'startColumn':_0xd0c35e['start'],'endColumn':_0xd0c35e['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x3e1f5a(0x1ff)]},_0x3396ce={'startColumn':_0xa253af[_0x3e1f5a(0xa5)],'endColumn':_0xa253af['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x3e1f4a[_0x3e1f5a(0x1ff)]},_0x37a97a=_0x180da6(_0x186a8e,_0x3396ce);return _0x37a97a===null?null:{'start':_0xa253af['start']+_0x37a97a['step'],'end':_0xa253af[_0x3e1f5a(0x1c4)]+_0x37a97a[_0x3e1f5a(0xc3)]+_0x37a97a[_0x3e1f5a(0xf6)]};}function Tt(_0x1f4a59,_0x390361){const _0x53bf77=_0x572182,{unitId:_0xb39c95,subUnitId:_0x149d96}=_0x1f4a59[_0x53bf77(0x8d)],_0x4d796e=_0x186f21=>dt(_0xb39c95,_0x149d96,_0x186f21,_0x35c61b=>_0x8e6890(_0x35c61b,_0x390361)),_0x3aad8d=[],_0x5b72e9=_0x420b9c=>{const _0x4600b6=_0x53bf77;var _0x2fabee,_0x5432ed;const _0xd7d549=_0x420b9c['uid'],_0x4771a4=_0x420b9c[_0x4600b6(0xd1)][_0x4600b6(0x1e0)](_0x17a424=>_0x44a031(_0x17a424,_0x390361)),_0x23ed31=(_0x2fabee=_0x420b9c['formula1'])!=null?_0x2fabee:'',_0x58cd41=(_0x5432ed=_0x420b9c['formula2'])!=null?_0x5432ed:'';let _0x20a067=_0x23ed31,_0x417771=_0x58cd41;_0x20a3db(_0x23ed31)&&(_0x20a067=_0x4d796e(_0x23ed31)),_0x20a3db(_0x58cd41)&&(_0x417771=_0x4d796e(_0x58cd41)),(_0x20a067!==_0x23ed31||_0x417771!==_0x58cd41)&&_0x3aad8d['push']({'id':_0x4e1baf['id'],'params':{'unitId':_0xb39c95,'subUnitId':_0x149d96,'ruleId':_0xd7d549,'payload':{'type':_0x4e3a21[_0x4600b6(0xbe)],'payload':{'type':_0x420b9c[_0x4600b6(0x120)],'formula1':_0x20a067,'formula2':_0x417771}}}});const _0x130c25=_0x4771a4[_0x4600b6(0x13b)]()[_0x4600b6(0x9f)](Boolean);_0x592f19(_0x420b9c[_0x4600b6(0xd1)],_0x130c25)||_0x3aad8d['push']({'id':_0x4e1baf['id'],'params':{'unitId':_0xb39c95,'subUnitId':_0x149d96,'ruleId':_0xd7d549,'payload':{'type':_0x4e3a21[_0x4600b6(0x94)],'payload':_0x130c25}}});};return Array[_0x53bf77(0x16c)](_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)])?_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)][_0x53bf77(0xc5)](_0x41cc85=>_0x5b72e9(_0x41cc85)):_0x5b72e9(_0x1f4a59[_0x53bf77(0x8d)][_0x53bf77(0xea)]),_0x3aad8d;}const Kn={'m1':_0x31c10b['id'],'m2':_0x3bedd8['id'],'handler'(_0x219a72,_0x4b37bf){const _0x2f9e32=_0x572182,_0x2f2209={'m1Prime':_0x219a72,'m2Prime':_0x4b37bf};if(_0x219a72['params']['unitId']!==_0x4b37bf[_0x2f9e32(0x8d)][_0x2f9e32(0xdb)]||_0x219a72[_0x2f9e32(0x8d)]['subUnitId']!==_0x4b37bf[_0x2f9e32(0x8d)][_0x2f9e32(0x20b)])return _0x2f2209;const _0xf6bfa9={'id':_0x563de0['id'],'params':{'fromRange':_0x219a72[_0x2f9e32(0x8d)][_0x2f9e32(0x11d)],'toRange':_0x219a72[_0x2f9e32(0x8d)][_0x2f9e32(0x1d0)]}},_0x1b38bb=Tt(_0x4b37bf,_0xf6bfa9);return{'m1Prime':[_0x219a72,..._0x1b38bb],'m2Prime':[_0x4b37bf,..._0x1b38bb]};}},zn={'m1':_0x541ec4['id'],'m2':_0x3bedd8['id'],'handler'(_0x45ee04,_0x17452e){const _0x226ab9=_0x572182,_0x56b899={'m1Prime':_0x45ee04,'m2Prime':_0x17452e};if(_0x45ee04['params']['unitId']!==_0x17452e[_0x226ab9(0x8d)][_0x226ab9(0xdb)]||_0x45ee04[_0x226ab9(0x8d)][_0x226ab9(0x20b)]!==_0x17452e[_0x226ab9(0x8d)][_0x226ab9(0x20b)])return _0x56b899;const _0x3b6ba7={'id':_0x172802['id'],'params':{'unitId':_0x45ee04['params']['unitId'],'subUnitId':_0x45ee04['params'][_0x226ab9(0x20b)],'range':_0x45ee04[_0x226ab9(0x8d)]['range']}},_0x451a6b=Tt(_0x17452e,_0x3b6ba7);return{'m1Prime':[_0x45ee04,..._0x451a6b],'m2Prime':[_0x17452e,..._0x451a6b]};}},qn={'m1':_0x541ec4['id'],'m2':_0x4b0a3e['id'],'handler'(_0x26091a,_0x2c0f70){const _0x39748d=_0x572182,_0x30eae1=rr[_0x39748d(0xcd)](_0x2c0f70,_0x26091a);return at(_0x30eae1)?{'m1Prime':_0x30eae1[_0x39748d(0xcf)],'m2Prime':_0x30eae1[_0x39748d(0x119)]}:_0x30eae1;}},Zn={'m1':_0x541ec4['id'],'m2':_0x541ec4['id'],'handler'(_0x59e750,_0x4ee284){const _0x368d97=_0x572182,_0x1ff6e6={'m1Prime':_0x59e750,'m2Prime':_0x4ee284};if(_0x59e750['params'][_0x368d97(0xdb)]!==_0x4ee284[_0x368d97(0x8d)][_0x368d97(0xdb)]||_0x59e750['params']['subUnitId']!==_0x4ee284[_0x368d97(0x8d)]['subUnitId'])return _0x1ff6e6;const _0x525bc2=_0x570d2f['deepClone'](_0x59e750),_0x4a838c=_0x570d2f[_0x368d97(0xb4)](_0x4ee284),_0x2183e7=_0x44a143(h(_0x59e750[_0x368d97(0x8d)][_0x368d97(0x19f)]),h(_0x4ee284[_0x368d97(0x8d)][_0x368d97(0x19f)]));if(_0x2183e7?(_0x4a838c[_0x368d97(0x8d)][_0x368d97(0x19f)]['startColumn']+=_0x2183e7[_0x368d97(0xc3)],_0x4a838c[_0x368d97(0x8d)][_0x368d97(0x19f)][_0x368d97(0x9d)]+=_0x2183e7['step']+(_0x2183e7['length']||0x0)):_0x4a838c['id']=_0x1a62da['id'],_0x59e750['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]!==_0x4ee284['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]){const _0x214d61=_0x44a143(h(_0x4ee284[_0x368d97(0x8d)][_0x368d97(0x19f)]),h(_0x59e750[_0x368d97(0x8d)]['range']));_0x214d61?(_0x525bc2['params'][_0x368d97(0x19f)][_0x368d97(0x15a)]+=_0x214d61[_0x368d97(0xc3)],_0x525bc2[_0x368d97(0x8d)][_0x368d97(0x19f)][_0x368d97(0x9d)]+=_0x214d61['step']+(_0x214d61[_0x368d97(0xf6)]||0x0)):_0x525bc2['id']=_0x1a62da['id'];}return{'m1Prime':_0x525bc2,'m2Prime':_0x4a838c};}},Qn={'m1':_0x541ec4['id'],'m2':_0x31c10b['id'],'handler'(_0xa7102b,_0x18f546){const _0x1147fc=_0x572182,_0x29e2be={'m1Prime':_0xa7102b,'m2Prime':_0x18f546};if(_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0xdb)]!==_0x18f546['params']['unitId']||_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x20b)]!==_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x20b)])return _0x29e2be;const _0xff9ad6=_0x570d2f[_0x1147fc(0xb4)](_0xa7102b),_0x6b27c3=_0x570d2f[_0x1147fc(0xb4)](_0x18f546),_0x20c2f4=_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x11d)],_0x2dd4fc=_0x18f546[_0x1147fc(0x8d)][_0x1147fc(0x1d0)];if(_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]>_0x20c2f4[_0x1147fc(0x15a)]&&_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]<=_0x20c2f4['endColumn']||_0xa7102b[_0x1147fc(0x8d)]['range'][_0x1147fc(0x15a)]>_0x2dd4fc[_0x1147fc(0x15a)]&&_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]<=_0x2dd4fc['endColumn'])return{'error':new Error(_0x1147fc(0x1b6))};const _0x34984f=_0x44a143(h(_0xa7102b['params']['range']),h(_0x20c2f4)),_0x511868=_0x44a143(h(_0xa7102b['params'][_0x1147fc(0x19f)]),h(_0x2dd4fc));if(_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x11d)][_0x1147fc(0x15a)]+=_0x34984f[_0x1147fc(0xc3)],_0x6b27c3[_0x1147fc(0x8d)]['sourceRange'][_0x1147fc(0x9d)]+=_0x34984f[_0x1147fc(0xc3)]+(_0x34984f[_0x1147fc(0xf6)]||0x0),_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x1d0)]['startColumn']+=_0x511868[_0x1147fc(0xc3)],_0x6b27c3[_0x1147fc(0x8d)][_0x1147fc(0x1d0)][_0x1147fc(0x9d)]+=_0x511868[_0x1147fc(0xc3)]+(_0x511868[_0x1147fc(0xf6)]||0x0),_0x20c2f4[_0x1147fc(0x15a)]>=_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]&&_0x2dd4fc['startColumn']<_0xa7102b[_0x1147fc(0x8d)]['range']['startColumn']){const _0x12b296=_0x2dd4fc['endColumn']-_0x2dd4fc[_0x1147fc(0x15a)]+0x1;_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]+=_0x12b296,_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x9d)]+=_0x12b296;}else{if(_0x20c2f4[_0x1147fc(0x9d)]<_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]&&_0x2dd4fc[_0x1147fc(0x15a)]>=_0xa7102b[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]){const _0x2c85bc=_0x20c2f4[_0x1147fc(0x9d)]-_0x20c2f4[_0x1147fc(0x15a)]+0x1;_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x15a)]-=_0x2c85bc,_0xff9ad6[_0x1147fc(0x8d)][_0x1147fc(0x19f)][_0x1147fc(0x9d)]-=_0x2c85bc;}}return{'m1Prime':_0xff9ad6,'m2Prime':_0x6b27c3};}},ta={'m1':_0x541ec4['id'],'m2':_0x43f1cd['id'],'handler'(_0x127054,_0x3863e0){const _0x3c29fa=_0x572182,_0x2839cc={'m1Prime':_0x127054,'m2Prime':_0x3863e0};if(_0x127054[_0x3c29fa(0x8d)]['unitId']!==_0x3863e0['params']['unitId']||_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]!==_0x3863e0['params'][_0x3c29fa(0x1b0)][_0x3c29fa(0x20b)]&&_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]!==_0x3863e0[_0x3c29fa(0x8d)]['to']['subUnitId'])return _0x2839cc;const _0x3415b8=_0x570d2f[_0x3c29fa(0xb4)](_0x127054),_0x380bbc=_0x570d2f[_0x3c29fa(0xb4)](_0x3863e0);if(_0x127054[_0x3c29fa(0x8d)]['subUnitId']===_0x3863e0[_0x3c29fa(0x8d)]['from'][_0x3c29fa(0x20b)]){const _0x7f6e1f=new _0x1f7bb9(_0x380bbc[_0x3c29fa(0x8d)][_0x3c29fa(0x1b0)]['value'])[_0x3c29fa(0x182)](),{startColumn:_0x4f543d,endColumn:_0x3aa2da}=_0x7f6e1f,{startColumn:_0x2eaab1,endColumn:_0x450d35}=_0x127054['params'][_0x3c29fa(0x19f)],{step:_0x1773b2,length:_0x3a6c3b}=_0x44a143(_0x127054['params'][_0x3c29fa(0x19f)],_0x7f6e1f);_0x1773b2>0x0&&_0x3a6c3b===0x0&&Rt(_0x380bbc['params'][_0x3c29fa(0x1b0)][_0x3c29fa(0x17e)],_0x4f543d,_0x3aa2da-_0x4f543d+0x1,_0x1773b2),_0x1773b2===0x0&&_0x3a6c3b>0x0&&Rt(_0x380bbc[_0x3c29fa(0x8d)][_0x3c29fa(0x1b0)][_0x3c29fa(0x17e)],_0x2eaab1,_0x3aa2da-_0x2eaab1+0x1,_0x450d35-_0x2eaab1+0x1);}if(_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x20b)]===_0x3863e0[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x20b)]){const _0x4d5c44=new _0x1f7bb9(_0x380bbc[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x17e)])['getDataRange'](),{startColumn:_0x40d890,endColumn:_0x3d64fe}=_0x4d5c44,{startColumn:_0x99ff15,endColumn:_0x329e77}=_0x127054[_0x3c29fa(0x8d)][_0x3c29fa(0x19f)],{step:_0x4900e9,length:_0x393b51}=_0x44a143(_0x127054['params']['range'],_0x4d5c44);_0x4900e9>0x0&&_0x393b51===0x0&&Rt(_0x380bbc['params']['to'][_0x3c29fa(0x17e)],_0x40d890,_0x3d64fe-_0x40d890+0x1,_0x4900e9),_0x4900e9===0x0&&_0x393b51>0x0&&Rt(_0x380bbc[_0x3c29fa(0x8d)]['to'][_0x3c29fa(0x17e)],_0x99ff15,_0x3d64fe-_0x99ff15+0x1,_0x329e77-_0x99ff15+0x1);}return{'m1Prime':_0x3415b8,'m2Prime':_0x380bbc};}},ea={'m1':_0x541ec4['id'],'m2':_0xe5c4bd['id'],'handler'(_0x5f41cb,_0x1a9b67){const _0x3db00d=_0x572182,_0x49c65d={'m1Prime':_0x5f41cb,'m2Prime':_0x1a9b67};if(_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0xdb)]!==_0x1a9b67[_0x3db00d(0x8d)]['unitId']||_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0x20b)]!==_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x20b)])return _0x49c65d;const _0x148a7e=_0x570d2f[_0x3db00d(0xb4)](_0x5f41cb),_0x111f7c=_0x570d2f[_0x3db00d(0xb4)](_0x1a9b67);if(_0x5f41cb[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)]<=_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x9d)]&&_0x5f41cb['params'][_0x3db00d(0x19f)][_0x3db00d(0x15a)]>_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)])return{'error':new Error(_0x3db00d(0x130))};const _0x2d9925=_0x44a143(h(_0x5f41cb[_0x3db00d(0x8d)]['range']),h(_0x1a9b67[_0x3db00d(0x8d)][_0x3db00d(0x19f)]));_0x2d9925?(_0x111f7c[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x15a)]+=_0x2d9925[_0x3db00d(0xc3)],_0x111f7c[_0x3db00d(0x8d)][_0x3db00d(0x19f)][_0x3db00d(0x9d)]+=_0x2d9925[_0x3db00d(0xc3)]+(_0x2d9925[_0x3db00d(0xf6)]||0x0)):_0x111f7c['id']=_0x1a62da['id'];const _0xa4c8a1=_0x180da6(h(_0x1a9b67['params']['range']),h(_0x5f41cb['params'][_0x3db00d(0x19f)]));return _0xa4c8a1&&(_0x148a7e[_0x3db00d(0x8d)]['range'][_0x3db00d(0x15a)]+=_0xa4c8a1[_0x3db00d(0xc3)],_0x148a7e['params'][_0x3db00d(0x19f)]['endColumn']+=_0xa4c8a1[_0x3db00d(0xc3)]+(_0xa4c8a1[_0x3db00d(0xf6)]||0x0)),{'m1Prime':_0x148a7e,'m2Prime':_0x111f7c};}},ra={'m1':_0x541ec4['id'],'m2':_0x3dcda7['id'],'handler'(_0x40d7b0,_0x4bffd0){const _0xc6e86a=_0x572182,_0xe039a7={'m1Prime':_0x40d7b0,'m2Prime':_0x4bffd0};if(_0x40d7b0[_0xc6e86a(0x8d)]['unitId']!==_0x4bffd0[_0xc6e86a(0x8d)][_0xc6e86a(0xdb)]||_0x40d7b0['params'][_0xc6e86a(0x20b)]!==_0x4bffd0[_0xc6e86a(0x8d)][_0xc6e86a(0x20b)])return _0xe039a7;const _0x4c346c=_0x570d2f[_0xc6e86a(0xb4)](_0x40d7b0),_0x4683a1=_0x570d2f[_0xc6e86a(0xb4)](_0x4bffd0),{ranges:_0x214202}=_0x4683a1[_0xc6e86a(0x8d)];return _0x214202[_0xc6e86a(0xaf)](_0x2d005e=>{const _0x181d05=_0xc6e86a,_0x35404a=_0x44a143(h(_0x40d7b0[_0x181d05(0x8d)][_0x181d05(0x19f)]),h(_0x2d005e));return _0x35404a['length']!==0x0?!0x0:(_0x2d005e[_0x181d05(0x15a)]+=_0x35404a[_0x181d05(0xc3)],_0x2d005e[_0x181d05(0x9d)]+=_0x35404a[_0x181d05(0xc3)],!0x1);})?{'error':new Error(_0xc6e86a(0xb3))}:{'m1Prime':_0x4c346c,'m2Prime':_0x4683a1};}},na={'m1':_0x541ec4['id'],'m2':_0x3c47fd['id'],'handler'(_0x2d5629,_0x4bfb00){const _0x37821d=_0x572182,_0x2d0f87=_0x570d2f[_0x37821d(0xb4)](_0x2d5629),_0x5e6897=_0x570d2f[_0x37821d(0xb4)](_0x4bfb00);if(_0x2d5629[_0x37821d(0x8d)][_0x37821d(0xdb)]!==_0x4bfb00[_0x37821d(0x8d)]['unitId']||_0x2d5629[_0x37821d(0x8d)][_0x37821d(0x20b)]!==_0x4bfb00[_0x37821d(0x8d)][_0x37821d(0x20b)])return{'m1Prime':_0x2d0f87,'m2Prime':_0x5e6897};const _0x3f4643=_0x5e6897['params'][_0x37821d(0xd1)][_0x37821d(0x1e0)](_0x1d7455=>{const _0x93b1bc=_0x37821d,_0x355189=_0x2d0f87[_0x93b1bc(0x8d)][_0x93b1bc(0x19f)],_0x175e5b=_0x355189[_0x93b1bc(0x9d)]-_0x355189[_0x93b1bc(0x15a)]+0x1;return _0x355189[_0x93b1bc(0x15a)]<=_0x1d7455['startColumn']?{..._0x1d7455,'startColumn':_0x1d7455[_0x93b1bc(0x15a)]+_0x175e5b,'endColumn':_0x1d7455[_0x93b1bc(0x9d)]+_0x175e5b}:_0x355189[_0x93b1bc(0x15a)]>_0x1d7455[_0x93b1bc(0x15a)]&&_0x355189[_0x93b1bc(0x15a)]<=_0x1d7455[_0x93b1bc(0x9d)]?{..._0x1d7455,'endColumn':_0x1d7455['endColumn']+_0x175e5b}:{..._0x1d7455};});return _0x5e6897[_0x37821d(0x8d)][_0x37821d(0xd1)]=_0x3f4643,{'m1Prime':_0x2d0f87,'m2Prime':_0x5e6897};}},aa={'m1':_0x541ec4['id'],'m2':_0x587c63['id'],'handler'(_0x15dd46,_0x439313){const _0x5bd50c=_0x572182,_0x1dc3e7={'m1Prime':_0x15dd46,'m2Prime':_0x439313};if(_0x15dd46[_0x5bd50c(0x8d)]['unitId']!==_0x439313['params']['unitId']||_0x15dd46[_0x5bd50c(0x8d)][_0x5bd50c(0x20b)]!==_0x439313['params'][_0x5bd50c(0x20b)])return _0x1dc3e7;const _0x34b500=_0x570d2f[_0x5bd50c(0xb4)](_0x439313),_0x36bffc=_0x44a143(h(_0x15dd46[_0x5bd50c(0x8d)]['range']),h(_0x439313[_0x5bd50c(0x8d)]['range']));return _0x34b500[_0x5bd50c(0x8d)][_0x5bd50c(0x19f)][_0x5bd50c(0x15a)]+=_0x36bffc['step'],_0x34b500['params'][_0x5bd50c(0x19f)][_0x5bd50c(0x9d)]+=_0x36bffc[_0x5bd50c(0xc3)]+(_0x36bffc[_0x5bd50c(0xf6)]||0x0),{'m1Prime':_0x15dd46,'m2Prime':_0x34b500};}},sa={'m1':_0x541ec4['id'],'m2':_0x35fae0['id'],'handler'(_0x534405,_0x5c54b5){const _0x8d1e99=_0x572182,_0x90d7d9={'m1Prime':_0x534405,'m2Prime':_0x5c54b5};if(_0x534405[_0x8d1e99(0x8d)]['unitId']!==_0x5c54b5[_0x8d1e99(0x8d)][_0x8d1e99(0xdb)]||_0x534405['params']['subUnitId']!==_0x5c54b5[_0x8d1e99(0x8d)][_0x8d1e99(0x20b)])return _0x90d7d9;const _0x1da115=_0x570d2f[_0x8d1e99(0xb4)](_0x534405),_0x3a5640=_0x570d2f[_0x8d1e99(0xb4)](_0x5c54b5),{columnData:_0x59a561}=_0x3a5640['params'];for(let _0x229746=_0x534405[_0x8d1e99(0x8d)]['range'][_0x8d1e99(0x15a)];_0x229746<=_0x534405['params'][_0x8d1e99(0x19f)]['endColumn'];_0x229746++)_0x4a2d3e(_0x229746,void 0x0,_0x59a561);return{'m1Prime':_0x1da115,'m2Prime':_0x3a5640};}},oa={'m1':_0x541ec4['id'],'m2':_0x519e99['id'],'handler'(_0x55ccae,_0x3ebc5b){const _0x2d46af=_0x572182,_0x52a1e7={'m1Prime':_0x55ccae,'m2Prime':_0x3ebc5b};if(_0x55ccae[_0x2d46af(0x8d)][_0x2d46af(0xdb)]!==_0x3ebc5b[_0x2d46af(0x8d)][_0x2d46af(0xdb)]||_0x55ccae['params']['subUnitId']!==_0x3ebc5b[_0x2d46af(0x8d)][_0x2d46af(0x20b)])return _0x52a1e7;const _0x3c8c88=_0x570d2f[_0x2d46af(0xb4)](_0x55ccae),_0x51059b=_0x570d2f[_0x2d46af(0xb4)](_0x3ebc5b),{ranges:_0x1b87c6}=_0x51059b[_0x2d46af(0x8d)];return _0x1b87c6[_0x2d46af(0xaf)](_0x505fad=>{const _0x428852=_0x2d46af,_0xd4ec67=_0x44a143(h(_0x55ccae['params'][_0x428852(0x19f)]),_0x505fad);return _0xd4ec67['length']!==0x0?!0x0:(_0x505fad[_0x428852(0x15a)]+=_0xd4ec67[_0x428852(0xc3)],_0x505fad['endColumn']+=_0xd4ec67[_0x428852(0xc3)],!0x1);})?{'error':new Error(_0x2d46af(0x1c8))}:{'m1Prime':_0x3c8c88,'m2Prime':_0x51059b};}},ia={'m1':_0x541ec4['id'],'m2':_0x20806c['id'],'handler'(_0x135571,_0x5931ad){const _0x19af56=_0x572182,_0x163ab5={'m1Prime':_0x135571,'m2Prime':_0x5931ad};if(_0x135571[_0x19af56(0x8d)][_0x19af56(0xdb)]!==_0x5931ad[_0x19af56(0x8d)][_0x19af56(0xdb)]||_0x135571[_0x19af56(0x8d)]['subUnitId']!==_0x5931ad['params']['subUnitId'])return _0x163ab5;const _0x37f4f4=_0x570d2f['deepClone'](_0x135571),_0x16f119=_0x570d2f[_0x19af56(0xb4)](_0x5931ad),{ranges:_0x79f0fc}=_0x16f119[_0x19af56(0x8d)];return _0x79f0fc[_0x19af56(0xaf)](_0x49fbf6=>{const _0x3bdc95=_0x19af56,_0x28623d=_0x44a143(h(_0x135571[_0x3bdc95(0x8d)][_0x3bdc95(0x19f)]),_0x49fbf6);return _0x28623d[_0x3bdc95(0xf6)]!==0x0?!0x0:(_0x49fbf6[_0x3bdc95(0x15a)]+=_0x28623d[_0x3bdc95(0xc3)],_0x49fbf6[_0x3bdc95(0x9d)]+=_0x28623d[_0x3bdc95(0xc3)],!0x1);})?{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible')}:{'m1Prime':_0x37f4f4,'m2Prime':_0x16f119};}},da={'m1':_0x541ec4['id'],'m2':_0x4075e['id'],'handler'(_0x40584b,_0xef2424){const _0x264458=_0x572182,_0x577b16={'m1Prime':_0x40584b,'m2Prime':_0xef2424};if(_0x40584b[_0x264458(0x8d)]['unitId']!==_0xef2424['params']['unitId']||_0x40584b[_0x264458(0x8d)]['subUnitId']!==_0xef2424[_0x264458(0x8d)][_0x264458(0x20b)])return _0x577b16;const _0x1415b1=[_0x570d2f[_0x264458(0xb4)](_0x40584b)],_0xaec688=_0x570d2f[_0x264458(0xb4)](_0xef2424),{values:_0xa7c09a}=_0xaec688[_0x264458(0x8d)],_0x123b22=[];let _0x5070d3=!0x1;for(const _0x4ead23 in _0xa7c09a){const _0x443716=_0xa7c09a[_0x4ead23];if(_0x123b22[_0x264458(0x1ca)](..._0x443716[_0x264458(0xd1)]),_0x443716[_0x264458(0xd1)][_0x264458(0xaf)](_0x586956=>{const _0x19c52a=_0x264458,_0x170f1b=_0x44a143(h(_0x40584b[_0x19c52a(0x8d)]['range']),h(_0x586956));return _0x170f1b[_0x19c52a(0xf6)]!==0x0?!0x0:(_0x170f1b[_0x19c52a(0xc3)]!==0x0&&(_0x5070d3=!0x0),_0x586956[_0x19c52a(0x15a)]+=_0x170f1b[_0x19c52a(0xc3)],_0x586956['endColumn']+=_0x170f1b[_0x19c52a(0xc3)],!0x1);}))return{'error':new Error(_0x264458(0x115))};}if(_0x5070d3){const _0x1980db={'id':_0x3dcda7['id'],'params':{'unitId':_0xef2424[_0x264458(0x8d)][_0x264458(0xdb)],'subUnitId':_0xef2424[_0x264458(0x8d)][_0x264458(0x20b)],'ranges':_0x123b22}};_0x1415b1['push'](_0x1980db,_0xaec688);}return{'m1Prime':_0x1415b1,'m2Prime':_0xaec688};}},ma={'m1':_0x541ec4['id'],'m2':_0x15eb0a['id'],'handler'(_0x2d58fb,_0x4bfc7d){const _0x14dd60=_0x572182,_0x52ea07={'m1Prime':_0x2d58fb,'m2Prime':_0x4bfc7d};if(_0x2d58fb[_0x14dd60(0x8d)][_0x14dd60(0xdb)]!==_0x4bfc7d[_0x14dd60(0x8d)][_0x14dd60(0xdb)]||_0x2d58fb[_0x14dd60(0x8d)][_0x14dd60(0x20b)]!==_0x4bfc7d['params'][_0x14dd60(0x20b)])return _0x52ea07;const _0x1a382d=[_0x570d2f[_0x14dd60(0xb4)](_0x2d58fb)],_0x490648=_0x570d2f[_0x14dd60(0xb4)](_0x4bfc7d),_0x1f764d=new _0x1f7bb9(_0x490648['params'][_0x14dd60(0x208)]),_0x45158a=_0x1f764d[_0x14dd60(0x182)](),_0x508760=_0x2d58fb[_0x14dd60(0x8d)]['range'],_0x4128bf=_0x508760['endColumn']-_0x508760[_0x14dd60(0x15a)]+0x1;if(_0x490648[_0x14dd60(0x8d)][_0x14dd60(0x208)]&&_0x508760[_0x14dd60(0x15a)]<=_0x45158a[_0x14dd60(0x9d)]){const _0x1b1778=Math[_0x14dd60(0xed)](_0x45158a[_0x14dd60(0x15a)],_0x508760[_0x14dd60(0x15a)]);Rt(_0x490648[_0x14dd60(0x8d)][_0x14dd60(0x208)],_0x1b1778,_0x45158a[_0x14dd60(0x9d)]-_0x1b1778+0x1,_0x4128bf);}const _0x9beb17=new _0x1f7bb9();let _0x3c0173=!0x1;if(_0x1f764d['forValue']((_0x4ba699,_0xbc4fa7,_0x1dd66b)=>{const _0x14acf0=_0x14dd60;if(_0x1dd66b&&_0x1dd66b['f']){const _0x3028d7=_0x1dd66b['f'];let _0x2bb7c6=!0x1;const _0x4a9e98=dt(_0x2d58fb[_0x14acf0(0x8d)][_0x14acf0(0xdb)],_0x2d58fb[_0x14acf0(0x8d)][_0x14acf0(0x20b)],_0x3028d7,_0x5d7587=>{const _0x518603=_0x14acf0,_0x3b5cf5=_0x44a143(h(_0x2d58fb[_0x518603(0x8d)][_0x518603(0x19f)]),h(_0x5d7587));return(_0x3b5cf5[_0x518603(0xc3)]!==0x0||_0x3b5cf5[_0x518603(0xf6)]!==0x0)&&(_0x2bb7c6=!0x0,_0x5d7587[_0x518603(0x15a)]+=_0x3b5cf5[_0x518603(0xc3)],_0x5d7587[_0x518603(0x9d)]+=_0x3b5cf5[_0x518603(0xc3)]+_0x3b5cf5[_0x518603(0xf6)]),_0x5d7587;});_0x2bb7c6&&(_0x3c0173=!0x0,_0x1dd66b['f']=_0x4a9e98,_0x9beb17['setValue'](_0x4ba699,_0xbc4fa7,{..._0x1dd66b}));}}),_0x3c0173){const _0x240399={'id':_0x15eb0a['id'],'params':{'unitId':_0x4bfc7d['params'][_0x14dd60(0xdb)],'subUnitId':_0x4bfc7d['params'][_0x14dd60(0x20b)],'cellValue':_0x9beb17[_0x14dd60(0x16a)]()}};_0x1a382d[_0x14dd60(0x1ca)](_0x240399);}return{'m1Prime':_0x1a382d,'m2Prime':_0x490648};}},ua={'m1':_0x541ec4['id'],'m2':_0x23969e['id'],'handler'(_0xdd95f,_0x53bc42){const _0x31cc54=_0x572182,_0x51a504={'m1Prime':[],'m2Prime':[]};if(_0xdd95f[_0x31cc54(0x8d)][_0x31cc54(0xdb)]!==_0x53bc42[_0x31cc54(0x8d)][_0x31cc54(0xdb)]||_0xdd95f[_0x31cc54(0x8d)][_0x31cc54(0x20b)]!==_0x53bc42[_0x31cc54(0x8d)]['subUnitId'])return _0x51a504;const _0x2e21da=_0x570d2f['deepClone'](_0x53bc42);let _0x5e1d2b=!0x1;return _0x2e21da[_0x31cc54(0x8d)]['selections']['forEach'](_0x2dda8c=>{const _0x348af9=_0x31cc54,{range:_0xb4f3a5,primary:_0x1a4395}=_0x2dda8c,_0x4ad137=_0x44a143(h(_0xdd95f[_0x348af9(0x8d)][_0x348af9(0x19f)]),h(_0xb4f3a5));if(_0x4ad137[_0x348af9(0xf6)]||_0x4ad137['step']){if(_0xb4f3a5[_0x348af9(0x15a)]+=_0x4ad137[_0x348af9(0xc3)],_0xb4f3a5[_0x348af9(0x9d)]+=_0x4ad137['step']+(_0x4ad137['length']||0x0),_0x1a4395){const _0x4330d0=_0x44a143(h(_0xdd95f[_0x348af9(0x8d)][_0x348af9(0x19f)]),h(_0x1a4395));(_0x4330d0['length']||_0x4330d0[_0x348af9(0xc3)])&&(_0x1a4395[_0x348af9(0x15a)]+=_0x4330d0[_0x348af9(0xc3)],_0x1a4395['endColumn']+=_0x4330d0['step'],_0x1a4395[_0x348af9(0x164)]+=_0x4330d0[_0x348af9(0xc3)]);}_0x5e1d2b=!0x0;}}),_0x5e1d2b&&_0x51a504[_0x31cc54(0xcf)]['push'](_0x2e21da),_0x51a504;}},la={'m1':_0x541ec4['id'],'m2':_0x4112c4['id'],'handler'(_0x3e8f0a,_0x3f2c68){const _0x1cde1d=_0x572182,_0x28083a={'m1Prime':_0x3e8f0a,'m2Prime':_0x3f2c68};if(_0x3e8f0a['params']['unitId']!==_0x3f2c68[_0x1cde1d(0x8d)][_0x1cde1d(0xdb)]||_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x20b)]!==_0x3f2c68['params'][_0x1cde1d(0x20b)])return _0x28083a;const _0x5d2053=_0x570d2f[_0x1cde1d(0xb4)](_0x3e8f0a),_0xc9b82c=_0x570d2f[_0x1cde1d(0xb4)](_0x3f2c68),_0x5f4036=be({'start':_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x19f)]['startColumn'],'end':_0x3e8f0a[_0x1cde1d(0x8d)][_0x1cde1d(0x19f)][_0x1cde1d(0x9d)]},{'start':_0x3f2c68[_0x1cde1d(0x8d)]['col'],'end':_0x3f2c68[_0x1cde1d(0x8d)][_0x1cde1d(0x80)]});if(_0xc9b82c['params'][_0x1cde1d(0x80)]===_0x5f4036['start'])return _0x28083a;_0xc9b82c[_0x1cde1d(0x8d)]['col']=_0x5f4036[_0x1cde1d(0xa5)],_0xc9b82c['params'][_0x1cde1d(0x211)]&&(_0xc9b82c[_0x1cde1d(0x8d)][_0x1cde1d(0x211)][_0x1cde1d(0x7f)]=_0x5f4036['start']);const _0x5aa5ac=_0x570d2f['deepClone'](_0x3f2c68);return _0x5aa5ac[_0x1cde1d(0x8d)][_0x1cde1d(0x211)]=null,{'m1Prime':[_0x5aa5ac,_0xc9b82c,_0x5d2053],'m2Prime':[_0xc9b82c]};}},ca={'m1':_0x541ec4['id'],'m2':_0x23aded['id'],'handler'(_0x50d9e7,_0x49b789){const _0x47b873=_0x572182,_0x255448={'m1Prime':_0x50d9e7,'m2Prime':_0x49b789};if(_0x50d9e7[_0x47b873(0x8d)][_0x47b873(0xdb)]!==_0x49b789[_0x47b873(0x8d)][_0x47b873(0xdb)]||_0x50d9e7['params'][_0x47b873(0x20b)]!==_0x49b789[_0x47b873(0x8d)][_0x47b873(0x20b)])return _0x255448;const _0x27214f=_0x570d2f['deepClone'](_0x50d9e7),_0x46f98b=_0x570d2f[_0x47b873(0xb4)](_0x49b789),_0x37ec7f=be({'start':_0x50d9e7[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)],'end':_0x50d9e7[_0x47b873(0x8d)]['range']['endColumn']},{'start':_0x49b789['params'][_0x47b873(0x19f)][_0x47b873(0x15a)],'end':_0x49b789[_0x47b873(0x8d)]['range'][_0x47b873(0x9d)]});return _0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)]===_0x37ec7f[_0x47b873(0xa5)]&&_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)]['endColumn']===_0x37ec7f[_0x47b873(0x1c4)]?_0x255448:(_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x15a)]=_0x37ec7f[_0x47b873(0xa5)],_0x46f98b[_0x47b873(0x8d)][_0x47b873(0x19f)][_0x47b873(0x9d)]=_0x37ec7f[_0x47b873(0x1c4)],{'m1Prime':[_0x46f98b,_0x27214f],'m2Prime':[_0x46f98b]});}},pa={'m1':_0x541ec4['id'],'m2':_0x4cb95c['id'],'handler'(_0x33992d,_0xfe3cb0){const _0x4aec0b=_0x572182,_0x1053f0={'m1Prime':_0x33992d,'m2Prime':_0xfe3cb0};if(_0x33992d[_0x4aec0b(0x8d)][_0x4aec0b(0xdb)]!==_0xfe3cb0[_0x4aec0b(0x8d)][_0x4aec0b(0xdb)]||_0x33992d[_0x4aec0b(0x8d)][_0x4aec0b(0x20b)]!==_0xfe3cb0[_0x4aec0b(0x8d)][_0x4aec0b(0x20b)])return _0x1053f0;const _0x2d22ea=_0x570d2f[_0x4aec0b(0xb4)](_0x33992d),_0x1862d0=_0x570d2f[_0x4aec0b(0xb4)](_0xfe3cb0),{ranges:_0x4228a9,colWidth:_0x50d4c0}=_0x1862d0[_0x4aec0b(0x8d)];if(_0x4228a9[_0x4aec0b(0xaf)](_0x31b9b4=>{const _0x4f71b6=_0x4aec0b,_0x183b39=_0x44a143(h(_0x33992d[_0x4f71b6(0x8d)][_0x4f71b6(0x19f)]),_0x31b9b4);return _0x183b39[_0x4f71b6(0xf6)]!==0x0?!0x0:(_0x31b9b4[_0x4f71b6(0x15a)]+=_0x183b39[_0x4f71b6(0xc3)],_0x31b9b4[_0x4f71b6(0x9d)]+=_0x183b39[_0x4f71b6(0xc3)],!0x1);}))return{'error':new Error(_0x4aec0b(0xa4))};if(typeof _0x50d4c0!=_0x4aec0b(0x1b5)){for(let _0x52ede1=_0x33992d['params'][_0x4aec0b(0x19f)][_0x4aec0b(0x15a)];_0x52ede1<=_0x33992d[_0x4aec0b(0x8d)]['range'][_0x4aec0b(0x9d)];_0x52ede1++)_0x4a2d3e(_0x52ede1,void 0x0,_0x50d4c0);}return{'m1Prime':_0x2d22ea,'m2Prime':_0x1862d0};}},wt=(_0x4bc0e3,_0x3b0d34)=>{const _0x43b2c2=_0x572182,_0x549815=_0x426d2f(_0x4bc0e3['params'][_0x43b2c2(0x176)]['ref']),_0x61c31f={'startColumn':_0x549815[_0x43b2c2(0x14c)],'endColumn':_0x549815[_0x43b2c2(0x14c)],'startRow':_0x549815[_0x43b2c2(0x1cb)],'endRow':_0x549815[_0x43b2c2(0x1cb)]},_0x33e125=_0x8e6890(_0x61c31f,_0x3b0d34);if(!_0x33e125)return[{'id':_0x5b7f88['id'],'params':{..._0x4bc0e3[_0x43b2c2(0x8d)],'comment':void 0x0,'commentId':_0x4bc0e3[_0x43b2c2(0x8d)][_0x43b2c2(0x176)]['commentId']}}];const _0x3f2a14=_0x572940(_0x33e125);return _0x3f2a14===_0x4bc0e3[_0x43b2c2(0x8d)][_0x43b2c2(0x176)][_0x43b2c2(0x1c7)]?[]:[{'id':_0x2afd0c['id'],'params':{..._0x4bc0e3[_0x43b2c2(0x8d)],'comment':void 0x0,'payload':{'ref':_0x3f2a14,'commentId':_0x4bc0e3[_0x43b2c2(0x8d)]['payload'][_0x43b2c2(0xf8)]}}}];},fa={'m1':_0x541ec4['id'],'m2':_0x2afd0c['id'],'handler':(_0x10123b,_0x205f08)=>{const _0x1fa656=_0x572182,_0x49b900={'m1Prime':_0x10123b,'m2Prime':_0x205f08};if(_0x10123b['params'][_0x1fa656(0xdb)]!==_0x205f08[_0x1fa656(0x8d)][_0x1fa656(0xdb)]||_0x10123b['params'][_0x1fa656(0x20b)]!==_0x205f08['params'][_0x1fa656(0x20b)])return _0x49b900;const _0x17f0e7={'id':_0x172802['id'],'params':{'unitId':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0xdb)],'subUnitId':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0x20b)],'range':_0x10123b[_0x1fa656(0x8d)][_0x1fa656(0x19f)]}},_0x9f3815=wt(_0x205f08,_0x17f0e7);return{'m1Prime':[_0x10123b,..._0x9f3815],'m2Prime':[_0x205f08,..._0x9f3815]};}};function Ct(_0x31efbd,_0x45dc93){const _0x14cd93=_0x572182;var _0x43f0dc,_0x3b8f9c;const {payload:_0x155b58,unitId:_0x56fdd0,subUnitId:_0x507730,ruleId:_0x4b3100}=_0x31efbd[_0x14cd93(0x8d)];switch(_0x155b58[_0x14cd93(0x120)]){case _0x4e3a21[_0x14cd93(0x94)]:{const _0x14eb6c=_0x155b58['payload'][_0x14cd93(0x1e0)](_0x282837=>_0x44a031(_0x282837,_0x45dc93))[_0x14cd93(0x9f)](Boolean)['flat']();if(!_0x592f19(_0x14eb6c,_0x155b58[_0x14cd93(0x176)]))return[{'id':_0x4e1baf['id'],'params':{'unitId':_0x56fdd0,'subUnitId':_0x507730,'ruleId':_0x4b3100,'payload':{'type':_0x4e3a21[_0x14cd93(0x94)],'payload':_0x14eb6c}}}];break;}case _0x4e3a21[_0x14cd93(0xbe)]:{const _0x40eaa1=_0x2b83f6=>dt(_0x56fdd0,_0x507730,_0x2b83f6,_0xf6cee5=>_0x8e6890(_0xf6cee5,_0x45dc93)),_0x3c31d5=(_0x43f0dc=_0x155b58[_0x14cd93(0x176)]['formula1'])!=null?_0x43f0dc:'',_0x4e80fc=(_0x3b8f9c=_0x155b58['payload']['formula2'])!=null?_0x3b8f9c:'';let _0x2bbd21=_0x3c31d5,_0x1ff6db=_0x4e80fc;if(_0x20a3db(_0x3c31d5)&&(_0x2bbd21=_0x40eaa1(_0x3c31d5)),_0x20a3db(_0x4e80fc)&&(_0x1ff6db=_0x40eaa1(_0x4e80fc)),_0x2bbd21!==_0x3c31d5||_0x1ff6db!==_0x4e80fc)return[{'id':_0x4e1baf['id'],'params':{'unitId':_0x56fdd0,'subUnitId':_0x507730,'ruleId':_0x4b3100,'payload':{'type':_0x4e3a21[_0x14cd93(0xbe)],'payload':{'type':_0x155b58[_0x14cd93(0x176)][_0x14cd93(0x120)],'formula1':_0x2bbd21,'formula2':_0x1ff6db}}}}];break;}}return[];}const Ra={'m1':_0x31c10b['id'],'m2':_0x4e1baf['id'],'handler':(_0xb00914,_0x30c898)=>{const _0x5a2942=_0x572182,_0x294d39={'m1Prime':_0xb00914,'m2Prime':_0x30c898};if(_0xb00914[_0x5a2942(0x8d)][_0x5a2942(0xdb)]!==_0x30c898[_0x5a2942(0x8d)][_0x5a2942(0xdb)]||_0x30c898[_0x5a2942(0x8d)][_0x5a2942(0x20b)]!==_0xb00914['params'][_0x5a2942(0x20b)])return _0x294d39;const _0xbd35b6={'id':_0x563de0['id'],'params':{'fromRange':_0xb00914['params'][_0x5a2942(0x11d)],'toRange':_0xb00914['params']['targetRange']}},_0x5cb0e8=Ct(_0x30c898,_0xbd35b6);return{'m1Prime':[_0xb00914,..._0x5cb0e8],'m2Prime':[_0x30c898,..._0x5cb0e8]};}},ha={'m1':_0x541ec4['id'],'m2':_0x4e1baf['id'],'handler':(_0x386078,_0x36812f)=>{const _0x3cc40e=_0x572182,_0xc0025b={'m1Prime':_0x386078,'m2Prime':_0x36812f};if(_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0xdb)]!==_0x36812f['params']['unitId']||_0x36812f['params']['subUnitId']!==_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0x20b)])return _0xc0025b;const _0x27d36b={'id':_0x172802['id'],'params':{'unitId':_0x386078['params'][_0x3cc40e(0xdb)],'subUnitId':_0x386078['params']['subUnitId'],'range':_0x386078[_0x3cc40e(0x8d)][_0x3cc40e(0x19f)]}},_0x5026de=Ct(_0x36812f,_0x27d36b);return{'m1Prime':[_0x386078,..._0x5026de],'m2Prime':[_0x36812f,..._0x5026de]};}},ga={'m1':_0x224ab4['id'],'m2':_0x1b398d['id'],'handler':(_0x4dfd43,_0x234493)=>{const _0x3d877e=_0x572182,_0x15f854={'m1Prime':_0x4dfd43,'m2Prime':_0x234493};if(_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0xdb)]!==_0x234493[_0x3d877e(0x8d)][_0x3d877e(0xdb)]||_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0x20b)]!==_0x234493[_0x3d877e(0x8d)]['subUnitId'])return _0x15f854;const _0x123dfd={'id':_0x1bb87d['id'],'params':{'unitId':_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0xdb)],'subUnitId':_0x4dfd43[_0x3d877e(0x8d)][_0x3d877e(0x20b)],'range':_0x4dfd43[_0x3d877e(0x8d)]['range']}},_0x211576=It(_0x234493,_0x123dfd);return{'m1Prime':[_0x4dfd43,..._0x211576],'m2Prime':[_0x234493,..._0x211576]};}},Ia={'m1':_0x224ab4['id'],'m2':_0x4b0a3e['id'],'handler'(_0x249ae6,_0x3f3c80){const _0xf4f546=_0x572182,_0x1d30c6=nr[_0xf4f546(0xcd)](_0x3f3c80,_0x249ae6);return at(_0x1d30c6)?{'m1Prime':_0x1d30c6['m2Prime'],'m2Prime':_0x1d30c6['m1Prime']}:_0x1d30c6;}},wa={'m1':_0x224ab4['id'],'m2':_0x224ab4['id'],'handler'(_0x1dc740,_0x304236){const _0x22180d=_0x572182,_0x2be6a8={'m1Prime':_0x1dc740,'m2Prime':_0x304236};if(_0x1dc740['params'][_0x22180d(0xdb)]!==_0x304236[_0x22180d(0x8d)][_0x22180d(0xdb)]||_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x20b)]!==_0x304236[_0x22180d(0x8d)][_0x22180d(0x20b)])return _0x2be6a8;const _0x41640b=_0x570d2f[_0x22180d(0xb4)](_0x1dc740),_0x1a36f1=_0x570d2f[_0x22180d(0xb4)](_0x304236),_0x433c1f=_0x44a143(h(_0x48173f(_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)])),h(_0x48173f(_0x304236[_0x22180d(0x8d)][_0x22180d(0x19f)])));if(_0x433c1f?(_0x1a36f1['params'][_0x22180d(0x19f)][_0x22180d(0x102)]+=_0x433c1f[_0x22180d(0xc3)],_0x1a36f1[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x111)]+=_0x433c1f['step']+(_0x433c1f[_0x22180d(0xf6)]||0x0)):_0x1a36f1['id']=_0x1a62da['id'],_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x102)]!==_0x304236[_0x22180d(0x8d)]['range']['startRow']){const _0x2e0f91=_0x44a143(h(_0x48173f(_0x304236[_0x22180d(0x8d)][_0x22180d(0x19f)])),h(_0x48173f(_0x1dc740[_0x22180d(0x8d)][_0x22180d(0x19f)])));_0x2e0f91?(_0x41640b[_0x22180d(0x8d)][_0x22180d(0x19f)][_0x22180d(0x102)]+=_0x2e0f91[_0x22180d(0xc3)],_0x41640b['params']['range'][_0x22180d(0x111)]+=_0x2e0f91['step']+(_0x2e0f91[_0x22180d(0xf6)]||0x0)):_0x41640b['id']=_0x1a62da['id'];}return{'m1Prime':_0x41640b,'m2Prime':_0x1a36f1};}},Ca={'m1':_0x224ab4['id'],'m2':_0x43f1cd['id'],'handler'(_0x5756b4,_0x5ce807){const _0x5c8704=_0x572182,_0x485b3e={'m1Prime':_0x5756b4,'m2Prime':_0x5ce807};if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0xdb)]!==_0x5ce807['params'][_0x5c8704(0xdb)]||_0x5756b4['params']['subUnitId']!==_0x5ce807[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x20b)]&&_0x5756b4['params'][_0x5c8704(0x20b)]!==_0x5ce807[_0x5c8704(0x8d)]['to'][_0x5c8704(0x20b)])return _0x485b3e;const _0xe3ab02=_0x570d2f[_0x5c8704(0xb4)](_0x5756b4),_0x58ee60=_0x570d2f[_0x5c8704(0xb4)](_0x5ce807);if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x20b)]===_0x5ce807[_0x5c8704(0x8d)]['from']['subUnitId']){const _0x356f8c=new _0x1f7bb9(_0x58ee60[_0x5c8704(0x8d)]['from']['value'])['getDataRange'](),{startRow:_0x538743,endRow:_0x5a0251}=_0x356f8c,{startRow:_0x32a8a9,endRow:_0x47e8b2}=_0x5756b4['params']['range'],{step:_0x4d1f6a,length:_0x1b1aa2}=_0x44a143(_0x48173f(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x19f)]),_0x48173f(_0x356f8c));_0x4d1f6a>0x0&&_0x1b1aa2===0x0&&ft(_0x58ee60[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x17e)],_0x538743,_0x5a0251-_0x538743+0x1,_0x4d1f6a),_0x4d1f6a===0x0&&_0x1b1aa2>0x0&&ft(_0x58ee60[_0x5c8704(0x8d)][_0x5c8704(0x1b0)][_0x5c8704(0x17e)],_0x32a8a9,_0x5a0251-_0x32a8a9+0x1,_0x47e8b2-_0x32a8a9+0x1);}if(_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x20b)]===_0x5ce807['params']['to'][_0x5c8704(0x20b)]){const _0x516e99=new _0x1f7bb9(_0x5ce807['params']['to']['value'])[_0x5c8704(0x182)](),{startRow:_0x1b882f,endRow:_0x3bb46c}=_0x516e99,{startRow:_0x3a90b6,endRow:_0x1aa036}=_0x5756b4[_0x5c8704(0x8d)][_0x5c8704(0x19f)],{step:_0xf02eab,length:_0x14b2be}=_0x44a143(_0x48173f(_0x5756b4['params'][_0x5c8704(0x19f)]),_0x48173f(_0x516e99));_0xf02eab>0x0&&_0x14b2be===0x0&&ft(_0x58ee60[_0x5c8704(0x8d)]['to']['value'],_0x1b882f,_0x3bb46c-_0x1b882f+0x1,_0xf02eab),_0xf02eab===0x0&&_0x14b2be>0x0&&ft(_0x58ee60[_0x5c8704(0x8d)]['to']['value'],_0x3a90b6,_0x3bb46c-_0x3a90b6+0x1,_0x1aa036-_0x3a90b6+0x1);}return{'m1Prime':_0xe3ab02,'m2Prime':_0x58ee60};}},Pa={'m1':_0x224ab4['id'],'m2':_0x454b7a['id'],'handler'(_0x1cc851,_0xf7a50a){const _0x4aee78=_0x572182,_0x481b0e={'m1Prime':_0x1cc851,'m2Prime':_0xf7a50a};if(_0x1cc851['params'][_0x4aee78(0xdb)]!==_0xf7a50a['params']['unitId']||_0x1cc851['params'][_0x4aee78(0x20b)]!==_0xf7a50a[_0x4aee78(0x8d)][_0x4aee78(0x20b)])return _0x481b0e;const _0x11ad72=_0x570d2f[_0x4aee78(0xb4)](_0x1cc851),_0x10c803=_0x570d2f['deepClone'](_0xf7a50a),_0x4b0a5c=_0xf7a50a[_0x4aee78(0x8d)][_0x4aee78(0x11d)],_0x573ada=_0xf7a50a[_0x4aee78(0x8d)]['targetRange'];if(_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]>_0x4b0a5c[_0x4aee78(0x102)]&&_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]<=_0x4b0a5c[_0x4aee78(0x111)]||_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]>_0x573ada[_0x4aee78(0x102)]&&_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]<=_0x573ada['endRow'])return{'error':new Error(_0x4aee78(0x1b6))};const _0x2693f1=_0x44a143(h(_0x48173f(_0x1cc851[_0x4aee78(0x8d)]['range'])),h(_0x48173f(_0x4b0a5c))),_0xe7c791=_0x44a143(h(_0x48173f(_0x1cc851['params'][_0x4aee78(0x19f)])),h(_0x48173f(_0x573ada)));if(_0x10c803[_0x4aee78(0x8d)]['sourceRange'][_0x4aee78(0x102)]+=_0x2693f1['step'],_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x11d)][_0x4aee78(0x111)]+=_0x2693f1[_0x4aee78(0xc3)]+(_0x2693f1['length']||0x0),_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x1d0)][_0x4aee78(0x102)]+=_0xe7c791[_0x4aee78(0xc3)],_0x10c803[_0x4aee78(0x8d)][_0x4aee78(0x1d0)][_0x4aee78(0x111)]+=_0xe7c791[_0x4aee78(0xc3)]+(_0xe7c791['length']||0x0),_0x4b0a5c[_0x4aee78(0x102)]>=_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]&&_0x573ada[_0x4aee78(0x102)]<_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['startRow']){const _0x304b87=_0x573ada[_0x4aee78(0x111)]-_0x573ada['startRow']+0x1;_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]+=_0x304b87,_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['endRow']+=_0x304b87;}else{if(_0x4b0a5c[_0x4aee78(0x111)]<_0x1cc851[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]&&_0x573ada[_0x4aee78(0x102)]>=_0x1cc851['params'][_0x4aee78(0x19f)][_0x4aee78(0x102)]){const _0x81d45e=_0x4b0a5c[_0x4aee78(0x111)]-_0x4b0a5c[_0x4aee78(0x102)]+0x1;_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)][_0x4aee78(0x102)]-=_0x81d45e,_0x11ad72[_0x4aee78(0x8d)][_0x4aee78(0x19f)]['endRow']-=_0x81d45e;}}return{'m1Prime':_0x11ad72,'m2Prime':_0x10c803};}},Ua={'m1':_0x224ab4['id'],'m2':_0x3dcda7['id'],'handler'(_0x460041,_0xe3097){const _0x4f87fb=_0x572182,_0x400b67={'m1Prime':_0x460041,'m2Prime':_0xe3097};if(_0x460041[_0x4f87fb(0x8d)][_0x4f87fb(0xdb)]!==_0xe3097[_0x4f87fb(0x8d)]['unitId']||_0x460041['params'][_0x4f87fb(0x20b)]!==_0xe3097[_0x4f87fb(0x8d)][_0x4f87fb(0x20b)])return _0x400b67;const _0x1bcc56=_0x570d2f[_0x4f87fb(0xb4)](_0x460041),_0x253c12=_0x570d2f['deepClone'](_0xe3097),{ranges:_0x4fccd7}=_0x253c12[_0x4f87fb(0x8d)];return _0x4fccd7[_0x4f87fb(0xaf)](_0x754ee=>{const _0xe7e939=_0x4f87fb,_0xcdbe12=_0x44a143(h(_0x48173f(_0x460041[_0xe7e939(0x8d)][_0xe7e939(0x19f)])),h(_0x48173f(_0x754ee)));return _0xcdbe12['length']!==0x0?!0x0:(_0x754ee[_0xe7e939(0x102)]+=_0xcdbe12[_0xe7e939(0xc3)],_0x754ee[_0xe7e939(0x111)]+=_0xcdbe12[_0xe7e939(0xc3)],!0x1);})?{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x1bcc56,'m2Prime':_0x253c12};}},ba={'m1':_0x224ab4['id'],'m2':_0x1c90fa['id'],'handler'(_0x352b22,_0x4e859d){const _0x6c902e=_0x572182,_0x27e7b8={'m1Prime':_0x352b22,'m2Prime':_0x4e859d};if(_0x352b22['params'][_0x6c902e(0xdb)]!==_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0xdb)]||_0x352b22['params']['subUnitId']!==_0x4e859d['params'][_0x6c902e(0x20b)])return _0x27e7b8;const _0x587710=_0x570d2f[_0x6c902e(0xb4)](_0x352b22),_0x3b31d7=_0x570d2f[_0x6c902e(0xb4)](_0x4e859d);if(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]<=_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x111)]&&_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]>_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)])return{'error':new Error(_0x6c902e(0x130))};const _0x2e9f76=_0x44a143(h(_0x48173f(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)])),h(_0x48173f(_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)])));_0x2e9f76?(_0x3b31d7['params'][_0x6c902e(0x19f)][_0x6c902e(0x102)]+=_0x2e9f76[_0x6c902e(0xc3)],_0x3b31d7[_0x6c902e(0x8d)][_0x6c902e(0x19f)]['endRow']+=_0x2e9f76[_0x6c902e(0xc3)]+(_0x2e9f76[_0x6c902e(0xf6)]||0x0)):_0x3b31d7['id']=_0x1a62da['id'];const _0x3f2e8d=_0x180da6(h(_0x48173f(_0x4e859d[_0x6c902e(0x8d)][_0x6c902e(0x19f)])),h(_0x48173f(_0x352b22[_0x6c902e(0x8d)][_0x6c902e(0x19f)])));return _0x3f2e8d&&(_0x587710[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x102)]+=_0x3f2e8d['step'],_0x587710[_0x6c902e(0x8d)][_0x6c902e(0x19f)][_0x6c902e(0x111)]+=_0x3f2e8d[_0x6c902e(0xc3)]+(_0x3f2e8d[_0x6c902e(0xf6)]||0x0)),{'m1Prime':_0x587710,'m2Prime':_0x3b31d7};}},Ma={'m1':_0x224ab4['id'],'m2':_0x3c47fd['id'],'handler'(_0x529677,_0x274a2c){const _0x311f09=_0x572182,_0x1d0eb8=_0x570d2f[_0x311f09(0xb4)](_0x529677),_0x2a64fd=_0x570d2f[_0x311f09(0xb4)](_0x274a2c);if(_0x529677[_0x311f09(0x8d)][_0x311f09(0xdb)]!==_0x274a2c[_0x311f09(0x8d)][_0x311f09(0xdb)]||_0x529677[_0x311f09(0x8d)][_0x311f09(0x20b)]!==_0x274a2c[_0x311f09(0x8d)]['subUnitId'])return{'m1Prime':_0x1d0eb8,'m2Prime':_0x2a64fd};const _0x1730b5=_0x2a64fd[_0x311f09(0x8d)][_0x311f09(0xd1)]['map'](_0xcb4bf8=>{const _0x4a687f=_0x311f09,_0x4270b9=_0x1d0eb8['params'][_0x4a687f(0x19f)],_0xc61c57=_0x4270b9['endRow']-_0x4270b9[_0x4a687f(0x102)]+0x1;return _0x4270b9[_0x4a687f(0x102)]<=_0xcb4bf8[_0x4a687f(0x102)]?{..._0xcb4bf8,'startRow':_0xcb4bf8[_0x4a687f(0x102)]+_0xc61c57,'endRow':_0xcb4bf8[_0x4a687f(0x111)]+_0xc61c57}:_0x4270b9[_0x4a687f(0x102)]>_0xcb4bf8['startRow']&&_0x4270b9[_0x4a687f(0x102)]<=_0xcb4bf8['endRow']?{..._0xcb4bf8,'endRow':_0xcb4bf8[_0x4a687f(0x111)]+_0xc61c57}:{..._0xcb4bf8};});return _0x2a64fd[_0x311f09(0x8d)][_0x311f09(0xd1)]=_0x1730b5,{'m1Prime':_0x1d0eb8,'m2Prime':_0x2a64fd};}},va={'m1':_0x224ab4['id'],'m2':_0x587c63['id'],'handler'(_0x19c5f8,_0x2cb743){const _0x42bf3c=_0x572182,_0x177c21={'m1Prime':_0x19c5f8,'m2Prime':_0x2cb743};if(_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0xdb)]!==_0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0xdb)]||_0x19c5f8['params']['subUnitId']!==_0x2cb743[_0x42bf3c(0x8d)]['subUnitId'])return _0x177c21;const _0x3e7f60=_0x570d2f[_0x42bf3c(0xb4)](_0x2cb743),_0x3478fe=_0x44a143(h(_0x48173f(_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)])),h(_0x48173f(_0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)])));_0x3e7f60['params'][_0x42bf3c(0x19f)]['startRow']+=_0x3478fe[_0x42bf3c(0xc3)],_0x3e7f60['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x111)]+=_0x3478fe['step']+(_0x3478fe[_0x42bf3c(0xf6)]||0x0);const _0x48dd27=_0x19c5f8['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x102)],_0x53a15c=_0x19c5f8[_0x42bf3c(0x8d)][_0x42bf3c(0x19f)][_0x42bf3c(0x111)]-_0x19c5f8['params'][_0x42bf3c(0x19f)][_0x42bf3c(0x102)]+0x1,_0x4453b5={};for(const _0x567ff4 in _0x2cb743[_0x42bf3c(0x8d)][_0x42bf3c(0x13f)]){let _0x454032=Number(_0x567ff4),_0x39404d=_0x2cb743['params'][_0x42bf3c(0x13f)][_0x567ff4];_0x454032=Le(_0x48dd27,_0x53a15c,_0x454032),_0x39404d=Le(_0x48dd27,_0x53a15c,_0x39404d),_0x4453b5[_0x454032]=_0x39404d;}return _0x3e7f60['params'][_0x42bf3c(0x13f)]=_0x4453b5,{'m1Prime':_0x19c5f8,'m2Prime':_0x3e7f60};}},Le=(_0x5834fd,_0x2d6efe,_0x399ed6)=>_0x399ed6>=_0x5834fd?_0x399ed6+_0x2d6efe:_0x399ed6,Ea={'m1':_0x224ab4['id'],'m2':_0x4075e['id'],'handler'(_0x262d19,_0x1b6381){const _0x108d87=_0x572182,_0x20aa4a={'m1Prime':_0x262d19,'m2Prime':_0x1b6381};if(_0x262d19[_0x108d87(0x8d)]['unitId']!==_0x1b6381[_0x108d87(0x8d)][_0x108d87(0xdb)]||_0x262d19[_0x108d87(0x8d)][_0x108d87(0x20b)]!==_0x1b6381[_0x108d87(0x8d)]['subUnitId'])return _0x20aa4a;const _0x3b7455=[_0x570d2f['deepClone'](_0x262d19)],_0x1c9f9f=_0x570d2f[_0x108d87(0xb4)](_0x1b6381),{values:_0x5f97a9}=_0x1c9f9f['params'],_0x54ebc1=[];let _0x41d4df=!0x1;for(const _0x5564dd in _0x5f97a9){const _0xd6a1a8=_0x5f97a9[_0x5564dd];if(_0x54ebc1[_0x108d87(0x1ca)](..._0xd6a1a8['ranges']),_0xd6a1a8[_0x108d87(0xd1)][_0x108d87(0xaf)](_0xbcd501=>{const _0x2a41ac=_0x108d87,_0xcd4070=_0x44a143(h(_0x48173f(_0x262d19[_0x2a41ac(0x8d)][_0x2a41ac(0x19f)])),_0x48173f(h(_0xbcd501)));return _0xcd4070[_0x2a41ac(0xf6)]!==0x0?!0x0:(_0xcd4070[_0x2a41ac(0xc3)]!==0x0&&(_0x41d4df=!0x0),_0xbcd501[_0x2a41ac(0x102)]+=_0xcd4070[_0x2a41ac(0xc3)],_0xbcd501['endRow']+=_0xcd4070[_0x2a41ac(0xc3)],!0x1);}))return{'error':new Error(_0x108d87(0xd3))};}if(_0x41d4df){const _0x15bc6c={'id':_0x3dcda7['id'],'params':{'unitId':_0x1b6381[_0x108d87(0x8d)]['unitId'],'subUnitId':_0x1b6381[_0x108d87(0x8d)][_0x108d87(0x20b)],'ranges':_0x54ebc1}};_0x3b7455[_0x108d87(0x1ca)](_0x15bc6c,_0x1c9f9f);}return{'m1Prime':_0x3b7455,'m2Prime':_0x1c9f9f};}},Sa={'m1':_0x224ab4['id'],'m2':_0x15eb0a['id'],'handler'(_0x2a5717,_0x4be173){const _0x4bb581=_0x572182,_0x23186d={'m1Prime':_0x2a5717,'m2Prime':_0x4be173};if(_0x2a5717['params']['unitId']!==_0x4be173[_0x4bb581(0x8d)]['unitId']||_0x2a5717['params'][_0x4bb581(0x20b)]!==_0x4be173[_0x4bb581(0x8d)][_0x4bb581(0x20b)])return _0x23186d;const _0x1bfa1c=[_0x570d2f[_0x4bb581(0xb4)](_0x2a5717)],_0x5852d7=_0x570d2f[_0x4bb581(0xb4)](_0x4be173),_0x40f981=new _0x1f7bb9(_0x5852d7[_0x4bb581(0x8d)][_0x4bb581(0x208)]),_0x1c845d=_0x40f981['getDataRange'](),_0x503087=_0x2a5717[_0x4bb581(0x8d)][_0x4bb581(0x19f)],_0x42bb54=_0x503087[_0x4bb581(0x111)]-_0x503087['startRow']+0x1;if(_0x5852d7['params'][_0x4bb581(0x208)]&&_0x503087[_0x4bb581(0x102)]<=_0x1c845d[_0x4bb581(0x111)]){const _0x1148bc=Math[_0x4bb581(0xed)](_0x1c845d[_0x4bb581(0x102)],_0x503087['startRow']);ft(_0x5852d7[_0x4bb581(0x8d)][_0x4bb581(0x208)],_0x1148bc,_0x1c845d[_0x4bb581(0x111)]-_0x1148bc+0x1,_0x42bb54);}const _0x5e7fc2=new _0x1f7bb9();let _0x94b39e=!0x1;if(_0x40f981[_0x4bb581(0x86)]((_0x23dee4,_0x2e67ef,_0x113034)=>{const _0x353a69=_0x4bb581;if(_0x113034&&_0x113034['f']){const _0x6a258e=_0x113034['f'];let _0x3479c4=!0x1;const _0x3a3d02=dt(_0x2a5717[_0x353a69(0x8d)][_0x353a69(0xdb)],_0x2a5717['params']['subUnitId'],_0x6a258e,_0x33782d=>{const _0x58e81b=_0x353a69,_0x3498ce=_0x44a143(h(_0x48173f(_0x2a5717[_0x58e81b(0x8d)][_0x58e81b(0x19f)])),h(_0x48173f(_0x33782d)));return(_0x3498ce[_0x58e81b(0xc3)]!==0x0||_0x3498ce[_0x58e81b(0xf6)]!==0x0)&&(_0x3479c4=!0x0,_0x33782d[_0x58e81b(0x102)]+=_0x3498ce['step'],_0x33782d['endRow']+=_0x3498ce[_0x58e81b(0xc3)]+_0x3498ce['length']),_0x33782d;});_0x3479c4&&(_0x94b39e=!0x0,_0x113034['f']=_0x3a3d02,_0x5e7fc2['setValue'](_0x23dee4,_0x2e67ef,{..._0x113034}));}}),_0x94b39e){const _0x23e14e={'id':_0x15eb0a['id'],'params':{'unitId':_0x4be173['params'][_0x4bb581(0xdb)],'subUnitId':_0x4be173[_0x4bb581(0x8d)]['subUnitId'],'cellValue':_0x5e7fc2[_0x4bb581(0x16a)]()}};_0x1bfa1c[_0x4bb581(0x1ca)](_0x23e14e);}return{'m1Prime':_0x1bfa1c,'m2Prime':_0x5852d7};}},Wa={'m1':_0x224ab4['id'],'m2':_0x36a513['id'],'handler'(_0x33d45b,_0x10e706){const _0x3bf185=_0x572182,_0x492fc6={'m1Prime':_0x33d45b,'m2Prime':_0x10e706};if(_0x33d45b[_0x3bf185(0x8d)][_0x3bf185(0xdb)]!==_0x10e706[_0x3bf185(0x8d)][_0x3bf185(0xdb)]||_0x33d45b[_0x3bf185(0x8d)][_0x3bf185(0x20b)]!==_0x10e706[_0x3bf185(0x8d)][_0x3bf185(0x20b)])return _0x492fc6;const _0x2b66b9=_0x570d2f['deepClone'](_0x33d45b),_0x2198e1=_0x570d2f[_0x3bf185(0xb4)](_0x10e706),{rowData:_0x10cd3b}=_0x2198e1[_0x3bf185(0x8d)];for(let _0x247b62=_0x33d45b['params'][_0x3bf185(0x19f)][_0x3bf185(0x102)];_0x247b62<=_0x33d45b[_0x3bf185(0x8d)]['range'][_0x3bf185(0x111)];_0x247b62++)_0x4a2d3e(_0x247b62,void 0x0,_0x10cd3b);return{'m1Prime':_0x2b66b9,'m2Prime':_0x2198e1};}},Va={'m1':_0x224ab4['id'],'m2':_0xce09a7['id'],'handler'(_0xd75c4b,_0x1d0c7a){const _0x1ccdb6=_0x572182,_0x2c7ece={'m1Prime':_0xd75c4b,'m2Prime':_0x1d0c7a};if(_0xd75c4b[_0x1ccdb6(0x8d)][_0x1ccdb6(0xdb)]!==_0x1d0c7a['params'][_0x1ccdb6(0xdb)]||_0xd75c4b[_0x1ccdb6(0x8d)]['subUnitId']!==_0x1d0c7a[_0x1ccdb6(0x8d)][_0x1ccdb6(0x20b)])return _0x2c7ece;const _0x21992c=_0x570d2f[_0x1ccdb6(0xb4)](_0xd75c4b),_0x3c146f=_0x570d2f[_0x1ccdb6(0xb4)](_0x1d0c7a),{ranges:_0x137226}=_0x3c146f[_0x1ccdb6(0x8d)];return _0x137226[_0x1ccdb6(0xaf)](_0xf4f348=>{const _0x1b49e4=_0x1ccdb6,_0xe60880=_0x44a143(h(_0x48173f(_0xd75c4b[_0x1b49e4(0x8d)][_0x1b49e4(0x19f)])),h(_0x48173f(_0xf4f348)));return _0xe60880[_0x1b49e4(0xf6)]!==0x0?!0x0:(_0xf4f348[_0x1b49e4(0x102)]+=_0xe60880[_0x1b49e4(0xc3)],_0xf4f348['endRow']+=_0xe60880[_0x1b49e4(0xc3)],!0x1);})?{'error':new Error(_0x1ccdb6(0x18c))}:{'m1Prime':_0x21992c,'m2Prime':_0x3c146f};}},_a={'m1':_0x224ab4['id'],'m2':_0x2b245f['id'],'handler'(_0x4deaea,_0x2003e8){const _0x4ce197=_0x572182,_0xe85a4d={'m1Prime':_0x4deaea,'m2Prime':_0x2003e8};if(_0x4deaea['params']['unitId']!==_0x2003e8[_0x4ce197(0x8d)][_0x4ce197(0xdb)]||_0x4deaea[_0x4ce197(0x8d)][_0x4ce197(0x20b)]!==_0x2003e8[_0x4ce197(0x8d)][_0x4ce197(0x20b)])return _0xe85a4d;const _0x5ee4dd=_0x570d2f[_0x4ce197(0xb4)](_0x4deaea),_0x35d870=_0x570d2f[_0x4ce197(0xb4)](_0x2003e8),{ranges:_0x4ba892}=_0x35d870[_0x4ce197(0x8d)];return _0x4ba892[_0x4ce197(0xaf)](_0x2b220c=>{const _0x25607a=_0x4ce197,_0x5aa5c1=_0x44a143(h(_0x48173f(_0x4deaea['params'][_0x25607a(0x19f)])),h(_0x48173f(_0x2b220c)));return _0x5aa5c1[_0x25607a(0xf6)]!==0x0?!0x0:(_0x2b220c['startRow']+=_0x5aa5c1[_0x25607a(0xc3)],_0x2b220c['endRow']+=_0x5aa5c1[_0x25607a(0xc3)],!0x1);})?{'error':new Error(_0x4ce197(0x82))}:{'m1Prime':_0x5ee4dd,'m2Prime':_0x35d870};}},Oa={'m1':_0x224ab4['id'],'m2':_0x23969e['id'],'handler'(_0x9a1bde,_0x52f96c){const _0x10a9e2=_0x572182,_0x50f928={'m1Prime':[],'m2Prime':[]};if(_0x9a1bde[_0x10a9e2(0x8d)][_0x10a9e2(0xdb)]!==_0x52f96c[_0x10a9e2(0x8d)][_0x10a9e2(0xdb)]||_0x9a1bde[_0x10a9e2(0x8d)][_0x10a9e2(0x20b)]!==_0x52f96c[_0x10a9e2(0x8d)]['subUnitId'])return _0x50f928;const _0x2d6271=_0x570d2f['deepClone'](_0x52f96c);let _0x7315e=!0x1;return _0x2d6271[_0x10a9e2(0x8d)][_0x10a9e2(0x138)][_0x10a9e2(0xc5)](_0x4eaf2f=>{const _0x383204=_0x10a9e2,{range:_0x4e3373,primary:_0x33ee4b}=_0x4eaf2f,_0xb735c9=_0x44a143(h(_0x48173f(_0x9a1bde['params'][_0x383204(0x19f)])),h(_0x48173f(_0x4e3373)));if(_0xb735c9['length']||_0xb735c9[_0x383204(0xc3)]){if(_0x4e3373[_0x383204(0x102)]+=_0xb735c9[_0x383204(0xc3)],_0x4e3373[_0x383204(0x111)]+=_0xb735c9[_0x383204(0xc3)]+(_0xb735c9['length']||0x0),_0x33ee4b){const _0xb1c9a7=_0x44a143(h(_0x48173f(_0x9a1bde['params']['range'])),h(_0x48173f(_0x33ee4b)));(_0xb1c9a7[_0x383204(0xf6)]||_0xb1c9a7['step'])&&(_0x33ee4b['startRow']+=_0xb1c9a7[_0x383204(0xc3)],_0x33ee4b['endRow']+=_0xb1c9a7[_0x383204(0xc3)],_0x33ee4b[_0x383204(0x1d9)]+=_0xb1c9a7[_0x383204(0xc3)]);}_0x7315e=!0x0;}}),_0x7315e&&_0x50f928[_0x10a9e2(0xcf)][_0x10a9e2(0x1ca)](_0x2d6271),_0x50f928;}},ya={'m1':_0x224ab4['id'],'m2':_0x23aded['id'],'handler'(_0x572aaa,_0x2cda6b){const _0x5938d8=_0x572182,_0x198d5c={'m1Prime':[_0x572aaa],'m2Prime':[_0x2cda6b]};if(_0x572aaa['params'][_0x5938d8(0xdb)]!==_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0xdb)]||_0x572aaa[_0x5938d8(0x8d)][_0x5938d8(0x20b)]!==_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x20b)])return _0x198d5c;const _0x7bc5b1=_0x570d2f['deepClone'](_0x572aaa),_0xbece7e=_0x570d2f[_0x5938d8(0xb4)](_0x2cda6b),_0x2c1232=be({'start':_0x572aaa['params'][_0x5938d8(0x19f)]['startRow'],'end':_0x572aaa['params']['range'][_0x5938d8(0x111)]},{'start':_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)],'end':_0x2cda6b[_0x5938d8(0x8d)][_0x5938d8(0x19f)]['endRow']});return _0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)]===_0x2c1232[_0x5938d8(0xa5)]&&_0xbece7e['params'][_0x5938d8(0x19f)]['endRow']===_0x2c1232[_0x5938d8(0x1c4)]?_0x198d5c:(_0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x102)]=_0x2c1232[_0x5938d8(0xa5)],_0xbece7e[_0x5938d8(0x8d)][_0x5938d8(0x19f)][_0x5938d8(0x111)]=_0x2c1232[_0x5938d8(0x1c4)],{'m1Prime':[_0xbece7e,_0x7bc5b1],'m2Prime':[_0xbece7e]});}},Na={'m1':_0x224ab4['id'],'m2':_0x5357b7['id'],'handler'(_0x11fda2,_0x48d860){const _0x44b6fb=_0x572182,_0x2d65e5={'m1Prime':_0x11fda2,'m2Prime':_0x48d860};if(_0x11fda2[_0x44b6fb(0x8d)]['unitId']!==_0x48d860[_0x44b6fb(0x8d)][_0x44b6fb(0xdb)]||_0x11fda2['params']['subUnitId']!==_0x48d860[_0x44b6fb(0x8d)][_0x44b6fb(0x20b)])return _0x2d65e5;const _0x5afc89=_0x570d2f[_0x44b6fb(0xb4)](_0x11fda2),_0x51cb0=_0x570d2f[_0x44b6fb(0xb4)](_0x48d860),{rowsAutoHeightInfo:_0x52c50}=_0x51cb0[_0x44b6fb(0x8d)];return _0x52c50['some'](_0x39b71c=>{const _0x2ff9ce=_0x44b6fb,_0x57ba45={'startRow':_0x39b71c[_0x2ff9ce(0x1cb)],'endRow':_0x39b71c['row'],'startColumn':0x0,'endColumn':0x0},_0x26d655=_0x44a143(h(_0x48173f(_0x11fda2[_0x2ff9ce(0x8d)]['range'])),_0x48173f(_0x57ba45));return _0x26d655['length']!==0x0?!0x0:(_0x39b71c[_0x2ff9ce(0x1cb)]+=_0x26d655['step'],!0x1);})?{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height')}:{'m1Prime':_0x5afc89,'m2Prime':_0x51cb0};}},Da={'m1':_0x224ab4['id'],'m2':_0xdb3bc1['id'],'handler'(_0x5ca5ce,_0x37ecc3){const _0x395a73=_0x572182,_0x26e2a4={'m1Prime':_0x5ca5ce,'m2Prime':_0x37ecc3};if(_0x5ca5ce[_0x395a73(0x8d)]['unitId']!==_0x37ecc3[_0x395a73(0x8d)][_0x395a73(0xdb)]||_0x5ca5ce[_0x395a73(0x8d)]['subUnitId']!==_0x37ecc3[_0x395a73(0x8d)][_0x395a73(0x20b)])return _0x26e2a4;const _0x13f783=_0x570d2f[_0x395a73(0xb4)](_0x5ca5ce),_0x301ed5=_0x570d2f['deepClone'](_0x37ecc3),{ranges:_0xa5f910,rowHeight:_0x5e671b}=_0x301ed5['params'];if(_0xa5f910['some'](_0x53bb31=>{const _0x2342b2=_0x395a73,_0x189b68=_0x44a143(h(_0x48173f(_0x5ca5ce[_0x2342b2(0x8d)]['range'])),_0x48173f(_0x53bb31));return _0x189b68[_0x2342b2(0xf6)]!==0x0?!0x0:(_0x53bb31['startRow']+=_0x189b68[_0x2342b2(0xc3)],_0x53bb31[_0x2342b2(0x111)]+=_0x189b68['step'],!0x1);}))return{'error':new Error(_0x395a73(0x1a1))};if(typeof _0x5e671b!=_0x395a73(0x1b5)){for(let _0x516afd=_0x5ca5ce[_0x395a73(0x8d)][_0x395a73(0x19f)][_0x395a73(0x102)];_0x516afd<=_0x5ca5ce['params'][_0x395a73(0x19f)]['endRow'];_0x516afd++)_0x4a2d3e(_0x516afd,void 0x0,_0x5e671b);}return{'m1Prime':_0x13f783,'m2Prime':_0x301ed5};}},Aa={'m1':_0x224ab4['id'],'m2':_0x386b55['id'],'handler'(_0x57086d,_0x14f44a){const _0x2c4847=_0x572182,_0x2e4227={'m1Prime':_0x57086d,'m2Prime':_0x14f44a};if(_0x57086d[_0x2c4847(0x8d)][_0x2c4847(0xdb)]!==_0x14f44a[_0x2c4847(0x8d)][_0x2c4847(0xdb)]||_0x57086d['params'][_0x2c4847(0x20b)]!==_0x14f44a[_0x2c4847(0x8d)][_0x2c4847(0x20b)])return _0x2e4227;const _0x2144ea=_0x570d2f['deepClone'](_0x57086d),_0x16acaa=_0x570d2f[_0x2c4847(0xb4)](_0x14f44a),{ranges:_0x36b237,autoHeightInfo:_0x53c0f5}=_0x16acaa['params'];if(_0x36b237[_0x2c4847(0xaf)](_0x53d191=>{const _0x54496e=_0x2c4847,_0x3fed14=_0x44a143(h(_0x48173f(_0x57086d[_0x54496e(0x8d)][_0x54496e(0x19f)])),_0x48173f(_0x53d191));return _0x3fed14[_0x54496e(0xf6)]!==0x0?!0x0:(_0x53d191[_0x54496e(0x102)]+=_0x3fed14[_0x54496e(0xc3)],_0x53d191[_0x54496e(0x111)]+=_0x3fed14['step'],!0x1);}))return{'error':new Error(_0x2c4847(0x1ab))};if(typeof _0x53c0f5!=_0x2c4847(0x1b5)){for(let _0x1635ce=_0x57086d[_0x2c4847(0x8d)]['range'][_0x2c4847(0x102)];_0x1635ce<=_0x57086d[_0x2c4847(0x8d)][_0x2c4847(0x19f)]['endRow'];_0x1635ce++)_0x4a2d3e(_0x1635ce,void 0x0,_0x53c0f5);}return{'m1Prime':_0x2144ea,'m2Prime':_0x16acaa};}},Ta={'m1':_0x224ab4['id'],'m2':_0x2afd0c['id'],'handler':(_0x57a4d4,_0x59c38f)=>{const _0x5880ff=_0x572182,_0x3e381b={'m1Prime':_0x57a4d4,'m2Prime':_0x59c38f};if(_0x57a4d4[_0x5880ff(0x8d)]['unitId']!==_0x59c38f[_0x5880ff(0x8d)][_0x5880ff(0xdb)]||_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x20b)]!==_0x59c38f[_0x5880ff(0x8d)][_0x5880ff(0x20b)])return _0x3e381b;const _0x5f0526={'id':_0x1bb87d['id'],'params':{'unitId':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0xdb)],'subUnitId':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x20b)],'range':_0x57a4d4[_0x5880ff(0x8d)][_0x5880ff(0x19f)]}},_0x3c4028=wt(_0x59c38f,_0x5f0526);return{'m1Prime':[_0x57a4d4,..._0x3c4028],'m2Prime':[_0x59c38f,..._0x3c4028]};}},La={'m1':_0x224ab4['id'],'m2':_0x4e1baf['id'],'handler':(_0x551c04,_0x26a2ee)=>{const _0xa2c1b0=_0x572182,_0x292203={'m1Prime':_0x551c04,'m2Prime':_0x26a2ee};if(_0x551c04[_0xa2c1b0(0x8d)]['unitId']!==_0x26a2ee[_0xa2c1b0(0x8d)][_0xa2c1b0(0xdb)]||_0x26a2ee[_0xa2c1b0(0x8d)][_0xa2c1b0(0x20b)]!==_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0x20b)])return _0x292203;const _0x51c705={'id':_0x1bb87d['id'],'params':{'unitId':_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0xdb)],'subUnitId':_0x551c04['params'][_0xa2c1b0(0x20b)],'range':_0x551c04[_0xa2c1b0(0x8d)][_0xa2c1b0(0x19f)]}},_0x35bb26=Ct(_0x26a2ee,_0x51c705);return{'m1Prime':[_0x551c04,..._0x35bb26],'m2Prime':[_0x26a2ee,..._0x35bb26]};}},ka={'m1':_0x31c10b['id'],'m2':_0x1b398d['id'],'handler':(_0x4ecacb,_0x54505a)=>{const _0x2f38ed=_0x572182,_0x15acc1={'m1Prime':_0x4ecacb,'m2Prime':_0x54505a};if(_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0xdb)]!==_0x54505a['params'][_0x2f38ed(0xdb)]||_0x4ecacb['params']['subUnitId']!==_0x54505a[_0x2f38ed(0x8d)][_0x2f38ed(0x20b)])return _0x15acc1;const _0x4a1c7a={'id':_0x563de0['id'],'params':{'unitId':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0xdb)],'subUnitId':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0x20b)],'fromRange':_0x4ecacb[_0x2f38ed(0x8d)][_0x2f38ed(0x11d)],'toRange':_0x4ecacb['params'][_0x2f38ed(0x1d0)]}},_0x1d5a08=It(_0x54505a,_0x4a1c7a);return{'m1Prime':[_0x4ecacb,..._0x1d5a08],'m2Prime':[_0x54505a,..._0x1d5a08]};}},xa={'m1':_0x31c10b['id'],'m2':_0x4b0a3e['id'],'handler'(_0xd98b37,_0x3672aa){const _0x51d122=_0x572182,_0x1bfa16=ar[_0x51d122(0xcd)](_0x3672aa,_0xd98b37);return at(_0x1bfa16)?{'m1Prime':_0x1bfa16[_0x51d122(0xcf)],'m2Prime':_0x1bfa16[_0x51d122(0x119)]}:_0x1bfa16;}},Ha={'m1':_0x31c10b['id'],'m2':_0x31c10b['id'],'handler'(_0xaaccd8,_0x2737ce){const _0x5bf558=_0x572182,_0x4a0ecc={'m1Prime':_0xaaccd8,'m2Prime':_0x2737ce};if(_0xaaccd8[_0x5bf558(0x8d)]['unitId']!==_0x2737ce[_0x5bf558(0x8d)]['unitId']||_0xaaccd8['params']['subUnitId']!==_0x2737ce[_0x5bf558(0x8d)][_0x5bf558(0x20b)])return _0x4a0ecc;const _0x41fcbf=_0x570d2f[_0x5bf558(0xb4)](_0xaaccd8),_0xf32705=_0x570d2f[_0x5bf558(0xb4)](_0x2737ce),_0x1b7783=_0x2737ce[_0x5bf558(0x8d)][_0x5bf558(0x11d)],_0x49708a=_0x2737ce[_0x5bf558(0x8d)]['targetRange'],_0x49926f=_0xaaccd8[_0x5bf558(0x8d)]['sourceRange'],_0xa96711=_0xaaccd8[_0x5bf558(0x8d)][_0x5bf558(0x1d0)];if(_0x49926f[_0x5bf558(0x9d)]>=_0x1b7783[_0x5bf558(0x15a)]&&_0x49926f[_0x5bf558(0x15a)]<=_0x1b7783[_0x5bf558(0x9d)])return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20move\x20col')};const _0x1582cf=_0x2e8050({'start':_0x49926f['startColumn'],'end':_0x49926f['endColumn']},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711[_0x5bf558(0x9d)]},{'start':_0x1b7783[_0x5bf558(0x15a)],'end':_0x1b7783[_0x5bf558(0x9d)]}),_0x4ac75d=_0x2e8050({'start':_0x49926f[_0x5bf558(0x15a)],'end':_0x49926f[_0x5bf558(0x9d)]},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711['endColumn']},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]});_0x1582cf&&_0x4ac75d?(_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x11d)]['startColumn']+=_0x1582cf[_0x5bf558(0xc3)],_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x11d)][_0x5bf558(0x9d)]+=_0x1582cf[_0x5bf558(0xc3)]+(_0x1582cf[_0x5bf558(0xf6)]||0x0),_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x1d0)]['startColumn']+=_0x4ac75d['step'],_0xf32705[_0x5bf558(0x8d)][_0x5bf558(0x1d0)][_0x5bf558(0x9d)]+=_0x4ac75d[_0x5bf558(0xc3)]+(_0x4ac75d[_0x5bf558(0xf6)]||0x0)):_0xf32705['id']=_0x1a62da['id'];const _0x4cf6a6=_0x2e8050({'start':_0x1b7783['startColumn'],'end':_0x1b7783[_0x5bf558(0x9d)]},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]},{'start':_0x49926f[_0x5bf558(0x15a)],'end':_0x49926f[_0x5bf558(0x9d)]}),_0x4cd525=_0x2e8050({'start':_0x1b7783[_0x5bf558(0x15a)],'end':_0x1b7783[_0x5bf558(0x9d)]},{'start':_0x49708a[_0x5bf558(0x15a)],'end':_0x49708a[_0x5bf558(0x9d)]},{'start':_0xa96711[_0x5bf558(0x15a)],'end':_0xa96711[_0x5bf558(0x9d)]});return _0x4cf6a6&&_0x4cd525?(_0x41fcbf[_0x5bf558(0x8d)][_0x5bf558(0x11d)]['startColumn']+=_0x4cf6a6['step'],_0x41fcbf[_0x5bf558(0x8d)][_0x5bf558(0x11d)][_0x5bf558(0x9d)]+=_0x4cf6a6[_0x5bf558(0xc3)]+(_0x4cf6a6['length']||0x0),_0x41fcbf['params'][_0x5bf558(0x1d0)][_0x5bf558(0x15a)]+=_0x4cd525[_0x5bf558(0xc3)],_0x41fcbf['params'][_0x5bf558(0x1d0)][_0x5bf558(0x9d)]+=_0x4cd525[_0x5bf558(0xc3)]+(_0x4cd525[_0x5bf558(0xf6)]||0x0)):_0x41fcbf['id']=_0x1a62da['id'],{'m1Prime':_0x41fcbf,'m2Prime':_0xf32705};}},Fa={'m1':_0x31c10b['id'],'m2':_0x43f1cd['id'],'handler'(_0x5f51d3,_0x4a54fe){const _0x2ef49c=_0x572182,_0x46ae67={'m1Prime':_0x5f51d3,'m2Prime':_0x4a54fe};if(_0x5f51d3['params'][_0x2ef49c(0xdb)]!==_0x4a54fe[_0x2ef49c(0x8d)][_0x2ef49c(0xdb)]||_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x20b)]!==_0x4a54fe[_0x2ef49c(0x8d)][_0x2ef49c(0x1b0)][_0x2ef49c(0x20b)]&&_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x20b)]!==_0x4a54fe[_0x2ef49c(0x8d)]['to']['subUnitId'])return _0x46ae67;const _0x3e1888=_0x570d2f[_0x2ef49c(0xb4)](_0x5f51d3),_0x387629=_0x570d2f[_0x2ef49c(0xb4)](_0x4a54fe),_0x2715c5=_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x11d)],_0x23218b=_0x5f51d3[_0x2ef49c(0x8d)][_0x2ef49c(0x1d0)];if(_0x5f51d3[_0x2ef49c(0x8d)]['subUnitId']===_0x4a54fe['params']['from'][_0x2ef49c(0x20b)]){const _0x4df43b=new _0x1f7bb9(_0x387629['params'][_0x2ef49c(0x1b0)]['value']),_0x51632f=_0x4df43b[_0x2ef49c(0x182)]();if(H({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x51632f['startColumn'],'end':_0x51632f[_0x2ef49c(0x9d)]})||H({'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x51632f[_0x2ef49c(0x15a)],'end':_0x51632f[_0x2ef49c(0x9d)]}))return{'error':new Error(_0x2ef49c(0x13c))};const _0xf5d0a7=_0x2e8050({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5['endColumn']},{'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x51632f[_0x2ef49c(0x15a)],'end':_0x51632f[_0x2ef49c(0x9d)]});if(_0xf5d0a7[_0x2ef49c(0xf6)]!==0x0)return{'error':new Error(_0x2ef49c(0x13c))};_0xf5d0a7[_0x2ef49c(0xc3)]!==0x0&&_0x4df43b['moveColumns'](_0x2715c5[_0x2ef49c(0x15a)],_0x2715c5[_0x2ef49c(0x9d)]-_0x2715c5[_0x2ef49c(0x15a)]+0x1,_0x23218b[_0x2ef49c(0x15a)]),_0x387629['params'][_0x2ef49c(0x1b0)][_0x2ef49c(0x17e)]=_0x4df43b[_0x2ef49c(0x16a)]();}if(_0x5f51d3[_0x2ef49c(0x8d)]['subUnitId']===_0x4a54fe[_0x2ef49c(0x8d)]['to'][_0x2ef49c(0x20b)]){const _0x1af94d=new _0x1f7bb9(_0x387629[_0x2ef49c(0x8d)]['to'][_0x2ef49c(0x17e)]),_0x580435=_0x1af94d[_0x2ef49c(0x182)]();if(H({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x580435['startColumn'],'end':_0x580435[_0x2ef49c(0x9d)]})||H({'start':_0x23218b['startColumn'],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x580435[_0x2ef49c(0x15a)],'end':_0x580435['endColumn']}))return{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20move\x20range')};const _0x3bb0e0=_0x2e8050({'start':_0x2715c5[_0x2ef49c(0x15a)],'end':_0x2715c5[_0x2ef49c(0x9d)]},{'start':_0x23218b[_0x2ef49c(0x15a)],'end':_0x23218b[_0x2ef49c(0x9d)]},{'start':_0x580435[_0x2ef49c(0x15a)],'end':_0x580435['endColumn']});if(_0x3bb0e0[_0x2ef49c(0xf6)]!==0x0)return{'error':new Error(_0x2ef49c(0x13c))};_0x3bb0e0[_0x2ef49c(0xc3)]!==0x0&&_0x1af94d[_0x2ef49c(0x7e)](_0x2715c5[_0x2ef49c(0x15a)],_0x2715c5[_0x2ef49c(0x9d)]-_0x2715c5[_0x2ef49c(0x15a)]+0x1,_0x23218b['startColumn']),_0x387629['params']['to'][_0x2ef49c(0x17e)]=_0x1af94d['getMatrix']();}return{'m1Prime':_0x3e1888,'m2Prime':_0x387629};}},Ba={'m1':_0x31c10b['id'],'m2':_0x3dcda7['id'],'handler'(_0x3ef2b2,_0x3c622f){const _0x2d5254=_0x572182,_0x54005a={'m1Prime':_0x3ef2b2,'m2Prime':_0x3c622f};if(_0x3ef2b2[_0x2d5254(0x8d)][_0x2d5254(0xdb)]!==_0x3c622f[_0x2d5254(0x8d)][_0x2d5254(0xdb)]||_0x3ef2b2[_0x2d5254(0x8d)]['subUnitId']!==_0x3c622f[_0x2d5254(0x8d)]['subUnitId'])return _0x54005a;const _0x2dff45=_0x570d2f['deepClone'](_0x3ef2b2),_0x1a84c6=_0x570d2f[_0x2d5254(0xb4)](_0x3c622f),{sourceRange:_0x2901b7,targetRange:_0x48e3fb}=_0x3ef2b2['params'],_0x57972d={'start':_0x2901b7['startColumn'],'end':_0x2901b7['endColumn']},_0x462c59={'start':_0x48e3fb[_0x2d5254(0x15a)],'end':_0x48e3fb['endColumn']};return _0x1a84c6[_0x2d5254(0x8d)][_0x2d5254(0xd1)][_0x2d5254(0xaf)](_0x1a88e4=>{const _0x18443b=_0x2d5254,_0x326bd0={'start':_0x1a88e4[_0x18443b(0x15a)],'end':_0x1a88e4[_0x18443b(0x9d)]},_0x4b88cb=H(_0x57972d,_0x326bd0),_0x5a535a=H(_0x462c59,_0x326bd0);if(_0x4b88cb||_0x5a535a)return!0x0;const _0x19cd26=_0x2e8050(_0x57972d,_0x462c59,_0x326bd0);return _0x19cd26[_0x18443b(0xf6)]!==0x0?!0x0:(_0x1a88e4[_0x18443b(0x15a)]+=_0x19cd26[_0x18443b(0xc3)],_0x1a88e4[_0x18443b(0x9d)]+=_0x19cd26[_0x18443b(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x2dff45,'m2Prime':_0x1a84c6};}},Ga={'m1':_0x31c10b['id'],'m2':_0x3c47fd['id'],'handler'(_0x4ab9e4,_0x21028b){const _0x45804b=_0x572182,_0x3e91f=_0x570d2f['deepClone'](_0x4ab9e4),_0x32fa36=_0x570d2f[_0x45804b(0xb4)](_0x21028b);if(_0x4ab9e4[_0x45804b(0x8d)][_0x45804b(0xdb)]!==_0x21028b[_0x45804b(0x8d)]['unitId']||_0x4ab9e4['params'][_0x45804b(0x20b)]!==_0x21028b[_0x45804b(0x8d)]['subUnitId'])return{'m1Prime':_0x3e91f,'m2Prime':_0x32fa36};const _0x587ffa=_0x32fa36['params'][_0x45804b(0xd1)][_0x45804b(0x146)]((_0x440bb4,_0x608bd4)=>{const _0x4807f9=_0x45804b,{sourceRange:_0x6574f8,targetRange:_0x57eea9}=_0x4ab9e4[_0x4807f9(0x8d)],_0x2b4ab0={..._0x608bd4};return _0x6574f8[_0x4807f9(0x9d)]<_0x2b4ab0['startColumn']&&_0x57eea9[_0x4807f9(0x15a)]>_0x2b4ab0[_0x4807f9(0x9d)]?(_0x2b4ab0[_0x4807f9(0x15a)]-=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,_0x2b4ab0[_0x4807f9(0x9d)]-=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,K(_0x2b4ab0)&&_0x440bb4[_0x4807f9(0x1ca)](_0x2b4ab0)):_0x6574f8[_0x4807f9(0x15a)]>_0x2b4ab0[_0x4807f9(0x9d)]&&_0x57eea9[_0x4807f9(0x9d)]<_0x2b4ab0['startColumn']?(_0x2b4ab0[_0x4807f9(0x15a)]+=_0x6574f8[_0x4807f9(0x9d)]-_0x6574f8[_0x4807f9(0x15a)]+0x1,_0x2b4ab0[_0x4807f9(0x9d)]+=_0x6574f8['endColumn']-_0x6574f8[_0x4807f9(0x15a)]+0x1,K(_0x2b4ab0)&&_0x440bb4['push'](_0x2b4ab0)):_0x5b3986[_0x4807f9(0x7a)](_0x2b4ab0,_0x6574f8)||_0x5b3986[_0x4807f9(0x7a)](_0x2b4ab0,_0x57eea9)||_0x440bb4[_0x4807f9(0x1ca)](_0x2b4ab0),_0x440bb4;},[]);return _0x32fa36[_0x45804b(0x8d)][_0x45804b(0xd1)]=_0x587ffa,_0x32fa36['params']['ranges'][_0x45804b(0xf6)]===0x0&&(_0x32fa36['id']=_0x1a62da['id']),{'m1Prime':_0x3e91f,'m2Prime':_0x32fa36};}},ja={'m1':_0x31c10b['id'],'m2':_0x587c63['id'],'handler'(_0x4bac8d,_0x23b38a){const _0x2d9cb5=_0x572182,_0x1fcb77={'m1Prime':_0x4bac8d,'m2Prime':_0x23b38a};if(_0x4bac8d[_0x2d9cb5(0x8d)][_0x2d9cb5(0xdb)]!==_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0xdb)]||_0x4bac8d[_0x2d9cb5(0x8d)]['subUnitId']!==_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0x20b)])return _0x1fcb77;const _0x4df21e=_0x4bac8d[_0x2d9cb5(0x8d)]['sourceRange'][_0x2d9cb5(0x15a)],_0x55e6b9=_0x4bac8d[_0x2d9cb5(0x8d)]['sourceRange'][_0x2d9cb5(0x9d)],_0x59b5fd=_0x4bac8d[_0x2d9cb5(0x8d)][_0x2d9cb5(0x1d0)]['startColumn'],_0x2b0c4b=_0x4bac8d['params'][_0x2d9cb5(0x1d0)][_0x2d9cb5(0x9d)],_0x1ca597=_0x23b38a[_0x2d9cb5(0x8d)][_0x2d9cb5(0x19f)][_0x2d9cb5(0x15a)],_0x44ef92=_0x23b38a[_0x2d9cb5(0x8d)]['range'][_0x2d9cb5(0x9d)];if(_0x4df21e<=_0x44ef92&&_0x55e6b9>=_0x1ca597||_0x59b5fd<=_0x44ef92&&_0x2b0c4b>=_0x1ca597)return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20reorder\x20range')};const _0x547279=_0x2e8050({'start':_0x4df21e,'end':_0x55e6b9},{'start':_0x59b5fd,'end':_0x2b0c4b},{'start':_0x1ca597,'end':_0x44ef92}),_0x371d5d=_0x570d2f[_0x2d9cb5(0xb4)](_0x23b38a);return _0x371d5d['params'][_0x2d9cb5(0x19f)]['startColumn']+=_0x547279[_0x2d9cb5(0xc3)],_0x371d5d['params']['range']['endColumn']+=_0x547279[_0x2d9cb5(0xc3)]+(_0x547279[_0x2d9cb5(0xf6)]||0x0),{'m1Prime':_0x4bac8d,'m2Prime':_0x371d5d};}},$a={'m1':_0x31c10b['id'],'m2':_0x35fae0['id'],'handler'(_0x43c197,_0x109e65){const _0x2951f8=_0x572182,_0xab9ad7={'m1Prime':_0x43c197,'m2Prime':_0x109e65};if(_0x43c197[_0x2951f8(0x8d)][_0x2951f8(0xdb)]!==_0x109e65[_0x2951f8(0x8d)][_0x2951f8(0xdb)]||_0x43c197[_0x2951f8(0x8d)][_0x2951f8(0x20b)]!==_0x109e65[_0x2951f8(0x8d)][_0x2951f8(0x20b)])return _0xab9ad7;const _0x290adc=_0x570d2f['deepClone'](_0x43c197),_0x3a5af4=_0x570d2f[_0x2951f8(0xb4)](_0x109e65),{columnData:_0x5cc05e}=_0x3a5af4['params'],{sourceRange:_0x29fb2f,targetRange:_0x5c4795}=_0x43c197[_0x2951f8(0x8d)];return _0x3d006d(_0x29fb2f[_0x2951f8(0x15a)],_0x29fb2f[_0x2951f8(0x9d)]-_0x29fb2f[_0x2951f8(0x15a)]+0x1,_0x5c4795[_0x2951f8(0x15a)],_0x5cc05e),{'m1Prime':_0x290adc,'m2Prime':_0x3a5af4};}},Ya={'m1':_0x31c10b['id'],'m2':_0x519e99['id'],'handler'(_0x216995,_0x3f5cb2){const _0x3d66be=_0x572182,_0x2fa185={'m1Prime':_0x216995,'m2Prime':_0x3f5cb2};if(_0x216995[_0x3d66be(0x8d)][_0x3d66be(0xdb)]!==_0x3f5cb2[_0x3d66be(0x8d)][_0x3d66be(0xdb)]||_0x216995[_0x3d66be(0x8d)][_0x3d66be(0x20b)]!==_0x3f5cb2['params'][_0x3d66be(0x20b)])return _0x2fa185;const _0x139066=_0x570d2f[_0x3d66be(0xb4)](_0x216995),_0x4b6c58=_0x570d2f[_0x3d66be(0xb4)](_0x3f5cb2),{ranges:_0x590b69}=_0x4b6c58[_0x3d66be(0x8d)],{sourceRange:_0x4de9a2,targetRange:_0x127e6a}=_0x216995[_0x3d66be(0x8d)],_0x371a9c={'start':_0x4de9a2[_0x3d66be(0x15a)],'end':_0x4de9a2[_0x3d66be(0x9d)]},_0x155c36={'start':_0x127e6a[_0x3d66be(0x15a)],'end':_0x127e6a['endColumn']};return _0x590b69['some'](_0xfb374=>{const _0x3c50ef=_0x3d66be,_0x517f1a={'start':_0xfb374[_0x3c50ef(0x15a)],'end':_0xfb374[_0x3c50ef(0x9d)]},_0x5071f=H(_0x371a9c,_0x517f1a),_0x395c22=H(_0x155c36,_0x517f1a);if(_0x5071f||_0x395c22)return!0x0;const _0xd42774=_0x2e8050(_0x371a9c,_0x155c36,_0x517f1a);return _0xd42774[_0x3c50ef(0xf6)]!==0x0?!0x0:(_0xfb374['startColumn']+=_0xd42774['step'],_0xfb374[_0x3c50ef(0x9d)]+=_0xd42774[_0x3c50ef(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden')}:{'m1Prime':_0x139066,'m2Prime':_0x4b6c58};}},Ja={'m1':_0x31c10b['id'],'m2':_0x20806c['id'],'handler'(_0x4a7e13,_0x50d490){const _0x45c9eb=_0x572182,_0x352517={'m1Prime':_0x4a7e13,'m2Prime':_0x50d490};if(_0x4a7e13[_0x45c9eb(0x8d)][_0x45c9eb(0xdb)]!==_0x50d490[_0x45c9eb(0x8d)][_0x45c9eb(0xdb)]||_0x4a7e13['params'][_0x45c9eb(0x20b)]!==_0x50d490[_0x45c9eb(0x8d)][_0x45c9eb(0x20b)])return _0x352517;const _0x420c8c=_0x570d2f[_0x45c9eb(0xb4)](_0x4a7e13),_0x4b1565=_0x570d2f[_0x45c9eb(0xb4)](_0x50d490),{ranges:_0x186e1a}=_0x4b1565[_0x45c9eb(0x8d)],{sourceRange:_0x1d5c95,targetRange:_0x3d4d2f}=_0x4a7e13['params'],_0x56f526={'start':_0x1d5c95[_0x45c9eb(0x15a)],'end':_0x1d5c95['endColumn']},_0x3b5e9a={'start':_0x3d4d2f[_0x45c9eb(0x15a)],'end':_0x3d4d2f[_0x45c9eb(0x9d)]};return _0x186e1a[_0x45c9eb(0xaf)](_0x44d164=>{const _0x12ab2d=_0x45c9eb,_0x136125={'start':_0x44d164[_0x12ab2d(0x15a)],'end':_0x44d164['endColumn']},_0x1db6af=H(_0x56f526,_0x136125),_0x4781b3=H(_0x3b5e9a,_0x136125);if(_0x1db6af||_0x4781b3)return!0x0;const _0x26abf1=_0x2e8050(_0x56f526,_0x3b5e9a,_0x136125);return _0x26abf1['length']!==0x0?!0x0:(_0x44d164['startColumn']+=_0x26abf1[_0x12ab2d(0xc3)],_0x44d164[_0x12ab2d(0x9d)]+=_0x26abf1['step'],!0x1);})?{'error':new Error(_0x45c9eb(0xc1))}:{'m1Prime':_0x420c8c,'m2Prime':_0x4b1565};}},Xa={'m1':_0x31c10b['id'],'m2':_0x4075e['id'],'handler'(_0x439454,_0x4d5b3e){const _0x5b4f81=_0x572182,_0x3e4d62={'m1Prime':_0x439454,'m2Prime':_0x4d5b3e};if(_0x439454['params'][_0x5b4f81(0xdb)]!==_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0xdb)]||_0x439454[_0x5b4f81(0x8d)][_0x5b4f81(0x20b)]!==_0x4d5b3e[_0x5b4f81(0x8d)]['subUnitId'])return _0x3e4d62;const _0x29fbff=[_0x570d2f['deepClone'](_0x439454)],_0xe1aa73=_0x570d2f[_0x5b4f81(0xb4)](_0x4d5b3e),{sourceRange:_0x3904e9,targetRange:_0xdd4824}=_0x439454['params'],_0x7fcbc3={'start':_0x3904e9[_0x5b4f81(0x15a)],'end':_0x3904e9[_0x5b4f81(0x9d)]},_0x4a3963={'start':_0xdd4824[_0x5b4f81(0x15a)],'end':_0xdd4824['endColumn']},{values:_0x507202}=_0xe1aa73[_0x5b4f81(0x8d)],_0x4c9c0d=[];let _0x5244e6=!0x1;for(const _0x16ee5b in _0x507202){const _0x35e247=_0x507202[_0x16ee5b];if(_0x4c9c0d['push'](..._0x35e247[_0x5b4f81(0xd1)]),_0x35e247[_0x5b4f81(0xd1)][_0x5b4f81(0xaf)](_0x105228=>{const _0x6e0e8=_0x5b4f81,_0x127edb={'start':_0x105228['startColumn'],'end':_0x105228[_0x6e0e8(0x9d)]},_0x24a239=H(_0x7fcbc3,_0x127edb),_0x18756f=H(_0x4a3963,_0x127edb);if(_0x24a239||_0x18756f)return!0x0;const _0x3bc6c6=_0x2e8050(_0x7fcbc3,_0x4a3963,_0x127edb);return _0x3bc6c6['length']!==0x0?!0x0:(_0x3bc6c6[_0x6e0e8(0xc3)]!==0x0&&(_0x5244e6=!0x0),_0x105228[_0x6e0e8(0x15a)]+=_0x3bc6c6['step'],_0x105228[_0x6e0e8(0x9d)]+=_0x3bc6c6[_0x6e0e8(0xc3)],!0x1);}))return{'error':new Error(_0x5b4f81(0xe7))};}if(_0x5244e6){const _0x2615cf={'id':_0x3dcda7['id'],'params':{'unitId':_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0xdb)],'subUnitId':_0x4d5b3e[_0x5b4f81(0x8d)][_0x5b4f81(0x20b)],'ranges':_0x4c9c0d}};_0x29fbff[_0x5b4f81(0x1ca)](_0x2615cf,_0xe1aa73);}return{'m1Prime':_0x29fbff,'m2Prime':_0xe1aa73};}},Ka={'m1':_0x31c10b['id'],'m2':_0x15eb0a['id'],'handler'(_0x4053ab,_0x241012){const _0x14ac7e=_0x572182,_0x43135b={'m1Prime':_0x4053ab,'m2Prime':_0x241012};if(_0x4053ab[_0x14ac7e(0x8d)]['unitId']!==_0x241012['params'][_0x14ac7e(0xdb)]||_0x4053ab[_0x14ac7e(0x8d)]['subUnitId']!==_0x241012[_0x14ac7e(0x8d)][_0x14ac7e(0x20b)])return _0x43135b;const _0x2c3463=[_0x570d2f[_0x14ac7e(0xb4)](_0x4053ab)],_0xa819b8=_0x570d2f[_0x14ac7e(0xb4)](_0x241012),_0x433a2c=new _0x1f7bb9(_0xa819b8['params'][_0x14ac7e(0x208)]),{sourceRange:_0x15c296,targetRange:_0x3bb3ac}=_0x4053ab[_0x14ac7e(0x8d)],_0x4e4efe=_0x15c296[_0x14ac7e(0x15a)],_0x2e7ae3=_0x15c296[_0x14ac7e(0x9d)]-_0x15c296[_0x14ac7e(0x15a)]+0x1,_0x2d52c0=_0x3bb3ac[_0x14ac7e(0x15a)];_0x433a2c[_0x14ac7e(0x7e)](_0x4e4efe,_0x2e7ae3,_0x2d52c0);const _0x3a05f1=new _0x1f7bb9();let _0x27cc8f=!0x1;if(_0x433a2c[_0x14ac7e(0x86)]((_0x37f6ee,_0x575243,_0x2290d4)=>{const _0x534872=_0x14ac7e;if(_0x2290d4&&_0x2290d4['f']){const _0x84af6=_0x2290d4['f'];let _0x4ef3ce=!0x1;const _0x1165e3=dt(_0x4053ab[_0x534872(0x8d)][_0x534872(0xdb)],_0x4053ab['params'][_0x534872(0x20b)],_0x84af6,_0x417150=>{const _0xe1d0ac=_0x534872,_0x18b03e=_0x2e8050({'start':_0x4053ab[_0xe1d0ac(0x8d)]['sourceRange'][_0xe1d0ac(0x15a)],'end':_0x4053ab[_0xe1d0ac(0x8d)]['sourceRange'][_0xe1d0ac(0x9d)]},{'start':_0x4053ab[_0xe1d0ac(0x8d)][_0xe1d0ac(0x1d0)][_0xe1d0ac(0x15a)],'end':_0x4053ab[_0xe1d0ac(0x8d)][_0xe1d0ac(0x1d0)][_0xe1d0ac(0x9d)]},{'start':_0x417150[_0xe1d0ac(0x15a)],'end':_0x417150[_0xe1d0ac(0x9d)]});return(_0x18b03e[_0xe1d0ac(0xc3)]!==0x0||_0x18b03e[_0xe1d0ac(0xf6)]!==0x0)&&(_0x4ef3ce=!0x0,_0x417150[_0xe1d0ac(0x15a)]+=_0x18b03e[_0xe1d0ac(0xc3)],_0x417150[_0xe1d0ac(0x9d)]+=_0x18b03e[_0xe1d0ac(0xc3)]+_0x18b03e[_0xe1d0ac(0xf6)]),_0x417150;});_0x4ef3ce&&(_0x27cc8f=!0x0,_0x2290d4['f']=_0x1165e3,_0x3a05f1[_0x534872(0x134)](_0x37f6ee,_0x575243,{..._0x2290d4}));}}),_0x27cc8f){const _0x29d3ab={'id':_0x15eb0a['id'],'params':{'unitId':_0x241012[_0x14ac7e(0x8d)]['unitId'],'subUnitId':_0x241012[_0x14ac7e(0x8d)][_0x14ac7e(0x20b)],'cellValue':_0x3a05f1['getMatrix']()}};_0x2c3463[_0x14ac7e(0x1ca)](_0x29d3ab);}return _0xa819b8[_0x14ac7e(0x8d)][_0x14ac7e(0x208)]=_0x433a2c[_0x14ac7e(0x16a)](),{'m1Prime':_0x2c3463,'m2Prime':_0xa819b8};}},za={'m1':_0x31c10b['id'],'m2':_0x23969e['id'],'handler'(_0x48109e,_0x26be90){const _0x49cb72=_0x572182,_0x2b1a4c={'m1Prime':[],'m2Prime':[]};if(_0x48109e[_0x49cb72(0x8d)][_0x49cb72(0xdb)]!==_0x26be90['params']['unitId']||_0x48109e['params'][_0x49cb72(0x20b)]!==_0x26be90[_0x49cb72(0x8d)][_0x49cb72(0x20b)])return _0x2b1a4c;const _0x4984f7=_0x570d2f[_0x49cb72(0xb4)](_0x26be90);let _0x31ff61=!0x1;return _0x4984f7[_0x49cb72(0x8d)][_0x49cb72(0x138)][_0x49cb72(0xc5)](_0x4aad85=>{const _0x23317b=_0x49cb72,{range:_0x32f243,primary:_0x305e00}=_0x4aad85,_0x511986=_0x2e8050({'start':_0x48109e[_0x23317b(0x8d)]['sourceRange'][_0x23317b(0x15a)],'end':_0x48109e['params'][_0x23317b(0x11d)][_0x23317b(0x9d)]},{'start':_0x48109e['params']['targetRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x1d0)][_0x23317b(0x9d)]},{'start':_0x32f243['startColumn'],'end':_0x32f243[_0x23317b(0x9d)]});if(_0x511986[_0x23317b(0xf6)]||_0x511986[_0x23317b(0xc3)]){if(_0x32f243['startColumn']+=_0x511986[_0x23317b(0xc3)],_0x32f243[_0x23317b(0x9d)]+=_0x511986['step']+(_0x511986[_0x23317b(0xf6)]||0x0),_0x305e00){const _0x603acb=_0x2e8050({'start':_0x48109e[_0x23317b(0x8d)]['sourceRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x11d)][_0x23317b(0x9d)]},{'start':_0x48109e[_0x23317b(0x8d)]['targetRange'][_0x23317b(0x15a)],'end':_0x48109e[_0x23317b(0x8d)][_0x23317b(0x1d0)][_0x23317b(0x9d)]},{'start':_0x305e00[_0x23317b(0x15a)],'end':_0x305e00[_0x23317b(0x9d)]});(_0x603acb[_0x23317b(0xf6)]||_0x603acb[_0x23317b(0xc3)])&&(_0x305e00[_0x23317b(0x15a)]+=_0x603acb[_0x23317b(0xc3)],_0x305e00[_0x23317b(0x9d)]+=_0x603acb[_0x23317b(0xc3)],_0x305e00['actualColumn']+=_0x603acb[_0x23317b(0xc3)]);}_0x31ff61=!0x0;}}),_0x31ff61&&_0x2b1a4c[_0x49cb72(0xcf)][_0x49cb72(0x1ca)](_0x4984f7),_0x2b1a4c;}},qa={'m1':_0x31c10b['id'],'m2':_0x4112c4['id'],'handler'(_0x13a420,_0x10c9ec){const _0x14fbc8=_0x572182,_0x16d591={'m1Prime':_0x13a420,'m2Prime':_0x10c9ec};if(_0x13a420['params'][_0x14fbc8(0xdb)]!==_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0xdb)]||_0x13a420[_0x14fbc8(0x8d)][_0x14fbc8(0x20b)]!==_0x10c9ec[_0x14fbc8(0x8d)]['subUnitId'])return _0x16d591;const _0x46041a=_0x570d2f['deepClone'](_0x13a420),_0x3fad44=_0x570d2f[_0x14fbc8(0xb4)](_0x10c9ec),_0x122f2d=_0x2e8050({'start':_0x13a420['params']['sourceRange']['startColumn'],'end':_0x13a420[_0x14fbc8(0x8d)][_0x14fbc8(0x11d)][_0x14fbc8(0x9d)]},{'start':_0x13a420[_0x14fbc8(0x8d)]['targetRange'][_0x14fbc8(0x15a)],'end':_0x13a420['params'][_0x14fbc8(0x1d0)]['endColumn']},{'start':_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0x80)],'end':_0x10c9ec[_0x14fbc8(0x8d)][_0x14fbc8(0x80)]});if(_0x122f2d[_0x14fbc8(0xc3)]===0x0)return _0x16d591;_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x80)]+=_0x122f2d[_0x14fbc8(0xc3)],_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x211)]&&(_0x3fad44[_0x14fbc8(0x8d)][_0x14fbc8(0x211)][_0x14fbc8(0x7f)]+=_0x122f2d[_0x14fbc8(0xc3)]);const _0x169dd5=_0x570d2f['deepClone'](_0x10c9ec);return _0x169dd5[_0x14fbc8(0x8d)]['criteria']=null,{'m1Prime':[_0x169dd5,_0x3fad44,_0x46041a],'m2Prime':[_0x3fad44]};}},Za={'m1':_0x31c10b['id'],'m2':_0x23aded['id'],'handler'(_0x500161,_0xfbdc2e){const _0x261eb2=_0x572182,_0x158689={'m1Prime':[_0x500161],'m2Prime':[_0xfbdc2e]};if(_0x500161['params'][_0x261eb2(0xdb)]!==_0xfbdc2e['params']['unitId']||_0x500161[_0x261eb2(0x8d)][_0x261eb2(0x20b)]!==_0xfbdc2e['params'][_0x261eb2(0x20b)])return _0x158689;const _0x575074=_0x570d2f['deepClone'](_0x500161),_0x466fad=_0x570d2f['deepClone'](_0xfbdc2e),_0x2f3888=_0x2e8050({'start':_0x500161['params'][_0x261eb2(0x11d)][_0x261eb2(0x15a)],'end':_0x500161['params'][_0x261eb2(0x11d)][_0x261eb2(0x9d)]},{'start':_0x500161['params'][_0x261eb2(0x1d0)][_0x261eb2(0x15a)],'end':_0x500161[_0x261eb2(0x8d)]['targetRange'][_0x261eb2(0x9d)]},{'start':_0xfbdc2e['params'][_0x261eb2(0x19f)][_0x261eb2(0x15a)],'end':_0xfbdc2e[_0x261eb2(0x8d)][_0x261eb2(0x19f)]['endColumn']});return _0x466fad[_0x261eb2(0x8d)][_0x261eb2(0x19f)][_0x261eb2(0x15a)]+=_0x2f3888[_0x261eb2(0xc3)],_0x466fad['params'][_0x261eb2(0x19f)]['endColumn']+=_0x2f3888[_0x261eb2(0xc3)]+_0x2f3888[_0x261eb2(0xf6)],{'m1Prime':[_0x466fad,_0x575074],'m2Prime':[_0x466fad]};}},Qa={'m1':_0x31c10b['id'],'m2':_0x4cb95c['id'],'handler'(_0x44763c,_0xb5c84e){const _0x1479b9=_0x572182,_0x5b0071={'m1Prime':_0x44763c,'m2Prime':_0xb5c84e};if(_0x44763c['params'][_0x1479b9(0xdb)]!==_0xb5c84e['params'][_0x1479b9(0xdb)]||_0x44763c[_0x1479b9(0x8d)]['subUnitId']!==_0xb5c84e[_0x1479b9(0x8d)]['subUnitId'])return _0x5b0071;const _0x197b6a=_0x570d2f[_0x1479b9(0xb4)](_0x44763c),_0x14a4cd=_0x570d2f['deepClone'](_0xb5c84e),{ranges:_0x4bb4df,colWidth:_0x2fc011}=_0x14a4cd[_0x1479b9(0x8d)],{sourceRange:_0x326a84,targetRange:_0x4ccea8}=_0x44763c['params'],_0x30dfa2={'start':_0x326a84[_0x1479b9(0x15a)],'end':_0x326a84[_0x1479b9(0x9d)]},_0x378a40={'start':_0x4ccea8[_0x1479b9(0x15a)],'end':_0x4ccea8[_0x1479b9(0x9d)]};return _0x4bb4df[_0x1479b9(0xaf)](_0x286ae1=>{const _0x32e04f=_0x1479b9,_0x43dadb={'start':_0x286ae1[_0x32e04f(0x15a)],'end':_0x286ae1[_0x32e04f(0x9d)]},_0x14036a=_0x2e8050(_0x30dfa2,_0x378a40,_0x43dadb);return _0x14036a[_0x32e04f(0xf6)]!==0x0?!0x0:(_0x286ae1['startColumn']+=_0x14036a['step'],_0x286ae1[_0x32e04f(0x9d)]+=_0x14036a[_0x32e04f(0xc3)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width')}:(typeof _0x2fc011!=_0x1479b9(0x1b5)&&_0x3d006d(_0x326a84[_0x1479b9(0x15a)],_0x326a84['endColumn']-_0x326a84[_0x1479b9(0x15a)]+0x1,_0x4ccea8[_0x1479b9(0x15a)],_0x2fc011),{'m1Prime':_0x197b6a,'m2Prime':_0x14a4cd});}},ts={'m1':_0x31c10b['id'],'m2':_0x2afd0c['id'],'handler':(_0xf63a3d,_0x2f42c7)=>{const _0x474b81=_0x572182,_0x18e94f={'m1Prime':_0xf63a3d,'m2Prime':_0x2f42c7};if(_0xf63a3d[_0x474b81(0x8d)][_0x474b81(0xdb)]!==_0x2f42c7['params']['unitId']||_0xf63a3d['params']['subUnitId']!==_0x2f42c7['params'][_0x474b81(0x20b)])return _0x18e94f;const _0x5aff45={'id':_0x563de0['id'],'params':{'unitId':_0xf63a3d[_0x474b81(0x8d)][_0x474b81(0xdb)],'subUnitId':_0xf63a3d[_0x474b81(0x8d)]['subUnitId'],'fromRange':_0xf63a3d[_0x474b81(0x8d)]['sourceRange'],'toRange':_0xf63a3d['params'][_0x474b81(0x1d0)]}},_0x86d01=wt(_0x2f42c7,_0x5aff45);return{'m1Prime':[_0xf63a3d,..._0x86d01],'m2Prime':[_0x2f42c7,..._0x86d01]};}},es={'m1':_0x396099['id'],'m2':_0x396099['id'],'handler'(_0x2a566c,_0x4b17fa){const _0x5b6d2d=_0x572182;return _0x2a566c[_0x5b6d2d(0x8d)][_0x5b6d2d(0xdb)]!==_0x4b17fa['params'][_0x5b6d2d(0xdb)]||_0x2a566c['params'][_0x5b6d2d(0x20b)]!==_0x4b17fa[_0x5b6d2d(0x8d)][_0x5b6d2d(0x20b)]?{'m1Prime':_0x2a566c,'m2Prime':_0x4b17fa}:{'error':new Error('Move\x20conditional\x20formatting\x20rule\x20\x20is\x20conflict\x20with\x20self')};}},rs={'m1':_0x43f1cd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x359a33,_0x2ba00e){const _0x1838a1=_0x572182,_0x392780=sr[_0x1838a1(0xcd)](_0x2ba00e,_0x359a33);return at(_0x392780)?{'m1Prime':_0x392780['m2Prime'],'m2Prime':_0x392780[_0x1838a1(0x119)]}:_0x392780;}},ns={'m1':_0x43f1cd['id'],'m2':_0x43f1cd['id'],'handler'(_0x350ec0,_0x3a5048){const _0x32f427=_0x572182,_0x333c0f={'m1Prime':_0x350ec0,'m2Prime':_0x3a5048};if(_0x350ec0[_0x32f427(0x8d)][_0x32f427(0xdb)]!==_0x3a5048[_0x32f427(0x8d)][_0x32f427(0xdb)])return _0x333c0f;const _0x6cef4b=new _0x1f7bb9(_0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x17e)])['getDataRange'](),_0x157a16=new _0x1f7bb9(_0x3a5048['params'][_0x32f427(0x1b0)][_0x32f427(0x17e)])[_0x32f427(0x182)](),_0x3d4007=new _0x1f7bb9(_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x17e)])['getDataRange'](),_0x4b3d56=new _0x1f7bb9(_0x3a5048['params']['to'][_0x32f427(0x17e)])[_0x32f427(0x182)]();return _0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x6cef4b,_0x157a16)||_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x3d4007,_0x4b3d56)||_0x350ec0[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]&&_0x5b3986['intersects'](_0x6cef4b,_0x4b3d56)||_0x350ec0[_0x32f427(0x8d)]['to'][_0x32f427(0x20b)]===_0x3a5048[_0x32f427(0x8d)][_0x32f427(0x1b0)][_0x32f427(0x20b)]&&_0x5b3986[_0x32f427(0x7a)](_0x3d4007,_0x157a16)?{'error':new Error('Two\x20move-range\x20mutations\x20have\x20an\x20overlapping\x20range.')}:_0x333c0f;}},as={'m1':_0x43f1cd['id'],'m2':_0x3dcda7['id'],'handler'(_0x3b17e8,_0x20b66e){const _0x18e732=_0x572182,_0x51ac9d={'m1Prime':_0x3b17e8,'m2Prime':_0x20b66e};if(_0x3b17e8['params'][_0x18e732(0xdb)]!==_0x20b66e[_0x18e732(0x8d)][_0x18e732(0xdb)]||_0x3b17e8[_0x18e732(0x8d)][_0x18e732(0x1b0)][_0x18e732(0x20b)]!==_0x20b66e['params'][_0x18e732(0x20b)]&&_0x3b17e8[_0x18e732(0x8d)]['to'][_0x18e732(0x20b)]!==_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)])return _0x51ac9d;const _0x1c8931=new _0x1f7bb9(_0x3b17e8['params'][_0x18e732(0x1b0)][_0x18e732(0x17e)])['getDataRange'](),_0x582526=new _0x1f7bb9(_0x3b17e8['params']['to']['value'])[_0x18e732(0x182)]();return _0x3b17e8[_0x18e732(0x8d)][_0x18e732(0x1b0)][_0x18e732(0x20b)]===_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)]&&_0x20b66e['params'][_0x18e732(0xd1)][_0x18e732(0xaf)](_0x810b6a=>_0x5b3986[_0x18e732(0x7a)](_0x810b6a,_0x1c8931))?{'error':new Error(_0x18e732(0xe1))}:_0x3b17e8[_0x18e732(0x8d)]['to'][_0x18e732(0x20b)]===_0x20b66e[_0x18e732(0x8d)][_0x18e732(0x20b)]&&_0x20b66e[_0x18e732(0x8d)][_0x18e732(0xd1)]['some'](_0x1613c8=>_0x5b3986[_0x18e732(0x7a)](_0x1613c8,_0x582526))?{'error':new Error(_0x18e732(0xe1))}:_0x51ac9d;}},ss={'m1':_0x43f1cd['id'],'m2':_0x587c63['id'],'handler'(_0x49ab78,_0x213dfc){const _0x2714c3=_0x572182,_0x36a7a6={'m1Prime':_0x49ab78,'m2Prime':_0x213dfc};if(_0x49ab78[_0x2714c3(0x8d)][_0x2714c3(0xdb)]!==_0x213dfc[_0x2714c3(0x8d)]['unitId']||_0x49ab78['params']['from'][_0x2714c3(0x20b)]!==_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]&&_0x49ab78['params']['to']['subUnitId']!==_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)])return _0x36a7a6;if(_0x49ab78[_0x2714c3(0x8d)]['from'][_0x2714c3(0x20b)]===_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]){const _0x1c637a=new _0x1f7bb9(_0x49ab78[_0x2714c3(0x8d)][_0x2714c3(0x1b0)][_0x2714c3(0x17e)])[_0x2714c3(0x182)]();if(_0x5b3986[_0x2714c3(0x7a)](_0x1c637a,_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x19f)]))return{'error':new Error(_0x2714c3(0x8c))};}if(_0x49ab78[_0x2714c3(0x8d)]['to']['subUnitId']===_0x213dfc[_0x2714c3(0x8d)][_0x2714c3(0x20b)]){const _0x322ba0=new _0x1f7bb9(_0x49ab78[_0x2714c3(0x8d)]['to']['value'])[_0x2714c3(0x182)]();if(_0x5b3986['intersects'](_0x322ba0,_0x213dfc[_0x2714c3(0x8d)]['range']))return{'error':new Error(_0x2714c3(0x8c))};}return _0x36a7a6;}},os={'m1':_0x43f1cd['id'],'m2':_0x4075e['id'],'handler'(_0x220e84,_0x4b48ee){const _0x380acd=_0x572182,_0x5c6eae={'m1Prime':_0x220e84,'m2Prime':_0x4b48ee};if(_0x220e84[_0x380acd(0x8d)][_0x380acd(0xdb)]!==_0x4b48ee['params'][_0x380acd(0xdb)]||_0x220e84['params'][_0x380acd(0x1b0)][_0x380acd(0x20b)]!==_0x4b48ee[_0x380acd(0x8d)]['subUnitId']&&_0x220e84['params']['to'][_0x380acd(0x20b)]!==_0x4b48ee['params'][_0x380acd(0x20b)])return _0x5c6eae;const _0x394fbe=new _0x1f7bb9(_0x220e84[_0x380acd(0x8d)][_0x380acd(0x1b0)][_0x380acd(0x17e)])[_0x380acd(0x182)](),_0xdbd9f0=new _0x1f7bb9(_0x220e84[_0x380acd(0x8d)]['to'][_0x380acd(0x17e)])[_0x380acd(0x182)]();if(_0x220e84[_0x380acd(0x8d)][_0x380acd(0x1b0)]['subUnitId']===_0x4b48ee[_0x380acd(0x8d)][_0x380acd(0x20b)]){const {values:_0x34c2c3}=_0x4b48ee['params'];for(const _0x5a1af3 in _0x34c2c3)if(_0x34c2c3[_0x5a1af3][_0x380acd(0xd1)][_0x380acd(0xaf)](_0x139eb0=>_0x5b3986[_0x380acd(0x7a)](_0x139eb0,_0x394fbe)))return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x220e84[_0x380acd(0x8d)]['to'][_0x380acd(0x20b)]===_0x4b48ee[_0x380acd(0x8d)][_0x380acd(0x20b)]){const {values:_0x292a8b}=_0x4b48ee[_0x380acd(0x8d)];for(const _0x19a07a in _0x292a8b)if(_0x292a8b[_0x19a07a][_0x380acd(0xd1)][_0x380acd(0xaf)](_0x3d7f3f=>_0x5b3986['intersects'](_0x3d7f3f,_0xdbd9f0)))return{'error':new Error(_0x380acd(0xe1))};}return _0x5c6eae;}},is={'m1':_0x454b7a['id'],'m2':_0x1b398d['id'],'handler':(_0x4354c9,_0x1bdb5f)=>{const _0x23257e=_0x572182,_0x2eae1f={'m1Prime':_0x4354c9,'m2Prime':_0x1bdb5f};if(_0x4354c9[_0x23257e(0x8d)]['unitId']!==_0x1bdb5f['params'][_0x23257e(0xdb)]||_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x20b)]!==_0x1bdb5f[_0x23257e(0x8d)][_0x23257e(0x20b)])return _0x2eae1f;const _0x188e44={'id':_0x6ac3e3['id'],'params':{'unitId':_0x4354c9[_0x23257e(0x8d)]['unitId'],'subUnitId':_0x4354c9['params']['subUnitId'],'fromRange':_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x11d)],'toRange':_0x4354c9[_0x23257e(0x8d)][_0x23257e(0x1d0)]}},_0x1c0c87=It(_0x1bdb5f,_0x188e44);return{'m1Prime':[_0x4354c9,..._0x1c0c87],'m2Prime':[_0x1bdb5f,..._0x1c0c87]};}},ds={'m1':_0x454b7a['id'],'m2':_0x3bedd8['id'],'handler'(_0x350fd3,_0x48ff7f){const _0x4bc8c4=_0x572182,_0x12479b={'m1Prime':_0x350fd3,'m2Prime':_0x48ff7f};if(_0x350fd3[_0x4bc8c4(0x8d)][_0x4bc8c4(0xdb)]!==_0x48ff7f['params']['unitId']||_0x350fd3['params'][_0x4bc8c4(0x20b)]!==_0x48ff7f[_0x4bc8c4(0x8d)]['subUnitId'])return _0x12479b;const _0x499ccb={'id':_0x6ac3e3['id'],'params':{'fromRange':_0x350fd3['params']['sourceRange'],'toRange':_0x350fd3[_0x4bc8c4(0x8d)][_0x4bc8c4(0x1d0)]}},_0x24b58e=Tt(_0x48ff7f,_0x499ccb);return{'m1Prime':[_0x350fd3,..._0x24b58e],'m2Prime':[_0x48ff7f,..._0x24b58e]};}},ms={'m1':_0x454b7a['id'],'m2':_0x4b0a3e['id'],'handler'(_0x33d3c2,_0xdedbe5){const _0x19bd89=_0x572182,_0xfe7f1=or['handler'](_0xdedbe5,_0x33d3c2);return at(_0xfe7f1)?{'m1Prime':_0xfe7f1[_0x19bd89(0xcf)],'m2Prime':_0xfe7f1[_0x19bd89(0x119)]}:_0xfe7f1;}},us={'m1':_0x454b7a['id'],'m2':_0x43f1cd['id'],'handler'(_0x548abf,_0x21964c){const _0x8f04a3=_0x572182,_0x6cab0d={'m1Prime':_0x548abf,'m2Prime':_0x21964c};if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0xdb)]!==_0x21964c['params'][_0x8f04a3(0xdb)]||_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]!==_0x21964c['params'][_0x8f04a3(0x1b0)][_0x8f04a3(0x20b)]&&_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]!==_0x21964c[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x20b)])return _0x6cab0d;const _0x569dd2=_0x570d2f['deepClone'](_0x548abf),_0x2b5214=_0x570d2f[_0x8f04a3(0xb4)](_0x21964c),_0x5e5141=_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x11d)],_0x26c0b8=_0x548abf['params'][_0x8f04a3(0x1d0)];if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]===_0x21964c[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)]['subUnitId']){const _0x1008ae=new _0x1f7bb9(_0x2b5214[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)][_0x8f04a3(0x17e)]),_0x1471ab=_0x1008ae[_0x8f04a3(0x182)]();if(H({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x1471ab[_0x8f04a3(0x102)],'end':_0x1471ab[_0x8f04a3(0x111)]})||H({'start':_0x26c0b8['startRow'],'end':_0x26c0b8['endRow']},{'start':_0x1471ab[_0x8f04a3(0x102)],'end':_0x1471ab['endRow']}))return{'error':new Error(_0x8f04a3(0x118))};const _0x16f04e=_0x2e8050({'start':_0x5e5141['startRow'],'end':_0x5e5141['endRow']},{'start':_0x26c0b8[_0x8f04a3(0x102)],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x1471ab['startRow'],'end':_0x1471ab['endRow']});if(_0x16f04e[_0x8f04a3(0xf6)]!==0x0)return{'error':new Error(_0x8f04a3(0x118))};_0x16f04e[_0x8f04a3(0xc3)]!==0x0&&_0x1008ae[_0x8f04a3(0x199)](_0x5e5141['startRow'],_0x5e5141[_0x8f04a3(0x111)]-_0x5e5141['startRow']+0x1,_0x26c0b8['startRow']),_0x2b5214[_0x8f04a3(0x8d)][_0x8f04a3(0x1b0)][_0x8f04a3(0x17e)]=_0x1008ae[_0x8f04a3(0x16a)]();}if(_0x548abf[_0x8f04a3(0x8d)][_0x8f04a3(0x20b)]===_0x21964c['params']['to'][_0x8f04a3(0x20b)]){const _0xfb4f0b=new _0x1f7bb9(_0x2b5214[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x17e)]),_0x216495=_0xfb4f0b[_0x8f04a3(0x182)]();if(H({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]})||H({'start':_0x26c0b8[_0x8f04a3(0x102)],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]}))return{'error':new Error(_0x8f04a3(0x118))};const _0x3f3e4a=_0x2e8050({'start':_0x5e5141[_0x8f04a3(0x102)],'end':_0x5e5141[_0x8f04a3(0x111)]},{'start':_0x26c0b8['startRow'],'end':_0x26c0b8[_0x8f04a3(0x111)]},{'start':_0x216495[_0x8f04a3(0x102)],'end':_0x216495[_0x8f04a3(0x111)]});if(_0x3f3e4a[_0x8f04a3(0xf6)]!==0x0)return{'error':new Error(_0x8f04a3(0x118))};_0x3f3e4a[_0x8f04a3(0xc3)]!==0x0&&_0xfb4f0b[_0x8f04a3(0x199)](_0x5e5141['startRow'],_0x5e5141[_0x8f04a3(0x111)]-_0x5e5141[_0x8f04a3(0x102)]+0x1,_0x26c0b8[_0x8f04a3(0x102)]),_0x2b5214[_0x8f04a3(0x8d)]['to'][_0x8f04a3(0x17e)]=_0xfb4f0b['getMatrix']();}return{'m1Prime':_0x569dd2,'m2Prime':_0x2b5214};}},ls={'m1':_0x454b7a['id'],'m2':_0x454b7a['id'],'handler'(_0x5add5b,_0x484ee0){const _0x4f5bbc=_0x572182,_0x2690c2={'m1Prime':_0x5add5b,'m2Prime':_0x484ee0};if(_0x5add5b[_0x4f5bbc(0x8d)][_0x4f5bbc(0xdb)]!==_0x484ee0[_0x4f5bbc(0x8d)][_0x4f5bbc(0xdb)]||_0x5add5b['params'][_0x4f5bbc(0x20b)]!==_0x484ee0[_0x4f5bbc(0x8d)][_0x4f5bbc(0x20b)])return _0x2690c2;const _0x22c360=_0x570d2f[_0x4f5bbc(0xb4)](_0x5add5b),_0x264c98=_0x570d2f[_0x4f5bbc(0xb4)](_0x484ee0),_0x4d5615=_0x484ee0['params'][_0x4f5bbc(0x11d)],_0x512ab4=_0x484ee0[_0x4f5bbc(0x8d)]['targetRange'],_0x53d8c5=_0x5add5b[_0x4f5bbc(0x8d)]['sourceRange'],_0x2a3106=_0x5add5b[_0x4f5bbc(0x8d)]['targetRange'];if(_0x53d8c5[_0x4f5bbc(0x111)]>=_0x4d5615[_0x4f5bbc(0x102)]&&_0x53d8c5[_0x4f5bbc(0x102)]<=_0x4d5615[_0x4f5bbc(0x111)])return{'error':new Error(_0x4f5bbc(0xb7))};const _0x4cc55d=_0x2e8050({'start':_0x53d8c5[_0x4f5bbc(0x102)],'end':_0x53d8c5[_0x4f5bbc(0x111)]},{'start':_0x2a3106['startRow'],'end':_0x2a3106[_0x4f5bbc(0x111)]},{'start':_0x4d5615[_0x4f5bbc(0x102)],'end':_0x4d5615[_0x4f5bbc(0x111)]}),_0x5374cb=_0x2e8050({'start':_0x53d8c5[_0x4f5bbc(0x102)],'end':_0x53d8c5['endRow']},{'start':_0x2a3106[_0x4f5bbc(0x102)],'end':_0x2a3106[_0x4f5bbc(0x111)]},{'start':_0x512ab4[_0x4f5bbc(0x102)],'end':_0x512ab4['endRow']});_0x4cc55d&&_0x5374cb?(_0x264c98['params'][_0x4f5bbc(0x11d)]['startRow']+=_0x4cc55d[_0x4f5bbc(0xc3)],_0x264c98[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)]['endRow']+=_0x4cc55d['step']+(_0x4cc55d[_0x4f5bbc(0xf6)]||0x0),_0x264c98[_0x4f5bbc(0x8d)][_0x4f5bbc(0x1d0)]['startRow']+=_0x5374cb['step'],_0x264c98['params'][_0x4f5bbc(0x1d0)]['endRow']+=_0x5374cb[_0x4f5bbc(0xc3)]+(_0x5374cb['length']||0x0)):_0x264c98['id']=_0x1a62da['id'];const _0x38115b=_0x2e8050({'start':_0x4d5615[_0x4f5bbc(0x102)],'end':_0x4d5615['endRow']},{'start':_0x512ab4[_0x4f5bbc(0x102)],'end':_0x512ab4[_0x4f5bbc(0x111)]},{'start':_0x53d8c5['startRow'],'end':_0x53d8c5[_0x4f5bbc(0x111)]}),_0x37377c=_0x2e8050({'start':_0x4d5615['startRow'],'end':_0x4d5615[_0x4f5bbc(0x111)]},{'start':_0x512ab4['startRow'],'end':_0x512ab4['endRow']},{'start':_0x2a3106['startRow'],'end':_0x2a3106[_0x4f5bbc(0x111)]});return _0x38115b&&_0x37377c?(_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)][_0x4f5bbc(0x102)]+=_0x38115b[_0x4f5bbc(0xc3)],_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x11d)]['endRow']+=_0x38115b[_0x4f5bbc(0xc3)]+(_0x38115b['length']||0x0),_0x22c360[_0x4f5bbc(0x8d)][_0x4f5bbc(0x1d0)][_0x4f5bbc(0x102)]+=_0x37377c['step'],_0x22c360[_0x4f5bbc(0x8d)]['targetRange']['endRow']+=_0x37377c['step']+(_0x37377c[_0x4f5bbc(0xf6)]||0x0)):_0x22c360['id']=_0x1a62da['id'],{'m1Prime':_0x22c360,'m2Prime':_0x264c98};}},cs={'m1':_0x454b7a['id'],'m2':_0x3dcda7['id'],'handler'(_0xe0f377,_0x552e5a){const _0x20704a=_0x572182,_0x7bb41d={'m1Prime':_0xe0f377,'m2Prime':_0x552e5a};if(_0xe0f377[_0x20704a(0x8d)][_0x20704a(0xdb)]!==_0x552e5a[_0x20704a(0x8d)][_0x20704a(0xdb)]||_0xe0f377['params'][_0x20704a(0x20b)]!==_0x552e5a[_0x20704a(0x8d)][_0x20704a(0x20b)])return _0x7bb41d;const _0x39203e=_0x570d2f[_0x20704a(0xb4)](_0xe0f377),_0x1f89ac=_0x570d2f['deepClone'](_0x552e5a),{sourceRange:_0x210de7,targetRange:_0x47f001}=_0xe0f377[_0x20704a(0x8d)],_0x46b364={'start':_0x210de7[_0x20704a(0x102)],'end':_0x210de7[_0x20704a(0x111)]},_0x1728dd={'start':_0x47f001[_0x20704a(0x102)],'end':_0x47f001[_0x20704a(0x111)]};return _0x1f89ac[_0x20704a(0x8d)][_0x20704a(0xd1)]['some'](_0x233d0e=>{const _0xf03949=_0x20704a,_0xcb9091={'start':_0x233d0e[_0xf03949(0x102)],'end':_0x233d0e['endRow']},_0x3e9b8b=H(_0x46b364,_0xcb9091),_0x874876=H(_0x1728dd,_0xcb9091);if(_0x3e9b8b||_0x874876)return!0x0;const _0x2d4aeb=_0x2e8050(_0x46b364,_0x1728dd,_0xcb9091);return _0x2d4aeb['length']!==0x0?!0x0:(_0x233d0e[_0xf03949(0x102)]+=_0x2d4aeb[_0xf03949(0xc3)],_0x233d0e['endRow']+=_0x2d4aeb[_0xf03949(0xc3)],!0x1);})?{'error':new Error(_0x20704a(0xa2))}:{'m1Prime':_0x39203e,'m2Prime':_0x1f89ac};}},ps={'m1':_0x454b7a['id'],'m2':_0x3c47fd['id'],'handler'(_0x2737b3,_0x323d49){const _0x101ca8=_0x572182,_0x41dc90=_0x570d2f['deepClone'](_0x2737b3),_0x949b90=_0x570d2f['deepClone'](_0x323d49);if(_0x2737b3['params']['unitId']!==_0x323d49[_0x101ca8(0x8d)]['unitId']||_0x2737b3[_0x101ca8(0x8d)][_0x101ca8(0x20b)]!==_0x323d49['params']['subUnitId'])return{'m1Prime':_0x41dc90,'m2Prime':_0x949b90};const _0x30dba1=_0x949b90['params'][_0x101ca8(0xd1)]['reduce']((_0xd1c5f4,_0x503bc9)=>{const _0xb743a9=_0x101ca8,{sourceRange:_0x35e097,targetRange:_0x401d35}=_0x2737b3['params'],_0x363777={..._0x503bc9};return _0x35e097['endRow']<_0x363777[_0xb743a9(0x102)]&&_0x401d35[_0xb743a9(0x102)]>_0x363777['endRow']?(_0x363777[_0xb743a9(0x102)]-=_0x35e097[_0xb743a9(0x111)]-_0x35e097[_0xb743a9(0x102)]+0x1,_0x363777[_0xb743a9(0x111)]-=_0x35e097[_0xb743a9(0x111)]-_0x35e097['startRow']+0x1,K(_0x363777)&&_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777)):_0x35e097[_0xb743a9(0x102)]>_0x363777[_0xb743a9(0x111)]&&_0x401d35[_0xb743a9(0x111)]<_0x363777[_0xb743a9(0x102)]?(_0x363777[_0xb743a9(0x102)]+=_0x35e097['endRow']-_0x35e097[_0xb743a9(0x102)]+0x1,_0x363777[_0xb743a9(0x111)]+=_0x35e097[_0xb743a9(0x111)]-_0x35e097[_0xb743a9(0x102)]+0x1,K(_0x363777)&&_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777)):_0x5b3986[_0xb743a9(0x7a)](_0x363777,_0x35e097)||_0x5b3986[_0xb743a9(0x7a)](_0x363777,_0x401d35)||_0xd1c5f4[_0xb743a9(0x1ca)](_0x363777),_0xd1c5f4;},[]);return _0x949b90[_0x101ca8(0x8d)][_0x101ca8(0xd1)]=_0x30dba1,_0x949b90[_0x101ca8(0x8d)]['ranges'][_0x101ca8(0xf6)]===0x0&&(_0x949b90['id']=_0x1a62da['id']),{'m1Prime':_0x41dc90,'m2Prime':_0x949b90};}},fs={'m1':_0x454b7a['id'],'m2':_0x587c63['id'],'handler'(_0x48bde9,_0x2fe993){const _0x30411b=_0x572182;var _0x47495a;const _0x25632f={'m1Prime':_0x48bde9,'m2Prime':_0x2fe993};if(_0x48bde9[_0x30411b(0x8d)]['unitId']!==_0x2fe993['params'][_0x30411b(0xdb)]||_0x48bde9['params']['subUnitId']!==_0x2fe993[_0x30411b(0x8d)]['subUnitId'])return _0x25632f;const _0x10b456=Rs(_0x48bde9['params']['sourceRange'],_0x48bde9[_0x30411b(0x8d)]['targetRange']),_0x4c9d9a=_0x570d2f['deepClone'](_0x2fe993),{range:_0x3ed865}=_0x4c9d9a[_0x30411b(0x8d)],_0x3227de=Array['from']({'length':_0x3ed865['endRow']-_0x3ed865[_0x30411b(0x102)]+0x1},(_0x51b851,_0x105aa4)=>_0x105aa4+_0x3ed865[_0x30411b(0x102)]),_0x2d294d={},_0x55c7c8={},_0x170615=Math['min'](_0x48bde9['params'][_0x30411b(0x11d)][_0x30411b(0x102)],_0x48bde9[_0x30411b(0x8d)][_0x30411b(0x1d0)]['startRow'],..._0x3227de),_0x1ddca1=Math[_0x30411b(0xed)](_0x48bde9['params'][_0x30411b(0x11d)]['endRow'],_0x48bde9[_0x30411b(0x8d)]['targetRange'][_0x30411b(0x111)],..._0x3227de);for(let _0x43f25f=_0x170615;_0x43f25f<=_0x1ddca1;_0x43f25f++){const _0x44993a=_0x43f25f,_0x4038ec=(_0x47495a=_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x13f)][_0x43f25f])!=null?_0x47495a:_0x44993a,_0x4a85e2=_0x10b456(_0x4038ec);_0x44993a!==_0x4a85e2&&(_0x2d294d[_0x44993a]=_0x4a85e2),_0x4038ec!==_0x4a85e2&&(_0x55c7c8[_0x4038ec]=_0x4a85e2);}_0x4c9d9a['params'][_0x30411b(0x13f)]=_0x2d294d;const _0x17bb8d=Object[_0x30411b(0xab)](_0x2d294d)['map'](Number);_0x3ed865[_0x30411b(0x102)]=Math[_0x30411b(0x126)](..._0x17bb8d),_0x3ed865[_0x30411b(0x111)]=Math[_0x30411b(0xed)](..._0x17bb8d);const _0x3bbc50=[_0x48bde9],_0x126d3e=Object[_0x30411b(0xab)](_0x55c7c8)[_0x30411b(0x1e0)](Number);return _0x126d3e['length']>0x0&&_0x3bbc50['unshift']({'id':_0x587c63['id'],'params':{'unitId':_0x48bde9[_0x30411b(0x8d)][_0x30411b(0xdb)],'subUnitId':_0x48bde9['params'][_0x30411b(0x20b)],'range':{'startColumn':_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x19f)][_0x30411b(0x15a)],'endColumn':_0x2fe993[_0x30411b(0x8d)][_0x30411b(0x19f)][_0x30411b(0x9d)],'startRow':Math[_0x30411b(0x126)](..._0x126d3e),'endRow':Math[_0x30411b(0xed)](..._0x126d3e)},'order':_0x55c7c8}}),{'m1Prime':_0x3bbc50,'m2Prime':_0x4c9d9a};}},Rs=(_0x3ec04b,_0x2045f8)=>{const _0x180b87=_0x572182,_0x3d35db=_0x3ec04b[_0x180b87(0x111)]-_0x3ec04b[_0x180b87(0x102)]+0x1,_0x1ceac5=_0x3ec04b['startRow'],_0x5cf1d4=_0x2045f8['startRow'];return _0x34699f=>{const _0xb8e56f=_0x180b87;if(_0x1ceac5<=_0x5cf1d4){const _0x33dc3e=_0x2045f8[_0xb8e56f(0x102)]-_0x3ec04b['endRow']-0x1;if(_0x34699f>=_0x3ec04b[_0xb8e56f(0x102)]&&_0x34699f<=_0x3ec04b[_0xb8e56f(0x111)])return _0x34699f+_0x33dc3e;if(_0x34699f>_0x3ec04b['endRow']&&_0x34699f<_0x2045f8['startRow'])return _0x34699f-_0x3d35db;}if(_0x1ceac5>_0x5cf1d4){const _0x762d7c=_0x3ec04b[_0xb8e56f(0x102)]-_0x2045f8[_0xb8e56f(0x102)];if(_0x34699f>=_0x2045f8[_0xb8e56f(0x102)]&&_0x34699f<_0x3ec04b['startRow'])return _0x34699f+_0x3d35db;if(_0x34699f>=_0x3ec04b[_0xb8e56f(0x102)]&&_0x34699f<=_0x3ec04b[_0xb8e56f(0x111)])return _0x34699f-_0x762d7c;}return _0x34699f;};},hs={'m1':_0x454b7a['id'],'m2':_0x4075e['id'],'handler'(_0x1212c8,_0x2a3183){const _0x286599=_0x572182,_0xe478d8={'m1Prime':_0x1212c8,'m2Prime':_0x2a3183};if(_0x1212c8['params'][_0x286599(0xdb)]!==_0x2a3183['params'][_0x286599(0xdb)]||_0x1212c8[_0x286599(0x8d)]['subUnitId']!==_0x2a3183[_0x286599(0x8d)][_0x286599(0x20b)])return _0xe478d8;const _0x1469bf=[_0x570d2f[_0x286599(0xb4)](_0x1212c8)],_0x7dc9ba=_0x570d2f[_0x286599(0xb4)](_0x2a3183),{sourceRange:_0xbd93ee,targetRange:_0xcb1b06}=_0x1212c8[_0x286599(0x8d)],_0x563b66={'start':_0xbd93ee['startRow'],'end':_0xbd93ee['endRow']},_0x5c6094={'start':_0xcb1b06[_0x286599(0x102)],'end':_0xcb1b06[_0x286599(0x111)]},{values:_0x5ea4e8}=_0x7dc9ba[_0x286599(0x8d)],_0x32fced=[];let _0x17a666=!0x1;for(const _0x53690f in _0x5ea4e8){const _0x28de98=_0x5ea4e8[_0x53690f];if(_0x32fced[_0x286599(0x1ca)](..._0x28de98[_0x286599(0xd1)]),_0x28de98[_0x286599(0xd1)]['some'](_0x412f01=>{const _0x27b898=_0x286599,_0x39dc18={'start':_0x412f01[_0x27b898(0x102)],'end':_0x412f01['endRow']},_0x1b8a16=H(_0x563b66,_0x39dc18),_0x422835=H(_0x5c6094,_0x39dc18);if(_0x1b8a16||_0x422835)return!0x0;const _0x13b4dc=_0x2e8050(_0x563b66,_0x5c6094,_0x39dc18);return _0x13b4dc[_0x27b898(0xf6)]!==0x0?!0x0:(_0x13b4dc[_0x27b898(0xc3)]!==0x0&&(_0x17a666=!0x0),_0x412f01[_0x27b898(0x102)]+=_0x13b4dc[_0x27b898(0xc3)],_0x412f01[_0x27b898(0x111)]+=_0x13b4dc[_0x27b898(0xc3)],!0x1);}))return{'error':new Error(_0x286599(0x129))};}if(_0x17a666){const _0x353d6d={'id':_0x3dcda7['id'],'params':{'unitId':_0x2a3183[_0x286599(0x8d)][_0x286599(0xdb)],'subUnitId':_0x2a3183[_0x286599(0x8d)][_0x286599(0x20b)],'ranges':_0x32fced}};_0x1469bf[_0x286599(0x1ca)](_0x353d6d,_0x7dc9ba);}return{'m1Prime':_0x1469bf,'m2Prime':_0x7dc9ba};}},gs={'m1':_0x454b7a['id'],'m2':_0x15eb0a['id'],'handler'(_0x6ebcf5,_0x12dd65){const _0x254b13=_0x572182,_0x4465fb={'m1Prime':_0x6ebcf5,'m2Prime':_0x12dd65};if(_0x6ebcf5[_0x254b13(0x8d)][_0x254b13(0xdb)]!==_0x12dd65['params'][_0x254b13(0xdb)]||_0x6ebcf5['params'][_0x254b13(0x20b)]!==_0x12dd65[_0x254b13(0x8d)]['subUnitId'])return _0x4465fb;const _0x179ad8=[_0x570d2f['deepClone'](_0x6ebcf5)],_0x35af72=_0x570d2f[_0x254b13(0xb4)](_0x12dd65),_0x2d036c=new _0x1f7bb9(_0x35af72[_0x254b13(0x8d)][_0x254b13(0x208)]),{sourceRange:_0x4fc5db,targetRange:_0x262165}=_0x6ebcf5['params'],_0x32ba1a=_0x4fc5db[_0x254b13(0x102)],_0x238780=_0x4fc5db['endRow']-_0x4fc5db['startRow']+0x1,_0x30b3f8=_0x262165['startRow'];_0x2d036c['moveRows'](_0x32ba1a,_0x238780,_0x30b3f8);const _0x4da554=new _0x1f7bb9();let _0x979248=!0x1;if(_0x2d036c[_0x254b13(0x86)]((_0x5c3c42,_0x225246,_0x29c6af)=>{const _0x3c140e=_0x254b13;if(_0x29c6af&&_0x29c6af['f']){const _0x3060a6=_0x29c6af['f'];let _0x30dfbb=!0x1;const _0x3f32d0=dt(_0x6ebcf5[_0x3c140e(0x8d)]['unitId'],_0x6ebcf5[_0x3c140e(0x8d)]['subUnitId'],_0x3060a6,_0xf1c5f9=>{const _0x59f6c2=_0x3c140e,_0x4bd0bb=_0x2e8050({'start':_0x6ebcf5['params'][_0x59f6c2(0x11d)][_0x59f6c2(0x102)],'end':_0x6ebcf5['params']['sourceRange'][_0x59f6c2(0x111)]},{'start':_0x6ebcf5[_0x59f6c2(0x8d)][_0x59f6c2(0x1d0)][_0x59f6c2(0x102)],'end':_0x6ebcf5[_0x59f6c2(0x8d)]['targetRange'][_0x59f6c2(0x111)]},{'start':_0xf1c5f9[_0x59f6c2(0x102)],'end':_0xf1c5f9[_0x59f6c2(0x111)]});return(_0x4bd0bb['step']!==0x0||_0x4bd0bb[_0x59f6c2(0xf6)]!==0x0)&&(_0x30dfbb=!0x0,_0xf1c5f9[_0x59f6c2(0x102)]+=_0x4bd0bb['step'],_0xf1c5f9[_0x59f6c2(0x111)]+=_0x4bd0bb[_0x59f6c2(0xc3)]+_0x4bd0bb[_0x59f6c2(0xf6)]),_0xf1c5f9;});_0x30dfbb&&(_0x979248=!0x0,_0x29c6af['f']=_0x3f32d0,_0x4da554[_0x3c140e(0x134)](_0x5c3c42,_0x225246,{..._0x29c6af}));}}),_0x979248){const _0x368f5b={'id':_0x15eb0a['id'],'params':{'unitId':_0x12dd65[_0x254b13(0x8d)][_0x254b13(0xdb)],'subUnitId':_0x12dd65[_0x254b13(0x8d)][_0x254b13(0x20b)],'cellValue':_0x4da554[_0x254b13(0x16a)]()}};_0x179ad8['push'](_0x368f5b);}return _0x35af72[_0x254b13(0x8d)][_0x254b13(0x208)]=_0x2d036c['getMatrix'](),{'m1Prime':_0x179ad8,'m2Prime':_0x35af72};}},Is={'m1':_0x454b7a['id'],'m2':_0x36a513['id'],'handler'(_0x49b6ac,_0x3326d0){const _0x3d71a4=_0x572182,_0x5acd46={'m1Prime':_0x49b6ac,'m2Prime':_0x3326d0};if(_0x49b6ac[_0x3d71a4(0x8d)][_0x3d71a4(0xdb)]!==_0x3326d0[_0x3d71a4(0x8d)][_0x3d71a4(0xdb)]||_0x49b6ac[_0x3d71a4(0x8d)][_0x3d71a4(0x20b)]!==_0x3326d0[_0x3d71a4(0x8d)]['subUnitId'])return _0x5acd46;const _0x3c3210=_0x570d2f[_0x3d71a4(0xb4)](_0x49b6ac),_0x5ee90e=_0x570d2f['deepClone'](_0x3326d0),{rowData:_0x2a42fe}=_0x5ee90e['params'],{sourceRange:_0x111f3f,targetRange:_0x21c138}=_0x49b6ac['params'];return _0x3d006d(_0x111f3f['startRow'],_0x111f3f[_0x3d71a4(0x111)]-_0x111f3f[_0x3d71a4(0x102)]+0x1,_0x21c138[_0x3d71a4(0x102)],_0x2a42fe),{'m1Prime':_0x3c3210,'m2Prime':_0x5ee90e};}},ws={'m1':_0x454b7a['id'],'m2':_0xce09a7['id'],'handler'(_0x12d015,_0x39e469){const _0x23a763=_0x572182,_0xeae86d={'m1Prime':_0x12d015,'m2Prime':_0x39e469};if(_0x12d015[_0x23a763(0x8d)]['unitId']!==_0x39e469[_0x23a763(0x8d)]['unitId']||_0x12d015['params']['subUnitId']!==_0x39e469['params']['subUnitId'])return _0xeae86d;const _0x18c9e7=_0x570d2f[_0x23a763(0xb4)](_0x12d015),_0x141da3=_0x570d2f[_0x23a763(0xb4)](_0x39e469),{ranges:_0x12f87e}=_0x141da3['params'],{sourceRange:_0x43ac4a,targetRange:_0x1ac9c3}=_0x12d015['params'],_0x3f3fe2={'start':_0x43ac4a[_0x23a763(0x102)],'end':_0x43ac4a[_0x23a763(0x111)]},_0x1e56e6={'start':_0x1ac9c3[_0x23a763(0x102)],'end':_0x1ac9c3[_0x23a763(0x111)]};return _0x12f87e[_0x23a763(0xaf)](_0xc8db9d=>{const _0x41f478=_0x23a763,_0x2f874c={'start':_0xc8db9d[_0x41f478(0x102)],'end':_0xc8db9d[_0x41f478(0x111)]},_0x596372=H(_0x3f3fe2,_0x2f874c),_0x641b4d=H(_0x1e56e6,_0x2f874c);if(_0x596372||_0x641b4d)return!0x0;const _0x3741b6=_0x2e8050(_0x3f3fe2,_0x1e56e6,_0x2f874c);return _0x3741b6[_0x41f478(0xf6)]!==0x0?!0x0:(_0xc8db9d['startRow']+=_0x3741b6[_0x41f478(0xc3)],_0xc8db9d[_0x41f478(0x111)]+=_0x3741b6[_0x41f478(0xc3)],!0x1);})?{'error':new Error(_0x23a763(0x1d5))}:{'m1Prime':_0x18c9e7,'m2Prime':_0x141da3};}},Cs={'m1':_0x454b7a['id'],'m2':_0x2b245f['id'],'handler'(_0xa249fc,_0x4bdf11){const _0x52a630=_0x572182,_0x15268b={'m1Prime':_0xa249fc,'m2Prime':_0x4bdf11};if(_0xa249fc[_0x52a630(0x8d)][_0x52a630(0xdb)]!==_0x4bdf11['params'][_0x52a630(0xdb)]||_0xa249fc[_0x52a630(0x8d)][_0x52a630(0x20b)]!==_0x4bdf11['params'][_0x52a630(0x20b)])return _0x15268b;const _0xae1a5e=_0x570d2f[_0x52a630(0xb4)](_0xa249fc),_0x18aa79=_0x570d2f['deepClone'](_0x4bdf11),{ranges:_0x1c7d39}=_0x18aa79['params'],{sourceRange:_0x1e2380,targetRange:_0xcce51b}=_0xa249fc[_0x52a630(0x8d)],_0x4f979a={'start':_0x1e2380[_0x52a630(0x102)],'end':_0x1e2380[_0x52a630(0x111)]},_0x5e51cd={'start':_0xcce51b[_0x52a630(0x102)],'end':_0xcce51b['endRow']};return _0x1c7d39[_0x52a630(0xaf)](_0x52bce5=>{const _0x411ad8=_0x52a630,_0x3584ed={'start':_0x52bce5[_0x411ad8(0x102)],'end':_0x52bce5[_0x411ad8(0x111)]},_0x2090b8=H(_0x4f979a,_0x3584ed),_0xa32dd3=H(_0x5e51cd,_0x3584ed);if(_0x2090b8||_0xa32dd3)return!0x0;const _0x5525cc=_0x2e8050(_0x4f979a,_0x5e51cd,_0x3584ed);return _0x5525cc[_0x411ad8(0xf6)]!==0x0?!0x0:(_0x52bce5[_0x411ad8(0x102)]+=_0x5525cc[_0x411ad8(0xc3)],_0x52bce5[_0x411ad8(0x111)]+=_0x5525cc[_0x411ad8(0xc3)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible')}:{'m1Prime':_0xae1a5e,'m2Prime':_0x18aa79};}},Ps={'m1':_0x454b7a['id'],'m2':_0x23969e['id'],'handler'(_0x1ac7a2,_0x42e890){const _0x11858e=_0x572182,_0x39a621={'m1Prime':[],'m2Prime':[]};if(_0x1ac7a2[_0x11858e(0x8d)][_0x11858e(0xdb)]!==_0x42e890[_0x11858e(0x8d)][_0x11858e(0xdb)]||_0x1ac7a2[_0x11858e(0x8d)][_0x11858e(0x20b)]!==_0x42e890[_0x11858e(0x8d)][_0x11858e(0x20b)])return _0x39a621;const _0x5c959d=_0x570d2f['deepClone'](_0x42e890);let _0x45a6a2=!0x1;return _0x5c959d['params'][_0x11858e(0x138)][_0x11858e(0xc5)](_0x2db7e2=>{const _0x2e3b54=_0x11858e,{range:_0x56868d,primary:_0x3ed969}=_0x2db7e2,_0x339452=_0x2e8050({'start':_0x1ac7a2['params'][_0x2e3b54(0x11d)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)]['endRow']},{'start':_0x1ac7a2['params'][_0x2e3b54(0x1d0)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x111)]},{'start':_0x56868d[_0x2e3b54(0x102)],'end':_0x56868d[_0x2e3b54(0x111)]});if(_0x339452['length']||_0x339452[_0x2e3b54(0xc3)]){if(_0x56868d[_0x2e3b54(0x102)]+=_0x339452[_0x2e3b54(0xc3)],_0x56868d[_0x2e3b54(0x111)]+=_0x339452[_0x2e3b54(0xc3)]+(_0x339452[_0x2e3b54(0xf6)]||0x0),_0x3ed969){const _0x126513=_0x2e8050({'start':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x11d)][_0x2e3b54(0x111)]},{'start':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x102)],'end':_0x1ac7a2[_0x2e3b54(0x8d)][_0x2e3b54(0x1d0)][_0x2e3b54(0x111)]},{'start':_0x3ed969[_0x2e3b54(0x102)],'end':_0x3ed969[_0x2e3b54(0x111)]});(_0x126513[_0x2e3b54(0xf6)]||_0x126513['step'])&&(_0x3ed969[_0x2e3b54(0x102)]+=_0x126513[_0x2e3b54(0xc3)],_0x3ed969[_0x2e3b54(0x111)]+=_0x126513[_0x2e3b54(0xc3)],_0x3ed969[_0x2e3b54(0x1d9)]+=_0x126513[_0x2e3b54(0xc3)]);}_0x45a6a2=!0x0;}}),_0x45a6a2&&_0x39a621[_0x11858e(0xcf)][_0x11858e(0x1ca)](_0x5c959d),_0x39a621;}},Us={'m1':_0x454b7a['id'],'m2':_0x23aded['id'],'handler'(_0x33637e,_0x2ce293){const _0x2a62cf=_0x572182,_0x374935={'m1Prime':[_0x33637e],'m2Prime':[_0x2ce293]};if(_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0xdb)]!==_0x2ce293[_0x2a62cf(0x8d)][_0x2a62cf(0xdb)]||_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x20b)]!==_0x2ce293[_0x2a62cf(0x8d)]['subUnitId'])return _0x374935;const _0x4bcc84=_0x570d2f[_0x2a62cf(0xb4)](_0x33637e),_0x3fbffe=_0x570d2f[_0x2a62cf(0xb4)](_0x2ce293),_0x3a1650=_0x2e8050({'start':_0x33637e[_0x2a62cf(0x8d)]['sourceRange']['startRow'],'end':_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x11d)]['endRow']},{'start':_0x33637e[_0x2a62cf(0x8d)][_0x2a62cf(0x1d0)]['startRow'],'end':_0x33637e['params'][_0x2a62cf(0x1d0)]['endRow']},{'start':_0x2ce293[_0x2a62cf(0x8d)]['range'][_0x2a62cf(0x102)],'end':_0x2ce293[_0x2a62cf(0x8d)][_0x2a62cf(0x19f)][_0x2a62cf(0x111)]});return _0x3fbffe[_0x2a62cf(0x8d)][_0x2a62cf(0x19f)]['startRow']+=_0x3a1650[_0x2a62cf(0xc3)],_0x3fbffe[_0x2a62cf(0x8d)]['range'][_0x2a62cf(0x111)]+=_0x3a1650[_0x2a62cf(0xc3)]+_0x3a1650[_0x2a62cf(0xf6)],{'m1Prime':[_0x3fbffe,_0x4bcc84],'m2Prime':[_0x3fbffe]};}},bs={'m1':_0x454b7a['id'],'m2':_0x5357b7['id'],'handler'(_0x53c839,_0x32c451){const _0x2a445e=_0x572182,_0x28e492={'m1Prime':_0x53c839,'m2Prime':_0x32c451};if(_0x53c839['params'][_0x2a445e(0xdb)]!==_0x32c451[_0x2a445e(0x8d)]['unitId']||_0x53c839['params'][_0x2a445e(0x20b)]!==_0x32c451[_0x2a445e(0x8d)][_0x2a445e(0x20b)])return _0x28e492;const _0x4ec690=_0x570d2f[_0x2a445e(0xb4)](_0x53c839),_0x4ec3ff=_0x570d2f[_0x2a445e(0xb4)](_0x32c451),{rowsAutoHeightInfo:_0x2cf90e}=_0x4ec3ff[_0x2a445e(0x8d)],{sourceRange:_0x491825,targetRange:_0x1eab2c}=_0x53c839[_0x2a445e(0x8d)],_0x203e42={'start':_0x491825[_0x2a445e(0x102)],'end':_0x491825[_0x2a445e(0x111)]},_0x18ae12={'start':_0x1eab2c[_0x2a445e(0x102)],'end':_0x1eab2c[_0x2a445e(0x111)]};return _0x2cf90e['some'](_0x1233e5=>{const _0x4fa069=_0x2a445e,_0x86edd4={'start':_0x1233e5[_0x4fa069(0x1cb)],'end':_0x1233e5[_0x4fa069(0x1cb)]},_0x570c10=_0x2e8050(_0x203e42,_0x18ae12,_0x86edd4);return _0x570c10['length']!==0x0?!0x0:(_0x1233e5[_0x4fa069(0x1cb)]+=_0x570c10['step'],!0x1);})?{'error':new Error(_0x2a445e(0x1cd))}:{'m1Prime':_0x4ec690,'m2Prime':_0x4ec3ff};}},Ms={'m1':_0x454b7a['id'],'m2':_0xdb3bc1['id'],'handler'(_0x5a08c6,_0x517253){const _0x5d3f0a=_0x572182,_0x3f5ab1={'m1Prime':_0x5a08c6,'m2Prime':_0x517253};if(_0x5a08c6[_0x5d3f0a(0x8d)][_0x5d3f0a(0xdb)]!==_0x517253[_0x5d3f0a(0x8d)][_0x5d3f0a(0xdb)]||_0x5a08c6[_0x5d3f0a(0x8d)][_0x5d3f0a(0x20b)]!==_0x517253['params']['subUnitId'])return _0x3f5ab1;const _0xd7d8ba=_0x570d2f[_0x5d3f0a(0xb4)](_0x5a08c6),_0x332bcd=_0x570d2f[_0x5d3f0a(0xb4)](_0x517253),{ranges:_0x585ede,rowHeight:_0x4f9701}=_0x332bcd['params'],{sourceRange:_0x5ca9ed,targetRange:_0x576b88}=_0x5a08c6[_0x5d3f0a(0x8d)],_0x4fba51={'start':_0x5ca9ed['startRow'],'end':_0x5ca9ed[_0x5d3f0a(0x111)]},_0x391abe={'start':_0x576b88[_0x5d3f0a(0x102)],'end':_0x576b88['endRow']};return _0x585ede[_0x5d3f0a(0xaf)](_0x3ff7eb=>{const _0x86c299=_0x5d3f0a,_0x4c72f7={'start':_0x3ff7eb[_0x86c299(0x102)],'end':_0x3ff7eb['endRow']},_0x741605=_0x2e8050(_0x4fba51,_0x391abe,_0x4c72f7);return _0x741605[_0x86c299(0xf6)]!==0x0?!0x0:(_0x3ff7eb['startRow']+=_0x741605[_0x86c299(0xc3)],_0x3ff7eb[_0x86c299(0x111)]+=_0x741605[_0x86c299(0xc3)],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height')}:(typeof _0x4f9701!=_0x5d3f0a(0x1b5)&&_0x3d006d(_0x5ca9ed['startRow'],_0x5ca9ed[_0x5d3f0a(0x111)]-_0x5ca9ed[_0x5d3f0a(0x102)]+0x1,_0x576b88['startRow'],_0x4f9701),{'m1Prime':_0xd7d8ba,'m2Prime':_0x332bcd});}},vs={'m1':_0x454b7a['id'],'m2':_0x386b55['id'],'handler'(_0x241f16,_0x401f1a){const _0x4064e3=_0x572182,_0x4ee270={'m1Prime':_0x241f16,'m2Prime':_0x401f1a};if(_0x241f16['params']['unitId']!==_0x401f1a[_0x4064e3(0x8d)][_0x4064e3(0xdb)]||_0x241f16[_0x4064e3(0x8d)][_0x4064e3(0x20b)]!==_0x401f1a[_0x4064e3(0x8d)][_0x4064e3(0x20b)])return _0x4ee270;const _0x3a81de=_0x570d2f[_0x4064e3(0xb4)](_0x241f16),_0x16ad71=_0x570d2f[_0x4064e3(0xb4)](_0x401f1a),{ranges:_0x53d715,autoHeightInfo:_0x2b7d40}=_0x16ad71[_0x4064e3(0x8d)],{sourceRange:_0xc55892,targetRange:_0x31c2f5}=_0x241f16[_0x4064e3(0x8d)],_0x482564={'start':_0xc55892[_0x4064e3(0x102)],'end':_0xc55892['endRow']},_0x12afe1={'start':_0x31c2f5[_0x4064e3(0x102)],'end':_0x31c2f5['endRow']};return _0x53d715[_0x4064e3(0xaf)](_0x57ac05=>{const _0x332ec3=_0x4064e3,_0x15741a={'start':_0x57ac05[_0x332ec3(0x102)],'end':_0x57ac05[_0x332ec3(0x111)]},_0x367254=_0x2e8050(_0x482564,_0x12afe1,_0x15741a);return _0x367254[_0x332ec3(0xf6)]!==0x0?!0x0:(_0x57ac05[_0x332ec3(0x102)]+=_0x367254[_0x332ec3(0xc3)],_0x57ac05[_0x332ec3(0x111)]+=_0x367254[_0x332ec3(0xc3)],!0x1);})?{'error':new Error(_0x4064e3(0x203))}:(typeof _0x2b7d40!=_0x4064e3(0x1b5)&&_0x3d006d(_0xc55892[_0x4064e3(0x102)],_0xc55892['endRow']-_0xc55892[_0x4064e3(0x102)]+0x1,_0x31c2f5[_0x4064e3(0x102)],_0x2b7d40),{'m1Prime':_0x3a81de,'m2Prime':_0x16ad71});}},Es={'m1':_0x454b7a['id'],'m2':_0x2afd0c['id'],'handler':(_0x41eea6,_0x45dbaf)=>{const _0x45c63c=_0x572182,_0x1a95e2={'m1Prime':_0x41eea6,'m2Prime':_0x45dbaf};if(_0x41eea6[_0x45c63c(0x8d)]['unitId']!==_0x45dbaf['params'][_0x45c63c(0xdb)]||_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x20b)]!==_0x45dbaf[_0x45c63c(0x8d)][_0x45c63c(0x20b)])return _0x1a95e2;const _0x1934cc={'id':_0x6ac3e3['id'],'params':{'unitId':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0xdb)],'subUnitId':_0x41eea6[_0x45c63c(0x8d)]['subUnitId'],'fromRange':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x11d)],'toRange':_0x41eea6[_0x45c63c(0x8d)][_0x45c63c(0x1d0)]}},_0x2fd3c7=wt(_0x45dbaf,_0x1934cc);return{'m1Prime':[_0x41eea6,..._0x2fd3c7],'m2Prime':[_0x45dbaf,..._0x2fd3c7]};}},Ss={'m1':_0x454b7a['id'],'m2':_0x4e1baf['id'],'handler':(_0x529a4a,_0x3b582b)=>{const _0x9d390=_0x572182,_0x1dbd5f={'m1Prime':_0x529a4a,'m2Prime':_0x3b582b};if(_0x529a4a[_0x9d390(0x8d)][_0x9d390(0xdb)]!==_0x3b582b[_0x9d390(0x8d)][_0x9d390(0xdb)]||_0x3b582b[_0x9d390(0x8d)][_0x9d390(0x20b)]!==_0x529a4a[_0x9d390(0x8d)][_0x9d390(0x20b)])return _0x1dbd5f;const _0x372c7b={'id':_0x6ac3e3['id'],'params':{'fromRange':_0x529a4a[_0x9d390(0x8d)]['sourceRange'],'toRange':_0x529a4a[_0x9d390(0x8d)]['targetRange']}},_0x156ca7=Ct(_0x3b582b,_0x372c7b);return{'m1Prime':[_0x529a4a,..._0x156ca7],'m2Prime':[_0x3b582b,..._0x156ca7]};}},Ws={'m1':_0xe5c4bd['id'],'m2':_0x1b398d['id'],'handler':(_0xc9d97b,_0x585032)=>{const _0x4fd764=_0x572182,_0x3cf6eb={'m1Prime':_0xc9d97b,'m2Prime':_0x585032};if(_0xc9d97b['params']['unitId']!==_0x585032[_0x4fd764(0x8d)][_0x4fd764(0xdb)]||_0xc9d97b[_0x4fd764(0x8d)]['subUnitId']!==_0x585032[_0x4fd764(0x8d)][_0x4fd764(0x20b)])return _0x3cf6eb;const _0x16e5c4={'id':_0xf0fff1['id'],'params':{'unitId':_0xc9d97b[_0x4fd764(0x8d)][_0x4fd764(0xdb)],'subUnitId':_0xc9d97b[_0x4fd764(0x8d)][_0x4fd764(0x20b)],'range':_0xc9d97b[_0x4fd764(0x8d)]['range']}},_0x22b677=It(_0x585032,_0x16e5c4);return{'m1Prime':[_0xc9d97b,..._0x22b677],'m2Prime':[_0x585032,..._0x22b677]};}},Vs={'m1':_0xe5c4bd['id'],'m2':_0x3bedd8['id'],'handler'(_0x3aa00b,_0x52d95d){const _0x2da310=_0x572182,_0xc87f6f={'m1Prime':_0x3aa00b,'m2Prime':_0x52d95d};if(_0x3aa00b['params'][_0x2da310(0xdb)]!==_0x52d95d['params'][_0x2da310(0xdb)]||_0x3aa00b[_0x2da310(0x8d)][_0x2da310(0x20b)]!==_0x52d95d[_0x2da310(0x8d)][_0x2da310(0x20b)])return _0xc87f6f;const _0x20399d={'id':_0xf0fff1['id'],'params':{'range':_0x3aa00b['params'][_0x2da310(0x19f)]}},_0x4dc56f=Tt(_0x52d95d,_0x20399d);return{'m1Prime':[_0x3aa00b,..._0x4dc56f],'m2Prime':[_0x52d95d,..._0x4dc56f]};}},_s={'m1':_0xe5c4bd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x6ae3fb,_0x529a98){const _0x10ccf0=_0x572182,_0x2ae25d=ir[_0x10ccf0(0xcd)](_0x529a98,_0x6ae3fb);return at(_0x2ae25d)?{'m1Prime':_0x2ae25d[_0x10ccf0(0xcf)],'m2Prime':_0x2ae25d[_0x10ccf0(0x119)]}:_0x2ae25d;}},Os={'m1':_0xe5c4bd['id'],'m2':_0x31c10b['id'],'handler'(_0xc008b4,_0x535220){const _0x1b7821=_0x572182,_0x9daf66={'m1Prime':_0xc008b4,'m2Prime':_0x535220};if(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0xdb)]!==_0x535220[_0x1b7821(0x8d)][_0x1b7821(0xdb)]||_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x20b)]!==_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x20b)])return _0x9daf66;const _0x18cc6c=_0x570d2f[_0x1b7821(0xb4)](_0xc008b4),_0x168729=_0x570d2f[_0x1b7821(0xb4)](_0x535220);if(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]<=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]&&_0xc008b4['params'][_0x1b7821(0x19f)][_0x1b7821(0x9d)]>=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x15a)]||_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]<=_0x535220[_0x1b7821(0x8d)]['targetRange'][_0x1b7821(0x9d)]&&_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]['endColumn']>=_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x15a)])return{'error':new Error(_0x1b7821(0xc9))};const _0x4cb1db=_0x180da6(h(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]),h(_0x535220[_0x1b7821(0x8d)]['sourceRange'])),_0x52c1cc=_0x180da6(h(_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]),h(_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)]));_0x4cb1db&&_0x52c1cc?(_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x11d)]['startColumn']+=_0x4cb1db[_0x1b7821(0xc3)],_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]+=_0x4cb1db[_0x1b7821(0xc3)]+(_0x4cb1db[_0x1b7821(0xf6)]||0x0),_0x168729['params'][_0x1b7821(0x1d0)][_0x1b7821(0x15a)]+=_0x52c1cc[_0x1b7821(0xc3)],_0x168729[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x9d)]+=_0x52c1cc['step']+(_0x52c1cc[_0x1b7821(0xf6)]||0x0)):_0x168729['id']=_0x1a62da['id'];const _0x335e8a=_0x2e8050({'start':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)]['startColumn'],'end':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x11d)][_0x1b7821(0x9d)]},{'start':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x15a)],'end':_0x535220[_0x1b7821(0x8d)][_0x1b7821(0x1d0)][_0x1b7821(0x9d)]},{'start':_0xc008b4['params'][_0x1b7821(0x19f)]['startColumn'],'end':_0xc008b4[_0x1b7821(0x8d)][_0x1b7821(0x19f)]['endColumn']});if(_0x335e8a){const {step:_0x123f13,length:_0x4ea972}=_0x335e8a;_0x18cc6c['params']['range'][_0x1b7821(0x15a)]+=_0x123f13,_0x18cc6c[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x9d)]+=_0x123f13+(_0x4ea972||0x0);}else _0x18cc6c[_0x1b7821(0x8d)][_0x1b7821(0x19f)][_0x1b7821(0x15a)]=0x0,_0x18cc6c['params'][_0x1b7821(0x19f)]['endColumn']=-0x1;return{'m1Prime':_0x18cc6c,'m2Prime':_0x168729};}},ys={'m1':_0xe5c4bd['id'],'m2':_0x43f1cd['id'],'handler'(_0x42fb91,_0x3729d1){const _0x371f3a=_0x572182,_0x137b90={'m1Prime':_0x42fb91,'m2Prime':_0x3729d1};if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0xdb)]!==_0x3729d1[_0x371f3a(0x8d)][_0x371f3a(0xdb)]||_0x42fb91['params'][_0x371f3a(0x20b)]!==_0x3729d1[_0x371f3a(0x8d)][_0x371f3a(0x1b0)][_0x371f3a(0x20b)]&&_0x42fb91[_0x371f3a(0x8d)]['subUnitId']!==_0x3729d1[_0x371f3a(0x8d)]['to']['subUnitId'])return _0x137b90;const _0x33192d=_0x570d2f[_0x371f3a(0xb4)](_0x42fb91),_0x4a4cc8=_0x570d2f[_0x371f3a(0xb4)](_0x3729d1),{startColumn:_0x55c3a4,endColumn:_0x231457}=_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x19f)];if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x20b)]===_0x3729d1['params'][_0x371f3a(0x1b0)][_0x371f3a(0x20b)]){const _0x5a3675=new _0x1f7bb9(_0x4a4cc8[_0x371f3a(0x8d)][_0x371f3a(0x1b0)][_0x371f3a(0x17e)]),_0x4a7ad8=_0x5a3675['getDataRange'](),{startColumn:_0x1101f1,endColumn:_0x23d996}=_0x4a7ad8;if(_0x1101f1<=_0x231457&&_0x23d996>=_0x55c3a4)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x231457<_0x1101f1&&_0x5a3675[_0x371f3a(0x16b)](_0x55c3a4,_0x231457-_0x55c3a4+0x1),_0x4a4cc8[_0x371f3a(0x8d)]['from'][_0x371f3a(0x17e)]=_0x5a3675[_0x371f3a(0x16a)]();}if(_0x42fb91[_0x371f3a(0x8d)][_0x371f3a(0x20b)]===_0x3729d1[_0x371f3a(0x8d)]['to'][_0x371f3a(0x20b)]){const _0x370c14=new _0x1f7bb9(_0x4a4cc8[_0x371f3a(0x8d)]['to']['value']),_0x4160c4=_0x370c14[_0x371f3a(0x182)](),{startColumn:_0x2805ab,endColumn:_0x16fa17}=_0x4160c4;if(_0x2805ab<=_0x231457&&_0x16fa17>=_0x55c3a4)return{'error':new Error(_0x371f3a(0x165))};_0x231457<_0x2805ab&&_0x370c14[_0x371f3a(0x16b)](_0x55c3a4,_0x231457-_0x55c3a4+0x1),_0x4a4cc8[_0x371f3a(0x8d)]['to'][_0x371f3a(0x17e)]=_0x370c14[_0x371f3a(0x16a)]();}return{'m1Prime':_0x33192d,'m2Prime':_0x4a4cc8};}},Ns={'m1':_0xe5c4bd['id'],'m2':_0xe5c4bd['id'],'handler'(_0xef20be,_0x1defa0){const _0x4c99c6=_0x572182,_0x2217f3={'m1Prime':_0xef20be,'m2Prime':_0x1defa0};if(_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0xdb)]!==_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0xdb)]||_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0x20b)]!==_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0x20b)])return _0x2217f3;const _0x1e12d2=_0x570d2f[_0x4c99c6(0xb4)](_0xef20be),_0x45bb32=_0x570d2f['deepClone'](_0x1defa0),_0xd158b8=_0x180da6(_0xef20be[_0x4c99c6(0x8d)]['range'],_0x1defa0['params'][_0x4c99c6(0x19f)]);if(_0xd158b8){const {step:_0x15b8d5,length:_0x29c91f}=_0xd158b8;_0x45bb32[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x15a)]+=_0x15b8d5,_0x45bb32[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x9d)]+=_0x15b8d5+(_0x29c91f||0x0);}else _0x45bb32['id']=_0x1a62da['id'];const _0x4f05a1=_0x180da6(_0x1defa0[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)],_0xef20be[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)]);if(_0x4f05a1){const {step:_0x38e76,length:_0x2f7e1f}=_0x4f05a1;_0x1e12d2['params'][_0x4c99c6(0x19f)][_0x4c99c6(0x15a)]+=_0x38e76,_0x1e12d2[_0x4c99c6(0x8d)][_0x4c99c6(0x19f)][_0x4c99c6(0x9d)]+=_0x38e76+(_0x2f7e1f||0x0);}else _0x1e12d2['id']=_0x1a62da['id'];return{'m1Prime':_0x1e12d2,'m2Prime':_0x45bb32};}},Ds={'m1':_0xe5c4bd['id'],'m2':_0x3dcda7['id'],'handler'(_0x29dd00,_0x147991){const _0x59e4db=_0x572182,_0x3eee08={'m1Prime':_0x29dd00,'m2Prime':_0x147991};if(_0x29dd00[_0x59e4db(0x8d)]['unitId']!==_0x147991[_0x59e4db(0x8d)][_0x59e4db(0xdb)]||_0x29dd00['params']['subUnitId']!==_0x147991[_0x59e4db(0x8d)][_0x59e4db(0x20b)])return _0x3eee08;const _0x2c7f54=_0x570d2f[_0x59e4db(0xb4)](_0x29dd00),_0x1e7882=_0x570d2f[_0x59e4db(0xb4)](_0x147991),{ranges:_0x1ef4ad}=_0x1e7882[_0x59e4db(0x8d)];return _0x1ef4ad[_0x59e4db(0xaf)](_0x457905=>{const _0x59d271=_0x59e4db,_0x156769=_0x180da6(h(_0x29dd00[_0x59d271(0x8d)][_0x59d271(0x19f)]),h(_0x457905));return _0x156769===null||_0x156769[_0x59d271(0xf6)]!==0x0?!0x0:(_0x457905[_0x59d271(0x15a)]+=_0x156769['step'],_0x457905[_0x59d271(0x9d)]+=_0x156769[_0x59d271(0xc3)],!0x1);})?{'error':new Error(_0x59e4db(0x89))}:{'m1Prime':_0x2c7f54,'m2Prime':_0x1e7882};}},As={'m1':_0xe5c4bd['id'],'m2':_0x3c47fd['id'],'handler'(_0x3bd40d,_0x166071){const _0x14eb42=_0x572182,_0x3f64e5=_0x570d2f[_0x14eb42(0xb4)](_0x3bd40d),_0xdb6afc=_0x570d2f['deepClone'](_0x166071);if(_0x3bd40d[_0x14eb42(0x8d)][_0x14eb42(0xdb)]!==_0x166071[_0x14eb42(0x8d)][_0x14eb42(0xdb)]||_0x3bd40d[_0x14eb42(0x8d)][_0x14eb42(0x20b)]!==_0x166071[_0x14eb42(0x8d)][_0x14eb42(0x20b)])return{'m1Prime':_0x3f64e5,'m2Prime':_0xdb6afc};const _0x2b751c=_0xdb6afc[_0x14eb42(0x8d)][_0x14eb42(0xd1)]['reduce']((_0x476945,_0x1a6b0a)=>{const _0x553ad9=_0x14eb42,_0x1929d3=_0x3f64e5[_0x553ad9(0x8d)][_0x553ad9(0x19f)],_0x368b3f=_0x1929d3[_0x553ad9(0x9d)]-_0x1929d3[_0x553ad9(0x15a)]+0x1;let _0x37576d={..._0x1a6b0a};return _0x1929d3['startColumn']>_0x1a6b0a['endColumn']?_0x37576d={..._0x1a6b0a}:_0x1929d3['startColumn']>=_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x15a)]<=_0x1a6b0a[_0x553ad9(0x9d)]&&_0x1929d3[_0x553ad9(0x9d)]>_0x1a6b0a['endColumn']?(_0x37576d['endColumn']=_0x1929d3[_0x553ad9(0x15a)]-0x1,_0x1929d3['startColumn']===_0x1a6b0a[_0x553ad9(0x15a)]&&(_0x37576d=null)):_0x1929d3[_0x553ad9(0x15a)]>_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]<_0x1a6b0a[_0x553ad9(0x9d)]?_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a['endColumn']-_0x368b3f:_0x1929d3[_0x553ad9(0x15a)]<_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]>=_0x1a6b0a[_0x553ad9(0x15a)]&&_0x1929d3[_0x553ad9(0x9d)]<=_0x1a6b0a['endColumn']?(_0x37576d['startColumn']=_0x1929d3['startColumn'],_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a[_0x553ad9(0x9d)]-_0x368b3f,_0x1929d3[_0x553ad9(0x9d)]===_0x1a6b0a['endColumn']&&(_0x37576d=null)):_0x1929d3['startColumn']<=_0x1a6b0a['startColumn']&&_0x1929d3[_0x553ad9(0x9d)]>=_0x1a6b0a[_0x553ad9(0x9d)]?_0x37576d=null:_0x1929d3[_0x553ad9(0x9d)]<_0x1a6b0a[_0x553ad9(0x15a)]&&(_0x37576d[_0x553ad9(0x15a)]=_0x1a6b0a[_0x553ad9(0x15a)]-_0x368b3f,_0x37576d[_0x553ad9(0x9d)]=_0x1a6b0a[_0x553ad9(0x9d)]-_0x368b3f),_0x37576d&&!(_0x37576d[_0x553ad9(0x102)]===_0x37576d['endRow']&&_0x37576d[_0x553ad9(0x15a)]===_0x37576d['endColumn'])&&_0x476945[_0x553ad9(0x1ca)](_0x37576d),_0x476945;},[]);return _0xdb6afc[_0x14eb42(0x8d)][_0x14eb42(0xd1)]=_0x2b751c,{'m1Prime':_0x3f64e5,'m2Prime':_0xdb6afc};}},Ts={'m1':_0xe5c4bd['id'],'m2':_0x587c63['id'],'handler'(_0x2f3032,_0x56586f){const _0x4d5c15=_0x572182,_0xd50507={'m1Prime':_0x2f3032,'m2Prime':_0x56586f};if(_0x2f3032[_0x4d5c15(0x8d)]['unitId']!==_0x56586f[_0x4d5c15(0x8d)][_0x4d5c15(0xdb)]||_0x2f3032[_0x4d5c15(0x8d)][_0x4d5c15(0x20b)]!==_0x56586f[_0x4d5c15(0x8d)]['subUnitId'])return _0xd50507;const _0x17cd4e=_0x180da6(h(_0x2f3032['params'][_0x4d5c15(0x19f)]),h(_0x56586f['params'][_0x4d5c15(0x19f)]));if(!_0x17cd4e)return{'m1Prime':_0x2f3032,'m2Prime':[]};const _0x37bbc4=_0x570d2f[_0x4d5c15(0xb4)](_0x56586f);return _0x37bbc4['params'][_0x4d5c15(0x19f)][_0x4d5c15(0x15a)]+=_0x17cd4e['step'],_0x37bbc4[_0x4d5c15(0x8d)][_0x4d5c15(0x19f)]['endColumn']+=_0x17cd4e['step']+(_0x17cd4e[_0x4d5c15(0xf6)]||0x0),{'m1Prime':_0x2f3032,'m2Prime':_0x37bbc4};}},Ls={'m1':_0xe5c4bd['id'],'m2':_0x35fae0['id'],'handler'(_0x53478c,_0x3e3ad2){const _0x4efb90=_0x572182,_0x525b11={'m1Prime':_0x53478c,'m2Prime':_0x3e3ad2};if(_0x53478c[_0x4efb90(0x8d)]['unitId']!==_0x3e3ad2['params']['unitId']||_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x20b)]!==_0x3e3ad2[_0x4efb90(0x8d)]['subUnitId'])return _0x525b11;const _0x5b20eb=_0x570d2f[_0x4efb90(0xb4)](_0x53478c),_0x3bf07b=_0x570d2f[_0x4efb90(0xb4)](_0x3e3ad2),{columnData:_0x49a9bd}=_0x3bf07b[_0x4efb90(0x8d)];return _0x4aa10e(_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)]['startColumn'],_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)][_0x4efb90(0x9d)]-_0x53478c[_0x4efb90(0x8d)][_0x4efb90(0x19f)][_0x4efb90(0x15a)]+0x1,_0x49a9bd),{'m1Prime':_0x5b20eb,'m2Prime':_0x3bf07b};}},ks={'m1':_0xe5c4bd['id'],'m2':_0x519e99['id'],'handler'(_0x3c345e,_0x2c04f6){const _0x233571=_0x572182,_0x540073={'m1Prime':_0x3c345e,'m2Prime':_0x2c04f6};if(_0x3c345e['params']['unitId']!==_0x2c04f6[_0x233571(0x8d)][_0x233571(0xdb)]||_0x3c345e[_0x233571(0x8d)][_0x233571(0x20b)]!==_0x2c04f6['params'][_0x233571(0x20b)])return _0x540073;const _0x2378ec=_0x570d2f[_0x233571(0xb4)](_0x3c345e),_0x4f57bb=_0x570d2f[_0x233571(0xb4)](_0x2c04f6),{ranges:_0x986b4f}=_0x4f57bb['params'];return _0x986b4f[_0x233571(0xc5)](_0x197d04=>{const _0x16d7d1=_0x233571,_0x2a7f77=_0x180da6(h(_0x3c345e[_0x16d7d1(0x8d)][_0x16d7d1(0x19f)]),_0x197d04);_0x2a7f77==null?_0x4f57bb['id']=_0x1a62da['id']:(_0x197d04[_0x16d7d1(0x15a)]+=_0x2a7f77[_0x16d7d1(0xc3)],_0x197d04[_0x16d7d1(0x9d)]+=_0x2a7f77[_0x16d7d1(0xc3)]+_0x2a7f77[_0x16d7d1(0xf6)]);}),{'m1Prime':_0x2378ec,'m2Prime':_0x4f57bb};}},xs={'m1':_0xe5c4bd['id'],'m2':_0x20806c['id'],'handler'(_0x3ebda8,_0x29f4ab){const _0xf0cdc3=_0x572182,_0x32bef4={'m1Prime':_0x3ebda8,'m2Prime':_0x29f4ab};if(_0x3ebda8[_0xf0cdc3(0x8d)][_0xf0cdc3(0xdb)]!==_0x29f4ab[_0xf0cdc3(0x8d)][_0xf0cdc3(0xdb)]||_0x3ebda8[_0xf0cdc3(0x8d)][_0xf0cdc3(0x20b)]!==_0x29f4ab['params'][_0xf0cdc3(0x20b)])return _0x32bef4;const _0x2a855d=_0x570d2f[_0xf0cdc3(0xb4)](_0x3ebda8),_0x48bd93=_0x570d2f[_0xf0cdc3(0xb4)](_0x29f4ab),{ranges:_0x385345}=_0x48bd93[_0xf0cdc3(0x8d)];return _0x385345[_0xf0cdc3(0xc5)](_0x1a5b6d=>{const _0x3a0bbf=_0xf0cdc3,_0x583875=_0x180da6(h(_0x3ebda8[_0x3a0bbf(0x8d)][_0x3a0bbf(0x19f)]),_0x1a5b6d);_0x583875==null?_0x48bd93['id']=_0x1a62da['id']:(_0x1a5b6d[_0x3a0bbf(0x15a)]+=_0x583875['step'],_0x1a5b6d[_0x3a0bbf(0x9d)]+=_0x583875[_0x3a0bbf(0xc3)]+_0x583875[_0x3a0bbf(0xf6)]);}),{'m1Prime':_0x2a855d,'m2Prime':_0x48bd93};}},Hs={'m1':_0xe5c4bd['id'],'m2':_0x4075e['id'],'handler'(_0x1868cf,_0x3eaec0){const _0x39a65c=_0x572182,_0x32eb10={'m1Prime':_0x1868cf,'m2Prime':_0x3eaec0};if(_0x1868cf[_0x39a65c(0x8d)][_0x39a65c(0xdb)]!==_0x3eaec0['params']['unitId']||_0x1868cf[_0x39a65c(0x8d)][_0x39a65c(0x20b)]!==_0x3eaec0[_0x39a65c(0x8d)][_0x39a65c(0x20b)])return _0x32eb10;const _0x5d7975=[_0x570d2f[_0x39a65c(0xb4)](_0x1868cf)],_0x592316=_0x570d2f[_0x39a65c(0xb4)](_0x3eaec0),{values:_0x2d26d9}=_0x592316[_0x39a65c(0x8d)],_0x4eaf50=[];let _0x5a18d3=!0x1;for(const _0x427a08 in _0x2d26d9){const _0x24c5af=_0x2d26d9[_0x427a08];if(_0x4eaf50[_0x39a65c(0x1ca)](..._0x24c5af[_0x39a65c(0xd1)]),_0x24c5af[_0x39a65c(0xd1)]['some'](_0x51dcca=>{const _0xaa837c=_0x39a65c,_0x54fefa=_0x180da6(h(_0x1868cf['params'][_0xaa837c(0x19f)]),h(_0x51dcca));return _0x54fefa==null||_0x54fefa[_0xaa837c(0xf6)]!==0x0?!0x0:(_0x54fefa[_0xaa837c(0xc3)]!==0x0&&(_0x5a18d3=!0x0),_0x51dcca[_0xaa837c(0x15a)]+=_0x54fefa[_0xaa837c(0xc3)],_0x51dcca['endColumn']+=_0x54fefa[_0xaa837c(0xc3)],!0x1);}))return{'error':new Error(_0x39a65c(0x1f9))};}if(_0x5a18d3){const _0x5cb6b2={'id':_0x3dcda7['id'],'params':{'unitId':_0x3eaec0[_0x39a65c(0x8d)][_0x39a65c(0xdb)],'subUnitId':_0x3eaec0[_0x39a65c(0x8d)]['subUnitId'],'ranges':_0x4eaf50}};_0x5d7975[_0x39a65c(0x1ca)](_0x5cb6b2,_0x592316);}return{'m1Prime':_0x5d7975,'m2Prime':_0x592316};}},Fs={'m1':_0xe5c4bd['id'],'m2':_0x15eb0a['id'],'handler'(_0x1b1def,_0xe47e11){const _0x174820=_0x572182,_0x15bed1={'m1Prime':_0x1b1def,'m2Prime':_0xe47e11};if(_0x1b1def[_0x174820(0x8d)][_0x174820(0xdb)]!==_0xe47e11[_0x174820(0x8d)][_0x174820(0xdb)]||_0x1b1def[_0x174820(0x8d)]['subUnitId']!==_0xe47e11[_0x174820(0x8d)]['subUnitId'])return _0x15bed1;const _0x3839da=[_0x570d2f[_0x174820(0xb4)](_0x1b1def)],_0x4efd1f=_0x570d2f[_0x174820(0xb4)](_0xe47e11),_0x239ea3=new _0x1f7bb9(_0x4efd1f[_0x174820(0x8d)]['cellValue']),_0x5be25a=_0x239ea3[_0x174820(0x182)](),_0x19208c=_0x1b1def[_0x174820(0x8d)]['range'],_0x52e3b6=_0x19208c[_0x174820(0x9d)]-_0x19208c['startColumn']+0x1;if(_0x4efd1f['params'][_0x174820(0x208)]&&_0x19208c[_0x174820(0x9d)]<_0x5be25a[_0x174820(0x15a)])Rt(_0x4efd1f[_0x174820(0x8d)][_0x174820(0x208)],_0x5be25a[_0x174820(0x15a)],_0x5be25a[_0x174820(0x9d)]-_0x5be25a[_0x174820(0x15a)]+0x1,-_0x52e3b6);else{if(_0x19208c[_0x174820(0x15a)]<=_0x5be25a[_0x174820(0x9d)])return{'error':new Error(_0x174820(0xd6))};}const _0x5ee391=new _0x1f7bb9();let _0x200bd0=!0x1,_0x593875=!0x1;if(_0x239ea3[_0x174820(0x86)]((_0x3305a6,_0x4c1665,_0xabebd9)=>{const _0x10c80d=_0x174820;if(_0xabebd9&&_0xabebd9['f']){const _0x4f6c06=_0xabebd9['f'];let _0x29e6cc=!0x1;const _0x15a1db=dt(_0x1b1def[_0x10c80d(0x8d)]['unitId'],_0x1b1def['params'][_0x10c80d(0x20b)],_0x4f6c06,_0x116476=>{const _0x57dc5e=_0x10c80d,_0x1e89ad=_0x180da6(h(_0x1b1def[_0x57dc5e(0x8d)][_0x57dc5e(0x19f)]),h(_0x116476));return _0x1e89ad===null?(_0x200bd0=!0x0,_0x116476):((_0x1e89ad['step']!==0x0||_0x1e89ad[_0x57dc5e(0xf6)]!==0x0)&&(_0x29e6cc=!0x0,_0x116476[_0x57dc5e(0x15a)]+=_0x1e89ad['step'],_0x116476[_0x57dc5e(0x9d)]+=_0x1e89ad[_0x57dc5e(0xc3)]+_0x1e89ad[_0x57dc5e(0xf6)]),_0x116476);});_0x29e6cc&&(_0x593875=!0x0,_0xabebd9['f']=_0x15a1db,_0x5ee391[_0x10c80d(0x134)](_0x3305a6,_0x4c1665,{..._0xabebd9}));}}),_0x200bd0)return{'error':new Error(_0x174820(0x1ed))};if(_0x593875){const _0x4c74b6={'id':_0x15eb0a['id'],'params':{'unitId':_0xe47e11[_0x174820(0x8d)]['unitId'],'subUnitId':_0xe47e11[_0x174820(0x8d)]['subUnitId'],'cellValue':_0x5ee391[_0x174820(0x16a)]()}};_0x3839da['push'](_0x4c74b6);}return{'m1Prime':_0x3839da,'m2Prime':_0x4efd1f};}},Bs={'m1':_0xe5c4bd['id'],'m2':_0x23969e['id'],'handler'(_0x243d66,_0x532b86){const _0x239017=_0x572182,_0x49535f={'m1Prime':[],'m2Prime':[]};if(_0x243d66[_0x239017(0x8d)][_0x239017(0xdb)]!==_0x532b86[_0x239017(0x8d)][_0x239017(0xdb)]||_0x243d66[_0x239017(0x8d)][_0x239017(0x20b)]!==_0x532b86['params']['subUnitId'])return _0x49535f;const _0x479aa9=_0x570d2f[_0x239017(0xb4)](_0x532b86);let _0x32f1ba=!0x1;return _0x479aa9[_0x239017(0x8d)][_0x239017(0x138)][_0x239017(0xc5)](_0x426648=>{const _0x2ddd0b=_0x239017,{range:_0x7d83fc,primary:_0x2284b6}=_0x426648,_0x3c47d1=_0x180da6(h(_0x243d66['params'][_0x2ddd0b(0x19f)]),h(_0x7d83fc));if(_0x3c47d1!=null&&(_0x3c47d1[_0x2ddd0b(0xf6)]||_0x3c47d1[_0x2ddd0b(0xc3)])){if(_0x7d83fc[_0x2ddd0b(0x15a)]+=_0x3c47d1['step'],_0x7d83fc[_0x2ddd0b(0x9d)]+=_0x3c47d1['step']+(_0x3c47d1['length']||0x0),_0x2284b6){const _0x243d65=_0x180da6(h(_0x243d66[_0x2ddd0b(0x8d)][_0x2ddd0b(0x19f)]),h(_0x2284b6));if(_0x243d65==null){_0x2284b6['startColumn']=_0x7d83fc['startColumn'],_0x2284b6[_0x2ddd0b(0x9d)]=_0x7d83fc[_0x2ddd0b(0x15a)],_0x2284b6['actualColumn']=_0x7d83fc['startColumn'];return;}(_0x243d65[_0x2ddd0b(0xf6)]||_0x243d65[_0x2ddd0b(0xc3)])&&(_0x2284b6[_0x2ddd0b(0x15a)]+=_0x243d65[_0x2ddd0b(0xc3)],_0x2284b6[_0x2ddd0b(0x9d)]+=_0x243d65[_0x2ddd0b(0xc3)],_0x2284b6['actualColumn']+=_0x243d65['step']);}_0x32f1ba=!0x0;}}),_0x32f1ba&&_0x49535f[_0x239017(0xcf)][_0x239017(0x1ca)](_0x479aa9),_0x49535f;}},Gs={'m1':_0xe5c4bd['id'],'m2':_0x4112c4['id'],'handler'(_0x4b3d0b,_0x234cd2){const _0x2886f7=_0x572182,_0x4f05e4={'m1Prime':_0x4b3d0b,'m2Prime':_0x234cd2};if(_0x4b3d0b['params'][_0x2886f7(0xdb)]!==_0x234cd2[_0x2886f7(0x8d)][_0x2886f7(0xdb)]||_0x4b3d0b[_0x2886f7(0x8d)][_0x2886f7(0x20b)]!==_0x234cd2[_0x2886f7(0x8d)][_0x2886f7(0x20b)])return _0x4f05e4;const _0x51e2f8=_0x570d2f['deepClone'](_0x4b3d0b),_0x3fc878=_0x570d2f[_0x2886f7(0xb4)](_0x234cd2),_0x960183=Me({'start':_0x4b3d0b[_0x2886f7(0x8d)]['range']['startColumn'],'end':_0x4b3d0b['params'][_0x2886f7(0x19f)][_0x2886f7(0x9d)]},{'start':_0x234cd2['params'][_0x2886f7(0x80)],'end':_0x234cd2['params'][_0x2886f7(0x80)]}),_0x510a99=_0x570d2f['deepClone'](_0x234cd2);return _0x510a99[_0x2886f7(0x8d)][_0x2886f7(0x211)]=null,_0x960183===null?{'m1Prime':[_0x51e2f8,_0x510a99],'m2Prime':[]}:_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x80)]===_0x960183[_0x2886f7(0xa5)]?_0x4f05e4:(_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x80)]=_0x960183[_0x2886f7(0xa5)],_0x3fc878['params'][_0x2886f7(0x211)]&&(_0x3fc878[_0x2886f7(0x8d)][_0x2886f7(0x211)]['colId']=_0x960183['start']),{'m1Prime':[_0x510a99,_0x3fc878,_0x51e2f8],'m2Prime':[_0x3fc878]});}},js={'m1':_0xe5c4bd['id'],'m2':_0x23aded['id'],'handler'(_0x30048d,_0x205c00){const _0x4877fa=_0x572182,_0x3a9f80={'m1Prime':[_0x30048d],'m2Prime':[_0x205c00]};if(_0x30048d[_0x4877fa(0x8d)]['unitId']!==_0x205c00[_0x4877fa(0x8d)]['unitId']||_0x30048d['params'][_0x4877fa(0x20b)]!==_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0x20b)])return _0x3a9f80;const _0x48b213=_0x570d2f[_0x4877fa(0xb4)](_0x30048d),_0x2bc5e6=_0x570d2f[_0x4877fa(0xb4)](_0x205c00),_0x476e25=Me({'start':_0x30048d[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x15a)],'end':_0x30048d[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x9d)]},{'start':_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0x19f)][_0x4877fa(0x15a)],'end':_0x205c00['params']['range'][_0x4877fa(0x9d)]});return _0x476e25===null?{'m1Prime':[_0x48b213,{'id':_0x224fc7['id'],'params':{'unitId':_0x205c00[_0x4877fa(0x8d)][_0x4877fa(0xdb)],'subUnitId':_0x205c00['params'][_0x4877fa(0xdb)]}}],'m2Prime':[]}:(_0x2bc5e6['params'][_0x4877fa(0x19f)][_0x4877fa(0x15a)]=_0x476e25['start'],_0x2bc5e6[_0x4877fa(0x8d)]['range'][_0x4877fa(0x9d)]=_0x476e25[_0x4877fa(0x1c4)],{'m1Prime':[_0x2bc5e6,_0x48b213],'m2Prime':[_0x2bc5e6]});}},$s={'m1':_0xe5c4bd['id'],'m2':_0x4cb95c['id'],'handler'(_0x17b042,_0x4c7665){const _0x501df3=_0x572182,_0x2bd400={'m1Prime':_0x17b042,'m2Prime':_0x4c7665};if(_0x17b042['params'][_0x501df3(0xdb)]!==_0x4c7665[_0x501df3(0x8d)][_0x501df3(0xdb)]||_0x17b042[_0x501df3(0x8d)][_0x501df3(0x20b)]!==_0x4c7665[_0x501df3(0x8d)][_0x501df3(0x20b)])return _0x2bd400;const _0x38bb86=_0x570d2f[_0x501df3(0xb4)](_0x17b042),_0xfed4f6=_0x570d2f[_0x501df3(0xb4)](_0x4c7665),{ranges:_0xdb5bd5,colWidth:_0x255c6e}=_0xfed4f6[_0x501df3(0x8d)];return _0xdb5bd5['forEach'](_0x2df502=>{const _0x212519=_0x501df3,_0x132ea4=_0x180da6(h(_0x17b042['params']['range']),_0x2df502);_0x132ea4==null?_0xfed4f6['id']=_0x1a62da['id']:(_0x2df502[_0x212519(0x15a)]+=_0x132ea4[_0x212519(0xc3)],_0x2df502['endColumn']+=_0x132ea4[_0x212519(0xc3)]+_0x132ea4[_0x212519(0xf6)]);}),typeof _0x255c6e!=_0x501df3(0x1b5)&&_0x4aa10e(_0x17b042[_0x501df3(0x8d)]['range'][_0x501df3(0x15a)],_0x17b042[_0x501df3(0x8d)]['range'][_0x501df3(0x9d)]-_0x17b042[_0x501df3(0x8d)][_0x501df3(0x19f)][_0x501df3(0x15a)]+0x1,_0x255c6e),{'m1Prime':_0x38bb86,'m2Prime':_0xfed4f6};}},Ys={'m1':_0xe5c4bd['id'],'m2':_0x2afd0c['id'],'handler':(_0x47c4e7,_0x48c171)=>{const _0x431138=_0x572182,_0x2ad04e={'m1Prime':_0x47c4e7,'m2Prime':_0x48c171};if(_0x47c4e7[_0x431138(0x8d)][_0x431138(0xdb)]!==_0x48c171[_0x431138(0x8d)][_0x431138(0xdb)]||_0x47c4e7[_0x431138(0x8d)][_0x431138(0x20b)]!==_0x48c171[_0x431138(0x8d)][_0x431138(0x20b)])return _0x2ad04e;const _0x581448={'id':_0xf0fff1['id'],'params':{'unitId':_0x47c4e7['params']['unitId'],'subUnitId':_0x47c4e7[_0x431138(0x8d)]['subUnitId'],'range':_0x47c4e7['params'][_0x431138(0x19f)]}},_0x516be5=wt(_0x48c171,_0x581448);return{'m1Prime':[_0x47c4e7,..._0x516be5],'m2Prime':[_0x48c171,..._0x516be5]};}},Js={'m1':_0xe5c4bd['id'],'m2':_0x4e1baf['id'],'handler':(_0x36f5a2,_0x40ddbe)=>{const _0x4c5902=_0x572182,_0x2ea2dc={'m1Prime':_0x36f5a2,'m2Prime':_0x40ddbe};if(_0x36f5a2[_0x4c5902(0x8d)][_0x4c5902(0xdb)]!==_0x40ddbe[_0x4c5902(0x8d)]['unitId']||_0x40ddbe[_0x4c5902(0x8d)][_0x4c5902(0x20b)]!==_0x36f5a2[_0x4c5902(0x8d)][_0x4c5902(0x20b)])return _0x2ea2dc;const _0x49b173={'id':_0xf0fff1['id'],'params':{'range':_0x36f5a2[_0x4c5902(0x8d)]['range']}},_0x7ee780=Ct(_0x40ddbe,_0x49b173);return{'m1Prime':[_0x36f5a2,..._0x7ee780],'m2Prime':[_0x40ddbe,..._0x7ee780]};}},Xs={'m1':_0x13693a['id'],'m2':_0x13693a['id'],'handler':(_0x32f496,_0x389a74)=>{const _0x334e34=_0x572182,_0xb4d7db={'m1Prime':_0x32f496,'m2Prime':_0x389a74};return _0x32f496['params'][_0x334e34(0xdb)]===_0x389a74[_0x334e34(0x8d)][_0x334e34(0xdb)]&&_0x32f496['params'][_0x334e34(0x20b)]===_0x389a74[_0x334e34(0x8d)][_0x334e34(0x20b)]&&_0x32f496[_0x334e34(0x8d)]['ruleId']===_0x389a74[_0x334e34(0x8d)][_0x334e34(0x103)]?{'m1Prime':[],'m2Prime':[]}:_0xb4d7db;}},Ks={'m1':_0x336ff4['id'],'m2':_0x336ff4['id'],'handler':(_0x12d702,_0x2ae98e)=>{const _0x39e728=_0x572182,_0x3606d6=_0x12d702[_0x39e728(0x8d)],_0x2d15ae=_0x2ae98e[_0x39e728(0x8d)];return _0x3606d6[_0x39e728(0xdb)]===_0x2d15ae[_0x39e728(0xdb)]&&_0x3606d6[_0x39e728(0x20b)]===_0x2d15ae['subUnitId']&&_0x3606d6['id']===_0x2d15ae['id']?{'m2Prime':[],'m1Prime':[]}:{'m1Prime':_0x12d702,'m2Prime':_0x2ae98e};}},zs={'m1':_0x3dcda7['id'],'m2':_0x3dcda7['id'],'handler'(_0x29e4f6,_0x1d6a9e){const _0x47196f=_0x572182;if(_0x29e4f6[_0x47196f(0x8d)][_0x47196f(0xdb)]!==_0x1d6a9e[_0x47196f(0x8d)]['unitId']||_0x29e4f6[_0x47196f(0x8d)][_0x47196f(0x20b)]!==_0x1d6a9e[_0x47196f(0x8d)][_0x47196f(0x20b)])return{'m1Prime':_0x29e4f6,'m2Prime':_0x1d6a9e};const _0x1485bb=_0x570d2f[_0x47196f(0xb4)](_0x29e4f6),_0x221336=_0x570d2f[_0x47196f(0xb4)](_0x1d6a9e),_0x295d71=[],_0x261630=_0x221336[_0x47196f(0x8d)][_0x47196f(0xd1)];return _0x1485bb[_0x47196f(0x8d)]['ranges']['forEach'](_0x525841=>{const _0x4f3750=_0x47196f,_0xe39d74=ee(_0x525841,_0x261630);_0xe39d74[_0x4f3750(0xf6)]>0x0&&_0x295d71[_0x4f3750(0x1ca)](..._0xe39d74);}),_0x1485bb[_0x47196f(0x8d)]['ranges']=_0x295d71,{'m1Prime':_0x29e4f6,'m2Prime':_0x1d6a9e};}},qs={'m1':_0x3dcda7['id'],'m2':_0x4075e['id'],'handler'(_0x39ed59,_0x47a409){const _0x1dc113=_0x572182;if(_0x39ed59[_0x1dc113(0x8d)][_0x1dc113(0xdb)]!==_0x47a409[_0x1dc113(0x8d)]['unitId']||_0x39ed59[_0x1dc113(0x8d)][_0x1dc113(0x20b)]!==_0x47a409[_0x1dc113(0x8d)][_0x1dc113(0x20b)])return{'m1Prime':_0x39ed59,'m2Prime':_0x47a409};const _0x21ebd7=_0x570d2f[_0x1dc113(0xb4)](_0x39ed59),_0x146ff5=_0x570d2f[_0x1dc113(0xb4)](_0x47a409),_0x55d46c=[],_0x49f5c8=Object['values'](_0x146ff5[_0x1dc113(0x8d)][_0x1dc113(0xd2)])[_0x1dc113(0x1e0)](_0x3e443f=>_0x3e443f['ranges'])[_0x1dc113(0x13b)]();return _0x21ebd7[_0x1dc113(0x8d)][_0x1dc113(0xd1)][_0x1dc113(0xc5)](_0x5c7af4=>{const _0xf086df=_0x1dc113,_0x391d47=ee(_0x5c7af4,_0x49f5c8);_0x391d47['length']>0x0&&_0x55d46c[_0xf086df(0x1ca)](..._0x391d47);}),_0x21ebd7['params']['ranges']=_0x55d46c,{'m1Prime':_0x21ebd7,'m2Prime':_0x146ff5};}},Zs={'m1':_0x1c90fa['id'],'m2':_0x1b398d['id'],'handler':(_0x473f8f,_0x575663)=>{const _0x240562=_0x572182,_0x490179={'m1Prime':_0x473f8f,'m2Prime':_0x575663};if(_0x473f8f[_0x240562(0x8d)][_0x240562(0xdb)]!==_0x575663[_0x240562(0x8d)]['unitId']||_0x473f8f[_0x240562(0x8d)][_0x240562(0x20b)]!==_0x575663[_0x240562(0x8d)]['subUnitId'])return _0x490179;const _0x30b21e={'id':_0x484aa2['id'],'params':{'unitId':_0x473f8f[_0x240562(0x8d)]['unitId'],'subUnitId':_0x473f8f[_0x240562(0x8d)][_0x240562(0x20b)],'range':_0x473f8f['params'][_0x240562(0x19f)]}},_0x113420=It(_0x575663,_0x30b21e);return{'m1Prime':[_0x473f8f,..._0x113420],'m2Prime':[_0x575663,..._0x113420]};}},Qs={'m1':_0x1c90fa['id'],'m2':_0x3bedd8['id'],'handler'(_0x4fa379,_0x20ce91){const _0x2d6bc2=_0x572182,_0x41fcdf={'m1Prime':_0x4fa379,'m2Prime':_0x20ce91};if(_0x4fa379['params'][_0x2d6bc2(0xdb)]!==_0x20ce91['params'][_0x2d6bc2(0xdb)]||_0x4fa379[_0x2d6bc2(0x8d)][_0x2d6bc2(0x20b)]!==_0x20ce91[_0x2d6bc2(0x8d)][_0x2d6bc2(0x20b)])return _0x41fcdf;const _0x337263={'id':_0x484aa2['id'],'params':{'range':_0x4fa379[_0x2d6bc2(0x8d)][_0x2d6bc2(0x19f)]}},_0x261337=Tt(_0x20ce91,_0x337263);return{'m1Prime':[_0x4fa379,..._0x261337],'m2Prime':[_0x20ce91,..._0x261337]};}},to={'m1':_0x1c90fa['id'],'m2':_0x4b0a3e['id'],'handler'(_0xf86b18,_0x5e74bd){const _0x32854f=_0x572182,_0x298e45=dr[_0x32854f(0xcd)](_0x5e74bd,_0xf86b18);return at(_0x298e45)?{'m1Prime':_0x298e45[_0x32854f(0xcf)],'m2Prime':_0x298e45[_0x32854f(0x119)]}:_0x298e45;}},eo={'m1':_0x1c90fa['id'],'m2':_0x43f1cd['id'],'handler'(_0x1f53ab,_0x2b56e6){const _0x2102f8=_0x572182,_0x2f1f9c={'m1Prime':_0x1f53ab,'m2Prime':_0x2b56e6};if(_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0xdb)]!==_0x2b56e6['params'][_0x2102f8(0xdb)]||_0x1f53ab[_0x2102f8(0x8d)]['subUnitId']!==_0x2b56e6[_0x2102f8(0x8d)]['from'][_0x2102f8(0x20b)]&&_0x1f53ab[_0x2102f8(0x8d)]['subUnitId']!==_0x2b56e6['params']['to']['subUnitId'])return _0x2f1f9c;const _0x1ab077=_0x570d2f[_0x2102f8(0xb4)](_0x1f53ab),_0x477602=_0x570d2f[_0x2102f8(0xb4)](_0x2b56e6),{startRow:_0x1c67bb,endRow:_0x33e6b0}=_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0x19f)];if(_0x1f53ab[_0x2102f8(0x8d)][_0x2102f8(0x20b)]===_0x2b56e6[_0x2102f8(0x8d)][_0x2102f8(0x1b0)][_0x2102f8(0x20b)]){const _0x25a5fe=new _0x1f7bb9(_0x477602['params'][_0x2102f8(0x1b0)]['value']),_0x5739e8=_0x25a5fe['getDataRange'](),{startRow:_0x1eab8a,endRow:_0x56beda}=_0x5739e8;if(_0x1eab8a<=_0x33e6b0&&_0x56beda>=_0x1c67bb)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x33e6b0<_0x1eab8a&&_0x25a5fe[_0x2102f8(0x13d)](_0x1c67bb,_0x33e6b0-_0x1c67bb+0x1),_0x477602['params'][_0x2102f8(0x1b0)][_0x2102f8(0x17e)]=_0x25a5fe[_0x2102f8(0x16a)]();}if(_0x1f53ab['params']['subUnitId']===_0x2b56e6[_0x2102f8(0x8d)]['to'][_0x2102f8(0x20b)]){const _0xf7a02c=new _0x1f7bb9(_0x477602['params']['to'][_0x2102f8(0x17e)]),_0x937a50=_0xf7a02c[_0x2102f8(0x182)](),{startRow:_0x2ee6e6,endRow:_0x59ee95}=_0x937a50;if(_0x2ee6e6<=_0x33e6b0&&_0x59ee95>=_0x1c67bb)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x33e6b0<_0x2ee6e6&&_0xf7a02c[_0x2102f8(0x13d)](_0x1c67bb,_0x33e6b0-_0x1c67bb+0x1),_0x477602[_0x2102f8(0x8d)]['to']['value']=_0xf7a02c[_0x2102f8(0x16a)]();}return{'m1Prime':_0x1ab077,'m2Prime':_0x477602};}},ro={'m1':_0x1c90fa['id'],'m2':_0x454b7a['id'],'handler'(_0x5001b1,_0x527f25){const _0x353314=_0x572182,_0xcb8db0={'m1Prime':_0x5001b1,'m2Prime':_0x527f25};if(_0x5001b1[_0x353314(0x8d)]['unitId']!==_0x527f25[_0x353314(0x8d)][_0x353314(0xdb)]||_0x5001b1[_0x353314(0x8d)][_0x353314(0x20b)]!==_0x527f25[_0x353314(0x8d)]['subUnitId'])return _0xcb8db0;const _0x4cef78=_0x570d2f['deepClone'](_0x5001b1),_0x460a5d=_0x570d2f[_0x353314(0xb4)](_0x527f25);if(_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['startRow']<=_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x111)]&&_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['endRow']>=_0x527f25[_0x353314(0x8d)]['sourceRange'][_0x353314(0x102)]||_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)][_0x353314(0x102)]<=_0x527f25[_0x353314(0x8d)]['targetRange'][_0x353314(0x111)]&&_0x5001b1[_0x353314(0x8d)]['range']['endRow']>=_0x527f25[_0x353314(0x8d)]['targetRange'][_0x353314(0x102)])return{'error':new Error(_0x353314(0xfc))};const _0x2f5254=_0x180da6(h(_0x48173f(_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)])),h(_0x48173f(_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)]))),_0x3aa303=_0x180da6(h(_0x48173f(_0x5001b1['params'][_0x353314(0x19f)])),h(_0x48173f(_0x527f25[_0x353314(0x8d)][_0x353314(0x1d0)])));_0x2f5254&&_0x3aa303?(_0x460a5d[_0x353314(0x8d)][_0x353314(0x11d)]['startRow']+=_0x2f5254[_0x353314(0xc3)],_0x460a5d['params'][_0x353314(0x11d)]['endRow']+=_0x2f5254[_0x353314(0xc3)]+(_0x2f5254[_0x353314(0xf6)]||0x0),_0x460a5d[_0x353314(0x8d)]['targetRange'][_0x353314(0x102)]+=_0x3aa303[_0x353314(0xc3)],_0x460a5d[_0x353314(0x8d)]['targetRange']['endRow']+=_0x3aa303[_0x353314(0xc3)]+(_0x3aa303[_0x353314(0xf6)]||0x0)):_0x460a5d['id']=_0x1a62da['id'];const _0xd7d2ea=_0x2e8050({'start':_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x102)],'end':_0x527f25[_0x353314(0x8d)][_0x353314(0x11d)][_0x353314(0x111)]},{'start':_0x527f25[_0x353314(0x8d)][_0x353314(0x1d0)][_0x353314(0x102)],'end':_0x527f25['params'][_0x353314(0x1d0)]['endRow']},{'start':_0x5001b1[_0x353314(0x8d)][_0x353314(0x19f)]['startRow'],'end':_0x5001b1['params'][_0x353314(0x19f)][_0x353314(0x111)]});if(_0xd7d2ea){const {step:_0x3193c1,length:_0x557ea2}=_0xd7d2ea;_0x4cef78['params'][_0x353314(0x19f)][_0x353314(0x102)]+=_0x3193c1,_0x4cef78['params']['range']['endRow']+=_0x3193c1+(_0x557ea2||0x0);}else _0x4cef78['id']=_0x1a62da['id'];return{'m1Prime':_0x4cef78,'m2Prime':_0x460a5d};}},no={'m1':_0x1c90fa['id'],'m2':_0x3dcda7['id'],'handler'(_0x36a562,_0x52d953){const _0x2ccc3c=_0x572182,_0x491754={'m1Prime':_0x36a562,'m2Prime':_0x52d953};if(_0x36a562[_0x2ccc3c(0x8d)][_0x2ccc3c(0xdb)]!==_0x52d953['params'][_0x2ccc3c(0xdb)]||_0x36a562['params'][_0x2ccc3c(0x20b)]!==_0x52d953[_0x2ccc3c(0x8d)][_0x2ccc3c(0x20b)])return _0x491754;const _0x219d29=_0x570d2f[_0x2ccc3c(0xb4)](_0x36a562),_0x126749=_0x570d2f[_0x2ccc3c(0xb4)](_0x52d953),{ranges:_0x55cf78}=_0x126749[_0x2ccc3c(0x8d)];return _0x55cf78['some'](_0x1eec19=>{const _0x5d5c48=_0x2ccc3c,_0x3ed18b=_0x180da6(h(_0x48173f(_0x36a562['params'][_0x5d5c48(0x19f)])),h(_0x48173f(_0x1eec19)));return _0x3ed18b===null||_0x3ed18b[_0x5d5c48(0xf6)]!==0x0?!0x0:(_0x1eec19[_0x5d5c48(0x102)]+=_0x3ed18b[_0x5d5c48(0xc3)],_0x1eec19['endRow']+=_0x3ed18b['step'],!0x1);})?{'error':new Error(_0x2ccc3c(0x1fa))}:{'m1Prime':_0x219d29,'m2Prime':_0x126749};}},ao={'m1':_0x1c90fa['id'],'m2':_0x1c90fa['id'],'handler'(_0x36bf28,_0x1ae19b){const _0x189b77=_0x572182,_0xe4a76f={'m1Prime':_0x36bf28,'m2Prime':_0x1ae19b};if(_0x36bf28['params'][_0x189b77(0xdb)]!==_0x1ae19b['params'][_0x189b77(0xdb)]||_0x36bf28[_0x189b77(0x8d)]['subUnitId']!==_0x1ae19b[_0x189b77(0x8d)][_0x189b77(0x20b)])return _0xe4a76f;const _0x1e8d1a=_0x570d2f[_0x189b77(0xb4)](_0x36bf28),_0x4c7006=_0x570d2f[_0x189b77(0xb4)](_0x1ae19b),_0x17a8a9=_0x180da6(h(_0x48173f(_0x36bf28['params'][_0x189b77(0x19f)])),h(_0x48173f(_0x1ae19b[_0x189b77(0x8d)][_0x189b77(0x19f)])));if(_0x17a8a9){const {step:_0xe7ce42,length:_0x14bd48}=_0x17a8a9;_0x4c7006[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x102)]+=_0xe7ce42,_0x4c7006[_0x189b77(0x8d)][_0x189b77(0x19f)]['endRow']+=_0xe7ce42+(_0x14bd48||0x0);}else _0x4c7006['id']=_0x1a62da['id'];const _0x21875e=_0x180da6(h(_0x48173f(_0x1ae19b['params'][_0x189b77(0x19f)])),h(_0x48173f(_0x36bf28['params'][_0x189b77(0x19f)])));if(_0x21875e){const {step:_0x3bdd5b,length:_0xde45dc}=_0x21875e;_0x1e8d1a[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x102)]+=_0x3bdd5b,_0x1e8d1a[_0x189b77(0x8d)][_0x189b77(0x19f)][_0x189b77(0x111)]+=_0x3bdd5b+(_0xde45dc||0x0);}else _0x1e8d1a['id']=_0x1a62da['id'];return{'m1Prime':_0x1e8d1a,'m2Prime':_0x4c7006};}},so={'m1':_0x1c90fa['id'],'m2':_0x3c47fd['id'],'handler'(_0x1c8177,_0x1d85f0){const _0x1d7e35=_0x572182,_0x35fc40=_0x570d2f[_0x1d7e35(0xb4)](_0x1c8177),_0xc9396=_0x570d2f[_0x1d7e35(0xb4)](_0x1d85f0);if(_0x1c8177['params'][_0x1d7e35(0xdb)]!==_0x1d85f0['params'][_0x1d7e35(0xdb)]||_0x1c8177['params'][_0x1d7e35(0x20b)]!==_0x1d85f0[_0x1d7e35(0x8d)]['subUnitId'])return{'m1Prime':_0x35fc40,'m2Prime':_0xc9396};const _0x14f416=_0xc9396[_0x1d7e35(0x8d)][_0x1d7e35(0xd1)][_0x1d7e35(0x146)]((_0x2bfe91,_0x1ce2e1)=>{const _0x4afb85=_0x1d7e35,_0x509fe5=_0x35fc40['params']['range'],_0x3851ec=_0x509fe5['endRow']-_0x509fe5[_0x4afb85(0x102)]+0x1;let _0xdde1ed={..._0x1ce2e1};return _0x509fe5[_0x4afb85(0x102)]>_0x1ce2e1[_0x4afb85(0x111)]?_0xdde1ed={..._0x1ce2e1}:_0x509fe5['startRow']>=_0x1ce2e1['startRow']&&_0x509fe5[_0x4afb85(0x102)]<=_0x1ce2e1[_0x4afb85(0x111)]&&_0x509fe5['endRow']>_0x1ce2e1[_0x4afb85(0x111)]?(_0xdde1ed[_0x4afb85(0x111)]=_0x509fe5[_0x4afb85(0x102)]-0x1,_0x509fe5[_0x4afb85(0x102)]===_0x1ce2e1[_0x4afb85(0x102)]&&(_0xdde1ed=null)):_0x509fe5[_0x4afb85(0x102)]>_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5[_0x4afb85(0x111)]<_0x1ce2e1[_0x4afb85(0x111)]?_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1[_0x4afb85(0x111)]-_0x3851ec:_0x509fe5[_0x4afb85(0x102)]<_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5[_0x4afb85(0x111)]>=_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5['endRow']<=_0x1ce2e1[_0x4afb85(0x111)]?(_0xdde1ed[_0x4afb85(0x102)]=_0x509fe5[_0x4afb85(0x102)],_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1[_0x4afb85(0x111)]-_0x3851ec,_0x509fe5['endRow']===_0x1ce2e1[_0x4afb85(0x111)]&&(_0xdde1ed=null)):_0x509fe5['startRow']<=_0x1ce2e1[_0x4afb85(0x102)]&&_0x509fe5['endRow']>=_0x1ce2e1['endRow']?_0xdde1ed=null:_0x509fe5[_0x4afb85(0x111)]<_0x1ce2e1[_0x4afb85(0x102)]&&(_0xdde1ed[_0x4afb85(0x102)]=_0x1ce2e1[_0x4afb85(0x102)]-_0x3851ec,_0xdde1ed[_0x4afb85(0x111)]=_0x1ce2e1['endRow']-_0x3851ec),_0xdde1ed&&!(_0xdde1ed['startRow']===_0xdde1ed[_0x4afb85(0x111)]&&_0xdde1ed[_0x4afb85(0x15a)]===_0xdde1ed[_0x4afb85(0x9d)])&&_0x2bfe91[_0x4afb85(0x1ca)](_0xdde1ed),_0x2bfe91;},[]);return _0xc9396[_0x1d7e35(0x8d)][_0x1d7e35(0xd1)]=_0x14f416,{'m1Prime':_0x35fc40,'m2Prime':_0xc9396};}},oo={'m1':_0x1c90fa['id'],'m2':_0x587c63['id'],'handler'(_0x5e4c24,_0x3149a3){const _0x28dbf9=_0x572182,_0x594e77={'m1Prime':_0x5e4c24,'m2Prime':_0x3149a3};if(_0x5e4c24[_0x28dbf9(0x8d)]['unitId']!==_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0xdb)]||_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x20b)]!==_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x20b)])return _0x594e77;const _0x27fca3=_0x570d2f['deepClone'](_0x3149a3),_0x35496b=_0x570d2f[_0x28dbf9(0xb4)](_0x5e4c24),_0x481005=_0x180da6(h(_0x48173f(_0x5e4c24['params'][_0x28dbf9(0x19f)])),h(_0x48173f(_0x3149a3[_0x28dbf9(0x8d)]['range'])));if(!_0x481005)return{'m1Prime':_0x5e4c24,'m2Prime':[]};if(_0x481005[_0x28dbf9(0xf6)]===0x0&&_0x481005['step']===0x0)return{'m1Prime':_0x5e4c24,'m2Prime':_0x3149a3};const {startRow:_0x529ed8,endRow:_0x159539}=_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)];_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)]['startRow']+=_0x481005[_0x28dbf9(0xc3)],_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)][_0x28dbf9(0x111)]+=_0x481005[_0x28dbf9(0xc3)]+(_0x481005['length']||0x0);const _0x3ff548=Object[_0x28dbf9(0xab)](_0x3149a3[_0x28dbf9(0x8d)]['order'])['map'](_0x3e5c0b=>ke(_0x529ed8,_0x159539,Number(_0x3e5c0b)))[_0x28dbf9(0x9f)](_0x4e91ea=>_0x4e91ea!==null),_0x441d96={};for(const _0x14a72c in _0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)]){let _0xb57706=_0x3149a3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)][_0x14a72c];_0xb57706=ke(_0x529ed8,_0x159539,_0xb57706),_0xb57706!==null&&(_0x441d96[_0x3ff548[_0x28dbf9(0x132)]()]=_0xb57706);}_0x27fca3[_0x28dbf9(0x8d)][_0x28dbf9(0x13f)]=_0x441d96;const _0x50d3b2=io(_0x3149a3['params'][_0x28dbf9(0x13f)],{'start':_0x5e4c24[_0x28dbf9(0x8d)][_0x28dbf9(0x19f)]['startRow'],'end':_0x5e4c24['params'][_0x28dbf9(0x19f)][_0x28dbf9(0x111)]}),_0xa70d9c=[_0x35496b];return _0x50d3b2&&_0xa70d9c[_0x28dbf9(0xb9)]({'id':_0x587c63['id'],'params':{..._0x5e4c24[_0x28dbf9(0x8d)],'order':_0x50d3b2['order'],'range':{..._0x3149a3['params'][_0x28dbf9(0x19f)],..._0x50d3b2[_0x28dbf9(0x19f)]}}}),{'m1Prime':_0xa70d9c,'m2Prime':_0x27fca3};}},io=(_0x2ad99f,_0x295de6)=>{const _0xbd63c8=_0x572182,_0x5e9c86=Object[_0xbd63c8(0xab)](_0x2ad99f)['map'](Number)[_0xbd63c8(0x14f)]((_0x343a30,_0x2c253a)=>_0x343a30-_0x2c253a);if(_0x5e9c86[_0xbd63c8(0xf6)]===0x0)return null;const _0x4ba9a9=_0x5e9c86[0x0],_0x1f5928=_0x5e9c86[_0x5e9c86[_0xbd63c8(0xf6)]-0x1];if(_0x4ba9a9>_0x295de6[_0xbd63c8(0x1c4)]||_0x1f5928<_0x295de6[_0xbd63c8(0xa5)])return null;const _0x4f343d=_0x5e9c86['filter'](_0x3a74f1=>_0x2ad99f[_0x3a74f1]>=_0x295de6[_0xbd63c8(0xa5)]&&_0x2ad99f[_0x3a74f1]<=_0x295de6['end']);if(_0x4f343d[_0xbd63c8(0xf6)]===0x0)return null;const _0x418134=_0x4f343d[_0xbd63c8(0x1e0)](_0x1f2b7e=>_0x2ad99f[_0x1f2b7e]),_0x2163de={},_0x24b823=Math['min'](_0x4f343d[0x0],_0x295de6[_0xbd63c8(0xa5)]),_0x5b25b4=Math[_0xbd63c8(0xed)](_0x4f343d[_0x4f343d[_0xbd63c8(0xf6)]-0x1],_0x295de6[_0xbd63c8(0x1c4)]),_0x7a1624=Array[_0xbd63c8(0x1b0)]({'length':_0x5b25b4-_0x24b823+0x1},(_0x5625af,_0x15990b)=>_0x15990b+_0x24b823)[_0xbd63c8(0x9f)](_0x1e9368=>!_0x4f343d[_0xbd63c8(0x152)](_0x1e9368));return Array['from']({'length':_0x5b25b4-_0x24b823+0x1},(_0x3706ea,_0x4ce304)=>_0x4ce304+_0x24b823)['filter'](_0x18a988=>!_0x418134[_0xbd63c8(0x152)](_0x18a988))[_0xbd63c8(0xc5)]((_0x5bf1b8,_0x1574f8)=>{_0x2163de[_0x5bf1b8]=_0x7a1624[_0x1574f8];}),_0x418134[_0xbd63c8(0xc5)]((_0x1f2301,_0x5adf22)=>{_0x2163de[_0x1f2301]=_0x4f343d[_0x5adf22];}),{'range':{'startRow':_0x24b823,'endRow':_0x5b25b4},'order':_0x2163de};},ke=(_0x1ff21a,_0x1f0d86,_0xd8a88c)=>_0xd8a88c>=_0x1ff21a&&_0xd8a88c<=_0x1f0d86?null:_0xd8a88c>_0x1f0d86?_0xd8a88c-(_0x1f0d86-_0x1ff21a+0x1):_0xd8a88c,mo={'m1':_0x1c90fa['id'],'m2':_0x4075e['id'],'handler'(_0x4d815f,_0x53ba77){const _0x1718f2=_0x572182,_0x4d1573={'m1Prime':_0x4d815f,'m2Prime':_0x53ba77};if(_0x4d815f[_0x1718f2(0x8d)][_0x1718f2(0xdb)]!==_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0xdb)]||_0x4d815f[_0x1718f2(0x8d)][_0x1718f2(0x20b)]!==_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0x20b)])return _0x4d1573;const _0x20a5b0=[_0x570d2f[_0x1718f2(0xb4)](_0x4d815f)],_0x38686a=_0x570d2f[_0x1718f2(0xb4)](_0x53ba77),{values:_0x4c6966}=_0x38686a[_0x1718f2(0x8d)],_0x3f6efc=[];let _0x4c5120=!0x1;for(const _0x2bcfb3 in _0x4c6966){const _0x551ab7=_0x4c6966[_0x2bcfb3];if(_0x3f6efc[_0x1718f2(0x1ca)](..._0x551ab7[_0x1718f2(0xd1)]),_0x551ab7['ranges'][_0x1718f2(0xaf)](_0x1088db=>{const _0x1718aa=_0x1718f2,_0xb517ba=_0x180da6(h(_0x48173f(_0x4d815f[_0x1718aa(0x8d)][_0x1718aa(0x19f)])),h(_0x48173f(_0x1088db)));return _0xb517ba==null||_0xb517ba[_0x1718aa(0xf6)]!==0x0?!0x0:(_0xb517ba[_0x1718aa(0xc3)]!==0x0&&(_0x4c5120=!0x0),_0x1088db[_0x1718aa(0x102)]+=_0xb517ba[_0x1718aa(0xc3)],_0x1088db['endRow']+=_0xb517ba['step'],!0x1);}))return{'error':new Error(_0x1718f2(0x15d))};}if(_0x4c5120){const _0x3c235f={'id':_0x3dcda7['id'],'params':{'unitId':_0x53ba77[_0x1718f2(0x8d)]['unitId'],'subUnitId':_0x53ba77[_0x1718f2(0x8d)][_0x1718f2(0x20b)],'ranges':_0x3f6efc}};_0x20a5b0[_0x1718f2(0x1ca)](_0x3c235f,_0x38686a);}return{'m1Prime':_0x20a5b0,'m2Prime':_0x38686a};}},uo={'m1':_0x1c90fa['id'],'m2':_0x15eb0a['id'],'handler'(_0x240293,_0x17e5d2){const _0x45fc5=_0x572182,_0x4742cc={'m1Prime':_0x240293,'m2Prime':_0x17e5d2};if(_0x240293[_0x45fc5(0x8d)]['unitId']!==_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0xdb)]||_0x240293[_0x45fc5(0x8d)][_0x45fc5(0x20b)]!==_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0x20b)])return _0x4742cc;const _0x3a08d0=[_0x570d2f[_0x45fc5(0xb4)](_0x240293)],_0x155022=_0x570d2f[_0x45fc5(0xb4)](_0x17e5d2),_0x5bfe84=new _0x1f7bb9(_0x155022[_0x45fc5(0x8d)]['cellValue']),_0x3bd8c7=_0x5bfe84[_0x45fc5(0x182)](),_0x202a73=_0x240293[_0x45fc5(0x8d)][_0x45fc5(0x19f)],_0x4f1541=_0x202a73[_0x45fc5(0x111)]-_0x202a73[_0x45fc5(0x102)]+0x1;if(_0x155022[_0x45fc5(0x8d)][_0x45fc5(0x208)]&&_0x202a73[_0x45fc5(0x111)]<_0x3bd8c7['startRow'])ft(_0x155022[_0x45fc5(0x8d)]['cellValue'],_0x3bd8c7[_0x45fc5(0x102)],_0x3bd8c7[_0x45fc5(0x111)]-_0x3bd8c7[_0x45fc5(0x102)]+0x1,-_0x4f1541);else{if(_0x202a73[_0x45fc5(0x102)]<=_0x3bd8c7[_0x45fc5(0x111)])return{'error':new Error('remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation')};}const _0x5ceb9c=new _0x1f7bb9();let _0x539a2c=!0x1,_0x48c933=!0x1;if(_0x5bfe84['forValue']((_0x1e0996,_0x2175d3,_0x59bb46)=>{const _0x5df07b=_0x45fc5;if(_0x59bb46&&_0x59bb46['f']){const _0x58b9bf=_0x59bb46['f'];let _0x1b98fc=!0x1;const _0x1b783c=dt(_0x240293['params'][_0x5df07b(0xdb)],_0x240293[_0x5df07b(0x8d)][_0x5df07b(0x20b)],_0x58b9bf,_0x24f6e9=>{const _0x380bf8=_0x5df07b,_0x4b3d59=_0x180da6(h(_0x48173f(_0x240293[_0x380bf8(0x8d)]['range'])),h(_0x48173f(_0x24f6e9)));return _0x4b3d59===null?(_0x539a2c=!0x0,_0x24f6e9):((_0x4b3d59[_0x380bf8(0xc3)]!==0x0||_0x4b3d59[_0x380bf8(0xf6)]!==0x0)&&(_0x1b98fc=!0x0,_0x24f6e9[_0x380bf8(0x102)]+=_0x4b3d59[_0x380bf8(0xc3)],_0x24f6e9[_0x380bf8(0x111)]+=_0x4b3d59[_0x380bf8(0xc3)]+_0x4b3d59['length']),_0x24f6e9);});_0x1b98fc&&(_0x48c933=!0x0,_0x59bb46['f']=_0x1b783c,_0x5ceb9c[_0x5df07b(0x134)](_0x1e0996,_0x2175d3,{..._0x59bb46}));}}),_0x539a2c)return{'error':new Error(_0x45fc5(0x1e5))};if(_0x48c933){const _0x13f564={'id':_0x15eb0a['id'],'params':{'unitId':_0x17e5d2['params'][_0x45fc5(0xdb)],'subUnitId':_0x17e5d2[_0x45fc5(0x8d)][_0x45fc5(0x20b)],'cellValue':_0x5ceb9c[_0x45fc5(0x16a)]()}};_0x3a08d0['push'](_0x13f564);}return{'m1Prime':_0x3a08d0,'m2Prime':_0x155022};}},lo={'m1':_0x1c90fa['id'],'m2':_0x36a513['id'],'handler'(_0x1e6a3f,_0x1f7cfc){const _0x2effd9=_0x572182,_0x1774d4={'m1Prime':_0x1e6a3f,'m2Prime':_0x1f7cfc};if(_0x1e6a3f[_0x2effd9(0x8d)]['unitId']!==_0x1f7cfc['params'][_0x2effd9(0xdb)]||_0x1e6a3f['params'][_0x2effd9(0x20b)]!==_0x1f7cfc[_0x2effd9(0x8d)][_0x2effd9(0x20b)])return _0x1774d4;const _0x5aea08=_0x570d2f[_0x2effd9(0xb4)](_0x1e6a3f),_0x1e7624=_0x570d2f['deepClone'](_0x1f7cfc),{rowData:_0xe56efa}=_0x1e7624[_0x2effd9(0x8d)];return _0x4aa10e(_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)]['startRow'],_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)][_0x2effd9(0x111)]-_0x1e6a3f[_0x2effd9(0x8d)][_0x2effd9(0x19f)]['startRow']+0x1,_0xe56efa),{'m1Prime':_0x5aea08,'m2Prime':_0x1e7624};}},co={'m1':_0x1c90fa['id'],'m2':_0xce09a7['id'],'handler'(_0x4287cf,_0x4d4ab9){const _0x4e7ab8=_0x572182,_0x4bf232={'m1Prime':_0x4287cf,'m2Prime':_0x4d4ab9};if(_0x4287cf[_0x4e7ab8(0x8d)]['unitId']!==_0x4d4ab9['params'][_0x4e7ab8(0xdb)]||_0x4287cf[_0x4e7ab8(0x8d)][_0x4e7ab8(0x20b)]!==_0x4d4ab9[_0x4e7ab8(0x8d)][_0x4e7ab8(0x20b)])return _0x4bf232;const _0x63ecc1=_0x570d2f[_0x4e7ab8(0xb4)](_0x4287cf),_0x2aa6b5=_0x570d2f[_0x4e7ab8(0xb4)](_0x4d4ab9),{ranges:_0xd81958}=_0x2aa6b5[_0x4e7ab8(0x8d)];return _0xd81958[_0x4e7ab8(0xc5)](_0x481590=>{const _0x182bf4=_0x4e7ab8,_0xd19f67=_0x180da6(h(_0x48173f(_0x4287cf[_0x182bf4(0x8d)]['range'])),h(_0x48173f(_0x481590)));_0xd19f67==null?_0x2aa6b5['id']=_0x1a62da['id']:(_0x481590[_0x182bf4(0x102)]+=_0xd19f67[_0x182bf4(0xc3)],_0x481590[_0x182bf4(0x111)]+=_0xd19f67[_0x182bf4(0xc3)]+_0xd19f67[_0x182bf4(0xf6)]);}),{'m1Prime':_0x63ecc1,'m2Prime':_0x2aa6b5};}},po={'m1':_0x1c90fa['id'],'m2':_0x2b245f['id'],'handler'(_0x250d11,_0x55329d){const _0x1ad8d9=_0x572182,_0x2b726c={'m1Prime':_0x250d11,'m2Prime':_0x55329d};if(_0x250d11['params'][_0x1ad8d9(0xdb)]!==_0x55329d[_0x1ad8d9(0x8d)][_0x1ad8d9(0xdb)]||_0x250d11['params'][_0x1ad8d9(0x20b)]!==_0x55329d['params'][_0x1ad8d9(0x20b)])return _0x2b726c;const _0x434000=_0x570d2f[_0x1ad8d9(0xb4)](_0x250d11),_0x474d74=_0x570d2f[_0x1ad8d9(0xb4)](_0x55329d),{ranges:_0x1d6470}=_0x474d74[_0x1ad8d9(0x8d)];return _0x1d6470['forEach'](_0x5af5f8=>{const _0x540850=_0x1ad8d9,_0x3df332=_0x180da6(h(_0x48173f(_0x250d11[_0x540850(0x8d)][_0x540850(0x19f)])),h(_0x48173f(_0x5af5f8)));_0x3df332==null?_0x474d74['id']=_0x1a62da['id']:(_0x5af5f8[_0x540850(0x102)]+=_0x3df332[_0x540850(0xc3)],_0x5af5f8[_0x540850(0x111)]+=_0x3df332[_0x540850(0xc3)]+_0x3df332[_0x540850(0xf6)]);}),{'m1Prime':_0x434000,'m2Prime':_0x474d74};}},fo={'m1':_0x1c90fa['id'],'m2':_0x23969e['id'],'handler'(_0x506987,_0x1691a7){const _0x4ea0d3=_0x572182,_0x3194b4={'m1Prime':[],'m2Prime':[]};if(_0x506987[_0x4ea0d3(0x8d)][_0x4ea0d3(0xdb)]!==_0x1691a7['params'][_0x4ea0d3(0xdb)]||_0x506987[_0x4ea0d3(0x8d)][_0x4ea0d3(0x20b)]!==_0x1691a7[_0x4ea0d3(0x8d)]['subUnitId'])return _0x3194b4;const _0x1f58e6=_0x570d2f[_0x4ea0d3(0xb4)](_0x1691a7);let _0x54f2d6=!0x1;return _0x1f58e6[_0x4ea0d3(0x8d)][_0x4ea0d3(0x138)]['forEach'](_0x22e74c=>{const _0x3c521a=_0x4ea0d3,{range:_0x567fe3,primary:_0x22af0e}=_0x22e74c,_0x185855=_0x180da6(h(_0x48173f(_0x506987[_0x3c521a(0x8d)][_0x3c521a(0x19f)])),h(_0x48173f(_0x567fe3)));if(_0x185855!=null&&(_0x185855[_0x3c521a(0xf6)]||_0x185855[_0x3c521a(0xc3)])){if(_0x567fe3[_0x3c521a(0x102)]+=_0x185855['step'],_0x567fe3['endRow']+=_0x185855[_0x3c521a(0xc3)]+(_0x185855[_0x3c521a(0xf6)]||0x0),_0x22af0e){const _0x5e3642=_0x180da6(h(_0x48173f(_0x506987[_0x3c521a(0x8d)][_0x3c521a(0x19f)])),h(_0x48173f(_0x22af0e)));if(_0x5e3642==null){_0x22af0e['startRow']=_0x567fe3[_0x3c521a(0x102)],_0x22af0e[_0x3c521a(0x111)]=_0x567fe3[_0x3c521a(0x102)],_0x22af0e['actualRow']=_0x567fe3['startRow'];return;}(_0x5e3642[_0x3c521a(0xf6)]||_0x5e3642[_0x3c521a(0xc3)])&&(_0x22af0e[_0x3c521a(0x102)]+=_0x5e3642['step'],_0x22af0e['endRow']+=_0x5e3642['step'],_0x22af0e[_0x3c521a(0x1d9)]+=_0x5e3642['step']);}_0x54f2d6=!0x0;}}),_0x54f2d6&&_0x3194b4['m2Prime'][_0x4ea0d3(0x1ca)](_0x1f58e6),_0x3194b4;}},Ro={'m1':_0x1c90fa['id'],'m2':_0x23aded['id'],'handler'(_0x13c59b,_0x22010b){const _0x332826=_0x572182,_0xe9a5f={'m1Prime':[_0x13c59b],'m2Prime':[_0x22010b]};if(_0x13c59b[_0x332826(0x8d)]['unitId']!==_0x22010b[_0x332826(0x8d)]['unitId']||_0x13c59b['params'][_0x332826(0x20b)]!==_0x22010b[_0x332826(0x8d)][_0x332826(0x20b)])return _0xe9a5f;const _0x1d18a4=_0x570d2f[_0x332826(0xb4)](_0x13c59b),_0x55d494=_0x570d2f['deepClone'](_0x22010b),_0x47f08d=Me({'start':_0x13c59b[_0x332826(0x8d)]['range'][_0x332826(0x102)],'end':_0x13c59b['params']['range'][_0x332826(0x111)]},{'start':_0x22010b[_0x332826(0x8d)]['range']['startRow'],'end':_0x22010b[_0x332826(0x8d)][_0x332826(0x19f)][_0x332826(0x111)]});return _0x47f08d===null?{'m1Prime':[_0x1d18a4,{'id':_0x224fc7['id'],'params':{'unitId':_0x22010b[_0x332826(0x8d)][_0x332826(0xdb)],'subUnitId':_0x22010b[_0x332826(0x8d)][_0x332826(0xdb)]}}],'m2Prime':[]}:(_0x55d494[_0x332826(0x8d)][_0x332826(0x19f)]['startRow']=_0x47f08d[_0x332826(0xa5)],_0x55d494['params'][_0x332826(0x19f)][_0x332826(0x111)]=_0x47f08d[_0x332826(0x1c4)],{'m1Prime':[_0x55d494,_0x1d18a4],'m2Prime':[_0x55d494]});}},ho={'m1':_0x1c90fa['id'],'m2':_0x5357b7['id'],'handler'(_0xc5338f,_0x3774e9){const _0x59df12=_0x572182,_0x2851d4={'m1Prime':_0xc5338f,'m2Prime':_0x3774e9};if(_0xc5338f[_0x59df12(0x8d)][_0x59df12(0xdb)]!==_0x3774e9['params'][_0x59df12(0xdb)]||_0xc5338f[_0x59df12(0x8d)][_0x59df12(0x20b)]!==_0x3774e9[_0x59df12(0x8d)][_0x59df12(0x20b)])return _0x2851d4;const _0xdfdd03=_0x570d2f['deepClone'](_0xc5338f),_0x9aa96a=_0x570d2f[_0x59df12(0xb4)](_0x3774e9),{rowsAutoHeightInfo:_0x55aee0}=_0x9aa96a['params'];for(let _0x17b4d3=_0x55aee0[_0x59df12(0xf6)]-0x1;_0x17b4d3>=0x0;_0x17b4d3--){const _0x1f0e70=_0x55aee0[_0x17b4d3],_0x11e7a1={'startRow':_0x1f0e70['row'],'endRow':_0x1f0e70['row'],'startColumn':0x0,'endColumn':0x0},_0x294998=_0x180da6(h(_0x48173f(_0xc5338f[_0x59df12(0x8d)]['range'])),_0x48173f(_0x11e7a1));_0x294998==null?_0x55aee0[_0x59df12(0xf0)](_0x17b4d3,0x1):_0x1f0e70['row']+=_0x294998[_0x59df12(0xc3)];}return{'m1Prime':_0xdfdd03,'m2Prime':_0x9aa96a};}},go={'m1':_0x1c90fa['id'],'m2':_0xdb3bc1['id'],'handler'(_0x55a7e2,_0x88ba1f){const _0x6e6fa9=_0x572182,_0x5c6c4a={'m1Prime':_0x55a7e2,'m2Prime':_0x88ba1f};if(_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0xdb)]!==_0x88ba1f[_0x6e6fa9(0x8d)][_0x6e6fa9(0xdb)]||_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x20b)]!==_0x88ba1f['params'][_0x6e6fa9(0x20b)])return _0x5c6c4a;const _0x22de14=_0x570d2f[_0x6e6fa9(0xb4)](_0x55a7e2),_0x4f61a1=_0x570d2f[_0x6e6fa9(0xb4)](_0x88ba1f),{ranges:_0x4e72ec,rowHeight:_0x1a4179}=_0x4f61a1[_0x6e6fa9(0x8d)];return _0x4e72ec[_0x6e6fa9(0xc5)](_0x23e732=>{const _0x8a8f93=_0x6e6fa9,_0x4a0019=_0x180da6(h(_0x48173f(_0x55a7e2['params'][_0x8a8f93(0x19f)])),_0x48173f(_0x23e732));_0x4a0019==null?_0x4f61a1['id']=_0x1a62da['id']:(_0x23e732[_0x8a8f93(0x102)]+=_0x4a0019[_0x8a8f93(0xc3)],_0x23e732['endRow']+=_0x4a0019[_0x8a8f93(0xc3)]+_0x4a0019[_0x8a8f93(0xf6)]);}),typeof _0x1a4179!=_0x6e6fa9(0x1b5)&&_0x4aa10e(_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)][_0x6e6fa9(0x102)],_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)]['endRow']-_0x55a7e2[_0x6e6fa9(0x8d)][_0x6e6fa9(0x19f)][_0x6e6fa9(0x102)]+0x1,_0x1a4179),{'m1Prime':_0x22de14,'m2Prime':_0x4f61a1};}},Io={'m1':_0x1c90fa['id'],'m2':_0x386b55['id'],'handler'(_0x4cc19a,_0x49c2bc){const _0xfe8071=_0x572182,_0x291f34={'m1Prime':_0x4cc19a,'m2Prime':_0x49c2bc};if(_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0xdb)]!==_0x49c2bc[_0xfe8071(0x8d)]['unitId']||_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x20b)]!==_0x49c2bc['params'][_0xfe8071(0x20b)])return _0x291f34;const _0x39c719=_0x570d2f[_0xfe8071(0xb4)](_0x4cc19a),_0x17c054=_0x570d2f[_0xfe8071(0xb4)](_0x49c2bc),{ranges:_0x1e1b48,autoHeightInfo:_0x5858de}=_0x17c054[_0xfe8071(0x8d)];return _0x1e1b48['forEach'](_0x1b7ebb=>{const _0x17f142=_0xfe8071,_0x19586d=_0x180da6(h(_0x48173f(_0x4cc19a[_0x17f142(0x8d)][_0x17f142(0x19f)])),_0x48173f(_0x1b7ebb));_0x19586d==null?_0x17c054['id']=_0x1a62da['id']:(_0x1b7ebb[_0x17f142(0x102)]+=_0x19586d[_0x17f142(0xc3)],_0x1b7ebb[_0x17f142(0x111)]+=_0x19586d[_0x17f142(0xc3)]+_0x19586d[_0x17f142(0xf6)]);}),typeof _0x5858de!=_0xfe8071(0x1b5)&&_0x4aa10e(_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)]['startRow'],_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)][_0xfe8071(0x111)]-_0x4cc19a[_0xfe8071(0x8d)][_0xfe8071(0x19f)][_0xfe8071(0x102)]+0x1,_0x5858de),{'m1Prime':_0x39c719,'m2Prime':_0x17c054};}},wo={'m1':_0x1c90fa['id'],'m2':_0x2afd0c['id'],'handler':(_0x2e64d4,_0x444e48)=>{const _0x5d94bc=_0x572182,_0x53fe28={'m1Prime':_0x2e64d4,'m2Prime':_0x444e48};if(_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0xdb)]!==_0x444e48['params'][_0x5d94bc(0xdb)]||_0x2e64d4['params']['subUnitId']!==_0x444e48[_0x5d94bc(0x8d)][_0x5d94bc(0x20b)])return _0x53fe28;const _0x3fb0b9={'id':_0x484aa2['id'],'params':{'unitId':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0xdb)],'subUnitId':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0x20b)],'range':_0x2e64d4[_0x5d94bc(0x8d)][_0x5d94bc(0x19f)]}},_0x46cc8c=wt(_0x444e48,_0x3fb0b9);return{'m1Prime':[_0x2e64d4,..._0x46cc8c],'m2Prime':[_0x444e48,..._0x46cc8c]};}},Co={'m1':_0x1c90fa['id'],'m2':_0x4e1baf['id'],'handler':(_0x13b087,_0x23125f)=>{const _0x519bf9=_0x572182,_0x3d86e1={'m1Prime':_0x13b087,'m2Prime':_0x23125f};if(_0x13b087[_0x519bf9(0x8d)]['unitId']!==_0x23125f[_0x519bf9(0x8d)][_0x519bf9(0xdb)]||_0x23125f[_0x519bf9(0x8d)]['subUnitId']!==_0x13b087[_0x519bf9(0x8d)][_0x519bf9(0x20b)])return _0x3d86e1;const _0x15837d={'id':_0x484aa2['id'],'params':{'range':_0x13b087[_0x519bf9(0x8d)][_0x519bf9(0x19f)]}},_0x31effa=Ct(_0x23125f,_0x15837d);return{'m1Prime':[_0x13b087,..._0x31effa],'m2Prime':[_0x23125f,..._0x31effa]};}},Po={'m1':_0x3c47fd['id'],'m2':_0x4b0a3e['id'],'handler'(_0x156fbe,_0x5b4747){const _0x44d963=_0x572182,_0x5c6761=_0x570d2f['deepClone'](_0x156fbe),_0x4889cd=_0x570d2f['deepClone'](_0x5b4747);if(_0x156fbe[_0x44d963(0x8d)]['unitId']!==_0x5b4747['params'][_0x44d963(0xdb)]||_0x156fbe[_0x44d963(0x8d)][_0x44d963(0x20b)]!==_0x5b4747[_0x44d963(0x8d)][_0x44d963(0x20b)])return{'m1Prime':_0x5c6761,'m2Prime':_0x4889cd};for(let _0x584220=0x0;_0x584220<_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x44d963(0xf6)];_0x584220++){let _0x4f4a6d=!0x1;for(let _0x35c858=0x0;_0x35c858<_0x4889cd[_0x44d963(0x8d)]['ranges'][_0x44d963(0xf6)];_0x35c858++){const _0x430c49=_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x584220],_0x5839e9=_0x4889cd['params'][_0x44d963(0xd1)][_0x35c858];if(_0x5b3986['intersects'](_0x430c49,_0x5839e9)){_0x4f4a6d=!0x0;break;}}_0x4f4a6d&&(_0x5c6761[_0x44d963(0x8d)][_0x44d963(0xd1)][_0x44d963(0xf0)](_0x584220,0x1),_0x584220--);}return _0x5c6761['params'][_0x44d963(0xd1)][_0x44d963(0xf6)]===0x0&&(_0x5c6761['id']=_0x1a62da['id']),{'m1Prime':_0x5c6761,'m2Prime':_0x4889cd};}},Uo={'m1':_0x3c47fd['id'],'m2':_0x541ec4['id'],'handler'(_0x448ec2,_0x4dac04){const _0x47f027=_0x572182,_0x467f0b=_0x570d2f['deepClone'](_0x448ec2),_0x4de15d=_0x570d2f[_0x47f027(0xb4)](_0x4dac04);if(_0x448ec2[_0x47f027(0x8d)][_0x47f027(0xdb)]!==_0x4dac04[_0x47f027(0x8d)][_0x47f027(0xdb)]||_0x448ec2[_0x47f027(0x8d)][_0x47f027(0x20b)]!==_0x4dac04[_0x47f027(0x8d)][_0x47f027(0x20b)])return{'m1Prime':_0x467f0b,'m2Prime':_0x4de15d};const _0x5914b7=_0x467f0b[_0x47f027(0x8d)][_0x47f027(0xd1)][_0x47f027(0x1e0)](_0x3d72ae=>{const _0x167f8b=_0x47f027,_0x3081ef=_0x4de15d['params'][_0x167f8b(0x19f)],_0x223119=_0x3081ef[_0x167f8b(0x9d)]-_0x3081ef[_0x167f8b(0x15a)]+0x1;return _0x3081ef['startColumn']<=_0x3d72ae['startColumn']?{..._0x3d72ae,'startColumn':_0x3d72ae['startColumn']+_0x223119,'endColumn':_0x3d72ae[_0x167f8b(0x9d)]+_0x223119}:_0x3081ef[_0x167f8b(0x15a)]>_0x3d72ae[_0x167f8b(0x15a)]&&_0x3081ef[_0x167f8b(0x15a)]<=_0x3d72ae[_0x167f8b(0x9d)]?{..._0x3d72ae,'endColumn':_0x3d72ae['endColumn']+_0x223119}:{..._0x3d72ae};});return _0x467f0b[_0x47f027(0x8d)]['ranges']=_0x5914b7,{'m1Prime':_0x467f0b,'m2Prime':_0x4de15d};}},bo={'m1':_0x3c47fd['id'],'m2':_0x224ab4['id'],'handler'(_0x342231,_0x5696c6){const _0x439165=_0x572182,_0x290807=_0x570d2f[_0x439165(0xb4)](_0x342231),_0x8cf344=_0x570d2f['deepClone'](_0x5696c6);if(_0x342231['params']['unitId']!==_0x5696c6[_0x439165(0x8d)][_0x439165(0xdb)]||_0x342231[_0x439165(0x8d)][_0x439165(0x20b)]!==_0x5696c6['params']['subUnitId'])return{'m1Prime':_0x290807,'m2Prime':_0x8cf344};const _0x5da500=_0x290807['params']['ranges'][_0x439165(0x1e0)](_0x3df942=>{const _0x2da76f=_0x439165,_0x45dd86=_0x8cf344[_0x2da76f(0x8d)]['range'],_0x4c8d42=_0x45dd86['endRow']-_0x45dd86[_0x2da76f(0x102)]+0x1;return _0x45dd86[_0x2da76f(0x102)]<=_0x3df942[_0x2da76f(0x102)]?{..._0x3df942,'startRow':_0x3df942[_0x2da76f(0x102)]+_0x4c8d42,'endRow':_0x3df942[_0x2da76f(0x111)]+_0x4c8d42}:_0x45dd86['startRow']>_0x3df942[_0x2da76f(0x102)]&&_0x45dd86[_0x2da76f(0x102)]<=_0x3df942[_0x2da76f(0x111)]?{..._0x3df942,'endRow':_0x3df942[_0x2da76f(0x111)]+_0x4c8d42}:{..._0x3df942};});return _0x290807[_0x439165(0x8d)][_0x439165(0xd1)]=_0x5da500,{'m1Prime':_0x290807,'m2Prime':_0x8cf344};}},Mo={'m1':_0x3c47fd['id'],'m2':_0x31c10b['id'],'handler'(_0x3db3ee,_0x4f99bb){const _0x34c68f=_0x572182,_0x56021a=_0x570d2f[_0x34c68f(0xb4)](_0x3db3ee),_0x52a111=_0x570d2f[_0x34c68f(0xb4)](_0x4f99bb);if(_0x3db3ee[_0x34c68f(0x8d)][_0x34c68f(0xdb)]!==_0x4f99bb[_0x34c68f(0x8d)][_0x34c68f(0xdb)]||_0x3db3ee[_0x34c68f(0x8d)][_0x34c68f(0x20b)]!==_0x4f99bb[_0x34c68f(0x8d)][_0x34c68f(0x20b)])return{'m1Prime':_0x56021a,'m2Prime':_0x52a111};const _0x4b5eeb=_0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)][_0x34c68f(0x146)]((_0x10763b,_0x467e90)=>{const _0xfd4923=_0x34c68f,{sourceRange:_0xdace7,targetRange:_0x5dcb63}=_0x4f99bb[_0xfd4923(0x8d)],_0x5457a9={..._0x467e90};return _0xdace7['endColumn']<_0x5457a9[_0xfd4923(0x15a)]&&_0x5dcb63[_0xfd4923(0x15a)]>_0x5457a9[_0xfd4923(0x9d)]?(_0x5457a9[_0xfd4923(0x15a)]-=_0xdace7[_0xfd4923(0x9d)]-_0xdace7[_0xfd4923(0x15a)]+0x1,_0x5457a9[_0xfd4923(0x9d)]-=_0xdace7[_0xfd4923(0x9d)]-_0xdace7['startColumn']+0x1,K(_0x5457a9)&&_0x10763b[_0xfd4923(0x1ca)](_0x5457a9)):_0xdace7[_0xfd4923(0x15a)]>_0x5457a9[_0xfd4923(0x9d)]&&_0x5dcb63['endColumn']<_0x5457a9[_0xfd4923(0x15a)]?(_0x5457a9['startColumn']+=_0xdace7[_0xfd4923(0x9d)]-_0xdace7[_0xfd4923(0x15a)]+0x1,_0x5457a9[_0xfd4923(0x9d)]+=_0xdace7['endColumn']-_0xdace7[_0xfd4923(0x15a)]+0x1,K(_0x5457a9)&&_0x10763b[_0xfd4923(0x1ca)](_0x5457a9)):_0x5b3986['intersects'](_0x5457a9,_0xdace7)||_0x5b3986[_0xfd4923(0x7a)](_0x5457a9,_0x5dcb63)||_0x10763b['push'](_0x5457a9),_0x10763b;},[]);return _0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)]=_0x4b5eeb,_0x56021a[_0x34c68f(0x8d)][_0x34c68f(0xd1)][_0x34c68f(0xf6)]===0x0&&(_0x56021a['id']=_0x1a62da['id']),{'m1Prime':_0x56021a,'m2Prime':_0x52a111};}},vo={'m1':_0x3c47fd['id'],'m2':_0x454b7a['id'],'handler'(_0x4cb869,_0x73d809){const _0x2635a9=_0x572182,_0x67a57e=_0x570d2f[_0x2635a9(0xb4)](_0x4cb869),_0x12e4cc=_0x570d2f[_0x2635a9(0xb4)](_0x73d809);if(_0x4cb869[_0x2635a9(0x8d)][_0x2635a9(0xdb)]!==_0x73d809[_0x2635a9(0x8d)][_0x2635a9(0xdb)]||_0x4cb869[_0x2635a9(0x8d)][_0x2635a9(0x20b)]!==_0x73d809['params']['subUnitId'])return{'m1Prime':_0x67a57e,'m2Prime':_0x12e4cc};const _0x7bf865=_0x67a57e['params'][_0x2635a9(0xd1)][_0x2635a9(0x146)]((_0x5ea65b,_0x1c292a)=>{const _0x4991cf=_0x2635a9,{sourceRange:_0x4219f2,targetRange:_0xde90c0}=_0x73d809[_0x4991cf(0x8d)],_0x366932={..._0x1c292a};return _0x4219f2[_0x4991cf(0x111)]<_0x366932[_0x4991cf(0x102)]&&_0xde90c0['startRow']>_0x366932['endRow']?(_0x366932['startRow']-=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2[_0x4991cf(0x102)]+0x1,_0x366932[_0x4991cf(0x111)]-=_0x4219f2['endRow']-_0x4219f2[_0x4991cf(0x102)]+0x1,K(_0x366932)&&_0x5ea65b['push'](_0x366932)):_0x4219f2[_0x4991cf(0x102)]>_0x366932[_0x4991cf(0x111)]&&_0xde90c0[_0x4991cf(0x111)]<_0x366932['startRow']?(_0x366932[_0x4991cf(0x102)]+=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2[_0x4991cf(0x102)]+0x1,_0x366932[_0x4991cf(0x111)]+=_0x4219f2[_0x4991cf(0x111)]-_0x4219f2['startRow']+0x1,K(_0x366932)&&_0x5ea65b[_0x4991cf(0x1ca)](_0x366932)):_0x5b3986[_0x4991cf(0x7a)](_0x366932,_0x4219f2)||_0x5b3986[_0x4991cf(0x7a)](_0x366932,_0xde90c0)||_0x5ea65b[_0x4991cf(0x1ca)](_0x366932),_0x5ea65b;},[]);return _0x67a57e[_0x2635a9(0x8d)]['ranges']=_0x7bf865,_0x67a57e[_0x2635a9(0x8d)][_0x2635a9(0xd1)][_0x2635a9(0xf6)]===0x0&&(_0x67a57e['id']=_0x1a62da['id']),{'m1Prime':_0x67a57e,'m2Prime':_0x12e4cc};}},Eo={'m1':_0x3c47fd['id'],'m2':_0xe5c4bd['id'],'handler'(_0x5d7c5f,_0x1667da){const _0x309dc2=_0x572182,_0x5b5aa3=_0x570d2f[_0x309dc2(0xb4)](_0x5d7c5f),_0x3a03c5=_0x570d2f['deepClone'](_0x1667da);if(_0x5d7c5f[_0x309dc2(0x8d)][_0x309dc2(0xdb)]!==_0x1667da[_0x309dc2(0x8d)][_0x309dc2(0xdb)]||_0x5d7c5f[_0x309dc2(0x8d)][_0x309dc2(0x20b)]!==_0x1667da['params'][_0x309dc2(0x20b)])return{'m1Prime':_0x5b5aa3,'m2Prime':_0x3a03c5};const _0x48c55e=_0x5b5aa3['params'][_0x309dc2(0xd1)][_0x309dc2(0x146)]((_0x3c545a,_0x5c0428)=>{const _0x49402b=_0x309dc2,_0x497553=_0x3a03c5[_0x49402b(0x8d)][_0x49402b(0x19f)],_0x3c4249=_0x497553[_0x49402b(0x9d)]-_0x497553[_0x49402b(0x15a)]+0x1;let _0x2d7138={..._0x5c0428};return _0x497553[_0x49402b(0x15a)]>_0x5c0428[_0x49402b(0x9d)]?_0x2d7138={..._0x5c0428}:_0x497553[_0x49402b(0x15a)]>=_0x5c0428['startColumn']&&_0x497553[_0x49402b(0x15a)]<=_0x5c0428[_0x49402b(0x9d)]&&_0x497553[_0x49402b(0x9d)]>_0x5c0428[_0x49402b(0x9d)]?(_0x2d7138['endColumn']=_0x497553[_0x49402b(0x15a)]-0x1,_0x497553[_0x49402b(0x15a)]===_0x5c0428[_0x49402b(0x15a)]&&(_0x2d7138=null)):_0x497553[_0x49402b(0x15a)]>_0x5c0428[_0x49402b(0x15a)]&&_0x497553['endColumn']<_0x5c0428[_0x49402b(0x9d)]?_0x2d7138[_0x49402b(0x9d)]=_0x5c0428['endColumn']-_0x3c4249:_0x497553[_0x49402b(0x15a)]<_0x5c0428[_0x49402b(0x15a)]&&_0x497553[_0x49402b(0x9d)]>=_0x5c0428['startColumn']&&_0x497553['endColumn']<=_0x5c0428[_0x49402b(0x9d)]?(_0x2d7138['startColumn']=_0x497553['startColumn'],_0x2d7138[_0x49402b(0x9d)]=_0x5c0428[_0x49402b(0x9d)]-_0x3c4249,_0x497553['endColumn']===_0x5c0428[_0x49402b(0x9d)]&&(_0x2d7138=null)):_0x497553[_0x49402b(0x15a)]<=_0x5c0428['startColumn']&&_0x497553[_0x49402b(0x9d)]>=_0x5c0428[_0x49402b(0x9d)]?_0x2d7138=null:_0x497553['endColumn']<_0x5c0428['startColumn']&&(_0x2d7138['startColumn']=_0x5c0428[_0x49402b(0x15a)]-_0x3c4249,_0x2d7138[_0x49402b(0x9d)]=_0x5c0428[_0x49402b(0x9d)]-_0x3c4249),_0x2d7138&&!(_0x2d7138[_0x49402b(0x102)]===_0x2d7138[_0x49402b(0x111)]&&_0x2d7138[_0x49402b(0x15a)]===_0x2d7138[_0x49402b(0x9d)])&&_0x3c545a['push'](_0x2d7138),_0x3c545a;},[]);return _0x5b5aa3[_0x309dc2(0x8d)][_0x309dc2(0xd1)]=_0x48c55e,_0x5b5aa3['params'][_0x309dc2(0xd1)][_0x309dc2(0xf6)]===0x0&&(_0x5b5aa3['id']=_0x1a62da['id']),{'m1Prime':_0x5b5aa3,'m2Prime':_0x3a03c5};}},So={'m1':_0x3c47fd['id'],'m2':_0x1c90fa['id'],'handler'(_0x30719c,_0x29bff0){const _0x49363b=_0x572182,_0x8adbf9=_0x570d2f[_0x49363b(0xb4)](_0x30719c),_0x4468ed=_0x570d2f['deepClone'](_0x29bff0);if(_0x30719c[_0x49363b(0x8d)][_0x49363b(0xdb)]!==_0x29bff0[_0x49363b(0x8d)][_0x49363b(0xdb)]||_0x30719c[_0x49363b(0x8d)][_0x49363b(0x20b)]!==_0x29bff0['params'][_0x49363b(0x20b)])return{'m1Prime':_0x8adbf9,'m2Prime':_0x4468ed};const _0x3dac91=_0x8adbf9['params']['ranges'][_0x49363b(0x146)]((_0x4f62bd,_0x36863d)=>{const _0x14e2bc=_0x49363b,_0x227495=_0x4468ed[_0x14e2bc(0x8d)]['range'],_0x34cd08=_0x227495[_0x14e2bc(0x111)]-_0x227495[_0x14e2bc(0x102)]+0x1;let _0xe2fb46={..._0x36863d};return _0x227495[_0x14e2bc(0x102)]>_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46={..._0x36863d}:_0x227495[_0x14e2bc(0x102)]>=_0x36863d['startRow']&&_0x227495['startRow']<=_0x36863d[_0x14e2bc(0x111)]&&_0x227495['endRow']>_0x36863d[_0x14e2bc(0x111)]?(_0xe2fb46[_0x14e2bc(0x111)]=_0x227495[_0x14e2bc(0x102)]-0x1,_0x227495[_0x14e2bc(0x102)]===_0x36863d['startRow']&&(_0xe2fb46=null)):_0x227495['startRow']>_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]<_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46['endRow']=_0x36863d['endRow']-_0x34cd08:_0x227495[_0x14e2bc(0x102)]<_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]>=_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]<=_0x36863d[_0x14e2bc(0x111)]?(_0xe2fb46[_0x14e2bc(0x102)]=_0x227495[_0x14e2bc(0x102)],_0xe2fb46[_0x14e2bc(0x111)]=_0x36863d['endRow']-_0x34cd08,_0x227495[_0x14e2bc(0x111)]===_0x36863d[_0x14e2bc(0x111)]&&(_0xe2fb46=null)):_0x227495[_0x14e2bc(0x102)]<=_0x36863d[_0x14e2bc(0x102)]&&_0x227495[_0x14e2bc(0x111)]>=_0x36863d[_0x14e2bc(0x111)]?_0xe2fb46=null:_0x227495['endRow']<_0x36863d[_0x14e2bc(0x102)]&&(_0xe2fb46[_0x14e2bc(0x102)]=_0x36863d[_0x14e2bc(0x102)]-_0x34cd08,_0xe2fb46[_0x14e2bc(0x111)]=_0x36863d[_0x14e2bc(0x111)]-_0x34cd08),_0xe2fb46&&!(_0xe2fb46['startRow']===_0xe2fb46[_0x14e2bc(0x111)]&&_0xe2fb46[_0x14e2bc(0x15a)]===_0xe2fb46[_0x14e2bc(0x9d)])&&_0x4f62bd['push'](_0xe2fb46),_0x4f62bd;},[]);return _0x8adbf9[_0x49363b(0x8d)][_0x49363b(0xd1)]=_0x3dac91,_0x8adbf9[_0x49363b(0x8d)]['ranges']['length']===0x0&&(_0x8adbf9['id']=_0x1a62da['id']),{'m1Prime':_0x8adbf9,'m2Prime':_0x4468ed};}},Wo={'m1':_0x3c47fd['id'],'m2':_0x23969e['id'],'handler'(_0x136ccd,_0x2fef2e){const _0x3fb7df=_0x572182,_0x1e6231={'m1Prime':[],'m2Prime':[]};if(_0x136ccd[_0x3fb7df(0x8d)]['unitId']!==_0x2fef2e['params']['unitId']||_0x136ccd[_0x3fb7df(0x8d)][_0x3fb7df(0x20b)]!==_0x2fef2e[_0x3fb7df(0x8d)]['subUnitId'])return _0x1e6231;const _0x3e2c39=_0x570d2f[_0x3fb7df(0xb4)](_0x2fef2e),_0x3f63e1=_0x3e2c39[_0x3fb7df(0x8d)]['selections'],_0xbf68ac=_0x3f63e1[_0x3f63e1[_0x3fb7df(0xf6)]-0x1][_0x3fb7df(0x19d)];return _0x136ccd[_0x3fb7df(0x8d)]['ranges'][_0x3fb7df(0xc5)](_0x2b07f3=>{const _0x18e28f=_0x3fb7df;_0xbf68ac&&_0x5b3986[_0x18e28f(0x7a)](_0x2b07f3,_0xbf68ac)&&(_0xbf68ac[_0x18e28f(0xd5)]=!0x1,_0xbf68ac[_0x18e28f(0x187)]=!0x1,_0xbf68ac[_0x18e28f(0x102)]=_0x2b07f3[_0x18e28f(0x102)],_0xbf68ac[_0x18e28f(0x15a)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac['endRow']=_0x2b07f3[_0x18e28f(0x102)],_0xbf68ac[_0x18e28f(0x9d)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac[_0x18e28f(0x164)]=_0x2b07f3[_0x18e28f(0x15a)],_0xbf68ac['actualRow']=_0x2b07f3[_0x18e28f(0x102)]);}),_0x1e6231['m2Prime'][_0x3fb7df(0x1ca)](_0x3e2c39),_0x1e6231;}},Vo=_0x19bd1f=>{const _0x1654a5=_0x572182,{order:_0x4681f3}=_0x19bd1f,_0xd9176a={};return Object[_0x1654a5(0xab)](_0x4681f3)['forEach'](_0xd7699e=>{_0xd9176a[_0x4681f3[Number(_0xd7699e)]]=Number(_0xd7699e);}),{..._0x19bd1f,'order':_0xd9176a};},_o=(_0x28512c,_0x19b1a0)=>{const _0x3c8274=_0x572182,_0xb2b2ad={};return Array[_0x3c8274(0x1b0)](new Set(Object[_0x3c8274(0xab)](_0x28512c)['concat'](Object[_0x3c8274(0xab)](_0x19b1a0))[_0x3c8274(0x1e0)](Number)))[_0x3c8274(0xc5)](_0x41d4b9=>{let _0x16b82e;_0x41d4b9 in _0x19b1a0?(_0x16b82e=_0x19b1a0[_0x41d4b9],_0x16b82e in _0x28512c&&(_0x16b82e=_0x28512c[_0x16b82e])):_0x16b82e=_0x28512c[_0x41d4b9],_0xb2b2ad[_0x41d4b9]=_0x16b82e;}),_0xb2b2ad;},Oo={'m1':_0x587c63['id'],'m2':_0x587c63['id'],'handler'(_0x1733d9,_0x201185){const _0x5a4f0f=_0x572182,_0x3a36ab={'m1Prime':_0x1733d9,'m2Prime':_0x201185};if(_0x1733d9[_0x5a4f0f(0x8d)]['unitId']!==_0x201185[_0x5a4f0f(0x8d)][_0x5a4f0f(0xdb)])return _0x3a36ab;const {range:_0x108ec5}=_0x1733d9['params'],{range:_0x4a9d4a}=_0x201185[_0x5a4f0f(0x8d)];if(_0x4a9d4a['startColumn']===_0x108ec5[_0x5a4f0f(0x15a)]&&_0x4a9d4a[_0x5a4f0f(0x9d)]===_0x108ec5['endColumn']&&_0x4a9d4a[_0x5a4f0f(0x102)]<=_0x108ec5[_0x5a4f0f(0x102)]&&_0x4a9d4a[_0x5a4f0f(0x111)]>=_0x108ec5[_0x5a4f0f(0x111)]){const _0x25515d=Vo(_0x1733d9[_0x5a4f0f(0x8d)])['order'],_0x283bea={'id':_0x587c63['id'],'params':{..._0x201185['params'],'range':_0x4a9d4a,'order':_o(_0x25515d,_0x201185[_0x5a4f0f(0x8d)][_0x5a4f0f(0x13f)])}};return{'m1Prime':[],'m2Prime':_0x283bea};}return _0x5b3986[_0x5a4f0f(0x7a)](_0x108ec5,_0x4a9d4a)?{'error':new Error(_0x5a4f0f(0x137))}:_0x3a36ab;}},re={'id':_0x572182(0x20d),'type':_0x361ef7[_0x572182(0x1bf)],'handler':()=>!0x0},yo={'m1':re['id'],'m2':_0x572182(0x131),'handler'(_0x98d99d,_0x4107a4){const _0x4a427c=_0x572182;return{'error':new Error(_0x4a427c(0x1e3))};}},No={'m1':_0x572182(0x131),'m2':re['id'],'handler'(_0xfe0d1b,_0x2d4ab9){const _0x59b014=_0x572182;return _0xfe0d1b[_0x59b014(0x8d)][_0x59b014(0xdb)]===_0x2d4ab9[_0x59b014(0x8d)][_0x59b014(0xdb)]?{'m1Prime':[],'m2Prime':_0x2d4ab9}:{'m1Prime':_0xfe0d1b,'m2Prime':_0x2d4ab9};}},Do={'m1':_0x35fae0['id'],'m2':_0x35fae0['id'],'handler'(_0x32f904,_0x47da81){const _0x58e1e2=_0x572182,_0x332b9d={'m1Prime':_0x32f904,'m2Prime':_0x47da81};if(_0x32f904['params'][_0x58e1e2(0xdb)]!==_0x47da81['params'][_0x58e1e2(0xdb)]||_0x32f904[_0x58e1e2(0x8d)]['subUnitId']!==_0x47da81[_0x58e1e2(0x8d)][_0x58e1e2(0x20b)])return _0x332b9d;const _0x5593c6=_0x32f904['params'][_0x58e1e2(0x12c)],_0x4961d3=_0x47da81[_0x58e1e2(0x8d)][_0x58e1e2(0x12c)],_0x3c4c58={},_0x24e4d6=_0x570d2f[_0x58e1e2(0xb4)](_0x32f904),_0x3bf149=new Set([...Object[_0x58e1e2(0xab)](_0x5593c6)[_0x58e1e2(0x1e0)](Number),...Object[_0x58e1e2(0xab)](_0x4961d3)['map'](Number)]);for(const _0x3e3345 of _0x3bf149){const _0x32624d=_0x5593c6[_0x3e3345],_0x77ff30=_0x4961d3[_0x3e3345];if(_0x32624d&&_0x77ff30){const _0x173dfa={..._0x32624d,..._0x77ff30};_0x3c4c58[_0x3e3345]=_0x173dfa;}else _0x32624d?_0x3c4c58[_0x3e3345]=_0x32624d:_0x77ff30&&(_0x3c4c58[_0x3e3345]=_0x77ff30);}return _0x24e4d6['params'][_0x58e1e2(0x12c)]=_0x3c4c58,{'m1Prime':_0x24e4d6,'m2Prime':_0x47da81};}},Ao={'m1':_0x36306e['id'],'m2':_0x36306e['id'],'handler'(_0x406796,_0x3fddff){const _0x5b9022=_0x572182;if(_0x406796[_0x5b9022(0x8d)][_0x5b9022(0xdb)]!==_0x3fddff['params'][_0x5b9022(0xdb)]||_0x406796['params']['subUnitId']!==_0x3fddff[_0x5b9022(0x8d)][_0x5b9022(0x20b)])return{'m1Prime':_0x406796,'m2Prime':_0x3fddff};const _0x4e93a1=_0x406796[_0x5b9022(0x8d)]['cfId']||_0x406796[_0x5b9022(0x8d)][_0x5b9022(0xea)][_0x5b9022(0x10b)],_0x490527=_0x3fddff[_0x5b9022(0x8d)]['cfId']||_0x3fddff[_0x5b9022(0x8d)][_0x5b9022(0xea)]['cfId'];if(_0x4e93a1!==_0x490527)return{'m1Prime':_0x406796,'m2Prime':_0x3fddff};const _0x1a7c56=_0x570d2f[_0x5b9022(0xb4)](_0x3fddff);return{'m1Prime':[],'m2Prime':_0x1a7c56};}};function To(_0x43119b,_0xc5aa82){const _0x33d757=_0x572182,_0x2dc2c6=_0x43119b[_0x33d757(0x146)]((_0x16ca5c,_0x32f519)=>(_0x16ca5c[_0x33d757(0x1aa)](_0x32f519[_0x33d757(0x195)],!0x0),_0x16ca5c),new Map());return _0xc5aa82[_0x33d757(0xaf)](_0x3166be=>_0x2dc2c6[_0x33d757(0xc4)](_0x3166be['drawingId'])!==void 0x0);}function Lo(_0x3c34d0,_0x55f84b){const _0x3497d2=_0x572182,_0x47ae72=_0x3c34d0[_0x3497d2(0xca)];return _0x55f84b['drawingIds'][_0x3497d2(0xaf)](_0x23283e=>_0x47ae72[_0x3497d2(0xf1)](_0x23283e)!==-0x1);}const {UPDATE:ko,REMOVE:xo,ARRANGE:xe}=_0x2f30d6,Ho={'m1':_0x2c5cc6['id'],'m2':_0x2c5cc6['id'],'handler'(_0x17dfd0,_0x35d4d0){const _0x4633bb=_0x572182,_0x3c15cf=_0x17dfd0[_0x4633bb(0x8d)],_0x33809e=_0x35d4d0['params'];if(_0x3c15cf[_0x4633bb(0xdb)]!==_0x33809e[_0x4633bb(0xdb)]||_0x3c15cf[_0x4633bb(0x20b)]!==_0x33809e[_0x4633bb(0x20b)])return{'m1Prime':_0x17dfd0,'m2Prime':_0x35d4d0};const _0x2ed4b5=_0x3c15cf['type'],_0x5da6ee=_0x33809e['type'];if(_0x2ed4b5===xo&&_0x5da6ee===ko&&To(_0x3c15cf[_0x4633bb(0x19b)],_0x33809e[_0x4633bb(0x19b)]))return{'m1Prime':_0x570d2f[_0x4633bb(0xb4)](_0x17dfd0),'m2Prime':[]};if(_0x2ed4b5===xe&&_0x5da6ee===xe&&Lo(_0x3c15cf[_0x4633bb(0x19b)],_0x33809e[_0x4633bb(0x19b)])){const _0x14d2eb=_0x570d2f[_0x4633bb(0xb4)](_0x17dfd0),_0x4ad03b=_0x570d2f[_0x4633bb(0xb4)](_0x35d4d0);return{'m1Prime':{..._0x14d2eb,'params':{..._0x14d2eb[_0x4633bb(0x8d)],'op':_0x3dbcac[_0x4633bb(0x120)][_0x4633bb(0xf5)](_0x14d2eb[_0x4633bb(0x8d)]['op'],_0x4ad03b['params']['op'],_0x4633bb(0x161))}},'m2Prime':{..._0x4ad03b,'params':{..._0x4ad03b[_0x4633bb(0x8d)],'op':_0x3dbcac[_0x4633bb(0x120)][_0x4633bb(0xf5)](_0x4ad03b[_0x4633bb(0x8d)]['op'],_0x14d2eb[_0x4633bb(0x8d)]['op'],'right')}}};}return{'m1Prime':_0x17dfd0,'m2Prime':_0x35d4d0};}},Fo={'m1':_0xe30a36['id'],'m2':_0xe30a36['id'],'handler'(_0xce39d2,_0x95f96){const _0xafb221=_0x572182,_0x565c76={'m1Prime':_0xce39d2,'m2Prime':_0x95f96};return _0xce39d2[_0xafb221(0x8d)]['unitId']!==_0x95f96['params'][_0xafb221(0xdb)]||_0xce39d2[_0xafb221(0x8d)][_0xafb221(0x20b)]!==_0x95f96[_0xafb221(0x8d)][_0xafb221(0x20b)]?_0x565c76:{'error':new Error(_0xafb221(0x205))};}},Bo={'m1':_0x4075e['id'],'m2':_0x3dcda7['id'],'handler'(_0x93a4b4,_0x31d02e){const _0x5a6c15=_0x572182;if(_0x93a4b4['params'][_0x5a6c15(0xdb)]!==_0x31d02e[_0x5a6c15(0x8d)][_0x5a6c15(0xdb)]||_0x93a4b4[_0x5a6c15(0x8d)]['subUnitId']!==_0x31d02e[_0x5a6c15(0x8d)]['subUnitId'])return{'m1Prime':_0x93a4b4,'m2Prime':_0x31d02e};const _0x9b9732=_0x570d2f[_0x5a6c15(0xb4)](_0x93a4b4),_0x5b45ef=_0x570d2f['deepClone'](_0x31d02e),_0x316571=_0x9b9732['params']['values'],_0x33bd68=_0x5b45ef[_0x5a6c15(0x8d)][_0x5a6c15(0xd1)];for(const _0x44a0dc in _0x316571){const _0x42aa77=_0x316571[_0x44a0dc]['ranges'],_0x1694d0=[];_0x42aa77[_0x5a6c15(0xc5)](_0x2db7d1=>{const _0xc26b51=_0x5a6c15,_0x4f13b9=ee(_0x2db7d1,_0x33bd68);_0x4f13b9[_0xc26b51(0xf6)]>0x0&&_0x1694d0[_0xc26b51(0x1ca)](..._0x4f13b9);}),_0x316571[_0x44a0dc][_0x5a6c15(0xd1)]=_0x1694d0;}return{'m1Prime':_0x9b9732,'m2Prime':_0x5b45ef};}},Go={'m1':_0x4075e['id'],'m2':_0x4075e['id'],'handler'(_0x5dd582,_0xe70fd3){const _0x4f1cea=_0x572182;if(_0x5dd582['params'][_0x4f1cea(0xdb)]!==_0xe70fd3['params'][_0x4f1cea(0xdb)]||_0x5dd582[_0x4f1cea(0x8d)][_0x4f1cea(0x20b)]!==_0xe70fd3[_0x4f1cea(0x8d)]['subUnitId'])return{'m1Prime':_0x5dd582,'m2Prime':_0xe70fd3};const _0x4a338f=_0x570d2f['deepClone'](_0x5dd582),_0x3e0a79=_0x570d2f[_0x4f1cea(0xb4)](_0xe70fd3),_0x19bf6a=_0x4a338f[_0x4f1cea(0x8d)][_0x4f1cea(0xd2)],_0x240486=Object[_0x4f1cea(0xd2)](_0x3e0a79['params'][_0x4f1cea(0xd2)])[_0x4f1cea(0x1e0)](_0x3ce30f=>_0x3ce30f[_0x4f1cea(0xd1)])[_0x4f1cea(0x13b)]();for(const _0x43f1a4 in _0x19bf6a){const _0x2a2258=_0x19bf6a[_0x43f1a4][_0x4f1cea(0xd1)],_0x2bcfe0=[];_0x2a2258[_0x4f1cea(0xc5)](_0x25eb3b=>{const _0x3385f9=_0x4f1cea,_0x412964=ee(_0x25eb3b,_0x240486);_0x412964[_0x3385f9(0xf6)]>0x0&&_0x2bcfe0[_0x3385f9(0x1ca)](..._0x412964);}),_0x19bf6a[_0x43f1a4][_0x4f1cea(0xd1)]=_0x2bcfe0;}return{'m1Prime':_0x4a338f,'m2Prime':_0x3e0a79};}},jo={'m1':_0x225790['id'],'m2':_0x1b398d['id'],'handler':(_0x2b71e8,_0x2f0873)=>{const _0x1fbb98=_0x572182,_0x4e66dc={'m1Prime':_0x2b71e8,'m2Prime':_0x2f0873};return _0x2b71e8[_0x1fbb98(0x8d)][_0x1fbb98(0xdb)]!==_0x2f0873[_0x1fbb98(0x8d)][_0x1fbb98(0xdb)]||_0x2b71e8[_0x1fbb98(0x8d)][_0x1fbb98(0x20b)]!==_0x2f0873[_0x1fbb98(0x8d)][_0x1fbb98(0x20b)]?_0x4e66dc:{'error':new Error(_0x1fbb98(0xc6))};}},$o={'m1':_0x225790['id'],'m2':_0x4ae767['id'],'handler':(_0x25891a,_0x4a0f27)=>{const _0x2b9656=_0x572182,_0x268b9c={'m1Prime':_0x25891a,'m2Prime':_0x4a0f27};if(_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0xdb)]!==_0x4a0f27[_0x2b9656(0x8d)][_0x2b9656(0xdb)]||_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0x20b)]!==_0x4a0f27[_0x2b9656(0x8d)][_0x2b9656(0x20b)])return _0x268b9c;const _0x4a2657=_0x25891a[_0x2b9656(0x8d)][_0x2b9656(0xea)][_0x2b9656(0xd1)],_0x302e41=_0x4a0f27[_0x2b9656(0x8d)]['rule'][_0x2b9656(0xd1)];return _0x4a2657[_0x2b9656(0xaf)](_0x55ca78=>_0x302e41[_0x2b9656(0xaf)](_0xac959d=>_0x5b3986[_0x2b9656(0x7a)](_0x55ca78,_0xac959d)))?{'error':new Error(_0x2b9656(0x99))}:_0x268b9c;}},Yo={'m1':_0x225790['id'],'m2':_0x4b0a3e['id'],'handler':(_0x5d8eb5,_0x49b9f9)=>{const _0x3e9645=_0x572182,_0x8e1bf3={'m1Prime':_0x5d8eb5,'m2Prime':_0x49b9f9};if(_0x5d8eb5[_0x3e9645(0x8d)][_0x3e9645(0xdb)]!==_0x49b9f9[_0x3e9645(0x8d)][_0x3e9645(0xdb)]||_0x5d8eb5['params'][_0x3e9645(0x20b)]!==_0x49b9f9['params'][_0x3e9645(0x20b)])return _0x8e1bf3;const _0x56f17e=_0x5d8eb5[_0x3e9645(0x8d)][_0x3e9645(0xea)][_0x3e9645(0xd1)],_0x1b249e=_0x49b9f9[_0x3e9645(0x8d)][_0x3e9645(0xd1)];return _0x56f17e[_0x3e9645(0xaf)](_0x3d374b=>_0x1b249e['some'](_0x2cf079=>_0x5b3986[_0x3e9645(0x7a)](_0x3d374b,_0x2cf079)))?{'error':new Error(_0x3e9645(0xf3))}:_0x8e1bf3;}},Jo={'m1':_0x225790['id'],'m2':_0xeba0d['id'],'handler':(_0x5b9585,_0x57b62d)=>{const _0x5734d0=_0x572182,_0x2a74db={'m1Prime':_0x5b9585,'m2Prime':_0x57b62d};return _0x5b9585[_0x5734d0(0x8d)]['unitId']!==_0x57b62d['params']['unitId']||_0x5b9585[_0x5734d0(0x8d)][_0x5734d0(0x20b)]!==_0x57b62d[_0x5734d0(0x8d)][_0x5734d0(0xea)][_0x5734d0(0x20b)]?_0x2a74db:{'error':new Error(_0x5734d0(0x217))};}},Xo={'m1':_0x225790['id'],'m2':_0x7e7ab0['id'],'handler':(_0x2e990b,_0x4284d5)=>{const _0x452b97=_0x572182,_0x54f18a={'m1Prime':_0x2e990b,'m2Prime':_0x4284d5};return _0x2e990b['params'][_0x452b97(0xdb)]!==_0x4284d5[_0x452b97(0x8d)][_0x452b97(0xdb)]||_0x2e990b[_0x452b97(0x8d)][_0x452b97(0x20b)]!==_0x4284d5[_0x452b97(0x8d)]['subUnitId']?_0x54f18a:{'error':new Error(_0x452b97(0x9e))};}},Ko={'m1':_0x225790['id'],'m2':_0x541ec4['id'],'handler':(_0x1bcdf7,_0x5de585)=>{const _0x14ecb2=_0x572182,_0x427e32={'m1Prime':_0x1bcdf7,'m2Prime':_0x5de585};if(_0x1bcdf7[_0x14ecb2(0x8d)]['unitId']!==_0x5de585[_0x14ecb2(0x8d)]['unitId']||_0x1bcdf7[_0x14ecb2(0x8d)]['subUnitId']!==_0x5de585[_0x14ecb2(0x8d)][_0x14ecb2(0x20b)])return _0x427e32;const _0x5cb850=_0x1bcdf7[_0x14ecb2(0x8d)][_0x14ecb2(0xea)][_0x14ecb2(0xd1)],_0xd0b489=_0x5de585[_0x14ecb2(0x8d)]['range'];return _0x5cb850[_0x14ecb2(0xaf)](_0xd41394=>_0x5b3986[_0x14ecb2(0x7a)](_0xd41394,_0xd0b489))?{'error':new Error(_0x14ecb2(0xf9))}:_0x427e32;}},zo={'m1':_0x225790['id'],'m2':_0x224ab4['id'],'handler':(_0x15524b,_0x191f08)=>{const _0x4f9366=_0x572182,_0x139244={'m1Prime':_0x15524b,'m2Prime':_0x191f08};if(_0x15524b[_0x4f9366(0x8d)]['unitId']!==_0x191f08[_0x4f9366(0x8d)][_0x4f9366(0xdb)]||_0x15524b[_0x4f9366(0x8d)][_0x4f9366(0x20b)]!==_0x191f08[_0x4f9366(0x8d)]['subUnitId'])return _0x139244;const _0x229710=_0x15524b['params'][_0x4f9366(0xea)][_0x4f9366(0xd1)],_0x13eac8=_0x191f08[_0x4f9366(0x8d)][_0x4f9366(0x19f)];return _0x229710[_0x4f9366(0xaf)](_0x4f28aa=>_0x5b3986[_0x4f9366(0x7a)](_0x4f28aa,_0x13eac8))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row')}:_0x139244;}},qo={'m1':_0x225790['id'],'m2':_0x31c10b['id'],'handler':(_0x5489e5,_0x4a9788)=>{const _0xad30cc=_0x572182,_0xf2477e={'m1Prime':_0x5489e5,'m2Prime':_0x4a9788};if(_0x5489e5[_0xad30cc(0x8d)][_0xad30cc(0xdb)]!==_0x4a9788['params'][_0xad30cc(0xdb)]||_0x5489e5['params'][_0xad30cc(0x20b)]!==_0x4a9788['params']['subUnitId'])return _0xf2477e;const _0x26ba7e=_0x5489e5['params'][_0xad30cc(0xea)][_0xad30cc(0xd1)],_0x5a336e=[_0x4a9788[_0xad30cc(0x8d)]['sourceRange'],_0x4a9788[_0xad30cc(0x8d)]['targetRange']];return _0x26ba7e[_0xad30cc(0xaf)](_0xae6160=>_0x5a336e[_0xad30cc(0xaf)](_0x4c9df8=>_0x5b3986[_0xad30cc(0x7a)](_0xae6160,_0x4c9df8)))?{'error':new Error(_0xad30cc(0x1ad))}:_0xf2477e;}},Zo={'m1':_0x225790['id'],'m2':_0x43f1cd['id'],'handler':(_0x1ac097,_0x21c363)=>{const _0x10cb61=_0x572182,_0x687b6c={'m1Prime':_0x1ac097,'m2Prime':_0x21c363};if(_0x1ac097['params'][_0x10cb61(0xdb)]!==_0x21c363['params']['unitId']||_0x1ac097[_0x10cb61(0x8d)][_0x10cb61(0x20b)]!==_0x21c363['params'][_0x10cb61(0x1b0)][_0x10cb61(0x20b)])return _0x687b6c;const _0xd743a8=_0x1ac097[_0x10cb61(0x8d)]['rule'][_0x10cb61(0xd1)],_0x241072=new _0x1f7bb9(_0x21c363[_0x10cb61(0x8d)][_0x10cb61(0x1b0)]['value'])['getDataRange'](),_0x35e77f=new _0x1f7bb9(_0x21c363[_0x10cb61(0x8d)]['to'][_0x10cb61(0x17e)])[_0x10cb61(0x182)](),_0x617cc=[_0x241072,_0x35e77f];return _0xd743a8[_0x10cb61(0xaf)](_0x58c315=>_0x617cc[_0x10cb61(0xaf)](_0x537be0=>_0x5b3986[_0x10cb61(0x7a)](_0x58c315,_0x537be0)))?{'error':new Error(_0x10cb61(0x21a))}:_0x687b6c;}},Qo={'m1':_0x225790['id'],'m2':_0x454b7a['id'],'handler':(_0xad2984,_0x1618ba)=>{const _0x124fc3=_0x572182,_0x4952a2={'m1Prime':_0xad2984,'m2Prime':_0x1618ba};if(_0xad2984['params'][_0x124fc3(0xdb)]!==_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0xdb)]||_0xad2984[_0x124fc3(0x8d)][_0x124fc3(0x20b)]!==_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x20b)])return _0x4952a2;const _0x3df288=_0xad2984[_0x124fc3(0x8d)]['rule'][_0x124fc3(0xd1)],_0x403736=[_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x11d)],_0x1618ba[_0x124fc3(0x8d)][_0x124fc3(0x1d0)]];return _0x3df288[_0x124fc3(0xaf)](_0xed12ae=>_0x403736['some'](_0x478ef5=>_0x5b3986[_0x124fc3(0x7a)](_0xed12ae,_0x478ef5)))?{'error':new Error(_0x124fc3(0x1f2))}:_0x4952a2;}},ti={'m1':_0x225790['id'],'m2':_0xe5c4bd['id'],'handler':(_0x5a6ef2,_0x259c40)=>{const _0x2cc895=_0x572182,_0x394c32={'m1Prime':_0x5a6ef2,'m2Prime':_0x259c40};if(_0x5a6ef2[_0x2cc895(0x8d)]['unitId']!==_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0xdb)]||_0x5a6ef2[_0x2cc895(0x8d)][_0x2cc895(0x20b)]!==_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0x20b)])return _0x394c32;const _0x39caf6=_0x5a6ef2['params'][_0x2cc895(0xea)][_0x2cc895(0xd1)],_0x1bd1bf=_0x259c40[_0x2cc895(0x8d)][_0x2cc895(0x19f)];return _0x39caf6[_0x2cc895(0xaf)](_0x2b1d8f=>_0x5b3986['intersects'](_0x2b1d8f,_0x1bd1bf))?{'error':new Error(_0x2cc895(0x108))}:_0x394c32;}},ei={'m1':_0x225790['id'],'m2':_0x13693a['id'],'handler':(_0x466249,_0x5f0d0b)=>{const _0x57f971=_0x572182,_0x10a277={'m1Prime':_0x466249,'m2Prime':_0x5f0d0b};return _0x466249[_0x57f971(0x8d)][_0x57f971(0xdb)]!==_0x5f0d0b[_0x57f971(0x8d)][_0x57f971(0xdb)]||_0x466249[_0x57f971(0x8d)][_0x57f971(0x20b)]!==_0x5f0d0b[_0x57f971(0x8d)][_0x57f971(0x20b)]?_0x10a277:{'error':new Error(_0x57f971(0x218))};}},ri={'m1':_0x225790['id'],'m2':_0x1c90fa['id'],'handler':(_0x43fcff,_0x193f0d)=>{const _0x5de42c=_0x572182,_0xb6e665={'m1Prime':_0x43fcff,'m2Prime':_0x193f0d};if(_0x43fcff[_0x5de42c(0x8d)][_0x5de42c(0xdb)]!==_0x193f0d[_0x5de42c(0x8d)][_0x5de42c(0xdb)]||_0x43fcff[_0x5de42c(0x8d)]['subUnitId']!==_0x193f0d['params'][_0x5de42c(0x20b)])return _0xb6e665;const _0x46c3b1=_0x43fcff[_0x5de42c(0x8d)][_0x5de42c(0xea)][_0x5de42c(0xd1)],_0x4afe5d=_0x193f0d['params'][_0x5de42c(0x19f)];return _0x46c3b1[_0x5de42c(0xaf)](_0xb21430=>_0x5b3986[_0x5de42c(0x7a)](_0xb21430,_0x4afe5d))?{'error':new Error(_0x5de42c(0xa9))}:_0xb6e665;}},ni={'m1':_0x225790['id'],'m2':_0x224fc7['id'],'handler':(_0x287444,_0x3d897a)=>{const _0x42798a=_0x572182,_0x2f0be2={'m1Prime':_0x287444,'m2Prime':_0x3d897a};return _0x287444[_0x42798a(0x8d)][_0x42798a(0xdb)]!==_0x3d897a[_0x42798a(0x8d)][_0x42798a(0xdb)]||_0x287444['params'][_0x42798a(0x20b)]!==_0x3d897a[_0x42798a(0x8d)][_0x42798a(0x20b)]?_0x2f0be2:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter')};}},ai={'m1':_0x225790['id'],'m2':_0x3c47fd['id'],'handler':(_0xb4df44,_0xd8d1c3)=>{const _0x195125=_0x572182,_0x27bd9a={'m1Prime':_0xb4df44,'m2Prime':_0xd8d1c3};if(_0xb4df44[_0x195125(0x8d)][_0x195125(0xdb)]!==_0xd8d1c3[_0x195125(0x8d)]['unitId']||_0xb4df44[_0x195125(0x8d)][_0x195125(0x20b)]!==_0xd8d1c3[_0x195125(0x8d)]['subUnitId'])return _0x27bd9a;const _0x13d445=_0xb4df44[_0x195125(0x8d)][_0x195125(0xea)][_0x195125(0xd1)],_0x4c9290=_0xd8d1c3['params'][_0x195125(0xd1)];return _0x13d445[_0x195125(0xaf)](_0x189d5f=>_0x4c9290[_0x195125(0xaf)](_0x11097c=>_0x5b3986['intersects'](_0x189d5f,_0x11097c)))?{'error':new Error(_0x195125(0x1f6))}:_0x27bd9a;}},si={'m1':_0x225790['id'],'m2':_0x36306e['id'],'handler':(_0xec8df5,_0xf66bc0)=>{const _0x3806fc=_0x572182,_0x4ff3dc={'m1Prime':_0xec8df5,'m2Prime':_0xf66bc0};if(_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0xdb)]!==_0xf66bc0[_0x3806fc(0x8d)][_0x3806fc(0xdb)]||_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0x20b)]!==_0xf66bc0[_0x3806fc(0x8d)]['subUnitId'])return _0x4ff3dc;const _0x4bdae2=_0xec8df5[_0x3806fc(0x8d)][_0x3806fc(0xea)]['ranges'],_0x153d8c=_0xf66bc0[_0x3806fc(0x8d)]['rule'][_0x3806fc(0xd1)];return _0x4bdae2[_0x3806fc(0xaf)](_0x193a81=>_0x153d8c[_0x3806fc(0xaf)](_0x4dd24a=>_0x5b3986[_0x3806fc(0x7a)](_0x193a81,_0x4dd24a)))?{'error':new Error(_0x3806fc(0x11b))}:_0x4ff3dc;}},oi={'m1':_0x225790['id'],'m2':_0xe30a36['id'],'handler':(_0x3a62e1,_0x204eac)=>{const _0x3d9f4d=_0x572182,_0x4df922={'m1Prime':_0x3a62e1,'m2Prime':_0x204eac};if(_0x3a62e1['params'][_0x3d9f4d(0xdb)]!==_0x204eac['params']['unitId']||_0x3a62e1['params']['subUnitId']!==_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x20b)])return _0x4df922;const _0x55c7fd=_0x3a62e1[_0x3d9f4d(0x8d)][_0x3d9f4d(0xea)][_0x3d9f4d(0xd1)],_0x4b636e=[{'startRow':_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x102)],'endRow':_0x204eac[_0x3d9f4d(0x8d)][_0x3d9f4d(0x102)],'startColumn':_0x204eac[_0x3d9f4d(0x8d)]['startColumn'],'endColumn':_0x204eac['params'][_0x3d9f4d(0x15a)]}];return _0x55c7fd[_0x3d9f4d(0xaf)](_0x2578e9=>_0x4b636e[_0x3d9f4d(0xaf)](_0x2022da=>_0x5b3986[_0x3d9f4d(0x7a)](_0x2578e9,_0x2022da)))?{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen')}:_0x4df922;}},ii={'m1':_0x225790['id'],'m2':_0x4075e['id'],'handler':(_0x36299e,_0x340720)=>{const _0x4276fa=_0x572182,_0x1dcfad={'m1Prime':_0x36299e,'m2Prime':_0x340720};return _0x36299e[_0x4276fa(0x8d)][_0x4276fa(0xdb)]!==_0x340720[_0x4276fa(0x8d)]['unitId']||_0x36299e[_0x4276fa(0x8d)][_0x4276fa(0x20b)]!==_0x340720['params'][_0x4276fa(0x20b)]?_0x1dcfad:{'error':new Error(_0x4276fa(0x1eb))};}},di={'m1':_0x225790['id'],'m2':_0x225790['id'],'handler':(_0x5bfd83,_0x276619)=>{const _0x33caf4=_0x572182,_0x46b9b4={'m1Prime':_0x5bfd83,'m2Prime':_0x276619};if(_0x5bfd83[_0x33caf4(0x8d)]['unitId']!==_0x276619['params'][_0x33caf4(0xdb)]||_0x5bfd83[_0x33caf4(0x8d)][_0x33caf4(0x20b)]!==_0x276619[_0x33caf4(0x8d)]['subUnitId'])return _0x46b9b4;const _0x2b986f=_0x5bfd83[_0x33caf4(0x8d)][_0x33caf4(0xea)][_0x33caf4(0xd1)],_0xd39210=_0x276619[_0x33caf4(0x8d)]['rule'][_0x33caf4(0xd1)];return _0x2b986f[_0x33caf4(0xaf)](_0x2a1313=>_0xd39210['some'](_0x2d389f=>_0x5b3986['intersects'](_0x2a1313,_0x2d389f)))?{'error':new Error(_0x33caf4(0x135))}:_0x46b9b4;}},mi={'m1':_0x225790['id'],'m2':_0x15eb0a['id'],'handler':(_0x28867c,_0xb95e39)=>{const _0x32066a=_0x572182,_0x4cf330={'m1Prime':_0x28867c,'m2Prime':_0xb95e39};if(_0x28867c[_0x32066a(0x8d)][_0x32066a(0xdb)]!==_0xb95e39['params'][_0x32066a(0xdb)]||_0x28867c[_0x32066a(0x8d)]['subUnitId']!==_0xb95e39[_0x32066a(0x8d)][_0x32066a(0x20b)])return _0x4cf330;const _0x8b1812=_0x28867c['params'][_0x32066a(0xea)]['ranges'],_0x41fcac=new _0x1f7bb9(_0xb95e39[_0x32066a(0x8d)][_0x32066a(0x208)])[_0x32066a(0x182)]();return _0x8b1812[_0x32066a(0xaf)](_0x9e153e=>_0x5b3986['intersects'](_0x9e153e,_0x41fcac))?{'error':new Error(_0x32066a(0x186))}:_0x4cf330;}},ui={'m1':_0x225790['id'],'m2':_0x4cb95c['id'],'handler':(_0x48bac9,_0x58f040)=>{const _0x1e6cbf=_0x572182,_0xd10e53={'m1Prime':_0x48bac9,'m2Prime':_0x58f040};if(_0x48bac9[_0x1e6cbf(0x8d)][_0x1e6cbf(0xdb)]!==_0x58f040['params'][_0x1e6cbf(0xdb)]||_0x48bac9[_0x1e6cbf(0x8d)]['subUnitId']!==_0x58f040[_0x1e6cbf(0x8d)]['subUnitId'])return _0xd10e53;const _0x1ce0ba=_0x48bac9[_0x1e6cbf(0x8d)][_0x1e6cbf(0xea)]['ranges'],_0x57d8f9=_0x58f040[_0x1e6cbf(0x8d)][_0x1e6cbf(0xd1)];return _0x1ce0ba['some'](_0x423143=>_0x57d8f9['some'](_0x5b3232=>_0x5b3986[_0x1e6cbf(0x7a)](_0x423143,_0x5b3232)))?{'error':new Error(_0x1e6cbf(0x92))}:_0xd10e53;}},li={'m1':_0x225790['id'],'m2':_0x2c3db1['id'],'handler':(_0x510b8d,_0x227d27)=>{const _0x2220b8=_0x572182,_0x51f62d={'m1Prime':_0x510b8d,'m2Prime':_0x227d27};return _0x510b8d[_0x2220b8(0x8d)][_0x2220b8(0xdb)]!==_0x227d27[_0x2220b8(0x8d)]['unitId']||_0x510b8d[_0x2220b8(0x8d)]['subUnitId']!==_0x227d27[_0x2220b8(0x8d)][_0x2220b8(0x20b)]?_0x51f62d:{'error':new Error(_0x2220b8(0x155))};}},ci={'m1':_0x225790['id'],'m2':_0x4e1baf['id'],'handler':(_0x5f2c5f,_0x4a87fa)=>{const _0x24b97b=_0x572182,_0x1ba5a4={'m1Prime':_0x5f2c5f,'m2Prime':_0x4a87fa};return _0x5f2c5f['params'][_0x24b97b(0xdb)]!==_0x4a87fa['params'][_0x24b97b(0xdb)]||_0x5f2c5f['params'][_0x24b97b(0x20b)]!==_0x4a87fa[_0x24b97b(0x8d)][_0x24b97b(0x20b)]?_0x1ba5a4:{'error':new Error(_0x24b97b(0x1fe))};}},pi={'m1':_0x15eb0a['id'],'m2':_0x4b0a3e['id'],'handler'(_0x478a5c,_0x504913){const _0x2321ac=_0x572182,_0x5da5f7=mr[_0x2321ac(0xcd)](_0x504913,_0x478a5c);return at(_0x5da5f7)?{'m1Prime':_0x5da5f7[_0x2321ac(0xcf)],'m2Prime':_0x5da5f7['m1Prime']}:_0x5da5f7;}},fi={'m1':_0x15eb0a['id'],'m2':_0x43f1cd['id'],'handler'(_0x26a40c,_0x3c8551){const _0xb06f7f=_0x572182,_0x15d329={'m1Prime':_0x26a40c,'m2Prime':_0x3c8551};if(_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0xdb)]!==_0x3c8551['params']['unitId'])return _0x15d329;const _0x4ac604=new _0x1f7bb9(_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0x208)])[_0xb06f7f(0x182)](),_0x3e1289=new _0x1f7bb9(_0x3c8551['params']['from'][_0xb06f7f(0x17e)])[_0xb06f7f(0x182)](),_0x41bbd6=new _0x1f7bb9(_0x3c8551[_0xb06f7f(0x8d)]['to'][_0xb06f7f(0x17e)])[_0xb06f7f(0x182)]();return _0x26a40c[_0xb06f7f(0x8d)]['subUnitId']===_0x3c8551[_0xb06f7f(0x8d)][_0xb06f7f(0x1b0)][_0xb06f7f(0x20b)]&&_0x5b3986[_0xb06f7f(0x7a)](_0x4ac604,_0x3e1289)||_0x26a40c[_0xb06f7f(0x8d)][_0xb06f7f(0x20b)]===_0x3c8551['params']['to'][_0xb06f7f(0x20b)]&&_0x5b3986[_0xb06f7f(0x7a)](_0x4ac604,_0x41bbd6)?{'error':new Error(_0xb06f7f(0x18f))}:_0x15d329;}},Ri={'m1':_0x15eb0a['id'],'m2':_0x587c63['id'],'handler'(_0x1cfd6b,_0x29770c){const _0x5448c6=_0x572182;var _0x374e6a,_0x14b6a2;const _0x4485d7={'m1Prime':_0x1cfd6b,'m2Prime':_0x29770c};if(_0x1cfd6b[_0x5448c6(0x8d)][_0x5448c6(0xdb)]!==_0x29770c[_0x5448c6(0x8d)][_0x5448c6(0xdb)]||_0x1cfd6b[_0x5448c6(0x8d)]['subUnitId']!==_0x29770c[_0x5448c6(0x8d)][_0x5448c6(0x20b)])return _0x4485d7;const _0x46963d=_0x570d2f[_0x5448c6(0xb4)](_0x1cfd6b),{cellValue:_0x4c0e00}=_0x46963d[_0x5448c6(0x8d)],_0x31d526=new _0x1f7bb9(_0x4c0e00),{range:_0x4d71db}=_0x29770c['params'],_0x4eaabc=new Map();for(let _0x54f5cc=_0x4d71db[_0x5448c6(0x15a)];_0x54f5cc<=_0x4d71db[_0x5448c6(0x9d)];_0x54f5cc++)for(let _0x586d02=_0x4d71db['startRow'];_0x586d02<=_0x4d71db[_0x5448c6(0x111)];_0x586d02++)if(((_0x374e6a=_0x4c0e00==null?void 0x0:_0x4c0e00[_0x586d02])==null?void 0x0:_0x374e6a[_0x54f5cc])!==void 0x0){const _0x84c6b7=(_0x14b6a2=_0x29770c[_0x5448c6(0x8d)]['order'][_0x586d02])!=null?_0x14b6a2:_0x586d02;_0x84c6b7!==_0x586d02&&(_0x4eaabc[_0x5448c6(0x110)](_0x84c6b7)||_0x4eaabc['set'](_0x84c6b7,new Map()),_0x4eaabc[_0x5448c6(0xc4)](_0x84c6b7)[_0x5448c6(0x1aa)](_0x54f5cc,_0x4c0e00[_0x586d02][_0x54f5cc]),_0x31d526[_0x5448c6(0x196)](_0x586d02,_0x54f5cc));}return _0x4eaabc[_0x5448c6(0xc5)]((_0x398849,_0x30e34b)=>{const _0x610295=_0x5448c6;_0x398849[_0x610295(0xc5)]((_0x455d7a,_0x810168)=>{const _0x5ddba1=_0x610295;_0x31d526[_0x5ddba1(0x134)](_0x30e34b,_0x810168,_0x455d7a);});}),{'m1Prime':_0x46963d,'m2Prime':_0x29770c};}},hi={'m1':_0x15eb0a['id'],'m2':_0x15eb0a['id'],'handler'(_0x579d49,_0x41c6fa){const _0x418628=_0x572182,_0x5e1538={'m1Prime':_0x579d49,'m2Prime':_0x41c6fa};if(_0x579d49[_0x418628(0x8d)][_0x418628(0xdb)]!==_0x41c6fa[_0x418628(0x8d)]['unitId']||_0x579d49[_0x418628(0x8d)][_0x418628(0x20b)]!==_0x41c6fa['params'][_0x418628(0x20b)])return _0x5e1538;const _0x4e2df7=_0x570d2f[_0x418628(0xb4)](_0x579d49),_0x4608a4=_0x570d2f[_0x418628(0xb4)](_0x41c6fa),_0x21a5e3=_0x570d2f[_0x418628(0xb4)](_0x41c6fa),_0x3ade32=new _0x1f7bb9(_0x4e2df7[_0x418628(0x8d)][_0x418628(0x208)]),_0x46070e=_0x3ade32['getDataRange'](),_0x11e001=new _0x1f7bb9(_0x41c6fa[_0x418628(0x8d)]['cellValue']),_0x269811=new _0x1f7bb9(),_0x162d65=_0x11e001['getDataRange']();return _0x5b3986[_0x418628(0x7a)](_0x46070e,_0x162d65)?(_0x3ade32[_0x418628(0x86)]((_0x40933c,_0x24fd9f,_0xb068cf)=>{const _0x277142=_0x418628;var _0xe72cad;const _0x1b57b3=_0x11e001['getValue'](_0x40933c,_0x24fd9f);_0x1b57b3===null&&_0x3ade32['realDeleteValue'](_0x40933c,_0x24fd9f),_0xb068cf&&_0x1b57b3&&(typeof(_0x1b57b3==null?void 0x0:_0x1b57b3['s'])==_0x277142(0xa6)&&(_0x1b57b3['s']=_0x570d2f[_0x277142(0xb4)]((_0xe72cad=_0x4608a4['params']['styleRefMap'])==null?void 0x0:_0xe72cad[_0x1b57b3['s']])||void 0x0),_0x269811['setValue'](_0x40933c,_0x24fd9f,_0x1b57b3));}),_0x4e2df7[_0x418628(0x8d)][_0x418628(0x208)]=_0x3ade32[_0x418628(0x16a)](),_0x4608a4['params']['cellValue']=_0x269811[_0x418628(0x16a)](),{'m1Prime':[_0x4e2df7,_0x4608a4],'m2Prime':_0x21a5e3}):_0x5e1538;}},gi={'m1':_0x36a513['id'],'m2':_0x36a513['id'],'handler'(_0xebc9f9,_0x3bd26e){const _0x429388=_0x572182,_0x309827={'m1Prime':_0xebc9f9,'m2Prime':_0x3bd26e};if(_0xebc9f9[_0x429388(0x8d)][_0x429388(0xdb)]!==_0x3bd26e[_0x429388(0x8d)]['unitId']||_0xebc9f9['params']['subUnitId']!==_0x3bd26e[_0x429388(0x8d)]['subUnitId'])return _0x309827;const _0x4146e1=_0xebc9f9[_0x429388(0x8d)][_0x429388(0xe8)],_0x3941d4=_0x3bd26e[_0x429388(0x8d)][_0x429388(0xe8)],_0x4190b8={},_0xd91f8e=_0x570d2f['deepClone'](_0xebc9f9),_0x49471d=new Set([...Object[_0x429388(0xab)](_0x4146e1)['map'](Number),...Object[_0x429388(0xab)](_0x3941d4)[_0x429388(0x1e0)](Number)]);for(const _0x363a8d of _0x49471d){const _0xd99c02=_0x4146e1[_0x363a8d],_0x50501f=_0x3941d4[_0x363a8d];if(_0xd99c02&&_0x50501f){const _0x3b97d4={..._0xd99c02,..._0x50501f};_0x4190b8[_0x363a8d]=_0x3b97d4;}else _0xd99c02?_0x4190b8[_0x363a8d]=_0xd99c02:_0x50501f&&(_0x4190b8[_0x363a8d]=_0x50501f);}return _0xd91f8e[_0x429388(0x8d)][_0x429388(0xe8)]=_0x4190b8,{'m1Prime':_0xd91f8e,'m2Prime':_0x3bd26e};}},Ii={'m1':_0x4112c4['id'],'m2':_0x43f1cd['id'],'handler'(_0x562741,_0x4aba78){const _0x2c14be=_0x572182,_0x370bc5={'m1Prime':_0x562741,'m2Prime':_0x4aba78};if(_0x562741[_0x2c14be(0x8d)][_0x2c14be(0xdb)]!==_0x4aba78[_0x2c14be(0x8d)]['unitId']||_0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]!==_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0x1b0)][_0x2c14be(0x20b)]&&_0x562741['params'][_0x2c14be(0x20b)]!==_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x20b)])return _0x370bc5;let _0x2b6256=null;return _0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]===_0x4aba78['params'][_0x2c14be(0x1b0)][_0x2c14be(0x20b)]&&new _0x1f7bb9(_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0x1b0)][_0x2c14be(0x17e)])[_0x2c14be(0x86)]((_0xd281ba,_0x2f199e)=>{const _0x320b4d=_0x2c14be;_0x2f199e===_0x562741[_0x320b4d(0x8d)][_0x320b4d(0x80)]&&(_0x2b6256=_0x4aba78[_0x320b4d(0x8d)][_0x320b4d(0x1b0)][_0x320b4d(0x20b)]);}),_0x562741[_0x2c14be(0x8d)][_0x2c14be(0x20b)]===_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x20b)]&&new _0x1f7bb9(_0x4aba78[_0x2c14be(0x8d)]['to'][_0x2c14be(0x17e)])[_0x2c14be(0x86)]((_0x577f01,_0x2f8875)=>{const _0x395721=_0x2c14be;_0x2f8875===_0x562741[_0x395721(0x8d)]['col']&&(_0x2b6256=_0x4aba78[_0x395721(0x8d)]['to'][_0x395721(0x20b)]);}),_0x2b6256?{'m1Prime':_0x562741,'m2Prime':[_0x4aba78,{'id':_0x581092['id'],'params':{'unitId':_0x4aba78[_0x2c14be(0x8d)][_0x2c14be(0xdb)],'subUnitId':_0x2b6256}}]}:_0x370bc5;}},wi={'m1':_0x4112c4['id'],'m2':_0x224fc7['id'],'handler'(_0x5b1440,_0xe08234){const _0x581a35=_0x572182,_0x181681={'m1Prime':_0x5b1440,'m2Prime':_0xe08234};return _0x5b1440['params'][_0x581a35(0xdb)]!==_0xe08234[_0x581a35(0x8d)]['unitId']||_0x5b1440[_0x581a35(0x8d)]['subUnitId']!==_0xe08234['params'][_0x581a35(0x20b)]?_0x181681:{'m1Prime':[],'m2Prime':[_0xe08234]};}},Ci={'m1':_0x4112c4['id'],'m2':_0x15eb0a['id'],'handler'(_0x3c4c41,_0x185563){const _0x497aba=_0x572182,_0x55a920={'m1Prime':_0x3c4c41,'m2Prime':_0x185563};if(_0x3c4c41[_0x497aba(0x8d)][_0x497aba(0xdb)]!==_0x185563['params']['unitId']||_0x3c4c41[_0x497aba(0x8d)][_0x497aba(0x20b)]!==_0x185563[_0x497aba(0x8d)][_0x497aba(0x20b)])return _0x55a920;let _0x49de93=!0x1;return new _0x1f7bb9(_0x185563[_0x497aba(0x8d)][_0x497aba(0x208)])[_0x497aba(0x86)]((_0x4be997,_0x519c1d)=>{const _0x42af1b=_0x497aba;_0x519c1d===_0x3c4c41[_0x42af1b(0x8d)][_0x42af1b(0x80)]&&(_0x49de93=!0x0);}),_0x49de93?{'m1Prime':_0x3c4c41,'m2Prime':[_0x185563,{'id':_0x581092['id'],'params':{'unitId':_0x185563[_0x497aba(0x8d)][_0x497aba(0xdb)],'subUnitId':_0x185563[_0x497aba(0x8d)][_0x497aba(0x20b)]}}]}:_0x55a920;}},Pi={'m1':_0x4112c4['id'],'m2':_0x4112c4['id'],'handler'(_0x3c0772,_0xab2777){const _0x3df095=_0x572182,_0x1dc136={'m1Prime':_0x3c0772,'m2Prime':_0xab2777};return _0x3c0772['params']['unitId']!==_0xab2777[_0x3df095(0x8d)]['unitId']||_0x3c0772[_0x3df095(0x8d)]['subUnitId']!==_0xab2777[_0x3df095(0x8d)][_0x3df095(0x20b)]||_0x3c0772[_0x3df095(0x8d)][_0x3df095(0x80)]!==_0xab2777[_0x3df095(0x8d)][_0x3df095(0x80)]?_0x1dc136:{'m1Prime':[],'m2Prime':[_0xab2777]};}},Ui={'m1':_0x23aded['id'],'m2':_0x224fc7['id'],'handler'(_0x49ec41,_0x6370ef){const _0x444b8a=_0x572182,_0x424e4c={'m1Prime':_0x49ec41,'m2Prime':_0x6370ef};return _0x49ec41[_0x444b8a(0x8d)][_0x444b8a(0xdb)]!==_0x6370ef[_0x444b8a(0x8d)][_0x444b8a(0xdb)]||_0x49ec41[_0x444b8a(0x8d)][_0x444b8a(0x20b)]!==_0x6370ef[_0x444b8a(0x8d)][_0x444b8a(0x20b)]?_0x424e4c:{'m1Prime':[],'m2Prime':[_0x6370ef]};}},bi={'m1':_0x23aded['id'],'m2':_0x23aded['id'],'handler'(_0x3eee81,_0x3f2910){const _0x31c092=_0x572182,_0x4b63db={'m1Prime':_0x3eee81,'m2Prime':_0x3f2910};return _0x3eee81['params'][_0x31c092(0xdb)]!==_0x3f2910[_0x31c092(0x8d)][_0x31c092(0xdb)]||_0x3eee81['params'][_0x31c092(0x20b)]!==_0x3f2910[_0x31c092(0x8d)]['subUnitId']?_0x4b63db:{'m1Prime':[],'m2Prime':[_0x3f2910]};}},Mi={'m1':_0x5a93b5['id'],'m2':_0x5a93b5['id'],'handler'(_0x19ab15,_0x362acd){const _0xb361d5=_0x572182;return _0x19ab15[_0xb361d5(0x8d)]['unitId']===_0x362acd[_0xb361d5(0x8d)]['unitId']&&_0x19ab15[_0xb361d5(0x8d)][_0xb361d5(0x20b)]===_0x362acd[_0xb361d5(0x8d)]['subUnitId']&&_0x19ab15[_0xb361d5(0x8d)][_0xb361d5(0xfe)]!==_0x362acd[_0xb361d5(0x8d)]['color']?{'error':new Error(_0xb361d5(0x11f))}:{'m1Prime':_0x19ab15,'m2Prime':_0x362acd};}},vi={'m1':_0x4cb95c['id'],'m2':_0x4cb95c['id'],'handler'(_0x2aecda,_0x3efd4f){const _0x109f0f=_0x572182,_0x43cd65={'m1Prime':_0x2aecda,'m2Prime':_0x3efd4f};if(_0x2aecda['params']['unitId']!==_0x3efd4f[_0x109f0f(0x8d)][_0x109f0f(0xdb)]||_0x2aecda[_0x109f0f(0x8d)][_0x109f0f(0x20b)]!==_0x3efd4f[_0x109f0f(0x8d)]['subUnitId'])return _0x43cd65;const _0x17b894=_0x2aecda[_0x109f0f(0x8d)]['ranges'],_0x135942=[],_0x28a037=_0x570d2f[_0x109f0f(0xb4)](_0x2aecda),_0x5e05c7=_0x3efd4f['params'][_0x109f0f(0xd1)];_0x17b894['forEach'](_0x16d828=>{const _0x21273e=_0x109f0f,_0x2dce1d={'start':_0x16d828[_0x21273e(0x15a)],'end':_0x16d828['endColumn']},_0x3fcdf7=_0x5e05c7[_0x21273e(0x1e0)](_0x325c45=>({'start':_0x325c45['startColumn'],'end':_0x325c45[_0x21273e(0x9d)]})),_0x41b38b=Ue(_0x2dce1d,_0x3fcdf7)[_0x21273e(0x1e0)](_0x2fb0a4=>({..._0x16d828,'startColumn':_0x2fb0a4[_0x21273e(0xa5)],'endColumn':_0x2fb0a4['end']}));_0x135942['push'](..._0x41b38b);}),_0x28a037[_0x109f0f(0x8d)][_0x109f0f(0xd1)]=_0x135942;const {colWidth:_0x165faf}=_0x28a037[_0x109f0f(0x8d)],{colWidth:_0x1dd745}=_0x3efd4f[_0x109f0f(0x8d)];return typeof _0x165faf!=_0x109f0f(0x1b5)&&(typeof _0x1dd745!=_0x109f0f(0x1b5)?Object['keys'](_0x1dd745)['map'](Number)[_0x109f0f(0xc5)](_0x5aaf23=>{_0x165faf[_0x5aaf23]!=null&&delete _0x165faf[_0x5aaf23];}):_0x5e05c7[_0x109f0f(0xc5)](_0x2e4039=>{const _0x2b793c=_0x109f0f;for(let _0x5f5700=_0x2e4039[_0x2b793c(0x15a)];_0x5f5700<=_0x2e4039[_0x2b793c(0x9d)];_0x5f5700++)delete _0x165faf[_0x5f5700];})),{'m1Prime':_0x28a037,'m2Prime':_0x3efd4f};}},Ei={'m1':_0x5a5428['id'],'m2':_0x5a5428['id'],'handler'(_0x304fe6,_0x2348e4){const _0x12af73=_0x572182,_0x2e0b99={'m1Prime':_0x304fe6,'m2Prime':_0x2348e4};return _0x304fe6[_0x12af73(0x8d)]['unitId']!==_0x2348e4[_0x12af73(0x8d)][_0x12af73(0xdb)]||_0x304fe6['params']['subUnitId']!==_0x2348e4[_0x12af73(0x8d)][_0x12af73(0x20b)]?_0x2e0b99:{'error':new Error('Two\x20set-worksheet-name\x20mutations\x20have\x20conflict.')};}},Si={'m1':_0x5357b7['id'],'m2':_0x5357b7['id'],'handler'(_0x38e47e,_0x4a9453){const _0xd42668=_0x572182,_0x13830b={'m1Prime':_0x38e47e,'m2Prime':_0x4a9453};if(_0x38e47e[_0xd42668(0x8d)][_0xd42668(0xdb)]!==_0x4a9453[_0xd42668(0x8d)][_0xd42668(0xdb)]||_0x38e47e['params'][_0xd42668(0x20b)]!==_0x4a9453[_0xd42668(0x8d)]['subUnitId'])return _0x13830b;const _0x2b8063=_0x38e47e[_0xd42668(0x8d)][_0xd42668(0x1a9)],_0x4d63c0=[],_0x57ba46=_0x570d2f['deepClone'](_0x38e47e),_0x2d00be=_0x4a9453[_0xd42668(0x8d)][_0xd42668(0x1a9)];return _0x2b8063[_0xd42668(0xc5)](_0x195980=>{const _0x26195b=_0xd42668;_0x2d00be['find'](_0x1f524a=>_0x1f524a[_0x26195b(0x1cb)]===_0x195980[_0x26195b(0x1cb)])||_0x4d63c0[_0x26195b(0x1ca)](_0x195980);}),_0x57ba46[_0xd42668(0x8d)]['rowsAutoHeightInfo']=_0x4d63c0,{'m1Prime':_0x57ba46,'m2Prime':_0x4a9453};}},Wi={'m1':_0xdb3bc1['id'],'m2':_0xdb3bc1['id'],'handler'(_0x4aae22,_0x52b398){const _0x4b9a67=_0x572182,_0x223e9b={'m1Prime':_0x4aae22,'m2Prime':_0x52b398};if(_0x4aae22[_0x4b9a67(0x8d)][_0x4b9a67(0xdb)]!==_0x52b398[_0x4b9a67(0x8d)][_0x4b9a67(0xdb)]||_0x4aae22['params']['subUnitId']!==_0x52b398[_0x4b9a67(0x8d)][_0x4b9a67(0x20b)])return _0x223e9b;const _0x47a9b9=_0x4aae22['params'][_0x4b9a67(0xd1)],_0xcd4677=[],_0x4f9a08=_0x570d2f[_0x4b9a67(0xb4)](_0x4aae22),_0x7e076c=_0x52b398['params'][_0x4b9a67(0xd1)];_0x47a9b9[_0x4b9a67(0xc5)](_0x493592=>{const _0x4ce219=_0x4b9a67,_0x5a1a86={'start':_0x493592[_0x4ce219(0x102)],'end':_0x493592['endRow']},_0xcd4c4d=_0x7e076c['map'](_0x4e84c6=>({'start':_0x4e84c6[_0x4ce219(0x102)],'end':_0x4e84c6[_0x4ce219(0x111)]})),_0x4c8f75=Ue(_0x5a1a86,_0xcd4c4d)['map'](_0x5f4467=>({..._0x493592,'startRow':_0x5f4467['start'],'endRow':_0x5f4467[_0x4ce219(0x1c4)]}));_0xcd4677['push'](..._0x4c8f75);}),_0x4f9a08[_0x4b9a67(0x8d)][_0x4b9a67(0xd1)]=_0xcd4677;const {rowHeight:_0x1aaca9}=_0x4f9a08[_0x4b9a67(0x8d)],{rowHeight:_0x309110}=_0x52b398[_0x4b9a67(0x8d)];return typeof _0x1aaca9!=_0x4b9a67(0x1b5)&&(typeof _0x309110!='number'?Object[_0x4b9a67(0xab)](_0x309110)[_0x4b9a67(0x1e0)](Number)[_0x4b9a67(0xc5)](_0x1fdd9f=>{_0x1aaca9[_0x1fdd9f]!=null&&delete _0x1aaca9[_0x1fdd9f];}):_0x7e076c['forEach'](_0x174dc4=>{const _0x177663=_0x4b9a67;for(let _0xf84a65=_0x174dc4[_0x177663(0x102)];_0xf84a65<=_0x174dc4[_0x177663(0x111)];_0xf84a65++)delete _0x1aaca9[_0xf84a65];})),{'m1Prime':_0x4f9a08,'m2Prime':_0x52b398};}},Vi={'m1':_0x386b55['id'],'m2':_0x386b55['id'],'handler'(_0x1e459f,_0x53d24a){const _0x4a592f=_0x572182,_0x1a878a={'m1Prime':_0x1e459f,'m2Prime':_0x53d24a};if(_0x1e459f[_0x4a592f(0x8d)][_0x4a592f(0xdb)]!==_0x53d24a['params'][_0x4a592f(0xdb)]||_0x1e459f[_0x4a592f(0x8d)]['subUnitId']!==_0x53d24a[_0x4a592f(0x8d)][_0x4a592f(0x20b)])return _0x1a878a;const _0x3e299c=_0x1e459f[_0x4a592f(0x8d)]['ranges'],_0x22a4e5=[],_0x4f22ff=_0x570d2f['deepClone'](_0x1e459f),_0x3d07d3=_0x53d24a['params'][_0x4a592f(0xd1)];_0x3e299c[_0x4a592f(0xc5)](_0x2c191e=>{const _0x537d29=_0x4a592f,_0xfc1b51={'start':_0x2c191e[_0x537d29(0x102)],'end':_0x2c191e[_0x537d29(0x111)]},_0x26fb61=_0x3d07d3[_0x537d29(0x1e0)](_0x9bef6a=>({'start':_0x9bef6a[_0x537d29(0x102)],'end':_0x9bef6a[_0x537d29(0x111)]})),_0x5cee13=Ue(_0xfc1b51,_0x26fb61)[_0x537d29(0x1e0)](_0x3afa20=>({..._0x2c191e,'startRow':_0x3afa20['start'],'endRow':_0x3afa20[_0x537d29(0x1c4)]}));_0x22a4e5[_0x537d29(0x1ca)](..._0x5cee13);}),_0x4f22ff[_0x4a592f(0x8d)][_0x4a592f(0xd1)]=_0x22a4e5;const {autoHeightInfo:_0x43185a}=_0x4f22ff['params'],{autoHeightInfo:_0x59ad5d}=_0x53d24a['params'];return typeof _0x43185a!=_0x4a592f(0x1b5)&&(typeof _0x59ad5d!=_0x4a592f(0x1b5)?Object[_0x4a592f(0xab)](_0x59ad5d)[_0x4a592f(0x1e0)](Number)['forEach'](_0x1a5f0c=>{_0x43185a[_0x1a5f0c]!=null&&delete _0x43185a[_0x1a5f0c];}):_0x3d07d3[_0x4a592f(0xc5)](_0x3a0483=>{const _0x35c8ee=_0x4a592f;for(let _0x61154c=_0x3a0483['startRow'];_0x61154c<=_0x3a0483[_0x35c8ee(0x111)];_0x61154c++)delete _0x43185a[_0x61154c];})),{'m1Prime':_0x4f22ff,'m2Prime':_0x53d24a};}},_i={'m1':_0x2c3db1['id'],'m2':_0x2c3db1['id'],'handler':(_0x1040c4,_0x24dd1d)=>{const _0xdea2e7=_0x572182,_0x7166c=_0x1040c4[_0xdea2e7(0x8d)],_0x44a99b=_0x24dd1d[_0xdea2e7(0x8d)];return _0x7166c[_0xdea2e7(0xdb)]===_0x44a99b[_0xdea2e7(0xdb)]&&_0x7166c[_0xdea2e7(0x20b)]===_0x44a99b[_0xdea2e7(0x20b)]&&_0x7166c[_0xdea2e7(0x176)][_0xdea2e7(0xf8)]===_0x44a99b['payload']['commentId']?{'m1Prime':[],'m2Prime':_0x24dd1d}:{'m1Prime':_0x1040c4,'m2Prime':_0x24dd1d};}},Oi={'m1':_0x2afd0c['id'],'m2':_0x2afd0c['id'],'handler':(_0x42c59b,_0x22dea8)=>{const _0x4df1b7=_0x572182,_0xbbc742=_0x42c59b['params'],_0x1d9210=_0x22dea8['params'];return _0xbbc742[_0x4df1b7(0xdb)]===_0x1d9210[_0x4df1b7(0xdb)]&&_0xbbc742[_0x4df1b7(0x20b)]===_0x1d9210[_0x4df1b7(0x20b)]&&_0xbbc742[_0x4df1b7(0x176)]['commentId']===_0x1d9210['payload'][_0x4df1b7(0xf8)]?{'m1Prime':[],'m2Prime':_0x22dea8}:{'m1Prime':_0x42c59b,'m2Prime':_0x22dea8};}},yi={'m1':_0x4e1baf['id'],'m2':_0x3bedd8['id'],'handler':(_0x4dea4d,_0x2c360c)=>{const _0x50f728=_0x572182,_0x1fb929={'m1Prime':_0x4dea4d,'m2Prime':_0x2c360c},_0x56cf56=_0x4dea4d[_0x50f728(0x8d)],_0x422f39=_0x2c360c['params'];if(_0x56cf56[_0x50f728(0xdb)]!==_0x422f39[_0x50f728(0xdb)]||_0x56cf56[_0x50f728(0x20b)]!==_0x422f39[_0x50f728(0x20b)])return _0x1fb929;if(_0x4dea4d[_0x50f728(0x8d)][_0x50f728(0x176)][_0x50f728(0x120)]===_0x4e3a21[_0x50f728(0x94)]){const {unitId:_0x365803,subUnitId:_0x21e016}=_0x4dea4d[_0x50f728(0x8d)],_0x5c50fc=Array['isArray'](_0x2c360c[_0x50f728(0x8d)]['rule'])?_0x2c360c['params'][_0x50f728(0xea)]:[_0x2c360c['params'][_0x50f728(0xea)]],_0x39f825=[],_0x114639=new _0x1f7bb9(),_0x35c292=_0x4dea4d[_0x50f728(0x8d)][_0x50f728(0x176)][_0x50f728(0x176)];_0x35c292['forEach'](_0x370bd2=>{const _0x1d92a3=_0x50f728;_0x563f2d[_0x1d92a3(0x1f3)](_0x370bd2,(_0x465429,_0x539830)=>{const _0x505848=_0x1d92a3;_0x114639[_0x505848(0x134)](_0x465429,_0x539830,_0x4dea4d[_0x505848(0x8d)][_0x505848(0x103)]);});}),_0x5c50fc[_0x50f728(0xc5)](_0xf0a44f=>{const _0x789ef8=_0x50f728;_0xf0a44f[_0x789ef8(0xd1)][_0x789ef8(0xc5)](_0x2b23b9=>{const _0x594ff9=_0x789ef8;_0x563f2d[_0x594ff9(0x1f3)](_0x2b23b9,(_0x2a28a0,_0x8302d8)=>{const _0x5c0101=_0x594ff9;_0x114639[_0x5c0101(0x134)](_0x2a28a0,_0x8302d8,_0xf0a44f[_0x5c0101(0x96)]);});});});const _0x183dd4=_0x4dea4d[_0x50f728(0x8d)]['ruleId'],_0x3dcc94=_0x2de447(_0x114639,_0x2597c9=>_0x2597c9===_0x183dd4);return _0x592f19(_0x3dcc94,_0x35c292)||(_0x3dcc94[_0x50f728(0xf6)]?_0x39f825[_0x50f728(0x1ca)]({'id':_0x4e1baf['id'],'params':{'unitId':_0x365803,'subUnitId':_0x21e016,'ruleId':_0x183dd4,'payload':{'type':_0x4e3a21[_0x50f728(0x94)],'payload':_0x3dcc94}}}):_0x39f825[_0x50f728(0x1ca)]({'id':_0x13693a['id'],'params':{'unitId':_0x365803,'subUnitId':_0x21e016,'ruleId':_0x183dd4}})),{'m1Prime':_0x39f825[_0x50f728(0xf6)]?_0x39f825:[_0x4dea4d],'m2Prime':[..._0x39f825,_0x2c360c]};}return _0x1fb929;}},Ni={'m1':_0x4e1baf['id'],'m2':_0x13693a['id'],'handler':(_0x35b82d,_0x327090)=>{const _0x277ccf=_0x572182,_0x496ea1={'m1Prime':_0x35b82d,'m2Prime':_0x327090};if(_0x35b82d[_0x277ccf(0x8d)][_0x277ccf(0xdb)]!==_0x327090[_0x277ccf(0x8d)][_0x277ccf(0xdb)]||_0x35b82d[_0x277ccf(0x8d)][_0x277ccf(0x20b)]!==_0x327090[_0x277ccf(0x8d)]['subUnitId'])return _0x496ea1;const _0x5919c6=_0x35b82d['params'][_0x277ccf(0x103)];return(Array[_0x277ccf(0x16c)](_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)])?_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)]:[_0x327090[_0x277ccf(0x8d)][_0x277ccf(0x103)]])[_0x277ccf(0xf1)](_0x5919c6)>-0x1?{'m1Prime':[],'m2Prime':_0x327090}:_0x496ea1;}},Di={'m1':_0x4e1baf['id'],'m2':_0x4e1baf['id'],'handler':(_0x44b5e2,_0x1c989f)=>{const _0x5def79=_0x572182,_0x5b2558={'m1Prime':_0x44b5e2,'m2Prime':_0x1c989f},_0x272b06=_0x44b5e2[_0x5def79(0x8d)],_0x20cddf=_0x1c989f[_0x5def79(0x8d)];if(_0x272b06['unitId']===_0x20cddf[_0x5def79(0xdb)]&&_0x272b06[_0x5def79(0x20b)]===_0x20cddf[_0x5def79(0x20b)]){const _0x31693c=_0x570d2f['deepClone'](_0x1c989f);if(_0x20cddf[_0x5def79(0x103)]===_0x272b06[_0x5def79(0x103)]&&_0x272b06[_0x5def79(0x176)][_0x5def79(0x120)]===_0x20cddf[_0x5def79(0x176)]['type'])return _0x272b06[_0x5def79(0x176)]['type']===_0x4e3a21[_0x5def79(0x94)]&&!_0x592f19(_0x272b06[_0x5def79(0x176)][_0x5def79(0x176)],_0x20cddf[_0x5def79(0x176)][_0x5def79(0x176)])?{'error':new Error(_0x5def79(0x19c))}:{'m1Prime':[],'m2Prime':_0x31693c};if(_0x272b06[_0x5def79(0x176)]['type']===_0x4e3a21[_0x5def79(0x94)]&&_0x20cddf[_0x5def79(0x176)][_0x5def79(0x120)]===_0x4e3a21['RANGE']&&_0x20cddf['ruleId']!==_0x272b06[_0x5def79(0x103)]){let _0x25e3ca=function(_0x1de243,_0x1ee321){const _0xf9acd1=_0x5def79;_0x1de243[_0xf9acd1(0xc5)](_0x114ef2=>{_0x563f2d['foreach'](_0x114ef2,(_0x4e3c0d,_0x3d4489)=>{_0x1ed9b1['setValue'](_0x4e3c0d,_0x3d4489,_0x1ee321);});});};const _0x1ed9b1=new _0x1f7bb9();_0x25e3ca(_0x272b06['payload'][_0x5def79(0x176)],_0x272b06[_0x5def79(0x103)]),_0x25e3ca(_0x20cddf[_0x5def79(0x176)][_0x5def79(0x176)],_0x20cddf[_0x5def79(0x103)]);const _0x9e033=_0x2de447(_0x1ed9b1,_0x1b2b87=>_0x1b2b87===_0x272b06[_0x5def79(0x103)]),_0x1a8def=!_0x592f19(_0x272b06[_0x5def79(0x176)][_0x5def79(0x176)],_0x9e033)?_0x9e033[_0x5def79(0xf6)]?[{'id':_0x4e1baf['id'],'params':{..._0x272b06,'payload':{'type':_0x4e3a21[_0x5def79(0x94)],'payload':_0x9e033}}}]:[{'id':_0x13693a['id'],'params':{..._0x272b06,'payload':void 0x0}}]:[];return{'m1Prime':[_0x44b5e2],'m2Prime':[..._0x1a8def,_0x1c989f]};}}return _0x5b2558;}},Ai={'m1':_0x4325f9['id'],'m2':_0x4325f9['id'],'handler':(_0x24858a,_0xf1fd5a)=>{const _0x286f29=_0x572182,_0x132a74=_0x24858a[_0x286f29(0x8d)],_0x762810=_0xf1fd5a[_0x286f29(0x8d)];return _0x132a74[_0x286f29(0xdb)]===_0x762810[_0x286f29(0xdb)]&&_0x132a74[_0x286f29(0x20b)]===_0x762810[_0x286f29(0x20b)]&&_0x132a74['id']===_0x762810['id']?{'m2Prime':_0xf1fd5a,'m1Prime':[]}:{'m1Prime':_0x24858a,'m2Prime':_0xf1fd5a};}},Ti={'m1':_0x3ece39['id'],'m2':_0x3ece39['id'],'handler':(_0x2e9dc5,_0x4e1ff1)=>{const _0x1a4d95=_0x572182,_0xc6a41b=_0x2e9dc5[_0x1a4d95(0x8d)],_0x34be52=_0x4e1ff1[_0x1a4d95(0x8d)];return _0xc6a41b[_0x1a4d95(0xdb)]===_0x34be52[_0x1a4d95(0xdb)]&&_0xc6a41b[_0x1a4d95(0x20b)]===_0x34be52[_0x1a4d95(0x20b)]&&_0xc6a41b['id']===_0x34be52['id']?{'m2Prime':_0x4e1ff1,'m1Prime':[]}:{'m1Prime':_0x2e9dc5,'m2Prime':_0x4e1ff1};}},Li={'m1':_0x2df765['id'],'m2':_0x4b0a3e['id'],'handler'(_0x2a221a,_0x1014fe){const _0x2d02d6=_0x572182,_0x46f62c=_0x570d2f[_0x2d02d6(0xb4)](_0x1014fe);return _0x2a221a[_0x2d02d6(0x8d)][_0x2d02d6(0x20b)]!==_0x1014fe[_0x2d02d6(0x8d)][_0x2d02d6(0x20b)]||_0x2a221a[_0x2d02d6(0x8d)]['unitId']!==_0x1014fe[_0x2d02d6(0x8d)]['unitId']?{'m1Prime':_0x2a221a,'m2Prime':_0x46f62c}:(_0x46f62c['id']=_0x1a62da['id'],{'m1Prime':_0x2a221a,'m2Prime':_0x46f62c});}},ki={'m1':_0x2df765['id'],'m2':_0x3c47fd['id'],'handler'(_0x3c1908,_0x149ce4){const _0x2becd2=_0x572182,_0x3ce4e=_0x570d2f[_0x2becd2(0xb4)](_0x149ce4);return _0x3c1908['params']['subUnitId']!==_0x149ce4['params'][_0x2becd2(0x20b)]||_0x3c1908[_0x2becd2(0x8d)][_0x2becd2(0xdb)]!==_0x149ce4[_0x2becd2(0x8d)][_0x2becd2(0xdb)]?{'m1Prime':_0x3c1908,'m2Prime':_0x3ce4e}:(_0x3ce4e['id']=_0x1a62da['id'],{'m1Prime':_0x3c1908,'m2Prime':_0x3ce4e});}},xi={'m1':_0x4189f4['id'],'m2':_0x4189f4['id'],'handler'(_0x4d3326,_0x59d6c4){const _0x4a42ba=_0x572182;if(_0x4d3326['params'][_0x4a42ba(0x168)]['id']===_0x59d6c4[_0x4a42ba(0x8d)][_0x4a42ba(0x168)]['id'])return{'error':new Error(_0x4a42ba(0x1ac))};const _0x4fc955=_0x570d2f[_0x4a42ba(0xb4)](_0x4d3326),_0x205236=_0x570d2f['deepClone'](_0x59d6c4);return _0x4fc955[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]<=_0x205236[_0x4a42ba(0x8d)]['index']?_0x205236[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]+=0x1:_0x4fc955['params'][_0x4a42ba(0x17b)]>_0x205236[_0x4a42ba(0x8d)][_0x4a42ba(0x17b)]&&(_0x4fc955[_0x4a42ba(0x8d)]['index']+=0x1),_0x4d3326['params'][_0x4a42ba(0x168)][_0x4a42ba(0x1a0)]===_0x59d6c4['params']['sheet'][_0x4a42ba(0x1a0)]?{'error':new Error('Two\x20mutation\x20have\x20the\x20same\x20worksheet\x20name!')}:{'m1Prime':_0x4fc955,'m2Prime':_0x205236};}},Hi={'m1':_0x2df765['id'],'m2':_0x572182(0x131),'handler'(_0x1aac5a,_0x4f5664){const _0x32e3da=_0x572182;var _0x29da8d;return _0x1aac5a['params'][_0x32e3da(0x20b)]===((_0x29da8d=_0x4f5664[_0x32e3da(0x8d)])==null?void 0x0:_0x29da8d[_0x32e3da(0x20b)])&&_0x1aac5a['id']!==_0x4f5664['id']?{'error':new Error(_0x32e3da(0x1e8))}:{'m1Prime':_0x1aac5a,'m2Prime':_0x4f5664};}},Fi={'m1':_0xdfc809['id'],'m2':_0xdfc809['id'],'handler'(_0x2a6279,_0x184a35){const _0x2f97a2=_0x572182,_0x3a730e=_0x570d2f['deepClone'](_0x2a6279),_0x4242d9=_0x570d2f[_0x2f97a2(0xb4)](_0x184a35),_0x20d70d={'error':new Error(_0x2f97a2(0x8a))};if(_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x184a35[_0x2f97a2(0x8d)]['fromOrder'])_0x3a730e['id']=_0x1a62da['id'],_0x4242d9[_0x2f97a2(0x8d)]['fromOrder']=_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)];else{_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x2a6279['params']['toOrder']&&(_0x3a730e['id']=_0x1a62da['id']),_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)]===_0x184a35[_0x2f97a2(0x8d)]['toOrder']&&(_0x4242d9['id']=_0x1a62da['id']);const _0x17a334=[Math[_0x2f97a2(0x126)](_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)]),Math[_0x2f97a2(0xed)](_0x2a6279[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x2a6279[_0x2f97a2(0x8d)]['toOrder'])],_0x3d25e7=[Math[_0x2f97a2(0x126)](_0x184a35[_0x2f97a2(0x8d)]['fromOrder'],_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0x1d1)]),Math[_0x2f97a2(0xed)](_0x184a35[_0x2f97a2(0x8d)][_0x2f97a2(0xd8)],_0x184a35['params']['toOrder'])];if(_0x17a334[0x0]<=_0x3d25e7[0x1]&&_0x17a334[0x1]>=_0x3d25e7[0x0])return _0x20d70d;}return{'m1Prime':_0x3a730e,'m2Prime':_0x4242d9};}},Bi={'m1':_0x4189f4['id'],'m2':_0xdfc809['id'],'handler'(_0x37182b,_0x83a26){const _0x23b685=_0x572182,_0x3033ba=_0x570d2f[_0x23b685(0xb4)](_0x37182b),_0x566cf7=_0x570d2f[_0x23b685(0xb4)](_0x83a26);return _0x37182b['params'][_0x23b685(0x17b)]<=_0x83a26[_0x23b685(0x8d)][_0x23b685(0x13f)]&&(_0x566cf7[_0x23b685(0x8d)][_0x23b685(0x13f)]+=0x1),{'m1Prime':_0x3033ba,'m2Prime':_0x566cf7};}},Gi={'m1':_0x572182(0x131),'m2':_0x2df765['id'],'handler'(_0x605b6c,_0x35c68){return{'m1Prime':_0x605b6c,'m2Prime':_0x35c68};}},ji=[xi,Bi,Hi,Gi,Fi];var $i=Object[_0x572182(0x116)],Yi=Object[_0x572182(0x173)],Ji=(_0x53f6ac,_0x1e0a3a,_0x506ab3,_0x3e2494)=>{const _0x399105=_0x572182;for(var _0x109e2c=_0x3e2494>0x1?void 0x0:_0x3e2494?Yi(_0x1e0a3a,_0x506ab3):_0x1e0a3a,_0x31a0e3=_0x53f6ac[_0x399105(0xf6)]-0x1,_0x292de0;_0x31a0e3>=0x0;_0x31a0e3--)(_0x292de0=_0x53f6ac[_0x31a0e3])&&(_0x109e2c=(_0x3e2494?_0x292de0(_0x1e0a3a,_0x506ab3,_0x109e2c):_0x292de0(_0x109e2c))||_0x109e2c);return _0x3e2494&&_0x109e2c&&$i(_0x1e0a3a,_0x506ab3,_0x109e2c),_0x109e2c;},Xi=(_0x12ddb5,_0x3a4cec)=>(_0x156358,_0x922691)=>_0x3a4cec(_0x156358,_0x922691,_0x12ddb5);let Bt=class extends _0x522e72{constructor(_0x571e6f){const _0x306974=_0x572182;super(),this[_0x306974(0x1f4)]=_0x571e6f,[...ji,Zn,Qn,ta,ea,ma,sa,oa,ia,pa,da,ra,ua,wa,Ca,Pa,ba,Sa,Na,Da,Aa,Wa,Va,_a,Ea,Ua,Oa,Ha,Ka,Fa,$a,Ya,Ja,Qa,Xa,za,Ba,ls,gs,us,bs,Ms,vs,Is,ws,Cs,hs,cs,Ps,ns,os,as,Ns,Os,ys,Fs,Ls,ks,xs,$s,Hs,Ds,Bs,ao,ro,eo,uo,ho,go,Io,lo,co,po,mo,no,fo,hi,fi,Ei,Fo,Mi,vi,Si,Wi,Vi,gi,Do,Go,Bo,zs,qs,xr,Ao,es,Yn,Hr,Di,Xs,Kn,ds,zn,Vs,Qs,Ra,Ss,ha,La,Js,Co,Fr,yi,Ni,la,ca,ya,qa,Za,Us,Gs,js,Ro,Pi,wi,Ci,Ii,bi,Ui,fn,rr,qn,nr,Ia,ar,xa,or,ms,sr,rs,ir,_s,dr,to,mr,pi,Rn,Li,na,Ma,Ga,ps,As,so,ki,Po,bo,Uo,Mo,vo,Eo,So,hn,Wo,kr,jn,$n,Oi,_i,Jn,ga,ka,is,Ws,Zs,fa,Ta,ts,Es,Ys,wo,Br,Ks,Ai,Ti,Gr,jr,$r,Yr,Jr,Xr,Kr,zr,qr,Zr,Qr,tn,en,rn,nn,an,sn,on,dn,mn,un,ln,cn,pn,jo,$o,Yo,Jo,Xo,Ko,zo,qo,Zo,Qo,ti,ri,ei,ni,ai,si,oi,ii,di,mi,ui,li,ci,gn,In,wn,Cn,Pn,Un,bn,Mn,vn,En,Wn,Sn,Vn,yn,_n,On,An,Nn,Dn,Tn,Ln,kn,xn,Hn,Fn,Bn,Gn,va,aa,oo,Ts,fs,ja,ss,Ri,Oo,Ho,No,yo][_0x306974(0xc5)](_0x3490ab=>{const _0x3158d7=_0x306974;this['_transformService'][_0x3158d7(0x1e9)](_0x3490ab);});}};Bt=Ji([Xi(0x0,Pe)],Bt);function Ki(_0x58feb0,_0x33c8c5){const _0x3a8682=_0x572182;if(!Array[_0x3a8682(0x16c)](_0x58feb0))return;const _0x59d813=_0x58feb0['indexOf'](_0x3a8682(0x133))>-0x1?_0x58feb0:_0x58feb0[_0x3a8682(0xa1)](_0x20d1ed=>Array[_0x3a8682(0x16c)](_0x20d1ed)&&_0x20d1ed['indexOf']('body')>-0x1);if(!Array['isArray'](_0x59d813))return;const _0x40c2d3=_0x59d813[_0x3a8682(0xf1)]('body');if(!(_0x40c2d3===-0x1||(_0x40c2d3===0x0?'':_0x59d813[_0x40c2d3-0x1])!==_0x33c8c5))return _0x59d813[_0x3a8682(0x1a8)](_0x40c2d3);}function He(_0x230a7f,_0x6244ca,_0x592354=_0x572182(0x200)){const _0x5525cd=_0x572182;if(_0x6244ca['length']===0x0)return[];const {segmentId:_0x126824}=_0x6244ca[0x0];if(_0x126824==null)return _0x6244ca;const _0x153868=Ki(_0x230a7f,_0x126824);if(_0x153868==null)return _0x6244ca;const _0x233795=[];for(const _0x5d25ef of _0x6244ca){const _0x296b2=_0x430aeb[_0x5525cd(0x158)](_0x153868,_0x5d25ef[_0x5525cd(0x219)],_0x592354),_0x4f9708=_0x430aeb[_0x5525cd(0x158)](_0x153868,_0x5d25ef['endOffset'],_0x592354),_0x262850={..._0x5d25ef,'startOffset':_0x296b2,'endOffset':_0x4f9708,'collapsed':_0x296b2===_0x4f9708};_0x233795[_0x5525cd(0x1ca)](_0x262850);}return _0x233795;}const zi={'m1':_0x5bfddc['id'],'m2':_0x5bfddc['id'],'handler'(_0x23d266,_0xcc2ab1){const _0x18d5c5=_0x572182;if(_0x23d266[_0x18d5c5(0x8d)]['unitId']!==_0xcc2ab1[_0x18d5c5(0x8d)][_0x18d5c5(0xdb)])return{'error':new Error(_0x18d5c5(0x18b))};const _0x5234bd=_0x570d2f[_0x18d5c5(0xb4)](_0x23d266),_0xfad8f6=_0x570d2f[_0x18d5c5(0xb4)](_0xcc2ab1);return{'m1Prime':{..._0x5234bd,'params':{..._0x5234bd[_0x18d5c5(0x8d)],'actions':_0x430aeb[_0x18d5c5(0xf5)](_0x5234bd['params'][_0x18d5c5(0x109)],_0xfad8f6[_0x18d5c5(0x8d)]['actions'],_0x18d5c5(0x161)),'textRanges':_0x5234bd['params'][_0x18d5c5(0x142)]?He(_0xfad8f6['params'][_0x18d5c5(0x109)],_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x142)],'right'):null}},'m2Prime':{..._0xfad8f6,'params':{..._0xfad8f6[_0x18d5c5(0x8d)],'actions':_0x430aeb[_0x18d5c5(0xf5)](_0xfad8f6[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],'right'),'textRanges':_0xfad8f6[_0x18d5c5(0x8d)]['textRanges']?He(_0x5234bd[_0x18d5c5(0x8d)][_0x18d5c5(0x109)],_0xfad8f6[_0x18d5c5(0x8d)][_0x18d5c5(0x142)],_0x18d5c5(0x200)):null}}};}},qi=[zi];var Zi=Object[_0x572182(0x116)],Qi=Object[_0x572182(0x173)],td=(_0x3b7ac4,_0x5ec69b,_0x880bf1,_0x3ab7b5)=>{for(var _0x62b3b2=_0x3ab7b5>0x1?void 0x0:_0x3ab7b5?Qi(_0x5ec69b,_0x880bf1):_0x5ec69b,_0x13255c=_0x3b7ac4['length']-0x1,_0x12415a;_0x13255c>=0x0;_0x13255c--)(_0x12415a=_0x3b7ac4[_0x13255c])&&(_0x62b3b2=(_0x3ab7b5?_0x12415a(_0x5ec69b,_0x880bf1,_0x62b3b2):_0x12415a(_0x62b3b2))||_0x62b3b2);return _0x3ab7b5&&_0x62b3b2&&Zi(_0x5ec69b,_0x880bf1,_0x62b3b2),_0x62b3b2;},ed=(_0x23d57c,_0x386831)=>(_0x20310c,_0x3a1e96)=>_0x386831(_0x20310c,_0x3a1e96,_0x23d57c);let Gt=class extends _0x522e72{constructor(_0x570f59){super(),this['_transformService']=_0x570f59,[...qi]['forEach'](_0x1e8d89=>{const _0x492eb3=_0x2b5d;this[_0x492eb3(0x1f4)]['registerTransformAlgorithm'](_0x1e8d89);});}};Gt=td([ed(0x0,Pe)],Gt);function tm(_0x2ac54d){return{..._0x2ac54d,'mutations':_0x2ac54d['mutations']['map'](rd)};}function em(_0x157f27){const _0x4128a5=_0x572182;return _0x157f27[_0x4128a5(0x1e0)](_0x4b64f5=>({'id':_0x4b64f5['id'],'params':JSON[_0x4128a5(0x1bb)](_0x4b64f5[_0x4128a5(0x8b)])}));}function rm(_0x3b62d6){const _0x5777ef=_0x572182;return{..._0x3b62d6,'mutations':_0x3b62d6[_0x5777ef(0x1d6)]['map'](nd)};}function rd(_0x41a58e){const _0x34c74d=_0x572182;return{'id':_0x41a58e['id'],'params':JSON[_0x34c74d(0x1bb)](_0x41a58e[_0x34c74d(0x8b)])};}function nd(_0x26aab1){const _0x323911=_0x572182;return{'id':_0x26aab1['id'],'data':JSON[_0x323911(0x7d)](_0x26aab1[_0x323911(0x8d)])};}var ad=(_0x3754eb=>(_0x3754eb[_0x572182(0xd0)]=_0x572182(0x170),_0x3754eb[_0x572182(0x91)]='pseudo_fetch_missing_result',_0x3754eb[_0x572182(0xdf)]=_0x572182(0xdc),_0x3754eb[_0x572182(0x85)]=_0x572182(0xfb),_0x3754eb[_0x572182(0x1f0)]=_0x572182(0x201),_0x3754eb['CHANGESET_SHOULD_RETRY']='changeset_should_retry',_0x3754eb[_0x572182(0x112)]=_0x572182(0x100),_0x3754eb[_0x572182(0x192)]=_0x572182(0x179),_0x3754eb[_0x572182(0x1a7)]=_0x572182(0x1b2),_0x3754eb[_0x572182(0x1a4)]=_0x572182(0xa7),_0x3754eb[_0x572182(0x12b)]='unit_delete',_0x3754eb['LIVESHARE_REQUEST_HOST']=_0x572182(0x81),_0x3754eb[_0x572182(0x16f)]='liveshare.new_host',_0x3754eb['LIVESHARE_OPERATION']=_0x572182(0x1cc),_0x3754eb[_0x572182(0x194)]=_0x572182(0x17c),_0x3754eb['LIVESHARE_TERMINATE']=_0x572182(0x18e),_0x3754eb[_0x572182(0xda)]=_0x572182(0x150),_0x3754eb[_0x572182(0x198)]=_0x572182(0x16e),_0x3754eb[_0x572182(0x209)]=_0x572182(0x163),_0x3754eb['UPDATE_PERMISSION_OBJ']=_0x572182(0x151),_0x3754eb[_0x572182(0xd9)]=_0x572182(0x183),_0x3754eb))(ad||{});const sd=_0x572182(0x113),od={};var id=Object['defineProperty'],dd=Object['getOwnPropertyDescriptor'],md=(_0x4e2317,_0x94f1f4,_0x52a32a,_0x13e6f7)=>{const _0x9f1cd6=_0x572182;for(var _0x4943bc=_0x13e6f7>0x1?void 0x0:_0x13e6f7?dd(_0x94f1f4,_0x52a32a):_0x94f1f4,_0x537068=_0x4e2317[_0x9f1cd6(0xf6)]-0x1,_0x47a9d0;_0x537068>=0x0;_0x537068--)(_0x47a9d0=_0x4e2317[_0x537068])&&(_0x4943bc=(_0x13e6f7?_0x47a9d0(_0x94f1f4,_0x52a32a,_0x4943bc):_0x47a9d0(_0x4943bc))||_0x4943bc);return _0x13e6f7&&_0x4943bc&&id(_0x94f1f4,_0x52a32a,_0x4943bc),_0x4943bc;},ud=(_0x102f9d,_0x209b11)=>(_0x100e38,_0x4eb618)=>_0x209b11(_0x100e38,_0x4eb618,_0x102f9d);let jt=class extends _0x522e72{constructor(_0x5c086c){const _0x2e45df=_0x572182;super(),this[_0x2e45df(0xc0)]=_0x5c086c,[re][_0x2e45df(0xc5)](_0x4f9480=>this[_0x2e45df(0xc0)][_0x2e45df(0x139)](_0x4f9480));}};jt=md([ud(0x0,_0x29be17)],jt);const ld=_0x2a5c88=>{const _0x350c58=_0x572182,_0x237c62={};if(!_0x2a5c88)return{'cellValue':_0x2a5c88,'styleRefMap':void 0x0};const _0x98b27e=[];return{'cellValue':new _0x1f7bb9(_0x570d2f[_0x350c58(0xb4)](_0x2a5c88))['forValue']((_0x3e366b,_0x2cc0b1,_0x4496da)=>{const _0x2f7065=_0x350c58,_0x529d62=_0x4496da&&_0x4496da['s'];if(_0x529d62&&typeof _0x529d62===_0x2f7065(0xde)){const _0x59770a=JSON[_0x2f7065(0x7d)](_0x529d62),_0x2b0db5=_0x98b27e[_0x2f7065(0x1c6)](_0x2990ef=>_0x2990ef===_0x59770a);if(_0x2b0db5>-0x1)_0x4496da['s']=''+_0x2b0db5;else{const _0x1957e3=_0x98b27e['push'](_0x59770a)-0x1;_0x237c62[_0x1957e3]=_0x529d62,_0x4496da['s']=''+_0x1957e3;}}})[_0x350c58(0x16a)](),'styleRefMap':_0x237c62};},cd=(_0x3968e0,_0x264fb0)=>!_0x3968e0||!_0x264fb0?_0x3968e0:new _0x1f7bb9(_0x570d2f[_0x572182(0xb4)](_0x3968e0))[_0x572182(0x86)]((_0x105914,_0x2f376b,_0x34da10)=>{const _0x51f33f=_0x572182,_0x3cc904=_0x34da10&&_0x34da10['s'];if(_0x3cc904&&typeof _0x3cc904===_0x51f33f(0xa6)){const _0x5dd650=_0x264fb0[_0x3cc904];_0x5dd650&&(_0x34da10['s']=_0x5dd650);}})[_0x572182(0x16a)](),pd=_0xe27569(_0x572182(0x216)),fd=_0xe27569(_0x572182(0x1c0));class ur{constructor(){const _0x4cf4f2=_0x572182;se(this,'interceptor',new _0x17f18b({'COMPRESS_MUTATION_APPLY':pd,'COMPRESS_MUTATION_SEND':fd})),this[_0x4cf4f2(0x19e)]();}['_init'](){const _0x1da2b9=_0x572182;this[_0x1da2b9(0x1da)]['intercept'](this[_0x1da2b9(0x1da)][_0x1da2b9(0xf7)]()[_0x1da2b9(0x216)],{'priority':-0x1,'handler':_0x1a55f5=>_0x1a55f5}),this['interceptor']['intercept'](this[_0x1da2b9(0x1da)][_0x1da2b9(0xf7)]()[_0x1da2b9(0x1c0)],{'priority':-0x1,'handler':_0x3e114c=>_0x3e114c}),this[_0x1da2b9(0xc8)]();}[_0x572182(0xc8)](){const _0x504c01=_0x572182;this[_0x504c01(0x1da)]['intercept'](this[_0x504c01(0x1da)][_0x504c01(0xf7)]()[_0x504c01(0x216)],{'handler':(_0x28d8aa,_0x24b952,_0xbebb11)=>{const _0x2c6849=_0x504c01;if(!_0x28d8aa)return _0xbebb11(_0x28d8aa);const _0x4853ff=_0x28d8aa[_0x2c6849(0x1e0)](_0x20545e=>{const _0xca30ae=_0x2c6849;if(_0x20545e['id']===_0x15eb0a['id']){const _0x17319e=_0x20545e['params'];if(!_0x17319e[_0xca30ae(0x1ae)])return _0x20545e;const _0x4ae376=cd(_0x17319e[_0xca30ae(0x208)],_0x17319e[_0xca30ae(0x1ae)]);return{..._0x20545e,'params':{..._0x17319e,'cellValue':_0x4ae376}};}return _0x20545e;});return _0xbebb11(_0x4853ff);}}),this[_0x504c01(0x1da)][_0x504c01(0x1fd)](this[_0x504c01(0x1da)][_0x504c01(0xf7)]()[_0x504c01(0x1c0)],{'handler':(_0x31194f,_0x28d3d1,_0x1a7472)=>{const _0x43b341=_0x504c01;if(!_0x31194f)return _0x1a7472(_0x31194f);const _0x1cb672=_0x31194f[_0x43b341(0x1e0)](_0x225554=>{const _0x160165=_0x43b341;if(_0x225554['id']===_0x15eb0a['id']){const _0x131974=_0x225554['params'];return _0x131974[_0x160165(0x1ae)]?_0x225554:{..._0x225554,'params':{..._0x131974,...ld(_0x131974['cellValue'])}};}return _0x225554;});return _0x1a7472(_0x1cb672);}});}}var Rd=Object['defineProperty'],hd=Object[_0x572182(0x173)],gd=(_0x1d2e05,_0x5e5446,_0x1b1878,_0x5d54de)=>{const _0x20f67f=_0x572182;for(var _0x1a5e50=_0x5d54de>0x1?void 0x0:_0x5d54de?hd(_0x5e5446,_0x1b1878):_0x5e5446,_0x204da3=_0x1d2e05[_0x20f67f(0xf6)]-0x1,_0x532837;_0x204da3>=0x0;_0x204da3--)(_0x532837=_0x1d2e05[_0x204da3])&&(_0x1a5e50=(_0x5d54de?_0x532837(_0x5e5446,_0x1b1878,_0x1a5e50):_0x532837(_0x1a5e50))||_0x1a5e50);return _0x5d54de&&_0x1a5e50&&Rd(_0x5e5446,_0x1b1878,_0x1a5e50),_0x1a5e50;},Id=(_0x26a43a,_0x1ffd37)=>(_0xf9a3f9,_0x4a5132)=>_0x1ffd37(_0xf9a3f9,_0x4a5132,_0x26a43a);const nm=new Set([_0x4189f4['id'],_0x2df765['id'],_0x532e28['id'],_0xeba0d['id'],_0x36d2a9['id']]),am=new Set([_0x4189f4['id'],_0x2df765['id'],re['id'],_0xe30a36['id']]);let $t=class{constructor(_0x8f6dc2){const _0x3e02a3=_0x572182;this[_0x3e02a3(0x1ba)]=_0x8f6dc2;}[_0x572182(0x1e4)](_0x5d2b39){const _0x40334e=_0x572182,_0x2a87bd=this[_0x40334e(0x1ba)][_0x40334e(0x147)](_0x5d2b39);if(!_0x2a87bd)throw new Error(_0x40334e(0x124)+_0x5d2b39+'.');return _0x2a87bd['getRev']();}[_0x572182(0xeb)](_0x3f99ae){const _0xe89997=_0x572182,_0x4fb296=this[_0xe89997(0x1ba)][_0xe89997(0x147)](_0x3f99ae);if(!_0x4fb296)throw new Error('[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitID:\x20'+_0x3f99ae+'.');return _0x4fb296[_0xe89997(0x1e7)](),_0x4fb296[_0xe89997(0x7b)]();}[_0x572182(0x17a)](_0x218c2a,_0x3bb0fe){const _0x157f0f=_0x572182,_0x558dd1=this[_0x157f0f(0x1ba)][_0x157f0f(0x147)](_0x218c2a);_0x558dd1&&_0x558dd1[_0x157f0f(0x122)](_0x3bb0fe);}};$t=gd([Id(0x0,_0x2c40b4)],$t);var ne=(_0x2eb397=>(_0x2eb397[_0x2eb397[_0x572182(0x215)]=0x0]=_0x572182(0x215),_0x2eb397[_0x2eb397['OK']=0x1]='OK',_0x2eb397[_0x2eb397[_0x572182(0x21b)]=0x2]=_0x572182(0x21b),_0x2eb397[_0x2eb397[_0x572182(0xbc)]=0x3]=_0x572182(0xbc),_0x2eb397[_0x2eb397[_0x572182(0x1c3)]=0x4]=_0x572182(0x1c3),_0x2eb397[_0x2eb397[_0x572182(0x174)]=0x5]=_0x572182(0x174),_0x2eb397[_0x2eb397['ALREADY_EXISTS']=0x6]='ALREADY_EXISTS',_0x2eb397[_0x2eb397[_0x572182(0x1bc)]=0x7]=_0x572182(0x1bc),_0x2eb397[_0x2eb397[_0x572182(0xf2)]=0x8]=_0x572182(0xf2),_0x2eb397[_0x2eb397[_0x572182(0x1ec)]=0x9]=_0x572182(0x1ec),_0x2eb397[_0x2eb397[_0x572182(0x13e)]=0x1389]=_0x572182(0x13e),_0x2eb397[_0x2eb397[_0x572182(0x9b)]=0x1771]=_0x572182(0x9b),_0x2eb397[_0x2eb397[_0x572182(0x193)]=0x1772]=_0x572182(0x193),_0x2eb397[_0x2eb397[_0x572182(0x1ea)]=0x1773]='ENSURE_SNAPSHOT_EXECUTION',_0x2eb397[_0x2eb397['APPLY_REJECT']=0x1b59]=_0x572182(0xef),_0x2eb397[_0x2eb397[_0x572182(0x204)]=0x1b5a]=_0x572182(0x204),_0x2eb397[_0x2eb397[_0x572182(0xfd)]=0x1b5b]=_0x572182(0xfd),_0x2eb397[_0x2eb397['APPLY_PERMISSION_DENIED']=0x1b5c]=_0x572182(0x212),_0x2eb397[_0x2eb397['APPLY_DUPLICATED']=0x1b5d]='APPLY_DUPLICATED',_0x2eb397[_0x2eb397['CONNECTOR_DATA_TOO_LARGE']=0x1f41]=_0x572182(0xa8),_0x2eb397[_0x2eb397['LICENSE_MAX_UNITS_EXCEEDED']=0x2329]=_0x572182(0x160),_0x2eb397[_0x2eb397[_0x572182(0x10c)]=0x232a]=_0x572182(0x10c),_0x2eb397[_0x2eb397['LICENSE_IMPORT_SIZE_EXCEEDED']=0x232b]=_0x572182(0x189),_0x2eb397[_0x2eb397[_0x572182(0x197)]=0x232c]=_0x572182(0x197),_0x2eb397[_0x2eb397[_0x572182(0x207)]=0x232d]=_0x572182(0x207),_0x2eb397[_0x2eb397['YUUMI_UNABLE_LOAD_URL']=0x2711]=_0x572182(0x15c),_0x2eb397[_0x2eb397[_0x572182(0x166)]=0x2712]=_0x572182(0x166),_0x2eb397[_0x2eb397[_0x572182(0x1fb)]=0x2713]=_0x572182(0x1fb),_0x2eb397[_0x2eb397['YUUMI_SUBSCRIPTION_NOT_FOUND']=0x2714]=_0x572182(0xb5),_0x2eb397[_0x2eb397['UNRECOGNIZED']=-0x1]=_0x572182(0xad),_0x2eb397))(ne||{}),j=(_0xf35899=>(_0xf35899[_0xf35899[_0x572182(0x97)]=0x0]=_0x572182(0x97),_0xf35899[_0xf35899[_0x572182(0x1cf)]=0x1]=_0x572182(0x1cf),_0xf35899[_0xf35899['UNIVER_SHEET']=0x2]=_0x572182(0x12f),_0xf35899[_0xf35899['UNIVER_SLIDE']=0x3]=_0x572182(0xd7),_0xf35899[_0xf35899[_0x572182(0xa0)]=0x4]='UNIVER_PROJECT',_0xf35899[_0xf35899[_0x572182(0xad)]=-0x1]=_0x572182(0xad),_0xf35899))(j||{});function Yt(_0x5a4d00){const _0x3a96fb=_0x572182;return!!(_0x5a4d00&&_0x5a4d00[_0x3a96fb(0x213)]&&_0x5a4d00[_0x3a96fb(0x213)]!==ne['OK']&&_0x5a4d00['code']!=='OK');}const J=[];for(let t=0x0;t<0x100;++t)J[_0x572182(0x1ca)]((t+0x100)[_0x572182(0x1df)](0x10)[_0x572182(0x1a8)](0x1));function wd(_0x535926,_0x9999b2=0x0){const _0x40a951=_0x572182;return(J[_0x535926[_0x9999b2+0x0]]+J[_0x535926[_0x9999b2+0x1]]+J[_0x535926[_0x9999b2+0x2]]+J[_0x535926[_0x9999b2+0x3]]+'-'+J[_0x535926[_0x9999b2+0x4]]+J[_0x535926[_0x9999b2+0x5]]+'-'+J[_0x535926[_0x9999b2+0x6]]+J[_0x535926[_0x9999b2+0x7]]+'-'+J[_0x535926[_0x9999b2+0x8]]+J[_0x535926[_0x9999b2+0x9]]+'-'+J[_0x535926[_0x9999b2+0xa]]+J[_0x535926[_0x9999b2+0xb]]+J[_0x535926[_0x9999b2+0xc]]+J[_0x535926[_0x9999b2+0xd]]+J[_0x535926[_0x9999b2+0xe]]+J[_0x535926[_0x9999b2+0xf]])[_0x40a951(0x90)]();}let ie;const Cd=new Uint8Array(0x10);function Pd(){const _0x20411b=_0x572182;if(!ie){if(typeof crypto>'u'||!crypto[_0x20411b(0x1b4)])throw new Error(_0x20411b(0x14b));ie=crypto['getRandomValues'][_0x20411b(0x17d)](crypto);}return ie(Cd);}const Ud=typeof crypto<'u'&&crypto[_0x572182(0xe9)]&&crypto[_0x572182(0xe9)][_0x572182(0x17d)](crypto),Fe={'randomUUID':Ud};function Be(_0x1a9735,_0x1ffba1,_0x360b94){const _0x47c57a=_0x572182;if(Fe[_0x47c57a(0xe9)]&&!_0x1ffba1&&!_0x1a9735)return Fe['randomUUID']();_0x1a9735=_0x1a9735||{};const _0x3b5ebf=_0x1a9735['random']||(_0x1a9735[_0x47c57a(0x1ef)]||Pd)();return _0x3b5ebf[0x6]=_0x3b5ebf[0x6]&0xf|0x40,_0x3b5ebf[0x8]=_0x3b5ebf[0x8]&0x3f|0x80,wd(_0x3b5ebf);}const bd={[_0x2e0eae[_0x572182(0x1cf)]]:j[_0x572182(0x1cf)],[_0x2e0eae[_0x572182(0x12f)]]:j[_0x572182(0x12f)],[_0x2e0eae[_0x572182(0xd7)]]:j[_0x572182(0xd7)],[_0x2e0eae[_0x572182(0x97)]]:j[_0x572182(0x97)],[_0x2e0eae[_0x572182(0xa0)]]:j[_0x572182(0x97)],[_0x2e0eae[_0x572182(0xad)]]:j[_0x572182(0xad)]};function sm(_0x435850){const _0x481e45=_0x572182;var _0x48a81d;return(_0x48a81d=bd[_0x435850])!=null?_0x48a81d:j[_0x481e45(0x97)];}function om(_0x21f678){const _0xd00346=_0x572182;return btoa(encodeURIComponent(_0x21f678)[_0xd00346(0x1bd)](/%([0-9A-F]{2})/g,(_0xb9df9f,_0x1ba469)=>String[_0xd00346(0x11a)](Number[_0xd00346(0x87)](_0x1ba469,0x10))));}const Md=new TextDecoder();function lr(_0x8446d4){const _0x524446=_0x572182,_0x4385b5=atob(_0x8446d4),_0x54b5c8=_0x4385b5['length'];let _0x1cd34c=new Uint8Array(_0x54b5c8);for(let _0x313d60=0x0;_0x313d60<_0x54b5c8;_0x313d60++)_0x1cd34c[_0x313d60]=_0x4385b5['charCodeAt'](_0x313d60);const _0x17d841=Md[_0x524446(0xe4)](_0x1cd34c);return _0x1cd34c=null,_0x17d841;}const ae=new TextEncoder(),ve=new TextDecoder();function cr(_0x2d3c68){const _0x2ececb=_0x572182,_0x900ea0=_0x570d2f['deepClone'](_0x2d3c68);return delete _0x900ea0['id'],delete _0x900ea0[_0x2ececb(0x1a0)],delete _0x900ea0[_0x2ececb(0x88)],delete _0x900ea0['columnCount'],delete _0x900ea0[_0x2ececb(0x20a)],ae[_0x2ececb(0x175)](JSON[_0x2ececb(0x7d)](_0x900ea0));}function pr(_0x1cba4e){const _0x3b7037=_0x572182,_0x3c3693=_0x570d2f[_0x3b7037(0xb4)](_0x1cba4e);return delete _0x3c3693['id'],delete _0x3c3693['rev'],delete _0x3c3693[_0x3b7037(0x1a0)],delete _0x3c3693[_0x3b7037(0x8f)],delete _0x3c3693[_0x3b7037(0x15f)],ae['encode'](JSON['stringify'](_0x3c3693));}function fr(_0x16f3a5){const _0x2be378=_0x572182,_0x135e38=_0x570d2f[_0x2be378(0xb4)](_0x16f3a5);return delete _0x135e38['id'],delete _0x135e38[_0x2be378(0xee)],delete _0x135e38['title'],delete _0x135e38[_0x2be378(0x1b9)],ae[_0x2be378(0x175)](JSON[_0x2be378(0x7d)](_0x135e38));}function Ge(_0x5220f7){const _0x3537db=_0x572182;return JSON[_0x3537db(0x1bb)](typeof _0x5220f7=='string'?lr(_0x5220f7):ve[_0x3537db(0xe4)](_0x5220f7));}function vd(_0x24c0f7){const _0x14e8b7=_0x572182;return _0x24c0f7 instanceof Uint8Array?JSON['parse'](ve[_0x14e8b7(0xe4)](_0x24c0f7)):_0x24c0f7;}function Ed(_0x335e1e){const _0xc456b3=_0x572182;return JSON['parse'](typeof _0x335e1e==_0xc456b3(0xa6)?lr(_0x335e1e):ve[_0xc456b3(0xe4)](_0x335e1e));}const de=0x100*0x14;function Rr(_0x300de8,_0x45ec90){const _0x3829e5=_0x572182,_0x1ab37c=new _0x1f7bb9(_0x300de8),_0x1dddd5=_0x1ab37c[_0x3829e5(0xe0)](),_0x3d877f=[];let _0x18a6c=0x0;for(;_0x18a6c<_0x1dddd5;){const _0x1f72a2=Math[_0x3829e5(0x126)](_0x18a6c+de,_0x1dddd5-0x1),_0x486d55=_0x1ab37c['getSlice'](_0x18a6c,Math[_0x3829e5(0x126)](_0x18a6c+de,_0x1dddd5-0x1),0x0,_0x45ec90),_0x54e0fa=Sd(_0x486d55);_0x3d877f[_0x3829e5(0x1ca)]({'id':_0x570d2f[_0x3829e5(0x1e6)](0x13,_0x3829e5(0x1d2)),'startRow':_0x18a6c,'endRow':_0x1f72a2,'data':_0x54e0fa}),_0x18a6c+=de;}return _0x3d877f;}function Sd(_0x196a26){const _0x63fd82=_0x572182,_0x56ced1=_0x196a26[_0x63fd82(0xcb)]();return ae[_0x63fd82(0x175)](JSON[_0x63fd82(0x7d)](_0x56ced1));}async function im(_0x166e3f,_0x210ffb,_0xb89771,_0x5da8e5){const _0x465750=_0x572182;var _0x6678b2;const _0x35385f={'unitID':_0x210ffb['id'],'rev':_0x5da8e5,'creator':'','name':(_0x6678b2=_0x210ffb[_0x465750(0xbd)])!=null?_0x6678b2:'','resources':_0x210ffb[_0x465750(0x1b9)]||[],'originalMeta':fr(_0x210ffb)};return{'snapshot':{'unitID':_0xb89771,'rev':_0x35385f[_0x465750(0xee)],'type':j[_0x465750(0x1cf)],'workbook':void 0x0,'doc':_0x35385f}};}async function dm(_0x5ed66c,_0x3a0f2f,_0x244926,_0x716dd3,_0x190f65){const _0x41dc70=_0x572182,_0x2aad85={},_0x357d1e={};if(!await Promise['all'](Object[_0x41dc70(0x214)](_0x3a0f2f['sheets'])[_0x41dc70(0x1e0)](async([_0x31b818,_0x4d8992])=>{const _0x45c2b2=_0x41dc70,_0x5b6a14={'id':_0x4d8992['id'],'type':_0x527d41['GRID'],'name':_0x4d8992[_0x45c2b2(0x1a0)],'rowCount':_0x4d8992[_0x45c2b2(0x88)],'columnCount':_0x4d8992['columnCount'],'originalMeta':cr(_0x4d8992)};if(_0x357d1e[_0x31b818]=_0x5b6a14,_0x4d8992[_0x45c2b2(0x20a)]){const _0x55e141=Rr(_0x4d8992[_0x45c2b2(0x20a)],_0x4d8992[_0x45c2b2(0x1f1)]),_0x382b50=await Promise[_0x45c2b2(0x206)](_0x55e141[_0x45c2b2(0x1e0)](_0x221e93=>_0x190f65[_0x45c2b2(0x177)](_0x5ed66c,{'unitID':_0x244926,'type':j['UNIVER_SHEET'],'block':_0x221e93})));if(_0x382b50[_0x45c2b2(0xaf)](_0x23c04e=>{const _0x29cae0=_0x45c2b2;var _0x3724fc;return((_0x3724fc=_0x23c04e[_0x29cae0(0x20c)])==null?void 0x0:_0x3724fc[_0x29cae0(0x213)])!==ne['OK'];}))return!0x1;_0x2aad85[_0x31b818]={'sheetID':_0x31b818,'blocks':_0x382b50[_0x45c2b2(0x1e0)](_0xd9984e=>_0xd9984e['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x301a58=pr(_0x3a0f2f),_0x1239e1={'unitID':_0x3a0f2f['id'],'rev':_0x716dd3,'creator':'','name':_0x3a0f2f[_0x41dc70(0x1a0)],'sheetOrder':_0x3a0f2f[_0x41dc70(0x8f)],'sheets':_0x357d1e,'blockMeta':_0x2aad85,'resources':_0x3a0f2f[_0x41dc70(0x1b9)]||[],'originalMeta':_0x301a58};return{'snapshot':{'unitID':_0x244926,'rev':_0x1239e1[_0x41dc70(0xee)],'type':j[_0x41dc70(0x12f)],'workbook':_0x1239e1,'doc':void 0x0}};}async function mm(_0x12f06a,_0x37421e,_0x3bf230,_0x7d7634,_0x57280e){const _0x28e3fb=_0x572182;var _0x27893c,_0x122b22;const _0x2402fd={},_0x157375={};if(!await Promise[_0x28e3fb(0x206)](Object[_0x28e3fb(0x214)](_0x37421e[_0x28e3fb(0x15f)])[_0x28e3fb(0x1e0)](async([_0x4b0430,_0x54ce1b])=>{const _0x2ce902=_0x28e3fb,_0xebfe0f={'id':_0x54ce1b['id'],'type':_0x527d41[_0x2ce902(0xba)],'name':_0x54ce1b['name'],'rowCount':_0x54ce1b[_0x2ce902(0x88)],'columnCount':_0x54ce1b[_0x2ce902(0x1f1)],'originalMeta':cr(_0x54ce1b)};if(_0x157375[_0x4b0430]=_0xebfe0f,_0x54ce1b[_0x2ce902(0x20a)]){const _0x14d1c6=Rr(_0x54ce1b[_0x2ce902(0x20a)],_0x54ce1b[_0x2ce902(0x1f1)]),_0x1ee31c=await Promise[_0x2ce902(0x206)](_0x14d1c6[_0x2ce902(0x1e0)](_0x457dd1=>_0x57280e[_0x2ce902(0x177)](_0x12f06a,{'unitID':_0x3bf230,'type':j[_0x2ce902(0x12f)],'block':_0x457dd1})));if(_0x1ee31c['some'](_0x446419=>{const _0x1677bf=_0x2ce902;var _0x3bc2f3;return((_0x3bc2f3=_0x446419[_0x1677bf(0x20c)])==null?void 0x0:_0x3bc2f3[_0x1677bf(0x213)])!==ne['OK'];}))return!0x1;_0x2402fd[_0x4b0430]={'sheetID':_0x4b0430,'blocks':_0x1ee31c[_0x2ce902(0x1e0)](_0xacc3f6=>_0xacc3f6['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x522f87=pr(_0x37421e),_0x56ac74={'unitID':_0x37421e['id'],'rev':_0x7d7634,'creator':'','name':_0x37421e['name'],'sheetOrder':_0x37421e[_0x28e3fb(0x8f)],'sheets':_0x157375,'blockMeta':_0x2402fd,'resources':_0x37421e[_0x28e3fb(0x1b9)]||[],'originalMeta':_0x522f87},_0x5340f5={'unitID':_0x3bf230,'rev':_0x56ac74[_0x28e3fb(0xee)],'type':j[_0x28e3fb(0x12f)],'workbook':_0x56ac74,'doc':void 0x0},_0x653639=await _0x57280e[_0x28e3fb(0x1a3)](_0x12f06a,{'unitID':_0x3bf230,'type':j[_0x28e3fb(0x12f)],'snapshot':_0x5340f5});if(Yt(_0x653639[_0x28e3fb(0x20c)]))throw new Error(_0x28e3fb(0x191)+((_0x27893c=_0x653639[_0x28e3fb(0x20c)])==null?void 0x0:_0x27893c[_0x28e3fb(0x213)])+':'+((_0x122b22=_0x653639['error'])==null?void 0x0:_0x122b22[_0x28e3fb(0x143)]));return{'snapshot':_0x5340f5};}function Wd(_0x55a139,_0x34a596,_0x4a992e){const _0x4546a3=_0x572182,_0x1a30a7=_0x55a139[_0x4546a3(0x159)];if(!_0x1a30a7)throw new Error('');const _0x3e2b58={};Object[_0x4546a3(0x214)](_0x1a30a7[_0x4546a3(0x15f)])[_0x4546a3(0xc5)](([_0x54d594,_0x100664])=>{const _0xb40de8=_0x4546a3,_0x3d18f3=Ge(_0x100664[_0xb40de8(0x1e2)]);_0x3e2b58[_0x54d594]={'id':_0x100664['id'],'name':_0x100664['name'],'rowCount':_0x100664[_0xb40de8(0x88)],'columnCount':_0x100664[_0xb40de8(0x1f1)],..._0x3d18f3};});const _0x4c61fb=new Map();_0x34a596[_0x4546a3(0xc5)](_0x257594=>{_0x4c61fb['set'](_0x257594['id'],_0x257594);}),_0x1a30a7[_0x4546a3(0x1af)]&&Object[_0x4546a3(0x214)](_0x1a30a7[_0x4546a3(0x1af)])['forEach'](([_0x45a162,_0x3e5322])=>{const _0x54ad8c=_0x4546a3;var _0xfd6fb3;const _0xdd0fbe=_0x3e2b58[_0x45a162];_0xdd0fbe[_0x54ad8c(0x20a)]={};const _0x384cde=[];(_0xfd6fb3=_0x3e5322[_0x54ad8c(0x125)])==null||_0xfd6fb3['forEach'](_0x461479=>{const _0x43c2db=_0x54ad8c,_0x5d6993=_0x4c61fb[_0x43c2db(0xc4)](_0x461479);if(_0x5d6993)_0x384cde[_0x43c2db(0x1ca)](_0x5d6993);else throw new Error('');}),_0x384cde[_0x54ad8c(0xc5)](_0x2a0948=>{const _0x4ece3f=_0x54ad8c,_0x206e9b=vd(_0x2a0948[_0x4ece3f(0x8b)]);Object[_0x4ece3f(0x214)](_0x206e9b)['forEach'](([_0xc8b641,_0x4d866d])=>{const _0x493543=_0x4ece3f,_0x952fba=_0xdd0fbe['cellData'][+_0xc8b641]={};Object[_0x493543(0x214)](_0x4d866d)[_0x493543(0xc5)](([_0x7ce57e,_0x54c7a5])=>{_0x952fba[+_0x7ce57e]=_0x54c7a5;});});});});const _0xb00105=Ge(_0x1a30a7['originalMeta']);return{'id':_0x55a139[_0x4546a3(0xf4)]||_0x1a30a7[_0x4546a3(0xf4)],'rev':_0x55a139['rev']||_0x1a30a7[_0x4546a3(0xee)],'name':_0x1a30a7[_0x4546a3(0x1a0)],'sheetOrder':_0x1a30a7[_0x4546a3(0x8f)],'appVersion':'','locale':_0x96e036[_0x4546a3(0x188)],'sheets':_0x3e2b58,'styles':{},'resources':_0x1a30a7[_0x4546a3(0x1b9)]||[],..._0xb00105};}function Vd(_0xcc33c8){const _0x26ab1c=_0x572182,_0x12570b=_0xcc33c8[_0x26ab1c(0x1a6)];if(_0x12570b==null)throw new Error('transformSnapshotToDocumentData():\x20snapshot.doc\x20is\x20undefined.');const {unitID:_0x136d33,rev:_0x2eea8f,name:_0x332fbf,originalMeta:_0x1ded9f,resources:_0x456e79=[]}=_0x12570b,{body:_0x2cf058,documentStyle:_0x4399a6={},settings:_0x3b2acc={},drawings:_0x24d6f1={},drawingsOrder:_0x312793=[],tableSource:_0x41419f={},headers:_0x46a4ae={},footers:_0x5cf151={},lists:_0x3b9a3b={}}=Ed(_0x1ded9f);return{'id':_0x136d33,'rev':_0x2eea8f,'locale':_0x96e036[_0x26ab1c(0x188)],'title':_0x332fbf,'body':_0x2cf058,'documentStyle':_0x4399a6,'settings':_0x3b2acc,'drawings':_0x24d6f1,'drawingsOrder':_0x312793,'resources':_0x456e79,'tableSource':_0x41419f,'headers':_0x46a4ae,'footers':_0x5cf151,'lists':_0x3b9a3b};}async function um(_0x3ea0d3,_0x42fd81,_0x5ccb3b,_0xcfa12d,_0x586212){const _0x3e8934=_0x572182;var _0x3d32df,_0x394d76,_0x2e7ab5;const _0x5cdb8a={'unitID':_0x42fd81['id'],'rev':_0xcfa12d,'creator':'','name':(_0x3d32df=_0x42fd81[_0x3e8934(0xbd)])!=null?_0x3d32df:'','resources':_0x42fd81[_0x3e8934(0x1b9)]||[],'originalMeta':fr(_0x42fd81)},_0x4267e5={'unitID':_0x5ccb3b,'rev':_0x5cdb8a[_0x3e8934(0xee)],'type':j[_0x3e8934(0x1cf)],'workbook':void 0x0,'doc':_0x5cdb8a},_0x40ba01=await _0x586212[_0x3e8934(0x1a3)](_0x3ea0d3,{'unitID':_0x5ccb3b,'type':j['UNIVER_DOC'],'snapshot':_0x4267e5});if(Yt(_0x40ba01[_0x3e8934(0x20c)]))throw new Error(_0x3e8934(0xe6)+((_0x394d76=_0x40ba01[_0x3e8934(0x20c)])==null?void 0x0:_0x394d76['code'])+':'+((_0x2e7ab5=_0x40ba01[_0x3e8934(0x20c)])==null?void 0x0:_0x2e7ab5[_0x3e8934(0x143)]));return{'snapshot':_0x4267e5};}async function lm(_0x5a7e82,_0x53171e){const _0x31f20c=_0x572182,_0x5f5adb=_0x5a7e82['workbook'];if(!_0x5f5adb)throw new Error(_0x31f20c(0x1c9));const _0x252e5f=[],_0x580eae=[];return Object[_0x31f20c(0x214)](_0x5f5adb['blockMeta'])[_0x31f20c(0xc5)](([_0x3f16ad,_0x49a276])=>{const _0x5a2404=_0x49a276['blocks']['map'](async _0x3038f3=>{const _0x4ec172=_0x2b5d,_0x426366={'unitID':_0x5f5adb[_0x4ec172(0xf4)],'type':j[_0x4ec172(0x12f)],'blockID':_0x3038f3},{block:_0x744fdf}=await _0x53171e[_0x4ec172(0x14a)]({},_0x426366);if(_0x744fdf)_0x252e5f[_0x4ec172(0x1ca)](_0x744fdf);else throw new Error(_0x4ec172(0x178));});_0x580eae['push'](..._0x5a2404);}),await Promise[_0x31f20c(0x206)](_0x580eae),_0x252e5f;}var _d=Object[_0x572182(0x116)],Od=Object['getOwnPropertyDescriptor'],yd=(_0x4dea82,_0x477b74,_0x3acd33,_0x232f2c)=>{const _0x297f0d=_0x572182;for(var _0x532760=_0x232f2c>0x1?void 0x0:_0x232f2c?Od(_0x477b74,_0x3acd33):_0x477b74,_0x24b632=_0x4dea82[_0x297f0d(0xf6)]-0x1,_0x312e40;_0x24b632>=0x0;_0x24b632--)(_0x312e40=_0x4dea82[_0x24b632])&&(_0x532760=(_0x232f2c?_0x312e40(_0x477b74,_0x3acd33,_0x532760):_0x312e40(_0x532760))||_0x532760);return _0x232f2c&&_0x532760&&_d(_0x477b74,_0x3acd33,_0x532760),_0x532760;},mt=(_0x2c8df6,_0x382e32)=>(_0x3faf96,_0x115acc)=>_0x382e32(_0x3faf96,_0x115acc,_0x2c8df6);const Nd=_0x39c530(_0x572182(0xec));let pe=class{constructor(_0x55a61a,_0x1f64b5,_0x6e81c2,_0xdfc43c,_0x341b0e,_0x4ffc89,_0x1dc04c){const _0x1ef831=_0x572182;this['_revisionService']=_0x55a61a,this[_0x1ef831(0x1ba)]=_0x1f64b5,this[_0x1ef831(0xb2)]=_0x6e81c2,this[_0x1ef831(0xc0)]=_0xdfc43c,this[_0x1ef831(0x140)]=_0x341b0e,this[_0x1ef831(0x93)]=_0x4ffc89,this[_0x1ef831(0x136)]=_0x1dc04c;}async[_0x572182(0x14d)](_0x3f9aa5,_0x1eaf0b,_0x4f2fce){const _0x31d267=_0x572182;var _0x34ae95;_0x4f2fce===void 0x0&&(_0x4f2fce={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x5aa223,changesets:_0x39b141,error:_0x589c11}=await this[_0x31d267(0xb2)][_0x31d267(0x1b1)](_0x4f2fce,{'unitID':_0x3f9aa5,'type':j['UNIVER_SHEET'],'revision':_0x1eaf0b});if(Yt(_0x589c11)||!_0x5aa223||!_0x5aa223[_0x31d267(0x159)])throw new Error(_0x31d267(0x106));const _0x4bd52d=(_0x34ae95=_0x39b141==null?void 0x0:_0x39b141[_0x31d267(0xf6)])!=null?_0x34ae95:0x0;if(_0x1eaf0b!==0x0&&_0x5aa223[_0x31d267(0xee)]+_0x4bd52d!==_0x1eaf0b)throw new Error(_0x31d267(0x167));const {workbook:_0x356656}=_0x5aa223,_0x11a8b9=_0x356656[_0x31d267(0x1af)]?Object[_0x31d267(0x214)](_0x356656['blockMeta'])[_0x31d267(0x1e0)](([_0x527c2f,_0x31d47])=>{const _0x37f61d=_0x31d267;var _0x40f4c2,_0x42af03;return(_0x42af03=(_0x40f4c2=_0x31d47[_0x37f61d(0x125)])==null?void 0x0:_0x40f4c2[_0x37f61d(0x1e0)](_0x143f8c=>_0x143f8c))!=null?_0x42af03:[];})[_0x31d267(0x13b)]():[],_0x2cef74=(await Promise[_0x31d267(0x206)](_0x11a8b9['map'](_0x2b66c6=>this[_0x31d267(0xb2)][_0x31d267(0x157)](_0x4f2fce,{'unitID':_0x3f9aa5,'type':j[_0x31d267(0x12f)],'blockID':_0x2b66c6})[_0x31d267(0x1b7)](_0x52647f=>_0x52647f['block']))))[_0x31d267(0x9f)](_0x45b52a=>!!_0x45b52a),_0xf06faa=Wd(_0x5aa223,_0x2cef74),_0x20a245=this[_0x31d267(0x1ba)][_0x31d267(0x105)](_0x2e0eae[_0x31d267(0x12f)],_0xf06faa),_0x52418c=this[_0x31d267(0x93)][_0x31d267(0x1da)][_0x31d267(0x1b3)](this[_0x31d267(0x93)][_0x31d267(0x1da)]['getInterceptPoints']()['COMPRESS_MUTATION_APPLY']);return _0x39b141==null||_0x39b141[_0x31d267(0xc5)](_0x4ddc46=>{const _0x1b5b1d=_0x31d267,_0x249bc2=_0x4ddc46[_0x1b5b1d(0x1d6)][_0x1b5b1d(0x1e0)](_0x6ce0e8=>({'id':_0x6ce0e8['id'],'params':JSON[_0x1b5b1d(0x1bb)](_0x6ce0e8[_0x1b5b1d(0x8b)])}));({..._0x4ddc46,'mutations':_0x52418c(_0x249bc2,null)||_0x249bc2}['mutations'][_0x1b5b1d(0xc5)](_0x57e09c=>this[_0x1b5b1d(0xc0)][_0x1b5b1d(0x84)](_0x57e09c['id'],_0x57e09c[_0x1b5b1d(0x8d)],{'fromChangeset':!0x0})),this[_0x1b5b1d(0x10f)]['incrementRevOfUnit'](_0x3f9aa5));}),_0x20a245;}async[_0x572182(0xff)](_0xa78dcb,_0x1a0cc8,_0x31d213){const _0x570e65=_0x572182;var _0x3554ac;_0x31d213===void 0x0&&(_0x31d213={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x371962,changesets:_0x4bae3c,error:_0x232343}=await this[_0x570e65(0xb2)][_0x570e65(0x1b1)](_0x31d213,{'unitID':_0xa78dcb,'type':j[_0x570e65(0x1cf)],'revision':_0x1a0cc8});if(Yt(_0x232343)||!_0x371962||!_0x371962[_0x570e65(0x1a6)])throw new Error(_0x570e65(0x106));const _0xbc5a56=(_0x3554ac=_0x4bae3c==null?void 0x0:_0x4bae3c[_0x570e65(0xf6)])!=null?_0x3554ac:0x0;if(_0x1a0cc8!==0x0&&_0x371962[_0x570e65(0xee)]+_0xbc5a56!==_0x1a0cc8)throw new Error('[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!');const _0x4d2750=Vd(_0x371962),_0x15d742=this['_univerInstanceService'][_0x570e65(0x105)](_0x2e0eae[_0x570e65(0x1cf)],_0x4d2750);return _0x4bae3c==null||_0x4bae3c[_0x570e65(0xc5)](_0x103cf1=>{const _0x168bfb=_0x570e65;_0x103cf1[_0x168bfb(0x1d6)][_0x168bfb(0x1e0)](_0x33a508=>({'id':_0x33a508['id'],'params':JSON[_0x168bfb(0x1bb)](_0x33a508['data'])}))[_0x168bfb(0xc5)](_0x2e03d9=>this[_0x168bfb(0xc0)][_0x168bfb(0x84)](_0x2e03d9['id'],_0x2e03d9[_0x168bfb(0x8d)],{'fromChangeset':!0x0})),this[_0x168bfb(0x10f)][_0x168bfb(0xeb)](_0xa78dcb);}),_0x15d742;}[_0x572182(0x20e)](_0x143f79,_0x3e1539){const _0x4f9985=_0x572182,_0x4e908e={..._0x3e1539[_0x4f9985(0x184)]()};_0x3e1539[_0x4f9985(0xcc)]()['forEach'](_0x29ac57=>{const _0x7ebb47=_0x4f9985;_0x4e908e[_0x7ebb47(0x15f)][_0x29ac57['getSheetId']()]=_0x570d2f[_0x7ebb47(0xb4)](_0x29ac57[_0x7ebb47(0x184)]());});const _0x44b721=this[_0x4f9985(0x136)][_0x4f9985(0x9c)](_0x3e1539['getUnitId'](),_0x2e0eae[_0x4f9985(0x12f)]);return _0x4e908e[_0x4f9985(0x1b9)]=_0x44b721,_0x4e908e;}[_0x572182(0x104)](_0x152072,_0xbbd226){const _0x27116c=_0x572182,_0x2e2448={..._0xbbd226[_0x27116c(0x184)]()},_0x58955e=this['_resourceManagerService']['getResources'](_0xbbd226['getUnitId'](),_0x2e0eae[_0x27116c(0x1cf)]);return _0x2e2448[_0x27116c(0x1b9)]=_0x58955e,_0x2e2448;}};pe=yd([mt(0x0,_0x55268a($t)),mt(0x1,_0x2c40b4),mt(0x2,Nd),mt(0x3,_0x29be17),mt(0x4,_0x55268a(_0x5cafd9)),mt(0x5,_0x55268a(ur)),mt(0x6,_0x55268a(_0x3dfe73))],pe);var hr=Object[_0x572182(0x116)],Dd=Object[_0x572182(0x173)],Ad=(_0x41b172,_0x27a75a,_0x4ba9ca)=>_0x27a75a in _0x41b172?hr(_0x41b172,_0x27a75a,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4ba9ca}):_0x41b172[_0x27a75a]=_0x4ba9ca,Td=(_0x4f16ef,_0x35dc72,_0x345e50,_0x51402f)=>{const _0xa50d0a=_0x572182;for(var _0x58ed9d=_0x51402f>0x1?void 0x0:_0x51402f?Dd(_0x35dc72,_0x345e50):_0x35dc72,_0x33cdd7=_0x4f16ef[_0xa50d0a(0xf6)]-0x1,_0x56a583;_0x33cdd7>=0x0;_0x33cdd7--)(_0x56a583=_0x4f16ef[_0x33cdd7])&&(_0x58ed9d=(_0x51402f?_0x56a583(_0x35dc72,_0x345e50,_0x58ed9d):_0x56a583(_0x58ed9d))||_0x58ed9d);return _0x51402f&&_0x58ed9d&&hr(_0x35dc72,_0x345e50,_0x58ed9d),_0x58ed9d;},je=(_0x27510a,_0x1cc075)=>(_0x19760e,_0x35f626)=>_0x1cc075(_0x19760e,_0x35f626,_0x27510a),Ld=(_0x20cf1d,_0x5c05b3,_0x106a17)=>Ad(_0x20cf1d,_0x5c05b3+'',_0x106a17);const kd=_0x572182(0x1fc);let fe=class extends _0x10409a{constructor(_0xb96edf=od,_0x15fa85,_0x39e44b){const _0x8cee50=_0x572182;super(),this['_config']=_0xb96edf,this[_0x8cee50(0x140)]=_0x15fa85,this[_0x8cee50(0x128)]=_0x39e44b;const {..._0x32c9a3}=this[_0x8cee50(0xfa)];this['_configService'][_0x8cee50(0x15e)](sd,_0x32c9a3);}[_0x572182(0x169)](){const _0x21aebe=_0x572182;[[$t],[jt],[Bt],[Gt],[pe],[Pe,{'useClass':Tr}],[ur]][_0x21aebe(0xc5)](_0x1ae09d=>this[_0x21aebe(0x140)][_0x21aebe(0x12d)](_0x1ae09d)),this[_0x21aebe(0x140)][_0x21aebe(0xc4)](Gt),this[_0x21aebe(0x140)][_0x21aebe(0xc4)](jt),this['_injector']['get'](Bt);}};Ld(fe,_0x572182(0xc7),kd),fe=Td([_0xd02a03(_0x2a75a1),je(0x1,_0x55268a(_0x5cafd9)),je(0x2,_0x70987)],fe);const cm=_0x39c530(_0x572182(0x13a)),pm={'id':_0x572182(0xac),'type':_0x361ef7[_0x572182(0x1bf)],'handler':()=>!0x0};function _0x1690(){const _0x5bbf8c=['add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','criteria','APPLY_PERMISSION_DENIED','code','entries','UNDEFINED','COMPRESS_MUTATION_APPLY','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','startOffset','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','INTERNAL_ERROR','intersects','getRev','parentId','stringify','moveColumns','colId','col','liveshare.request_host','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','syncExecuteCommand','CHANGESET_ACK','forValue','parseInt','rowCount','remove\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','Two\x20SetWorksheetOrderMutation\x20have\x20conflicts!','data','move\x20range\x20is\x20conflict\x20with\x20reorder\x20range','params','symbol','sheetOrder','toLowerCase','PSEUDO_FETCH_MISSING_RESULT','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','_compressMutationService','RANGE','comment','uid','UNIVER_UNKNOWN','426bRCFsf','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','concat','SNAPSHOT_INVALID_SNAPSHOT','getResources','endColumn','set\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','filter','UNIVER_PROJECT','find','move\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','insert\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','start','string','users_leave','CONNECTOR_DATA_TOO_LARGE','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20row','getValue','keys','univer.mutation.create-unit','UNRECOGNIZED','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','some','\x20and\x20','transformChangesets','_snapshotServerService','insert\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','deepClone','YUUMI_SUBSCRIPTION_NOT_FOUND','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','move\x20row\x20is\x20conflict\x20with\x20move\x20row','transformMutation','unshift','GRID','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','PERMISSION_DENIED','title','SETTING','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','_commandService','move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','step','get','forEach','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','pluginName','_initSetRangeValues','remove\x20col\x20is\x20conflict\x20with\x20move\x20col','drawingIds','getData','getSheets','handler','\x20and\x20the\x20\x27revision\x27\x20of\x20c1\x20is\x20','m2Prime','FETCH_MISSING','ranges','values','insert\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','univer-pro.collaboration.transform-service','isMerged','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation','UNIVER_SLIDE','fromOrder','SHOULD_CLOSE_CONN','MSG_FOR_ERROR','unitId','submit_changeset','Algorithm\x20error,\x20m1Prime\x20should\x20not\x20be\x20undefined.','object','SUBMIT_CHANGESET','getLength','move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt','baseRev','287768lqsgVJ','decode','size','transformDocumentDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','rowData','randomUUID','rule','incrementRevOfUnit','univer.snapshot-server-service','max','rev','APPLY_REJECT','splice','indexOf','TOO_MANY_REQUESTS','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','unitID','transform','length','getInterceptPoints','commentId','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','_config','changeset_ack','remove\x20row\x20is\x20conflict\x20with\x20move\x20row','APPLY_REVISION_CONFILICT','color','loadDoc','new_changesets','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20row','startRow','ruleId','saveDoc','createUnit','[SnapshotService]:\x20request\x20snapshot\x20error!','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','actions','revision','cfId','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','63QJCzZP','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','_revisionService','has','endRow','NEW_CHANGESETS','collaboration.config','6865278bGpdIl','insert\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','defineProperty','177369YYwIwS','move\x20row\x20is\x20conflict\x20with\x20move\x20range','m1Prime','fromCharCode','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','sourceRange','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','Two\x20set-tab-color\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','type','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20comment','setRev','_transformMap','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitId:\x20','blocks','min','merge','_configService','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmft','before','UNIT_DELETE','columnData','add','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','UNIVER_SHEET','insert\x20row\x20is\x20conflict\x20with\x20remove\x20row','any','shift','body','setValue','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','_resourceManagerService','reorder\x20range\x20is\x20conflict\x20with\x20reorder\x20range','selections','registerCommand','IHistoryIoService','flat','move\x20col\x20is\x20conflict\x20with\x20move\x20range','removeRows','CHANGESET_REVISION_CONFILICT','order','_injector','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','textRanges','message','sequenceNodesBuilder','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20col','reduce','getUnit','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20sheet','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','getSheetBlock','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','column','loadSheet','_leftInclineTransformMutations','sort','error_msg','update_permission_obj','includes','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20name','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20col','getDeserializedSheetBlock','transformPosition','workbook','startColumn','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','YUUMI_UNABLE_LOAD_URL','remove\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','setConfig','sheets','LICENSE_MAX_UNITS_EXCEEDED','left','transformMutationsWithChangeset','comment_update','actualColumn','Remove-cols\x20has\x20conflicts\x20with\x20move-range','YUUMI_URL_COL_OUT_OF_RANGE','[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!','sheet','onStarting','getMatrix','removeColumns','isArray','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','permission_rej','LIVESHARE_NEW_HOST','fetch_missing','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20row','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','getOwnPropertyDescriptor','UNAUTHENTICATED','encode','payload','saveSheetBlock','Block\x20not\x20found','update_cursor','setRevOfUnit','index','liveshare.fetch_operations','bind','value','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20col','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','getDataRange','should_close_conn','getSnapshot','hasOwnProperty','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','isMergedMainCell','EN_US','LICENSE_IMPORT_SIZE_EXCEEDED','after','Two\x20mutation\x20need\x20have\x20the\x20same\x20unitId!','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','1111479rtPWkW','liveshare.terminate','Set-range-values\x20mutation\x20and\x20move-range\x20mutation\x20have\x20an\x20overlapping\x20range.','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','transformWorkbookDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','UPDATE_CURSOR','SNAPSHOT_HAS_BEEN_REMOVED','LIVESHARE_FETCH_OPERATIONS','drawingId','realDeleteValue','LICENSE_EXPORT_SIZE_EXCEEDED','PERMISSION_REJ','moveRows','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','objects','edit\x20range\x20of\x20same\x20data-validation\x20rule\x20is\x20not\x20allowed','primary','_init','range','name','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height','rules','saveSnapshot','USERS_LEAVE','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','doc','USERS_ENTER','slice','rowsAutoHeightInfo','set','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','Two\x20mutation\x20have\x20the\x20same\x20worksheetId!','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','styleRefMap','blockMeta','from','getUnitOnRev','users_enter','fetchThroughInterceptors','getRandomValues','number','insert\x20col\x20is\x20conflict\x20with\x20move\x20col','then','link','resources','_univerInstanceService','parse','INVALID_ARGUMENT','replace','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20comment','MUTATION','COMPRESS_MUTATION_SEND','352472RNSYER','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','NOT_FOUND','end','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','findIndex','ref','insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','Workbook\x20metadata\x20is\x20not\x20available','push','row','liveshare.operation','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20row','UNIVER_DOC','targetRange','toOrder','0123456789','transformMutations','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','mutations','83155XEcXdv','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','actualRow','interceptor','2TABuml','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','_rightInclineTransformMutations','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20order','toString','map','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','originalMeta','RevertRevisionMutation\x20conflicts\x20with\x20other\x20mutations!','getCurrentRevOfUnit','remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20row','generateRandomId','incrementRev','Trying\x20to\x20mutate\x20a\x20deleted\x20worksheet!','registerTransformAlgorithm','ENSURE_SNAPSHOT_EXECUTION','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','COMPLETION_FINISHED','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20column','26075300hGJDrc','rng','CHANGESET_REJ','columnCount','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','foreach','_transformService','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20range','Algorithm\x20error,\x20the\x20changeset\x20does\x20not\x20exist!','remove\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','remove\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','YUUMI_RATE_OVER_LIMIT','UNIVER_COLLABORATION_PLUGIN','intercept','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','COLUMN','right','changeset_rej','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','APPLY_NON_SEQUENTIAL_REVISION','Two\x20set-frozen\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','all','LICENSE_DISTRO_REJECTED','cellValue','COMMENT_UPDATE','cellData','subUnitId','error','univer.mutation.revert-version','save','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule'];_0x1690=function(){return _0x5bbf8c;};return _0x1690();}export{ad as CollaborationEvent,ur as CompressMutationService,pm as CreateUnitMutation,Gt as DocTransformController,cm as IHistoryIoService,Nd as ISnapshotServerService,Pe as ITransformService,re as RevertRevisionMutation,$t as RevisionService,am as SINGLE_HISTORY_MUTATIONS,nm as SINGLE_SNAPSHOT_MUTATIONS,Bt as SheetTransformController,pe as SnapshotService,Tr as TransformService,fe as UniverCollaborationPlugin,lr as b64DecodeUnicode,om as b64EncodeUnicode,im as generateTempDocumentSnapshot,dm as generateTemporarySnap,lm as getSheetBlocksFromSnapshot,Dr as isTransformChangesetsFailure,Zd as isTransformChangesetsSuccess,le as isTransformMutationFailure,at as isTransformMutationSuccess,ce as isTransformMutationsFailure,qd as isTransformMutationsSuccess,Ar as isTransformMutationsWithChangesetFailure,Qd as isTransformMutationsWithChangesetSuccess,Lt as makeArray,sm as mapDocumentTypeToUniverType,rm as parseChangesetToProtocol,nd as parseMutationToProtocol,tm as parseProtocolChangeset,em as parseProtocolCommand,rd as parseProtocolMutation,ve as textDecoder,ae as textEncoder,um as transformDocumentDataToSnapshot,Vd as transformSnapshotToDocumentData,Wd as transformSnapshotToWorkbookData,mm as transformWorkbookDataToSnapshot};
|
|
1
|
+
const _0x54481f=_0x5b5c;(function(_0xd82e3f,_0x96bd50){const _0x47260f=_0x5b5c,_0x579905=_0xd82e3f();while(!![]){try{const _0x31f130=parseInt(_0x47260f(0xb2))/0x1+-parseInt(_0x47260f(0x223))/0x2*(-parseInt(_0x47260f(0xdc))/0x3)+parseInt(_0x47260f(0x16d))/0x4+parseInt(_0x47260f(0xdd))/0x5+-parseInt(_0x47260f(0x1e3))/0x6*(parseInt(_0x47260f(0x100))/0x7)+-parseInt(_0x47260f(0x1fb))/0x8*(parseInt(_0x47260f(0x196))/0x9)+-parseInt(_0x47260f(0x167))/0xa;if(_0x31f130===_0x96bd50)break;else _0x579905['push'](_0x579905['shift']());}catch(_0x47f952){_0x579905['push'](_0x579905['shift']());}}}(_0x1fed,0xc027f));var gr=Object[_0x54481f(0x20f)],Ir=(_0x1e76a6,_0x22dc0c,_0x22c724)=>_0x22dc0c in _0x1e76a6?gr(_0x1e76a6,_0x22dc0c,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x22c724}):_0x1e76a6[_0x22dc0c]=_0x22c724,se=(_0x57f660,_0x14c794,_0x58aa2d)=>Ir(_0x57f660,typeof _0x14c794!=_0x54481f(0x229)?_0x14c794+'':_0x14c794,_0x58aa2d);import{createIdentifier as _0x3b0bb1,Disposable as _0x441d81,Tools as _0x12a789,ObjectMatrix as _0x3597fb,Range as _0x541337,queryObjectMatrix as _0x1be7bf,isRangesEqual as _0x86e48,Rectangle as _0x12b536,RANGE_TYPE as _0x55bc3d,isFormulaString as _0x3b1cee,insertMatrixArray as _0x164e70,moveMatrixArray as _0x220bae,spliceArray as _0x593d1d,CommandType as _0x4d0bd2,JSON1 as _0x4f3477,JSONX as _0x50a671,ICommandService as _0x2b122d,createInterceptorKey as _0x411bfa,InterceptorManager as _0x2aaff8,IUniverInstanceService as _0x447f4c,UniverInstanceType as _0x40c94a,SheetTypes as _0x520ae2,LocaleType as _0x4a1312,Inject as _0x3d133c,Injector as _0x4dd70c,IResourceManagerService as _0x9e1776,DependentOn as _0x413580,Plugin as _0x270299,IConfigService as _0x1e6fd0}from'@univerjs/core';import{AddCommentMutation as _0x41a8ef,DeleteCommentMutation as _0x47d358,UpdateCommentMutation as _0x62fd77,UpdateCommentRefMutation as _0x44bb69}from'@univerjs/thread-comment';import{AddConditionalRuleMutation as _0x1c40ba,MoveConditionalRuleMutation as _0x5f15c4,DeleteConditionalRuleMutation as _0x2d6c0f,SetConditionalRuleMutation as _0x311d1a}from'@univerjs/sheets-conditional-formatting';import{AddDataValidationMutation as _0x3273be,RemoveDataValidationMutation as _0x42cad4,UpdateRuleType as _0x4fe948,UpdateDataValidationMutation as _0x5ad83d}from'@univerjs/data-validation';import{AddHyperLinkMutation as _0x58a46b,RemoveHyperLinkMutation as _0x1b1d01,UpdateHyperLinkMutation as _0x3193a6,UpdateHyperLinkRefMutation as _0x362695}from'@univerjs/sheets-hyper-link';import{AddRangeProtectionMutation as _0x3b4149,AddWorksheetMergeMutation as _0x5504b0,AddWorksheetProtectionMutation as _0xfb6287,InsertColMutation as _0x3732ba,InsertRowMutation as _0xa7a746,MoveColsMutation as _0x1c90f1,MoveRangeMutation as _0xeb63e6,MoveRowsMutation as _0xfa530e,RemoveColMutation as _0x491a86,RemoveNumfmtMutation as _0x180381,RemoveWorksheetMergeMutation as _0x3194c5,SetFrozenMutation as _0x4310ec,SetNumfmtMutation as _0x30c2c8,SetRangeProtectionMutation as _0x37e736,SetRangeValuesMutation as _0x59880b,SetWorksheetColWidthMutation as _0x2d1a15,EmptyMutation as _0x411476,RemoveRowMutation as _0x116e41,SetSelectionsOperation as _0x22c7b4,SetWorksheetOrderMutation as _0x3be156,RemoveSheetMutation as _0x58230c,SetWorksheetNameMutation as _0x90af58,InsertColCommand as _0x1e49c2,handleDefaultRangeChangeWithEffectRefCommands as _0x2e41c3,RangeMergeUtil as _0x3c4fff,handleBaseInsertRange as _0x4f9a3f,handleBaseRemoveRange as _0x27f777,MoveColsCommand as _0x5319c7,handleCommonDefaultRangeChangeWithEffectRefCommands as _0x186780,ReorderRangeMutation as _0x41be04,SetColDataMutation as _0x2c204d,SetColHiddenMutation as _0x3d7e7a,SetColVisibleMutation as _0x46f51d,InsertRowCommand as _0x1aa760,rotateRange as _0x425bb4,SetRowDataMutation as _0x5d6537,SetRowHiddenMutation as _0x4744ed,SetRowVisibleMutation as _0x567b52,SetWorksheetRowAutoHeightMutation as _0x1bdf83,SetWorksheetRowHeightMutation as _0x295209,SetWorksheetRowIsAutoHeightMutation as _0x2d1c92,handleBaseMoveRowsCols as _0x56462a,MoveRowsCommand as _0x174f7c,RemoveColCommand as _0xd6d1c8,RemoveRowCommand as _0x348f36,SetTabColorMutation as _0x53f049,InsertSheetMutation as _0x392aa2,SetWorksheetProtectionMutation as _0x11f486}from'@univerjs/sheets';import{RemoveSheetsFilterMutation as _0x431d63,SetSheetsFilterCriteriaMutation as _0x254b23,SetSheetsFilterRangeMutation as _0x4a261b,ReCalcSheetsFilterMutation as _0xdfa2d9}from'@univerjs/sheets-filter';import{singleReferenceToGrid as _0x1f23be,serializeRange as _0x4ff173,LexerTreeBuilder as _0x3608a7,sequenceNodeType as _0xcac527,deserializeRangeWithSheetWithCache as _0x58568b,serializeRangeToRefString as _0x1530a6,ErrorType as _0x2be66a,generateStringWithSequence as _0xcaed4b}from'@univerjs/engine-formula';import{SetDrawingApplyMutation as _0x5a9d9c,DrawingApplyType as _0x1fd798}from'@univerjs/sheets-drawing';import{RichTextEditingMutation as _0x3a407a}from'@univerjs/docs';import{UniverLicensePlugin as _0x18a08b}from'@univerjs-pro/license';function le(_0x39c8fe){return!!_0x39c8fe['error'];}function at(_0x12b8ae){return!le(_0x12b8ae);}function De(_0x5a035c){return!!_0x5a035c['error'];}function ce(_0xac9117){const _0x10bd8c=_0x54481f;return!!_0xac9117[_0x10bd8c(0xc8)];}function qd(_0xed405a){return!ce(_0xed405a);}function Dr(_0x49abfa){return!!_0x49abfa['error'];}function Zd(_0x409669){return!Dr(_0x409669);}function Ar(_0x49aa9b){const _0xf04cb1=_0x54481f;return!!_0x49aa9b[_0xf04cb1(0xc8)];}function Qd(_0x404c11){return!Ar(_0x404c11);}const Pe=_0x3b0bb1(_0x54481f(0x117));function _0x1fed(){const _0x2207ba=['realDeleteValue','_configService','length','NEW_CHANGESETS','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20comment','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','getRandomValues','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20sheet','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','doc','formula2','YUUMI_URL_COL_OUT_OF_RANGE','error','body','rng','order','type','stringify','all','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','transformMutations','CHANGESET_REJ','move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height','isMerged','values','unshift','end','EN_US','UPDATE_CURSOR','getMatrix','endRow','toOrder','3IdGtqx','31310PltVvV','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','move\x20col\x20is\x20conflict\x20with\x20move\x20range','blockMeta','COMMENT_UPDATE','COLUMN','fetch_missing','flat','foreach','_commandService','rule','rules','link','permission_rej','_initSetRangeValues','deepClone','_resourceManagerService','randomUUID','LICENSE_IMPORT_SIZE_EXCEEDED','cellData','string','getSheetBlock','getInterceptPoints','pseudo_fetch_missing_result','getValue','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmft','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','isArray','actualRow','Set-range-values\x20mutation\x20and\x20move-range\x20mutation\x20have\x20an\x20overlapping\x20range.','unitID','parseInt','originalMeta','UNDEFINED','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','35IAjpsw','_revisionService','sheets','TOO_MANY_REQUESTS','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','PERMISSION_REJ','rowsAutoHeightInfo','move\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','before','charCodeAt','objects','getResources','startColumn','_injector','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','startOffset','primary','comment','getDeserializedSheetBlock','drawingIds','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','intercept','univer-pro.collaboration.transform-service','shift','univer.mutation.revert-version','workbook','Trying\x20to\x20mutate\x20a\x20deleted\x20worksheet!','removeColumns','selections','startRow','getData','interceptor','reduce','USERS_LEAVE','actions','should_close_conn','concat','subUnitId','set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule','LICENSE_EXPORT_SIZE_EXCEEDED','MUTATION','handler','min','targetRange','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','0123456789','liveshare.operation','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20auto\x20height','_config','setRevOfUnit','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20range','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','find','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','UNIVER_DOC','edit\x20range\x20of\x20same\x20data-validation\x20rule\x20is\x20not\x20allowed','liveshare.terminate','after','number','move\x20col\x20is\x20conflict\x20with\x20move\x20col','actualColumn','entries','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection','SNAPSHOT_INVALID_SNAPSHOT','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','LIVESHARE_FETCH_OPERATIONS','remove\x20col\x20is\x20conflict\x20with\x20move\x20col','APPLY_NON_SEQUENTIAL_REVISION','LICENSE_DISTRO_REJECTED','forEach','loadDoc','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','[TransformService]\x20Transform\x20algorithm\x20for\x20','changeset_rej','_transformService','PERMISSION_DENIED','fetchThroughInterceptors','UNRECOGNIZED','add\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule','SETTING','LIVESHARE_OPERATION','ENSURE_SNAPSHOT_EXECUTION','block','univer.snapshot-server-service','Two\x20set-tab-color\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','getOwnPropertyDescriptor','insert\x20col\x20is\x20conflict\x20with\x20move\x20col','insert\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','column','unitId','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20filter','REFERENCE','update_cursor','COMPLETION_FINISHED','criteria','some','transformWorkbookDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20','move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20visible','col','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','5017480YXWEZs','UNIVER_COLLABORATION_PLUGIN','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20frozen','_leftInclineTransformMutations','new_changesets','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20value','3371288TymIyA','intersects','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20conditional\x20rule','changeset_ack','remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation','changeset_should_retry','sheet','blockID','includes','IHistoryIoService','univer.mutation.create-unit','object','_compressMutationService','APPLY_DUPLICATED','toLowerCase','_transformMap','CHANGESET_SHOULD_RETRY','fromOrder','rowData','sort','save','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','add\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20row','unit_delete','push','[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.','index','move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt','UNIVER_PROJECT','MSG_FOR_ERROR','message','NOT_FOUND','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','params','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge','saveDoc','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20col','set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20comment','36gvafCH','move\x20range\x20is\x20conflict\x20with\x20reorder\x20range','payload','APPLY_REVISION_CONFILICT','mutations','uid','LIVESHARE_NEW_HOST','pluginName','move\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','decode','getSheetId','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20row','getSlice','setValue','getLength','liveshare.request_host','range','max','data','ranges','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','Algorithm\x20error,\x20the\x20changeset\x20does\x20not\x20exist!','indexOf','comment_update','[SnapshotService]:\x20wrong\x20rev\x20from\x20the\x20server!','removeRows','rev','saveSheetBlock','moveColumns','Two\x20set-frozen\x20mutations\x20have\x20the\x20same\x20unitId\x20and\x20subUnitId.','remove\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt','SHOULD_CLOSE_CONN','CONNECTOR_DATA_TOO_LARGE','insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20hidden','remove\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt','textRanges','step','ruleId','set\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','setConfig','\x20and\x20the\x20\x27revision\x27\x20of\x20c1\x20is\x20','forValue','Two\x20set-worksheet-name\x20mutations\x20have\x20conflict.','transformMutationsWithChangeset','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','ERROR','_rightInclineTransformMutations','remove\x20col\x20is\x20conflict\x20with\x20set\x20numfmt','Algorithm\x20error,\x20m1Prime\x20should\x20not\x20be\x20undefined.','styleRefMap','dispose','UNIVER_SHEET','baseRev','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','columnCount','transformPosition','_init','insert\x20row\x20is\x20conflict\x20with\x20remove\x20row','isMergedMainCell','syncExecuteCommand','parentId','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20name','GRID','registerCommand','\x20already\x20exists.','get','getUnitId','sheetOrder','move\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','resources','getUnit','transform','COMPRESS_MUTATION_SEND','Two\x20move-range\x20mutations\x20have\x20an\x20overlapping\x20range.','has','m1Prime','219774ODxiIU','bind','formula1','getUnitOnRev','INVALID_ARGUMENT','m2Prime','blocks','move\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','Remove-cols\x20has\x20conflicts\x20with\x20move-range','saveSnapshot','endColumn','insert\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20height','INTERNAL_ERROR','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20col','slice','RevertRevisionMutation\x20conflicts\x20with\x20other\x20mutations!','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20row','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','move\x20row\x20is\x20conflict\x20with\x20move\x20range','LIVESHARE_REQUEST_HOST','drawingId','[SnapshotService]:\x20request\x20snapshot\x20error!','LICENSE_MAX_UNITS_EXCEEDED','1475592XmYEDJ','UNIVER_SLIDE','setRev','registerTransformAlgorithm','_snapshotServerService','splice','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','Block\x20not\x20found','getSnapshot','set','title','set\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col','random','collaboration.config','parse','update_permission_obj','encode','YUUMI_RATE_OVER_LIMIT','revision','getCurrentRevOfUnit','defineProperty','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20col','set\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20data\x20validation\x20rule','UNAUTHENTICATED','set\x20range\x20protection\x20is\x20conflict\x20with\x20move\x20range','reorder\x20range\x20is\x20conflict\x20with\x20reorder\x20range','toString','liveshare.new_host','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20insert\x20row','insert\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20worksheet\x20merge','UNIVER_UNKNOWN','Move\x20conditional\x20formatting\x20rule\x20\x20is\x20conflict\x20with\x20self','map','ref','code','RANGE','PSEUDO_FETCH_MISSING_RESULT','add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment','1765474YdbADz','getRev','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitId:\x20','UNIT_DELETE','add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20range\x20protection','cfId','symbol','any','clear','right','row','SNAPSHOT_HAS_BEEN_REMOVED','start','columnData','add','color','add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt','Two\x20SetWorksheetOrderMutation\x20have\x20conflicts!','insert\x20row\x20is\x20conflict\x20with\x20set\x20numfmt','transformMutation','filter','move\x20row\x20is\x20conflict\x20with\x20set\x20row\x20hidden','moveRows','hasOwnProperty','keys','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20conditional\x20formatting\x20rule','merge','users_enter','add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20row','sourceRange','value','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20range\x20protection','add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width','commentId','submit_changeset','createUnit','CHANGESET_ACK','APPLY_PERMISSION_DENIED','colId','getDataRange','SUBMIT_CHANGESET','users_leave','left','name','_univerInstanceService','from','fromCharCode','cellValue','YUUMI_SUBSCRIPTION_NOT_FOUND','rowCount','477939SKEaor','[RevisionService]:\x20cannot\x20find\x20document\x20with\x20unitID:\x20','COMPRESS_MUTATION_APPLY','incrementRevOfUnit','subtract','add\x20range\x20protection\x20is\x20conflict\x20with\x20set\x20numfmt','YUUMI_UNABLE_LOAD_URL','ALREADY_EXISTS','USERS_ENTER'];_0x1fed=function(){return _0x2207ba;};return _0x1fed();}class Tr extends _0x441d81{constructor(){const _0x2235c0=_0x54481f;super(...arguments),se(this,_0x2235c0(0x17e),new Map());}[_0x54481f(0x1c8)](){const _0x3bcdfc=_0x54481f;this['_transformMap'][_0x3bcdfc(0x22b)]();}[_0x54481f(0x1fe)](_0x4a4210){const _0xa1568f=_0x54481f,{m1:_0x499d87,m2:_0x679275=_0xa1568f(0x22a)}=_0x4a4210;this[_0xa1568f(0x17e)][_0xa1568f(0x1e1)](_0x499d87)||this['_transformMap'][_0xa1568f(0x204)](_0x499d87,new Map());const _0x621782=this[_0xa1568f(0x17e)][_0xa1568f(0x1d8)](_0x499d87);if(_0x621782[_0xa1568f(0x1e1)](_0x679275))throw new Error(_0xa1568f(0x14a)+_0x499d87+'\x20and\x20'+_0x679275+_0xa1568f(0x1d7));_0x621782[_0xa1568f(0x204)](_0x679275,_0x4a4210);}[_0x54481f(0x93)](_0x108e18,_0x2609c8,_0xdb1306){const _0x434024=_0x54481f;var _0x338196,_0x7fc665,_0xa145b1,_0x226982,_0x5e3273,_0x312b48;const _0x525ec8=this[_0x434024(0x17e)],_0x3ccd9b=((_0x338196=_0x525ec8['get'](_0x108e18['id']))==null?void 0x0:_0x338196[_0x434024(0x1d8)](_0x2609c8['id']))||((_0x7fc665=_0x525ec8[_0x434024(0x1d8)](_0x108e18['id']))==null?void 0x0:_0x7fc665[_0x434024(0x1d8)](_0x434024(0x22a)))||((_0xa145b1=_0x525ec8[_0x434024(0x1d8)](_0x434024(0x22a)))==null?void 0x0:_0xa145b1[_0x434024(0x1d8)](_0x2609c8['id']));if(_0x3ccd9b)return _0xdb1306?_0x3ccd9b['handler'](_0x108e18,_0x2609c8,_0xdb1306):_0x3ccd9b[_0x434024(0x12a)](_0x108e18,_0x2609c8);const _0x1857ae=((_0x226982=_0x525ec8['get'](_0x2609c8['id']))==null?void 0x0:_0x226982[_0x434024(0x1d8)](_0x108e18['id']))||((_0x5e3273=_0x525ec8[_0x434024(0x1d8)](_0x2609c8['id']))==null?void 0x0:_0x5e3273['get'](_0x434024(0x22a)))||((_0x312b48=_0x525ec8[_0x434024(0x1d8)](_0x434024(0x22a)))==null?void 0x0:_0x312b48[_0x434024(0x1d8)](_0x108e18['id']));if(_0x1857ae){const _0x746787=_0xdb1306?_0x1857ae[_0x434024(0x12a)](_0x2609c8,_0x108e18,_0xdb1306):_0x1857ae[_0x434024(0x12a)](_0x2609c8,_0x108e18);return at(_0x746787)?_0xdb1306?{'m2Prime':_0x746787[_0x434024(0x1e2)]}:{'m2Prime':_0x746787['m1Prime'],'m1Prime':_0x746787['m2Prime']}:_0x746787;}return{'m1Prime':_0x108e18,'m2Prime':_0x2609c8};}[_0x54481f(0xd0)](_0x250910,_0x29c787,_0x2f2921){const _0x34e1bb=_0x54481f,_0x35ec43=this[_0x34e1bb(0x1c4)](_0x250910,_0x29c787);if(De(_0x35ec43))return _0x35ec43;if(_0x2f2921)return{'m2Prime':_0x35ec43};const _0x1f46ef=this[_0x34e1bb(0x16a)](_0x250910,_0x29c787);return De(_0x1f46ef)?_0x1f46ef:{'m1Prime':_0x1f46ef,'m2Prime':_0x35ec43};}[_0x54481f(0x1c4)](_0x2c6201,_0x2c2f43){const _0x37fb3f=_0x54481f,_0x121444=_0x2c6201['length'];let _0x457430;for(_0x457430=0x0;_0x457430<_0x121444;_0x457430++){let _0x1f2cac=[_0x2c6201[_0x457430]],_0x1b95e3=[];for(let _0x4fd406=0x0,_0x4a0b72=_0x2c2f43['length'];_0x4fd406<_0x4a0b72;_0x4fd406++){const _0x8c2d58=_0x2c2f43[_0x4fd406];let _0x291a3e;if(_0x1f2cac[_0x37fb3f(0xbd)]===0x0)_0x291a3e=[_0x8c2d58],_0x1f2cac=[];else{if(_0x1f2cac[_0x37fb3f(0xbd)]===0x1){const _0x39170e=this[_0x37fb3f(0x93)](_0x1f2cac[0x0],_0x8c2d58);if(le(_0x39170e))return _0x39170e;if(_0x291a3e=Lt(_0x39170e['m2Prime']),!_0x39170e[_0x37fb3f(0x1e2)])throw new Error(_0x37fb3f(0x1c6));_0x1f2cac=Lt(_0x39170e['m1Prime']);}else{const _0x395e34=this[_0x37fb3f(0x1c4)](_0x1f2cac,[_0x8c2d58]);if(_0x395e34[_0x37fb3f(0xc8)])return _0x395e34;if(_0x291a3e=_0x395e34,_0x4fd406<_0x4a0b72-0x1){const _0xadd0fc=this[_0x37fb3f(0x16a)](_0x1f2cac,[_0x8c2d58]);if(_0xadd0fc['error'])return _0xadd0fc;_0x1f2cac=_0xadd0fc;}}}_0x1b95e3=_0x1b95e3[_0x37fb3f(0x125)](_0x291a3e);}_0x2c2f43=_0x1b95e3;}return _0x2c2f43;}[_0x54481f(0x16a)](_0x310111,_0x2424ae){const _0x3a3f6b=_0x54481f,_0xe55d85=_0x2424ae[_0x3a3f6b(0xbd)];let _0x56553b;for(_0x56553b=0x0;_0x56553b<_0xe55d85;_0x56553b++){let _0x1ff699=[_0x2424ae[_0x56553b]],_0x8fdf6e=[];for(let _0xfa3fd8=0x0,_0x594a09=_0x310111[_0x3a3f6b(0xbd)];_0xfa3fd8<_0x594a09;_0xfa3fd8++){const _0x2d90a1=_0x310111[_0xfa3fd8];let _0x237f91;if(_0x1ff699['length']===0x0)_0x237f91=[_0x2d90a1],_0x1ff699=[];else{if(_0x1ff699[_0x3a3f6b(0xbd)]===0x1){const _0x538c25=this[_0x3a3f6b(0x93)](_0x2d90a1,_0x1ff699[0x0]);if(le(_0x538c25))return _0x538c25;if(!_0x538c25[_0x3a3f6b(0x1e2)])throw new Error(_0x3a3f6b(0x1c6));_0x237f91=Lt(_0x538c25[_0x3a3f6b(0x1e2)]),_0x1ff699=Lt(_0x538c25[_0x3a3f6b(0x1e8)]);}else{const _0x2a759e=this[_0x3a3f6b(0x16a)]([_0x2d90a1],_0x1ff699);if(_0x2a759e[_0x3a3f6b(0xc8)])return _0x2a759e;if(_0x237f91=_0x2a759e,_0xfa3fd8<_0x594a09-0x1){const _0x496934=this['_rightInclineTransformMutations']([_0x2d90a1],_0x1ff699);if(_0x496934[_0x3a3f6b(0xc8)])return _0x496934;_0x1ff699=_0x496934;}}}_0x8fdf6e=_0x8fdf6e[_0x3a3f6b(0x125)](_0x237f91);}_0x310111=_0x8fdf6e;}return _0x310111;}['transformChangesets'](_0x26eaf5,_0x1b7241,_0x58ed84){const _0x59f254=_0x54481f;if(!Lr(_0x26eaf5,_0x1b7241))throw new Error('[TransformService]:\x20changesets\x20revisions\x20miss\x20match.\x20The\x20\x27baseRev\x27\x20of\x20c2\x20is\x20'+_0x1b7241[0x0]['baseRev']+_0x59f254(0x1be)+_0x26eaf5[0x0][_0x59f254(0x20d)]+'.');const _0x3b193c=_0x26eaf5[_0x59f254(0xbd)],_0x4c7623=_0x1b7241['length'],_0x181ec3=Ae(_0x3b193c,_0x4c7623+0x1),_0x55ee0e=Ae(_0x3b193c+0x1,_0x4c7623);_0x26eaf5[_0x59f254(0x147)]((_0x17d052,_0x19fefb)=>_0x181ec3[_0x19fefb][0x0]=_0x17d052),_0x1b7241[_0x59f254(0x147)]((_0x2814c8,_0x52b1df)=>_0x55ee0e[0x0][_0x52b1df]=_0x2814c8);try{for(let _0x3ba4cb=0x0;_0x3ba4cb<_0x4c7623;_0x3ba4cb++)for(let _0x21c5e8=0x0;_0x21c5e8<_0x3b193c;_0x21c5e8++){const _0x2befb2=_0x55ee0e[_0x21c5e8][_0x3ba4cb],_0x11dc90=_0x181ec3[_0x21c5e8][_0x3ba4cb];if(!_0x2befb2||!_0x11dc90)throw new Error(_0x59f254(0x1ab));const _0x10f6ba=this[_0x59f254(0xd0)](_0x11dc90['mutations'],_0x2befb2[_0x59f254(0x19a)]);if(ce(_0x10f6ba))return{'error':_0x10f6ba['error']};_0x55ee0e[_0x21c5e8+0x1][_0x3ba4cb]={..._0x2befb2,'mutations':_0x10f6ba[_0x59f254(0x1e8)]},_0x181ec3[_0x21c5e8][_0x3ba4cb+0x1]={..._0x11dc90,'mutations':_0x10f6ba[_0x59f254(0x1e2)]};}return _0x58ed84?{'c2Prime':_0x55ee0e[_0x3b193c]}:{'c1Prime':_0x181ec3['map'](_0x5eeb25=>_0x5eeb25[_0x4c7623])[_0x59f254(0xe4)](),'c2Prime':_0x55ee0e[_0x3b193c]};}catch(_0x94b55a){throw console['error'](_0x94b55a),_0x94b55a;}}[_0x54481f(0x1c1)](_0x48d6a7,_0x7c7cfe){const _0x5ba581=_0x54481f,_0x4bb777=_0x48d6a7['mutations'],_0x298237=this['transformMutations'](_0x4bb777,_0x7c7cfe);return ce(_0x298237)?{'error':_0x298237['error']}:{'m2Prime':_0x298237[_0x5ba581(0x1e8)],'c1Prime':{..._0x48d6a7,'mutations':_0x298237[_0x5ba581(0x1e2)]}};}}function Lr(_0x3f0e67,_0x7f67a3){const _0x39f543=_0x54481f;return _0x3f0e67[0x0][_0x39f543(0x20d)]-0x1===_0x7f67a3[0x0][_0x39f543(0x1ca)];}function Ae(_0x26f397,_0x2b57cd){return new Array(_0x26f397)['fill'](void 0x0)['map'](()=>new Array(_0x2b57cd));}function Lt(_0x2e7246){return Array['isArray'](_0x2e7246)?_0x2e7246:[_0x2e7246];}const kr={'m1':_0x41a8ef['id'],'m2':_0x41a8ef['id'],'handler':(_0x2673f0,_0x4d9f94)=>{const _0x3ebe38=_0x54481f,_0x593451=_0x2673f0[_0x3ebe38(0x191)],_0x1501cf=_0x4d9f94[_0x3ebe38(0x191)],_0x50d9e4={'m1Prime':_0x2673f0,'m2Prime':_0x4d9f94};if(_0x593451['unitId']!==_0x1501cf['unitId']||_0x593451['subUnitId']!==_0x1501cf[_0x3ebe38(0x126)]||_0x593451['comment']['ref']!==_0x1501cf[_0x3ebe38(0x111)][_0x3ebe38(0x21e)])return _0x50d9e4;if(!_0x593451[_0x3ebe38(0x111)]['parentId']&&!_0x1501cf[_0x3ebe38(0x111)][_0x3ebe38(0x1d3)]){const _0x11943b=_0x12a789[_0x3ebe38(0xec)](_0x4d9f94);return _0x11943b[_0x3ebe38(0x191)][_0x3ebe38(0x111)]['parentId']=_0x2673f0[_0x3ebe38(0x191)]['comment']['id'],{'m1Prime':[{'id':_0x47d358['id'],'params':{'unitId':_0x593451[_0x3ebe38(0x15b)],'subUnitId':_0x1501cf[_0x3ebe38(0x126)],'commentId':_0x1501cf[_0x3ebe38(0x111)]['id']}},_0x2673f0,_0x11943b],'m2Prime':[_0x11943b]};}return _0x50d9e4;}},xr={'m1':_0x1c40ba['id'],'m2':_0x1c40ba['id'],'handler'(_0x57d992,_0x32e4df){const _0x28c9a8=_0x54481f;if(_0x57d992[_0x28c9a8(0x191)]['unitId']!==_0x32e4df[_0x28c9a8(0x191)][_0x28c9a8(0x15b)]||_0x57d992[_0x28c9a8(0x191)][_0x28c9a8(0x126)]!==_0x32e4df[_0x28c9a8(0x191)]['subUnitId'])return{'m1Prime':_0x57d992,'m2Prime':_0x32e4df};const {unitId:_0x22f639,subUnitId:_0x1c6bd7}=_0x57d992[_0x28c9a8(0x191)],_0x52acfe=_0x12a789[_0x28c9a8(0xec)](_0x57d992),_0xc07c4e=_0x12a789['deepClone'](_0x32e4df),_0x3b9da8=[_0x52acfe],_0x4a364f={'unitId':_0x22f639,'subUnitId':_0x1c6bd7,'start':{'id':_0xc07c4e[_0x28c9a8(0x191)][_0x28c9a8(0xe7)][_0x28c9a8(0x228)],'type':_0x28c9a8(0x108)},'end':{'id':_0xc07c4e[_0x28c9a8(0x191)]['rule'][_0x28c9a8(0x228)],'type':_0x28c9a8(0x13b)}};return _0x3b9da8[_0x28c9a8(0x187)]({'id':_0x5f15c4['id'],'params':_0x4a364f}),{'m1Prime':_0x3b9da8,'m2Prime':_0xc07c4e};}};function oe(_0x55b776,_0x232e70,_0x4138aa,_0x12fa49){const _0x33f47b=_0x54481f,_0x5d3858=new _0x3597fb();_0x4138aa[_0x33f47b(0x147)](_0x48b157=>{const _0x3f8864=_0x33f47b;_0x48b157[_0x3f8864(0x1a9)][_0x3f8864(0x147)](_0x30ef12=>{const _0x4ddaae=_0x3f8864;_0x541337[_0x4ddaae(0xe5)](_0x30ef12,(_0xa38a63,_0x202d7e)=>{const _0x8a19c5=_0x4ddaae;_0x5d3858[_0x8a19c5(0x1a3)](_0xa38a63,_0x202d7e,_0x48b157[_0x8a19c5(0x19b)]);});});}),_0x12fa49['forEach'](_0x4026dd=>{const _0x4ae5cf=_0x33f47b;_0x4026dd['ranges'][_0x4ae5cf(0x147)](_0xd2cd77=>{const _0x285afd=_0x4ae5cf;_0x541337[_0x285afd(0xe5)](_0xd2cd77,(_0x44f470,_0x1b65a3)=>{const _0x3c573d=_0x285afd;_0x5d3858[_0x3c573d(0x1a3)](_0x44f470,_0x1b65a3,_0x4026dd['uid']);});});});const _0x3e5e03=[];return _0x4138aa[_0x33f47b(0x147)](_0x3881ad=>{const _0x1cedb9=_0x33f47b,_0x581b16=_0x1be7bf(_0x5d3858,_0x436119=>_0x436119===_0x3881ad[_0x1cedb9(0x19b)]);if(_0x581b16[_0x1cedb9(0xbd)]){if(!_0x86e48(_0x581b16,_0x3881ad[_0x1cedb9(0x1a9)])){const _0x5ca141={'ruleId':_0x3881ad[_0x1cedb9(0x19b)],'unitId':_0x55b776,'subUnitId':_0x232e70,'payload':{'type':_0x4fe948[_0x1cedb9(0x220)],'payload':_0x581b16}};_0x3e5e03[_0x1cedb9(0x187)]({'id':_0x5ad83d['id'],'params':_0x5ca141});}}else{const _0x2b9d6a={'ruleId':_0x3881ad[_0x1cedb9(0x19b)],'unitId':_0x55b776,'subUnitId':_0x232e70};_0x3e5e03[_0x1cedb9(0x187)]({'id':_0x42cad4['id'],'params':_0x2b9d6a});}}),_0x3e5e03;}function kt(_0x1ac6a3,_0x3294d8){const _0x31cb87=_0x54481f,_0x52e71e=_0x12a789[_0x31cb87(0xec)](Array[_0x31cb87(0xf8)](_0x1ac6a3[_0x31cb87(0x191)][_0x31cb87(0xe7)])?_0x1ac6a3[_0x31cb87(0x191)][_0x31cb87(0xe7)]:[_0x1ac6a3[_0x31cb87(0x191)][_0x31cb87(0xe7)]]);return _0x3294d8[_0x31cb87(0x147)](_0x1363e3=>{const _0x29f8d0=_0x31cb87;if(_0x1363e3['id']===_0x5ad83d['id']){const _0x504e8f=_0x1363e3,_0x26e0f9=_0x52e71e[_0x29f8d0(0x135)](_0x268209=>_0x268209['uid']===_0x504e8f[_0x29f8d0(0x191)][_0x29f8d0(0x1bb)]);_0x26e0f9[_0x29f8d0(0x1a9)]=_0x504e8f[_0x29f8d0(0x191)]['payload']['payload'];}else{if(_0x1363e3['id']===_0x42cad4['id']){const _0x51aa78=_0x52e71e['findIndex'](_0x46d7c6=>_0x46d7c6[_0x29f8d0(0x19b)]===_0x1363e3[_0x29f8d0(0x191)][_0x29f8d0(0x1bb)]);_0x52e71e[_0x51aa78]=null;}}}),_0x52e71e['filter'](Boolean)[_0x31cb87(0xbd)]?[{..._0x1ac6a3,'params':{..._0x1ac6a3[_0x31cb87(0x191)],'rule':_0x52e71e[_0x31cb87(0x94)](Boolean)}}]:[];}const Hr={'m1':_0x3273be['id'],'m2':_0x3273be['id'],'handler':(_0x5aa55f,_0x2fdf7d)=>{const _0x577e5e=_0x54481f,_0x2e12a8={'m1Prime':_0x5aa55f,'m2Prime':_0x2fdf7d},_0x9fcc34=_0x5aa55f[_0x577e5e(0x191)],_0x5e277b=_0x2fdf7d[_0x577e5e(0x191)];if(_0x9fcc34[_0x577e5e(0x15b)]!==_0x5e277b[_0x577e5e(0x15b)]||_0x9fcc34[_0x577e5e(0x126)]!==_0x5e277b[_0x577e5e(0x126)])return _0x2e12a8;const _0x4daf00=_0x12a789[_0x577e5e(0xec)](_0x5aa55f),_0x26e0df=_0x12a789['deepClone'](_0x2fdf7d),_0x3ee052=_0x9fcc34['unitId'],_0x3107c4=_0x5e277b['subUnitId'],_0x1a5f53=_0x4daf00[_0x577e5e(0x191)][_0x577e5e(0xe7)],_0x2179e9=_0x26e0df[_0x577e5e(0x191)]['rule'];if(Array[_0x577e5e(0xf8)](_0x1a5f53)&&Array['isArray'](_0x2179e9))return{'m1Prime':[],'m2Prime':[]};if(Array['isArray'](_0x1a5f53)){_0x4daf00['params'][_0x577e5e(0x189)]=0x0;const _0xaf253a=oe(_0x3ee052,_0x3107c4,_0x1a5f53,[_0x2179e9]);return{'m1Prime':kt(_0x4daf00,_0xaf253a),'m2Prime':[..._0xaf253a,_0x26e0df]};}if(Array[_0x577e5e(0xf8)](_0x2179e9)){const _0x2e3b10=oe(_0x3ee052,_0x3107c4,_0x2179e9,[_0x1a5f53]);return _0x26e0df[_0x577e5e(0x191)][_0x577e5e(0x189)]=0x0,{'m1Prime':kt(_0x4daf00,_0x2e3b10),'m2Prime':[..._0x2e3b10,_0x26e0df]};}const _0x5c616a=oe(_0x3ee052,_0x3107c4,[_0x1a5f53],[_0x2179e9]);return _0x26e0df[_0x577e5e(0x191)][_0x577e5e(0x189)]=-0x1,{'m1Prime':kt(_0x4daf00,_0x5c616a),'m2Prime':[..._0x5c616a,_0x26e0df]};}},Fr={'m1':_0x3273be['id'],'m2':_0x5ad83d['id'],'handler':(_0x176306,_0x2c793c)=>{const _0x2bb5c9=_0x54481f,_0x6114ef={'m1Prime':_0x176306,'m2Prime':_0x2c793c},_0x2a2630=_0x176306[_0x2bb5c9(0x191)],_0x5bc552=_0x2c793c[_0x2bb5c9(0x191)];if(_0x2a2630[_0x2bb5c9(0x15b)]!==_0x5bc552[_0x2bb5c9(0x15b)]||_0x2a2630[_0x2bb5c9(0x126)]!==_0x5bc552[_0x2bb5c9(0x126)])return _0x6114ef;if(_0x2c793c[_0x2bb5c9(0x191)][_0x2bb5c9(0x198)]['type']===_0x4fe948['RANGE']){const {unitId:_0x5c4977,subUnitId:_0x48210c}=_0x176306[_0x2bb5c9(0x191)],_0x481a4a=Array[_0x2bb5c9(0xf8)](_0x176306[_0x2bb5c9(0x191)][_0x2bb5c9(0xe7)])?_0x176306[_0x2bb5c9(0x191)][_0x2bb5c9(0xe7)]:[_0x176306['params']['rule']],_0x4be181=[],_0x82621e=new _0x3597fb();return _0x481a4a[_0x2bb5c9(0x147)](_0x38232d=>{const _0x286985=_0x2bb5c9;_0x38232d['ranges'][_0x286985(0x147)](_0x589fce=>{_0x541337['foreach'](_0x589fce,(_0x200ff4,_0x551d32)=>{const _0x52c091=_0x5b5c;_0x82621e['setValue'](_0x200ff4,_0x551d32,_0x38232d[_0x52c091(0x19b)]);});});}),_0x2c793c[_0x2bb5c9(0x191)][_0x2bb5c9(0x198)]['payload'][_0x2bb5c9(0x147)](_0x24c6be=>{const _0x23c397=_0x2bb5c9;_0x541337[_0x23c397(0xe5)](_0x24c6be,(_0x6e412d,_0x30ea95)=>{const _0x453dbd=_0x23c397;_0x82621e['setValue'](_0x6e412d,_0x30ea95,_0x2c793c[_0x453dbd(0x191)][_0x453dbd(0x1bb)]);});}),_0x481a4a[_0x2bb5c9(0x147)](_0x5dbb6c=>{const _0x7c0f5=_0x2bb5c9,_0x27e072=_0x1be7bf(_0x82621e,_0x3d7efa=>_0x3d7efa===_0x5dbb6c[_0x7c0f5(0x19b)]);_0x86e48(_0x27e072,_0x5dbb6c[_0x7c0f5(0x1a9)])||(_0x27e072[_0x7c0f5(0xbd)]?_0x4be181[_0x7c0f5(0x187)]({'id':_0x5ad83d['id'],'params':{'unitId':_0x5c4977,'subUnitId':_0x48210c,'ruleId':_0x5dbb6c[_0x7c0f5(0x19b)],'payload':{'type':_0x4fe948[_0x7c0f5(0x220)],'payload':_0x27e072}}}):_0x4be181[_0x7c0f5(0x187)]({'id':_0x42cad4['id'],'params':{'unitId':_0x5c4977,'subUnitId':_0x48210c,'ruleId':_0x5dbb6c['uid']}}));}),{'m1Prime':kt(_0x176306,_0x4be181),'m2Prime':[..._0x4be181,_0x2c793c]};}return _0x6114ef;}},Br={'m1':_0x58a46b['id'],'m2':_0x58a46b['id'],'handler':(_0x36ee57,_0x1c5dda)=>{const _0x562bec=_0x54481f,_0x5c76af=_0x36ee57[_0x562bec(0x191)],_0x49609d=_0x1c5dda[_0x562bec(0x191)];return _0x5c76af[_0x562bec(0x15b)]===_0x49609d['unitId']&&_0x5c76af[_0x562bec(0x126)]===_0x49609d[_0x562bec(0x126)]&&_0x5c76af[_0x562bec(0xe9)]['row']===_0x49609d['link']['row']&&_0x5c76af[_0x562bec(0xe9)][_0x562bec(0x15a)]===_0x49609d[_0x562bec(0xe9)][_0x562bec(0x15a)]?{'m2Prime':_0x1c5dda,'m1Prime':[]}:{'m1Prime':_0x36ee57,'m2Prime':_0x1c5dda};}},Gr={'m1':_0x3b4149['id'],'m2':_0x41a8ef['id'],'handler':(_0x599ae8,_0x1da257)=>{const _0x4e835e=_0x54481f,_0x503e0d={'m1Prime':_0x599ae8,'m2Prime':_0x1da257};return _0x599ae8['params']['unitId']!==_0x1da257[_0x4e835e(0x191)][_0x4e835e(0x15b)]||_0x599ae8[_0x4e835e(0x191)]['subUnitId']!==_0x1da257[_0x4e835e(0x191)][_0x4e835e(0x126)]?_0x503e0d:{'error':new Error(_0x4e835e(0x166))};}},jr={'m1':_0x3b4149['id'],'m2':_0x1c40ba['id'],'handler':(_0x4fedb5,_0x40e22e)=>{const _0x51b428=_0x54481f,_0x5af602={'m1Prime':_0x4fedb5,'m2Prime':_0x40e22e};if(_0x4fedb5['params'][_0x51b428(0x15b)]!==_0x40e22e['params'][_0x51b428(0x15b)]||_0x4fedb5[_0x51b428(0x191)][_0x51b428(0x126)]!==_0x40e22e['params']['subUnitId'])return _0x5af602;const _0x3d3e8f=_0x4fedb5[_0x51b428(0x191)][_0x51b428(0xe8)]['map'](_0x21245f=>_0x21245f[_0x51b428(0x1a9)])[_0x51b428(0xe4)](),_0x5bf1f2=_0x40e22e[_0x51b428(0x191)][_0x51b428(0xe7)][_0x51b428(0x1a9)];return _0x3d3e8f[_0x51b428(0x161)](_0x2581ed=>_0x5bf1f2['some'](_0x458928=>_0x12b536[_0x51b428(0x16e)](_0x2581ed,_0x458928)))?{'error':new Error(_0x51b428(0x134))}:_0x5af602;}},$r={'m1':_0x3b4149['id'],'m2':_0x3b4149['id'],'handler':(_0x1931bf,_0x16419d)=>{const _0x4e58e9=_0x54481f,_0x47c4df={'m1Prime':_0x1931bf,'m2Prime':_0x16419d};if(_0x1931bf[_0x4e58e9(0x191)][_0x4e58e9(0x15b)]!==_0x16419d[_0x4e58e9(0x191)][_0x4e58e9(0x15b)]||_0x1931bf[_0x4e58e9(0x191)][_0x4e58e9(0x126)]!==_0x16419d[_0x4e58e9(0x191)][_0x4e58e9(0x126)])return _0x47c4df;const _0x5755c2=_0x1931bf[_0x4e58e9(0x191)][_0x4e58e9(0xe8)][_0x4e58e9(0x21d)](_0x4d7a53=>_0x4d7a53['ranges'])[_0x4e58e9(0xe4)](),_0xbe7aeb=_0x16419d[_0x4e58e9(0x191)]['rules'][_0x4e58e9(0x21d)](_0x1dd396=>_0x1dd396[_0x4e58e9(0x1a9)])['flat']();return _0x5755c2[_0x4e58e9(0x161)](_0x537ae0=>_0xbe7aeb[_0x4e58e9(0x161)](_0x23ebed=>_0x12b536[_0x4e58e9(0x16e)](_0x537ae0,_0x23ebed)))?{'error':new Error(_0x4e58e9(0x227))}:_0x47c4df;}},Yr={'m1':_0x3b4149['id'],'m2':_0x5504b0['id'],'handler':(_0x44645d,_0x316692)=>{const _0x2319ed=_0x54481f,_0x2e775c={'m1Prime':_0x44645d,'m2Prime':_0x316692};if(_0x44645d[_0x2319ed(0x191)][_0x2319ed(0x15b)]!==_0x316692['params'][_0x2319ed(0x15b)]||_0x44645d[_0x2319ed(0x191)][_0x2319ed(0x126)]!==_0x316692['params'][_0x2319ed(0x126)])return _0x2e775c;const _0x333d34=_0x44645d[_0x2319ed(0x191)][_0x2319ed(0xe8)][_0x2319ed(0x21d)](_0x191b8e=>_0x191b8e[_0x2319ed(0x1a9)])[_0x2319ed(0xe4)](),_0x45fc29=_0x316692[_0x2319ed(0x191)][_0x2319ed(0x1a9)];return _0x333d34[_0x2319ed(0x161)](_0x3545a8=>_0x45fc29[_0x2319ed(0x161)](_0x2f6bbc=>_0x12b536[_0x2319ed(0x16e)](_0x3545a8,_0x2f6bbc)))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20merge')}:_0x2e775c;}},Jr={'m1':_0x3b4149['id'],'m2':_0xfb6287['id'],'handler':(_0x45137a,_0x47442d)=>{const _0x241da0=_0x54481f,_0x10ba4e={'m1Prime':_0x45137a,'m2Prime':_0x47442d};return _0x45137a[_0x241da0(0x191)][_0x241da0(0x15b)]!==_0x47442d[_0x241da0(0x191)][_0x241da0(0x15b)]||_0x45137a['params']['subUnitId']!==_0x47442d[_0x241da0(0x191)][_0x241da0(0xe7)][_0x241da0(0x126)]?_0x10ba4e:{'error':new Error(_0x241da0(0xf7))};}},Xr={'m1':_0x3b4149['id'],'m2':_0x2d6c0f['id'],'handler':(_0xb558c9,_0x39beb0)=>{const _0x44fab5=_0x54481f,_0x1ad630={'m1Prime':_0xb558c9,'m2Prime':_0x39beb0};return _0xb558c9['params'][_0x44fab5(0x15b)]!==_0x39beb0[_0x44fab5(0x191)][_0x44fab5(0x15b)]||_0xb558c9[_0x44fab5(0x191)][_0x44fab5(0x126)]!==_0x39beb0[_0x44fab5(0x191)][_0x44fab5(0x126)]?_0x1ad630:{'error':new Error(_0x44fab5(0x150))};}},Kr={'m1':_0x3b4149['id'],'m2':_0x3732ba['id'],'handler':(_0x1fed00,_0x404fbc)=>{const _0x25c84f=_0x54481f,_0x193dc8={'m1Prime':_0x1fed00,'m2Prime':_0x404fbc};if(_0x1fed00[_0x25c84f(0x191)]['unitId']!==_0x404fbc[_0x25c84f(0x191)]['unitId']||_0x1fed00[_0x25c84f(0x191)]['subUnitId']!==_0x404fbc['params'][_0x25c84f(0x126)])return _0x193dc8;const _0x3ef058=_0x1fed00[_0x25c84f(0x191)]['rules'][_0x25c84f(0x21d)](_0x430573=>_0x430573[_0x25c84f(0x1a9)])[_0x25c84f(0xe4)](),_0x1b35fe=_0x404fbc['params'][_0x25c84f(0x1a6)];return _0x3ef058[_0x25c84f(0x161)](_0x57fede=>_0x12b536[_0x25c84f(0x16e)](_0x57fede,_0x1b35fe))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20insert\x20col')}:_0x193dc8;}},zr={'m1':_0x3b4149['id'],'m2':_0xa7a746['id'],'handler':(_0x50dfa5,_0x3e4427)=>{const _0x5dda32=_0x54481f,_0x33071d={'m1Prime':_0x50dfa5,'m2Prime':_0x3e4427};if(_0x50dfa5[_0x5dda32(0x191)]['unitId']!==_0x3e4427[_0x5dda32(0x191)][_0x5dda32(0x15b)]||_0x50dfa5[_0x5dda32(0x191)][_0x5dda32(0x126)]!==_0x3e4427[_0x5dda32(0x191)][_0x5dda32(0x126)])return _0x33071d;const _0xfdb746=_0x50dfa5[_0x5dda32(0x191)]['rules'][_0x5dda32(0x21d)](_0xd64b57=>_0xd64b57[_0x5dda32(0x1a9)])['flat'](),_0x3306a0=_0x3e4427[_0x5dda32(0x191)]['range'];return _0xfdb746[_0x5dda32(0x161)](_0x30c3aa=>_0x12b536[_0x5dda32(0x16e)](_0x30c3aa,_0x3306a0))?{'error':new Error(_0x5dda32(0x9c))}:_0x33071d;}},qr={'m1':_0x3b4149['id'],'m2':_0x1c90f1['id'],'handler':(_0x51d712,_0x296a7c)=>{const _0x516643=_0x54481f,_0x3ac966={'m1Prime':_0x51d712,'m2Prime':_0x296a7c};if(_0x51d712[_0x516643(0x191)][_0x516643(0x15b)]!==_0x296a7c['params'][_0x516643(0x15b)]||_0x51d712[_0x516643(0x191)][_0x516643(0x126)]!==_0x296a7c[_0x516643(0x191)][_0x516643(0x126)])return _0x3ac966;const _0x52a933=_0x51d712[_0x516643(0x191)][_0x516643(0xe8)][_0x516643(0x21d)](_0x2cf4f1=>_0x2cf4f1[_0x516643(0x1a9)])[_0x516643(0xe4)](),_0x759661=[_0x296a7c['params'][_0x516643(0x9d)],_0x296a7c[_0x516643(0x191)]['targetRange']];return _0x52a933[_0x516643(0x161)](_0x1dc37c=>_0x759661[_0x516643(0x161)](_0x520a92=>_0x12b536['intersects'](_0x1dc37c,_0x520a92)))?{'error':new Error(_0x516643(0x10e))}:_0x3ac966;}},Zr={'m1':_0x3b4149['id'],'m2':_0xeb63e6['id'],'handler':(_0x32eecc,_0x5110fb)=>{const _0x404523=_0x54481f,_0x25ab5e={'m1Prime':_0x32eecc,'m2Prime':_0x5110fb};if(_0x32eecc[_0x404523(0x191)][_0x404523(0x15b)]!==_0x5110fb['params']['unitId']||_0x32eecc['params']['subUnitId']!==_0x5110fb[_0x404523(0x191)][_0x404523(0xad)][_0x404523(0x126)])return _0x25ab5e;const _0x52e49b=_0x32eecc[_0x404523(0x191)][_0x404523(0xe8)][_0x404523(0x21d)](_0x120262=>_0x120262[_0x404523(0x1a9)])[_0x404523(0xe4)](),_0x2058bc=new _0x3597fb(_0x5110fb[_0x404523(0x191)][_0x404523(0xad)][_0x404523(0x9e)])[_0x404523(0xa7)](),_0x372e03=new _0x3597fb(_0x5110fb[_0x404523(0x191)]['to'][_0x404523(0x9e)])[_0x404523(0xa7)](),_0x5e34bf=[_0x2058bc,_0x372e03];return _0x52e49b[_0x404523(0x161)](_0x3b4142=>_0x5e34bf['some'](_0x3c52cd=>_0x12b536[_0x404523(0x16e)](_0x3b4142,_0x3c52cd)))?{'error':new Error(_0x404523(0x16f))}:_0x25ab5e;}},Qr={'m1':_0x3b4149['id'],'m2':_0xfa530e['id'],'handler':(_0xfc1b80,_0xd6e530)=>{const _0x3b9ea4=_0x54481f,_0x398cb4={'m1Prime':_0xfc1b80,'m2Prime':_0xd6e530};if(_0xfc1b80[_0x3b9ea4(0x191)][_0x3b9ea4(0x15b)]!==_0xd6e530['params'][_0x3b9ea4(0x15b)]||_0xfc1b80[_0x3b9ea4(0x191)]['subUnitId']!==_0xd6e530[_0x3b9ea4(0x191)][_0x3b9ea4(0x126)])return _0x398cb4;const _0xead9ba=_0xfc1b80[_0x3b9ea4(0x191)][_0x3b9ea4(0xe8)][_0x3b9ea4(0x21d)](_0x4c5fd1=>_0x4c5fd1['ranges'])[_0x3b9ea4(0xe4)](),_0x1ff1b4=[_0xd6e530['params'][_0x3b9ea4(0x9d)],_0xd6e530[_0x3b9ea4(0x191)][_0x3b9ea4(0x12c)]];return _0xead9ba[_0x3b9ea4(0x161)](_0x27e8ef=>_0x1ff1b4[_0x3b9ea4(0x161)](_0xee589b=>_0x12b536[_0x3b9ea4(0x16e)](_0x27e8ef,_0xee589b)))?{'error':new Error(_0x3b9ea4(0x185))}:_0x398cb4;}},tn={'m1':_0x3b4149['id'],'m2':_0x491a86['id'],'handler':(_0x35bf60,_0x1ca838)=>{const _0x244bf8=_0x54481f,_0x37631a={'m1Prime':_0x35bf60,'m2Prime':_0x1ca838};if(_0x35bf60[_0x244bf8(0x191)][_0x244bf8(0x15b)]!==_0x1ca838[_0x244bf8(0x191)][_0x244bf8(0x15b)]||_0x35bf60[_0x244bf8(0x191)][_0x244bf8(0x126)]!==_0x1ca838[_0x244bf8(0x191)][_0x244bf8(0x126)])return _0x37631a;const _0x539457=_0x35bf60[_0x244bf8(0x191)][_0x244bf8(0xe8)][_0x244bf8(0x21d)](_0x2fb70a=>_0x2fb70a[_0x244bf8(0x1a9)])[_0x244bf8(0xe4)](),_0x478d24=_0x1ca838[_0x244bf8(0x191)]['range'];return _0x539457[_0x244bf8(0x161)](_0x4e3ee7=>_0x12b536[_0x244bf8(0x16e)](_0x4e3ee7,_0x478d24))?{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20remove\x20col')}:_0x37631a;}},en={'m1':_0x3b4149['id'],'m2':_0x42cad4['id'],'handler':(_0x1b15e3,_0x1a2a55)=>{const _0x57b93f=_0x54481f,_0x1ec9ac={'m1Prime':_0x1b15e3,'m2Prime':_0x1a2a55};return _0x1b15e3[_0x57b93f(0x191)][_0x57b93f(0x15b)]!==_0x1a2a55[_0x57b93f(0x191)]['unitId']||_0x1b15e3[_0x57b93f(0x191)][_0x57b93f(0x126)]!==_0x1a2a55[_0x57b93f(0x191)][_0x57b93f(0x126)]?_0x1ec9ac:{'error':new Error(_0x57b93f(0x1eb))};}},rn={'m1':_0x3b4149['id'],'m2':_0x180381['id'],'handler':(_0x995e25,_0x3edbf9)=>{const _0x3050a3=_0x54481f,_0xda7c1={'m1Prime':_0x995e25,'m2Prime':_0x3edbf9};if(_0x995e25[_0x3050a3(0x191)][_0x3050a3(0x15b)]!==_0x3edbf9['params'][_0x3050a3(0x15b)]||_0x995e25[_0x3050a3(0x191)][_0x3050a3(0x126)]!==_0x3edbf9[_0x3050a3(0x191)][_0x3050a3(0x126)])return _0xda7c1;const _0x42de79=_0x995e25[_0x3050a3(0x191)][_0x3050a3(0xe8)]['map'](_0x2f844f=>_0x2f844f[_0x3050a3(0x1a9)])['flat'](),_0x13d878=_0x3edbf9[_0x3050a3(0x191)][_0x3050a3(0x1a9)];return _0x42de79[_0x3050a3(0x161)](_0x4654fd=>_0x13d878[_0x3050a3(0x161)](_0x4d5ee2=>_0x12b536[_0x3050a3(0x16e)](_0x4654fd,_0x4d5ee2)))?{'error':new Error(_0x3050a3(0x90))}:_0xda7c1;}},nn={'m1':_0x3b4149['id'],'m2':_0x431d63['id'],'handler':(_0xec00e9,_0x3bf6af)=>{const _0x2b2042=_0x54481f,_0x1bb3ff={'m1Prime':_0xec00e9,'m2Prime':_0x3bf6af};return _0xec00e9[_0x2b2042(0x191)][_0x2b2042(0x15b)]!==_0x3bf6af[_0x2b2042(0x191)][_0x2b2042(0x15b)]||_0xec00e9[_0x2b2042(0x191)][_0x2b2042(0x126)]!==_0x3bf6af[_0x2b2042(0x191)]['subUnitId']?_0x1bb3ff:{'error':new Error(_0x2b2042(0x137))};}},an={'m1':_0x3b4149['id'],'m2':_0x3194c5['id'],'handler':(_0x142a24,_0x22afab)=>{const _0x1e23dd=_0x54481f,_0x48b6b1={'m1Prime':_0x142a24,'m2Prime':_0x22afab};if(_0x142a24[_0x1e23dd(0x191)]['unitId']!==_0x22afab[_0x1e23dd(0x191)][_0x1e23dd(0x15b)]||_0x142a24[_0x1e23dd(0x191)][_0x1e23dd(0x126)]!==_0x22afab[_0x1e23dd(0x191)]['subUnitId'])return _0x48b6b1;const _0xb1cbcd=_0x142a24[_0x1e23dd(0x191)][_0x1e23dd(0xe8)]['map'](_0x60b25a=>_0x60b25a[_0x1e23dd(0x1a9)])[_0x1e23dd(0xe4)](),_0x5c378e=_0x22afab['params']['ranges'];return _0xb1cbcd[_0x1e23dd(0x161)](_0x3aa0e5=>_0x5c378e[_0x1e23dd(0x161)](_0x4bf66a=>_0x12b536[_0x1e23dd(0x16e)](_0x3aa0e5,_0x4bf66a)))?{'error':new Error(_0x1e23dd(0x1cc))}:_0x48b6b1;}},sn={'m1':_0x3b4149['id'],'m2':_0x311d1a['id'],'handler':(_0x179e79,_0x23a7a8)=>{const _0x3151a5=_0x54481f,_0x417ce4={'m1Prime':_0x179e79,'m2Prime':_0x23a7a8};if(_0x179e79[_0x3151a5(0x191)][_0x3151a5(0x15b)]!==_0x23a7a8[_0x3151a5(0x191)][_0x3151a5(0x15b)]||_0x179e79[_0x3151a5(0x191)]['subUnitId']!==_0x23a7a8[_0x3151a5(0x191)][_0x3151a5(0x126)])return _0x417ce4;const _0x315750=_0x179e79['params'][_0x3151a5(0xe8)][_0x3151a5(0x21d)](_0x2579b6=>_0x2579b6[_0x3151a5(0x1a9)])['flat'](),_0x526b36=_0x23a7a8[_0x3151a5(0x191)][_0x3151a5(0xe7)][_0x3151a5(0x1a9)];return _0x315750[_0x3151a5(0x161)](_0x93ace9=>_0x526b36[_0x3151a5(0x161)](_0x10f1e8=>_0x12b536[_0x3151a5(0x16e)](_0x93ace9,_0x10f1e8)))?{'error':new Error(_0x3151a5(0x99))}:_0x417ce4;}},on={'m1':_0x3b4149['id'],'m2':_0x4310ec['id'],'handler':(_0x1a0681,_0x95a26e)=>{const _0x47ddc0=_0x54481f,_0x70db6c={'m1Prime':_0x1a0681,'m2Prime':_0x95a26e};if(_0x1a0681['params'][_0x47ddc0(0x15b)]!==_0x95a26e[_0x47ddc0(0x191)][_0x47ddc0(0x15b)]||_0x1a0681['params']['subUnitId']!==_0x95a26e['params']['subUnitId'])return _0x70db6c;const _0x2a57b1=_0x1a0681[_0x47ddc0(0x191)]['rules'][_0x47ddc0(0x21d)](_0x326c21=>_0x326c21[_0x47ddc0(0x1a9)])[_0x47ddc0(0xe4)](),_0x9f00ca=[{'startRow':_0x95a26e[_0x47ddc0(0x191)][_0x47ddc0(0x11e)],'endRow':_0x95a26e[_0x47ddc0(0x191)][_0x47ddc0(0x11e)],'startColumn':_0x95a26e['params'][_0x47ddc0(0x10c)],'endColumn':_0x95a26e[_0x47ddc0(0x191)][_0x47ddc0(0x10c)]}];return _0x2a57b1[_0x47ddc0(0x161)](_0x5e408a=>_0x9f00ca[_0x47ddc0(0x161)](_0x17ad88=>_0x12b536[_0x47ddc0(0x16e)](_0x5e408a,_0x17ad88)))?{'error':new Error(_0x47ddc0(0x114))}:_0x70db6c;}},dn={'m1':_0x3b4149['id'],'m2':_0x30c2c8['id'],'handler':(_0x269ae0,_0x59e1f5)=>{const _0x3b4b9e=_0x54481f,_0x262625={'m1Prime':_0x269ae0,'m2Prime':_0x59e1f5};return _0x269ae0[_0x3b4b9e(0x191)]['unitId']!==_0x59e1f5[_0x3b4b9e(0x191)]['unitId']||_0x269ae0[_0x3b4b9e(0x191)][_0x3b4b9e(0x126)]!==_0x59e1f5[_0x3b4b9e(0x191)][_0x3b4b9e(0x126)]?_0x262625:{'error':new Error(_0x3b4b9e(0xb7))};}},mn={'m1':_0x3b4149['id'],'m2':_0x37e736['id'],'handler':(_0x40adcb,_0x3e4a41)=>{const _0x50d41f=_0x54481f,_0x55d3b9={'m1Prime':_0x40adcb,'m2Prime':_0x3e4a41};if(_0x40adcb['params'][_0x50d41f(0x15b)]!==_0x3e4a41[_0x50d41f(0x191)][_0x50d41f(0x15b)]||_0x40adcb[_0x50d41f(0x191)][_0x50d41f(0x126)]!==_0x3e4a41['params'][_0x50d41f(0x126)])return _0x55d3b9;const _0x385f94=_0x40adcb[_0x50d41f(0x191)][_0x50d41f(0xe8)][_0x50d41f(0x21d)](_0x731ab1=>_0x731ab1['ranges'])['flat'](),_0x522f5e=_0x3e4a41[_0x50d41f(0x191)][_0x50d41f(0xe7)][_0x50d41f(0x1a9)];return _0x385f94[_0x50d41f(0x161)](_0x23601b=>_0x522f5e[_0x50d41f(0x161)](_0x4a6819=>_0x12b536[_0x50d41f(0x16e)](_0x23601b,_0x4a6819)))?{'error':new Error(_0x50d41f(0x12d))}:_0x55d3b9;}},un={'m1':_0x3b4149['id'],'m2':_0x59880b['id'],'handler':(_0x29e80f,_0x142f5b)=>{const _0x1b7f68=_0x54481f,_0x1e150b={'m1Prime':_0x29e80f,'m2Prime':_0x142f5b};if(_0x29e80f[_0x1b7f68(0x191)]['unitId']!==_0x142f5b[_0x1b7f68(0x191)]['unitId']||_0x29e80f['params'][_0x1b7f68(0x126)]!==_0x142f5b[_0x1b7f68(0x191)][_0x1b7f68(0x126)])return _0x1e150b;const _0x458f65=_0x29e80f[_0x1b7f68(0x191)][_0x1b7f68(0xe8)][_0x1b7f68(0x21d)](_0x4722c3=>_0x4722c3[_0x1b7f68(0x1a9)])[_0x1b7f68(0xe4)](),_0x4b0711=new _0x3597fb(_0x142f5b[_0x1b7f68(0x191)][_0x1b7f68(0xaf)])['getDataRange']();return _0x458f65[_0x1b7f68(0x161)](_0x39d198=>_0x12b536[_0x1b7f68(0x16e)](_0x39d198,_0x4b0711))?{'error':new Error(_0x1b7f68(0x115))}:_0x1e150b;}},ln={'m1':_0x3b4149['id'],'m2':_0x2d1a15['id'],'handler':(_0x6be638,_0x37a8a9)=>{const _0x5b6c99=_0x54481f,_0x4f3cf8={'m1Prime':_0x6be638,'m2Prime':_0x37a8a9};if(_0x6be638[_0x5b6c99(0x191)][_0x5b6c99(0x15b)]!==_0x37a8a9[_0x5b6c99(0x191)][_0x5b6c99(0x15b)]||_0x6be638[_0x5b6c99(0x191)]['subUnitId']!==_0x37a8a9[_0x5b6c99(0x191)][_0x5b6c99(0x126)])return _0x4f3cf8;const _0x1128a8=_0x6be638[_0x5b6c99(0x191)][_0x5b6c99(0xe8)][_0x5b6c99(0x21d)](_0x31963f=>_0x31963f[_0x5b6c99(0x1a9)])[_0x5b6c99(0xe4)](),_0x223686=_0x37a8a9[_0x5b6c99(0x191)][_0x5b6c99(0x1a9)];return _0x1128a8[_0x5b6c99(0x161)](_0x4d35a5=>_0x223686['some'](_0x3f3b4c=>_0x12b536[_0x5b6c99(0x16e)](_0x4d35a5,_0x3f3b4c)))?{'error':new Error(_0x5b6c99(0x184))}:_0x4f3cf8;}},cn={'m1':_0x3b4149['id'],'m2':_0x62fd77['id'],'handler':(_0x5f5519,_0x38327f)=>{const _0x511b06=_0x54481f,_0x3be559={'m1Prime':_0x5f5519,'m2Prime':_0x38327f};return _0x5f5519['params'][_0x511b06(0x15b)]!==_0x38327f[_0x511b06(0x191)][_0x511b06(0x15b)]||_0x5f5519[_0x511b06(0x191)][_0x511b06(0x126)]!==_0x38327f[_0x511b06(0x191)][_0x511b06(0x126)]?_0x3be559:{'error':new Error(_0x511b06(0x222))};}},pn={'m1':_0x3b4149['id'],'m2':_0x5ad83d['id'],'handler':(_0xed8902,_0x49cd68)=>{const _0x14e4ee=_0x54481f,_0x5968a6={'m1Prime':_0xed8902,'m2Prime':_0x49cd68};return _0xed8902[_0x14e4ee(0x191)][_0x14e4ee(0x15b)]!==_0x49cd68['params'][_0x14e4ee(0x15b)]||_0xed8902[_0x14e4ee(0x191)][_0x14e4ee(0x126)]!==_0x49cd68['params'][_0x14e4ee(0x126)]?_0x5968a6:{'error':new Error('add\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20data\x20validation\x20rule')};}},fn={'m1':_0x5504b0['id'],'m2':_0x5504b0['id'],'handler'(_0x4b9c77,_0x495cb9){const _0x387727=_0x54481f,_0x34f59b=_0x12a789[_0x387727(0xec)](_0x4b9c77),_0x3b9295=_0x12a789[_0x387727(0xec)](_0x495cb9);if(_0x4b9c77[_0x387727(0x191)]['unitId']!==_0x495cb9['params'][_0x387727(0x15b)]||_0x4b9c77[_0x387727(0x191)][_0x387727(0x126)]!==_0x495cb9[_0x387727(0x191)][_0x387727(0x126)])return{'m1Prime':_0x34f59b,'m2Prime':_0x3b9295};const _0x1d9363=_0x34f59b[_0x387727(0x191)]['ranges'],_0x367f08=_0x3b9295[_0x387727(0x191)]['ranges'],_0x580118=[_0x3b9295],_0x38cd5c=new Set();for(let _0x440f29=0x0;_0x440f29<_0x1d9363[_0x387727(0xbd)];_0x440f29++)for(let _0x50a974=0x0;_0x50a974<_0x367f08[_0x387727(0xbd)];_0x50a974++)if(_0x12b536['intersects'](_0x1d9363[_0x440f29],_0x367f08[_0x50a974])){_0x38cd5c[_0x387727(0x8e)](_0x1d9363[_0x440f29]),_0x1d9363[_0x387727(0x200)](_0x440f29,0x1),_0x440f29--;break;}return _0x38cd5c['size']>0x0&&_0x580118[_0x387727(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x4b9c77[_0x387727(0x191)][_0x387727(0x15b)],'subUnitId':_0x4b9c77[_0x387727(0x191)]['subUnitId'],'ranges':Array['from'](_0x38cd5c)}}),_0x1d9363[_0x387727(0xbd)]===0x0&&(_0x34f59b['id']=_0x411476['id']),{'m1Prime':_0x34f59b,'m2Prime':_0x580118['length']>0x1?_0x580118:_0x3b9295};}},rr={'m1':_0x5504b0['id'],'m2':_0x3732ba['id'],'handler'(_0x27fe98,_0x2670ee){const _0x1af5b3=_0x54481f,_0x5d62d1=_0x12a789['deepClone'](_0x27fe98),_0x4defd7=_0x12a789[_0x1af5b3(0xec)](_0x2670ee);if(_0x27fe98[_0x1af5b3(0x191)][_0x1af5b3(0x15b)]!==_0x2670ee['params'][_0x1af5b3(0x15b)]||_0x27fe98[_0x1af5b3(0x191)]['subUnitId']!==_0x2670ee[_0x1af5b3(0x191)][_0x1af5b3(0x126)])return{'m1Prime':_0x5d62d1,'m2Prime':_0x4defd7};const _0x4ce569=_0x27fe98[_0x1af5b3(0x191)][_0x1af5b3(0x15b)],_0xea628=_0x27fe98[_0x1af5b3(0x191)][_0x1af5b3(0x126)],_0x427c15=[_0x4defd7],_0xbdac51=[],_0x4aca1e=[];return _0x5d62d1[_0x1af5b3(0x191)][_0x1af5b3(0x1a9)][_0x1af5b3(0x147)](_0x1e5a06=>{const _0x4f9b2c=_0x1af5b3,_0x16f38b=_0x2670ee[_0x4f9b2c(0x191)]['range'],_0x126d74=_0x16f38b[_0x4f9b2c(0x1ee)]-_0x16f38b[_0x4f9b2c(0x10c)]+0x1;_0x16f38b[_0x4f9b2c(0x10c)]<=_0x1e5a06['startColumn']?(_0xbdac51[_0x4f9b2c(0x187)]({..._0x1e5a06}),_0x4aca1e[_0x4f9b2c(0x187)]({..._0x1e5a06,'startColumn':_0x1e5a06[_0x4f9b2c(0x10c)]+_0x126d74,'endColumn':_0x1e5a06[_0x4f9b2c(0x1ee)]+_0x126d74}),_0x1e5a06[_0x4f9b2c(0x10c)]=_0x1e5a06['startColumn']+_0x126d74,_0x1e5a06[_0x4f9b2c(0x1ee)]=_0x1e5a06[_0x4f9b2c(0x1ee)]+_0x126d74):_0x16f38b['startColumn']>_0x1e5a06[_0x4f9b2c(0x10c)]&&_0x16f38b['startColumn']<=_0x1e5a06['endColumn']&&(_0xbdac51[_0x4f9b2c(0x187)]({..._0x1e5a06}),_0x4aca1e[_0x4f9b2c(0x187)]({..._0x1e5a06,'endColumn':_0x1e5a06[_0x4f9b2c(0x1ee)]+_0x126d74}),_0x1e5a06[_0x4f9b2c(0x1ee)]=_0x1e5a06[_0x4f9b2c(0x1ee)]+_0x126d74);}),_0xbdac51[_0x1af5b3(0xbd)]>0x0&&_0x427c15[_0x1af5b3(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x4ce569,'subUnitId':_0xea628,'ranges':_0xbdac51}}),_0x4aca1e['length']>0x0&&_0x427c15[_0x1af5b3(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x4ce569,'subUnitId':_0xea628,'ranges':_0x4aca1e}}),{'m1Prime':_0x5d62d1,'m2Prime':_0x427c15[_0x1af5b3(0xbd)]>0x1?_0x427c15:_0x427c15[0x0]};}},nr={'m1':_0x5504b0['id'],'m2':_0xa7a746['id'],'handler'(_0x3b3404,_0x3ba2aa){const _0x11d946=_0x54481f,_0xcfb5d=_0x12a789[_0x11d946(0xec)](_0x3b3404),_0x356ace=_0x12a789['deepClone'](_0x3ba2aa);if(_0x3b3404['params'][_0x11d946(0x15b)]!==_0x3ba2aa[_0x11d946(0x191)][_0x11d946(0x15b)]||_0x3b3404[_0x11d946(0x191)][_0x11d946(0x126)]!==_0x3ba2aa[_0x11d946(0x191)]['subUnitId'])return{'m1Prime':_0xcfb5d,'m2Prime':_0x356ace};const _0x1eded7=_0x3b3404[_0x11d946(0x191)][_0x11d946(0x15b)],_0x262884=_0x3b3404['params']['subUnitId'],_0x232b18=[_0x356ace],_0x55826f=[],_0xc6b8b5=[];return _0xcfb5d[_0x11d946(0x191)][_0x11d946(0x1a9)][_0x11d946(0x147)](_0x183c1f=>{const _0x297879=_0x11d946,_0x33f918=_0x3ba2aa[_0x297879(0x191)]['range'],_0x185ee4=_0x33f918[_0x297879(0xda)]-_0x33f918[_0x297879(0x11e)]+0x1;_0x33f918[_0x297879(0x11e)]<=_0x183c1f['startRow']?(_0x55826f[_0x297879(0x187)]({..._0x183c1f}),_0xc6b8b5[_0x297879(0x187)]({..._0x183c1f,'startRow':_0x183c1f[_0x297879(0x11e)]+_0x185ee4,'endRow':_0x183c1f[_0x297879(0xda)]+_0x185ee4}),_0x183c1f[_0x297879(0x11e)]=_0x183c1f[_0x297879(0x11e)]+_0x185ee4,_0x183c1f[_0x297879(0xda)]=_0x183c1f[_0x297879(0xda)]+_0x185ee4):_0x33f918[_0x297879(0x11e)]>_0x183c1f[_0x297879(0x11e)]&&_0x33f918['startRow']<=_0x183c1f[_0x297879(0xda)]&&(_0x55826f[_0x297879(0x187)]({..._0x183c1f}),_0xc6b8b5['push']({..._0x183c1f,'endRow':_0x183c1f[_0x297879(0xda)]+_0x185ee4}),_0x183c1f[_0x297879(0xda)]=_0x183c1f[_0x297879(0xda)]+_0x185ee4);}),_0x55826f[_0x11d946(0xbd)]>0x0&&_0x232b18[_0x11d946(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x1eded7,'subUnitId':_0x262884,'ranges':_0x55826f}}),_0xc6b8b5[_0x11d946(0xbd)]>0x0&&_0x232b18[_0x11d946(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x1eded7,'subUnitId':_0x262884,'ranges':_0xc6b8b5}}),{'m1Prime':_0xcfb5d,'m2Prime':_0x232b18[_0x11d946(0xbd)]>0x1?_0x232b18:_0x232b18[0x0]};}},ar={'m1':_0x5504b0['id'],'m2':_0x1c90f1['id'],'handler'(_0x1ede03,_0x492f6e){const _0x1a4c74=_0x54481f,_0x2d9320=_0x12a789[_0x1a4c74(0xec)](_0x1ede03),_0x1aeab8=_0x12a789[_0x1a4c74(0xec)](_0x492f6e);if(_0x1ede03[_0x1a4c74(0x191)][_0x1a4c74(0x15b)]!==_0x492f6e[_0x1a4c74(0x191)][_0x1a4c74(0x15b)]||_0x1ede03['params'][_0x1a4c74(0x126)]!==_0x492f6e['params'][_0x1a4c74(0x126)])return{'m1Prime':_0x2d9320,'m2Prime':_0x1aeab8};const _0xf3396c=[],_0x4f6f45=[],_0xe69e93=[_0x1aeab8];for(let _0x5d028c=0x0;_0x5d028c<_0x2d9320['params'][_0x1a4c74(0x1a9)][_0x1a4c74(0xbd)];_0x5d028c++){const _0x586e03=_0x2d9320[_0x1a4c74(0x191)][_0x1a4c74(0x1a9)][_0x5d028c],{sourceRange:_0x16c2aa,targetRange:_0x486a7b}=_0x492f6e['params'];_0x12b536[_0x1a4c74(0x16e)](_0x586e03,_0x16c2aa)||_0x12b536[_0x1a4c74(0x16e)](_0x586e03,_0x486a7b)?(_0xf3396c['push']({..._0x586e03}),_0x2d9320[_0x1a4c74(0x191)][_0x1a4c74(0x1a9)][_0x1a4c74(0x200)](_0x5d028c,0x1),_0x5d028c--):_0x16c2aa[_0x1a4c74(0x10c)]<_0x586e03[_0x1a4c74(0x10c)]&&_0x486a7b['startColumn']>_0x586e03['endColumn']?(_0xf3396c[_0x1a4c74(0x187)]({..._0x586e03}),_0x4f6f45[_0x1a4c74(0x187)]({..._0x586e03,'startColumn':_0x586e03['startColumn']-(_0x16c2aa['endColumn']-_0x16c2aa[_0x1a4c74(0x10c)]+0x1),'endColumn':_0x586e03['endColumn']-(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1)}),_0x586e03[_0x1a4c74(0x10c)]=_0x586e03['startColumn']-(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1),_0x586e03['endColumn']=_0x586e03[_0x1a4c74(0x1ee)]-(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa['startColumn']+0x1)):_0x16c2aa['startColumn']>_0x586e03[_0x1a4c74(0x1ee)]&&_0x486a7b['endColumn']<_0x586e03[_0x1a4c74(0x10c)]&&(_0xf3396c[_0x1a4c74(0x187)]({..._0x586e03}),_0x4f6f45[_0x1a4c74(0x187)]({..._0x586e03,'startColumn':_0x586e03['startColumn']+(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1),'endColumn':_0x586e03['endColumn']+(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1)}),_0x586e03[_0x1a4c74(0x10c)]=_0x586e03[_0x1a4c74(0x10c)]+(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1),_0x586e03[_0x1a4c74(0x1ee)]=_0x586e03[_0x1a4c74(0x1ee)]+(_0x16c2aa[_0x1a4c74(0x1ee)]-_0x16c2aa[_0x1a4c74(0x10c)]+0x1));}return _0xf3396c[_0x1a4c74(0xbd)]>0x0&&_0xe69e93[_0x1a4c74(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x1ede03[_0x1a4c74(0x191)][_0x1a4c74(0x15b)],'subUnitId':_0x1ede03[_0x1a4c74(0x191)][_0x1a4c74(0x126)],'ranges':_0xf3396c}}),_0x4f6f45['length']>0x0&&_0xe69e93[_0x1a4c74(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x1ede03[_0x1a4c74(0x191)][_0x1a4c74(0x15b)],'subUnitId':_0x1ede03[_0x1a4c74(0x191)]['subUnitId'],'ranges':_0x4f6f45}}),_0x2d9320[_0x1a4c74(0x191)][_0x1a4c74(0x1a9)][_0x1a4c74(0xbd)]===0x0&&(_0x2d9320['id']=_0x411476['id']),{'m1Prime':_0x2d9320,'m2Prime':_0xe69e93['length']>0x1?_0xe69e93:_0xe69e93[0x0]};}},sr={'m1':_0x5504b0['id'],'m2':_0xeb63e6['id'],'handler'(_0x54f2c9,_0x446885){const _0x1742cc=_0x54481f,_0x3ce3fe=_0x12a789['deepClone'](_0x54f2c9),_0x16608d=_0x12a789[_0x1742cc(0xec)](_0x446885);if(_0x54f2c9[_0x1742cc(0x191)][_0x1742cc(0x15b)]!==_0x446885[_0x1742cc(0x191)][_0x1742cc(0x15b)])return{'m1Prime':_0x3ce3fe,'m2Prime':_0x16608d};const _0x93e01d=[],_0x1f2b70=[_0x16608d],_0x5cc273=new _0x3597fb(_0x446885[_0x1742cc(0x191)][_0x1742cc(0xad)]['value'])['getDataRange'](),_0x582f79=new _0x3597fb(_0x446885['params']['to'][_0x1742cc(0x9e)])['getDataRange']();for(let _0x356d54=0x0;_0x356d54<_0x3ce3fe['params'][_0x1742cc(0x1a9)][_0x1742cc(0xbd)];_0x356d54++){const _0x67578=_0x3ce3fe[_0x1742cc(0x191)][_0x1742cc(0x1a9)][_0x356d54];(_0x12b536[_0x1742cc(0x16e)](_0x5cc273,_0x67578)||_0x12b536['intersects'](_0x582f79,_0x67578))&&(_0x93e01d[_0x1742cc(0x187)](_0x67578),_0x3ce3fe[_0x1742cc(0x191)]['ranges'][_0x1742cc(0x200)](_0x356d54,0x1),_0x356d54--);}return _0x93e01d[_0x1742cc(0xbd)]>0x0&&_0x1f2b70['unshift']({'id':_0x3194c5['id'],'params':{'unitId':_0x54f2c9[_0x1742cc(0x191)][_0x1742cc(0x15b)],'subUnitId':_0x54f2c9[_0x1742cc(0x191)][_0x1742cc(0x126)],'ranges':_0x93e01d}}),_0x3ce3fe[_0x1742cc(0x191)][_0x1742cc(0x1a9)][_0x1742cc(0xbd)]===0x0&&(_0x3ce3fe['id']=_0x411476['id']),{'m1Prime':_0x3ce3fe,'m2Prime':_0x1f2b70[_0x1742cc(0xbd)]>0x1?_0x1f2b70:_0x1f2b70[0x0]};}},or={'m1':_0x5504b0['id'],'m2':_0xfa530e['id'],'handler'(_0x4016c4,_0x22524b){const _0x114bc1=_0x54481f,_0x20cb87=_0x12a789[_0x114bc1(0xec)](_0x4016c4),_0x44733c=_0x12a789[_0x114bc1(0xec)](_0x22524b);if(_0x4016c4['params'][_0x114bc1(0x15b)]!==_0x22524b['params'][_0x114bc1(0x15b)]||_0x4016c4[_0x114bc1(0x191)][_0x114bc1(0x126)]!==_0x22524b[_0x114bc1(0x191)][_0x114bc1(0x126)])return{'m1Prime':_0x20cb87,'m2Prime':_0x44733c};const _0x35f574=[],_0x15db6e=[],_0x563d4c=[_0x44733c];for(let _0x41c7d3=0x0;_0x41c7d3<_0x20cb87[_0x114bc1(0x191)]['ranges'][_0x114bc1(0xbd)];_0x41c7d3++){const _0x2baf55=_0x20cb87[_0x114bc1(0x191)][_0x114bc1(0x1a9)][_0x41c7d3],{sourceRange:_0x2145fe,targetRange:_0x1647aa}=_0x22524b['params'];_0x12b536['intersects'](_0x2baf55,_0x2145fe)||_0x12b536[_0x114bc1(0x16e)](_0x2baf55,_0x1647aa)?(_0x35f574[_0x114bc1(0x187)]({..._0x2baf55}),_0x20cb87[_0x114bc1(0x191)][_0x114bc1(0x1a9)][_0x114bc1(0x200)](_0x41c7d3,0x1),_0x41c7d3--):_0x2145fe[_0x114bc1(0x11e)]<_0x2baf55['startRow']&&_0x1647aa[_0x114bc1(0x11e)]>_0x2baf55[_0x114bc1(0xda)]?(_0x35f574['push']({..._0x2baf55}),_0x15db6e[_0x114bc1(0x187)]({..._0x2baf55,'startRow':_0x2baf55['startRow']-(_0x2145fe['endRow']-_0x2145fe[_0x114bc1(0x11e)]+0x1),'endRow':_0x2baf55[_0x114bc1(0xda)]-(_0x2145fe[_0x114bc1(0xda)]-_0x2145fe['startRow']+0x1)}),_0x2baf55[_0x114bc1(0x11e)]=_0x2baf55['startRow']-(_0x2145fe['endRow']-_0x2145fe[_0x114bc1(0x11e)]+0x1),_0x2baf55[_0x114bc1(0xda)]=_0x2baf55['endRow']-(_0x2145fe['endRow']-_0x2145fe['startRow']+0x1)):_0x2145fe[_0x114bc1(0x11e)]>_0x2baf55[_0x114bc1(0xda)]&&_0x1647aa[_0x114bc1(0xda)]<_0x2baf55[_0x114bc1(0x11e)]&&(_0x35f574['push']({..._0x2baf55}),_0x15db6e[_0x114bc1(0x187)]({..._0x2baf55,'startRow':_0x2baf55[_0x114bc1(0x11e)]+(_0x2145fe[_0x114bc1(0xda)]-_0x2145fe[_0x114bc1(0x11e)]+0x1),'endRow':_0x2baf55['endRow']+(_0x2145fe[_0x114bc1(0xda)]-_0x2145fe[_0x114bc1(0x11e)]+0x1)}),_0x2baf55[_0x114bc1(0x11e)]=_0x2baf55[_0x114bc1(0x11e)]+(_0x2145fe['endRow']-_0x2145fe['startRow']+0x1),_0x2baf55[_0x114bc1(0xda)]=_0x2baf55[_0x114bc1(0xda)]+(_0x2145fe[_0x114bc1(0xda)]-_0x2145fe['startRow']+0x1));}return _0x35f574[_0x114bc1(0xbd)]>0x0&&_0x563d4c[_0x114bc1(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x4016c4[_0x114bc1(0x191)][_0x114bc1(0x15b)],'subUnitId':_0x4016c4[_0x114bc1(0x191)][_0x114bc1(0x126)],'ranges':_0x35f574}}),_0x15db6e[_0x114bc1(0xbd)]>0x0&&_0x563d4c[_0x114bc1(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x4016c4[_0x114bc1(0x191)][_0x114bc1(0x15b)],'subUnitId':_0x4016c4[_0x114bc1(0x191)][_0x114bc1(0x126)],'ranges':_0x15db6e}}),_0x20cb87[_0x114bc1(0x191)][_0x114bc1(0x1a9)][_0x114bc1(0xbd)]===0x0&&(_0x20cb87['id']=_0x411476['id']),{'m1Prime':_0x20cb87,'m2Prime':_0x563d4c[_0x114bc1(0xbd)]>0x1?_0x563d4c:_0x563d4c[0x0]};}};function K(_0x2e9d0f){const _0x228f45=_0x54481f;return _0x2e9d0f[_0x228f45(0x10c)]>_0x2e9d0f[_0x228f45(0x1ee)]||_0x2e9d0f['startRow']>_0x2e9d0f[_0x228f45(0xda)]?!0x1:!(_0x2e9d0f[_0x228f45(0x11e)]===_0x2e9d0f[_0x228f45(0xda)]&&_0x2e9d0f['startColumn']===_0x2e9d0f[_0x228f45(0x1ee)]);}const ir={'m1':_0x5504b0['id'],'m2':_0x491a86['id'],'handler'(_0x461267,_0x181fe4){const _0x100fd2=_0x54481f,_0x5bafc6=_0x12a789[_0x100fd2(0xec)](_0x461267),_0x2b2d77=_0x12a789[_0x100fd2(0xec)](_0x181fe4);if(_0x461267[_0x100fd2(0x191)][_0x100fd2(0x15b)]!==_0x181fe4[_0x100fd2(0x191)][_0x100fd2(0x15b)]||_0x461267[_0x100fd2(0x191)][_0x100fd2(0x126)]!==_0x181fe4['params'][_0x100fd2(0x126)])return{'m1Prime':_0x5bafc6,'m2Prime':_0x2b2d77};const _0x495623=_0x461267['params'][_0x100fd2(0x15b)],_0x548b9f=_0x461267[_0x100fd2(0x191)]['subUnitId'],_0x4097ad=[_0x2b2d77],_0x1ce2c9=[],_0xcd8512=[];for(let _0x3a9007=0x0;_0x3a9007<_0x5bafc6[_0x100fd2(0x191)][_0x100fd2(0x1a9)][_0x100fd2(0xbd)];_0x3a9007++){const _0x215066=_0x5bafc6[_0x100fd2(0x191)]['ranges'][_0x3a9007],_0x270fa3=_0x181fe4[_0x100fd2(0x191)]['range'],_0x3bfad7=_0x270fa3[_0x100fd2(0x1ee)]-_0x270fa3[_0x100fd2(0x10c)]+0x1;if(_0x270fa3[_0x100fd2(0x10c)]<_0x215066['startColumn']&&_0x270fa3[_0x100fd2(0x1ee)]<_0x215066['startColumn'])_0x1ce2c9['push']({..._0x215066}),_0xcd8512['push']({..._0x215066,'startColumn':_0x215066[_0x100fd2(0x10c)]-_0x3bfad7,'endColumn':_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7}),_0x215066[_0x100fd2(0x10c)]=_0x215066[_0x100fd2(0x10c)]-_0x3bfad7,_0x215066[_0x100fd2(0x1ee)]=_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7;else{if(_0x270fa3[_0x100fd2(0x10c)]<_0x215066[_0x100fd2(0x10c)]&&_0x270fa3[_0x100fd2(0x1ee)]>=_0x215066[_0x100fd2(0x10c)]&&_0x270fa3[_0x100fd2(0x1ee)]<=_0x215066['endColumn']){_0x1ce2c9[_0x100fd2(0x187)]({..._0x215066});const _0x313166={..._0x215066,'startColumn':_0x270fa3[_0x100fd2(0x10c)],'endColumn':_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7};K(_0x313166)&&_0x270fa3[_0x100fd2(0x1ee)]<_0x215066[_0x100fd2(0x1ee)]?(_0x270fa3['endColumn']<_0x215066['endColumn']&&_0xcd8512[_0x100fd2(0x187)](_0x313166),_0x215066[_0x100fd2(0x10c)]=_0x270fa3[_0x100fd2(0x10c)],_0x215066[_0x100fd2(0x1ee)]=_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7):(_0x5bafc6['params'][_0x100fd2(0x1a9)]['splice'](_0x3a9007,0x1),_0x3a9007--);}else{if(_0x270fa3[_0x100fd2(0x10c)]>_0x215066[_0x100fd2(0x10c)]&&_0x270fa3['endColumn']<_0x215066['endColumn']){_0x1ce2c9[_0x100fd2(0x187)]({..._0x215066});const _0x1d6a45={..._0x215066,'endColumn':_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7};K(_0x1d6a45)?(_0xcd8512[_0x100fd2(0x187)](_0x1d6a45),_0x215066['endColumn']=_0x215066[_0x100fd2(0x1ee)]-_0x3bfad7):(_0x5bafc6[_0x100fd2(0x191)][_0x100fd2(0x1a9)][_0x100fd2(0x200)](_0x3a9007,0x1),_0x3a9007--);}else{if(_0x270fa3['startColumn']>=_0x215066[_0x100fd2(0x10c)]&&_0x270fa3['startColumn']<=_0x215066[_0x100fd2(0x1ee)]&&_0x270fa3[_0x100fd2(0x1ee)]>_0x215066[_0x100fd2(0x1ee)]){_0x1ce2c9[_0x100fd2(0x187)]({..._0x215066});const _0x3e0f81={..._0x215066,'endColumn':_0x270fa3[_0x100fd2(0x10c)]-0x1};K(_0x3e0f81)&&_0x270fa3[_0x100fd2(0x10c)]>_0x215066['startColumn']?(_0xcd8512[_0x100fd2(0x187)](_0x3e0f81),_0x215066['endColumn']=_0x270fa3[_0x100fd2(0x10c)]-0x1):(_0x5bafc6['params'][_0x100fd2(0x1a9)][_0x100fd2(0x200)](_0x3a9007,0x1),_0x3a9007--);}else _0x270fa3['startColumn']>_0x215066['endColumn']||_0x270fa3[_0x100fd2(0x10c)]<=_0x215066[_0x100fd2(0x10c)]&&_0x270fa3[_0x100fd2(0x1ee)]>=_0x215066['endColumn']&&(_0x1ce2c9[_0x100fd2(0x187)]({..._0x215066}),_0x5bafc6[_0x100fd2(0x191)]['ranges'][_0x100fd2(0x200)](_0x3a9007,0x1),_0x3a9007--);}}}}return _0x1ce2c9['length']>0x0&&_0x4097ad[_0x100fd2(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x495623,'subUnitId':_0x548b9f,'ranges':_0x1ce2c9}}),_0xcd8512[_0x100fd2(0xbd)]>0x0&&_0x4097ad[_0x100fd2(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x495623,'subUnitId':_0x548b9f,'ranges':_0xcd8512}}),_0x5bafc6['params'][_0x100fd2(0x1a9)][_0x100fd2(0xbd)]===0x0&&(_0x5bafc6['id']=_0x411476['id']),{'m1Prime':_0x5bafc6,'m2Prime':_0x4097ad[_0x100fd2(0xbd)]>0x1?_0x4097ad:_0x4097ad[0x0]};}},dr={'m1':_0x5504b0['id'],'m2':_0x116e41['id'],'handler'(_0x42df9b,_0x20bffd){const _0x3a743a=_0x54481f,_0x334de1=_0x12a789[_0x3a743a(0xec)](_0x42df9b),_0xb7eb59=_0x12a789[_0x3a743a(0xec)](_0x20bffd);if(_0x42df9b['params']['unitId']!==_0x20bffd[_0x3a743a(0x191)][_0x3a743a(0x15b)]||_0x42df9b[_0x3a743a(0x191)]['subUnitId']!==_0x20bffd['params'][_0x3a743a(0x126)])return{'m1Prime':_0x334de1,'m2Prime':_0xb7eb59};const _0x497577=_0x42df9b[_0x3a743a(0x191)][_0x3a743a(0x15b)],_0x424f0f=_0x42df9b[_0x3a743a(0x191)][_0x3a743a(0x126)],_0x161842=[_0xb7eb59],_0x1d84c4=[],_0x5e3f6c=[];for(let _0x11a475=0x0;_0x11a475<_0x334de1[_0x3a743a(0x191)][_0x3a743a(0x1a9)]['length'];_0x11a475++){const _0x550601=_0x334de1[_0x3a743a(0x191)][_0x3a743a(0x1a9)][_0x11a475],_0x3e77ad=_0x20bffd[_0x3a743a(0x191)][_0x3a743a(0x1a6)],_0x1ec89e=_0x3e77ad[_0x3a743a(0xda)]-_0x3e77ad[_0x3a743a(0x11e)]+0x1;if(_0x3e77ad[_0x3a743a(0x11e)]<_0x550601[_0x3a743a(0x11e)]&&_0x3e77ad[_0x3a743a(0xda)]<_0x550601['startRow'])_0x1d84c4[_0x3a743a(0x187)]({..._0x550601}),_0x5e3f6c[_0x3a743a(0x187)]({..._0x550601,'startRow':_0x550601[_0x3a743a(0x11e)]-_0x1ec89e,'endRow':_0x550601[_0x3a743a(0xda)]-_0x1ec89e}),_0x550601[_0x3a743a(0x11e)]=_0x550601[_0x3a743a(0x11e)]-_0x1ec89e,_0x550601['endRow']=_0x550601[_0x3a743a(0xda)]-_0x1ec89e;else{if(_0x3e77ad[_0x3a743a(0x11e)]<_0x550601[_0x3a743a(0x11e)]&&_0x3e77ad['endRow']>=_0x550601[_0x3a743a(0x11e)]&&_0x3e77ad['endRow']<=_0x550601[_0x3a743a(0xda)]){_0x1d84c4[_0x3a743a(0x187)]({..._0x550601});const _0x5363bc={..._0x550601,'startRow':_0x3e77ad[_0x3a743a(0x11e)],'endRow':_0x550601[_0x3a743a(0xda)]-_0x1ec89e};K(_0x5363bc)&&_0x3e77ad[_0x3a743a(0xda)]<_0x550601[_0x3a743a(0xda)]?(_0x3e77ad[_0x3a743a(0xda)]<_0x550601[_0x3a743a(0xda)]&&_0x5e3f6c[_0x3a743a(0x187)](_0x5363bc),_0x550601['startRow']=_0x3e77ad[_0x3a743a(0x11e)],_0x550601[_0x3a743a(0xda)]=_0x550601['endRow']-_0x1ec89e):(_0x334de1[_0x3a743a(0x191)][_0x3a743a(0x1a9)]['splice'](_0x11a475,0x1),_0x11a475--);}else{if(_0x3e77ad[_0x3a743a(0x11e)]>_0x550601['startRow']&&_0x3e77ad[_0x3a743a(0xda)]<_0x550601[_0x3a743a(0xda)]){_0x1d84c4['push']({..._0x550601});const _0x18f6fb={..._0x550601,'endRow':_0x550601[_0x3a743a(0xda)]-_0x1ec89e};K(_0x18f6fb)?(_0x5e3f6c['push'](_0x18f6fb),_0x550601[_0x3a743a(0xda)]=_0x550601[_0x3a743a(0xda)]-_0x1ec89e):(_0x334de1[_0x3a743a(0x191)][_0x3a743a(0x1a9)]['splice'](_0x11a475,0x1),_0x11a475--);}else{if(_0x3e77ad[_0x3a743a(0x11e)]>=_0x550601['startRow']&&_0x3e77ad[_0x3a743a(0x11e)]<=_0x550601[_0x3a743a(0xda)]&&_0x3e77ad['endRow']>_0x550601['endRow']){_0x1d84c4[_0x3a743a(0x187)]({..._0x550601});const _0x1da06f={..._0x550601,'endRow':_0x3e77ad[_0x3a743a(0x11e)]-0x1};K(_0x1da06f)&&_0x3e77ad[_0x3a743a(0x11e)]>_0x550601[_0x3a743a(0x11e)]?(_0x5e3f6c[_0x3a743a(0x187)](_0x1da06f),_0x550601[_0x3a743a(0xda)]=_0x3e77ad[_0x3a743a(0x11e)]-0x1):(_0x334de1['params'][_0x3a743a(0x1a9)][_0x3a743a(0x200)](_0x11a475,0x1),_0x11a475--);}else _0x3e77ad[_0x3a743a(0x11e)]>_0x550601['endRow']||_0x3e77ad[_0x3a743a(0x11e)]<=_0x550601['startRow']&&_0x3e77ad[_0x3a743a(0xda)]>=_0x550601['endRow']&&(_0x1d84c4[_0x3a743a(0x187)]({..._0x550601}),_0x334de1[_0x3a743a(0x191)][_0x3a743a(0x1a9)][_0x3a743a(0x200)](_0x11a475,0x1),_0x11a475--);}}}}return _0x1d84c4[_0x3a743a(0xbd)]>0x0&&_0x161842['unshift']({'id':_0x3194c5['id'],'params':{'unitId':_0x497577,'subUnitId':_0x424f0f,'ranges':_0x1d84c4}}),_0x5e3f6c[_0x3a743a(0xbd)]>0x0&&_0x161842[_0x3a743a(0x187)]({'id':_0x5504b0['id'],'params':{'unitId':_0x497577,'subUnitId':_0x424f0f,'ranges':_0x5e3f6c}}),_0x334de1['params'][_0x3a743a(0x1a9)][_0x3a743a(0xbd)]===0x0&&(_0x334de1['id']=_0x411476['id']),{'m1Prime':_0x334de1,'m2Prime':_0x161842[_0x3a743a(0xbd)]>0x1?_0x161842:_0x161842[0x0]};}},Rn={'m1':_0x5504b0['id'],'m2':_0x3194c5['id'],'handler'(_0xb9699f,_0x5183dc){const _0x14559d=_0x54481f,_0x161818=_0x12a789[_0x14559d(0xec)](_0xb9699f),_0x5817bb=_0x12a789[_0x14559d(0xec)](_0x5183dc);if(_0xb9699f['params'][_0x14559d(0x15b)]!==_0x5183dc[_0x14559d(0x191)]['unitId']||_0xb9699f[_0x14559d(0x191)][_0x14559d(0x126)]!==_0x5183dc[_0x14559d(0x191)][_0x14559d(0x126)])return{'m1Prime':_0x161818,'m2Prime':_0x5817bb};const _0x58a4d0=[..._0x5817bb['params'][_0x14559d(0x1a9)]];for(let _0x3cac35=0x0;_0x3cac35<_0x161818[_0x14559d(0x191)][_0x14559d(0x1a9)]['length'];_0x3cac35++){let _0x591e5a=!0x1;for(let _0x1f68ca=0x0;_0x1f68ca<_0x5817bb[_0x14559d(0x191)][_0x14559d(0x1a9)][_0x14559d(0xbd)];_0x1f68ca++){const _0x2b576b=_0x161818[_0x14559d(0x191)][_0x14559d(0x1a9)][_0x3cac35],_0xc27667=_0x5817bb[_0x14559d(0x191)][_0x14559d(0x1a9)][_0x1f68ca];if(_0x12b536[_0x14559d(0x16e)](_0x2b576b,_0xc27667)){_0x591e5a=!0x0;break;}}_0x591e5a&&(_0x58a4d0[_0x14559d(0x187)](_0x161818[_0x14559d(0x191)][_0x14559d(0x1a9)][_0x3cac35]),_0x161818['params']['ranges']['splice'](_0x3cac35,0x1),_0x3cac35--);}return _0x5817bb[_0x14559d(0x191)][_0x14559d(0x1a9)]=_0x58a4d0,_0x161818[_0x14559d(0x191)]['ranges']['length']===0x0&&(_0x161818['id']=_0x411476['id']),{'m1Prime':_0x161818,'m2Prime':_0x5817bb};}},mr={'m1':_0x5504b0['id'],'m2':_0x59880b['id'],'handler'(_0x1255a2,_0x15e431){const _0x331419=_0x54481f,_0x5ed96e=_0x12a789[_0x331419(0xec)](_0x1255a2),_0x244947=_0x12a789[_0x331419(0xec)](_0x15e431);if(_0x1255a2[_0x331419(0x191)][_0x331419(0x15b)]!==_0x15e431[_0x331419(0x191)]['unitId']||_0x1255a2[_0x331419(0x191)][_0x331419(0x126)]!==_0x15e431['params'][_0x331419(0x126)])return{'m1Prime':_0x5ed96e,'m2Prime':_0x244947};const _0x5037c0=[_0x5ed96e],_0x2fd231=[_0x244947],_0x5aaef5=new _0x3597fb(_0x12a789['deepClone'](_0x15e431['params'][_0x331419(0xaf)])),_0x4af9db=new Set(),_0x27c662={};for(let _0x1343be=0x0;_0x1343be<_0x5ed96e[_0x331419(0x191)][_0x331419(0x1a9)][_0x331419(0xbd)];_0x1343be++){const _0x2a83cc=_0x5ed96e['params']['ranges'][_0x1343be],{startRow:_0x5515c3,startColumn:_0x416d29,endRow:_0x269489,endColumn:_0x36191e}=_0x2a83cc;let _0x4ce8d8=!0x1;_0x5aaef5['forValue']((_0x4f2a41,_0x463f31,_0x3765ba)=>{const _0x458c13=_0x331419;if(_0x4f2a41>=_0x5515c3&&_0x4f2a41<=_0x269489&&_0x463f31>=_0x416d29&&_0x463f31<=_0x36191e){const _0x4a62b7=_0x5aaef5[_0x458c13(0xf5)](_0x4f2a41,_0x463f31),_0xe8cb65=_0x4a62b7===null?{'v':null,'s':null,'t':null,'si':null,'p':null,'f':null}:_0x4a62b7;_0xe8cb65&&(_0x27c662[_0x4f2a41]||(_0x27c662[_0x4f2a41]={}),_0x27c662[_0x4f2a41][_0x463f31]={},(_0x3765ba==null?void 0x0:_0x3765ba['v'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['v']=null,delete _0xe8cb65['v']),(_0x3765ba==null?void 0x0:_0x3765ba['f'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['f']=null,delete _0xe8cb65['f']),(_0x3765ba==null?void 0x0:_0x3765ba['t'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['t']=null,delete _0xe8cb65['t']),(_0x3765ba==null?void 0x0:_0x3765ba['si'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['si']=null,delete _0xe8cb65['si']),(_0x3765ba==null?void 0x0:_0x3765ba['p'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['p']=null,delete _0xe8cb65['p']),(_0x3765ba==null?void 0x0:_0x3765ba['s'])!==void 0x0&&(_0x27c662[_0x4f2a41][_0x463f31]['s']=null,delete _0xe8cb65['s']),_0x5aaef5[_0x458c13(0x1a3)](_0x4f2a41,_0x463f31,_0xe8cb65),_0x4ce8d8=!0x0);}}),_0x4ce8d8&&(_0x4af9db[_0x331419(0x8e)]({..._0x2a83cc}),_0x5ed96e[_0x331419(0x191)]['ranges'][_0x331419(0x200)](_0x1343be,0x1),_0x1343be--);}return _0x244947[_0x331419(0x191)]['cellValue']=_0x5aaef5[_0x331419(0xd9)](),_0x4af9db['size']>0x0&&_0x2fd231[_0x331419(0xd5)]({'id':_0x3194c5['id'],'params':{'unitId':_0x1255a2[_0x331419(0x191)][_0x331419(0x15b)],'subUnitId':_0x1255a2[_0x331419(0x191)][_0x331419(0x126)],'ranges':Array[_0x331419(0xad)](_0x4af9db)}}),_0x5ed96e[_0x331419(0x191)][_0x331419(0x1a9)][_0x331419(0xbd)]===0x0&&(_0x5ed96e['id']=_0x411476['id']),Object[_0x331419(0x98)](_0x27c662)[_0x331419(0xbd)]>0x0&&_0x5037c0['unshift']({'id':_0x59880b['id'],'params':{'unitId':_0x1255a2[_0x331419(0x191)][_0x331419(0x15b)],'subUnitId':_0x1255a2['params'][_0x331419(0x126)],'cellValue':_0x27c662}}),{'m1Prime':_0x5037c0[_0x331419(0xbd)]>0x1?_0x5037c0:_0x5037c0[0x0],'m2Prime':_0x2fd231[_0x331419(0xbd)]>0x1?_0x2fd231:_0x2fd231[0x0]};}},hn={'m1':_0x5504b0['id'],'m2':_0x22c7b4['id'],'handler'(_0x5bc326,_0x5da755){const _0x3c1c88=_0x54481f,_0x22d118={'m1Prime':[],'m2Prime':[]};if(_0x5bc326[_0x3c1c88(0x191)][_0x3c1c88(0x15b)]!==_0x5da755['params'][_0x3c1c88(0x15b)]||_0x5bc326[_0x3c1c88(0x191)][_0x3c1c88(0x126)]!==_0x5da755[_0x3c1c88(0x191)][_0x3c1c88(0x126)])return _0x22d118;const _0x246eba=_0x12a789['deepClone'](_0x5da755),_0x9a79af=_0x246eba[_0x3c1c88(0x191)][_0x3c1c88(0x11d)];_0x9a79af['forEach']((_0x2078fd,_0x1edc18)=>{const _0x34f6ea=_0x3c1c88,{range:_0x22e648,primary:_0x5f4760}=_0x2078fd;_0x5bc326['params'][_0x34f6ea(0x1a9)][_0x34f6ea(0x147)](_0x54ad15=>{const _0x246c9d=_0x34f6ea;_0x12b536['intersects'](_0x54ad15,_0x22e648)&&(_0x22e648[_0x246c9d(0x11e)]=Math['min'](_0x54ad15[_0x246c9d(0x11e)],_0x22e648['startRow']),_0x22e648[_0x246c9d(0x10c)]=Math[_0x246c9d(0x12b)](_0x54ad15[_0x246c9d(0x10c)],_0x22e648[_0x246c9d(0x10c)]),_0x22e648[_0x246c9d(0xda)]=Math[_0x246c9d(0x1a7)](_0x54ad15[_0x246c9d(0xda)],_0x22e648[_0x246c9d(0xda)]),_0x22e648[_0x246c9d(0x1ee)]=Math['max'](_0x54ad15['endColumn'],_0x22e648[_0x246c9d(0x1ee)])),_0x5f4760&&_0x12b536[_0x246c9d(0x16e)](_0x54ad15,_0x5f4760)&&_0x1edc18===_0x9a79af[_0x246c9d(0xbd)]-0x1&&(_0x5f4760[_0x246c9d(0x10c)]===_0x54ad15[_0x246c9d(0x10c)]&&_0x5f4760['startRow']&&_0x54ad15[_0x246c9d(0x11e)]&&(_0x5f4760[_0x246c9d(0x1d1)]=!0x0),_0x5f4760[_0x246c9d(0x11e)]=Math[_0x246c9d(0x12b)](_0x54ad15[_0x246c9d(0x11e)],_0x5f4760[_0x246c9d(0x11e)]),_0x5f4760[_0x246c9d(0x10c)]=Math['min'](_0x54ad15[_0x246c9d(0x10c)],_0x5f4760[_0x246c9d(0x10c)]),_0x5f4760[_0x246c9d(0xda)]=Math[_0x246c9d(0x1a7)](_0x54ad15['endRow'],_0x5f4760[_0x246c9d(0xda)]),_0x5f4760[_0x246c9d(0x1ee)]=Math[_0x246c9d(0x1a7)](_0x54ad15[_0x246c9d(0x1ee)],_0x5f4760[_0x246c9d(0x1ee)]),_0x5f4760[_0x246c9d(0xd3)]=!0x0);});}),_0x9a79af[_0x3c1c88(0x182)]((_0x28691a,_0x1946c5)=>{const _0x41b6fd=_0x3c1c88,_0x5b2a7c=_0x28691a['range'],_0x13d23e=_0x1946c5[_0x41b6fd(0x1a6)];return _0x5b2a7c[_0x41b6fd(0x11e)]===_0x13d23e[_0x41b6fd(0x11e)]?_0x5b2a7c[_0x41b6fd(0x10c)]-_0x13d23e['startColumn']:_0x5b2a7c[_0x41b6fd(0x11e)]-_0x13d23e[_0x41b6fd(0x11e)];});const _0x59cdb2=[];let _0x1fbed7=null;for(const _0x1f4da2 of _0x9a79af)_0x1fbed7===null||!_0x12b536['intersects'](_0x1fbed7['range'],_0x1f4da2[_0x3c1c88(0x1a6)])?(_0x59cdb2[_0x3c1c88(0x187)](_0x1f4da2),_0x1fbed7=_0x1f4da2):(_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0x11e)]=Math[_0x3c1c88(0x12b)](_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0x11e)],_0x1f4da2[_0x3c1c88(0x1a6)][_0x3c1c88(0x11e)]),_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0x10c)]=Math[_0x3c1c88(0x12b)](_0x1fbed7['range'][_0x3c1c88(0x10c)],_0x1f4da2[_0x3c1c88(0x1a6)]['startColumn']),_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0xda)]=Math['max'](_0x1fbed7['range'][_0x3c1c88(0xda)],_0x1f4da2[_0x3c1c88(0x1a6)]['endRow']),_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0x1ee)]=Math[_0x3c1c88(0x1a7)](_0x1fbed7[_0x3c1c88(0x1a6)][_0x3c1c88(0x1ee)],_0x1f4da2[_0x3c1c88(0x1a6)][_0x3c1c88(0x1ee)]),_0x1f4da2['primary']&&(_0x1fbed7[_0x3c1c88(0x110)]=_0x1f4da2['primary']));return _0x246eba[_0x3c1c88(0x191)]['selections']=_0x59cdb2,_0x22d118[_0x3c1c88(0x1e8)][_0x3c1c88(0x187)](_0x246eba),_0x22d118;}},gn={'m1':_0xfb6287['id'],'m2':_0x41a8ef['id'],'handler':(_0x8c1ea1,_0x580e42)=>{const _0x539703=_0x54481f,_0x455786={'m1Prime':_0x8c1ea1,'m2Prime':_0x580e42};return _0x8c1ea1['params'][_0x539703(0x15b)]!==_0x580e42[_0x539703(0x191)]['unitId']||_0x8c1ea1[_0x539703(0x191)]['subUnitId']!==_0x580e42['params']['subUnitId']?_0x455786:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20add\x20comment')};}},In={'m1':_0xfb6287['id'],'m2':_0x1c40ba['id'],'handler':(_0x4d79c6,_0xd5ce22)=>{const _0x5911c4=_0x54481f,_0x557f9d={'m1Prime':_0x4d79c6,'m2Prime':_0xd5ce22};return _0x4d79c6[_0x5911c4(0x191)][_0x5911c4(0x15b)]!==_0xd5ce22[_0x5911c4(0x191)]['unitId']||_0x4d79c6['params'][_0x5911c4(0x126)]!==_0xd5ce22[_0x5911c4(0x191)][_0x5911c4(0x126)]?_0x557f9d:{'error':new Error(_0x5911c4(0x171))};}},wn={'m1':_0xfb6287['id'],'m2':_0x3b4149['id'],'handler':(_0x2304cc,_0x2c0fb8)=>{const _0x171885=_0x54481f,_0x2954ff={'m1Prime':_0x2304cc,'m2Prime':_0x2c0fb8};return _0x2304cc[_0x171885(0x191)][_0x171885(0x15b)]!==_0x2c0fb8[_0x171885(0x191)][_0x171885(0x15b)]||_0x2304cc['params']['subUnitId']!==_0x2c0fb8[_0x171885(0x191)][_0x171885(0x126)]?_0x2954ff:{'error':new Error(_0x171885(0x201))};}},Cn={'m1':_0xfb6287['id'],'m2':_0x5504b0['id'],'handler':(_0x75cdbf,_0x94d1ad)=>{const _0x3aea87=_0x54481f,_0x40811f={'m1Prime':_0x75cdbf,'m2Prime':_0x94d1ad};return _0x75cdbf['params'][_0x3aea87(0x15b)]!==_0x94d1ad[_0x3aea87(0x191)]['unitId']||_0x75cdbf[_0x3aea87(0x191)]['subUnitId']!==_0x94d1ad[_0x3aea87(0x191)][_0x3aea87(0x126)]?_0x40811f:{'error':new Error(_0x3aea87(0x192))};}},Pn={'m1':_0xfb6287['id'],'m2':_0xfb6287['id'],'handler':(_0x354ab3,_0x56f375)=>{const _0x3dbad7=_0x54481f,_0x3ea3e7={'m1Prime':_0x354ab3,'m2Prime':_0x56f375};return _0x354ab3['params'][_0x3dbad7(0x15b)]!==_0x56f375[_0x3dbad7(0x191)][_0x3dbad7(0x15b)]||_0x354ab3[_0x3dbad7(0x191)][_0x3dbad7(0x126)]!==_0x56f375[_0x3dbad7(0x191)][_0x3dbad7(0xe7)][_0x3dbad7(0x126)]?_0x3ea3e7:{'error':new Error(_0x3dbad7(0x140))};}},Un={'m1':_0xfb6287['id'],'m2':_0x3be156['id'],'handler':(_0x225e10,_0x38cd4f)=>{const _0x525d1f=_0x54481f,_0x404663={'m1Prime':_0x225e10,'m2Prime':_0x38cd4f};return _0x225e10[_0x525d1f(0x191)]['unitId']!==_0x38cd4f['params'][_0x525d1f(0x15b)]||_0x225e10[_0x525d1f(0x191)][_0x525d1f(0x126)]!==_0x38cd4f[_0x525d1f(0x191)]['subUnitId']?_0x404663:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20worksheet\x20order')};}},bn={'m1':_0xfb6287['id'],'m2':_0x2d6c0f['id'],'handler':(_0x4faeb6,_0x348a18)=>{const _0x5820cd=_0x54481f,_0x5d50ed={'m1Prime':_0x4faeb6,'m2Prime':_0x348a18};return _0x4faeb6[_0x5820cd(0x191)]['unitId']!==_0x348a18['params']['unitId']||_0x4faeb6[_0x5820cd(0x191)]['subUnitId']!==_0x348a18[_0x5820cd(0x191)]['subUnitId']?_0x5d50ed:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule')};}},Mn={'m1':_0xfb6287['id'],'m2':_0x3732ba['id'],'handler':(_0x2cc1a1,_0xf353e)=>{const _0xaae5b1=_0x54481f,_0x2fbfbc={'m1Prime':_0x2cc1a1,'m2Prime':_0xf353e};return _0x2cc1a1[_0xaae5b1(0x191)][_0xaae5b1(0x15b)]!==_0xf353e['params'][_0xaae5b1(0x15b)]||_0x2cc1a1['params'][_0xaae5b1(0x126)]!==_0xf353e[_0xaae5b1(0x191)]['subUnitId']?_0x2fbfbc:{'error':new Error(_0xaae5b1(0x210))};}},vn={'m1':_0xfb6287['id'],'m2':_0xa7a746['id'],'handler':(_0x4ded51,_0x57f328)=>{const _0x3385f4=_0x54481f,_0x134e2d={'m1Prime':_0x4ded51,'m2Prime':_0x57f328};return _0x4ded51[_0x3385f4(0x191)]['unitId']!==_0x57f328[_0x3385f4(0x191)][_0x3385f4(0x15b)]||_0x4ded51[_0x3385f4(0x191)][_0x3385f4(0x126)]!==_0x57f328[_0x3385f4(0x191)][_0x3385f4(0x126)]?_0x134e2d:{'error':new Error(_0x3385f4(0x217))};}},En={'m1':_0xfb6287['id'],'m2':_0x1c90f1['id'],'handler':(_0x154eb6,_0x2af47a)=>{const _0x3cbc7f=_0x54481f,_0x15a9fd={'m1Prime':_0x154eb6,'m2Prime':_0x2af47a};return _0x154eb6[_0x3cbc7f(0x191)]['unitId']!==_0x2af47a[_0x3cbc7f(0x191)]['unitId']||_0x154eb6[_0x3cbc7f(0x191)]['subUnitId']!==_0x2af47a[_0x3cbc7f(0x191)][_0x3cbc7f(0x126)]?_0x15a9fd:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20col')};}},Sn={'m1':_0xfb6287['id'],'m2':_0xeb63e6['id'],'handler':(_0xd2700e,_0x479ac5)=>{const _0x2cf0a5=_0x54481f,_0x343cad={'m1Prime':_0xd2700e,'m2Prime':_0x479ac5};return _0xd2700e[_0x2cf0a5(0x191)]['unitId']!==_0x479ac5[_0x2cf0a5(0x191)][_0x2cf0a5(0x15b)]||_0xd2700e[_0x2cf0a5(0x191)][_0x2cf0a5(0x126)]!==_0x479ac5[_0x2cf0a5(0x191)][_0x2cf0a5(0xad)][_0x2cf0a5(0x126)]?_0x343cad:{'error':new Error(_0x2cf0a5(0x133))};}},Wn={'m1':_0xfb6287['id'],'m2':_0xfa530e['id'],'handler':(_0x450ac4,_0xfcd222)=>{const _0x55e2d6=_0x54481f,_0x1d20d2={'m1Prime':_0x450ac4,'m2Prime':_0xfcd222};return _0x450ac4[_0x55e2d6(0x191)][_0x55e2d6(0x15b)]!==_0xfcd222[_0x55e2d6(0x191)][_0x55e2d6(0x15b)]||_0x450ac4['params'][_0x55e2d6(0x126)]!==_0xfcd222['params'][_0x55e2d6(0x126)]?_0x1d20d2:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20move\x20row')};}},Vn={'m1':_0xfb6287['id'],'m2':_0x491a86['id'],'handler':(_0x45ad53,_0x45ff98)=>{const _0x16ae9e=_0x54481f,_0x53499e={'m1Prime':_0x45ad53,'m2Prime':_0x45ff98};return _0x45ad53[_0x16ae9e(0x191)][_0x16ae9e(0x15b)]!==_0x45ff98['params'][_0x16ae9e(0x15b)]||_0x45ad53[_0x16ae9e(0x191)]['subUnitId']!==_0x45ff98['params']['subUnitId']?_0x53499e:{'error':new Error(_0x16ae9e(0x194))};}},_n={'m1':_0xfb6287['id'],'m2':_0x42cad4['id'],'handler':(_0x1133ff,_0x52deaf)=>{const _0x48dfce=_0x54481f,_0x17801b={'m1Prime':_0x1133ff,'m2Prime':_0x52deaf};return _0x1133ff[_0x48dfce(0x191)]['unitId']!==_0x52deaf[_0x48dfce(0x191)][_0x48dfce(0x15b)]||_0x1133ff['params'][_0x48dfce(0x126)]!==_0x52deaf[_0x48dfce(0x191)][_0x48dfce(0x126)]?_0x17801b:{'error':new Error(_0x48dfce(0x1f5))};}},On={'m1':_0xfb6287['id'],'m2':_0x180381['id'],'handler':(_0x212d82,_0x3052b0)=>{const _0x25c2b7=_0x54481f,_0x1e23c0={'m1Prime':_0x212d82,'m2Prime':_0x3052b0};return _0x212d82[_0x25c2b7(0x191)]['unitId']!==_0x3052b0[_0x25c2b7(0x191)]['unitId']||_0x212d82[_0x25c2b7(0x191)][_0x25c2b7(0x126)]!==_0x3052b0['params'][_0x25c2b7(0x126)]?_0x1e23c0:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20numfmt')};}},yn={'m1':_0xfb6287['id'],'m2':_0x116e41['id'],'handler':(_0x2cb3fe,_0x118b48)=>{const _0x556bc3=_0x54481f,_0x7cc50c={'m1Prime':_0x2cb3fe,'m2Prime':_0x118b48};return _0x2cb3fe['params']['unitId']!==_0x118b48[_0x556bc3(0x191)][_0x556bc3(0x15b)]||_0x2cb3fe['params'][_0x556bc3(0x126)]!==_0x118b48[_0x556bc3(0x191)][_0x556bc3(0x126)]?_0x7cc50c:{'error':new Error(_0x556bc3(0x1a1))};}},Nn={'m1':_0xfb6287['id'],'m2':_0x431d63['id'],'handler':(_0x3f60fd,_0x158f79)=>{const _0x42638e=_0x54481f,_0x16cd8e={'m1Prime':_0x3f60fd,'m2Prime':_0x158f79};return _0x3f60fd[_0x42638e(0x191)]['unitId']!==_0x158f79[_0x42638e(0x191)][_0x42638e(0x15b)]||_0x3f60fd[_0x42638e(0x191)]['subUnitId']!==_0x158f79[_0x42638e(0x191)][_0x42638e(0x126)]?_0x16cd8e:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20remove\x20filter')};}},Dn={'m1':_0xfb6287['id'],'m2':_0x58230c['id'],'handler':(_0x4aaebf,_0x3c1b62)=>{const _0x2f7772=_0x54481f,_0x496e91={'m1Prime':_0x4aaebf,'m2Prime':_0x3c1b62};return _0x4aaebf[_0x2f7772(0x191)][_0x2f7772(0x15b)]!==_0x3c1b62[_0x2f7772(0x191)][_0x2f7772(0x15b)]||_0x4aaebf[_0x2f7772(0x191)][_0x2f7772(0x126)]!==_0x3c1b62[_0x2f7772(0x191)][_0x2f7772(0x126)]?_0x496e91:{'error':new Error(_0x2f7772(0xc2))};}},An={'m1':_0xfb6287['id'],'m2':_0x3194c5['id'],'handler':(_0x1377b2,_0x47755e)=>{const _0x31286c=_0x54481f,_0x1ccbed={'m1Prime':_0x1377b2,'m2Prime':_0x47755e};return _0x1377b2['params']['unitId']!==_0x47755e[_0x31286c(0x191)]['unitId']||_0x1377b2[_0x31286c(0x191)][_0x31286c(0x126)]!==_0x47755e['params'][_0x31286c(0x126)]?_0x1ccbed:{'error':new Error(_0x31286c(0x21a))};}},Tn={'m1':_0xfb6287['id'],'m2':_0x311d1a['id'],'handler':(_0x309ace,_0x27eb2b)=>{const _0x50c6a1=_0x54481f,_0xbfa4a1={'m1Prime':_0x309ace,'m2Prime':_0x27eb2b};return _0x309ace[_0x50c6a1(0x191)][_0x50c6a1(0x15b)]!==_0x27eb2b[_0x50c6a1(0x191)][_0x50c6a1(0x15b)]||_0x309ace[_0x50c6a1(0x191)][_0x50c6a1(0x126)]!==_0x27eb2b['params'][_0x50c6a1(0x126)]?_0xbfa4a1:{'error':new Error(_0x50c6a1(0x219))};}},Ln={'m1':_0xfb6287['id'],'m2':_0x4310ec['id'],'handler':(_0x32ef15,_0x3c41f7)=>{const _0x5e13a9=_0x54481f,_0x5e279f={'m1Prime':_0x32ef15,'m2Prime':_0x3c41f7};return _0x32ef15['params'][_0x5e13a9(0x15b)]!==_0x3c41f7[_0x5e13a9(0x191)][_0x5e13a9(0x15b)]||_0x32ef15[_0x5e13a9(0x191)][_0x5e13a9(0x126)]!==_0x3c41f7[_0x5e13a9(0x191)]['subUnitId']?_0x5e279f:{'error':new Error('add\x20worksheet\x20protection\x20is\x20conflict\x20with\x20set\x20frozen')};}},kn={'m1':_0xfb6287['id'],'m2':_0x30c2c8['id'],'handler':(_0x5d659d,_0x4588ce)=>{const _0xe9ae93=_0x54481f,_0x1fbb88={'m1Prime':_0x5d659d,'m2Prime':_0x4588ce};return _0x5d659d[_0xe9ae93(0x191)][_0xe9ae93(0x15b)]!==_0x4588ce['params'][_0xe9ae93(0x15b)]||_0x5d659d[_0xe9ae93(0x191)]['subUnitId']!==_0x4588ce['params'][_0xe9ae93(0x126)]?_0x1fbb88:{'error':new Error(_0xe9ae93(0xc4))};}},xn={'m1':_0xfb6287['id'],'m2':_0x37e736['id'],'handler':(_0x466df6,_0x1681f3)=>{const _0x569b96=_0x54481f,_0x548a25={'m1Prime':_0x466df6,'m2Prime':_0x1681f3};return _0x466df6['params']['unitId']!==_0x1681f3[_0x569b96(0x191)][_0x569b96(0x15b)]||_0x466df6[_0x569b96(0x191)][_0x569b96(0x126)]!==_0x1681f3[_0x569b96(0x191)][_0x569b96(0x126)]?_0x548a25:{'error':new Error(_0x569b96(0x9f))};}},Hn={'m1':_0xfb6287['id'],'m2':_0x2d1a15['id'],'handler':(_0x510c1b,_0xa51f73)=>{const _0x51f4c4=_0x54481f,_0x3b2794={'m1Prime':_0x510c1b,'m2Prime':_0xa51f73};return _0x510c1b[_0x51f4c4(0x191)]['unitId']!==_0xa51f73['params'][_0x51f4c4(0x15b)]||_0x510c1b['params'][_0x51f4c4(0x126)]!==_0xa51f73[_0x51f4c4(0x191)][_0x51f4c4(0x126)]?_0x3b2794:{'error':new Error(_0x51f4c4(0xa0))};}},Fn={'m1':_0xfb6287['id'],'m2':_0x90af58['id'],'handler':(_0x13ed5c,_0x54a448)=>{const _0x56e5cd=_0x54481f,_0x32f416={'m1Prime':_0x13ed5c,'m2Prime':_0x54a448};return _0x13ed5c[_0x56e5cd(0x191)]['unitId']!==_0x54a448[_0x56e5cd(0x191)][_0x56e5cd(0x15b)]||_0x13ed5c[_0x56e5cd(0x191)][_0x56e5cd(0x126)]!==_0x54a448[_0x56e5cd(0x191)][_0x56e5cd(0x126)]?_0x32f416:{'error':new Error(_0x56e5cd(0x1d4))};}},Bn={'m1':_0xfb6287['id'],'m2':_0x62fd77['id'],'handler':(_0x526215,_0x364f13)=>{const _0x301b5d=_0x54481f,_0x52064a={'m1Prime':_0x526215,'m2Prime':_0x364f13};return _0x526215[_0x301b5d(0x191)][_0x301b5d(0x15b)]!==_0x364f13[_0x301b5d(0x191)][_0x301b5d(0x15b)]||_0x526215[_0x301b5d(0x191)][_0x301b5d(0x126)]!==_0x364f13['params'][_0x301b5d(0x126)]?_0x52064a:{'error':new Error(_0x301b5d(0xbf))};}},Gn={'m1':_0xfb6287['id'],'m2':_0x5ad83d['id'],'handler':(_0x1d401e,_0x22b69d)=>{const _0x33ff8f=_0x54481f,_0x4e1436={'m1Prime':_0x1d401e,'m2Prime':_0x22b69d};return _0x1d401e['params'][_0x33ff8f(0x15b)]!==_0x22b69d[_0x33ff8f(0x191)][_0x33ff8f(0x15b)]||_0x1d401e[_0x33ff8f(0x191)][_0x33ff8f(0x126)]!==_0x22b69d[_0x33ff8f(0x191)][_0x33ff8f(0x126)]?_0x4e1436:{'error':new Error(_0x33ff8f(0x104))};}},jn={'m1':_0x47d358['id'],'m2':_0x41a8ef['id'],'handler':(_0x3b845d,_0xffdc2d)=>{const _0x18aa73=_0x54481f,_0x28fec4=_0x3b845d[_0x18aa73(0x191)],_0xf1f896=_0xffdc2d[_0x18aa73(0x191)];return _0x28fec4[_0x18aa73(0x15b)]===_0xf1f896[_0x18aa73(0x15b)]&&_0x28fec4['subUnitId']===_0xf1f896['subUnitId']&&_0x28fec4[_0x18aa73(0xa1)]===_0xf1f896[_0x18aa73(0x111)][_0x18aa73(0x1d3)]?{'m1Prime':_0x3b845d,'m2Prime':[]}:{'m1Prime':_0x3b845d,'m2Prime':_0xffdc2d};}},$n={'m1':_0x47d358['id'],'m2':_0x47d358['id'],'handler':(_0x11df17,_0x417ccd)=>{const _0x43e03d=_0x54481f,_0xed6ad=_0x11df17[_0x43e03d(0x191)],_0x507c1c=_0x417ccd[_0x43e03d(0x191)],_0x7a2344={'m1Prime':_0x11df17,'m2Prime':_0x417ccd};return _0xed6ad[_0x43e03d(0x15b)]!==_0x507c1c[_0x43e03d(0x15b)]||_0xed6ad[_0x43e03d(0x126)]!==_0x507c1c[_0x43e03d(0x126)]||_0xed6ad['commentId']!==_0x507c1c[_0x43e03d(0xa1)]?_0x7a2344:{'m1Prime':[],'m2Prime':[]};}},Yn={'m1':_0x2d6c0f['id'],'m2':_0x2d6c0f['id'],'handler'(_0x10d11f,_0x345473){return{'m1Prime':_0x10d11f,'m2Prime':_0x345473};}},It=(_0x587a23,_0x2f1485)=>{const _0x4280f4=_0x54481f,_0x51953a=_0x1f23be(_0x587a23[_0x4280f4(0x191)]['comment'][_0x4280f4(0x21e)]),_0x383231={'startColumn':_0x51953a['column'],'endColumn':_0x51953a[_0x4280f4(0x15a)],'startRow':_0x51953a[_0x4280f4(0x22d)],'endRow':_0x51953a['row']},_0x51c468=_0x2e41c3(_0x383231,_0x2f1485);if(!_0x51c468)return[{'id':_0x47d358['id'],'params':{..._0x587a23[_0x4280f4(0x191)],'comment':void 0x0,'commentId':_0x587a23[_0x4280f4(0x191)][_0x4280f4(0x111)]['id']}}];const _0x5dbe7d=_0x4ff173(_0x51c468);return _0x5dbe7d===_0x587a23[_0x4280f4(0x191)][_0x4280f4(0x111)][_0x4280f4(0x21e)]?[]:[{'id':_0x44bb69['id'],'params':{..._0x587a23[_0x4280f4(0x191)],'comment':void 0x0,'payload':{'ref':_0x5dbe7d,'commentId':_0x587a23[_0x4280f4(0x191)][_0x4280f4(0x111)]['id']}}}];},Jn={'m1':_0x3732ba['id'],'m2':_0x41a8ef['id'],'handler':(_0x569a2c,_0x54a406)=>{const _0x5a8033=_0x54481f,_0x3c1896={'m1Prime':_0x569a2c,'m2Prime':_0x54a406};if(_0x569a2c[_0x5a8033(0x191)][_0x5a8033(0x15b)]!==_0x54a406[_0x5a8033(0x191)][_0x5a8033(0x15b)]||_0x569a2c['params'][_0x5a8033(0x126)]!==_0x54a406['params']['subUnitId'])return _0x3c1896;const _0x5dd7ab={'id':_0x1e49c2['id'],'params':{'unitId':_0x569a2c['params']['unitId'],'subUnitId':_0x569a2c[_0x5a8033(0x191)]['subUnitId'],'range':_0x569a2c['params'][_0x5a8033(0x1a6)]}},_0x1c1a88=It(_0x54a406,_0x5dd7ab);return{'m1Prime':[_0x569a2c,..._0x1c1a88],'m2Prime':[_0x54a406,..._0x1c1a88]};}};function h(_0x143576){const _0x5a9096=_0x54481f;return{..._0x143576,'rangeType':_0x55bc3d[_0x5a9096(0xe2)]};}function ft(_0x50b200,_0x195401,_0x3edbb7,_0x1365ff){const _0x599520=_0x54481f;if(_0x1365ff<0x0){for(let _0x1d5d9a=_0x195401;_0x1d5d9a<_0x195401+_0x3edbb7;_0x1d5d9a++)if(_0x50b200[_0x599520(0x97)](_0x1d5d9a)){_0x50b200[_0x599520(0x97)](_0x1d5d9a+_0x1365ff)||(_0x50b200[_0x1d5d9a+_0x1365ff]={});const _0x1e840d=_0x50b200[_0x1d5d9a],_0x1b74e0=Object[_0x599520(0x98)](_0x1e840d)['map'](Number)[_0x599520(0x182)]((_0x259ad7,_0x315184)=>_0x259ad7-_0x315184);for(const _0x562161 of _0x1b74e0)_0x50b200[_0x1d5d9a+_0x1365ff][_0x562161]=_0x1e840d[_0x562161];delete _0x50b200[_0x1d5d9a];}else delete _0x50b200[_0x1d5d9a+_0x1365ff];}else{for(let _0x258df4=_0x195401+_0x3edbb7-0x1;_0x258df4>=_0x195401;_0x258df4--)if(_0x50b200['hasOwnProperty'](_0x258df4)){_0x50b200['hasOwnProperty'](_0x258df4+_0x1365ff)||(_0x50b200[_0x258df4+_0x1365ff]={});const _0x4a3050=_0x50b200[_0x258df4],_0x458c73=Object[_0x599520(0x98)](_0x4a3050)[_0x599520(0x21d)](Number)[_0x599520(0x182)]((_0x1113c4,_0x25ef51)=>_0x1113c4-_0x25ef51);for(const _0x2aafb5 of _0x458c73)_0x50b200[_0x258df4+_0x1365ff][_0x2aafb5]=_0x4a3050[_0x2aafb5];delete _0x50b200[_0x258df4];}else delete _0x50b200[_0x258df4+_0x1365ff];}}function Rt(_0x2674b1,_0x563e77,_0x40581f,_0x11abff){const _0x20e5e7=_0x54481f,_0x2dc13b=Object[_0x20e5e7(0x98)](_0x2674b1)['map'](Number)[_0x20e5e7(0x182)]((_0x2bc18e,_0x3eed57)=>_0x2bc18e-_0x3eed57);if(_0x11abff<0x0)for(const _0x32902c of _0x2dc13b){const _0x1c4f23=_0x2674b1[_0x32902c];for(let _0x3a5d90=_0x563e77;_0x3a5d90<_0x563e77+_0x40581f;_0x3a5d90++)_0x1c4f23[_0x20e5e7(0x97)](_0x3a5d90)?(_0x1c4f23[_0x3a5d90+_0x11abff]=_0x1c4f23[_0x3a5d90],delete _0x1c4f23[_0x3a5d90]):delete _0x1c4f23[_0x3a5d90+_0x11abff];}else for(const _0x43a624 of _0x2dc13b){const _0x327341=_0x2674b1[_0x43a624];for(let _0x2c63c9=_0x563e77+_0x40581f-0x1;_0x2c63c9>=_0x563e77;_0x2c63c9--)_0x327341['hasOwnProperty'](_0x2c63c9)?(_0x327341[_0x2c63c9+_0x11abff]=_0x327341[_0x2c63c9],delete _0x327341[_0x2c63c9]):delete _0x327341[_0x2c63c9+_0x11abff];}}function ee(_0x2e67ad,_0x1bc14d){const _0x4006f7=_0x54481f;return new _0x3c4fff()[_0x4006f7(0x8e)](_0x2e67ad)[_0x4006f7(0xb6)](..._0x1bc14d)[_0x4006f7(0x9a)]();}function dt(_0x32196c,_0x4478df,_0x4ac1f0,_0x2b53cb){const _0x21835d=_0x54481f,_0x4b85d6=new _0x3608a7()['sequenceNodesBuilder'](_0x4ac1f0);if(_0x4b85d6==null)return _0x4ac1f0;const _0x542341=[];for(let _0x212985=0x0,_0x5ed488=_0x4b85d6[_0x21835d(0xbd)];_0x212985<_0x5ed488;_0x212985++){const _0x17f617=_0x4b85d6[_0x212985];if(typeof _0x17f617==_0x21835d(0xf1)||_0x17f617['nodeType']!==_0xcac527[_0x21835d(0x15d)]){_0x542341[_0x21835d(0x187)](_0x17f617);continue;}const {token:_0x1cc777}=_0x17f617,_0x175ef9=_0x58568b(_0x1cc777),{range:_0x14f1b0,sheetName:_0x5529f0,unitId:_0x58a83c}=_0x175ef9;if((_0x32196c===_0x58a83c||_0x58a83c==='')&&(_0x4478df===_0x5529f0||_0x5529f0==='')){const _0xf8e928=_0x2b53cb(_0x14f1b0),_0x18f9a2=_0xf8e928?_0x1530a6({'range':_0xf8e928,'sheetName':_0x5529f0,'unitId':_0x58a83c}):_0x2be66a[_0x21835d(0x1c3)];_0x542341[_0x21835d(0x187)]({..._0x17f617,'token':_0x18f9a2});}else _0x542341[_0x21835d(0x187)](_0x17f617);}return'='+_0xcaed4b(_0x542341);}function H(_0x8d8d2c,_0xa485b8){const _0x166ba9=_0x54481f;return _0x8d8d2c[_0x166ba9(0x22f)]<=_0xa485b8['end']&&_0x8d8d2c[_0x166ba9(0xd6)]>=_0xa485b8['start'];}function Te(_0x3e8ac0,_0x5e8d93){const _0x30f4f4=_0x54481f;return _0x3e8ac0[_0x30f4f4(0x22f)]<=_0x5e8d93[_0x30f4f4(0x22f)]&&_0x3e8ac0[_0x30f4f4(0xd6)]>=_0x5e8d93[_0x30f4f4(0xd6)];}function Ue(_0x78cbd8,_0xdc2f4a){const _0x42b9e4=_0x54481f;let _0x5b180a=[_0x78cbd8];for(const _0x212e13 of _0xdc2f4a){const _0x57cd92=[];for(const _0x4bc148 of _0x5b180a)_0x57cd92[_0x42b9e4(0x187)](...Xn(_0x4bc148,_0x212e13));_0x5b180a=_0x57cd92;}return _0x5b180a;}function Xn(_0x584c2b,_0x5b4e45){const _0x3b8e2=_0x54481f,_0x28423f=[];if(Te(_0x5b4e45,_0x584c2b))return _0x28423f;if(Te(_0x584c2b,_0x5b4e45)){const _0x3ef549=_0x584c2b[_0x3b8e2(0x22f)],_0xf18d85=_0x5b4e45[_0x3b8e2(0x22f)]-0x1,_0xea9172=_0x5b4e45[_0x3b8e2(0xd6)]+0x1,_0x921393=_0x584c2b[_0x3b8e2(0xd6)];return _0x3ef549<=_0xf18d85&&_0x28423f['push']({'start':_0x3ef549,'end':_0xf18d85}),_0xea9172<=_0x921393&&_0x28423f[_0x3b8e2(0x187)]({'start':_0xea9172,'end':_0x921393}),_0x28423f;}return H(_0x584c2b,_0x5b4e45)?(_0x584c2b[_0x3b8e2(0x22f)]<_0x5b4e45[_0x3b8e2(0x22f)]&&_0x28423f[_0x3b8e2(0x187)]({'start':_0x584c2b[_0x3b8e2(0x22f)],'end':_0x5b4e45['start']-0x1}),_0x584c2b['end']>_0x5b4e45[_0x3b8e2(0xd6)]&&_0x28423f[_0x3b8e2(0x187)]({'start':_0x5b4e45['end']+0x1,'end':_0x584c2b['end']}),_0x28423f):[_0x584c2b];}function be(_0x385f8c,_0x3ab728){const _0x36c339=_0x54481f,_0x3438bb={'startColumn':_0x385f8c[_0x36c339(0x22f)],'endColumn':_0x385f8c[_0x36c339(0xd6)],'startRow':0x0,'endRow':0x1,'rangeType':_0x55bc3d[_0x36c339(0xe2)]},_0x4b289b={'startColumn':_0x3ab728[_0x36c339(0x22f)],'endColumn':_0x3ab728['end'],'startRow':0x0,'endRow':0x1,'rangeType':_0x55bc3d['COLUMN']},_0x5efc77=_0x4f9a3f(_0x3438bb,_0x4b289b);return{'start':_0x3ab728[_0x36c339(0x22f)]+_0x5efc77[_0x36c339(0x1ba)],'end':_0x3ab728['end']+_0x5efc77[_0x36c339(0x1ba)]+_0x5efc77[_0x36c339(0xbd)]};}function Me(_0x4a61f0,_0x53fae7){const _0x3dcea5=_0x54481f,_0x1b4658={'startColumn':_0x4a61f0[_0x3dcea5(0x22f)],'endColumn':_0x4a61f0[_0x3dcea5(0xd6)],'startRow':0x0,'endRow':0x1,'rangeType':_0x55bc3d[_0x3dcea5(0xe2)]},_0x1614a3={'startColumn':_0x53fae7[_0x3dcea5(0x22f)],'endColumn':_0x53fae7[_0x3dcea5(0xd6)],'startRow':0x0,'endRow':0x1,'rangeType':_0x55bc3d[_0x3dcea5(0xe2)]},_0x29f858=_0x27f777(_0x1b4658,_0x1614a3);return _0x29f858===null?null:{'start':_0x53fae7[_0x3dcea5(0x22f)]+_0x29f858[_0x3dcea5(0x1ba)],'end':_0x53fae7[_0x3dcea5(0xd6)]+_0x29f858[_0x3dcea5(0x1ba)]+_0x29f858[_0x3dcea5(0xbd)]};}function Tt(_0x1d1777,_0x56f215){const _0x3708b4=_0x54481f,{unitId:_0x5118ab,subUnitId:_0x29e074}=_0x1d1777[_0x3708b4(0x191)],_0xe97398=_0xed9e9b=>dt(_0x5118ab,_0x29e074,_0xed9e9b,_0x22fc34=>_0x2e41c3(_0x22fc34,_0x56f215)),_0x2c5de4=[],_0x48b43d=_0xd1c83c=>{const _0xaf8e8c=_0x3708b4;var _0x2b1c59,_0x1cbae0;const _0x304e75=_0xd1c83c[_0xaf8e8c(0x19b)],_0x94792e=_0xd1c83c[_0xaf8e8c(0x1a9)]['map'](_0x4aa3c0=>_0x186780(_0x4aa3c0,_0x56f215)),_0x54b72b=(_0x2b1c59=_0xd1c83c[_0xaf8e8c(0x1e5)])!=null?_0x2b1c59:'',_0x4a92dc=(_0x1cbae0=_0xd1c83c[_0xaf8e8c(0xc6)])!=null?_0x1cbae0:'';let _0x2a7478=_0x54b72b,_0x3cc79a=_0x4a92dc;_0x3b1cee(_0x54b72b)&&(_0x2a7478=_0xe97398(_0x54b72b)),_0x3b1cee(_0x4a92dc)&&(_0x3cc79a=_0xe97398(_0x4a92dc)),(_0x2a7478!==_0x54b72b||_0x3cc79a!==_0x4a92dc)&&_0x2c5de4[_0xaf8e8c(0x187)]({'id':_0x5ad83d['id'],'params':{'unitId':_0x5118ab,'subUnitId':_0x29e074,'ruleId':_0x304e75,'payload':{'type':_0x4fe948[_0xaf8e8c(0x151)],'payload':{'type':_0xd1c83c[_0xaf8e8c(0xcc)],'formula1':_0x2a7478,'formula2':_0x3cc79a}}}});const _0x3c1ac2=_0x94792e[_0xaf8e8c(0xe4)]()[_0xaf8e8c(0x94)](Boolean);_0x86e48(_0xd1c83c['ranges'],_0x3c1ac2)||_0x2c5de4[_0xaf8e8c(0x187)]({'id':_0x5ad83d['id'],'params':{'unitId':_0x5118ab,'subUnitId':_0x29e074,'ruleId':_0x304e75,'payload':{'type':_0x4fe948[_0xaf8e8c(0x220)],'payload':_0x3c1ac2}}});};return Array[_0x3708b4(0xf8)](_0x1d1777['params'][_0x3708b4(0xe7)])?_0x1d1777[_0x3708b4(0x191)][_0x3708b4(0xe7)]['forEach'](_0x297b2a=>_0x48b43d(_0x297b2a)):_0x48b43d(_0x1d1777[_0x3708b4(0x191)][_0x3708b4(0xe7)]),_0x2c5de4;}const Kn={'m1':_0x1c90f1['id'],'m2':_0x3273be['id'],'handler'(_0x3a55ce,_0x4641de){const _0xaed197=_0x54481f,_0x550755={'m1Prime':_0x3a55ce,'m2Prime':_0x4641de};if(_0x3a55ce['params']['unitId']!==_0x4641de[_0xaed197(0x191)][_0xaed197(0x15b)]||_0x3a55ce[_0xaed197(0x191)][_0xaed197(0x126)]!==_0x4641de[_0xaed197(0x191)][_0xaed197(0x126)])return _0x550755;const _0x35fa95={'id':_0x5319c7['id'],'params':{'fromRange':_0x3a55ce['params'][_0xaed197(0x9d)],'toRange':_0x3a55ce[_0xaed197(0x191)]['targetRange']}},_0x55a959=Tt(_0x4641de,_0x35fa95);return{'m1Prime':[_0x3a55ce,..._0x55a959],'m2Prime':[_0x4641de,..._0x55a959]};}},zn={'m1':_0x3732ba['id'],'m2':_0x3273be['id'],'handler'(_0x254b95,_0x3e8830){const _0x3ffb77=_0x54481f,_0x456e8a={'m1Prime':_0x254b95,'m2Prime':_0x3e8830};if(_0x254b95[_0x3ffb77(0x191)][_0x3ffb77(0x15b)]!==_0x3e8830[_0x3ffb77(0x191)][_0x3ffb77(0x15b)]||_0x254b95[_0x3ffb77(0x191)]['subUnitId']!==_0x3e8830[_0x3ffb77(0x191)][_0x3ffb77(0x126)])return _0x456e8a;const _0x32d792={'id':_0x1e49c2['id'],'params':{'unitId':_0x254b95[_0x3ffb77(0x191)][_0x3ffb77(0x15b)],'subUnitId':_0x254b95[_0x3ffb77(0x191)]['subUnitId'],'range':_0x254b95[_0x3ffb77(0x191)][_0x3ffb77(0x1a6)]}},_0x18c188=Tt(_0x3e8830,_0x32d792);return{'m1Prime':[_0x254b95,..._0x18c188],'m2Prime':[_0x3e8830,..._0x18c188]};}},qn={'m1':_0x3732ba['id'],'m2':_0x5504b0['id'],'handler'(_0xdc8620,_0x7c49b1){const _0x319c83=_0x54481f,_0x5bb926=rr[_0x319c83(0x12a)](_0x7c49b1,_0xdc8620);return at(_0x5bb926)?{'m1Prime':_0x5bb926[_0x319c83(0x1e8)],'m2Prime':_0x5bb926[_0x319c83(0x1e2)]}:_0x5bb926;}},Zn={'m1':_0x3732ba['id'],'m2':_0x3732ba['id'],'handler'(_0x2d3f28,_0x263585){const _0x501a54=_0x54481f,_0x29c515={'m1Prime':_0x2d3f28,'m2Prime':_0x263585};if(_0x2d3f28[_0x501a54(0x191)][_0x501a54(0x15b)]!==_0x263585[_0x501a54(0x191)]['unitId']||_0x2d3f28[_0x501a54(0x191)]['subUnitId']!==_0x263585[_0x501a54(0x191)][_0x501a54(0x126)])return _0x29c515;const _0x36a56b=_0x12a789[_0x501a54(0xec)](_0x2d3f28),_0x2f66ce=_0x12a789[_0x501a54(0xec)](_0x263585),_0x27e503=_0x4f9a3f(h(_0x2d3f28['params']['range']),h(_0x263585[_0x501a54(0x191)][_0x501a54(0x1a6)]));if(_0x27e503?(_0x2f66ce['params'][_0x501a54(0x1a6)][_0x501a54(0x10c)]+=_0x27e503[_0x501a54(0x1ba)],_0x2f66ce[_0x501a54(0x191)]['range'][_0x501a54(0x1ee)]+=_0x27e503['step']+(_0x27e503[_0x501a54(0xbd)]||0x0)):_0x2f66ce['id']=_0x411476['id'],_0x2d3f28[_0x501a54(0x191)][_0x501a54(0x1a6)][_0x501a54(0x10c)]!==_0x263585[_0x501a54(0x191)][_0x501a54(0x1a6)]['startColumn']){const _0x50998e=_0x4f9a3f(h(_0x263585[_0x501a54(0x191)][_0x501a54(0x1a6)]),h(_0x2d3f28['params']['range']));_0x50998e?(_0x36a56b[_0x501a54(0x191)][_0x501a54(0x1a6)][_0x501a54(0x10c)]+=_0x50998e[_0x501a54(0x1ba)],_0x36a56b[_0x501a54(0x191)]['range']['endColumn']+=_0x50998e[_0x501a54(0x1ba)]+(_0x50998e[_0x501a54(0xbd)]||0x0)):_0x36a56b['id']=_0x411476['id'];}return{'m1Prime':_0x36a56b,'m2Prime':_0x2f66ce};}},Qn={'m1':_0x3732ba['id'],'m2':_0x1c90f1['id'],'handler'(_0x141f08,_0x262d0f){const _0x28dd54=_0x54481f,_0x19561c={'m1Prime':_0x141f08,'m2Prime':_0x262d0f};if(_0x141f08['params'][_0x28dd54(0x15b)]!==_0x262d0f[_0x28dd54(0x191)]['unitId']||_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x126)]!==_0x262d0f['params']['subUnitId'])return _0x19561c;const _0x5727ed=_0x12a789['deepClone'](_0x141f08),_0x5a1923=_0x12a789[_0x28dd54(0xec)](_0x262d0f),_0x3170ec=_0x262d0f[_0x28dd54(0x191)]['sourceRange'],_0x31fc96=_0x262d0f[_0x28dd54(0x191)][_0x28dd54(0x12c)];if(_0x141f08[_0x28dd54(0x191)]['range']['startColumn']>_0x3170ec[_0x28dd54(0x10c)]&&_0x141f08['params']['range']['startColumn']<=_0x3170ec[_0x28dd54(0x1ee)]||_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]>_0x31fc96[_0x28dd54(0x10c)]&&_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)]['startColumn']<=_0x31fc96[_0x28dd54(0x1ee)])return{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20move\x20col')};const _0x17e523=_0x4f9a3f(h(_0x141f08[_0x28dd54(0x191)]['range']),h(_0x3170ec)),_0x9ab813=_0x4f9a3f(h(_0x141f08['params'][_0x28dd54(0x1a6)]),h(_0x31fc96));if(_0x5a1923[_0x28dd54(0x191)][_0x28dd54(0x9d)]['startColumn']+=_0x17e523[_0x28dd54(0x1ba)],_0x5a1923[_0x28dd54(0x191)][_0x28dd54(0x9d)][_0x28dd54(0x1ee)]+=_0x17e523['step']+(_0x17e523[_0x28dd54(0xbd)]||0x0),_0x5a1923[_0x28dd54(0x191)]['targetRange']['startColumn']+=_0x9ab813[_0x28dd54(0x1ba)],_0x5a1923['params'][_0x28dd54(0x12c)][_0x28dd54(0x1ee)]+=_0x9ab813[_0x28dd54(0x1ba)]+(_0x9ab813[_0x28dd54(0xbd)]||0x0),_0x3170ec[_0x28dd54(0x10c)]>=_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]&&_0x31fc96['startColumn']<_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]){const _0x371072=_0x31fc96[_0x28dd54(0x1ee)]-_0x31fc96[_0x28dd54(0x10c)]+0x1;_0x5727ed[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]+=_0x371072,_0x5727ed[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x1ee)]+=_0x371072;}else{if(_0x3170ec[_0x28dd54(0x1ee)]<_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]&&_0x31fc96['startColumn']>=_0x141f08[_0x28dd54(0x191)][_0x28dd54(0x1a6)]['startColumn']){const _0x1c4632=_0x3170ec[_0x28dd54(0x1ee)]-_0x3170ec[_0x28dd54(0x10c)]+0x1;_0x5727ed['params'][_0x28dd54(0x1a6)][_0x28dd54(0x10c)]-=_0x1c4632,_0x5727ed[_0x28dd54(0x191)][_0x28dd54(0x1a6)][_0x28dd54(0x1ee)]-=_0x1c4632;}}return{'m1Prime':_0x5727ed,'m2Prime':_0x5a1923};}},ta={'m1':_0x3732ba['id'],'m2':_0xeb63e6['id'],'handler'(_0x4ebca0,_0x4c463e){const _0x311a55=_0x54481f,_0x3b3558={'m1Prime':_0x4ebca0,'m2Prime':_0x4c463e};if(_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x15b)]!==_0x4c463e[_0x311a55(0x191)][_0x311a55(0x15b)]||_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x126)]!==_0x4c463e['params'][_0x311a55(0xad)][_0x311a55(0x126)]&&_0x4ebca0[_0x311a55(0x191)]['subUnitId']!==_0x4c463e['params']['to'][_0x311a55(0x126)])return _0x3b3558;const _0x57b6ba=_0x12a789[_0x311a55(0xec)](_0x4ebca0),_0x32c4e0=_0x12a789[_0x311a55(0xec)](_0x4c463e);if(_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x126)]===_0x4c463e[_0x311a55(0x191)][_0x311a55(0xad)][_0x311a55(0x126)]){const _0x4d795b=new _0x3597fb(_0x32c4e0[_0x311a55(0x191)][_0x311a55(0xad)][_0x311a55(0x9e)])[_0x311a55(0xa7)](),{startColumn:_0x10d878,endColumn:_0x118639}=_0x4d795b,{startColumn:_0x297830,endColumn:_0x5603e8}=_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x1a6)],{step:_0x29151e,length:_0x28997a}=_0x4f9a3f(_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x1a6)],_0x4d795b);_0x29151e>0x0&&_0x28997a===0x0&&Rt(_0x32c4e0['params']['from'][_0x311a55(0x9e)],_0x10d878,_0x118639-_0x10d878+0x1,_0x29151e),_0x29151e===0x0&&_0x28997a>0x0&&Rt(_0x32c4e0[_0x311a55(0x191)][_0x311a55(0xad)]['value'],_0x297830,_0x118639-_0x297830+0x1,_0x5603e8-_0x297830+0x1);}if(_0x4ebca0['params'][_0x311a55(0x126)]===_0x4c463e[_0x311a55(0x191)]['to'][_0x311a55(0x126)]){const _0x2e895a=new _0x3597fb(_0x32c4e0[_0x311a55(0x191)]['to'][_0x311a55(0x9e)])[_0x311a55(0xa7)](),{startColumn:_0x5a1db5,endColumn:_0x25964e}=_0x2e895a,{startColumn:_0x4f04a3,endColumn:_0xa03eab}=_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x1a6)],{step:_0x114e37,length:_0x16700e}=_0x4f9a3f(_0x4ebca0[_0x311a55(0x191)][_0x311a55(0x1a6)],_0x2e895a);_0x114e37>0x0&&_0x16700e===0x0&&Rt(_0x32c4e0['params']['to']['value'],_0x5a1db5,_0x25964e-_0x5a1db5+0x1,_0x114e37),_0x114e37===0x0&&_0x16700e>0x0&&Rt(_0x32c4e0['params']['to']['value'],_0x4f04a3,_0x25964e-_0x4f04a3+0x1,_0xa03eab-_0x4f04a3+0x1);}return{'m1Prime':_0x57b6ba,'m2Prime':_0x32c4e0};}},ea={'m1':_0x3732ba['id'],'m2':_0x491a86['id'],'handler'(_0x297332,_0x54ac20){const _0x3c1ca9=_0x54481f,_0xad60f0={'m1Prime':_0x297332,'m2Prime':_0x54ac20};if(_0x297332[_0x3c1ca9(0x191)][_0x3c1ca9(0x15b)]!==_0x54ac20[_0x3c1ca9(0x191)]['unitId']||_0x297332['params'][_0x3c1ca9(0x126)]!==_0x54ac20[_0x3c1ca9(0x191)][_0x3c1ca9(0x126)])return _0xad60f0;const _0x541b92=_0x12a789['deepClone'](_0x297332),_0x2a69fe=_0x12a789[_0x3c1ca9(0xec)](_0x54ac20);if(_0x297332[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x10c)]<=_0x54ac20[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x1ee)]&&_0x297332[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x10c)]>_0x54ac20[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)]['startColumn'])return{'error':new Error(_0x3c1ca9(0x1d0))};const _0x592462=_0x4f9a3f(h(_0x297332[_0x3c1ca9(0x191)]['range']),h(_0x54ac20[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)]));_0x592462?(_0x2a69fe[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x10c)]+=_0x592462[_0x3c1ca9(0x1ba)],_0x2a69fe[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x1ee)]+=_0x592462[_0x3c1ca9(0x1ba)]+(_0x592462[_0x3c1ca9(0xbd)]||0x0)):_0x2a69fe['id']=_0x411476['id'];const _0x3ffe68=_0x27f777(h(_0x54ac20['params']['range']),h(_0x297332['params']['range']));return _0x3ffe68&&(_0x541b92[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)]['startColumn']+=_0x3ffe68['step'],_0x541b92[_0x3c1ca9(0x191)][_0x3c1ca9(0x1a6)][_0x3c1ca9(0x1ee)]+=_0x3ffe68[_0x3c1ca9(0x1ba)]+(_0x3ffe68[_0x3c1ca9(0xbd)]||0x0)),{'m1Prime':_0x541b92,'m2Prime':_0x2a69fe};}},ra={'m1':_0x3732ba['id'],'m2':_0x180381['id'],'handler'(_0x31abc8,_0x12f963){const _0x18c7cf=_0x54481f,_0x10929c={'m1Prime':_0x31abc8,'m2Prime':_0x12f963};if(_0x31abc8[_0x18c7cf(0x191)][_0x18c7cf(0x15b)]!==_0x12f963['params'][_0x18c7cf(0x15b)]||_0x31abc8[_0x18c7cf(0x191)]['subUnitId']!==_0x12f963['params']['subUnitId'])return _0x10929c;const _0x1511b5=_0x12a789[_0x18c7cf(0xec)](_0x31abc8),_0x255443=_0x12a789['deepClone'](_0x12f963),{ranges:_0x1a364c}=_0x255443['params'];return _0x1a364c[_0x18c7cf(0x161)](_0x7fe539=>{const _0x35df03=_0x18c7cf,_0x597531=_0x4f9a3f(h(_0x31abc8['params'][_0x35df03(0x1a6)]),h(_0x7fe539));return _0x597531[_0x35df03(0xbd)]!==0x0?!0x0:(_0x7fe539[_0x35df03(0x10c)]+=_0x597531[_0x35df03(0x1ba)],_0x7fe539['endColumn']+=_0x597531[_0x35df03(0x1ba)],!0x1);})?{'error':new Error(_0x18c7cf(0x159))}:{'m1Prime':_0x1511b5,'m2Prime':_0x255443};}},na={'m1':_0x3732ba['id'],'m2':_0x3194c5['id'],'handler'(_0xf574b6,_0x1ed632){const _0x5a37bb=_0x54481f,_0x30493c=_0x12a789['deepClone'](_0xf574b6),_0x22ef8a=_0x12a789['deepClone'](_0x1ed632);if(_0xf574b6[_0x5a37bb(0x191)][_0x5a37bb(0x15b)]!==_0x1ed632[_0x5a37bb(0x191)][_0x5a37bb(0x15b)]||_0xf574b6[_0x5a37bb(0x191)]['subUnitId']!==_0x1ed632[_0x5a37bb(0x191)][_0x5a37bb(0x126)])return{'m1Prime':_0x30493c,'m2Prime':_0x22ef8a};const _0x3d8a0d=_0x22ef8a[_0x5a37bb(0x191)][_0x5a37bb(0x1a9)][_0x5a37bb(0x21d)](_0x4b39b1=>{const _0x4bbadd=_0x5a37bb,_0x274822=_0x30493c[_0x4bbadd(0x191)][_0x4bbadd(0x1a6)],_0x275625=_0x274822[_0x4bbadd(0x1ee)]-_0x274822['startColumn']+0x1;return _0x274822[_0x4bbadd(0x10c)]<=_0x4b39b1[_0x4bbadd(0x10c)]?{..._0x4b39b1,'startColumn':_0x4b39b1[_0x4bbadd(0x10c)]+_0x275625,'endColumn':_0x4b39b1['endColumn']+_0x275625}:_0x274822['startColumn']>_0x4b39b1['startColumn']&&_0x274822[_0x4bbadd(0x10c)]<=_0x4b39b1[_0x4bbadd(0x1ee)]?{..._0x4b39b1,'endColumn':_0x4b39b1[_0x4bbadd(0x1ee)]+_0x275625}:{..._0x4b39b1};});return _0x22ef8a[_0x5a37bb(0x191)][_0x5a37bb(0x1a9)]=_0x3d8a0d,{'m1Prime':_0x30493c,'m2Prime':_0x22ef8a};}},aa={'m1':_0x3732ba['id'],'m2':_0x41be04['id'],'handler'(_0x29073e,_0x514aa7){const _0x239983=_0x54481f,_0x57427e={'m1Prime':_0x29073e,'m2Prime':_0x514aa7};if(_0x29073e[_0x239983(0x191)]['unitId']!==_0x514aa7[_0x239983(0x191)]['unitId']||_0x29073e[_0x239983(0x191)][_0x239983(0x126)]!==_0x514aa7[_0x239983(0x191)][_0x239983(0x126)])return _0x57427e;const _0x4c93aa=_0x12a789[_0x239983(0xec)](_0x514aa7),_0x587e45=_0x4f9a3f(h(_0x29073e[_0x239983(0x191)][_0x239983(0x1a6)]),h(_0x514aa7[_0x239983(0x191)][_0x239983(0x1a6)]));return _0x4c93aa[_0x239983(0x191)][_0x239983(0x1a6)][_0x239983(0x10c)]+=_0x587e45[_0x239983(0x1ba)],_0x4c93aa['params'][_0x239983(0x1a6)][_0x239983(0x1ee)]+=_0x587e45['step']+(_0x587e45['length']||0x0),{'m1Prime':_0x29073e,'m2Prime':_0x4c93aa};}},sa={'m1':_0x3732ba['id'],'m2':_0x2c204d['id'],'handler'(_0x4b140f,_0x2ccd3a){const _0x159a12=_0x54481f,_0x133df7={'m1Prime':_0x4b140f,'m2Prime':_0x2ccd3a};if(_0x4b140f[_0x159a12(0x191)][_0x159a12(0x15b)]!==_0x2ccd3a[_0x159a12(0x191)][_0x159a12(0x15b)]||_0x4b140f[_0x159a12(0x191)][_0x159a12(0x126)]!==_0x2ccd3a[_0x159a12(0x191)][_0x159a12(0x126)])return _0x133df7;const _0x2a745a=_0x12a789[_0x159a12(0xec)](_0x4b140f),_0x26d210=_0x12a789[_0x159a12(0xec)](_0x2ccd3a),{columnData:_0x54fbea}=_0x26d210[_0x159a12(0x191)];for(let _0x572418=_0x4b140f[_0x159a12(0x191)]['range'][_0x159a12(0x10c)];_0x572418<=_0x4b140f[_0x159a12(0x191)][_0x159a12(0x1a6)][_0x159a12(0x1ee)];_0x572418++)_0x164e70(_0x572418,void 0x0,_0x54fbea);return{'m1Prime':_0x2a745a,'m2Prime':_0x26d210};}},oa={'m1':_0x3732ba['id'],'m2':_0x3d7e7a['id'],'handler'(_0x29a806,_0x467b52){const _0x364b19=_0x54481f,_0x29b75b={'m1Prime':_0x29a806,'m2Prime':_0x467b52};if(_0x29a806[_0x364b19(0x191)][_0x364b19(0x15b)]!==_0x467b52[_0x364b19(0x191)][_0x364b19(0x15b)]||_0x29a806[_0x364b19(0x191)][_0x364b19(0x126)]!==_0x467b52['params'][_0x364b19(0x126)])return _0x29b75b;const _0x4b6cb9=_0x12a789['deepClone'](_0x29a806),_0x142335=_0x12a789['deepClone'](_0x467b52),{ranges:_0x1ad518}=_0x142335['params'];return _0x1ad518[_0x364b19(0x161)](_0x3f7469=>{const _0x5e3826=_0x364b19,_0x109b52=_0x4f9a3f(h(_0x29a806[_0x5e3826(0x191)][_0x5e3826(0x1a6)]),_0x3f7469);return _0x109b52['length']!==0x0?!0x0:(_0x3f7469[_0x5e3826(0x10c)]+=_0x109b52[_0x5e3826(0x1ba)],_0x3f7469['endColumn']+=_0x109b52['step'],!0x1);})?{'error':new Error(_0x364b19(0x1b7))}:{'m1Prime':_0x4b6cb9,'m2Prime':_0x142335};}},ia={'m1':_0x3732ba['id'],'m2':_0x46f51d['id'],'handler'(_0x5cb1ee,_0x37fe2c){const _0x4dcc78=_0x54481f,_0x2e3efb={'m1Prime':_0x5cb1ee,'m2Prime':_0x37fe2c};if(_0x5cb1ee[_0x4dcc78(0x191)]['unitId']!==_0x37fe2c[_0x4dcc78(0x191)][_0x4dcc78(0x15b)]||_0x5cb1ee[_0x4dcc78(0x191)][_0x4dcc78(0x126)]!==_0x37fe2c['params'][_0x4dcc78(0x126)])return _0x2e3efb;const _0x18512f=_0x12a789['deepClone'](_0x5cb1ee),_0x24d27a=_0x12a789[_0x4dcc78(0xec)](_0x37fe2c),{ranges:_0x1405f2}=_0x24d27a[_0x4dcc78(0x191)];return _0x1405f2[_0x4dcc78(0x161)](_0x1f0c96=>{const _0xa93dbd=_0x4dcc78,_0x5783b9=_0x4f9a3f(h(_0x5cb1ee['params']['range']),_0x1f0c96);return _0x5783b9[_0xa93dbd(0xbd)]!==0x0?!0x0:(_0x1f0c96[_0xa93dbd(0x10c)]+=_0x5783b9[_0xa93dbd(0x1ba)],_0x1f0c96[_0xa93dbd(0x1ee)]+=_0x5783b9[_0xa93dbd(0x1ba)],!0x1);})?{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20col\x20visible')}:{'m1Prime':_0x18512f,'m2Prime':_0x24d27a};}},da={'m1':_0x3732ba['id'],'m2':_0x30c2c8['id'],'handler'(_0x486dbd,_0x4943ad){const _0x1adddc=_0x54481f,_0x258049={'m1Prime':_0x486dbd,'m2Prime':_0x4943ad};if(_0x486dbd[_0x1adddc(0x191)][_0x1adddc(0x15b)]!==_0x4943ad[_0x1adddc(0x191)]['unitId']||_0x486dbd[_0x1adddc(0x191)][_0x1adddc(0x126)]!==_0x4943ad[_0x1adddc(0x191)]['subUnitId'])return _0x258049;const _0x231a58=[_0x12a789[_0x1adddc(0xec)](_0x486dbd)],_0x2ca404=_0x12a789[_0x1adddc(0xec)](_0x4943ad),{values:_0x578a7b}=_0x2ca404['params'],_0x464722=[];let _0x60041b=!0x1;for(const _0x1102fd in _0x578a7b){const _0x3fdd10=_0x578a7b[_0x1102fd];if(_0x464722[_0x1adddc(0x187)](..._0x3fdd10[_0x1adddc(0x1a9)]),_0x3fdd10[_0x1adddc(0x1a9)]['some'](_0x245240=>{const _0x446a75=_0x1adddc,_0x5c05de=_0x4f9a3f(h(_0x486dbd[_0x446a75(0x191)][_0x446a75(0x1a6)]),h(_0x245240));return _0x5c05de[_0x446a75(0xbd)]!==0x0?!0x0:(_0x5c05de[_0x446a75(0x1ba)]!==0x0&&(_0x60041b=!0x0),_0x245240['startColumn']+=_0x5c05de[_0x446a75(0x1ba)],_0x245240[_0x446a75(0x1ee)]+=_0x5c05de[_0x446a75(0x1ba)],!0x1);}))return{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x60041b){const _0x30db6d={'id':_0x180381['id'],'params':{'unitId':_0x4943ad[_0x1adddc(0x191)]['unitId'],'subUnitId':_0x4943ad[_0x1adddc(0x191)]['subUnitId'],'ranges':_0x464722}};_0x231a58[_0x1adddc(0x187)](_0x30db6d,_0x2ca404);}return{'m1Prime':_0x231a58,'m2Prime':_0x2ca404};}},ma={'m1':_0x3732ba['id'],'m2':_0x59880b['id'],'handler'(_0x31ecf2,_0x6d0e2){const _0x321cb9=_0x54481f,_0x5d876b={'m1Prime':_0x31ecf2,'m2Prime':_0x6d0e2};if(_0x31ecf2[_0x321cb9(0x191)]['unitId']!==_0x6d0e2[_0x321cb9(0x191)][_0x321cb9(0x15b)]||_0x31ecf2[_0x321cb9(0x191)][_0x321cb9(0x126)]!==_0x6d0e2['params'][_0x321cb9(0x126)])return _0x5d876b;const _0x3e43f8=[_0x12a789[_0x321cb9(0xec)](_0x31ecf2)],_0x44d990=_0x12a789[_0x321cb9(0xec)](_0x6d0e2),_0x1322f7=new _0x3597fb(_0x44d990[_0x321cb9(0x191)][_0x321cb9(0xaf)]),_0x3f28b9=_0x1322f7[_0x321cb9(0xa7)](),_0x12b42d=_0x31ecf2[_0x321cb9(0x191)]['range'],_0x12addc=_0x12b42d[_0x321cb9(0x1ee)]-_0x12b42d['startColumn']+0x1;if(_0x44d990[_0x321cb9(0x191)][_0x321cb9(0xaf)]&&_0x12b42d[_0x321cb9(0x10c)]<=_0x3f28b9[_0x321cb9(0x1ee)]){const _0x48c6ab=Math[_0x321cb9(0x1a7)](_0x3f28b9[_0x321cb9(0x10c)],_0x12b42d[_0x321cb9(0x10c)]);Rt(_0x44d990[_0x321cb9(0x191)]['cellValue'],_0x48c6ab,_0x3f28b9[_0x321cb9(0x1ee)]-_0x48c6ab+0x1,_0x12addc);}const _0x1df716=new _0x3597fb();let _0x293bb2=!0x1;if(_0x1322f7[_0x321cb9(0x1bf)]((_0x441137,_0x2dd135,_0x2b95b2)=>{const _0x5111a4=_0x321cb9;if(_0x2b95b2&&_0x2b95b2['f']){const _0x3675bc=_0x2b95b2['f'];let _0x1434d7=!0x1;const _0x15ffef=dt(_0x31ecf2[_0x5111a4(0x191)][_0x5111a4(0x15b)],_0x31ecf2['params'][_0x5111a4(0x126)],_0x3675bc,_0x2e0299=>{const _0x26ee6d=_0x5111a4,_0x105eb0=_0x4f9a3f(h(_0x31ecf2['params'][_0x26ee6d(0x1a6)]),h(_0x2e0299));return(_0x105eb0['step']!==0x0||_0x105eb0[_0x26ee6d(0xbd)]!==0x0)&&(_0x1434d7=!0x0,_0x2e0299['startColumn']+=_0x105eb0[_0x26ee6d(0x1ba)],_0x2e0299[_0x26ee6d(0x1ee)]+=_0x105eb0[_0x26ee6d(0x1ba)]+_0x105eb0[_0x26ee6d(0xbd)]),_0x2e0299;});_0x1434d7&&(_0x293bb2=!0x0,_0x2b95b2['f']=_0x15ffef,_0x1df716[_0x5111a4(0x1a3)](_0x441137,_0x2dd135,{..._0x2b95b2}));}}),_0x293bb2){const _0x575854={'id':_0x59880b['id'],'params':{'unitId':_0x6d0e2['params'][_0x321cb9(0x15b)],'subUnitId':_0x6d0e2[_0x321cb9(0x191)][_0x321cb9(0x126)],'cellValue':_0x1df716[_0x321cb9(0xd9)]()}};_0x3e43f8[_0x321cb9(0x187)](_0x575854);}return{'m1Prime':_0x3e43f8,'m2Prime':_0x44d990};}},ua={'m1':_0x3732ba['id'],'m2':_0x22c7b4['id'],'handler'(_0x5aa150,_0x4326cd){const _0x4ef245=_0x54481f,_0x52f114={'m1Prime':[],'m2Prime':[]};if(_0x5aa150[_0x4ef245(0x191)][_0x4ef245(0x15b)]!==_0x4326cd[_0x4ef245(0x191)][_0x4ef245(0x15b)]||_0x5aa150[_0x4ef245(0x191)][_0x4ef245(0x126)]!==_0x4326cd[_0x4ef245(0x191)][_0x4ef245(0x126)])return _0x52f114;const _0x4ddb9d=_0x12a789[_0x4ef245(0xec)](_0x4326cd);let _0x185ef3=!0x1;return _0x4ddb9d[_0x4ef245(0x191)]['selections'][_0x4ef245(0x147)](_0x27e30b=>{const _0x4283d0=_0x4ef245,{range:_0x2c7b4c,primary:_0x328ae1}=_0x27e30b,_0xfe13c3=_0x4f9a3f(h(_0x5aa150[_0x4283d0(0x191)][_0x4283d0(0x1a6)]),h(_0x2c7b4c));if(_0xfe13c3[_0x4283d0(0xbd)]||_0xfe13c3[_0x4283d0(0x1ba)]){if(_0x2c7b4c[_0x4283d0(0x10c)]+=_0xfe13c3[_0x4283d0(0x1ba)],_0x2c7b4c[_0x4283d0(0x1ee)]+=_0xfe13c3[_0x4283d0(0x1ba)]+(_0xfe13c3['length']||0x0),_0x328ae1){const _0x2c618b=_0x4f9a3f(h(_0x5aa150[_0x4283d0(0x191)][_0x4283d0(0x1a6)]),h(_0x328ae1));(_0x2c618b[_0x4283d0(0xbd)]||_0x2c618b[_0x4283d0(0x1ba)])&&(_0x328ae1[_0x4283d0(0x10c)]+=_0x2c618b[_0x4283d0(0x1ba)],_0x328ae1[_0x4283d0(0x1ee)]+=_0x2c618b[_0x4283d0(0x1ba)],_0x328ae1[_0x4283d0(0x13e)]+=_0x2c618b[_0x4283d0(0x1ba)]);}_0x185ef3=!0x0;}}),_0x185ef3&&_0x52f114['m2Prime'][_0x4ef245(0x187)](_0x4ddb9d),_0x52f114;}},la={'m1':_0x3732ba['id'],'m2':_0x254b23['id'],'handler'(_0x241e9b,_0x197d5d){const _0x4557ea=_0x54481f,_0x46cb5f={'m1Prime':_0x241e9b,'m2Prime':_0x197d5d};if(_0x241e9b[_0x4557ea(0x191)][_0x4557ea(0x15b)]!==_0x197d5d[_0x4557ea(0x191)][_0x4557ea(0x15b)]||_0x241e9b['params'][_0x4557ea(0x126)]!==_0x197d5d['params'][_0x4557ea(0x126)])return _0x46cb5f;const _0x313861=_0x12a789[_0x4557ea(0xec)](_0x241e9b),_0x1726e5=_0x12a789['deepClone'](_0x197d5d),_0x3ef4e1=be({'start':_0x241e9b[_0x4557ea(0x191)][_0x4557ea(0x1a6)][_0x4557ea(0x10c)],'end':_0x241e9b[_0x4557ea(0x191)][_0x4557ea(0x1a6)][_0x4557ea(0x1ee)]},{'start':_0x197d5d[_0x4557ea(0x191)][_0x4557ea(0x164)],'end':_0x197d5d[_0x4557ea(0x191)][_0x4557ea(0x164)]});if(_0x1726e5[_0x4557ea(0x191)][_0x4557ea(0x164)]===_0x3ef4e1[_0x4557ea(0x22f)])return _0x46cb5f;_0x1726e5['params']['col']=_0x3ef4e1[_0x4557ea(0x22f)],_0x1726e5['params'][_0x4557ea(0x160)]&&(_0x1726e5[_0x4557ea(0x191)]['criteria'][_0x4557ea(0xa6)]=_0x3ef4e1['start']);const _0x51804d=_0x12a789[_0x4557ea(0xec)](_0x197d5d);return _0x51804d[_0x4557ea(0x191)]['criteria']=null,{'m1Prime':[_0x51804d,_0x1726e5,_0x313861],'m2Prime':[_0x1726e5]};}},ca={'m1':_0x3732ba['id'],'m2':_0x4a261b['id'],'handler'(_0x3977ed,_0x19b73d){const _0x46b675=_0x54481f,_0x3c6d74={'m1Prime':_0x3977ed,'m2Prime':_0x19b73d};if(_0x3977ed[_0x46b675(0x191)][_0x46b675(0x15b)]!==_0x19b73d[_0x46b675(0x191)][_0x46b675(0x15b)]||_0x3977ed['params'][_0x46b675(0x126)]!==_0x19b73d['params']['subUnitId'])return _0x3c6d74;const _0xc07f45=_0x12a789['deepClone'](_0x3977ed),_0x201611=_0x12a789[_0x46b675(0xec)](_0x19b73d),_0x3710bf=be({'start':_0x3977ed[_0x46b675(0x191)][_0x46b675(0x1a6)][_0x46b675(0x10c)],'end':_0x3977ed[_0x46b675(0x191)][_0x46b675(0x1a6)]['endColumn']},{'start':_0x19b73d[_0x46b675(0x191)][_0x46b675(0x1a6)]['startColumn'],'end':_0x19b73d[_0x46b675(0x191)][_0x46b675(0x1a6)][_0x46b675(0x1ee)]});return _0x201611[_0x46b675(0x191)][_0x46b675(0x1a6)]['startColumn']===_0x3710bf['start']&&_0x201611[_0x46b675(0x191)][_0x46b675(0x1a6)]['endColumn']===_0x3710bf[_0x46b675(0xd6)]?_0x3c6d74:(_0x201611['params']['range'][_0x46b675(0x10c)]=_0x3710bf[_0x46b675(0x22f)],_0x201611[_0x46b675(0x191)]['range']['endColumn']=_0x3710bf[_0x46b675(0xd6)],{'m1Prime':[_0x201611,_0xc07f45],'m2Prime':[_0x201611]});}},pa={'m1':_0x3732ba['id'],'m2':_0x2d1a15['id'],'handler'(_0x3348ca,_0x4263c3){const _0x32fd5c=_0x54481f,_0x38eb61={'m1Prime':_0x3348ca,'m2Prime':_0x4263c3};if(_0x3348ca[_0x32fd5c(0x191)][_0x32fd5c(0x15b)]!==_0x4263c3[_0x32fd5c(0x191)][_0x32fd5c(0x15b)]||_0x3348ca[_0x32fd5c(0x191)][_0x32fd5c(0x126)]!==_0x4263c3[_0x32fd5c(0x191)][_0x32fd5c(0x126)])return _0x38eb61;const _0x79ba6a=_0x12a789[_0x32fd5c(0xec)](_0x3348ca),_0x12106f=_0x12a789[_0x32fd5c(0xec)](_0x4263c3),{ranges:_0x19b887,colWidth:_0x15b8e1}=_0x12106f[_0x32fd5c(0x191)];if(_0x19b887[_0x32fd5c(0x161)](_0x4b41f3=>{const _0x126cba=_0x32fd5c,_0x10917d=_0x4f9a3f(h(_0x3348ca[_0x126cba(0x191)][_0x126cba(0x1a6)]),_0x4b41f3);return _0x10917d['length']!==0x0?!0x0:(_0x4b41f3[_0x126cba(0x10c)]+=_0x10917d[_0x126cba(0x1ba)],_0x4b41f3['endColumn']+=_0x10917d['step'],!0x1);}))return{'error':new Error('insert\x20col\x20is\x20conflict\x20with\x20set\x20worksheet\x20col\x20width')};if(typeof _0x15b8e1!='number'){for(let _0x57366b=_0x3348ca[_0x32fd5c(0x191)]['range']['startColumn'];_0x57366b<=_0x3348ca[_0x32fd5c(0x191)][_0x32fd5c(0x1a6)]['endColumn'];_0x57366b++)_0x164e70(_0x57366b,void 0x0,_0x15b8e1);}return{'m1Prime':_0x79ba6a,'m2Prime':_0x12106f};}},wt=(_0x234f1d,_0x2337fe)=>{const _0x4e9e21=_0x54481f,_0x3e6b9a=_0x1f23be(_0x234f1d[_0x4e9e21(0x191)][_0x4e9e21(0x198)][_0x4e9e21(0x21e)]),_0x29c530={'startColumn':_0x3e6b9a[_0x4e9e21(0x15a)],'endColumn':_0x3e6b9a[_0x4e9e21(0x15a)],'startRow':_0x3e6b9a[_0x4e9e21(0x22d)],'endRow':_0x3e6b9a['row']},_0x413132=_0x2e41c3(_0x29c530,_0x2337fe);if(!_0x413132)return[{'id':_0x47d358['id'],'params':{..._0x234f1d[_0x4e9e21(0x191)],'comment':void 0x0,'commentId':_0x234f1d[_0x4e9e21(0x191)][_0x4e9e21(0x198)]['commentId']}}];const _0x382ef4=_0x4ff173(_0x413132);return _0x382ef4===_0x234f1d[_0x4e9e21(0x191)][_0x4e9e21(0x198)][_0x4e9e21(0x21e)]?[]:[{'id':_0x44bb69['id'],'params':{..._0x234f1d['params'],'comment':void 0x0,'payload':{'ref':_0x382ef4,'commentId':_0x234f1d['params'][_0x4e9e21(0x198)][_0x4e9e21(0xa1)]}}}];},fa={'m1':_0x3732ba['id'],'m2':_0x44bb69['id'],'handler':(_0x32b6b5,_0x5b3995)=>{const _0x539f42=_0x54481f,_0x4a0f2c={'m1Prime':_0x32b6b5,'m2Prime':_0x5b3995};if(_0x32b6b5[_0x539f42(0x191)][_0x539f42(0x15b)]!==_0x5b3995[_0x539f42(0x191)][_0x539f42(0x15b)]||_0x32b6b5[_0x539f42(0x191)][_0x539f42(0x126)]!==_0x5b3995[_0x539f42(0x191)][_0x539f42(0x126)])return _0x4a0f2c;const _0x38fba0={'id':_0x1e49c2['id'],'params':{'unitId':_0x32b6b5[_0x539f42(0x191)][_0x539f42(0x15b)],'subUnitId':_0x32b6b5[_0x539f42(0x191)]['subUnitId'],'range':_0x32b6b5[_0x539f42(0x191)]['range']}},_0x248d93=wt(_0x5b3995,_0x38fba0);return{'m1Prime':[_0x32b6b5,..._0x248d93],'m2Prime':[_0x5b3995,..._0x248d93]};}};function Ct(_0x1df7ea,_0x2b98d8){const _0x302f6a=_0x54481f;var _0x253332,_0x2460b4;const {payload:_0xcf4975,unitId:_0x122d00,subUnitId:_0x3b6387,ruleId:_0x5a679f}=_0x1df7ea['params'];switch(_0xcf4975[_0x302f6a(0xcc)]){case _0x4fe948[_0x302f6a(0x220)]:{const _0x4bd8de=_0xcf4975[_0x302f6a(0x198)][_0x302f6a(0x21d)](_0x3d8b74=>_0x186780(_0x3d8b74,_0x2b98d8))[_0x302f6a(0x94)](Boolean)['flat']();if(!_0x86e48(_0x4bd8de,_0xcf4975[_0x302f6a(0x198)]))return[{'id':_0x5ad83d['id'],'params':{'unitId':_0x122d00,'subUnitId':_0x3b6387,'ruleId':_0x5a679f,'payload':{'type':_0x4fe948[_0x302f6a(0x220)],'payload':_0x4bd8de}}}];break;}case _0x4fe948['SETTING']:{const _0x5edc2b=_0xa5f730=>dt(_0x122d00,_0x3b6387,_0xa5f730,_0x41dbea=>_0x2e41c3(_0x41dbea,_0x2b98d8)),_0x456023=(_0x253332=_0xcf4975[_0x302f6a(0x198)][_0x302f6a(0x1e5)])!=null?_0x253332:'',_0x1915f0=(_0x2460b4=_0xcf4975[_0x302f6a(0x198)][_0x302f6a(0xc6)])!=null?_0x2460b4:'';let _0x5e0f26=_0x456023,_0x3241da=_0x1915f0;if(_0x3b1cee(_0x456023)&&(_0x5e0f26=_0x5edc2b(_0x456023)),_0x3b1cee(_0x1915f0)&&(_0x3241da=_0x5edc2b(_0x1915f0)),_0x5e0f26!==_0x456023||_0x3241da!==_0x1915f0)return[{'id':_0x5ad83d['id'],'params':{'unitId':_0x122d00,'subUnitId':_0x3b6387,'ruleId':_0x5a679f,'payload':{'type':_0x4fe948['SETTING'],'payload':{'type':_0xcf4975[_0x302f6a(0x198)][_0x302f6a(0xcc)],'formula1':_0x5e0f26,'formula2':_0x3241da}}}}];break;}}return[];}const Ra={'m1':_0x1c90f1['id'],'m2':_0x5ad83d['id'],'handler':(_0x46f427,_0x1f6f1d)=>{const _0x236b05=_0x54481f,_0x2659f7={'m1Prime':_0x46f427,'m2Prime':_0x1f6f1d};if(_0x46f427[_0x236b05(0x191)]['unitId']!==_0x1f6f1d['params'][_0x236b05(0x15b)]||_0x1f6f1d[_0x236b05(0x191)][_0x236b05(0x126)]!==_0x46f427[_0x236b05(0x191)]['subUnitId'])return _0x2659f7;const _0x4e7000={'id':_0x5319c7['id'],'params':{'fromRange':_0x46f427[_0x236b05(0x191)][_0x236b05(0x9d)],'toRange':_0x46f427['params'][_0x236b05(0x12c)]}},_0x5310e0=Ct(_0x1f6f1d,_0x4e7000);return{'m1Prime':[_0x46f427,..._0x5310e0],'m2Prime':[_0x1f6f1d,..._0x5310e0]};}},ha={'m1':_0x3732ba['id'],'m2':_0x5ad83d['id'],'handler':(_0x313ca8,_0x4aa346)=>{const _0x42a1e8=_0x54481f,_0x4f6765={'m1Prime':_0x313ca8,'m2Prime':_0x4aa346};if(_0x313ca8[_0x42a1e8(0x191)][_0x42a1e8(0x15b)]!==_0x4aa346[_0x42a1e8(0x191)]['unitId']||_0x4aa346[_0x42a1e8(0x191)][_0x42a1e8(0x126)]!==_0x313ca8[_0x42a1e8(0x191)][_0x42a1e8(0x126)])return _0x4f6765;const _0x1b5918={'id':_0x1e49c2['id'],'params':{'unitId':_0x313ca8[_0x42a1e8(0x191)]['unitId'],'subUnitId':_0x313ca8[_0x42a1e8(0x191)][_0x42a1e8(0x126)],'range':_0x313ca8[_0x42a1e8(0x191)][_0x42a1e8(0x1a6)]}},_0x4e8a98=Ct(_0x4aa346,_0x1b5918);return{'m1Prime':[_0x313ca8,..._0x4e8a98],'m2Prime':[_0x4aa346,..._0x4e8a98]};}},ga={'m1':_0xa7a746['id'],'m2':_0x41a8ef['id'],'handler':(_0x5bb2c1,_0x5da9a9)=>{const _0x5accca=_0x54481f,_0x2fd266={'m1Prime':_0x5bb2c1,'m2Prime':_0x5da9a9};if(_0x5bb2c1['params'][_0x5accca(0x15b)]!==_0x5da9a9[_0x5accca(0x191)]['unitId']||_0x5bb2c1[_0x5accca(0x191)][_0x5accca(0x126)]!==_0x5da9a9[_0x5accca(0x191)][_0x5accca(0x126)])return _0x2fd266;const _0x54cd8b={'id':_0x1aa760['id'],'params':{'unitId':_0x5bb2c1[_0x5accca(0x191)][_0x5accca(0x15b)],'subUnitId':_0x5bb2c1[_0x5accca(0x191)]['subUnitId'],'range':_0x5bb2c1[_0x5accca(0x191)][_0x5accca(0x1a6)]}},_0x3308f6=It(_0x5da9a9,_0x54cd8b);return{'m1Prime':[_0x5bb2c1,..._0x3308f6],'m2Prime':[_0x5da9a9,..._0x3308f6]};}},Ia={'m1':_0xa7a746['id'],'m2':_0x5504b0['id'],'handler'(_0x3e3c41,_0x4b864c){const _0x1ed2a5=_0x54481f,_0x490b33=nr[_0x1ed2a5(0x12a)](_0x4b864c,_0x3e3c41);return at(_0x490b33)?{'m1Prime':_0x490b33[_0x1ed2a5(0x1e8)],'m2Prime':_0x490b33[_0x1ed2a5(0x1e2)]}:_0x490b33;}},wa={'m1':_0xa7a746['id'],'m2':_0xa7a746['id'],'handler'(_0x9213f9,_0x594dbe){const _0x2be729=_0x54481f,_0x157f32={'m1Prime':_0x9213f9,'m2Prime':_0x594dbe};if(_0x9213f9[_0x2be729(0x191)][_0x2be729(0x15b)]!==_0x594dbe[_0x2be729(0x191)]['unitId']||_0x9213f9[_0x2be729(0x191)][_0x2be729(0x126)]!==_0x594dbe[_0x2be729(0x191)][_0x2be729(0x126)])return _0x157f32;const _0x4437bd=_0x12a789[_0x2be729(0xec)](_0x9213f9),_0x203041=_0x12a789[_0x2be729(0xec)](_0x594dbe),_0x55a498=_0x4f9a3f(h(_0x425bb4(_0x9213f9[_0x2be729(0x191)][_0x2be729(0x1a6)])),h(_0x425bb4(_0x594dbe[_0x2be729(0x191)]['range'])));if(_0x55a498?(_0x203041[_0x2be729(0x191)][_0x2be729(0x1a6)][_0x2be729(0x11e)]+=_0x55a498[_0x2be729(0x1ba)],_0x203041[_0x2be729(0x191)][_0x2be729(0x1a6)]['endRow']+=_0x55a498['step']+(_0x55a498[_0x2be729(0xbd)]||0x0)):_0x203041['id']=_0x411476['id'],_0x9213f9[_0x2be729(0x191)][_0x2be729(0x1a6)][_0x2be729(0x11e)]!==_0x594dbe[_0x2be729(0x191)]['range'][_0x2be729(0x11e)]){const _0x284f73=_0x4f9a3f(h(_0x425bb4(_0x594dbe[_0x2be729(0x191)][_0x2be729(0x1a6)])),h(_0x425bb4(_0x9213f9[_0x2be729(0x191)]['range'])));_0x284f73?(_0x4437bd[_0x2be729(0x191)][_0x2be729(0x1a6)]['startRow']+=_0x284f73[_0x2be729(0x1ba)],_0x4437bd['params']['range'][_0x2be729(0xda)]+=_0x284f73['step']+(_0x284f73[_0x2be729(0xbd)]||0x0)):_0x4437bd['id']=_0x411476['id'];}return{'m1Prime':_0x4437bd,'m2Prime':_0x203041};}},Ca={'m1':_0xa7a746['id'],'m2':_0xeb63e6['id'],'handler'(_0x22a594,_0x68ee11){const _0x2d34b5=_0x54481f,_0x202743={'m1Prime':_0x22a594,'m2Prime':_0x68ee11};if(_0x22a594['params'][_0x2d34b5(0x15b)]!==_0x68ee11['params'][_0x2d34b5(0x15b)]||_0x22a594[_0x2d34b5(0x191)][_0x2d34b5(0x126)]!==_0x68ee11[_0x2d34b5(0x191)][_0x2d34b5(0xad)][_0x2d34b5(0x126)]&&_0x22a594[_0x2d34b5(0x191)][_0x2d34b5(0x126)]!==_0x68ee11[_0x2d34b5(0x191)]['to'][_0x2d34b5(0x126)])return _0x202743;const _0x55240c=_0x12a789[_0x2d34b5(0xec)](_0x22a594),_0x567e6d=_0x12a789[_0x2d34b5(0xec)](_0x68ee11);if(_0x22a594[_0x2d34b5(0x191)]['subUnitId']===_0x68ee11[_0x2d34b5(0x191)]['from'][_0x2d34b5(0x126)]){const _0x2df218=new _0x3597fb(_0x567e6d[_0x2d34b5(0x191)][_0x2d34b5(0xad)][_0x2d34b5(0x9e)])[_0x2d34b5(0xa7)](),{startRow:_0x5e3ee6,endRow:_0x513841}=_0x2df218,{startRow:_0x4cb0cf,endRow:_0x4a3feb}=_0x22a594['params'][_0x2d34b5(0x1a6)],{step:_0x2cca40,length:_0x55604c}=_0x4f9a3f(_0x425bb4(_0x22a594[_0x2d34b5(0x191)]['range']),_0x425bb4(_0x2df218));_0x2cca40>0x0&&_0x55604c===0x0&&ft(_0x567e6d[_0x2d34b5(0x191)][_0x2d34b5(0xad)][_0x2d34b5(0x9e)],_0x5e3ee6,_0x513841-_0x5e3ee6+0x1,_0x2cca40),_0x2cca40===0x0&&_0x55604c>0x0&&ft(_0x567e6d['params']['from'][_0x2d34b5(0x9e)],_0x4cb0cf,_0x513841-_0x4cb0cf+0x1,_0x4a3feb-_0x4cb0cf+0x1);}if(_0x22a594['params'][_0x2d34b5(0x126)]===_0x68ee11[_0x2d34b5(0x191)]['to'][_0x2d34b5(0x126)]){const _0x3dbbe9=new _0x3597fb(_0x68ee11[_0x2d34b5(0x191)]['to'][_0x2d34b5(0x9e)])[_0x2d34b5(0xa7)](),{startRow:_0x4bc093,endRow:_0x4690b8}=_0x3dbbe9,{startRow:_0x5b45a5,endRow:_0x3d9c0d}=_0x22a594[_0x2d34b5(0x191)][_0x2d34b5(0x1a6)],{step:_0x20c2ca,length:_0x6209e4}=_0x4f9a3f(_0x425bb4(_0x22a594[_0x2d34b5(0x191)][_0x2d34b5(0x1a6)]),_0x425bb4(_0x3dbbe9));_0x20c2ca>0x0&&_0x6209e4===0x0&&ft(_0x567e6d[_0x2d34b5(0x191)]['to'][_0x2d34b5(0x9e)],_0x4bc093,_0x4690b8-_0x4bc093+0x1,_0x20c2ca),_0x20c2ca===0x0&&_0x6209e4>0x0&&ft(_0x567e6d[_0x2d34b5(0x191)]['to'][_0x2d34b5(0x9e)],_0x5b45a5,_0x4690b8-_0x5b45a5+0x1,_0x3d9c0d-_0x5b45a5+0x1);}return{'m1Prime':_0x55240c,'m2Prime':_0x567e6d};}},Pa={'m1':_0xa7a746['id'],'m2':_0xfa530e['id'],'handler'(_0x4c5b1a,_0x3c0af1){const _0x52b205=_0x54481f,_0x17ea48={'m1Prime':_0x4c5b1a,'m2Prime':_0x3c0af1};if(_0x4c5b1a[_0x52b205(0x191)][_0x52b205(0x15b)]!==_0x3c0af1[_0x52b205(0x191)]['unitId']||_0x4c5b1a['params'][_0x52b205(0x126)]!==_0x3c0af1[_0x52b205(0x191)][_0x52b205(0x126)])return _0x17ea48;const _0x473b50=_0x12a789[_0x52b205(0xec)](_0x4c5b1a),_0x1a3380=_0x12a789['deepClone'](_0x3c0af1),_0x388f05=_0x3c0af1[_0x52b205(0x191)][_0x52b205(0x9d)],_0x213356=_0x3c0af1[_0x52b205(0x191)]['targetRange'];if(_0x4c5b1a[_0x52b205(0x191)][_0x52b205(0x1a6)][_0x52b205(0x11e)]>_0x388f05['startRow']&&_0x4c5b1a[_0x52b205(0x191)][_0x52b205(0x1a6)][_0x52b205(0x11e)]<=_0x388f05[_0x52b205(0xda)]||_0x4c5b1a[_0x52b205(0x191)]['range'][_0x52b205(0x11e)]>_0x213356[_0x52b205(0x11e)]&&_0x4c5b1a['params'][_0x52b205(0x1a6)][_0x52b205(0x11e)]<=_0x213356['endRow'])return{'error':new Error(_0x52b205(0x158))};const _0x718c64=_0x4f9a3f(h(_0x425bb4(_0x4c5b1a[_0x52b205(0x191)]['range'])),h(_0x425bb4(_0x388f05))),_0xf142cb=_0x4f9a3f(h(_0x425bb4(_0x4c5b1a['params'][_0x52b205(0x1a6)])),h(_0x425bb4(_0x213356)));if(_0x1a3380[_0x52b205(0x191)][_0x52b205(0x9d)][_0x52b205(0x11e)]+=_0x718c64[_0x52b205(0x1ba)],_0x1a3380['params']['sourceRange'][_0x52b205(0xda)]+=_0x718c64[_0x52b205(0x1ba)]+(_0x718c64[_0x52b205(0xbd)]||0x0),_0x1a3380[_0x52b205(0x191)][_0x52b205(0x12c)][_0x52b205(0x11e)]+=_0xf142cb[_0x52b205(0x1ba)],_0x1a3380[_0x52b205(0x191)][_0x52b205(0x12c)][_0x52b205(0xda)]+=_0xf142cb['step']+(_0xf142cb['length']||0x0),_0x388f05[_0x52b205(0x11e)]>=_0x4c5b1a[_0x52b205(0x191)]['range'][_0x52b205(0x11e)]&&_0x213356[_0x52b205(0x11e)]<_0x4c5b1a[_0x52b205(0x191)]['range'][_0x52b205(0x11e)]){const _0x2eec3b=_0x213356[_0x52b205(0xda)]-_0x213356[_0x52b205(0x11e)]+0x1;_0x473b50[_0x52b205(0x191)][_0x52b205(0x1a6)]['startRow']+=_0x2eec3b,_0x473b50['params'][_0x52b205(0x1a6)]['endRow']+=_0x2eec3b;}else{if(_0x388f05[_0x52b205(0xda)]<_0x4c5b1a[_0x52b205(0x191)][_0x52b205(0x1a6)]['startRow']&&_0x213356[_0x52b205(0x11e)]>=_0x4c5b1a[_0x52b205(0x191)][_0x52b205(0x1a6)][_0x52b205(0x11e)]){const _0x1cd226=_0x388f05[_0x52b205(0xda)]-_0x388f05[_0x52b205(0x11e)]+0x1;_0x473b50[_0x52b205(0x191)][_0x52b205(0x1a6)][_0x52b205(0x11e)]-=_0x1cd226,_0x473b50[_0x52b205(0x191)]['range'][_0x52b205(0xda)]-=_0x1cd226;}}return{'m1Prime':_0x473b50,'m2Prime':_0x1a3380};}},Ua={'m1':_0xa7a746['id'],'m2':_0x180381['id'],'handler'(_0x47ab82,_0x596006){const _0x547657=_0x54481f,_0x52136a={'m1Prime':_0x47ab82,'m2Prime':_0x596006};if(_0x47ab82[_0x547657(0x191)]['unitId']!==_0x596006[_0x547657(0x191)][_0x547657(0x15b)]||_0x47ab82[_0x547657(0x191)]['subUnitId']!==_0x596006['params'][_0x547657(0x126)])return _0x52136a;const _0x13a0a9=_0x12a789[_0x547657(0xec)](_0x47ab82),_0x1550ae=_0x12a789[_0x547657(0xec)](_0x596006),{ranges:_0xb519e6}=_0x1550ae[_0x547657(0x191)];return _0xb519e6['some'](_0x232388=>{const _0x6fee81=_0x547657,_0x243f4e=_0x4f9a3f(h(_0x425bb4(_0x47ab82[_0x6fee81(0x191)][_0x6fee81(0x1a6)])),h(_0x425bb4(_0x232388)));return _0x243f4e[_0x6fee81(0xbd)]!==0x0?!0x0:(_0x232388[_0x6fee81(0x11e)]+=_0x243f4e[_0x6fee81(0x1ba)],_0x232388[_0x6fee81(0xda)]+=_0x243f4e['step'],!0x1);})?{'error':new Error('insert\x20row\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x13a0a9,'m2Prime':_0x1550ae};}},ba={'m1':_0xa7a746['id'],'m2':_0x116e41['id'],'handler'(_0x5e973e,_0x579155){const _0x1bd1dc=_0x54481f,_0x49418b={'m1Prime':_0x5e973e,'m2Prime':_0x579155};if(_0x5e973e[_0x1bd1dc(0x191)][_0x1bd1dc(0x15b)]!==_0x579155[_0x1bd1dc(0x191)]['unitId']||_0x5e973e[_0x1bd1dc(0x191)][_0x1bd1dc(0x126)]!==_0x579155[_0x1bd1dc(0x191)][_0x1bd1dc(0x126)])return _0x49418b;const _0x260a63=_0x12a789[_0x1bd1dc(0xec)](_0x5e973e),_0x54b13b=_0x12a789['deepClone'](_0x579155);if(_0x5e973e['params'][_0x1bd1dc(0x1a6)][_0x1bd1dc(0x11e)]<=_0x579155[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)]['endRow']&&_0x5e973e[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)][_0x1bd1dc(0x11e)]>_0x579155[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)][_0x1bd1dc(0x11e)])return{'error':new Error(_0x1bd1dc(0x1d0))};const _0x4eb49b=_0x4f9a3f(h(_0x425bb4(_0x5e973e[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)])),h(_0x425bb4(_0x579155[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)])));_0x4eb49b?(_0x54b13b['params'][_0x1bd1dc(0x1a6)][_0x1bd1dc(0x11e)]+=_0x4eb49b[_0x1bd1dc(0x1ba)],_0x54b13b['params'][_0x1bd1dc(0x1a6)]['endRow']+=_0x4eb49b[_0x1bd1dc(0x1ba)]+(_0x4eb49b['length']||0x0)):_0x54b13b['id']=_0x411476['id'];const _0xd7b436=_0x27f777(h(_0x425bb4(_0x579155['params'][_0x1bd1dc(0x1a6)])),h(_0x425bb4(_0x5e973e[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)])));return _0xd7b436&&(_0x260a63[_0x1bd1dc(0x191)][_0x1bd1dc(0x1a6)][_0x1bd1dc(0x11e)]+=_0xd7b436['step'],_0x260a63['params'][_0x1bd1dc(0x1a6)][_0x1bd1dc(0xda)]+=_0xd7b436['step']+(_0xd7b436[_0x1bd1dc(0xbd)]||0x0)),{'m1Prime':_0x260a63,'m2Prime':_0x54b13b};}},Ma={'m1':_0xa7a746['id'],'m2':_0x3194c5['id'],'handler'(_0x1d2e35,_0x193be0){const _0x605b27=_0x54481f,_0x56cd48=_0x12a789[_0x605b27(0xec)](_0x1d2e35),_0x57ffd4=_0x12a789[_0x605b27(0xec)](_0x193be0);if(_0x1d2e35['params'][_0x605b27(0x15b)]!==_0x193be0[_0x605b27(0x191)][_0x605b27(0x15b)]||_0x1d2e35[_0x605b27(0x191)][_0x605b27(0x126)]!==_0x193be0[_0x605b27(0x191)][_0x605b27(0x126)])return{'m1Prime':_0x56cd48,'m2Prime':_0x57ffd4};const _0x51629c=_0x57ffd4[_0x605b27(0x191)][_0x605b27(0x1a9)][_0x605b27(0x21d)](_0x5b259f=>{const _0x35d9fc=_0x605b27,_0xb1077c=_0x56cd48['params'][_0x35d9fc(0x1a6)],_0x2bf2d6=_0xb1077c['endRow']-_0xb1077c[_0x35d9fc(0x11e)]+0x1;return _0xb1077c['startRow']<=_0x5b259f['startRow']?{..._0x5b259f,'startRow':_0x5b259f[_0x35d9fc(0x11e)]+_0x2bf2d6,'endRow':_0x5b259f[_0x35d9fc(0xda)]+_0x2bf2d6}:_0xb1077c[_0x35d9fc(0x11e)]>_0x5b259f[_0x35d9fc(0x11e)]&&_0xb1077c[_0x35d9fc(0x11e)]<=_0x5b259f[_0x35d9fc(0xda)]?{..._0x5b259f,'endRow':_0x5b259f[_0x35d9fc(0xda)]+_0x2bf2d6}:{..._0x5b259f};});return _0x57ffd4[_0x605b27(0x191)][_0x605b27(0x1a9)]=_0x51629c,{'m1Prime':_0x56cd48,'m2Prime':_0x57ffd4};}},va={'m1':_0xa7a746['id'],'m2':_0x41be04['id'],'handler'(_0x2928b4,_0x4e8e14){const _0xf14d39=_0x54481f,_0x2d096d={'m1Prime':_0x2928b4,'m2Prime':_0x4e8e14};if(_0x2928b4['params'][_0xf14d39(0x15b)]!==_0x4e8e14[_0xf14d39(0x191)]['unitId']||_0x2928b4[_0xf14d39(0x191)][_0xf14d39(0x126)]!==_0x4e8e14[_0xf14d39(0x191)]['subUnitId'])return _0x2d096d;const _0x56edb8=_0x12a789[_0xf14d39(0xec)](_0x4e8e14),_0x1640d4=_0x4f9a3f(h(_0x425bb4(_0x2928b4[_0xf14d39(0x191)][_0xf14d39(0x1a6)])),h(_0x425bb4(_0x4e8e14['params'][_0xf14d39(0x1a6)])));_0x56edb8[_0xf14d39(0x191)][_0xf14d39(0x1a6)][_0xf14d39(0x11e)]+=_0x1640d4['step'],_0x56edb8[_0xf14d39(0x191)]['range'][_0xf14d39(0xda)]+=_0x1640d4[_0xf14d39(0x1ba)]+(_0x1640d4[_0xf14d39(0xbd)]||0x0);const _0x450076=_0x2928b4[_0xf14d39(0x191)][_0xf14d39(0x1a6)][_0xf14d39(0x11e)],_0x19f45a=_0x2928b4[_0xf14d39(0x191)][_0xf14d39(0x1a6)][_0xf14d39(0xda)]-_0x2928b4[_0xf14d39(0x191)]['range'][_0xf14d39(0x11e)]+0x1,_0x5dfc0={};for(const _0x23cea5 in _0x4e8e14[_0xf14d39(0x191)][_0xf14d39(0xcb)]){let _0x489a28=Number(_0x23cea5),_0x50a57e=_0x4e8e14['params'][_0xf14d39(0xcb)][_0x23cea5];_0x489a28=Le(_0x450076,_0x19f45a,_0x489a28),_0x50a57e=Le(_0x450076,_0x19f45a,_0x50a57e),_0x5dfc0[_0x489a28]=_0x50a57e;}return _0x56edb8[_0xf14d39(0x191)]['order']=_0x5dfc0,{'m1Prime':_0x2928b4,'m2Prime':_0x56edb8};}},Le=(_0x3004c6,_0x30eb4a,_0x182b35)=>_0x182b35>=_0x3004c6?_0x182b35+_0x30eb4a:_0x182b35,Ea={'m1':_0xa7a746['id'],'m2':_0x30c2c8['id'],'handler'(_0x39b012,_0x2022a0){const _0x31cbff=_0x54481f,_0x38736c={'m1Prime':_0x39b012,'m2Prime':_0x2022a0};if(_0x39b012['params'][_0x31cbff(0x15b)]!==_0x2022a0[_0x31cbff(0x191)][_0x31cbff(0x15b)]||_0x39b012['params'][_0x31cbff(0x126)]!==_0x2022a0[_0x31cbff(0x191)]['subUnitId'])return _0x38736c;const _0x5ea27f=[_0x12a789['deepClone'](_0x39b012)],_0x6da129=_0x12a789[_0x31cbff(0xec)](_0x2022a0),{values:_0x1afcdc}=_0x6da129[_0x31cbff(0x191)],_0x19ec55=[];let _0xed1308=!0x1;for(const _0x3cfc6e in _0x1afcdc){const _0x320206=_0x1afcdc[_0x3cfc6e];if(_0x19ec55[_0x31cbff(0x187)](..._0x320206[_0x31cbff(0x1a9)]),_0x320206[_0x31cbff(0x1a9)]['some'](_0x19337d=>{const _0x33e64c=_0x31cbff,_0x2a2f5=_0x4f9a3f(h(_0x425bb4(_0x39b012['params'][_0x33e64c(0x1a6)])),_0x425bb4(h(_0x19337d)));return _0x2a2f5[_0x33e64c(0xbd)]!==0x0?!0x0:(_0x2a2f5[_0x33e64c(0x1ba)]!==0x0&&(_0xed1308=!0x0),_0x19337d[_0x33e64c(0x11e)]+=_0x2a2f5[_0x33e64c(0x1ba)],_0x19337d[_0x33e64c(0xda)]+=_0x2a2f5['step'],!0x1);}))return{'error':new Error(_0x31cbff(0x92))};}if(_0xed1308){const _0x98e31c={'id':_0x180381['id'],'params':{'unitId':_0x2022a0[_0x31cbff(0x191)][_0x31cbff(0x15b)],'subUnitId':_0x2022a0[_0x31cbff(0x191)][_0x31cbff(0x126)],'ranges':_0x19ec55}};_0x5ea27f['push'](_0x98e31c,_0x6da129);}return{'m1Prime':_0x5ea27f,'m2Prime':_0x6da129};}},Sa={'m1':_0xa7a746['id'],'m2':_0x59880b['id'],'handler'(_0x3cbbaf,_0xc30571){const _0x586018=_0x54481f,_0x50c55a={'m1Prime':_0x3cbbaf,'m2Prime':_0xc30571};if(_0x3cbbaf[_0x586018(0x191)][_0x586018(0x15b)]!==_0xc30571['params'][_0x586018(0x15b)]||_0x3cbbaf['params'][_0x586018(0x126)]!==_0xc30571[_0x586018(0x191)][_0x586018(0x126)])return _0x50c55a;const _0x3bad1f=[_0x12a789[_0x586018(0xec)](_0x3cbbaf)],_0xa5b79f=_0x12a789[_0x586018(0xec)](_0xc30571),_0x5826f6=new _0x3597fb(_0xa5b79f['params'][_0x586018(0xaf)]),_0x121194=_0x5826f6['getDataRange'](),_0x1fd325=_0x3cbbaf['params'][_0x586018(0x1a6)],_0x5c5bb6=_0x1fd325['endRow']-_0x1fd325['startRow']+0x1;if(_0xa5b79f['params'][_0x586018(0xaf)]&&_0x1fd325[_0x586018(0x11e)]<=_0x121194[_0x586018(0xda)]){const _0xfe3728=Math[_0x586018(0x1a7)](_0x121194[_0x586018(0x11e)],_0x1fd325[_0x586018(0x11e)]);ft(_0xa5b79f[_0x586018(0x191)][_0x586018(0xaf)],_0xfe3728,_0x121194['endRow']-_0xfe3728+0x1,_0x5c5bb6);}const _0x190b66=new _0x3597fb();let _0xb059df=!0x1;if(_0x5826f6[_0x586018(0x1bf)]((_0x1152f8,_0x396340,_0x41fd2b)=>{const _0x283452=_0x586018;if(_0x41fd2b&&_0x41fd2b['f']){const _0x35d452=_0x41fd2b['f'];let _0x1fedca=!0x1;const _0x256e8f=dt(_0x3cbbaf[_0x283452(0x191)][_0x283452(0x15b)],_0x3cbbaf[_0x283452(0x191)][_0x283452(0x126)],_0x35d452,_0x29e0ba=>{const _0x3e3c80=_0x283452,_0x15fd05=_0x4f9a3f(h(_0x425bb4(_0x3cbbaf[_0x3e3c80(0x191)][_0x3e3c80(0x1a6)])),h(_0x425bb4(_0x29e0ba)));return(_0x15fd05[_0x3e3c80(0x1ba)]!==0x0||_0x15fd05[_0x3e3c80(0xbd)]!==0x0)&&(_0x1fedca=!0x0,_0x29e0ba['startRow']+=_0x15fd05['step'],_0x29e0ba[_0x3e3c80(0xda)]+=_0x15fd05[_0x3e3c80(0x1ba)]+_0x15fd05[_0x3e3c80(0xbd)]),_0x29e0ba;});_0x1fedca&&(_0xb059df=!0x0,_0x41fd2b['f']=_0x256e8f,_0x190b66[_0x283452(0x1a3)](_0x1152f8,_0x396340,{..._0x41fd2b}));}}),_0xb059df){const _0xc983bd={'id':_0x59880b['id'],'params':{'unitId':_0xc30571['params']['unitId'],'subUnitId':_0xc30571['params'][_0x586018(0x126)],'cellValue':_0x190b66['getMatrix']()}};_0x3bad1f[_0x586018(0x187)](_0xc983bd);}return{'m1Prime':_0x3bad1f,'m2Prime':_0xa5b79f};}},Wa={'m1':_0xa7a746['id'],'m2':_0x5d6537['id'],'handler'(_0x2ccbf4,_0x53153c){const _0x49b0a9=_0x54481f,_0x2bce6b={'m1Prime':_0x2ccbf4,'m2Prime':_0x53153c};if(_0x2ccbf4['params']['unitId']!==_0x53153c[_0x49b0a9(0x191)]['unitId']||_0x2ccbf4[_0x49b0a9(0x191)]['subUnitId']!==_0x53153c[_0x49b0a9(0x191)][_0x49b0a9(0x126)])return _0x2bce6b;const _0x29da33=_0x12a789[_0x49b0a9(0xec)](_0x2ccbf4),_0x2c862c=_0x12a789[_0x49b0a9(0xec)](_0x53153c),{rowData:_0x515c0d}=_0x2c862c['params'];for(let _0x36b676=_0x2ccbf4[_0x49b0a9(0x191)][_0x49b0a9(0x1a6)][_0x49b0a9(0x11e)];_0x36b676<=_0x2ccbf4[_0x49b0a9(0x191)]['range'][_0x49b0a9(0xda)];_0x36b676++)_0x164e70(_0x36b676,void 0x0,_0x515c0d);return{'m1Prime':_0x29da33,'m2Prime':_0x2c862c};}},Va={'m1':_0xa7a746['id'],'m2':_0x4744ed['id'],'handler'(_0x8d4dda,_0x49a1d2){const _0x383c78=_0x54481f,_0x50643b={'m1Prime':_0x8d4dda,'m2Prime':_0x49a1d2};if(_0x8d4dda[_0x383c78(0x191)][_0x383c78(0x15b)]!==_0x49a1d2[_0x383c78(0x191)][_0x383c78(0x15b)]||_0x8d4dda[_0x383c78(0x191)][_0x383c78(0x126)]!==_0x49a1d2[_0x383c78(0x191)][_0x383c78(0x126)])return _0x50643b;const _0x387efe=_0x12a789[_0x383c78(0xec)](_0x8d4dda),_0xad44e2=_0x12a789['deepClone'](_0x49a1d2),{ranges:_0x5e56ea}=_0xad44e2[_0x383c78(0x191)];return _0x5e56ea['some'](_0xb3d14f=>{const _0x4bd651=_0x383c78,_0x5abafb=_0x4f9a3f(h(_0x425bb4(_0x8d4dda[_0x4bd651(0x191)]['range'])),h(_0x425bb4(_0xb3d14f)));return _0x5abafb[_0x4bd651(0xbd)]!==0x0?!0x0:(_0xb3d14f[_0x4bd651(0x11e)]+=_0x5abafb[_0x4bd651(0x1ba)],_0xb3d14f[_0x4bd651(0xda)]+=_0x5abafb[_0x4bd651(0x1ba)],!0x1);})?{'error':new Error(_0x383c78(0x218))}:{'m1Prime':_0x387efe,'m2Prime':_0xad44e2};}},_a={'m1':_0xa7a746['id'],'m2':_0x567b52['id'],'handler'(_0x2b1912,_0x1d2284){const _0x499f4a=_0x54481f,_0x320364={'m1Prime':_0x2b1912,'m2Prime':_0x1d2284};if(_0x2b1912[_0x499f4a(0x191)][_0x499f4a(0x15b)]!==_0x1d2284['params'][_0x499f4a(0x15b)]||_0x2b1912[_0x499f4a(0x191)][_0x499f4a(0x126)]!==_0x1d2284[_0x499f4a(0x191)]['subUnitId'])return _0x320364;const _0x132913=_0x12a789[_0x499f4a(0xec)](_0x2b1912),_0x4c882d=_0x12a789[_0x499f4a(0xec)](_0x1d2284),{ranges:_0x10f486}=_0x4c882d['params'];return _0x10f486[_0x499f4a(0x161)](_0x3a3886=>{const _0x2fc803=_0x499f4a,_0x23e55d=_0x4f9a3f(h(_0x425bb4(_0x2b1912[_0x2fc803(0x191)]['range'])),h(_0x425bb4(_0x3a3886)));return _0x23e55d['length']!==0x0?!0x0:(_0x3a3886['startRow']+=_0x23e55d[_0x2fc803(0x1ba)],_0x3a3886[_0x2fc803(0xda)]+=_0x23e55d[_0x2fc803(0x1ba)],!0x1);})?{'error':new Error(_0x499f4a(0xcf))}:{'m1Prime':_0x132913,'m2Prime':_0x4c882d};}},Oa={'m1':_0xa7a746['id'],'m2':_0x22c7b4['id'],'handler'(_0x53fb63,_0x56c86c){const _0x1c8146=_0x54481f,_0x4dba70={'m1Prime':[],'m2Prime':[]};if(_0x53fb63[_0x1c8146(0x191)][_0x1c8146(0x15b)]!==_0x56c86c[_0x1c8146(0x191)]['unitId']||_0x53fb63[_0x1c8146(0x191)][_0x1c8146(0x126)]!==_0x56c86c[_0x1c8146(0x191)]['subUnitId'])return _0x4dba70;const _0x8fcca6=_0x12a789[_0x1c8146(0xec)](_0x56c86c);let _0x42e49b=!0x1;return _0x8fcca6[_0x1c8146(0x191)][_0x1c8146(0x11d)]['forEach'](_0x83e684=>{const _0x13dda1=_0x1c8146,{range:_0x2c44c1,primary:_0x367315}=_0x83e684,_0x3e8db4=_0x4f9a3f(h(_0x425bb4(_0x53fb63[_0x13dda1(0x191)]['range'])),h(_0x425bb4(_0x2c44c1)));if(_0x3e8db4[_0x13dda1(0xbd)]||_0x3e8db4[_0x13dda1(0x1ba)]){if(_0x2c44c1[_0x13dda1(0x11e)]+=_0x3e8db4['step'],_0x2c44c1[_0x13dda1(0xda)]+=_0x3e8db4[_0x13dda1(0x1ba)]+(_0x3e8db4[_0x13dda1(0xbd)]||0x0),_0x367315){const _0x2daa43=_0x4f9a3f(h(_0x425bb4(_0x53fb63[_0x13dda1(0x191)]['range'])),h(_0x425bb4(_0x367315)));(_0x2daa43[_0x13dda1(0xbd)]||_0x2daa43[_0x13dda1(0x1ba)])&&(_0x367315[_0x13dda1(0x11e)]+=_0x2daa43[_0x13dda1(0x1ba)],_0x367315['endRow']+=_0x2daa43['step'],_0x367315[_0x13dda1(0xf9)]+=_0x2daa43[_0x13dda1(0x1ba)]);}_0x42e49b=!0x0;}}),_0x42e49b&&_0x4dba70['m2Prime'][_0x1c8146(0x187)](_0x8fcca6),_0x4dba70;}},ya={'m1':_0xa7a746['id'],'m2':_0x4a261b['id'],'handler'(_0x548ca2,_0x83740b){const _0x4d602a=_0x54481f,_0x3acd29={'m1Prime':[_0x548ca2],'m2Prime':[_0x83740b]};if(_0x548ca2['params'][_0x4d602a(0x15b)]!==_0x83740b[_0x4d602a(0x191)][_0x4d602a(0x15b)]||_0x548ca2['params']['subUnitId']!==_0x83740b[_0x4d602a(0x191)][_0x4d602a(0x126)])return _0x3acd29;const _0x59b70d=_0x12a789[_0x4d602a(0xec)](_0x548ca2),_0x7d24a=_0x12a789[_0x4d602a(0xec)](_0x83740b),_0x1f400a=be({'start':_0x548ca2[_0x4d602a(0x191)][_0x4d602a(0x1a6)][_0x4d602a(0x11e)],'end':_0x548ca2[_0x4d602a(0x191)][_0x4d602a(0x1a6)]['endRow']},{'start':_0x83740b[_0x4d602a(0x191)]['range'][_0x4d602a(0x11e)],'end':_0x83740b['params'][_0x4d602a(0x1a6)]['endRow']});return _0x7d24a[_0x4d602a(0x191)][_0x4d602a(0x1a6)][_0x4d602a(0x11e)]===_0x1f400a[_0x4d602a(0x22f)]&&_0x7d24a['params'][_0x4d602a(0x1a6)][_0x4d602a(0xda)]===_0x1f400a[_0x4d602a(0xd6)]?_0x3acd29:(_0x7d24a[_0x4d602a(0x191)][_0x4d602a(0x1a6)]['startRow']=_0x1f400a['start'],_0x7d24a[_0x4d602a(0x191)][_0x4d602a(0x1a6)][_0x4d602a(0xda)]=_0x1f400a['end'],{'m1Prime':[_0x7d24a,_0x59b70d],'m2Prime':[_0x7d24a]});}},Na={'m1':_0xa7a746['id'],'m2':_0x1bdf83['id'],'handler'(_0x2f5047,_0x4f524f){const _0x30ba28=_0x54481f,_0x2bd1d8={'m1Prime':_0x2f5047,'m2Prime':_0x4f524f};if(_0x2f5047[_0x30ba28(0x191)][_0x30ba28(0x15b)]!==_0x4f524f[_0x30ba28(0x191)][_0x30ba28(0x15b)]||_0x2f5047[_0x30ba28(0x191)][_0x30ba28(0x126)]!==_0x4f524f[_0x30ba28(0x191)][_0x30ba28(0x126)])return _0x2bd1d8;const _0x264927=_0x12a789['deepClone'](_0x2f5047),_0x52f424=_0x12a789[_0x30ba28(0xec)](_0x4f524f),{rowsAutoHeightInfo:_0x436c79}=_0x52f424['params'];return _0x436c79[_0x30ba28(0x161)](_0x584659=>{const _0x47be71=_0x30ba28,_0x10d826={'startRow':_0x584659['row'],'endRow':_0x584659['row'],'startColumn':0x0,'endColumn':0x0},_0x3619d0=_0x4f9a3f(h(_0x425bb4(_0x2f5047[_0x47be71(0x191)][_0x47be71(0x1a6)])),_0x425bb4(_0x10d826));return _0x3619d0[_0x47be71(0xbd)]!==0x0?!0x0:(_0x584659[_0x47be71(0x22d)]+=_0x3619d0[_0x47be71(0x1ba)],!0x1);})?{'error':new Error(_0x30ba28(0x130))}:{'m1Prime':_0x264927,'m2Prime':_0x52f424};}},Da={'m1':_0xa7a746['id'],'m2':_0x295209['id'],'handler'(_0x5c5b9a,_0x187468){const _0x3bd0bd=_0x54481f,_0x243ddd={'m1Prime':_0x5c5b9a,'m2Prime':_0x187468};if(_0x5c5b9a[_0x3bd0bd(0x191)][_0x3bd0bd(0x15b)]!==_0x187468[_0x3bd0bd(0x191)][_0x3bd0bd(0x15b)]||_0x5c5b9a[_0x3bd0bd(0x191)][_0x3bd0bd(0x126)]!==_0x187468[_0x3bd0bd(0x191)][_0x3bd0bd(0x126)])return _0x243ddd;const _0x3a34c8=_0x12a789[_0x3bd0bd(0xec)](_0x5c5b9a),_0x1493b8=_0x12a789[_0x3bd0bd(0xec)](_0x187468),{ranges:_0x534ac8,rowHeight:_0x52c1a1}=_0x1493b8[_0x3bd0bd(0x191)];if(_0x534ac8[_0x3bd0bd(0x161)](_0x171dd7=>{const _0x2c58cc=_0x3bd0bd,_0x4ad76b=_0x4f9a3f(h(_0x425bb4(_0x5c5b9a[_0x2c58cc(0x191)][_0x2c58cc(0x1a6)])),_0x425bb4(_0x171dd7));return _0x4ad76b[_0x2c58cc(0xbd)]!==0x0?!0x0:(_0x171dd7[_0x2c58cc(0x11e)]+=_0x4ad76b['step'],_0x171dd7[_0x2c58cc(0xda)]+=_0x4ad76b[_0x2c58cc(0x1ba)],!0x1);}))return{'error':new Error(_0x3bd0bd(0x1ef))};if(typeof _0x52c1a1!=_0x3bd0bd(0x13c)){for(let _0x2918e0=_0x5c5b9a[_0x3bd0bd(0x191)][_0x3bd0bd(0x1a6)][_0x3bd0bd(0x11e)];_0x2918e0<=_0x5c5b9a[_0x3bd0bd(0x191)][_0x3bd0bd(0x1a6)][_0x3bd0bd(0xda)];_0x2918e0++)_0x164e70(_0x2918e0,void 0x0,_0x52c1a1);}return{'m1Prime':_0x3a34c8,'m2Prime':_0x1493b8};}},Aa={'m1':_0xa7a746['id'],'m2':_0x2d1c92['id'],'handler'(_0x1b2778,_0x3b2f23){const _0x4cdf44=_0x54481f,_0x43d42f={'m1Prime':_0x1b2778,'m2Prime':_0x3b2f23};if(_0x1b2778['params'][_0x4cdf44(0x15b)]!==_0x3b2f23[_0x4cdf44(0x191)][_0x4cdf44(0x15b)]||_0x1b2778[_0x4cdf44(0x191)][_0x4cdf44(0x126)]!==_0x3b2f23[_0x4cdf44(0x191)][_0x4cdf44(0x126)])return _0x43d42f;const _0x3eb892=_0x12a789[_0x4cdf44(0xec)](_0x1b2778),_0x4521f3=_0x12a789['deepClone'](_0x3b2f23),{ranges:_0x5e5cb4,autoHeightInfo:_0x46121e}=_0x4521f3[_0x4cdf44(0x191)];if(_0x5e5cb4[_0x4cdf44(0x161)](_0x477f89=>{const _0x651677=_0x4cdf44,_0x193345=_0x4f9a3f(h(_0x425bb4(_0x1b2778[_0x651677(0x191)][_0x651677(0x1a6)])),_0x425bb4(_0x477f89));return _0x193345['length']!==0x0?!0x0:(_0x477f89[_0x651677(0x11e)]+=_0x193345[_0x651677(0x1ba)],_0x477f89[_0x651677(0xda)]+=_0x193345[_0x651677(0x1ba)],!0x1);}))return{'error':new Error(_0x4cdf44(0xc3))};if(typeof _0x46121e!='number'){for(let _0x18f3ba=_0x1b2778[_0x4cdf44(0x191)]['range'][_0x4cdf44(0x11e)];_0x18f3ba<=_0x1b2778[_0x4cdf44(0x191)][_0x4cdf44(0x1a6)]['endRow'];_0x18f3ba++)_0x164e70(_0x18f3ba,void 0x0,_0x46121e);}return{'m1Prime':_0x3eb892,'m2Prime':_0x4521f3};}},Ta={'m1':_0xa7a746['id'],'m2':_0x44bb69['id'],'handler':(_0x41d7fc,_0x1a7a82)=>{const _0x19d625=_0x54481f,_0x2f07bc={'m1Prime':_0x41d7fc,'m2Prime':_0x1a7a82};if(_0x41d7fc[_0x19d625(0x191)][_0x19d625(0x15b)]!==_0x1a7a82[_0x19d625(0x191)][_0x19d625(0x15b)]||_0x41d7fc[_0x19d625(0x191)][_0x19d625(0x126)]!==_0x1a7a82[_0x19d625(0x191)][_0x19d625(0x126)])return _0x2f07bc;const _0x15556a={'id':_0x1aa760['id'],'params':{'unitId':_0x41d7fc['params'][_0x19d625(0x15b)],'subUnitId':_0x41d7fc[_0x19d625(0x191)][_0x19d625(0x126)],'range':_0x41d7fc[_0x19d625(0x191)][_0x19d625(0x1a6)]}},_0x544ed4=wt(_0x1a7a82,_0x15556a);return{'m1Prime':[_0x41d7fc,..._0x544ed4],'m2Prime':[_0x1a7a82,..._0x544ed4]};}},La={'m1':_0xa7a746['id'],'m2':_0x5ad83d['id'],'handler':(_0x3c2c7a,_0x570f76)=>{const _0x1ea463=_0x54481f,_0x1592f1={'m1Prime':_0x3c2c7a,'m2Prime':_0x570f76};if(_0x3c2c7a[_0x1ea463(0x191)][_0x1ea463(0x15b)]!==_0x570f76[_0x1ea463(0x191)][_0x1ea463(0x15b)]||_0x570f76[_0x1ea463(0x191)][_0x1ea463(0x126)]!==_0x3c2c7a[_0x1ea463(0x191)][_0x1ea463(0x126)])return _0x1592f1;const _0x2a5b39={'id':_0x1aa760['id'],'params':{'unitId':_0x3c2c7a[_0x1ea463(0x191)][_0x1ea463(0x15b)],'subUnitId':_0x3c2c7a[_0x1ea463(0x191)][_0x1ea463(0x126)],'range':_0x3c2c7a[_0x1ea463(0x191)][_0x1ea463(0x1a6)]}},_0x5425e5=Ct(_0x570f76,_0x2a5b39);return{'m1Prime':[_0x3c2c7a,..._0x5425e5],'m2Prime':[_0x570f76,..._0x5425e5]};}},ka={'m1':_0x1c90f1['id'],'m2':_0x41a8ef['id'],'handler':(_0x3aec16,_0x36da9a)=>{const _0x362592=_0x54481f,_0x29c944={'m1Prime':_0x3aec16,'m2Prime':_0x36da9a};if(_0x3aec16[_0x362592(0x191)][_0x362592(0x15b)]!==_0x36da9a[_0x362592(0x191)]['unitId']||_0x3aec16[_0x362592(0x191)][_0x362592(0x126)]!==_0x36da9a[_0x362592(0x191)][_0x362592(0x126)])return _0x29c944;const _0x25459c={'id':_0x5319c7['id'],'params':{'unitId':_0x3aec16[_0x362592(0x191)]['unitId'],'subUnitId':_0x3aec16[_0x362592(0x191)][_0x362592(0x126)],'fromRange':_0x3aec16[_0x362592(0x191)][_0x362592(0x9d)],'toRange':_0x3aec16['params'][_0x362592(0x12c)]}},_0x57e75d=It(_0x36da9a,_0x25459c);return{'m1Prime':[_0x3aec16,..._0x57e75d],'m2Prime':[_0x36da9a,..._0x57e75d]};}},xa={'m1':_0x1c90f1['id'],'m2':_0x5504b0['id'],'handler'(_0x33e805,_0x44d938){const _0x28fa41=_0x54481f,_0x253d87=ar[_0x28fa41(0x12a)](_0x44d938,_0x33e805);return at(_0x253d87)?{'m1Prime':_0x253d87['m2Prime'],'m2Prime':_0x253d87[_0x28fa41(0x1e2)]}:_0x253d87;}},Ha={'m1':_0x1c90f1['id'],'m2':_0x1c90f1['id'],'handler'(_0x4e2a5d,_0x160b9d){const _0x2505df=_0x54481f,_0x357984={'m1Prime':_0x4e2a5d,'m2Prime':_0x160b9d};if(_0x4e2a5d[_0x2505df(0x191)]['unitId']!==_0x160b9d[_0x2505df(0x191)][_0x2505df(0x15b)]||_0x4e2a5d[_0x2505df(0x191)][_0x2505df(0x126)]!==_0x160b9d[_0x2505df(0x191)][_0x2505df(0x126)])return _0x357984;const _0x3223bf=_0x12a789[_0x2505df(0xec)](_0x4e2a5d),_0x5b2db5=_0x12a789['deepClone'](_0x160b9d),_0x5c5770=_0x160b9d[_0x2505df(0x191)]['sourceRange'],_0x3889e9=_0x160b9d[_0x2505df(0x191)][_0x2505df(0x12c)],_0x46df8a=_0x4e2a5d[_0x2505df(0x191)][_0x2505df(0x9d)],_0x3c1c34=_0x4e2a5d[_0x2505df(0x191)][_0x2505df(0x12c)];if(_0x46df8a[_0x2505df(0x1ee)]>=_0x5c5770[_0x2505df(0x10c)]&&_0x46df8a['startColumn']<=_0x5c5770['endColumn'])return{'error':new Error(_0x2505df(0x13d))};const _0x287741=_0x56462a({'start':_0x46df8a['startColumn'],'end':_0x46df8a[_0x2505df(0x1ee)]},{'start':_0x3c1c34['startColumn'],'end':_0x3c1c34['endColumn']},{'start':_0x5c5770[_0x2505df(0x10c)],'end':_0x5c5770[_0x2505df(0x1ee)]}),_0x136eff=_0x56462a({'start':_0x46df8a['startColumn'],'end':_0x46df8a[_0x2505df(0x1ee)]},{'start':_0x3c1c34[_0x2505df(0x10c)],'end':_0x3c1c34['endColumn']},{'start':_0x3889e9[_0x2505df(0x10c)],'end':_0x3889e9['endColumn']});_0x287741&&_0x136eff?(_0x5b2db5[_0x2505df(0x191)][_0x2505df(0x9d)][_0x2505df(0x10c)]+=_0x287741[_0x2505df(0x1ba)],_0x5b2db5[_0x2505df(0x191)][_0x2505df(0x9d)][_0x2505df(0x1ee)]+=_0x287741[_0x2505df(0x1ba)]+(_0x287741['length']||0x0),_0x5b2db5['params']['targetRange'][_0x2505df(0x10c)]+=_0x136eff[_0x2505df(0x1ba)],_0x5b2db5['params'][_0x2505df(0x12c)][_0x2505df(0x1ee)]+=_0x136eff[_0x2505df(0x1ba)]+(_0x136eff[_0x2505df(0xbd)]||0x0)):_0x5b2db5['id']=_0x411476['id'];const _0x27bba8=_0x56462a({'start':_0x5c5770[_0x2505df(0x10c)],'end':_0x5c5770['endColumn']},{'start':_0x3889e9[_0x2505df(0x10c)],'end':_0x3889e9[_0x2505df(0x1ee)]},{'start':_0x46df8a[_0x2505df(0x10c)],'end':_0x46df8a[_0x2505df(0x1ee)]}),_0x5d657b=_0x56462a({'start':_0x5c5770[_0x2505df(0x10c)],'end':_0x5c5770[_0x2505df(0x1ee)]},{'start':_0x3889e9[_0x2505df(0x10c)],'end':_0x3889e9['endColumn']},{'start':_0x3c1c34[_0x2505df(0x10c)],'end':_0x3c1c34[_0x2505df(0x1ee)]});return _0x27bba8&&_0x5d657b?(_0x3223bf[_0x2505df(0x191)][_0x2505df(0x9d)][_0x2505df(0x10c)]+=_0x27bba8[_0x2505df(0x1ba)],_0x3223bf[_0x2505df(0x191)][_0x2505df(0x9d)][_0x2505df(0x1ee)]+=_0x27bba8[_0x2505df(0x1ba)]+(_0x27bba8['length']||0x0),_0x3223bf[_0x2505df(0x191)][_0x2505df(0x12c)]['startColumn']+=_0x5d657b[_0x2505df(0x1ba)],_0x3223bf[_0x2505df(0x191)]['targetRange'][_0x2505df(0x1ee)]+=_0x5d657b[_0x2505df(0x1ba)]+(_0x5d657b[_0x2505df(0xbd)]||0x0)):_0x3223bf['id']=_0x411476['id'],{'m1Prime':_0x3223bf,'m2Prime':_0x5b2db5};}},Fa={'m1':_0x1c90f1['id'],'m2':_0xeb63e6['id'],'handler'(_0x20e0e1,_0x1032ac){const _0x595844=_0x54481f,_0x596857={'m1Prime':_0x20e0e1,'m2Prime':_0x1032ac};if(_0x20e0e1[_0x595844(0x191)]['unitId']!==_0x1032ac[_0x595844(0x191)][_0x595844(0x15b)]||_0x20e0e1[_0x595844(0x191)][_0x595844(0x126)]!==_0x1032ac['params'][_0x595844(0xad)][_0x595844(0x126)]&&_0x20e0e1[_0x595844(0x191)][_0x595844(0x126)]!==_0x1032ac['params']['to'][_0x595844(0x126)])return _0x596857;const _0x18a30b=_0x12a789[_0x595844(0xec)](_0x20e0e1),_0x3ddcfc=_0x12a789[_0x595844(0xec)](_0x1032ac),_0x453db1=_0x20e0e1[_0x595844(0x191)]['sourceRange'],_0x181853=_0x20e0e1[_0x595844(0x191)][_0x595844(0x12c)];if(_0x20e0e1[_0x595844(0x191)][_0x595844(0x126)]===_0x1032ac[_0x595844(0x191)][_0x595844(0xad)][_0x595844(0x126)]){const _0xc1cf2f=new _0x3597fb(_0x3ddcfc[_0x595844(0x191)][_0x595844(0xad)][_0x595844(0x9e)]),_0x714418=_0xc1cf2f[_0x595844(0xa7)]();if(H({'start':_0x453db1[_0x595844(0x10c)],'end':_0x453db1[_0x595844(0x1ee)]},{'start':_0x714418['startColumn'],'end':_0x714418[_0x595844(0x1ee)]})||H({'start':_0x181853[_0x595844(0x10c)],'end':_0x181853['endColumn']},{'start':_0x714418[_0x595844(0x10c)],'end':_0x714418[_0x595844(0x1ee)]}))return{'error':new Error(_0x595844(0xdf))};const _0x45bd0a=_0x56462a({'start':_0x453db1[_0x595844(0x10c)],'end':_0x453db1['endColumn']},{'start':_0x181853[_0x595844(0x10c)],'end':_0x181853[_0x595844(0x1ee)]},{'start':_0x714418[_0x595844(0x10c)],'end':_0x714418[_0x595844(0x1ee)]});if(_0x45bd0a[_0x595844(0xbd)]!==0x0)return{'error':new Error(_0x595844(0xdf))};_0x45bd0a[_0x595844(0x1ba)]!==0x0&&_0xc1cf2f['moveColumns'](_0x453db1[_0x595844(0x10c)],_0x453db1[_0x595844(0x1ee)]-_0x453db1[_0x595844(0x10c)]+0x1,_0x181853[_0x595844(0x10c)]),_0x3ddcfc[_0x595844(0x191)][_0x595844(0xad)][_0x595844(0x9e)]=_0xc1cf2f['getMatrix']();}if(_0x20e0e1[_0x595844(0x191)][_0x595844(0x126)]===_0x1032ac[_0x595844(0x191)]['to'][_0x595844(0x126)]){const _0x4cac71=new _0x3597fb(_0x3ddcfc[_0x595844(0x191)]['to']['value']),_0x55a100=_0x4cac71['getDataRange']();if(H({'start':_0x453db1[_0x595844(0x10c)],'end':_0x453db1['endColumn']},{'start':_0x55a100[_0x595844(0x10c)],'end':_0x55a100[_0x595844(0x1ee)]})||H({'start':_0x181853[_0x595844(0x10c)],'end':_0x181853['endColumn']},{'start':_0x55a100[_0x595844(0x10c)],'end':_0x55a100['endColumn']}))return{'error':new Error(_0x595844(0xdf))};const _0x5df6ae=_0x56462a({'start':_0x453db1['startColumn'],'end':_0x453db1[_0x595844(0x1ee)]},{'start':_0x181853[_0x595844(0x10c)],'end':_0x181853[_0x595844(0x1ee)]},{'start':_0x55a100[_0x595844(0x10c)],'end':_0x55a100[_0x595844(0x1ee)]});if(_0x5df6ae[_0x595844(0xbd)]!==0x0)return{'error':new Error(_0x595844(0xdf))};_0x5df6ae[_0x595844(0x1ba)]!==0x0&&_0x4cac71[_0x595844(0x1b2)](_0x453db1['startColumn'],_0x453db1[_0x595844(0x1ee)]-_0x453db1['startColumn']+0x1,_0x181853[_0x595844(0x10c)]),_0x3ddcfc[_0x595844(0x191)]['to'][_0x595844(0x9e)]=_0x4cac71[_0x595844(0xd9)]();}return{'m1Prime':_0x18a30b,'m2Prime':_0x3ddcfc};}},Ba={'m1':_0x1c90f1['id'],'m2':_0x180381['id'],'handler'(_0x3d22b8,_0x409012){const _0x712c24=_0x54481f,_0x6f0699={'m1Prime':_0x3d22b8,'m2Prime':_0x409012};if(_0x3d22b8[_0x712c24(0x191)][_0x712c24(0x15b)]!==_0x409012['params'][_0x712c24(0x15b)]||_0x3d22b8[_0x712c24(0x191)]['subUnitId']!==_0x409012[_0x712c24(0x191)][_0x712c24(0x126)])return _0x6f0699;const _0x34458b=_0x12a789[_0x712c24(0xec)](_0x3d22b8),_0xd0d6a7=_0x12a789[_0x712c24(0xec)](_0x409012),{sourceRange:_0x36291b,targetRange:_0x5ed0f9}=_0x3d22b8['params'],_0x45611b={'start':_0x36291b[_0x712c24(0x10c)],'end':_0x36291b['endColumn']},_0x3663c1={'start':_0x5ed0f9[_0x712c24(0x10c)],'end':_0x5ed0f9[_0x712c24(0x1ee)]};return _0xd0d6a7[_0x712c24(0x191)][_0x712c24(0x1a9)][_0x712c24(0x161)](_0x56c91e=>{const _0x5237ce=_0x712c24,_0x280765={'start':_0x56c91e[_0x5237ce(0x10c)],'end':_0x56c91e[_0x5237ce(0x1ee)]},_0x3c7ef9=H(_0x45611b,_0x280765),_0x14a3eb=H(_0x3663c1,_0x280765);if(_0x3c7ef9||_0x14a3eb)return!0x0;const _0x4bde0a=_0x56462a(_0x45611b,_0x3663c1,_0x280765);return _0x4bde0a['length']!==0x0?!0x0:(_0x56c91e[_0x5237ce(0x10c)]+=_0x4bde0a[_0x5237ce(0x1ba)],_0x56c91e[_0x5237ce(0x1ee)]+=_0x4bde0a[_0x5237ce(0x1ba)],!0x1);})?{'error':new Error('move\x20col\x20is\x20conflict\x20with\x20remove\x20numfmt')}:{'m1Prime':_0x34458b,'m2Prime':_0xd0d6a7};}},Ga={'m1':_0x1c90f1['id'],'m2':_0x3194c5['id'],'handler'(_0xdad27f,_0x1518a6){const _0x5ce56d=_0x54481f,_0x3c21df=_0x12a789[_0x5ce56d(0xec)](_0xdad27f),_0x552e12=_0x12a789[_0x5ce56d(0xec)](_0x1518a6);if(_0xdad27f[_0x5ce56d(0x191)]['unitId']!==_0x1518a6[_0x5ce56d(0x191)][_0x5ce56d(0x15b)]||_0xdad27f[_0x5ce56d(0x191)][_0x5ce56d(0x126)]!==_0x1518a6[_0x5ce56d(0x191)]['subUnitId'])return{'m1Prime':_0x3c21df,'m2Prime':_0x552e12};const _0x4f4317=_0x552e12['params'][_0x5ce56d(0x1a9)][_0x5ce56d(0x121)]((_0x194fe1,_0x1d0f17)=>{const _0x341b58=_0x5ce56d,{sourceRange:_0x57cd8b,targetRange:_0x57329d}=_0xdad27f[_0x341b58(0x191)],_0x32886e={..._0x1d0f17};return _0x57cd8b[_0x341b58(0x1ee)]<_0x32886e[_0x341b58(0x10c)]&&_0x57329d[_0x341b58(0x10c)]>_0x32886e[_0x341b58(0x1ee)]?(_0x32886e[_0x341b58(0x10c)]-=_0x57cd8b[_0x341b58(0x1ee)]-_0x57cd8b[_0x341b58(0x10c)]+0x1,_0x32886e[_0x341b58(0x1ee)]-=_0x57cd8b['endColumn']-_0x57cd8b['startColumn']+0x1,K(_0x32886e)&&_0x194fe1[_0x341b58(0x187)](_0x32886e)):_0x57cd8b[_0x341b58(0x10c)]>_0x32886e['endColumn']&&_0x57329d[_0x341b58(0x1ee)]<_0x32886e['startColumn']?(_0x32886e[_0x341b58(0x10c)]+=_0x57cd8b[_0x341b58(0x1ee)]-_0x57cd8b[_0x341b58(0x10c)]+0x1,_0x32886e[_0x341b58(0x1ee)]+=_0x57cd8b['endColumn']-_0x57cd8b[_0x341b58(0x10c)]+0x1,K(_0x32886e)&&_0x194fe1[_0x341b58(0x187)](_0x32886e)):_0x12b536[_0x341b58(0x16e)](_0x32886e,_0x57cd8b)||_0x12b536[_0x341b58(0x16e)](_0x32886e,_0x57329d)||_0x194fe1[_0x341b58(0x187)](_0x32886e),_0x194fe1;},[]);return _0x552e12['params'][_0x5ce56d(0x1a9)]=_0x4f4317,_0x552e12[_0x5ce56d(0x191)][_0x5ce56d(0x1a9)][_0x5ce56d(0xbd)]===0x0&&(_0x552e12['id']=_0x411476['id']),{'m1Prime':_0x3c21df,'m2Prime':_0x552e12};}},ja={'m1':_0x1c90f1['id'],'m2':_0x41be04['id'],'handler'(_0x4569c7,_0x16dce2){const _0x32d9b1=_0x54481f,_0x33dc1f={'m1Prime':_0x4569c7,'m2Prime':_0x16dce2};if(_0x4569c7[_0x32d9b1(0x191)]['unitId']!==_0x16dce2[_0x32d9b1(0x191)]['unitId']||_0x4569c7['params'][_0x32d9b1(0x126)]!==_0x16dce2[_0x32d9b1(0x191)][_0x32d9b1(0x126)])return _0x33dc1f;const _0x55468c=_0x4569c7[_0x32d9b1(0x191)][_0x32d9b1(0x9d)][_0x32d9b1(0x10c)],_0x57dee5=_0x4569c7[_0x32d9b1(0x191)][_0x32d9b1(0x9d)][_0x32d9b1(0x1ee)],_0x400b8c=_0x4569c7[_0x32d9b1(0x191)][_0x32d9b1(0x12c)]['startColumn'],_0x280e43=_0x4569c7[_0x32d9b1(0x191)][_0x32d9b1(0x12c)][_0x32d9b1(0x1ee)],_0x3f5e6c=_0x16dce2[_0x32d9b1(0x191)][_0x32d9b1(0x1a6)][_0x32d9b1(0x10c)],_0xe55af7=_0x16dce2[_0x32d9b1(0x191)]['range'][_0x32d9b1(0x1ee)];if(_0x55468c<=_0xe55af7&&_0x57dee5>=_0x3f5e6c||_0x400b8c<=_0xe55af7&&_0x280e43>=_0x3f5e6c)return{'error':new Error(_0x32d9b1(0x197))};const _0x59e305=_0x56462a({'start':_0x55468c,'end':_0x57dee5},{'start':_0x400b8c,'end':_0x280e43},{'start':_0x3f5e6c,'end':_0xe55af7}),_0x129f1e=_0x12a789[_0x32d9b1(0xec)](_0x16dce2);return _0x129f1e[_0x32d9b1(0x191)]['range']['startColumn']+=_0x59e305[_0x32d9b1(0x1ba)],_0x129f1e[_0x32d9b1(0x191)][_0x32d9b1(0x1a6)][_0x32d9b1(0x1ee)]+=_0x59e305['step']+(_0x59e305[_0x32d9b1(0xbd)]||0x0),{'m1Prime':_0x4569c7,'m2Prime':_0x129f1e};}},$a={'m1':_0x1c90f1['id'],'m2':_0x2c204d['id'],'handler'(_0x36ebc3,_0x2024b0){const _0x427113=_0x54481f,_0x5afd6c={'m1Prime':_0x36ebc3,'m2Prime':_0x2024b0};if(_0x36ebc3[_0x427113(0x191)][_0x427113(0x15b)]!==_0x2024b0[_0x427113(0x191)]['unitId']||_0x36ebc3[_0x427113(0x191)][_0x427113(0x126)]!==_0x2024b0['params'][_0x427113(0x126)])return _0x5afd6c;const _0x34f89c=_0x12a789[_0x427113(0xec)](_0x36ebc3),_0x2ebd6f=_0x12a789[_0x427113(0xec)](_0x2024b0),{columnData:_0x1423b5}=_0x2ebd6f[_0x427113(0x191)],{sourceRange:_0x5a24f5,targetRange:_0x58056b}=_0x36ebc3[_0x427113(0x191)];return _0x220bae(_0x5a24f5[_0x427113(0x10c)],_0x5a24f5['endColumn']-_0x5a24f5[_0x427113(0x10c)]+0x1,_0x58056b[_0x427113(0x10c)],_0x1423b5),{'m1Prime':_0x34f89c,'m2Prime':_0x2ebd6f};}},Ya={'m1':_0x1c90f1['id'],'m2':_0x3d7e7a['id'],'handler'(_0x12dc2e,_0xde6765){const _0x339768=_0x54481f,_0x4f9338={'m1Prime':_0x12dc2e,'m2Prime':_0xde6765};if(_0x12dc2e[_0x339768(0x191)][_0x339768(0x15b)]!==_0xde6765[_0x339768(0x191)]['unitId']||_0x12dc2e[_0x339768(0x191)][_0x339768(0x126)]!==_0xde6765[_0x339768(0x191)][_0x339768(0x126)])return _0x4f9338;const _0x4ffa56=_0x12a789[_0x339768(0xec)](_0x12dc2e),_0x285aba=_0x12a789[_0x339768(0xec)](_0xde6765),{ranges:_0x231858}=_0x285aba[_0x339768(0x191)],{sourceRange:_0x486dac,targetRange:_0x26394d}=_0x12dc2e[_0x339768(0x191)],_0x9616d6={'start':_0x486dac[_0x339768(0x10c)],'end':_0x486dac['endColumn']},_0x4f57c4={'start':_0x26394d['startColumn'],'end':_0x26394d[_0x339768(0x1ee)]};return _0x231858[_0x339768(0x161)](_0x469747=>{const _0x2e56de=_0x339768,_0x3c70f9={'start':_0x469747[_0x2e56de(0x10c)],'end':_0x469747[_0x2e56de(0x1ee)]},_0x55b3a7=H(_0x9616d6,_0x3c70f9),_0x3e3193=H(_0x4f57c4,_0x3c70f9);if(_0x55b3a7||_0x3e3193)return!0x0;const _0x76f92b=_0x56462a(_0x9616d6,_0x4f57c4,_0x3c70f9);return _0x76f92b['length']!==0x0?!0x0:(_0x469747['startColumn']+=_0x76f92b[_0x2e56de(0x1ba)],_0x469747[_0x2e56de(0x1ee)]+=_0x76f92b['step'],!0x1);})?{'error':new Error(_0x339768(0x190))}:{'m1Prime':_0x4ffa56,'m2Prime':_0x285aba};}},Ja={'m1':_0x1c90f1['id'],'m2':_0x46f51d['id'],'handler'(_0x2d240a,_0x5ea853){const _0x2d3d12=_0x54481f,_0x42d87f={'m1Prime':_0x2d240a,'m2Prime':_0x5ea853};if(_0x2d240a['params'][_0x2d3d12(0x15b)]!==_0x5ea853[_0x2d3d12(0x191)][_0x2d3d12(0x15b)]||_0x2d240a['params'][_0x2d3d12(0x126)]!==_0x5ea853[_0x2d3d12(0x191)][_0x2d3d12(0x126)])return _0x42d87f;const _0x406aa6=_0x12a789['deepClone'](_0x2d240a),_0x2b4cbd=_0x12a789[_0x2d3d12(0xec)](_0x5ea853),{ranges:_0x194290}=_0x2b4cbd[_0x2d3d12(0x191)],{sourceRange:_0x7c0a41,targetRange:_0x3e7096}=_0x2d240a[_0x2d3d12(0x191)],_0x1b74a8={'start':_0x7c0a41[_0x2d3d12(0x10c)],'end':_0x7c0a41[_0x2d3d12(0x1ee)]},_0xb75df0={'start':_0x3e7096[_0x2d3d12(0x10c)],'end':_0x3e7096[_0x2d3d12(0x1ee)]};return _0x194290[_0x2d3d12(0x161)](_0x3e7828=>{const _0x2f3b2c=_0x2d3d12,_0x403293={'start':_0x3e7828['startColumn'],'end':_0x3e7828[_0x2f3b2c(0x1ee)]},_0x48da0a=H(_0x1b74a8,_0x403293),_0x288a4e=H(_0xb75df0,_0x403293);if(_0x48da0a||_0x288a4e)return!0x0;const _0x42f0b1=_0x56462a(_0x1b74a8,_0xb75df0,_0x403293);return _0x42f0b1[_0x2f3b2c(0xbd)]!==0x0?!0x0:(_0x3e7828['startColumn']+=_0x42f0b1['step'],_0x3e7828[_0x2f3b2c(0x1ee)]+=_0x42f0b1['step'],!0x1);})?{'error':new Error(_0x2d3d12(0x1ea))}:{'m1Prime':_0x406aa6,'m2Prime':_0x2b4cbd};}},Xa={'m1':_0x1c90f1['id'],'m2':_0x30c2c8['id'],'handler'(_0x36f71d,_0x407e3e){const _0x2eace6=_0x54481f,_0x11b930={'m1Prime':_0x36f71d,'m2Prime':_0x407e3e};if(_0x36f71d['params'][_0x2eace6(0x15b)]!==_0x407e3e[_0x2eace6(0x191)]['unitId']||_0x36f71d[_0x2eace6(0x191)][_0x2eace6(0x126)]!==_0x407e3e[_0x2eace6(0x191)]['subUnitId'])return _0x11b930;const _0x4cebb2=[_0x12a789[_0x2eace6(0xec)](_0x36f71d)],_0x488df9=_0x12a789[_0x2eace6(0xec)](_0x407e3e),{sourceRange:_0x3c9939,targetRange:_0x3b73dc}=_0x36f71d[_0x2eace6(0x191)],_0x376a14={'start':_0x3c9939[_0x2eace6(0x10c)],'end':_0x3c9939[_0x2eace6(0x1ee)]},_0x5477ed={'start':_0x3b73dc[_0x2eace6(0x10c)],'end':_0x3b73dc[_0x2eace6(0x1ee)]},{values:_0x2364fe}=_0x488df9['params'],_0x4af176=[];let _0x1880c2=!0x1;for(const _0xecb78f in _0x2364fe){const _0x429d23=_0x2364fe[_0xecb78f];if(_0x4af176[_0x2eace6(0x187)](..._0x429d23[_0x2eace6(0x1a9)]),_0x429d23['ranges'][_0x2eace6(0x161)](_0x2d4136=>{const _0x30d0de=_0x2eace6,_0xb5a668={'start':_0x2d4136[_0x30d0de(0x10c)],'end':_0x2d4136[_0x30d0de(0x1ee)]},_0x3b20c8=H(_0x376a14,_0xb5a668),_0x460269=H(_0x5477ed,_0xb5a668);if(_0x3b20c8||_0x460269)return!0x0;const _0x57d4bf=_0x56462a(_0x376a14,_0x5477ed,_0xb5a668);return _0x57d4bf[_0x30d0de(0xbd)]!==0x0?!0x0:(_0x57d4bf[_0x30d0de(0x1ba)]!==0x0&&(_0x1880c2=!0x0),_0x2d4136[_0x30d0de(0x10c)]+=_0x57d4bf[_0x30d0de(0x1ba)],_0x2d4136['endColumn']+=_0x57d4bf[_0x30d0de(0x1ba)],!0x1);}))return{'error':new Error(_0x2eace6(0x107))};}if(_0x1880c2){const _0x20d62c={'id':_0x180381['id'],'params':{'unitId':_0x407e3e[_0x2eace6(0x191)][_0x2eace6(0x15b)],'subUnitId':_0x407e3e[_0x2eace6(0x191)][_0x2eace6(0x126)],'ranges':_0x4af176}};_0x4cebb2[_0x2eace6(0x187)](_0x20d62c,_0x488df9);}return{'m1Prime':_0x4cebb2,'m2Prime':_0x488df9};}},Ka={'m1':_0x1c90f1['id'],'m2':_0x59880b['id'],'handler'(_0x404a85,_0xb7dc50){const _0x32e851=_0x54481f,_0x3186f2={'m1Prime':_0x404a85,'m2Prime':_0xb7dc50};if(_0x404a85[_0x32e851(0x191)][_0x32e851(0x15b)]!==_0xb7dc50[_0x32e851(0x191)][_0x32e851(0x15b)]||_0x404a85[_0x32e851(0x191)]['subUnitId']!==_0xb7dc50[_0x32e851(0x191)][_0x32e851(0x126)])return _0x3186f2;const _0x21da70=[_0x12a789[_0x32e851(0xec)](_0x404a85)],_0x3035a2=_0x12a789[_0x32e851(0xec)](_0xb7dc50),_0x2d4414=new _0x3597fb(_0x3035a2[_0x32e851(0x191)][_0x32e851(0xaf)]),{sourceRange:_0x430718,targetRange:_0x758b13}=_0x404a85['params'],_0x51adfe=_0x430718[_0x32e851(0x10c)],_0x16b4e8=_0x430718[_0x32e851(0x1ee)]-_0x430718[_0x32e851(0x10c)]+0x1,_0x458810=_0x758b13[_0x32e851(0x10c)];_0x2d4414[_0x32e851(0x1b2)](_0x51adfe,_0x16b4e8,_0x458810);const _0x5819c5=new _0x3597fb();let _0x2e5daf=!0x1;if(_0x2d4414[_0x32e851(0x1bf)]((_0x23df30,_0x1676b4,_0x15a88f)=>{const _0xc4d739=_0x32e851;if(_0x15a88f&&_0x15a88f['f']){const _0x5dac0e=_0x15a88f['f'];let _0x244aef=!0x1;const _0x509439=dt(_0x404a85[_0xc4d739(0x191)][_0xc4d739(0x15b)],_0x404a85[_0xc4d739(0x191)][_0xc4d739(0x126)],_0x5dac0e,_0x354e73=>{const _0x435641=_0xc4d739,_0x4baf0e=_0x56462a({'start':_0x404a85[_0x435641(0x191)]['sourceRange'][_0x435641(0x10c)],'end':_0x404a85[_0x435641(0x191)][_0x435641(0x9d)][_0x435641(0x1ee)]},{'start':_0x404a85[_0x435641(0x191)][_0x435641(0x12c)]['startColumn'],'end':_0x404a85['params'][_0x435641(0x12c)][_0x435641(0x1ee)]},{'start':_0x354e73['startColumn'],'end':_0x354e73[_0x435641(0x1ee)]});return(_0x4baf0e[_0x435641(0x1ba)]!==0x0||_0x4baf0e['length']!==0x0)&&(_0x244aef=!0x0,_0x354e73[_0x435641(0x10c)]+=_0x4baf0e[_0x435641(0x1ba)],_0x354e73['endColumn']+=_0x4baf0e[_0x435641(0x1ba)]+_0x4baf0e['length']),_0x354e73;});_0x244aef&&(_0x2e5daf=!0x0,_0x15a88f['f']=_0x509439,_0x5819c5[_0xc4d739(0x1a3)](_0x23df30,_0x1676b4,{..._0x15a88f}));}}),_0x2e5daf){const _0x84cd88={'id':_0x59880b['id'],'params':{'unitId':_0xb7dc50[_0x32e851(0x191)][_0x32e851(0x15b)],'subUnitId':_0xb7dc50[_0x32e851(0x191)][_0x32e851(0x126)],'cellValue':_0x5819c5[_0x32e851(0xd9)]()}};_0x21da70['push'](_0x84cd88);}return _0x3035a2[_0x32e851(0x191)][_0x32e851(0xaf)]=_0x2d4414[_0x32e851(0xd9)](),{'m1Prime':_0x21da70,'m2Prime':_0x3035a2};}},za={'m1':_0x1c90f1['id'],'m2':_0x22c7b4['id'],'handler'(_0xfb282f,_0x1ad6dc){const _0x325ccf=_0x54481f,_0x4c72da={'m1Prime':[],'m2Prime':[]};if(_0xfb282f[_0x325ccf(0x191)][_0x325ccf(0x15b)]!==_0x1ad6dc[_0x325ccf(0x191)][_0x325ccf(0x15b)]||_0xfb282f[_0x325ccf(0x191)][_0x325ccf(0x126)]!==_0x1ad6dc[_0x325ccf(0x191)][_0x325ccf(0x126)])return _0x4c72da;const _0x583cc9=_0x12a789[_0x325ccf(0xec)](_0x1ad6dc);let _0x37520e=!0x1;return _0x583cc9[_0x325ccf(0x191)][_0x325ccf(0x11d)][_0x325ccf(0x147)](_0x16fd97=>{const _0x30ebc2=_0x325ccf,{range:_0x51df05,primary:_0x2922bb}=_0x16fd97,_0xfdb975=_0x56462a({'start':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x9d)]['startColumn'],'end':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x9d)][_0x30ebc2(0x1ee)]},{'start':_0xfb282f['params'][_0x30ebc2(0x12c)][_0x30ebc2(0x10c)],'end':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x12c)][_0x30ebc2(0x1ee)]},{'start':_0x51df05['startColumn'],'end':_0x51df05[_0x30ebc2(0x1ee)]});if(_0xfdb975[_0x30ebc2(0xbd)]||_0xfdb975['step']){if(_0x51df05['startColumn']+=_0xfdb975[_0x30ebc2(0x1ba)],_0x51df05[_0x30ebc2(0x1ee)]+=_0xfdb975['step']+(_0xfdb975[_0x30ebc2(0xbd)]||0x0),_0x2922bb){const _0x5e7ee8=_0x56462a({'start':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x9d)][_0x30ebc2(0x10c)],'end':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x9d)][_0x30ebc2(0x1ee)]},{'start':_0xfb282f[_0x30ebc2(0x191)][_0x30ebc2(0x12c)][_0x30ebc2(0x10c)],'end':_0xfb282f[_0x30ebc2(0x191)]['targetRange'][_0x30ebc2(0x1ee)]},{'start':_0x2922bb['startColumn'],'end':_0x2922bb[_0x30ebc2(0x1ee)]});(_0x5e7ee8[_0x30ebc2(0xbd)]||_0x5e7ee8[_0x30ebc2(0x1ba)])&&(_0x2922bb[_0x30ebc2(0x10c)]+=_0x5e7ee8['step'],_0x2922bb[_0x30ebc2(0x1ee)]+=_0x5e7ee8['step'],_0x2922bb[_0x30ebc2(0x13e)]+=_0x5e7ee8[_0x30ebc2(0x1ba)]);}_0x37520e=!0x0;}}),_0x37520e&&_0x4c72da['m2Prime'][_0x325ccf(0x187)](_0x583cc9),_0x4c72da;}},qa={'m1':_0x1c90f1['id'],'m2':_0x254b23['id'],'handler'(_0x1cf96b,_0x118951){const _0x3b52f9=_0x54481f,_0x3bf941={'m1Prime':_0x1cf96b,'m2Prime':_0x118951};if(_0x1cf96b[_0x3b52f9(0x191)]['unitId']!==_0x118951[_0x3b52f9(0x191)][_0x3b52f9(0x15b)]||_0x1cf96b['params'][_0x3b52f9(0x126)]!==_0x118951[_0x3b52f9(0x191)]['subUnitId'])return _0x3bf941;const _0x52f88d=_0x12a789[_0x3b52f9(0xec)](_0x1cf96b),_0x49a027=_0x12a789['deepClone'](_0x118951),_0x237a21=_0x56462a({'start':_0x1cf96b[_0x3b52f9(0x191)][_0x3b52f9(0x9d)][_0x3b52f9(0x10c)],'end':_0x1cf96b[_0x3b52f9(0x191)][_0x3b52f9(0x9d)][_0x3b52f9(0x1ee)]},{'start':_0x1cf96b[_0x3b52f9(0x191)][_0x3b52f9(0x12c)]['startColumn'],'end':_0x1cf96b[_0x3b52f9(0x191)][_0x3b52f9(0x12c)][_0x3b52f9(0x1ee)]},{'start':_0x118951['params'][_0x3b52f9(0x164)],'end':_0x118951[_0x3b52f9(0x191)][_0x3b52f9(0x164)]});if(_0x237a21['step']===0x0)return _0x3bf941;_0x49a027[_0x3b52f9(0x191)][_0x3b52f9(0x164)]+=_0x237a21[_0x3b52f9(0x1ba)],_0x49a027[_0x3b52f9(0x191)][_0x3b52f9(0x160)]&&(_0x49a027[_0x3b52f9(0x191)][_0x3b52f9(0x160)][_0x3b52f9(0xa6)]+=_0x237a21[_0x3b52f9(0x1ba)]);const _0x3ec90d=_0x12a789[_0x3b52f9(0xec)](_0x118951);return _0x3ec90d[_0x3b52f9(0x191)][_0x3b52f9(0x160)]=null,{'m1Prime':[_0x3ec90d,_0x49a027,_0x52f88d],'m2Prime':[_0x49a027]};}},Za={'m1':_0x1c90f1['id'],'m2':_0x4a261b['id'],'handler'(_0x235a84,_0x3c5c07){const _0x54ec3f=_0x54481f,_0x8e734a={'m1Prime':[_0x235a84],'m2Prime':[_0x3c5c07]};if(_0x235a84[_0x54ec3f(0x191)][_0x54ec3f(0x15b)]!==_0x3c5c07[_0x54ec3f(0x191)][_0x54ec3f(0x15b)]||_0x235a84[_0x54ec3f(0x191)]['subUnitId']!==_0x3c5c07[_0x54ec3f(0x191)][_0x54ec3f(0x126)])return _0x8e734a;const _0x244433=_0x12a789[_0x54ec3f(0xec)](_0x235a84),_0x5c5265=_0x12a789[_0x54ec3f(0xec)](_0x3c5c07),_0x57d76c=_0x56462a({'start':_0x235a84[_0x54ec3f(0x191)][_0x54ec3f(0x9d)][_0x54ec3f(0x10c)],'end':_0x235a84[_0x54ec3f(0x191)][_0x54ec3f(0x9d)][_0x54ec3f(0x1ee)]},{'start':_0x235a84[_0x54ec3f(0x191)][_0x54ec3f(0x12c)][_0x54ec3f(0x10c)],'end':_0x235a84['params']['targetRange']['endColumn']},{'start':_0x3c5c07['params'][_0x54ec3f(0x1a6)]['startColumn'],'end':_0x3c5c07[_0x54ec3f(0x191)]['range']['endColumn']});return _0x5c5265[_0x54ec3f(0x191)][_0x54ec3f(0x1a6)][_0x54ec3f(0x10c)]+=_0x57d76c['step'],_0x5c5265[_0x54ec3f(0x191)][_0x54ec3f(0x1a6)][_0x54ec3f(0x1ee)]+=_0x57d76c[_0x54ec3f(0x1ba)]+_0x57d76c[_0x54ec3f(0xbd)],{'m1Prime':[_0x5c5265,_0x244433],'m2Prime':[_0x5c5265]};}},Qa={'m1':_0x1c90f1['id'],'m2':_0x2d1a15['id'],'handler'(_0x1cbaee,_0x39b2ce){const _0x37c1a3=_0x54481f,_0x27b9ed={'m1Prime':_0x1cbaee,'m2Prime':_0x39b2ce};if(_0x1cbaee['params']['unitId']!==_0x39b2ce['params'][_0x37c1a3(0x15b)]||_0x1cbaee[_0x37c1a3(0x191)][_0x37c1a3(0x126)]!==_0x39b2ce['params'][_0x37c1a3(0x126)])return _0x27b9ed;const _0x57bf2d=_0x12a789[_0x37c1a3(0xec)](_0x1cbaee),_0x560acb=_0x12a789[_0x37c1a3(0xec)](_0x39b2ce),{ranges:_0x1c5a6d,colWidth:_0x43cbda}=_0x560acb[_0x37c1a3(0x191)],{sourceRange:_0x5952cb,targetRange:_0x53d052}=_0x1cbaee[_0x37c1a3(0x191)],_0x4c06ed={'start':_0x5952cb[_0x37c1a3(0x10c)],'end':_0x5952cb['endColumn']},_0x7cacf0={'start':_0x53d052[_0x37c1a3(0x10c)],'end':_0x53d052[_0x37c1a3(0x1ee)]};return _0x1c5a6d['some'](_0x1442b3=>{const _0x28fdd2=_0x37c1a3,_0x3ac284={'start':_0x1442b3[_0x28fdd2(0x10c)],'end':_0x1442b3[_0x28fdd2(0x1ee)]},_0x371568=_0x56462a(_0x4c06ed,_0x7cacf0,_0x3ac284);return _0x371568[_0x28fdd2(0xbd)]!==0x0?!0x0:(_0x1442b3['startColumn']+=_0x371568[_0x28fdd2(0x1ba)],_0x1442b3[_0x28fdd2(0x1ee)]+=_0x371568['step'],!0x1);})?{'error':new Error(_0x37c1a3(0x1db))}:(typeof _0x43cbda!='number'&&_0x220bae(_0x5952cb['startColumn'],_0x5952cb[_0x37c1a3(0x1ee)]-_0x5952cb['startColumn']+0x1,_0x53d052['startColumn'],_0x43cbda),{'m1Prime':_0x57bf2d,'m2Prime':_0x560acb});}},ts={'m1':_0x1c90f1['id'],'m2':_0x44bb69['id'],'handler':(_0x587e70,_0x23b42c)=>{const _0x5ce637=_0x54481f,_0x2c7a8b={'m1Prime':_0x587e70,'m2Prime':_0x23b42c};if(_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x15b)]!==_0x23b42c[_0x5ce637(0x191)][_0x5ce637(0x15b)]||_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x126)]!==_0x23b42c[_0x5ce637(0x191)]['subUnitId'])return _0x2c7a8b;const _0x2e4dbc={'id':_0x5319c7['id'],'params':{'unitId':_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x15b)],'subUnitId':_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x126)],'fromRange':_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x9d)],'toRange':_0x587e70[_0x5ce637(0x191)][_0x5ce637(0x12c)]}},_0x355157=wt(_0x23b42c,_0x2e4dbc);return{'m1Prime':[_0x587e70,..._0x355157],'m2Prime':[_0x23b42c,..._0x355157]};}},es={'m1':_0x5f15c4['id'],'m2':_0x5f15c4['id'],'handler'(_0x428eaa,_0x4f5660){const _0xbce5e9=_0x54481f;return _0x428eaa['params'][_0xbce5e9(0x15b)]!==_0x4f5660['params'][_0xbce5e9(0x15b)]||_0x428eaa[_0xbce5e9(0x191)][_0xbce5e9(0x126)]!==_0x4f5660['params']['subUnitId']?{'m1Prime':_0x428eaa,'m2Prime':_0x4f5660}:{'error':new Error(_0xbce5e9(0x21c))};}},rs={'m1':_0xeb63e6['id'],'m2':_0x5504b0['id'],'handler'(_0x1f78a6,_0x118d8a){const _0x3ffb89=_0x54481f,_0x1d02ea=sr[_0x3ffb89(0x12a)](_0x118d8a,_0x1f78a6);return at(_0x1d02ea)?{'m1Prime':_0x1d02ea[_0x3ffb89(0x1e8)],'m2Prime':_0x1d02ea[_0x3ffb89(0x1e2)]}:_0x1d02ea;}},ns={'m1':_0xeb63e6['id'],'m2':_0xeb63e6['id'],'handler'(_0xe9a89f,_0x3e8f51){const _0x517189=_0x54481f,_0x267a40={'m1Prime':_0xe9a89f,'m2Prime':_0x3e8f51};if(_0xe9a89f[_0x517189(0x191)]['unitId']!==_0x3e8f51[_0x517189(0x191)]['unitId'])return _0x267a40;const _0x2db95e=new _0x3597fb(_0xe9a89f[_0x517189(0x191)][_0x517189(0xad)][_0x517189(0x9e)])[_0x517189(0xa7)](),_0x5bc770=new _0x3597fb(_0x3e8f51[_0x517189(0x191)]['from'][_0x517189(0x9e)])[_0x517189(0xa7)](),_0x4684fd=new _0x3597fb(_0xe9a89f[_0x517189(0x191)]['to'][_0x517189(0x9e)])[_0x517189(0xa7)](),_0x261787=new _0x3597fb(_0x3e8f51[_0x517189(0x191)]['to'][_0x517189(0x9e)])[_0x517189(0xa7)]();return _0xe9a89f['params'][_0x517189(0xad)]['subUnitId']===_0x3e8f51[_0x517189(0x191)]['from'][_0x517189(0x126)]&&_0x12b536['intersects'](_0x2db95e,_0x5bc770)||_0xe9a89f[_0x517189(0x191)]['to'][_0x517189(0x126)]===_0x3e8f51[_0x517189(0x191)]['to']['subUnitId']&&_0x12b536[_0x517189(0x16e)](_0x4684fd,_0x261787)||_0xe9a89f[_0x517189(0x191)][_0x517189(0xad)][_0x517189(0x126)]===_0x3e8f51['params']['to'][_0x517189(0x126)]&&_0x12b536[_0x517189(0x16e)](_0x2db95e,_0x261787)||_0xe9a89f[_0x517189(0x191)]['to'][_0x517189(0x126)]===_0x3e8f51[_0x517189(0x191)][_0x517189(0xad)][_0x517189(0x126)]&&_0x12b536[_0x517189(0x16e)](_0x4684fd,_0x5bc770)?{'error':new Error(_0x517189(0x1e0))}:_0x267a40;}},as={'m1':_0xeb63e6['id'],'m2':_0x180381['id'],'handler'(_0x74df05,_0x418ec3){const _0x13b188=_0x54481f,_0x4a4744={'m1Prime':_0x74df05,'m2Prime':_0x418ec3};if(_0x74df05[_0x13b188(0x191)][_0x13b188(0x15b)]!==_0x418ec3[_0x13b188(0x191)][_0x13b188(0x15b)]||_0x74df05[_0x13b188(0x191)][_0x13b188(0xad)]['subUnitId']!==_0x418ec3['params']['subUnitId']&&_0x74df05[_0x13b188(0x191)]['to'][_0x13b188(0x126)]!==_0x418ec3[_0x13b188(0x191)][_0x13b188(0x126)])return _0x4a4744;const _0x52cc25=new _0x3597fb(_0x74df05[_0x13b188(0x191)][_0x13b188(0xad)][_0x13b188(0x9e)])['getDataRange'](),_0x52d654=new _0x3597fb(_0x74df05[_0x13b188(0x191)]['to']['value'])[_0x13b188(0xa7)]();return _0x74df05[_0x13b188(0x191)][_0x13b188(0xad)][_0x13b188(0x126)]===_0x418ec3['params'][_0x13b188(0x126)]&&_0x418ec3[_0x13b188(0x191)][_0x13b188(0x1a9)]['some'](_0x37323d=>_0x12b536[_0x13b188(0x16e)](_0x37323d,_0x52cc25))?{'error':new Error(_0x13b188(0x18a))}:_0x74df05[_0x13b188(0x191)]['to'][_0x13b188(0x126)]===_0x418ec3[_0x13b188(0x191)]['subUnitId']&&_0x418ec3[_0x13b188(0x191)][_0x13b188(0x1a9)]['some'](_0x2f0f6a=>_0x12b536[_0x13b188(0x16e)](_0x2f0f6a,_0x52d654))?{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20set\x20numfmt')}:_0x4a4744;}},ss={'m1':_0xeb63e6['id'],'m2':_0x41be04['id'],'handler'(_0x4fa9bf,_0x1feef7){const _0x1a32c9=_0x54481f,_0xb50d6c={'m1Prime':_0x4fa9bf,'m2Prime':_0x1feef7};if(_0x4fa9bf['params'][_0x1a32c9(0x15b)]!==_0x1feef7[_0x1a32c9(0x191)][_0x1a32c9(0x15b)]||_0x4fa9bf[_0x1a32c9(0x191)][_0x1a32c9(0xad)]['subUnitId']!==_0x1feef7[_0x1a32c9(0x191)][_0x1a32c9(0x126)]&&_0x4fa9bf[_0x1a32c9(0x191)]['to']['subUnitId']!==_0x1feef7['params']['subUnitId'])return _0xb50d6c;if(_0x4fa9bf[_0x1a32c9(0x191)][_0x1a32c9(0xad)][_0x1a32c9(0x126)]===_0x1feef7[_0x1a32c9(0x191)][_0x1a32c9(0x126)]){const _0x520394=new _0x3597fb(_0x4fa9bf['params'][_0x1a32c9(0xad)][_0x1a32c9(0x9e)])['getDataRange']();if(_0x12b536[_0x1a32c9(0x16e)](_0x520394,_0x1feef7[_0x1a32c9(0x191)]['range']))return{'error':new Error('move\x20range\x20is\x20conflict\x20with\x20reorder\x20range')};}if(_0x4fa9bf[_0x1a32c9(0x191)]['to'][_0x1a32c9(0x126)]===_0x1feef7[_0x1a32c9(0x191)][_0x1a32c9(0x126)]){const _0x2ccd89=new _0x3597fb(_0x4fa9bf[_0x1a32c9(0x191)]['to'][_0x1a32c9(0x9e)])[_0x1a32c9(0xa7)]();if(_0x12b536[_0x1a32c9(0x16e)](_0x2ccd89,_0x1feef7[_0x1a32c9(0x191)][_0x1a32c9(0x1a6)]))return{'error':new Error(_0x1a32c9(0x197))};}return _0xb50d6c;}},os={'m1':_0xeb63e6['id'],'m2':_0x30c2c8['id'],'handler'(_0x27ab52,_0x57f3e8){const _0x30ecb6=_0x54481f,_0x21e1fa={'m1Prime':_0x27ab52,'m2Prime':_0x57f3e8};if(_0x27ab52['params'][_0x30ecb6(0x15b)]!==_0x57f3e8[_0x30ecb6(0x191)][_0x30ecb6(0x15b)]||_0x27ab52[_0x30ecb6(0x191)][_0x30ecb6(0xad)][_0x30ecb6(0x126)]!==_0x57f3e8[_0x30ecb6(0x191)][_0x30ecb6(0x126)]&&_0x27ab52[_0x30ecb6(0x191)]['to'][_0x30ecb6(0x126)]!==_0x57f3e8['params'][_0x30ecb6(0x126)])return _0x21e1fa;const _0xa901c8=new _0x3597fb(_0x27ab52[_0x30ecb6(0x191)][_0x30ecb6(0xad)][_0x30ecb6(0x9e)])[_0x30ecb6(0xa7)](),_0x5c4e67=new _0x3597fb(_0x27ab52[_0x30ecb6(0x191)]['to']['value'])[_0x30ecb6(0xa7)]();if(_0x27ab52[_0x30ecb6(0x191)]['from'][_0x30ecb6(0x126)]===_0x57f3e8['params'][_0x30ecb6(0x126)]){const {values:_0x345e8c}=_0x57f3e8[_0x30ecb6(0x191)];for(const _0x174701 in _0x345e8c)if(_0x345e8c[_0x174701][_0x30ecb6(0x1a9)][_0x30ecb6(0x161)](_0xce38ea=>_0x12b536[_0x30ecb6(0x16e)](_0xce38ea,_0xa901c8)))return{'error':new Error(_0x30ecb6(0x18a))};}if(_0x27ab52[_0x30ecb6(0x191)]['to']['subUnitId']===_0x57f3e8[_0x30ecb6(0x191)]['subUnitId']){const {values:_0x8e30ad}=_0x57f3e8['params'];for(const _0x319264 in _0x8e30ad)if(_0x8e30ad[_0x319264][_0x30ecb6(0x1a9)][_0x30ecb6(0x161)](_0x1a759c=>_0x12b536[_0x30ecb6(0x16e)](_0x1a759c,_0x5c4e67)))return{'error':new Error(_0x30ecb6(0x18a))};}return _0x21e1fa;}},is={'m1':_0xfa530e['id'],'m2':_0x41a8ef['id'],'handler':(_0x4f74c0,_0x2c9b01)=>{const _0x5a4ea0=_0x54481f,_0x593ff9={'m1Prime':_0x4f74c0,'m2Prime':_0x2c9b01};if(_0x4f74c0[_0x5a4ea0(0x191)][_0x5a4ea0(0x15b)]!==_0x2c9b01['params'][_0x5a4ea0(0x15b)]||_0x4f74c0[_0x5a4ea0(0x191)][_0x5a4ea0(0x126)]!==_0x2c9b01[_0x5a4ea0(0x191)][_0x5a4ea0(0x126)])return _0x593ff9;const _0x2e2d4d={'id':_0x174f7c['id'],'params':{'unitId':_0x4f74c0['params'][_0x5a4ea0(0x15b)],'subUnitId':_0x4f74c0[_0x5a4ea0(0x191)][_0x5a4ea0(0x126)],'fromRange':_0x4f74c0[_0x5a4ea0(0x191)][_0x5a4ea0(0x9d)],'toRange':_0x4f74c0[_0x5a4ea0(0x191)][_0x5a4ea0(0x12c)]}},_0x597097=It(_0x2c9b01,_0x2e2d4d);return{'m1Prime':[_0x4f74c0,..._0x597097],'m2Prime':[_0x2c9b01,..._0x597097]};}},ds={'m1':_0xfa530e['id'],'m2':_0x3273be['id'],'handler'(_0x313795,_0x43ba56){const _0x4f0f72=_0x54481f,_0x4f4dd0={'m1Prime':_0x313795,'m2Prime':_0x43ba56};if(_0x313795[_0x4f0f72(0x191)][_0x4f0f72(0x15b)]!==_0x43ba56[_0x4f0f72(0x191)][_0x4f0f72(0x15b)]||_0x313795[_0x4f0f72(0x191)][_0x4f0f72(0x126)]!==_0x43ba56[_0x4f0f72(0x191)][_0x4f0f72(0x126)])return _0x4f4dd0;const _0x118c04={'id':_0x174f7c['id'],'params':{'fromRange':_0x313795[_0x4f0f72(0x191)]['sourceRange'],'toRange':_0x313795['params'][_0x4f0f72(0x12c)]}},_0x3ad7bb=Tt(_0x43ba56,_0x118c04);return{'m1Prime':[_0x313795,..._0x3ad7bb],'m2Prime':[_0x43ba56,..._0x3ad7bb]};}},ms={'m1':_0xfa530e['id'],'m2':_0x5504b0['id'],'handler'(_0x1bef89,_0x2b4b27){const _0x55763c=_0x54481f,_0x45b127=or[_0x55763c(0x12a)](_0x2b4b27,_0x1bef89);return at(_0x45b127)?{'m1Prime':_0x45b127[_0x55763c(0x1e8)],'m2Prime':_0x45b127[_0x55763c(0x1e2)]}:_0x45b127;}},us={'m1':_0xfa530e['id'],'m2':_0xeb63e6['id'],'handler'(_0x3e14db,_0x1a3807){const _0x46fffb=_0x54481f,_0x868059={'m1Prime':_0x3e14db,'m2Prime':_0x1a3807};if(_0x3e14db[_0x46fffb(0x191)][_0x46fffb(0x15b)]!==_0x1a3807['params'][_0x46fffb(0x15b)]||_0x3e14db['params'][_0x46fffb(0x126)]!==_0x1a3807[_0x46fffb(0x191)][_0x46fffb(0xad)][_0x46fffb(0x126)]&&_0x3e14db[_0x46fffb(0x191)][_0x46fffb(0x126)]!==_0x1a3807[_0x46fffb(0x191)]['to'][_0x46fffb(0x126)])return _0x868059;const _0x3909df=_0x12a789[_0x46fffb(0xec)](_0x3e14db),_0x32f36a=_0x12a789['deepClone'](_0x1a3807),_0x1f79de=_0x3e14db[_0x46fffb(0x191)][_0x46fffb(0x9d)],_0xa213a7=_0x3e14db[_0x46fffb(0x191)][_0x46fffb(0x12c)];if(_0x3e14db[_0x46fffb(0x191)][_0x46fffb(0x126)]===_0x1a3807[_0x46fffb(0x191)][_0x46fffb(0xad)][_0x46fffb(0x126)]){const _0x37276e=new _0x3597fb(_0x32f36a[_0x46fffb(0x191)][_0x46fffb(0xad)]['value']),_0x3f6c49=_0x37276e[_0x46fffb(0xa7)]();if(H({'start':_0x1f79de[_0x46fffb(0x11e)],'end':_0x1f79de[_0x46fffb(0xda)]},{'start':_0x3f6c49[_0x46fffb(0x11e)],'end':_0x3f6c49['endRow']})||H({'start':_0xa213a7[_0x46fffb(0x11e)],'end':_0xa213a7[_0x46fffb(0xda)]},{'start':_0x3f6c49['startRow'],'end':_0x3f6c49[_0x46fffb(0xda)]}))return{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20move\x20range')};const _0x33b4cc=_0x56462a({'start':_0x1f79de['startRow'],'end':_0x1f79de['endRow']},{'start':_0xa213a7['startRow'],'end':_0xa213a7['endRow']},{'start':_0x3f6c49[_0x46fffb(0x11e)],'end':_0x3f6c49[_0x46fffb(0xda)]});if(_0x33b4cc[_0x46fffb(0xbd)]!==0x0)return{'error':new Error(_0x46fffb(0x1f6))};_0x33b4cc['step']!==0x0&&_0x37276e[_0x46fffb(0x96)](_0x1f79de[_0x46fffb(0x11e)],_0x1f79de[_0x46fffb(0xda)]-_0x1f79de[_0x46fffb(0x11e)]+0x1,_0xa213a7['startRow']),_0x32f36a['params'][_0x46fffb(0xad)][_0x46fffb(0x9e)]=_0x37276e[_0x46fffb(0xd9)]();}if(_0x3e14db['params']['subUnitId']===_0x1a3807[_0x46fffb(0x191)]['to']['subUnitId']){const _0xe40415=new _0x3597fb(_0x32f36a[_0x46fffb(0x191)]['to'][_0x46fffb(0x9e)]),_0x56a4de=_0xe40415[_0x46fffb(0xa7)]();if(H({'start':_0x1f79de[_0x46fffb(0x11e)],'end':_0x1f79de['endRow']},{'start':_0x56a4de['startRow'],'end':_0x56a4de[_0x46fffb(0xda)]})||H({'start':_0xa213a7[_0x46fffb(0x11e)],'end':_0xa213a7[_0x46fffb(0xda)]},{'start':_0x56a4de['startRow'],'end':_0x56a4de[_0x46fffb(0xda)]}))return{'error':new Error(_0x46fffb(0x1f6))};const _0x3d71df=_0x56462a({'start':_0x1f79de[_0x46fffb(0x11e)],'end':_0x1f79de[_0x46fffb(0xda)]},{'start':_0xa213a7['startRow'],'end':_0xa213a7[_0x46fffb(0xda)]},{'start':_0x56a4de[_0x46fffb(0x11e)],'end':_0x56a4de[_0x46fffb(0xda)]});if(_0x3d71df['length']!==0x0)return{'error':new Error(_0x46fffb(0x1f6))};_0x3d71df[_0x46fffb(0x1ba)]!==0x0&&_0xe40415[_0x46fffb(0x96)](_0x1f79de['startRow'],_0x1f79de[_0x46fffb(0xda)]-_0x1f79de[_0x46fffb(0x11e)]+0x1,_0xa213a7['startRow']),_0x32f36a[_0x46fffb(0x191)]['to']['value']=_0xe40415[_0x46fffb(0xd9)]();}return{'m1Prime':_0x3909df,'m2Prime':_0x32f36a};}},ls={'m1':_0xfa530e['id'],'m2':_0xfa530e['id'],'handler'(_0x12a75e,_0x50e7bc){const _0x46fec1=_0x54481f,_0x1e6d7a={'m1Prime':_0x12a75e,'m2Prime':_0x50e7bc};if(_0x12a75e['params']['unitId']!==_0x50e7bc['params']['unitId']||_0x12a75e[_0x46fec1(0x191)]['subUnitId']!==_0x50e7bc['params'][_0x46fec1(0x126)])return _0x1e6d7a;const _0x438356=_0x12a789[_0x46fec1(0xec)](_0x12a75e),_0x243bf8=_0x12a789[_0x46fec1(0xec)](_0x50e7bc),_0x51d604=_0x50e7bc[_0x46fec1(0x191)][_0x46fec1(0x9d)],_0xf152b3=_0x50e7bc['params']['targetRange'],_0x358492=_0x12a75e[_0x46fec1(0x191)][_0x46fec1(0x9d)],_0x5cf066=_0x12a75e[_0x46fec1(0x191)][_0x46fec1(0x12c)];if(_0x358492[_0x46fec1(0xda)]>=_0x51d604[_0x46fec1(0x11e)]&&_0x358492[_0x46fec1(0x11e)]<=_0x51d604[_0x46fec1(0xda)])return{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20move\x20row')};const _0x321a85=_0x56462a({'start':_0x358492[_0x46fec1(0x11e)],'end':_0x358492[_0x46fec1(0xda)]},{'start':_0x5cf066['startRow'],'end':_0x5cf066['endRow']},{'start':_0x51d604['startRow'],'end':_0x51d604['endRow']}),_0x1c4ba6=_0x56462a({'start':_0x358492['startRow'],'end':_0x358492[_0x46fec1(0xda)]},{'start':_0x5cf066[_0x46fec1(0x11e)],'end':_0x5cf066[_0x46fec1(0xda)]},{'start':_0xf152b3['startRow'],'end':_0xf152b3[_0x46fec1(0xda)]});_0x321a85&&_0x1c4ba6?(_0x243bf8[_0x46fec1(0x191)][_0x46fec1(0x9d)]['startRow']+=_0x321a85[_0x46fec1(0x1ba)],_0x243bf8[_0x46fec1(0x191)]['sourceRange'][_0x46fec1(0xda)]+=_0x321a85[_0x46fec1(0x1ba)]+(_0x321a85['length']||0x0),_0x243bf8['params'][_0x46fec1(0x12c)][_0x46fec1(0x11e)]+=_0x1c4ba6['step'],_0x243bf8[_0x46fec1(0x191)]['targetRange'][_0x46fec1(0xda)]+=_0x1c4ba6[_0x46fec1(0x1ba)]+(_0x1c4ba6[_0x46fec1(0xbd)]||0x0)):_0x243bf8['id']=_0x411476['id'];const _0x380fe2=_0x56462a({'start':_0x51d604[_0x46fec1(0x11e)],'end':_0x51d604[_0x46fec1(0xda)]},{'start':_0xf152b3[_0x46fec1(0x11e)],'end':_0xf152b3[_0x46fec1(0xda)]},{'start':_0x358492[_0x46fec1(0x11e)],'end':_0x358492[_0x46fec1(0xda)]}),_0x12baa7=_0x56462a({'start':_0x51d604[_0x46fec1(0x11e)],'end':_0x51d604[_0x46fec1(0xda)]},{'start':_0xf152b3[_0x46fec1(0x11e)],'end':_0xf152b3[_0x46fec1(0xda)]},{'start':_0x5cf066[_0x46fec1(0x11e)],'end':_0x5cf066[_0x46fec1(0xda)]});return _0x380fe2&&_0x12baa7?(_0x438356[_0x46fec1(0x191)][_0x46fec1(0x9d)][_0x46fec1(0x11e)]+=_0x380fe2[_0x46fec1(0x1ba)],_0x438356['params']['sourceRange'][_0x46fec1(0xda)]+=_0x380fe2['step']+(_0x380fe2['length']||0x0),_0x438356['params'][_0x46fec1(0x12c)][_0x46fec1(0x11e)]+=_0x12baa7[_0x46fec1(0x1ba)],_0x438356['params'][_0x46fec1(0x12c)][_0x46fec1(0xda)]+=_0x12baa7[_0x46fec1(0x1ba)]+(_0x12baa7[_0x46fec1(0xbd)]||0x0)):_0x438356['id']=_0x411476['id'],{'m1Prime':_0x438356,'m2Prime':_0x243bf8};}},cs={'m1':_0xfa530e['id'],'m2':_0x180381['id'],'handler'(_0x452e68,_0x494a32){const _0x44f4a9=_0x54481f,_0x5698df={'m1Prime':_0x452e68,'m2Prime':_0x494a32};if(_0x452e68['params'][_0x44f4a9(0x15b)]!==_0x494a32['params'][_0x44f4a9(0x15b)]||_0x452e68[_0x44f4a9(0x191)][_0x44f4a9(0x126)]!==_0x494a32[_0x44f4a9(0x191)][_0x44f4a9(0x126)])return _0x5698df;const _0x477e03=_0x12a789['deepClone'](_0x452e68),_0x12ab7a=_0x12a789['deepClone'](_0x494a32),{sourceRange:_0x5b4182,targetRange:_0x58d778}=_0x452e68[_0x44f4a9(0x191)],_0x569658={'start':_0x5b4182[_0x44f4a9(0x11e)],'end':_0x5b4182[_0x44f4a9(0xda)]},_0x321f4c={'start':_0x58d778[_0x44f4a9(0x11e)],'end':_0x58d778[_0x44f4a9(0xda)]};return _0x12ab7a[_0x44f4a9(0x191)][_0x44f4a9(0x1a9)]['some'](_0xcfc009=>{const _0x2abe1d=_0x44f4a9,_0xb1be28={'start':_0xcfc009[_0x2abe1d(0x11e)],'end':_0xcfc009[_0x2abe1d(0xda)]},_0x2f0d54=H(_0x569658,_0xb1be28),_0xf5f1f7=H(_0x321f4c,_0xb1be28);if(_0x2f0d54||_0xf5f1f7)return!0x0;const _0x54fc56=_0x56462a(_0x569658,_0x321f4c,_0xb1be28);return _0x54fc56[_0x2abe1d(0xbd)]!==0x0?!0x0:(_0xcfc009['startRow']+=_0x54fc56[_0x2abe1d(0x1ba)],_0xcfc009['endRow']+=_0x54fc56[_0x2abe1d(0x1ba)],!0x1);})?{'error':new Error(_0x44f4a9(0x19e))}:{'m1Prime':_0x477e03,'m2Prime':_0x12ab7a};}},ps={'m1':_0xfa530e['id'],'m2':_0x3194c5['id'],'handler'(_0x55a159,_0x126358){const _0x3ca189=_0x54481f,_0x342c35=_0x12a789[_0x3ca189(0xec)](_0x55a159),_0x25d802=_0x12a789['deepClone'](_0x126358);if(_0x55a159[_0x3ca189(0x191)][_0x3ca189(0x15b)]!==_0x126358[_0x3ca189(0x191)]['unitId']||_0x55a159['params'][_0x3ca189(0x126)]!==_0x126358[_0x3ca189(0x191)]['subUnitId'])return{'m1Prime':_0x342c35,'m2Prime':_0x25d802};const _0x5f0c01=_0x25d802[_0x3ca189(0x191)]['ranges'][_0x3ca189(0x121)]((_0x368885,_0x399d0c)=>{const _0x151d92=_0x3ca189,{sourceRange:_0x5dfe49,targetRange:_0xbdfa72}=_0x55a159['params'],_0x543cac={..._0x399d0c};return _0x5dfe49['endRow']<_0x543cac[_0x151d92(0x11e)]&&_0xbdfa72[_0x151d92(0x11e)]>_0x543cac['endRow']?(_0x543cac[_0x151d92(0x11e)]-=_0x5dfe49['endRow']-_0x5dfe49['startRow']+0x1,_0x543cac[_0x151d92(0xda)]-=_0x5dfe49['endRow']-_0x5dfe49['startRow']+0x1,K(_0x543cac)&&_0x368885[_0x151d92(0x187)](_0x543cac)):_0x5dfe49['startRow']>_0x543cac[_0x151d92(0xda)]&&_0xbdfa72[_0x151d92(0xda)]<_0x543cac[_0x151d92(0x11e)]?(_0x543cac['startRow']+=_0x5dfe49['endRow']-_0x5dfe49['startRow']+0x1,_0x543cac[_0x151d92(0xda)]+=_0x5dfe49[_0x151d92(0xda)]-_0x5dfe49[_0x151d92(0x11e)]+0x1,K(_0x543cac)&&_0x368885[_0x151d92(0x187)](_0x543cac)):_0x12b536[_0x151d92(0x16e)](_0x543cac,_0x5dfe49)||_0x12b536[_0x151d92(0x16e)](_0x543cac,_0xbdfa72)||_0x368885[_0x151d92(0x187)](_0x543cac),_0x368885;},[]);return _0x25d802[_0x3ca189(0x191)]['ranges']=_0x5f0c01,_0x25d802[_0x3ca189(0x191)][_0x3ca189(0x1a9)]['length']===0x0&&(_0x25d802['id']=_0x411476['id']),{'m1Prime':_0x342c35,'m2Prime':_0x25d802};}},fs={'m1':_0xfa530e['id'],'m2':_0x41be04['id'],'handler'(_0x1e4f2b,_0x50d9af){const _0x530bc4=_0x54481f;var _0x25659e;const _0x224dd2={'m1Prime':_0x1e4f2b,'m2Prime':_0x50d9af};if(_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x15b)]!==_0x50d9af[_0x530bc4(0x191)][_0x530bc4(0x15b)]||_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x126)]!==_0x50d9af[_0x530bc4(0x191)][_0x530bc4(0x126)])return _0x224dd2;const _0x4fe32a=Rs(_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x9d)],_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x12c)]),_0x2c5d2e=_0x12a789[_0x530bc4(0xec)](_0x50d9af),{range:_0x3363b1}=_0x2c5d2e[_0x530bc4(0x191)],_0x58d6d3=Array['from']({'length':_0x3363b1[_0x530bc4(0xda)]-_0x3363b1[_0x530bc4(0x11e)]+0x1},(_0x35c282,_0x421f56)=>_0x421f56+_0x3363b1['startRow']),_0x463549={},_0x3cbf44={},_0x356a3b=Math[_0x530bc4(0x12b)](_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x9d)][_0x530bc4(0x11e)],_0x1e4f2b['params'][_0x530bc4(0x12c)][_0x530bc4(0x11e)],..._0x58d6d3),_0x413670=Math[_0x530bc4(0x1a7)](_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x9d)]['endRow'],_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x12c)][_0x530bc4(0xda)],..._0x58d6d3);for(let _0x30ed36=_0x356a3b;_0x30ed36<=_0x413670;_0x30ed36++){const _0x512c18=_0x30ed36,_0x4f0d29=(_0x25659e=_0x50d9af[_0x530bc4(0x191)][_0x530bc4(0xcb)][_0x30ed36])!=null?_0x25659e:_0x512c18,_0x3240c3=_0x4fe32a(_0x4f0d29);_0x512c18!==_0x3240c3&&(_0x463549[_0x512c18]=_0x3240c3),_0x4f0d29!==_0x3240c3&&(_0x3cbf44[_0x4f0d29]=_0x3240c3);}_0x2c5d2e[_0x530bc4(0x191)][_0x530bc4(0xcb)]=_0x463549;const _0x52e7f1=Object['keys'](_0x463549)[_0x530bc4(0x21d)](Number);_0x3363b1[_0x530bc4(0x11e)]=Math['min'](..._0x52e7f1),_0x3363b1[_0x530bc4(0xda)]=Math[_0x530bc4(0x1a7)](..._0x52e7f1);const _0x409ee3=[_0x1e4f2b],_0x3d9080=Object[_0x530bc4(0x98)](_0x3cbf44)['map'](Number);return _0x3d9080['length']>0x0&&_0x409ee3[_0x530bc4(0xd5)]({'id':_0x41be04['id'],'params':{'unitId':_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x15b)],'subUnitId':_0x1e4f2b[_0x530bc4(0x191)][_0x530bc4(0x126)],'range':{'startColumn':_0x50d9af['params'][_0x530bc4(0x1a6)][_0x530bc4(0x10c)],'endColumn':_0x50d9af['params'][_0x530bc4(0x1a6)]['endColumn'],'startRow':Math[_0x530bc4(0x12b)](..._0x3d9080),'endRow':Math[_0x530bc4(0x1a7)](..._0x3d9080)},'order':_0x3cbf44}}),{'m1Prime':_0x409ee3,'m2Prime':_0x2c5d2e};}},Rs=(_0xc777d2,_0x5d588f)=>{const _0x42a8a8=_0x54481f,_0x791189=_0xc777d2[_0x42a8a8(0xda)]-_0xc777d2[_0x42a8a8(0x11e)]+0x1,_0x4776f4=_0xc777d2[_0x42a8a8(0x11e)],_0x482071=_0x5d588f[_0x42a8a8(0x11e)];return _0x5c13ff=>{const _0x3e5d87=_0x42a8a8;if(_0x4776f4<=_0x482071){const _0x344ef2=_0x5d588f[_0x3e5d87(0x11e)]-_0xc777d2[_0x3e5d87(0xda)]-0x1;if(_0x5c13ff>=_0xc777d2[_0x3e5d87(0x11e)]&&_0x5c13ff<=_0xc777d2[_0x3e5d87(0xda)])return _0x5c13ff+_0x344ef2;if(_0x5c13ff>_0xc777d2[_0x3e5d87(0xda)]&&_0x5c13ff<_0x5d588f['startRow'])return _0x5c13ff-_0x791189;}if(_0x4776f4>_0x482071){const _0x4597b3=_0xc777d2[_0x3e5d87(0x11e)]-_0x5d588f[_0x3e5d87(0x11e)];if(_0x5c13ff>=_0x5d588f[_0x3e5d87(0x11e)]&&_0x5c13ff<_0xc777d2[_0x3e5d87(0x11e)])return _0x5c13ff+_0x791189;if(_0x5c13ff>=_0xc777d2[_0x3e5d87(0x11e)]&&_0x5c13ff<=_0xc777d2[_0x3e5d87(0xda)])return _0x5c13ff-_0x4597b3;}return _0x5c13ff;};},hs={'m1':_0xfa530e['id'],'m2':_0x30c2c8['id'],'handler'(_0x153588,_0x552e22){const _0x5cc5ae=_0x54481f,_0x5ee47b={'m1Prime':_0x153588,'m2Prime':_0x552e22};if(_0x153588[_0x5cc5ae(0x191)][_0x5cc5ae(0x15b)]!==_0x552e22[_0x5cc5ae(0x191)][_0x5cc5ae(0x15b)]||_0x153588[_0x5cc5ae(0x191)][_0x5cc5ae(0x126)]!==_0x552e22['params'][_0x5cc5ae(0x126)])return _0x5ee47b;const _0x447dc3=[_0x12a789['deepClone'](_0x153588)],_0x2e5d3b=_0x12a789[_0x5cc5ae(0xec)](_0x552e22),{sourceRange:_0x61c61a,targetRange:_0x287a0e}=_0x153588[_0x5cc5ae(0x191)],_0x4434ec={'start':_0x61c61a['startRow'],'end':_0x61c61a[_0x5cc5ae(0xda)]},_0x67bceb={'start':_0x287a0e[_0x5cc5ae(0x11e)],'end':_0x287a0e[_0x5cc5ae(0xda)]},{values:_0x5cf776}=_0x2e5d3b[_0x5cc5ae(0x191)],_0x1e6b3e=[];let _0x519f51=!0x1;for(const _0x158333 in _0x5cf776){const _0xc423b9=_0x5cf776[_0x158333];if(_0x1e6b3e[_0x5cc5ae(0x187)](..._0xc423b9[_0x5cc5ae(0x1a9)]),_0xc423b9['ranges'][_0x5cc5ae(0x161)](_0x370e9e=>{const _0x709c02=_0x5cc5ae,_0x44c724={'start':_0x370e9e[_0x709c02(0x11e)],'end':_0x370e9e['endRow']},_0x6e0529=H(_0x4434ec,_0x44c724),_0x149f56=H(_0x67bceb,_0x44c724);if(_0x6e0529||_0x149f56)return!0x0;const _0x381e61=_0x56462a(_0x4434ec,_0x67bceb,_0x44c724);return _0x381e61[_0x709c02(0xbd)]!==0x0?!0x0:(_0x381e61['step']!==0x0&&(_0x519f51=!0x0),_0x370e9e[_0x709c02(0x11e)]+=_0x381e61[_0x709c02(0x1ba)],_0x370e9e[_0x709c02(0xda)]+=_0x381e61['step'],!0x1);}))return{'error':new Error(_0x5cc5ae(0xf6))};}if(_0x519f51){const _0x39720c={'id':_0x180381['id'],'params':{'unitId':_0x552e22[_0x5cc5ae(0x191)]['unitId'],'subUnitId':_0x552e22['params']['subUnitId'],'ranges':_0x1e6b3e}};_0x447dc3[_0x5cc5ae(0x187)](_0x39720c,_0x2e5d3b);}return{'m1Prime':_0x447dc3,'m2Prime':_0x2e5d3b};}},gs={'m1':_0xfa530e['id'],'m2':_0x59880b['id'],'handler'(_0x1773ff,_0x3fca3e){const _0x50666b=_0x54481f,_0x2bc844={'m1Prime':_0x1773ff,'m2Prime':_0x3fca3e};if(_0x1773ff['params']['unitId']!==_0x3fca3e[_0x50666b(0x191)][_0x50666b(0x15b)]||_0x1773ff[_0x50666b(0x191)]['subUnitId']!==_0x3fca3e['params'][_0x50666b(0x126)])return _0x2bc844;const _0x2c7bd5=[_0x12a789[_0x50666b(0xec)](_0x1773ff)],_0x58b835=_0x12a789['deepClone'](_0x3fca3e),_0x4a16e8=new _0x3597fb(_0x58b835[_0x50666b(0x191)][_0x50666b(0xaf)]),{sourceRange:_0xd957ef,targetRange:_0x14f9d5}=_0x1773ff[_0x50666b(0x191)],_0x29cdba=_0xd957ef[_0x50666b(0x11e)],_0xdf1e07=_0xd957ef[_0x50666b(0xda)]-_0xd957ef[_0x50666b(0x11e)]+0x1,_0x3624a7=_0x14f9d5[_0x50666b(0x11e)];_0x4a16e8[_0x50666b(0x96)](_0x29cdba,_0xdf1e07,_0x3624a7);const _0x55f124=new _0x3597fb();let _0x18b6b1=!0x1;if(_0x4a16e8[_0x50666b(0x1bf)]((_0x7a52c2,_0x505649,_0x4d18ec)=>{const _0x10f06e=_0x50666b;if(_0x4d18ec&&_0x4d18ec['f']){const _0x43c405=_0x4d18ec['f'];let _0x29666d=!0x1;const _0x531188=dt(_0x1773ff[_0x10f06e(0x191)]['unitId'],_0x1773ff[_0x10f06e(0x191)][_0x10f06e(0x126)],_0x43c405,_0x2a1aea=>{const _0x586da2=_0x10f06e,_0x149d8c=_0x56462a({'start':_0x1773ff[_0x586da2(0x191)]['sourceRange'][_0x586da2(0x11e)],'end':_0x1773ff['params'][_0x586da2(0x9d)][_0x586da2(0xda)]},{'start':_0x1773ff[_0x586da2(0x191)][_0x586da2(0x12c)][_0x586da2(0x11e)],'end':_0x1773ff['params'][_0x586da2(0x12c)][_0x586da2(0xda)]},{'start':_0x2a1aea[_0x586da2(0x11e)],'end':_0x2a1aea[_0x586da2(0xda)]});return(_0x149d8c['step']!==0x0||_0x149d8c['length']!==0x0)&&(_0x29666d=!0x0,_0x2a1aea[_0x586da2(0x11e)]+=_0x149d8c[_0x586da2(0x1ba)],_0x2a1aea['endRow']+=_0x149d8c[_0x586da2(0x1ba)]+_0x149d8c[_0x586da2(0xbd)]),_0x2a1aea;});_0x29666d&&(_0x18b6b1=!0x0,_0x4d18ec['f']=_0x531188,_0x55f124['setValue'](_0x7a52c2,_0x505649,{..._0x4d18ec}));}}),_0x18b6b1){const _0x2aaa42={'id':_0x59880b['id'],'params':{'unitId':_0x3fca3e[_0x50666b(0x191)]['unitId'],'subUnitId':_0x3fca3e['params'][_0x50666b(0x126)],'cellValue':_0x55f124[_0x50666b(0xd9)]()}};_0x2c7bd5['push'](_0x2aaa42);}return _0x58b835[_0x50666b(0x191)][_0x50666b(0xaf)]=_0x4a16e8[_0x50666b(0xd9)](),{'m1Prime':_0x2c7bd5,'m2Prime':_0x58b835};}},Is={'m1':_0xfa530e['id'],'m2':_0x5d6537['id'],'handler'(_0x4b1d63,_0x250b9e){const _0x123438=_0x54481f,_0x50ecac={'m1Prime':_0x4b1d63,'m2Prime':_0x250b9e};if(_0x4b1d63[_0x123438(0x191)][_0x123438(0x15b)]!==_0x250b9e['params'][_0x123438(0x15b)]||_0x4b1d63['params'][_0x123438(0x126)]!==_0x250b9e[_0x123438(0x191)]['subUnitId'])return _0x50ecac;const _0x518f9c=_0x12a789[_0x123438(0xec)](_0x4b1d63),_0x278f62=_0x12a789[_0x123438(0xec)](_0x250b9e),{rowData:_0x2209cc}=_0x278f62['params'],{sourceRange:_0x2e5bd5,targetRange:_0x5bac99}=_0x4b1d63[_0x123438(0x191)];return _0x220bae(_0x2e5bd5[_0x123438(0x11e)],_0x2e5bd5['endRow']-_0x2e5bd5[_0x123438(0x11e)]+0x1,_0x5bac99[_0x123438(0x11e)],_0x2209cc),{'m1Prime':_0x518f9c,'m2Prime':_0x278f62};}},ws={'m1':_0xfa530e['id'],'m2':_0x4744ed['id'],'handler'(_0x25a2b5,_0x37c5f2){const _0x1270bd=_0x54481f,_0x4ba478={'m1Prime':_0x25a2b5,'m2Prime':_0x37c5f2};if(_0x25a2b5[_0x1270bd(0x191)][_0x1270bd(0x15b)]!==_0x37c5f2[_0x1270bd(0x191)][_0x1270bd(0x15b)]||_0x25a2b5[_0x1270bd(0x191)][_0x1270bd(0x126)]!==_0x37c5f2[_0x1270bd(0x191)][_0x1270bd(0x126)])return _0x4ba478;const _0x80540e=_0x12a789[_0x1270bd(0xec)](_0x25a2b5),_0x17c28e=_0x12a789[_0x1270bd(0xec)](_0x37c5f2),{ranges:_0x1d93be}=_0x17c28e['params'],{sourceRange:_0x226f35,targetRange:_0x295565}=_0x25a2b5[_0x1270bd(0x191)],_0x3dce91={'start':_0x226f35[_0x1270bd(0x11e)],'end':_0x226f35[_0x1270bd(0xda)]},_0x227f77={'start':_0x295565[_0x1270bd(0x11e)],'end':_0x295565[_0x1270bd(0xda)]};return _0x1d93be[_0x1270bd(0x161)](_0xee1457=>{const _0x2f42f9=_0x1270bd,_0x374002={'start':_0xee1457[_0x2f42f9(0x11e)],'end':_0xee1457[_0x2f42f9(0xda)]},_0x349b67=H(_0x3dce91,_0x374002),_0x3aaec3=H(_0x227f77,_0x374002);if(_0x349b67||_0x3aaec3)return!0x0;const _0x55a9bf=_0x56462a(_0x3dce91,_0x227f77,_0x374002);return _0x55a9bf[_0x2f42f9(0xbd)]!==0x0?!0x0:(_0xee1457[_0x2f42f9(0x11e)]+=_0x55a9bf['step'],_0xee1457['endRow']+=_0x55a9bf[_0x2f42f9(0x1ba)],!0x1);})?{'error':new Error(_0x1270bd(0x95))}:{'m1Prime':_0x80540e,'m2Prime':_0x17c28e};}},Cs={'m1':_0xfa530e['id'],'m2':_0x567b52['id'],'handler'(_0x37fb15,_0x3300d5){const _0x4aa51e=_0x54481f,_0x1701f5={'m1Prime':_0x37fb15,'m2Prime':_0x3300d5};if(_0x37fb15[_0x4aa51e(0x191)][_0x4aa51e(0x15b)]!==_0x3300d5[_0x4aa51e(0x191)]['unitId']||_0x37fb15['params'][_0x4aa51e(0x126)]!==_0x3300d5[_0x4aa51e(0x191)][_0x4aa51e(0x126)])return _0x1701f5;const _0x14ec93=_0x12a789[_0x4aa51e(0xec)](_0x37fb15),_0x3f0774=_0x12a789[_0x4aa51e(0xec)](_0x3300d5),{ranges:_0x51e1df}=_0x3f0774[_0x4aa51e(0x191)],{sourceRange:_0x14f217,targetRange:_0xa6d65f}=_0x37fb15[_0x4aa51e(0x191)],_0x37167e={'start':_0x14f217[_0x4aa51e(0x11e)],'end':_0x14f217[_0x4aa51e(0xda)]},_0xed6928={'start':_0xa6d65f[_0x4aa51e(0x11e)],'end':_0xa6d65f[_0x4aa51e(0xda)]};return _0x51e1df['some'](_0x437ed1=>{const _0x38a21d=_0x4aa51e,_0x413b91={'start':_0x437ed1[_0x38a21d(0x11e)],'end':_0x437ed1['endRow']},_0x4ce906=H(_0x37167e,_0x413b91),_0x20702c=H(_0xed6928,_0x413b91);if(_0x4ce906||_0x20702c)return!0x0;const _0x28718d=_0x56462a(_0x37167e,_0xed6928,_0x413b91);return _0x28718d[_0x38a21d(0xbd)]!==0x0?!0x0:(_0x437ed1[_0x38a21d(0x11e)]+=_0x28718d[_0x38a21d(0x1ba)],_0x437ed1[_0x38a21d(0xda)]+=_0x28718d[_0x38a21d(0x1ba)],!0x1);})?{'error':new Error(_0x4aa51e(0x163))}:{'m1Prime':_0x14ec93,'m2Prime':_0x3f0774};}},Ps={'m1':_0xfa530e['id'],'m2':_0x22c7b4['id'],'handler'(_0x484b08,_0x1bb1ac){const _0x24f316=_0x54481f,_0x431e1e={'m1Prime':[],'m2Prime':[]};if(_0x484b08[_0x24f316(0x191)]['unitId']!==_0x1bb1ac['params'][_0x24f316(0x15b)]||_0x484b08['params'][_0x24f316(0x126)]!==_0x1bb1ac[_0x24f316(0x191)]['subUnitId'])return _0x431e1e;const _0x4567b5=_0x12a789[_0x24f316(0xec)](_0x1bb1ac);let _0x2da726=!0x1;return _0x4567b5[_0x24f316(0x191)][_0x24f316(0x11d)][_0x24f316(0x147)](_0x406edb=>{const _0x25f35d=_0x24f316,{range:_0xde95ab,primary:_0x186539}=_0x406edb,_0x4d23a4=_0x56462a({'start':_0x484b08[_0x25f35d(0x191)][_0x25f35d(0x9d)][_0x25f35d(0x11e)],'end':_0x484b08[_0x25f35d(0x191)][_0x25f35d(0x9d)]['endRow']},{'start':_0x484b08[_0x25f35d(0x191)]['targetRange'][_0x25f35d(0x11e)],'end':_0x484b08[_0x25f35d(0x191)][_0x25f35d(0x12c)][_0x25f35d(0xda)]},{'start':_0xde95ab[_0x25f35d(0x11e)],'end':_0xde95ab[_0x25f35d(0xda)]});if(_0x4d23a4[_0x25f35d(0xbd)]||_0x4d23a4[_0x25f35d(0x1ba)]){if(_0xde95ab[_0x25f35d(0x11e)]+=_0x4d23a4[_0x25f35d(0x1ba)],_0xde95ab[_0x25f35d(0xda)]+=_0x4d23a4[_0x25f35d(0x1ba)]+(_0x4d23a4[_0x25f35d(0xbd)]||0x0),_0x186539){const _0x1309ba=_0x56462a({'start':_0x484b08[_0x25f35d(0x191)][_0x25f35d(0x9d)][_0x25f35d(0x11e)],'end':_0x484b08[_0x25f35d(0x191)][_0x25f35d(0x9d)][_0x25f35d(0xda)]},{'start':_0x484b08[_0x25f35d(0x191)]['targetRange'][_0x25f35d(0x11e)],'end':_0x484b08['params']['targetRange']['endRow']},{'start':_0x186539[_0x25f35d(0x11e)],'end':_0x186539[_0x25f35d(0xda)]});(_0x1309ba[_0x25f35d(0xbd)]||_0x1309ba[_0x25f35d(0x1ba)])&&(_0x186539[_0x25f35d(0x11e)]+=_0x1309ba[_0x25f35d(0x1ba)],_0x186539[_0x25f35d(0xda)]+=_0x1309ba[_0x25f35d(0x1ba)],_0x186539[_0x25f35d(0xf9)]+=_0x1309ba['step']);}_0x2da726=!0x0;}}),_0x2da726&&_0x431e1e[_0x24f316(0x1e8)][_0x24f316(0x187)](_0x4567b5),_0x431e1e;}},Us={'m1':_0xfa530e['id'],'m2':_0x4a261b['id'],'handler'(_0x5eaaa1,_0x212dfa){const _0xe6ab88=_0x54481f,_0x109357={'m1Prime':[_0x5eaaa1],'m2Prime':[_0x212dfa]};if(_0x5eaaa1[_0xe6ab88(0x191)][_0xe6ab88(0x15b)]!==_0x212dfa[_0xe6ab88(0x191)][_0xe6ab88(0x15b)]||_0x5eaaa1['params'][_0xe6ab88(0x126)]!==_0x212dfa['params'][_0xe6ab88(0x126)])return _0x109357;const _0x928212=_0x12a789[_0xe6ab88(0xec)](_0x5eaaa1),_0x59581c=_0x12a789['deepClone'](_0x212dfa),_0x3b8266=_0x56462a({'start':_0x5eaaa1[_0xe6ab88(0x191)]['sourceRange'][_0xe6ab88(0x11e)],'end':_0x5eaaa1[_0xe6ab88(0x191)][_0xe6ab88(0x9d)][_0xe6ab88(0xda)]},{'start':_0x5eaaa1[_0xe6ab88(0x191)][_0xe6ab88(0x12c)][_0xe6ab88(0x11e)],'end':_0x5eaaa1[_0xe6ab88(0x191)]['targetRange']['endRow']},{'start':_0x212dfa[_0xe6ab88(0x191)][_0xe6ab88(0x1a6)][_0xe6ab88(0x11e)],'end':_0x212dfa[_0xe6ab88(0x191)]['range'][_0xe6ab88(0xda)]});return _0x59581c[_0xe6ab88(0x191)][_0xe6ab88(0x1a6)][_0xe6ab88(0x11e)]+=_0x3b8266['step'],_0x59581c[_0xe6ab88(0x191)][_0xe6ab88(0x1a6)][_0xe6ab88(0xda)]+=_0x3b8266[_0xe6ab88(0x1ba)]+_0x3b8266['length'],{'m1Prime':[_0x59581c,_0x928212],'m2Prime':[_0x59581c]};}},bs={'m1':_0xfa530e['id'],'m2':_0x1bdf83['id'],'handler'(_0x792a71,_0x28ccb1){const _0xca9ecb=_0x54481f,_0x24db2b={'m1Prime':_0x792a71,'m2Prime':_0x28ccb1};if(_0x792a71[_0xca9ecb(0x191)][_0xca9ecb(0x15b)]!==_0x28ccb1[_0xca9ecb(0x191)][_0xca9ecb(0x15b)]||_0x792a71[_0xca9ecb(0x191)][_0xca9ecb(0x126)]!==_0x28ccb1[_0xca9ecb(0x191)]['subUnitId'])return _0x24db2b;const _0x1262e4=_0x12a789[_0xca9ecb(0xec)](_0x792a71),_0x208abe=_0x12a789[_0xca9ecb(0xec)](_0x28ccb1),{rowsAutoHeightInfo:_0x464610}=_0x208abe[_0xca9ecb(0x191)],{sourceRange:_0xb62413,targetRange:_0x46f0d0}=_0x792a71[_0xca9ecb(0x191)],_0x396d72={'start':_0xb62413[_0xca9ecb(0x11e)],'end':_0xb62413[_0xca9ecb(0xda)]},_0x51c60e={'start':_0x46f0d0['startRow'],'end':_0x46f0d0[_0xca9ecb(0xda)]};return _0x464610[_0xca9ecb(0x161)](_0x594abc=>{const _0x155dcf=_0xca9ecb,_0x2f33d1={'start':_0x594abc['row'],'end':_0x594abc['row']},_0x3d17bf=_0x56462a(_0x396d72,_0x51c60e,_0x2f33d1);return _0x3d17bf[_0x155dcf(0xbd)]!==0x0?!0x0:(_0x594abc[_0x155dcf(0x22d)]+=_0x3d17bf[_0x155dcf(0x1ba)],!0x1);})?{'error':new Error(_0xca9ecb(0xc0))}:{'m1Prime':_0x1262e4,'m2Prime':_0x208abe};}},Ms={'m1':_0xfa530e['id'],'m2':_0x295209['id'],'handler'(_0x561c72,_0xd5a927){const _0x198325=_0x54481f,_0x302b99={'m1Prime':_0x561c72,'m2Prime':_0xd5a927};if(_0x561c72[_0x198325(0x191)][_0x198325(0x15b)]!==_0xd5a927['params'][_0x198325(0x15b)]||_0x561c72[_0x198325(0x191)]['subUnitId']!==_0xd5a927['params'][_0x198325(0x126)])return _0x302b99;const _0x1d21cd=_0x12a789[_0x198325(0xec)](_0x561c72),_0x389129=_0x12a789[_0x198325(0xec)](_0xd5a927),{ranges:_0x200901,rowHeight:_0x48ebeb}=_0x389129[_0x198325(0x191)],{sourceRange:_0x55ab5f,targetRange:_0x1a6937}=_0x561c72[_0x198325(0x191)],_0x30ddf2={'start':_0x55ab5f[_0x198325(0x11e)],'end':_0x55ab5f[_0x198325(0xda)]},_0x4a41b8={'start':_0x1a6937[_0x198325(0x11e)],'end':_0x1a6937[_0x198325(0xda)]};return _0x200901['some'](_0x4a99e2=>{const _0x49652f=_0x198325,_0x135536={'start':_0x4a99e2[_0x49652f(0x11e)],'end':_0x4a99e2[_0x49652f(0xda)]},_0x25a357=_0x56462a(_0x30ddf2,_0x4a41b8,_0x135536);return _0x25a357[_0x49652f(0xbd)]!==0x0?!0x0:(_0x4a99e2[_0x49652f(0x11e)]+=_0x25a357[_0x49652f(0x1ba)],_0x4a99e2[_0x49652f(0xda)]+=_0x25a357[_0x49652f(0x1ba)],!0x1);})?{'error':new Error(_0x198325(0xd2))}:(typeof _0x48ebeb!=_0x198325(0x13c)&&_0x220bae(_0x55ab5f[_0x198325(0x11e)],_0x55ab5f[_0x198325(0xda)]-_0x55ab5f['startRow']+0x1,_0x1a6937[_0x198325(0x11e)],_0x48ebeb),{'m1Prime':_0x1d21cd,'m2Prime':_0x389129});}},vs={'m1':_0xfa530e['id'],'m2':_0x2d1c92['id'],'handler'(_0x143ca8,_0x4b7118){const _0x4bf6c2=_0x54481f,_0x2dbbc8={'m1Prime':_0x143ca8,'m2Prime':_0x4b7118};if(_0x143ca8['params'][_0x4bf6c2(0x15b)]!==_0x4b7118[_0x4bf6c2(0x191)][_0x4bf6c2(0x15b)]||_0x143ca8[_0x4bf6c2(0x191)][_0x4bf6c2(0x126)]!==_0x4b7118[_0x4bf6c2(0x191)][_0x4bf6c2(0x126)])return _0x2dbbc8;const _0x55fbb0=_0x12a789[_0x4bf6c2(0xec)](_0x143ca8),_0x2b3db3=_0x12a789[_0x4bf6c2(0xec)](_0x4b7118),{ranges:_0x15cce0,autoHeightInfo:_0x2f1e3d}=_0x2b3db3[_0x4bf6c2(0x191)],{sourceRange:_0x3f9bb2,targetRange:_0x13acaa}=_0x143ca8[_0x4bf6c2(0x191)],_0x2c7388={'start':_0x3f9bb2[_0x4bf6c2(0x11e)],'end':_0x3f9bb2['endRow']},_0x588af0={'start':_0x13acaa[_0x4bf6c2(0x11e)],'end':_0x13acaa[_0x4bf6c2(0xda)]};return _0x15cce0[_0x4bf6c2(0x161)](_0x180717=>{const _0x68aaf2=_0x4bf6c2,_0x31a9f4={'start':_0x180717['startRow'],'end':_0x180717[_0x68aaf2(0xda)]},_0x2104cd=_0x56462a(_0x2c7388,_0x588af0,_0x31a9f4);return _0x2104cd[_0x68aaf2(0xbd)]!==0x0?!0x0:(_0x180717[_0x68aaf2(0x11e)]+=_0x2104cd[_0x68aaf2(0x1ba)],_0x180717[_0x68aaf2(0xda)]+=_0x2104cd['step'],!0x1);})?{'error':new Error('move\x20row\x20is\x20conflict\x20with\x20set\x20worksheet\x20row\x20is\x20auto\x20height')}:(typeof _0x2f1e3d!=_0x4bf6c2(0x13c)&&_0x220bae(_0x3f9bb2[_0x4bf6c2(0x11e)],_0x3f9bb2['endRow']-_0x3f9bb2['startRow']+0x1,_0x13acaa[_0x4bf6c2(0x11e)],_0x2f1e3d),{'m1Prime':_0x55fbb0,'m2Prime':_0x2b3db3});}},Es={'m1':_0xfa530e['id'],'m2':_0x44bb69['id'],'handler':(_0x4405c7,_0x357e56)=>{const _0x48db08=_0x54481f,_0x56daf0={'m1Prime':_0x4405c7,'m2Prime':_0x357e56};if(_0x4405c7[_0x48db08(0x191)]['unitId']!==_0x357e56[_0x48db08(0x191)]['unitId']||_0x4405c7[_0x48db08(0x191)][_0x48db08(0x126)]!==_0x357e56[_0x48db08(0x191)][_0x48db08(0x126)])return _0x56daf0;const _0x419ec1={'id':_0x174f7c['id'],'params':{'unitId':_0x4405c7[_0x48db08(0x191)]['unitId'],'subUnitId':_0x4405c7[_0x48db08(0x191)][_0x48db08(0x126)],'fromRange':_0x4405c7[_0x48db08(0x191)][_0x48db08(0x9d)],'toRange':_0x4405c7['params']['targetRange']}},_0x3fc59a=wt(_0x357e56,_0x419ec1);return{'m1Prime':[_0x4405c7,..._0x3fc59a],'m2Prime':[_0x357e56,..._0x3fc59a]};}},Ss={'m1':_0xfa530e['id'],'m2':_0x5ad83d['id'],'handler':(_0x42ad33,_0x157a7c)=>{const _0x47fc75=_0x54481f,_0x575a68={'m1Prime':_0x42ad33,'m2Prime':_0x157a7c};if(_0x42ad33[_0x47fc75(0x191)][_0x47fc75(0x15b)]!==_0x157a7c[_0x47fc75(0x191)][_0x47fc75(0x15b)]||_0x157a7c[_0x47fc75(0x191)]['subUnitId']!==_0x42ad33[_0x47fc75(0x191)][_0x47fc75(0x126)])return _0x575a68;const _0x376166={'id':_0x174f7c['id'],'params':{'fromRange':_0x42ad33[_0x47fc75(0x191)][_0x47fc75(0x9d)],'toRange':_0x42ad33[_0x47fc75(0x191)][_0x47fc75(0x12c)]}},_0x59b6b6=Ct(_0x157a7c,_0x376166);return{'m1Prime':[_0x42ad33,..._0x59b6b6],'m2Prime':[_0x157a7c,..._0x59b6b6]};}},Ws={'m1':_0x491a86['id'],'m2':_0x41a8ef['id'],'handler':(_0x49a6b3,_0x5ba089)=>{const _0x4df295=_0x54481f,_0x429638={'m1Prime':_0x49a6b3,'m2Prime':_0x5ba089};if(_0x49a6b3[_0x4df295(0x191)][_0x4df295(0x15b)]!==_0x5ba089[_0x4df295(0x191)][_0x4df295(0x15b)]||_0x49a6b3[_0x4df295(0x191)]['subUnitId']!==_0x5ba089[_0x4df295(0x191)][_0x4df295(0x126)])return _0x429638;const _0x5cdc7e={'id':_0xd6d1c8['id'],'params':{'unitId':_0x49a6b3['params'][_0x4df295(0x15b)],'subUnitId':_0x49a6b3[_0x4df295(0x191)]['subUnitId'],'range':_0x49a6b3['params']['range']}},_0x411e64=It(_0x5ba089,_0x5cdc7e);return{'m1Prime':[_0x49a6b3,..._0x411e64],'m2Prime':[_0x5ba089,..._0x411e64]};}},Vs={'m1':_0x491a86['id'],'m2':_0x3273be['id'],'handler'(_0x205f8b,_0x1432c1){const _0x2ab462=_0x54481f,_0x3f97a8={'m1Prime':_0x205f8b,'m2Prime':_0x1432c1};if(_0x205f8b['params']['unitId']!==_0x1432c1[_0x2ab462(0x191)][_0x2ab462(0x15b)]||_0x205f8b[_0x2ab462(0x191)][_0x2ab462(0x126)]!==_0x1432c1[_0x2ab462(0x191)]['subUnitId'])return _0x3f97a8;const _0xa035d3={'id':_0xd6d1c8['id'],'params':{'range':_0x205f8b['params'][_0x2ab462(0x1a6)]}},_0x98ae11=Tt(_0x1432c1,_0xa035d3);return{'m1Prime':[_0x205f8b,..._0x98ae11],'m2Prime':[_0x1432c1,..._0x98ae11]};}},_s={'m1':_0x491a86['id'],'m2':_0x5504b0['id'],'handler'(_0x46bb14,_0x3f476f){const _0x4a8e1f=_0x54481f,_0x5b0033=ir[_0x4a8e1f(0x12a)](_0x3f476f,_0x46bb14);return at(_0x5b0033)?{'m1Prime':_0x5b0033[_0x4a8e1f(0x1e8)],'m2Prime':_0x5b0033[_0x4a8e1f(0x1e2)]}:_0x5b0033;}},Os={'m1':_0x491a86['id'],'m2':_0x1c90f1['id'],'handler'(_0x45a07b,_0x5d78b4){const _0x35e06c=_0x54481f,_0x1e2e35={'m1Prime':_0x45a07b,'m2Prime':_0x5d78b4};if(_0x45a07b[_0x35e06c(0x191)]['unitId']!==_0x5d78b4[_0x35e06c(0x191)][_0x35e06c(0x15b)]||_0x45a07b['params']['subUnitId']!==_0x5d78b4[_0x35e06c(0x191)]['subUnitId'])return _0x1e2e35;const _0x2575df=_0x12a789[_0x35e06c(0xec)](_0x45a07b),_0x39dfec=_0x12a789['deepClone'](_0x5d78b4);if(_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)][_0x35e06c(0x10c)]<=_0x5d78b4[_0x35e06c(0x191)][_0x35e06c(0x9d)]['endColumn']&&_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)][_0x35e06c(0x1ee)]>=_0x5d78b4[_0x35e06c(0x191)][_0x35e06c(0x9d)][_0x35e06c(0x10c)]||_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)]['startColumn']<=_0x5d78b4[_0x35e06c(0x191)][_0x35e06c(0x12c)][_0x35e06c(0x1ee)]&&_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)]['endColumn']>=_0x5d78b4['params'][_0x35e06c(0x12c)][_0x35e06c(0x10c)])return{'error':new Error(_0x35e06c(0x144))};const _0x12acf0=_0x27f777(h(_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)]),h(_0x5d78b4['params'][_0x35e06c(0x9d)])),_0x87b3a3=_0x27f777(h(_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)]),h(_0x5d78b4[_0x35e06c(0x191)]['targetRange']));_0x12acf0&&_0x87b3a3?(_0x39dfec['params']['sourceRange'][_0x35e06c(0x10c)]+=_0x12acf0[_0x35e06c(0x1ba)],_0x39dfec[_0x35e06c(0x191)][_0x35e06c(0x9d)][_0x35e06c(0x1ee)]+=_0x12acf0[_0x35e06c(0x1ba)]+(_0x12acf0['length']||0x0),_0x39dfec[_0x35e06c(0x191)][_0x35e06c(0x12c)][_0x35e06c(0x10c)]+=_0x87b3a3[_0x35e06c(0x1ba)],_0x39dfec[_0x35e06c(0x191)][_0x35e06c(0x12c)][_0x35e06c(0x1ee)]+=_0x87b3a3['step']+(_0x87b3a3[_0x35e06c(0xbd)]||0x0)):_0x39dfec['id']=_0x411476['id'];const _0x2cfca2=_0x56462a({'start':_0x5d78b4[_0x35e06c(0x191)]['sourceRange'][_0x35e06c(0x10c)],'end':_0x5d78b4[_0x35e06c(0x191)][_0x35e06c(0x9d)]['endColumn']},{'start':_0x5d78b4['params']['targetRange'][_0x35e06c(0x10c)],'end':_0x5d78b4[_0x35e06c(0x191)]['targetRange'][_0x35e06c(0x1ee)]},{'start':_0x45a07b[_0x35e06c(0x191)][_0x35e06c(0x1a6)]['startColumn'],'end':_0x45a07b[_0x35e06c(0x191)]['range']['endColumn']});if(_0x2cfca2){const {step:_0x1e44dd,length:_0x1eb6a5}=_0x2cfca2;_0x2575df[_0x35e06c(0x191)][_0x35e06c(0x1a6)][_0x35e06c(0x10c)]+=_0x1e44dd,_0x2575df[_0x35e06c(0x191)][_0x35e06c(0x1a6)][_0x35e06c(0x1ee)]+=_0x1e44dd+(_0x1eb6a5||0x0);}else _0x2575df[_0x35e06c(0x191)][_0x35e06c(0x1a6)]['startColumn']=0x0,_0x2575df['params'][_0x35e06c(0x1a6)][_0x35e06c(0x1ee)]=-0x1;return{'m1Prime':_0x2575df,'m2Prime':_0x39dfec};}},ys={'m1':_0x491a86['id'],'m2':_0xeb63e6['id'],'handler'(_0x43eed9,_0x2259ab){const _0x4b81bf=_0x54481f,_0x1f5eda={'m1Prime':_0x43eed9,'m2Prime':_0x2259ab};if(_0x43eed9[_0x4b81bf(0x191)]['unitId']!==_0x2259ab[_0x4b81bf(0x191)][_0x4b81bf(0x15b)]||_0x43eed9[_0x4b81bf(0x191)][_0x4b81bf(0x126)]!==_0x2259ab[_0x4b81bf(0x191)][_0x4b81bf(0xad)]['subUnitId']&&_0x43eed9[_0x4b81bf(0x191)][_0x4b81bf(0x126)]!==_0x2259ab[_0x4b81bf(0x191)]['to'][_0x4b81bf(0x126)])return _0x1f5eda;const _0x20fed6=_0x12a789[_0x4b81bf(0xec)](_0x43eed9),_0xe832ce=_0x12a789[_0x4b81bf(0xec)](_0x2259ab),{startColumn:_0x208146,endColumn:_0xe0cbd8}=_0x43eed9[_0x4b81bf(0x191)]['range'];if(_0x43eed9[_0x4b81bf(0x191)][_0x4b81bf(0x126)]===_0x2259ab['params'][_0x4b81bf(0xad)][_0x4b81bf(0x126)]){const _0x25ae80=new _0x3597fb(_0xe832ce[_0x4b81bf(0x191)][_0x4b81bf(0xad)][_0x4b81bf(0x9e)]),_0xcc6f68=_0x25ae80[_0x4b81bf(0xa7)](),{startColumn:_0x4a91ed,endColumn:_0x1bf80f}=_0xcc6f68;if(_0x4a91ed<=_0xe0cbd8&&_0x1bf80f>=_0x208146)return{'error':new Error(_0x4b81bf(0x1ec))};_0xe0cbd8<_0x4a91ed&&_0x25ae80[_0x4b81bf(0x11c)](_0x208146,_0xe0cbd8-_0x208146+0x1),_0xe832ce[_0x4b81bf(0x191)]['from'][_0x4b81bf(0x9e)]=_0x25ae80[_0x4b81bf(0xd9)]();}if(_0x43eed9['params'][_0x4b81bf(0x126)]===_0x2259ab[_0x4b81bf(0x191)]['to'][_0x4b81bf(0x126)]){const _0xacffee=new _0x3597fb(_0xe832ce[_0x4b81bf(0x191)]['to'][_0x4b81bf(0x9e)]),_0x503e00=_0xacffee[_0x4b81bf(0xa7)](),{startColumn:_0x5beb7f,endColumn:_0x325aca}=_0x503e00;if(_0x5beb7f<=_0xe0cbd8&&_0x325aca>=_0x208146)return{'error':new Error(_0x4b81bf(0x1ec))};_0xe0cbd8<_0x5beb7f&&_0xacffee[_0x4b81bf(0x11c)](_0x208146,_0xe0cbd8-_0x208146+0x1),_0xe832ce[_0x4b81bf(0x191)]['to'][_0x4b81bf(0x9e)]=_0xacffee[_0x4b81bf(0xd9)]();}return{'m1Prime':_0x20fed6,'m2Prime':_0xe832ce};}},Ns={'m1':_0x491a86['id'],'m2':_0x491a86['id'],'handler'(_0x2000ff,_0x1fa225){const _0x2c316b=_0x54481f,_0x5374cd={'m1Prime':_0x2000ff,'m2Prime':_0x1fa225};if(_0x2000ff[_0x2c316b(0x191)][_0x2c316b(0x15b)]!==_0x1fa225['params'][_0x2c316b(0x15b)]||_0x2000ff[_0x2c316b(0x191)][_0x2c316b(0x126)]!==_0x1fa225[_0x2c316b(0x191)][_0x2c316b(0x126)])return _0x5374cd;const _0x1b5ac1=_0x12a789[_0x2c316b(0xec)](_0x2000ff),_0xea4b61=_0x12a789[_0x2c316b(0xec)](_0x1fa225),_0x169b8f=_0x27f777(_0x2000ff[_0x2c316b(0x191)][_0x2c316b(0x1a6)],_0x1fa225[_0x2c316b(0x191)]['range']);if(_0x169b8f){const {step:_0x317feb,length:_0x1fda1e}=_0x169b8f;_0xea4b61[_0x2c316b(0x191)][_0x2c316b(0x1a6)][_0x2c316b(0x10c)]+=_0x317feb,_0xea4b61[_0x2c316b(0x191)][_0x2c316b(0x1a6)][_0x2c316b(0x1ee)]+=_0x317feb+(_0x1fda1e||0x0);}else _0xea4b61['id']=_0x411476['id'];const _0xa25104=_0x27f777(_0x1fa225[_0x2c316b(0x191)][_0x2c316b(0x1a6)],_0x2000ff[_0x2c316b(0x191)]['range']);if(_0xa25104){const {step:_0x1e9dce,length:_0x5b9e3a}=_0xa25104;_0x1b5ac1[_0x2c316b(0x191)][_0x2c316b(0x1a6)][_0x2c316b(0x10c)]+=_0x1e9dce,_0x1b5ac1[_0x2c316b(0x191)]['range'][_0x2c316b(0x1ee)]+=_0x1e9dce+(_0x5b9e3a||0x0);}else _0x1b5ac1['id']=_0x411476['id'];return{'m1Prime':_0x1b5ac1,'m2Prime':_0xea4b61};}},Ds={'m1':_0x491a86['id'],'m2':_0x180381['id'],'handler'(_0x21fcef,_0x2a0350){const _0x528d8e=_0x54481f,_0x17f013={'m1Prime':_0x21fcef,'m2Prime':_0x2a0350};if(_0x21fcef['params'][_0x528d8e(0x15b)]!==_0x2a0350[_0x528d8e(0x191)][_0x528d8e(0x15b)]||_0x21fcef['params'][_0x528d8e(0x126)]!==_0x2a0350[_0x528d8e(0x191)]['subUnitId'])return _0x17f013;const _0x2826d8=_0x12a789[_0x528d8e(0xec)](_0x21fcef),_0x3593bd=_0x12a789[_0x528d8e(0xec)](_0x2a0350),{ranges:_0x42e15e}=_0x3593bd['params'];return _0x42e15e[_0x528d8e(0x161)](_0x4b6c85=>{const _0x22074f=_0x528d8e,_0x5d7c63=_0x27f777(h(_0x21fcef['params']['range']),h(_0x4b6c85));return _0x5d7c63===null||_0x5d7c63[_0x22074f(0xbd)]!==0x0?!0x0:(_0x4b6c85[_0x22074f(0x10c)]+=_0x5d7c63[_0x22074f(0x1ba)],_0x4b6c85[_0x22074f(0x1ee)]+=_0x5d7c63[_0x22074f(0x1ba)],!0x1);})?{'error':new Error(_0x528d8e(0x1b4))}:{'m1Prime':_0x2826d8,'m2Prime':_0x3593bd};}},As={'m1':_0x491a86['id'],'m2':_0x3194c5['id'],'handler'(_0x232f61,_0x2653a9){const _0x11cb11=_0x54481f,_0x159d2d=_0x12a789[_0x11cb11(0xec)](_0x232f61),_0x4ea4bf=_0x12a789[_0x11cb11(0xec)](_0x2653a9);if(_0x232f61[_0x11cb11(0x191)][_0x11cb11(0x15b)]!==_0x2653a9[_0x11cb11(0x191)][_0x11cb11(0x15b)]||_0x232f61['params'][_0x11cb11(0x126)]!==_0x2653a9[_0x11cb11(0x191)][_0x11cb11(0x126)])return{'m1Prime':_0x159d2d,'m2Prime':_0x4ea4bf};const _0x173607=_0x4ea4bf[_0x11cb11(0x191)][_0x11cb11(0x1a9)][_0x11cb11(0x121)]((_0x49cca4,_0x5be2c6)=>{const _0x43db99=_0x11cb11,_0x4febaa=_0x159d2d[_0x43db99(0x191)][_0x43db99(0x1a6)],_0x1a2170=_0x4febaa[_0x43db99(0x1ee)]-_0x4febaa[_0x43db99(0x10c)]+0x1;let _0x1a8b26={..._0x5be2c6};return _0x4febaa['startColumn']>_0x5be2c6[_0x43db99(0x1ee)]?_0x1a8b26={..._0x5be2c6}:_0x4febaa[_0x43db99(0x10c)]>=_0x5be2c6[_0x43db99(0x10c)]&&_0x4febaa[_0x43db99(0x10c)]<=_0x5be2c6[_0x43db99(0x1ee)]&&_0x4febaa[_0x43db99(0x1ee)]>_0x5be2c6[_0x43db99(0x1ee)]?(_0x1a8b26['endColumn']=_0x4febaa[_0x43db99(0x10c)]-0x1,_0x4febaa['startColumn']===_0x5be2c6[_0x43db99(0x10c)]&&(_0x1a8b26=null)):_0x4febaa[_0x43db99(0x10c)]>_0x5be2c6[_0x43db99(0x10c)]&&_0x4febaa[_0x43db99(0x1ee)]<_0x5be2c6[_0x43db99(0x1ee)]?_0x1a8b26[_0x43db99(0x1ee)]=_0x5be2c6[_0x43db99(0x1ee)]-_0x1a2170:_0x4febaa[_0x43db99(0x10c)]<_0x5be2c6[_0x43db99(0x10c)]&&_0x4febaa[_0x43db99(0x1ee)]>=_0x5be2c6[_0x43db99(0x10c)]&&_0x4febaa[_0x43db99(0x1ee)]<=_0x5be2c6['endColumn']?(_0x1a8b26[_0x43db99(0x10c)]=_0x4febaa[_0x43db99(0x10c)],_0x1a8b26['endColumn']=_0x5be2c6[_0x43db99(0x1ee)]-_0x1a2170,_0x4febaa['endColumn']===_0x5be2c6[_0x43db99(0x1ee)]&&(_0x1a8b26=null)):_0x4febaa[_0x43db99(0x10c)]<=_0x5be2c6[_0x43db99(0x10c)]&&_0x4febaa[_0x43db99(0x1ee)]>=_0x5be2c6[_0x43db99(0x1ee)]?_0x1a8b26=null:_0x4febaa[_0x43db99(0x1ee)]<_0x5be2c6[_0x43db99(0x10c)]&&(_0x1a8b26[_0x43db99(0x10c)]=_0x5be2c6[_0x43db99(0x10c)]-_0x1a2170,_0x1a8b26[_0x43db99(0x1ee)]=_0x5be2c6[_0x43db99(0x1ee)]-_0x1a2170),_0x1a8b26&&!(_0x1a8b26[_0x43db99(0x11e)]===_0x1a8b26[_0x43db99(0xda)]&&_0x1a8b26[_0x43db99(0x10c)]===_0x1a8b26[_0x43db99(0x1ee)])&&_0x49cca4[_0x43db99(0x187)](_0x1a8b26),_0x49cca4;},[]);return _0x4ea4bf[_0x11cb11(0x191)][_0x11cb11(0x1a9)]=_0x173607,{'m1Prime':_0x159d2d,'m2Prime':_0x4ea4bf};}},Ts={'m1':_0x491a86['id'],'m2':_0x41be04['id'],'handler'(_0x21aa39,_0x434531){const _0x28ff92=_0x54481f,_0x38226c={'m1Prime':_0x21aa39,'m2Prime':_0x434531};if(_0x21aa39[_0x28ff92(0x191)]['unitId']!==_0x434531[_0x28ff92(0x191)][_0x28ff92(0x15b)]||_0x21aa39[_0x28ff92(0x191)][_0x28ff92(0x126)]!==_0x434531[_0x28ff92(0x191)][_0x28ff92(0x126)])return _0x38226c;const _0x4fc3e9=_0x27f777(h(_0x21aa39['params'][_0x28ff92(0x1a6)]),h(_0x434531['params'][_0x28ff92(0x1a6)]));if(!_0x4fc3e9)return{'m1Prime':_0x21aa39,'m2Prime':[]};const _0x38f7b3=_0x12a789[_0x28ff92(0xec)](_0x434531);return _0x38f7b3[_0x28ff92(0x191)][_0x28ff92(0x1a6)][_0x28ff92(0x10c)]+=_0x4fc3e9[_0x28ff92(0x1ba)],_0x38f7b3['params'][_0x28ff92(0x1a6)][_0x28ff92(0x1ee)]+=_0x4fc3e9[_0x28ff92(0x1ba)]+(_0x4fc3e9['length']||0x0),{'m1Prime':_0x21aa39,'m2Prime':_0x38f7b3};}},Ls={'m1':_0x491a86['id'],'m2':_0x2c204d['id'],'handler'(_0xfd6a5d,_0x4f46a0){const _0x26c6f1=_0x54481f,_0x58abae={'m1Prime':_0xfd6a5d,'m2Prime':_0x4f46a0};if(_0xfd6a5d['params']['unitId']!==_0x4f46a0[_0x26c6f1(0x191)][_0x26c6f1(0x15b)]||_0xfd6a5d[_0x26c6f1(0x191)]['subUnitId']!==_0x4f46a0['params'][_0x26c6f1(0x126)])return _0x58abae;const _0x3d05d4=_0x12a789['deepClone'](_0xfd6a5d),_0x4b1345=_0x12a789[_0x26c6f1(0xec)](_0x4f46a0),{columnData:_0x2b8e7a}=_0x4b1345[_0x26c6f1(0x191)];return _0x593d1d(_0xfd6a5d[_0x26c6f1(0x191)][_0x26c6f1(0x1a6)]['startColumn'],_0xfd6a5d[_0x26c6f1(0x191)][_0x26c6f1(0x1a6)][_0x26c6f1(0x1ee)]-_0xfd6a5d[_0x26c6f1(0x191)][_0x26c6f1(0x1a6)][_0x26c6f1(0x10c)]+0x1,_0x2b8e7a),{'m1Prime':_0x3d05d4,'m2Prime':_0x4b1345};}},ks={'m1':_0x491a86['id'],'m2':_0x3d7e7a['id'],'handler'(_0x5d188c,_0xf0e7c1){const _0x419511=_0x54481f,_0x236b08={'m1Prime':_0x5d188c,'m2Prime':_0xf0e7c1};if(_0x5d188c[_0x419511(0x191)][_0x419511(0x15b)]!==_0xf0e7c1[_0x419511(0x191)][_0x419511(0x15b)]||_0x5d188c[_0x419511(0x191)][_0x419511(0x126)]!==_0xf0e7c1[_0x419511(0x191)][_0x419511(0x126)])return _0x236b08;const _0x4574d5=_0x12a789[_0x419511(0xec)](_0x5d188c),_0x241f66=_0x12a789[_0x419511(0xec)](_0xf0e7c1),{ranges:_0x517347}=_0x241f66['params'];return _0x517347[_0x419511(0x147)](_0x17e06b=>{const _0x3c60b0=_0x419511,_0x533710=_0x27f777(h(_0x5d188c[_0x3c60b0(0x191)]['range']),_0x17e06b);_0x533710==null?_0x241f66['id']=_0x411476['id']:(_0x17e06b[_0x3c60b0(0x10c)]+=_0x533710[_0x3c60b0(0x1ba)],_0x17e06b[_0x3c60b0(0x1ee)]+=_0x533710[_0x3c60b0(0x1ba)]+_0x533710['length']);}),{'m1Prime':_0x4574d5,'m2Prime':_0x241f66};}},xs={'m1':_0x491a86['id'],'m2':_0x46f51d['id'],'handler'(_0x4f2950,_0x3f3f0d){const _0x57068d=_0x54481f,_0x494178={'m1Prime':_0x4f2950,'m2Prime':_0x3f3f0d};if(_0x4f2950[_0x57068d(0x191)][_0x57068d(0x15b)]!==_0x3f3f0d['params']['unitId']||_0x4f2950['params'][_0x57068d(0x126)]!==_0x3f3f0d['params'][_0x57068d(0x126)])return _0x494178;const _0x4eb571=_0x12a789['deepClone'](_0x4f2950),_0x2107fc=_0x12a789[_0x57068d(0xec)](_0x3f3f0d),{ranges:_0x2a61da}=_0x2107fc[_0x57068d(0x191)];return _0x2a61da[_0x57068d(0x147)](_0x31f18c=>{const _0x3f9d73=_0x57068d,_0x4542c7=_0x27f777(h(_0x4f2950['params'][_0x3f9d73(0x1a6)]),_0x31f18c);_0x4542c7==null?_0x2107fc['id']=_0x411476['id']:(_0x31f18c[_0x3f9d73(0x10c)]+=_0x4542c7[_0x3f9d73(0x1ba)],_0x31f18c[_0x3f9d73(0x1ee)]+=_0x4542c7[_0x3f9d73(0x1ba)]+_0x4542c7[_0x3f9d73(0xbd)]);}),{'m1Prime':_0x4eb571,'m2Prime':_0x2107fc};}},Hs={'m1':_0x491a86['id'],'m2':_0x30c2c8['id'],'handler'(_0x55abc4,_0x2c84a3){const _0x3f8ff0=_0x54481f,_0x59b0bc={'m1Prime':_0x55abc4,'m2Prime':_0x2c84a3};if(_0x55abc4[_0x3f8ff0(0x191)][_0x3f8ff0(0x15b)]!==_0x2c84a3['params']['unitId']||_0x55abc4[_0x3f8ff0(0x191)][_0x3f8ff0(0x126)]!==_0x2c84a3['params'][_0x3f8ff0(0x126)])return _0x59b0bc;const _0x53dd65=[_0x12a789[_0x3f8ff0(0xec)](_0x55abc4)],_0x485fa3=_0x12a789[_0x3f8ff0(0xec)](_0x2c84a3),{values:_0x372f7f}=_0x485fa3[_0x3f8ff0(0x191)],_0x34c71b=[];let _0x4d66c0=!0x1;for(const _0x33f09a in _0x372f7f){const _0x3c35f9=_0x372f7f[_0x33f09a];if(_0x34c71b['push'](..._0x3c35f9['ranges']),_0x3c35f9[_0x3f8ff0(0x1a9)][_0x3f8ff0(0x161)](_0x497daf=>{const _0x5b3570=_0x3f8ff0,_0x319f65=_0x27f777(h(_0x55abc4[_0x5b3570(0x191)][_0x5b3570(0x1a6)]),h(_0x497daf));return _0x319f65==null||_0x319f65[_0x5b3570(0xbd)]!==0x0?!0x0:(_0x319f65['step']!==0x0&&(_0x4d66c0=!0x0),_0x497daf['startColumn']+=_0x319f65[_0x5b3570(0x1ba)],_0x497daf['endColumn']+=_0x319f65['step'],!0x1);}))return{'error':new Error(_0x3f8ff0(0x1c5))};}if(_0x4d66c0){const _0x35f569={'id':_0x180381['id'],'params':{'unitId':_0x2c84a3[_0x3f8ff0(0x191)][_0x3f8ff0(0x15b)],'subUnitId':_0x2c84a3[_0x3f8ff0(0x191)][_0x3f8ff0(0x126)],'ranges':_0x34c71b}};_0x53dd65[_0x3f8ff0(0x187)](_0x35f569,_0x485fa3);}return{'m1Prime':_0x53dd65,'m2Prime':_0x485fa3};}},Fs={'m1':_0x491a86['id'],'m2':_0x59880b['id'],'handler'(_0x48350b,_0x2c1450){const _0x144328=_0x54481f,_0x17bddb={'m1Prime':_0x48350b,'m2Prime':_0x2c1450};if(_0x48350b[_0x144328(0x191)][_0x144328(0x15b)]!==_0x2c1450[_0x144328(0x191)][_0x144328(0x15b)]||_0x48350b['params'][_0x144328(0x126)]!==_0x2c1450['params']['subUnitId'])return _0x17bddb;const _0x3ec902=[_0x12a789[_0x144328(0xec)](_0x48350b)],_0x4b6e87=_0x12a789[_0x144328(0xec)](_0x2c1450),_0x170cdc=new _0x3597fb(_0x4b6e87[_0x144328(0x191)]['cellValue']),_0x7cad58=_0x170cdc[_0x144328(0xa7)](),_0x1084a2=_0x48350b[_0x144328(0x191)][_0x144328(0x1a6)],_0x42dd8b=_0x1084a2[_0x144328(0x1ee)]-_0x1084a2[_0x144328(0x10c)]+0x1;if(_0x4b6e87['params']['cellValue']&&_0x1084a2[_0x144328(0x1ee)]<_0x7cad58[_0x144328(0x10c)])Rt(_0x4b6e87[_0x144328(0x191)][_0x144328(0xaf)],_0x7cad58[_0x144328(0x10c)],_0x7cad58['endColumn']-_0x7cad58['startColumn']+0x1,-_0x42dd8b);else{if(_0x1084a2[_0x144328(0x10c)]<=_0x7cad58[_0x144328(0x1ee)])return{'error':new Error(_0x144328(0x173))};}const _0x4ca195=new _0x3597fb();let _0x38b276=!0x1,_0x4e2df8=!0x1;if(_0x170cdc[_0x144328(0x1bf)]((_0x461b6a,_0x3f0cd1,_0x3b50d7)=>{const _0x1e672a=_0x144328;if(_0x3b50d7&&_0x3b50d7['f']){const _0x4f15ee=_0x3b50d7['f'];let _0x920452=!0x1;const _0x4fb09d=dt(_0x48350b[_0x1e672a(0x191)]['unitId'],_0x48350b[_0x1e672a(0x191)][_0x1e672a(0x126)],_0x4f15ee,_0x303d23=>{const _0x1211e7=_0x1e672a,_0x28c6d3=_0x27f777(h(_0x48350b[_0x1211e7(0x191)][_0x1211e7(0x1a6)]),h(_0x303d23));return _0x28c6d3===null?(_0x38b276=!0x0,_0x303d23):((_0x28c6d3[_0x1211e7(0x1ba)]!==0x0||_0x28c6d3[_0x1211e7(0xbd)]!==0x0)&&(_0x920452=!0x0,_0x303d23[_0x1211e7(0x10c)]+=_0x28c6d3[_0x1211e7(0x1ba)],_0x303d23[_0x1211e7(0x1ee)]+=_0x28c6d3[_0x1211e7(0x1ba)]+_0x28c6d3['length']),_0x303d23);});_0x920452&&(_0x4e2df8=!0x0,_0x3b50d7['f']=_0x4fb09d,_0x4ca195[_0x1e672a(0x1a3)](_0x461b6a,_0x3f0cd1,{..._0x3b50d7}));}}),_0x38b276)return{'error':new Error('remove\x20cols\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20column')};if(_0x4e2df8){const _0x3f7b7c={'id':_0x59880b['id'],'params':{'unitId':_0x2c1450['params'][_0x144328(0x15b)],'subUnitId':_0x2c1450['params']['subUnitId'],'cellValue':_0x4ca195[_0x144328(0xd9)]()}};_0x3ec902[_0x144328(0x187)](_0x3f7b7c);}return{'m1Prime':_0x3ec902,'m2Prime':_0x4b6e87};}},Bs={'m1':_0x491a86['id'],'m2':_0x22c7b4['id'],'handler'(_0x5803b1,_0x298796){const _0x44c7a2=_0x54481f,_0x5783b8={'m1Prime':[],'m2Prime':[]};if(_0x5803b1[_0x44c7a2(0x191)][_0x44c7a2(0x15b)]!==_0x298796[_0x44c7a2(0x191)][_0x44c7a2(0x15b)]||_0x5803b1['params'][_0x44c7a2(0x126)]!==_0x298796['params'][_0x44c7a2(0x126)])return _0x5783b8;const _0x23c620=_0x12a789['deepClone'](_0x298796);let _0x3e1649=!0x1;return _0x23c620['params'][_0x44c7a2(0x11d)][_0x44c7a2(0x147)](_0xc13f5a=>{const _0x35b931=_0x44c7a2,{range:_0x5166ba,primary:_0xf75c61}=_0xc13f5a,_0x2efb05=_0x27f777(h(_0x5803b1['params'][_0x35b931(0x1a6)]),h(_0x5166ba));if(_0x2efb05!=null&&(_0x2efb05[_0x35b931(0xbd)]||_0x2efb05[_0x35b931(0x1ba)])){if(_0x5166ba[_0x35b931(0x10c)]+=_0x2efb05[_0x35b931(0x1ba)],_0x5166ba['endColumn']+=_0x2efb05[_0x35b931(0x1ba)]+(_0x2efb05[_0x35b931(0xbd)]||0x0),_0xf75c61){const _0x2a2c73=_0x27f777(h(_0x5803b1[_0x35b931(0x191)][_0x35b931(0x1a6)]),h(_0xf75c61));if(_0x2a2c73==null){_0xf75c61['startColumn']=_0x5166ba[_0x35b931(0x10c)],_0xf75c61[_0x35b931(0x1ee)]=_0x5166ba[_0x35b931(0x10c)],_0xf75c61[_0x35b931(0x13e)]=_0x5166ba['startColumn'];return;}(_0x2a2c73[_0x35b931(0xbd)]||_0x2a2c73[_0x35b931(0x1ba)])&&(_0xf75c61[_0x35b931(0x10c)]+=_0x2a2c73[_0x35b931(0x1ba)],_0xf75c61[_0x35b931(0x1ee)]+=_0x2a2c73['step'],_0xf75c61[_0x35b931(0x13e)]+=_0x2a2c73[_0x35b931(0x1ba)]);}_0x3e1649=!0x0;}}),_0x3e1649&&_0x5783b8['m2Prime'][_0x44c7a2(0x187)](_0x23c620),_0x5783b8;}},Gs={'m1':_0x491a86['id'],'m2':_0x254b23['id'],'handler'(_0xcf2568,_0x34573b){const _0x180830=_0x54481f,_0x413546={'m1Prime':_0xcf2568,'m2Prime':_0x34573b};if(_0xcf2568[_0x180830(0x191)]['unitId']!==_0x34573b[_0x180830(0x191)]['unitId']||_0xcf2568[_0x180830(0x191)][_0x180830(0x126)]!==_0x34573b['params'][_0x180830(0x126)])return _0x413546;const _0x421705=_0x12a789['deepClone'](_0xcf2568),_0x27aa19=_0x12a789[_0x180830(0xec)](_0x34573b),_0x15ab79=Me({'start':_0xcf2568[_0x180830(0x191)]['range'][_0x180830(0x10c)],'end':_0xcf2568[_0x180830(0x191)][_0x180830(0x1a6)][_0x180830(0x1ee)]},{'start':_0x34573b[_0x180830(0x191)]['col'],'end':_0x34573b[_0x180830(0x191)][_0x180830(0x164)]}),_0x153988=_0x12a789[_0x180830(0xec)](_0x34573b);return _0x153988['params'][_0x180830(0x160)]=null,_0x15ab79===null?{'m1Prime':[_0x421705,_0x153988],'m2Prime':[]}:_0x27aa19[_0x180830(0x191)][_0x180830(0x164)]===_0x15ab79[_0x180830(0x22f)]?_0x413546:(_0x27aa19['params'][_0x180830(0x164)]=_0x15ab79[_0x180830(0x22f)],_0x27aa19[_0x180830(0x191)]['criteria']&&(_0x27aa19[_0x180830(0x191)][_0x180830(0x160)][_0x180830(0xa6)]=_0x15ab79[_0x180830(0x22f)]),{'m1Prime':[_0x153988,_0x27aa19,_0x421705],'m2Prime':[_0x27aa19]});}},js={'m1':_0x491a86['id'],'m2':_0x4a261b['id'],'handler'(_0xd19373,_0x437a4b){const _0x138042=_0x54481f,_0x26ded9={'m1Prime':[_0xd19373],'m2Prime':[_0x437a4b]};if(_0xd19373[_0x138042(0x191)][_0x138042(0x15b)]!==_0x437a4b[_0x138042(0x191)][_0x138042(0x15b)]||_0xd19373[_0x138042(0x191)][_0x138042(0x126)]!==_0x437a4b[_0x138042(0x191)]['subUnitId'])return _0x26ded9;const _0x3eb419=_0x12a789[_0x138042(0xec)](_0xd19373),_0x8b56d8=_0x12a789[_0x138042(0xec)](_0x437a4b),_0x2ed97d=Me({'start':_0xd19373[_0x138042(0x191)][_0x138042(0x1a6)]['startColumn'],'end':_0xd19373[_0x138042(0x191)][_0x138042(0x1a6)]['endColumn']},{'start':_0x437a4b[_0x138042(0x191)][_0x138042(0x1a6)]['startColumn'],'end':_0x437a4b[_0x138042(0x191)][_0x138042(0x1a6)]['endColumn']});return _0x2ed97d===null?{'m1Prime':[_0x3eb419,{'id':_0x431d63['id'],'params':{'unitId':_0x437a4b[_0x138042(0x191)]['unitId'],'subUnitId':_0x437a4b[_0x138042(0x191)][_0x138042(0x15b)]}}],'m2Prime':[]}:(_0x8b56d8[_0x138042(0x191)][_0x138042(0x1a6)][_0x138042(0x10c)]=_0x2ed97d[_0x138042(0x22f)],_0x8b56d8[_0x138042(0x191)][_0x138042(0x1a6)][_0x138042(0x1ee)]=_0x2ed97d[_0x138042(0xd6)],{'m1Prime':[_0x8b56d8,_0x3eb419],'m2Prime':[_0x8b56d8]});}},$s={'m1':_0x491a86['id'],'m2':_0x2d1a15['id'],'handler'(_0x5c6aa4,_0x29e727){const _0x34205e=_0x54481f,_0x3b5e42={'m1Prime':_0x5c6aa4,'m2Prime':_0x29e727};if(_0x5c6aa4[_0x34205e(0x191)][_0x34205e(0x15b)]!==_0x29e727['params'][_0x34205e(0x15b)]||_0x5c6aa4[_0x34205e(0x191)][_0x34205e(0x126)]!==_0x29e727[_0x34205e(0x191)][_0x34205e(0x126)])return _0x3b5e42;const _0xa043d0=_0x12a789['deepClone'](_0x5c6aa4),_0x2e30db=_0x12a789['deepClone'](_0x29e727),{ranges:_0x3170e7,colWidth:_0x32a03d}=_0x2e30db['params'];return _0x3170e7[_0x34205e(0x147)](_0x26fc92=>{const _0x47d0ca=_0x34205e,_0x30b15f=_0x27f777(h(_0x5c6aa4[_0x47d0ca(0x191)][_0x47d0ca(0x1a6)]),_0x26fc92);_0x30b15f==null?_0x2e30db['id']=_0x411476['id']:(_0x26fc92['startColumn']+=_0x30b15f[_0x47d0ca(0x1ba)],_0x26fc92[_0x47d0ca(0x1ee)]+=_0x30b15f[_0x47d0ca(0x1ba)]+_0x30b15f['length']);}),typeof _0x32a03d!=_0x34205e(0x13c)&&_0x593d1d(_0x5c6aa4[_0x34205e(0x191)][_0x34205e(0x1a6)][_0x34205e(0x10c)],_0x5c6aa4[_0x34205e(0x191)][_0x34205e(0x1a6)]['endColumn']-_0x5c6aa4[_0x34205e(0x191)]['range'][_0x34205e(0x10c)]+0x1,_0x32a03d),{'m1Prime':_0xa043d0,'m2Prime':_0x2e30db};}},Ys={'m1':_0x491a86['id'],'m2':_0x44bb69['id'],'handler':(_0x36e210,_0x163921)=>{const _0x185a2a=_0x54481f,_0x1adb9a={'m1Prime':_0x36e210,'m2Prime':_0x163921};if(_0x36e210[_0x185a2a(0x191)]['unitId']!==_0x163921[_0x185a2a(0x191)]['unitId']||_0x36e210[_0x185a2a(0x191)][_0x185a2a(0x126)]!==_0x163921[_0x185a2a(0x191)][_0x185a2a(0x126)])return _0x1adb9a;const _0x5ba96f={'id':_0xd6d1c8['id'],'params':{'unitId':_0x36e210['params'][_0x185a2a(0x15b)],'subUnitId':_0x36e210[_0x185a2a(0x191)]['subUnitId'],'range':_0x36e210[_0x185a2a(0x191)]['range']}},_0xe9a478=wt(_0x163921,_0x5ba96f);return{'m1Prime':[_0x36e210,..._0xe9a478],'m2Prime':[_0x163921,..._0xe9a478]};}},Js={'m1':_0x491a86['id'],'m2':_0x5ad83d['id'],'handler':(_0x21c053,_0x5ad73c)=>{const _0x40a18d=_0x54481f,_0x3d8078={'m1Prime':_0x21c053,'m2Prime':_0x5ad73c};if(_0x21c053['params'][_0x40a18d(0x15b)]!==_0x5ad73c[_0x40a18d(0x191)][_0x40a18d(0x15b)]||_0x5ad73c[_0x40a18d(0x191)]['subUnitId']!==_0x21c053[_0x40a18d(0x191)]['subUnitId'])return _0x3d8078;const _0xf47230={'id':_0xd6d1c8['id'],'params':{'range':_0x21c053['params'][_0x40a18d(0x1a6)]}},_0x138f30=Ct(_0x5ad73c,_0xf47230);return{'m1Prime':[_0x21c053,..._0x138f30],'m2Prime':[_0x5ad73c,..._0x138f30]};}},Xs={'m1':_0x42cad4['id'],'m2':_0x42cad4['id'],'handler':(_0x1977e7,_0x291dc2)=>{const _0x541b03=_0x54481f,_0x1e40d7={'m1Prime':_0x1977e7,'m2Prime':_0x291dc2};return _0x1977e7[_0x541b03(0x191)][_0x541b03(0x15b)]===_0x291dc2[_0x541b03(0x191)][_0x541b03(0x15b)]&&_0x1977e7['params'][_0x541b03(0x126)]===_0x291dc2['params'][_0x541b03(0x126)]&&_0x1977e7[_0x541b03(0x191)][_0x541b03(0x1bb)]===_0x291dc2[_0x541b03(0x191)][_0x541b03(0x1bb)]?{'m1Prime':[],'m2Prime':[]}:_0x1e40d7;}},Ks={'m1':_0x1b1d01['id'],'m2':_0x1b1d01['id'],'handler':(_0x240380,_0x31de90)=>{const _0x2bf062=_0x54481f,_0x513ef5=_0x240380[_0x2bf062(0x191)],_0x558ae6=_0x31de90[_0x2bf062(0x191)];return _0x513ef5[_0x2bf062(0x15b)]===_0x558ae6['unitId']&&_0x513ef5['subUnitId']===_0x558ae6['subUnitId']&&_0x513ef5['id']===_0x558ae6['id']?{'m2Prime':[],'m1Prime':[]}:{'m1Prime':_0x240380,'m2Prime':_0x31de90};}},zs={'m1':_0x180381['id'],'m2':_0x180381['id'],'handler'(_0x173340,_0x35e010){const _0x3533f8=_0x54481f;if(_0x173340[_0x3533f8(0x191)][_0x3533f8(0x15b)]!==_0x35e010[_0x3533f8(0x191)]['unitId']||_0x173340[_0x3533f8(0x191)][_0x3533f8(0x126)]!==_0x35e010[_0x3533f8(0x191)]['subUnitId'])return{'m1Prime':_0x173340,'m2Prime':_0x35e010};const _0x4e8d75=_0x12a789[_0x3533f8(0xec)](_0x173340),_0x23506a=_0x12a789[_0x3533f8(0xec)](_0x35e010),_0x6cc414=[],_0x3a7271=_0x23506a[_0x3533f8(0x191)][_0x3533f8(0x1a9)];return _0x4e8d75[_0x3533f8(0x191)][_0x3533f8(0x1a9)][_0x3533f8(0x147)](_0x28c24a=>{const _0x45e43f=_0x3533f8,_0x1292b6=ee(_0x28c24a,_0x3a7271);_0x1292b6[_0x45e43f(0xbd)]>0x0&&_0x6cc414[_0x45e43f(0x187)](..._0x1292b6);}),_0x4e8d75[_0x3533f8(0x191)][_0x3533f8(0x1a9)]=_0x6cc414,{'m1Prime':_0x173340,'m2Prime':_0x35e010};}},qs={'m1':_0x180381['id'],'m2':_0x30c2c8['id'],'handler'(_0x40f1bc,_0x269a20){const _0x4f844e=_0x54481f;if(_0x40f1bc[_0x4f844e(0x191)][_0x4f844e(0x15b)]!==_0x269a20[_0x4f844e(0x191)][_0x4f844e(0x15b)]||_0x40f1bc[_0x4f844e(0x191)]['subUnitId']!==_0x269a20['params'][_0x4f844e(0x126)])return{'m1Prime':_0x40f1bc,'m2Prime':_0x269a20};const _0x345057=_0x12a789[_0x4f844e(0xec)](_0x40f1bc),_0x3acc0e=_0x12a789[_0x4f844e(0xec)](_0x269a20),_0x1c9fa4=[],_0x464138=Object[_0x4f844e(0xd4)](_0x3acc0e['params'][_0x4f844e(0xd4)])[_0x4f844e(0x21d)](_0x52067a=>_0x52067a[_0x4f844e(0x1a9)])[_0x4f844e(0xe4)]();return _0x345057['params'][_0x4f844e(0x1a9)][_0x4f844e(0x147)](_0x1c9b48=>{const _0x4912b6=_0x4f844e,_0x18fde0=ee(_0x1c9b48,_0x464138);_0x18fde0[_0x4912b6(0xbd)]>0x0&&_0x1c9fa4[_0x4912b6(0x187)](..._0x18fde0);}),_0x345057[_0x4f844e(0x191)][_0x4f844e(0x1a9)]=_0x1c9fa4,{'m1Prime':_0x345057,'m2Prime':_0x3acc0e};}},Zs={'m1':_0x116e41['id'],'m2':_0x41a8ef['id'],'handler':(_0x1884e8,_0x2bcb91)=>{const _0xbf0327=_0x54481f,_0x25108f={'m1Prime':_0x1884e8,'m2Prime':_0x2bcb91};if(_0x1884e8[_0xbf0327(0x191)][_0xbf0327(0x15b)]!==_0x2bcb91[_0xbf0327(0x191)][_0xbf0327(0x15b)]||_0x1884e8[_0xbf0327(0x191)][_0xbf0327(0x126)]!==_0x2bcb91[_0xbf0327(0x191)][_0xbf0327(0x126)])return _0x25108f;const _0x2cbe29={'id':_0x348f36['id'],'params':{'unitId':_0x1884e8['params'][_0xbf0327(0x15b)],'subUnitId':_0x1884e8['params'][_0xbf0327(0x126)],'range':_0x1884e8['params']['range']}},_0x564d5f=It(_0x2bcb91,_0x2cbe29);return{'m1Prime':[_0x1884e8,..._0x564d5f],'m2Prime':[_0x2bcb91,..._0x564d5f]};}},Qs={'m1':_0x116e41['id'],'m2':_0x3273be['id'],'handler'(_0x522b16,_0x277f44){const _0x4e3686=_0x54481f,_0x1296c9={'m1Prime':_0x522b16,'m2Prime':_0x277f44};if(_0x522b16[_0x4e3686(0x191)]['unitId']!==_0x277f44[_0x4e3686(0x191)][_0x4e3686(0x15b)]||_0x522b16[_0x4e3686(0x191)][_0x4e3686(0x126)]!==_0x277f44['params']['subUnitId'])return _0x1296c9;const _0x2e374a={'id':_0x348f36['id'],'params':{'range':_0x522b16[_0x4e3686(0x191)][_0x4e3686(0x1a6)]}},_0x2d7a1e=Tt(_0x277f44,_0x2e374a);return{'m1Prime':[_0x522b16,..._0x2d7a1e],'m2Prime':[_0x277f44,..._0x2d7a1e]};}},to={'m1':_0x116e41['id'],'m2':_0x5504b0['id'],'handler'(_0x565b8f,_0x4d0c1e){const _0x1125ca=_0x54481f,_0x322779=dr[_0x1125ca(0x12a)](_0x4d0c1e,_0x565b8f);return at(_0x322779)?{'m1Prime':_0x322779['m2Prime'],'m2Prime':_0x322779['m1Prime']}:_0x322779;}},eo={'m1':_0x116e41['id'],'m2':_0xeb63e6['id'],'handler'(_0x414ee0,_0x528c5){const _0x251fc5=_0x54481f,_0x538700={'m1Prime':_0x414ee0,'m2Prime':_0x528c5};if(_0x414ee0[_0x251fc5(0x191)][_0x251fc5(0x15b)]!==_0x528c5[_0x251fc5(0x191)][_0x251fc5(0x15b)]||_0x414ee0[_0x251fc5(0x191)][_0x251fc5(0x126)]!==_0x528c5[_0x251fc5(0x191)]['from']['subUnitId']&&_0x414ee0[_0x251fc5(0x191)][_0x251fc5(0x126)]!==_0x528c5['params']['to'][_0x251fc5(0x126)])return _0x538700;const _0x1a5cac=_0x12a789[_0x251fc5(0xec)](_0x414ee0),_0x4216db=_0x12a789[_0x251fc5(0xec)](_0x528c5),{startRow:_0x94f36b,endRow:_0x580c37}=_0x414ee0['params'][_0x251fc5(0x1a6)];if(_0x414ee0[_0x251fc5(0x191)][_0x251fc5(0x126)]===_0x528c5[_0x251fc5(0x191)][_0x251fc5(0xad)][_0x251fc5(0x126)]){const _0x3335bc=new _0x3597fb(_0x4216db['params']['from']['value']),_0x2256f8=_0x3335bc[_0x251fc5(0xa7)](),{startRow:_0x65ce9c,endRow:_0x2936e}=_0x2256f8;if(_0x65ce9c<=_0x580c37&&_0x2936e>=_0x94f36b)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x580c37<_0x65ce9c&&_0x3335bc[_0x251fc5(0x1af)](_0x94f36b,_0x580c37-_0x94f36b+0x1),_0x4216db[_0x251fc5(0x191)][_0x251fc5(0xad)][_0x251fc5(0x9e)]=_0x3335bc[_0x251fc5(0xd9)]();}if(_0x414ee0['params'][_0x251fc5(0x126)]===_0x528c5[_0x251fc5(0x191)]['to'][_0x251fc5(0x126)]){const _0x12e416=new _0x3597fb(_0x4216db[_0x251fc5(0x191)]['to']['value']),_0x689ff6=_0x12e416[_0x251fc5(0xa7)](),{startRow:_0x23dc67,endRow:_0x418650}=_0x689ff6;if(_0x23dc67<=_0x580c37&&_0x418650>=_0x94f36b)return{'error':new Error('Remove-cols\x20has\x20conflicts\x20with\x20move-range')};_0x580c37<_0x23dc67&&_0x12e416['removeRows'](_0x94f36b,_0x580c37-_0x94f36b+0x1),_0x4216db[_0x251fc5(0x191)]['to'][_0x251fc5(0x9e)]=_0x12e416[_0x251fc5(0xd9)]();}return{'m1Prime':_0x1a5cac,'m2Prime':_0x4216db};}},ro={'m1':_0x116e41['id'],'m2':_0xfa530e['id'],'handler'(_0x4250ea,_0x3b925b){const _0x2f22b6=_0x54481f,_0x78f1fe={'m1Prime':_0x4250ea,'m2Prime':_0x3b925b};if(_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x15b)]!==_0x3b925b[_0x2f22b6(0x191)]['unitId']||_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x126)]!==_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x126)])return _0x78f1fe;const _0xe20278=_0x12a789[_0x2f22b6(0xec)](_0x4250ea),_0x23b19f=_0x12a789[_0x2f22b6(0xec)](_0x3b925b);if(_0x4250ea['params'][_0x2f22b6(0x1a6)]['startRow']<=_0x3b925b['params'][_0x2f22b6(0x9d)][_0x2f22b6(0xda)]&&_0x4250ea[_0x2f22b6(0x191)]['range'][_0x2f22b6(0xda)]>=_0x3b925b[_0x2f22b6(0x191)]['sourceRange'][_0x2f22b6(0x11e)]||_0x4250ea[_0x2f22b6(0x191)]['range']['startRow']<=_0x3b925b['params']['targetRange'][_0x2f22b6(0xda)]&&_0x4250ea[_0x2f22b6(0x191)]['range'][_0x2f22b6(0xda)]>=_0x3b925b[_0x2f22b6(0x191)]['targetRange'][_0x2f22b6(0x11e)])return{'error':new Error('remove\x20row\x20is\x20conflict\x20with\x20move\x20row')};const _0x339e1f=_0x27f777(h(_0x425bb4(_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x1a6)])),h(_0x425bb4(_0x3b925b[_0x2f22b6(0x191)]['sourceRange']))),_0x14131f=_0x27f777(h(_0x425bb4(_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x1a6)])),h(_0x425bb4(_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x12c)])));_0x339e1f&&_0x14131f?(_0x23b19f[_0x2f22b6(0x191)]['sourceRange'][_0x2f22b6(0x11e)]+=_0x339e1f[_0x2f22b6(0x1ba)],_0x23b19f[_0x2f22b6(0x191)][_0x2f22b6(0x9d)][_0x2f22b6(0xda)]+=_0x339e1f[_0x2f22b6(0x1ba)]+(_0x339e1f['length']||0x0),_0x23b19f[_0x2f22b6(0x191)][_0x2f22b6(0x12c)][_0x2f22b6(0x11e)]+=_0x14131f[_0x2f22b6(0x1ba)],_0x23b19f[_0x2f22b6(0x191)][_0x2f22b6(0x12c)][_0x2f22b6(0xda)]+=_0x14131f[_0x2f22b6(0x1ba)]+(_0x14131f['length']||0x0)):_0x23b19f['id']=_0x411476['id'];const _0x4c602f=_0x56462a({'start':_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x9d)]['startRow'],'end':_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x9d)][_0x2f22b6(0xda)]},{'start':_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x12c)]['startRow'],'end':_0x3b925b[_0x2f22b6(0x191)][_0x2f22b6(0x12c)][_0x2f22b6(0xda)]},{'start':_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x1a6)][_0x2f22b6(0x11e)],'end':_0x4250ea[_0x2f22b6(0x191)][_0x2f22b6(0x1a6)]['endRow']});if(_0x4c602f){const {step:_0x879c92,length:_0x4a51ab}=_0x4c602f;_0xe20278[_0x2f22b6(0x191)][_0x2f22b6(0x1a6)][_0x2f22b6(0x11e)]+=_0x879c92,_0xe20278[_0x2f22b6(0x191)]['range']['endRow']+=_0x879c92+(_0x4a51ab||0x0);}else _0xe20278['id']=_0x411476['id'];return{'m1Prime':_0xe20278,'m2Prime':_0x23b19f};}},no={'m1':_0x116e41['id'],'m2':_0x180381['id'],'handler'(_0x21c41e,_0x1a1531){const _0x339bfb=_0x54481f,_0x3540e2={'m1Prime':_0x21c41e,'m2Prime':_0x1a1531};if(_0x21c41e[_0x339bfb(0x191)][_0x339bfb(0x15b)]!==_0x1a1531[_0x339bfb(0x191)][_0x339bfb(0x15b)]||_0x21c41e[_0x339bfb(0x191)][_0x339bfb(0x126)]!==_0x1a1531[_0x339bfb(0x191)][_0x339bfb(0x126)])return _0x3540e2;const _0x3be368=_0x12a789[_0x339bfb(0xec)](_0x21c41e),_0x55101f=_0x12a789['deepClone'](_0x1a1531),{ranges:_0x2f73dd}=_0x55101f['params'];return _0x2f73dd[_0x339bfb(0x161)](_0x385f65=>{const _0x319e7d=_0x339bfb,_0x1064df=_0x27f777(h(_0x425bb4(_0x21c41e[_0x319e7d(0x191)][_0x319e7d(0x1a6)])),h(_0x425bb4(_0x385f65)));return _0x1064df===null||_0x1064df[_0x319e7d(0xbd)]!==0x0?!0x0:(_0x385f65[_0x319e7d(0x11e)]+=_0x1064df['step'],_0x385f65[_0x319e7d(0xda)]+=_0x1064df['step'],!0x1);})?{'error':new Error(_0x339bfb(0x1b8))}:{'m1Prime':_0x3be368,'m2Prime':_0x55101f};}},ao={'m1':_0x116e41['id'],'m2':_0x116e41['id'],'handler'(_0x5b14c0,_0x331bc4){const _0x2e8ac=_0x54481f,_0x2136eb={'m1Prime':_0x5b14c0,'m2Prime':_0x331bc4};if(_0x5b14c0[_0x2e8ac(0x191)][_0x2e8ac(0x15b)]!==_0x331bc4[_0x2e8ac(0x191)][_0x2e8ac(0x15b)]||_0x5b14c0[_0x2e8ac(0x191)][_0x2e8ac(0x126)]!==_0x331bc4[_0x2e8ac(0x191)][_0x2e8ac(0x126)])return _0x2136eb;const _0x26b00a=_0x12a789[_0x2e8ac(0xec)](_0x5b14c0),_0x1a50e7=_0x12a789[_0x2e8ac(0xec)](_0x331bc4),_0x4eb5ab=_0x27f777(h(_0x425bb4(_0x5b14c0[_0x2e8ac(0x191)]['range'])),h(_0x425bb4(_0x331bc4['params'][_0x2e8ac(0x1a6)])));if(_0x4eb5ab){const {step:_0x387230,length:_0x287358}=_0x4eb5ab;_0x1a50e7['params'][_0x2e8ac(0x1a6)][_0x2e8ac(0x11e)]+=_0x387230,_0x1a50e7[_0x2e8ac(0x191)][_0x2e8ac(0x1a6)]['endRow']+=_0x387230+(_0x287358||0x0);}else _0x1a50e7['id']=_0x411476['id'];const _0x547ada=_0x27f777(h(_0x425bb4(_0x331bc4['params'][_0x2e8ac(0x1a6)])),h(_0x425bb4(_0x5b14c0[_0x2e8ac(0x191)][_0x2e8ac(0x1a6)])));if(_0x547ada){const {step:_0x441e4b,length:_0x422e71}=_0x547ada;_0x26b00a['params'][_0x2e8ac(0x1a6)]['startRow']+=_0x441e4b,_0x26b00a[_0x2e8ac(0x191)][_0x2e8ac(0x1a6)][_0x2e8ac(0xda)]+=_0x441e4b+(_0x422e71||0x0);}else _0x26b00a['id']=_0x411476['id'];return{'m1Prime':_0x26b00a,'m2Prime':_0x1a50e7};}},so={'m1':_0x116e41['id'],'m2':_0x3194c5['id'],'handler'(_0x4e41a9,_0x19e246){const _0x410d49=_0x54481f,_0x335ec6=_0x12a789['deepClone'](_0x4e41a9),_0x172860=_0x12a789[_0x410d49(0xec)](_0x19e246);if(_0x4e41a9['params'][_0x410d49(0x15b)]!==_0x19e246[_0x410d49(0x191)][_0x410d49(0x15b)]||_0x4e41a9[_0x410d49(0x191)]['subUnitId']!==_0x19e246[_0x410d49(0x191)][_0x410d49(0x126)])return{'m1Prime':_0x335ec6,'m2Prime':_0x172860};const _0x2f8a4f=_0x172860[_0x410d49(0x191)][_0x410d49(0x1a9)]['reduce']((_0x27ce04,_0x29b07e)=>{const _0x29223e=_0x410d49,_0x9ede0d=_0x335ec6['params'][_0x29223e(0x1a6)],_0x41f78a=_0x9ede0d['endRow']-_0x9ede0d['startRow']+0x1;let _0x19b843={..._0x29b07e};return _0x9ede0d['startRow']>_0x29b07e['endRow']?_0x19b843={..._0x29b07e}:_0x9ede0d[_0x29223e(0x11e)]>=_0x29b07e['startRow']&&_0x9ede0d[_0x29223e(0x11e)]<=_0x29b07e['endRow']&&_0x9ede0d[_0x29223e(0xda)]>_0x29b07e[_0x29223e(0xda)]?(_0x19b843[_0x29223e(0xda)]=_0x9ede0d[_0x29223e(0x11e)]-0x1,_0x9ede0d[_0x29223e(0x11e)]===_0x29b07e[_0x29223e(0x11e)]&&(_0x19b843=null)):_0x9ede0d[_0x29223e(0x11e)]>_0x29b07e[_0x29223e(0x11e)]&&_0x9ede0d[_0x29223e(0xda)]<_0x29b07e['endRow']?_0x19b843['endRow']=_0x29b07e[_0x29223e(0xda)]-_0x41f78a:_0x9ede0d['startRow']<_0x29b07e[_0x29223e(0x11e)]&&_0x9ede0d[_0x29223e(0xda)]>=_0x29b07e[_0x29223e(0x11e)]&&_0x9ede0d[_0x29223e(0xda)]<=_0x29b07e[_0x29223e(0xda)]?(_0x19b843[_0x29223e(0x11e)]=_0x9ede0d['startRow'],_0x19b843[_0x29223e(0xda)]=_0x29b07e[_0x29223e(0xda)]-_0x41f78a,_0x9ede0d[_0x29223e(0xda)]===_0x29b07e['endRow']&&(_0x19b843=null)):_0x9ede0d[_0x29223e(0x11e)]<=_0x29b07e[_0x29223e(0x11e)]&&_0x9ede0d[_0x29223e(0xda)]>=_0x29b07e[_0x29223e(0xda)]?_0x19b843=null:_0x9ede0d[_0x29223e(0xda)]<_0x29b07e[_0x29223e(0x11e)]&&(_0x19b843[_0x29223e(0x11e)]=_0x29b07e[_0x29223e(0x11e)]-_0x41f78a,_0x19b843[_0x29223e(0xda)]=_0x29b07e[_0x29223e(0xda)]-_0x41f78a),_0x19b843&&!(_0x19b843[_0x29223e(0x11e)]===_0x19b843[_0x29223e(0xda)]&&_0x19b843[_0x29223e(0x10c)]===_0x19b843[_0x29223e(0x1ee)])&&_0x27ce04[_0x29223e(0x187)](_0x19b843),_0x27ce04;},[]);return _0x172860[_0x410d49(0x191)][_0x410d49(0x1a9)]=_0x2f8a4f,{'m1Prime':_0x335ec6,'m2Prime':_0x172860};}},oo={'m1':_0x116e41['id'],'m2':_0x41be04['id'],'handler'(_0x33b3b6,_0x4d2fbe){const _0x33c142=_0x54481f,_0x750407={'m1Prime':_0x33b3b6,'m2Prime':_0x4d2fbe};if(_0x33b3b6[_0x33c142(0x191)]['unitId']!==_0x4d2fbe[_0x33c142(0x191)][_0x33c142(0x15b)]||_0x33b3b6[_0x33c142(0x191)][_0x33c142(0x126)]!==_0x4d2fbe[_0x33c142(0x191)][_0x33c142(0x126)])return _0x750407;const _0x7cea6=_0x12a789['deepClone'](_0x4d2fbe),_0x4dc859=_0x12a789[_0x33c142(0xec)](_0x33b3b6),_0x4c8edb=_0x27f777(h(_0x425bb4(_0x33b3b6[_0x33c142(0x191)]['range'])),h(_0x425bb4(_0x4d2fbe[_0x33c142(0x191)][_0x33c142(0x1a6)])));if(!_0x4c8edb)return{'m1Prime':_0x33b3b6,'m2Prime':[]};if(_0x4c8edb['length']===0x0&&_0x4c8edb[_0x33c142(0x1ba)]===0x0)return{'m1Prime':_0x33b3b6,'m2Prime':_0x4d2fbe};const {startRow:_0x546cb1,endRow:_0xae674b}=_0x33b3b6[_0x33c142(0x191)][_0x33c142(0x1a6)];_0x7cea6['params'][_0x33c142(0x1a6)]['startRow']+=_0x4c8edb[_0x33c142(0x1ba)],_0x7cea6[_0x33c142(0x191)][_0x33c142(0x1a6)][_0x33c142(0xda)]+=_0x4c8edb['step']+(_0x4c8edb[_0x33c142(0xbd)]||0x0);const _0x466ea2=Object[_0x33c142(0x98)](_0x4d2fbe['params'][_0x33c142(0xcb)])[_0x33c142(0x21d)](_0x425e9e=>ke(_0x546cb1,_0xae674b,Number(_0x425e9e)))[_0x33c142(0x94)](_0x191b68=>_0x191b68!==null),_0x134729={};for(const _0x7d90e1 in _0x4d2fbe[_0x33c142(0x191)][_0x33c142(0xcb)]){let _0x3af49f=_0x4d2fbe[_0x33c142(0x191)][_0x33c142(0xcb)][_0x7d90e1];_0x3af49f=ke(_0x546cb1,_0xae674b,_0x3af49f),_0x3af49f!==null&&(_0x134729[_0x466ea2[_0x33c142(0x118)]()]=_0x3af49f);}_0x7cea6['params'][_0x33c142(0xcb)]=_0x134729;const _0x458832=io(_0x4d2fbe[_0x33c142(0x191)][_0x33c142(0xcb)],{'start':_0x33b3b6[_0x33c142(0x191)]['range'][_0x33c142(0x11e)],'end':_0x33b3b6[_0x33c142(0x191)][_0x33c142(0x1a6)][_0x33c142(0xda)]}),_0x361e71=[_0x4dc859];return _0x458832&&_0x361e71[_0x33c142(0xd5)]({'id':_0x41be04['id'],'params':{..._0x33b3b6[_0x33c142(0x191)],'order':_0x458832['order'],'range':{..._0x4d2fbe['params'][_0x33c142(0x1a6)],..._0x458832[_0x33c142(0x1a6)]}}}),{'m1Prime':_0x361e71,'m2Prime':_0x7cea6};}},io=(_0x1383af,_0x2c263d)=>{const _0x1cb422=_0x54481f,_0x5d7faf=Object[_0x1cb422(0x98)](_0x1383af)[_0x1cb422(0x21d)](Number)['sort']((_0x4f045c,_0x5855f7)=>_0x4f045c-_0x5855f7);if(_0x5d7faf[_0x1cb422(0xbd)]===0x0)return null;const _0x1738bd=_0x5d7faf[0x0],_0x25cde7=_0x5d7faf[_0x5d7faf[_0x1cb422(0xbd)]-0x1];if(_0x1738bd>_0x2c263d['end']||_0x25cde7<_0x2c263d[_0x1cb422(0x22f)])return null;const _0x3d55ca=_0x5d7faf['filter'](_0x4f356a=>_0x1383af[_0x4f356a]>=_0x2c263d['start']&&_0x1383af[_0x4f356a]<=_0x2c263d['end']);if(_0x3d55ca['length']===0x0)return null;const _0x4c07e6=_0x3d55ca[_0x1cb422(0x21d)](_0x1da8d6=>_0x1383af[_0x1da8d6]),_0xdf9ce={},_0x4c1823=Math[_0x1cb422(0x12b)](_0x3d55ca[0x0],_0x2c263d[_0x1cb422(0x22f)]),_0x4f829c=Math[_0x1cb422(0x1a7)](_0x3d55ca[_0x3d55ca[_0x1cb422(0xbd)]-0x1],_0x2c263d['end']),_0x4efc20=Array[_0x1cb422(0xad)]({'length':_0x4f829c-_0x4c1823+0x1},(_0x36ad38,_0x55f4a6)=>_0x55f4a6+_0x4c1823)['filter'](_0x413ef9=>!_0x3d55ca[_0x1cb422(0x177)](_0x413ef9));return Array[_0x1cb422(0xad)]({'length':_0x4f829c-_0x4c1823+0x1},(_0x3614d3,_0x3c992b)=>_0x3c992b+_0x4c1823)['filter'](_0x4cac45=>!_0x4c07e6['includes'](_0x4cac45))[_0x1cb422(0x147)]((_0x2cf5d2,_0xb98d31)=>{_0xdf9ce[_0x2cf5d2]=_0x4efc20[_0xb98d31];}),_0x4c07e6[_0x1cb422(0x147)]((_0x53ad8f,_0x44dccd)=>{_0xdf9ce[_0x53ad8f]=_0x3d55ca[_0x44dccd];}),{'range':{'startRow':_0x4c1823,'endRow':_0x4f829c},'order':_0xdf9ce};},ke=(_0x32e048,_0x14507e,_0x515e98)=>_0x515e98>=_0x32e048&&_0x515e98<=_0x14507e?null:_0x515e98>_0x14507e?_0x515e98-(_0x14507e-_0x32e048+0x1):_0x515e98,mo={'m1':_0x116e41['id'],'m2':_0x30c2c8['id'],'handler'(_0x320619,_0x4bf0b4){const _0x43444c=_0x54481f,_0x39c651={'m1Prime':_0x320619,'m2Prime':_0x4bf0b4};if(_0x320619[_0x43444c(0x191)][_0x43444c(0x15b)]!==_0x4bf0b4['params'][_0x43444c(0x15b)]||_0x320619[_0x43444c(0x191)][_0x43444c(0x126)]!==_0x4bf0b4[_0x43444c(0x191)][_0x43444c(0x126)])return _0x39c651;const _0x2e9301=[_0x12a789[_0x43444c(0xec)](_0x320619)],_0x10a454=_0x12a789['deepClone'](_0x4bf0b4),{values:_0x48bc4f}=_0x10a454[_0x43444c(0x191)],_0x31aa3a=[];let _0x13a6b4=!0x1;for(const _0x4c9c49 in _0x48bc4f){const _0x3344b5=_0x48bc4f[_0x4c9c49];if(_0x31aa3a[_0x43444c(0x187)](..._0x3344b5[_0x43444c(0x1a9)]),_0x3344b5['ranges'][_0x43444c(0x161)](_0x13740e=>{const _0x5d560f=_0x43444c,_0x90d0ba=_0x27f777(h(_0x425bb4(_0x320619['params'][_0x5d560f(0x1a6)])),h(_0x425bb4(_0x13740e)));return _0x90d0ba==null||_0x90d0ba[_0x5d560f(0xbd)]!==0x0?!0x0:(_0x90d0ba[_0x5d560f(0x1ba)]!==0x0&&(_0x13a6b4=!0x0),_0x13740e[_0x5d560f(0x11e)]+=_0x90d0ba[_0x5d560f(0x1ba)],_0x13740e[_0x5d560f(0xda)]+=_0x90d0ba['step'],!0x1);}))return{'error':new Error('remove\x20row\x20is\x20conflict\x20with\x20set\x20numfmt')};}if(_0x13a6b4){const _0x5a7994={'id':_0x180381['id'],'params':{'unitId':_0x4bf0b4[_0x43444c(0x191)]['unitId'],'subUnitId':_0x4bf0b4[_0x43444c(0x191)][_0x43444c(0x126)],'ranges':_0x31aa3a}};_0x2e9301[_0x43444c(0x187)](_0x5a7994,_0x10a454);}return{'m1Prime':_0x2e9301,'m2Prime':_0x10a454};}},uo={'m1':_0x116e41['id'],'m2':_0x59880b['id'],'handler'(_0x5b8aeb,_0x56d311){const _0x1d5ca5=_0x54481f,_0x413344={'m1Prime':_0x5b8aeb,'m2Prime':_0x56d311};if(_0x5b8aeb[_0x1d5ca5(0x191)][_0x1d5ca5(0x15b)]!==_0x56d311[_0x1d5ca5(0x191)][_0x1d5ca5(0x15b)]||_0x5b8aeb[_0x1d5ca5(0x191)]['subUnitId']!==_0x56d311[_0x1d5ca5(0x191)][_0x1d5ca5(0x126)])return _0x413344;const _0x2b844d=[_0x12a789[_0x1d5ca5(0xec)](_0x5b8aeb)],_0x4a4cc0=_0x12a789['deepClone'](_0x56d311),_0x42465a=new _0x3597fb(_0x4a4cc0[_0x1d5ca5(0x191)][_0x1d5ca5(0xaf)]),_0x5b1793=_0x42465a[_0x1d5ca5(0xa7)](),_0xdc03c9=_0x5b8aeb['params'][_0x1d5ca5(0x1a6)],_0x2e0c77=_0xdc03c9[_0x1d5ca5(0xda)]-_0xdc03c9['startRow']+0x1;if(_0x4a4cc0['params'][_0x1d5ca5(0xaf)]&&_0xdc03c9[_0x1d5ca5(0xda)]<_0x5b1793[_0x1d5ca5(0x11e)])ft(_0x4a4cc0[_0x1d5ca5(0x191)][_0x1d5ca5(0xaf)],_0x5b1793[_0x1d5ca5(0x11e)],_0x5b1793['endRow']-_0x5b1793[_0x1d5ca5(0x11e)]+0x1,-_0x2e0c77);else{if(_0xdc03c9[_0x1d5ca5(0x11e)]<=_0x5b1793[_0x1d5ca5(0xda)])return{'error':new Error('remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation')};}const _0x480c9c=new _0x3597fb();let _0x373a24=!0x1,_0x290a0c=!0x1;if(_0x42465a[_0x1d5ca5(0x1bf)]((_0x2293de,_0x5f3634,_0x35c2c4)=>{const _0x1aa939=_0x1d5ca5;if(_0x35c2c4&&_0x35c2c4['f']){const _0x537e0d=_0x35c2c4['f'];let _0xfd0fc1=!0x1;const _0x1a5e9f=dt(_0x5b8aeb['params']['unitId'],_0x5b8aeb[_0x1aa939(0x191)][_0x1aa939(0x126)],_0x537e0d,_0x1758b8=>{const _0x292026=_0x1aa939,_0x4a7c2c=_0x27f777(h(_0x425bb4(_0x5b8aeb[_0x292026(0x191)]['range'])),h(_0x425bb4(_0x1758b8)));return _0x4a7c2c===null?(_0x373a24=!0x0,_0x1758b8):((_0x4a7c2c[_0x292026(0x1ba)]!==0x0||_0x4a7c2c['length']!==0x0)&&(_0xfd0fc1=!0x0,_0x1758b8[_0x292026(0x11e)]+=_0x4a7c2c['step'],_0x1758b8[_0x292026(0xda)]+=_0x4a7c2c['step']+_0x4a7c2c['length']),_0x1758b8);});_0xfd0fc1&&(_0x290a0c=!0x0,_0x35c2c4['f']=_0x1a5e9f,_0x480c9c[_0x1aa939(0x1a3)](_0x2293de,_0x5f3634,{..._0x35c2c4}));}}),_0x373a24)return{'error':new Error('remove\x20rows\x20is\x20conflict\x20with\x20set\x20range\x20values\x20mutation,\x20trying\x20to\x20write\x20a\x20formula\x20reference\x20to\x20a\x20removed\x20row')};if(_0x290a0c){const _0x59b4c6={'id':_0x59880b['id'],'params':{'unitId':_0x56d311[_0x1d5ca5(0x191)]['unitId'],'subUnitId':_0x56d311[_0x1d5ca5(0x191)]['subUnitId'],'cellValue':_0x480c9c['getMatrix']()}};_0x2b844d['push'](_0x59b4c6);}return{'m1Prime':_0x2b844d,'m2Prime':_0x4a4cc0};}},lo={'m1':_0x116e41['id'],'m2':_0x5d6537['id'],'handler'(_0x2701b7,_0x834247){const _0x1a8cee=_0x54481f,_0x2bf2de={'m1Prime':_0x2701b7,'m2Prime':_0x834247};if(_0x2701b7['params'][_0x1a8cee(0x15b)]!==_0x834247[_0x1a8cee(0x191)]['unitId']||_0x2701b7[_0x1a8cee(0x191)][_0x1a8cee(0x126)]!==_0x834247[_0x1a8cee(0x191)]['subUnitId'])return _0x2bf2de;const _0x1bb8ec=_0x12a789[_0x1a8cee(0xec)](_0x2701b7),_0x17366f=_0x12a789[_0x1a8cee(0xec)](_0x834247),{rowData:_0x381a75}=_0x17366f[_0x1a8cee(0x191)];return _0x593d1d(_0x2701b7[_0x1a8cee(0x191)]['range'][_0x1a8cee(0x11e)],_0x2701b7[_0x1a8cee(0x191)]['range'][_0x1a8cee(0xda)]-_0x2701b7[_0x1a8cee(0x191)][_0x1a8cee(0x1a6)][_0x1a8cee(0x11e)]+0x1,_0x381a75),{'m1Prime':_0x1bb8ec,'m2Prime':_0x17366f};}},co={'m1':_0x116e41['id'],'m2':_0x4744ed['id'],'handler'(_0x9215a,_0x4f5cab){const _0x390ede=_0x54481f,_0x2c5f76={'m1Prime':_0x9215a,'m2Prime':_0x4f5cab};if(_0x9215a[_0x390ede(0x191)][_0x390ede(0x15b)]!==_0x4f5cab[_0x390ede(0x191)][_0x390ede(0x15b)]||_0x9215a[_0x390ede(0x191)]['subUnitId']!==_0x4f5cab['params']['subUnitId'])return _0x2c5f76;const _0x207132=_0x12a789[_0x390ede(0xec)](_0x9215a),_0x556625=_0x12a789['deepClone'](_0x4f5cab),{ranges:_0x16b838}=_0x556625['params'];return _0x16b838['forEach'](_0x1ecd0c=>{const _0x58cff6=_0x390ede,_0x5b4f04=_0x27f777(h(_0x425bb4(_0x9215a[_0x58cff6(0x191)][_0x58cff6(0x1a6)])),h(_0x425bb4(_0x1ecd0c)));_0x5b4f04==null?_0x556625['id']=_0x411476['id']:(_0x1ecd0c[_0x58cff6(0x11e)]+=_0x5b4f04[_0x58cff6(0x1ba)],_0x1ecd0c['endRow']+=_0x5b4f04[_0x58cff6(0x1ba)]+_0x5b4f04['length']);}),{'m1Prime':_0x207132,'m2Prime':_0x556625};}},po={'m1':_0x116e41['id'],'m2':_0x567b52['id'],'handler'(_0x10ec15,_0x3fd256){const _0x481ec8=_0x54481f,_0x51b047={'m1Prime':_0x10ec15,'m2Prime':_0x3fd256};if(_0x10ec15[_0x481ec8(0x191)][_0x481ec8(0x15b)]!==_0x3fd256[_0x481ec8(0x191)]['unitId']||_0x10ec15['params'][_0x481ec8(0x126)]!==_0x3fd256[_0x481ec8(0x191)][_0x481ec8(0x126)])return _0x51b047;const _0x1bd456=_0x12a789[_0x481ec8(0xec)](_0x10ec15),_0x50d48f=_0x12a789[_0x481ec8(0xec)](_0x3fd256),{ranges:_0x2b9c2a}=_0x50d48f['params'];return _0x2b9c2a[_0x481ec8(0x147)](_0x1a3e22=>{const _0x561b4d=_0x481ec8,_0x36b9f1=_0x27f777(h(_0x425bb4(_0x10ec15[_0x561b4d(0x191)][_0x561b4d(0x1a6)])),h(_0x425bb4(_0x1a3e22)));_0x36b9f1==null?_0x50d48f['id']=_0x411476['id']:(_0x1a3e22['startRow']+=_0x36b9f1[_0x561b4d(0x1ba)],_0x1a3e22[_0x561b4d(0xda)]+=_0x36b9f1[_0x561b4d(0x1ba)]+_0x36b9f1[_0x561b4d(0xbd)]);}),{'m1Prime':_0x1bd456,'m2Prime':_0x50d48f};}},fo={'m1':_0x116e41['id'],'m2':_0x22c7b4['id'],'handler'(_0x3e8de1,_0x505f01){const _0x333949=_0x54481f,_0x269eb4={'m1Prime':[],'m2Prime':[]};if(_0x3e8de1[_0x333949(0x191)][_0x333949(0x15b)]!==_0x505f01[_0x333949(0x191)]['unitId']||_0x3e8de1[_0x333949(0x191)][_0x333949(0x126)]!==_0x505f01[_0x333949(0x191)][_0x333949(0x126)])return _0x269eb4;const _0x24a270=_0x12a789['deepClone'](_0x505f01);let _0x7cf6f0=!0x1;return _0x24a270['params']['selections']['forEach'](_0x59501e=>{const _0x54a682=_0x333949,{range:_0x1b7ffe,primary:_0x12ee09}=_0x59501e,_0x4ae4a7=_0x27f777(h(_0x425bb4(_0x3e8de1['params']['range'])),h(_0x425bb4(_0x1b7ffe)));if(_0x4ae4a7!=null&&(_0x4ae4a7[_0x54a682(0xbd)]||_0x4ae4a7['step'])){if(_0x1b7ffe['startRow']+=_0x4ae4a7[_0x54a682(0x1ba)],_0x1b7ffe[_0x54a682(0xda)]+=_0x4ae4a7[_0x54a682(0x1ba)]+(_0x4ae4a7[_0x54a682(0xbd)]||0x0),_0x12ee09){const _0x45823f=_0x27f777(h(_0x425bb4(_0x3e8de1[_0x54a682(0x191)][_0x54a682(0x1a6)])),h(_0x425bb4(_0x12ee09)));if(_0x45823f==null){_0x12ee09[_0x54a682(0x11e)]=_0x1b7ffe[_0x54a682(0x11e)],_0x12ee09[_0x54a682(0xda)]=_0x1b7ffe[_0x54a682(0x11e)],_0x12ee09[_0x54a682(0xf9)]=_0x1b7ffe[_0x54a682(0x11e)];return;}(_0x45823f[_0x54a682(0xbd)]||_0x45823f[_0x54a682(0x1ba)])&&(_0x12ee09[_0x54a682(0x11e)]+=_0x45823f[_0x54a682(0x1ba)],_0x12ee09[_0x54a682(0xda)]+=_0x45823f[_0x54a682(0x1ba)],_0x12ee09[_0x54a682(0xf9)]+=_0x45823f[_0x54a682(0x1ba)]);}_0x7cf6f0=!0x0;}}),_0x7cf6f0&&_0x269eb4['m2Prime'][_0x333949(0x187)](_0x24a270),_0x269eb4;}},Ro={'m1':_0x116e41['id'],'m2':_0x4a261b['id'],'handler'(_0x4d2d9b,_0x1d0b9d){const _0x20abd3=_0x54481f,_0x12d1c0={'m1Prime':[_0x4d2d9b],'m2Prime':[_0x1d0b9d]};if(_0x4d2d9b[_0x20abd3(0x191)][_0x20abd3(0x15b)]!==_0x1d0b9d[_0x20abd3(0x191)]['unitId']||_0x4d2d9b[_0x20abd3(0x191)][_0x20abd3(0x126)]!==_0x1d0b9d['params'][_0x20abd3(0x126)])return _0x12d1c0;const _0x265002=_0x12a789['deepClone'](_0x4d2d9b),_0x1da0b6=_0x12a789['deepClone'](_0x1d0b9d),_0x40aa23=Me({'start':_0x4d2d9b[_0x20abd3(0x191)][_0x20abd3(0x1a6)][_0x20abd3(0x11e)],'end':_0x4d2d9b[_0x20abd3(0x191)]['range'][_0x20abd3(0xda)]},{'start':_0x1d0b9d[_0x20abd3(0x191)][_0x20abd3(0x1a6)][_0x20abd3(0x11e)],'end':_0x1d0b9d[_0x20abd3(0x191)]['range'][_0x20abd3(0xda)]});return _0x40aa23===null?{'m1Prime':[_0x265002,{'id':_0x431d63['id'],'params':{'unitId':_0x1d0b9d[_0x20abd3(0x191)][_0x20abd3(0x15b)],'subUnitId':_0x1d0b9d[_0x20abd3(0x191)][_0x20abd3(0x15b)]}}],'m2Prime':[]}:(_0x1da0b6[_0x20abd3(0x191)][_0x20abd3(0x1a6)][_0x20abd3(0x11e)]=_0x40aa23[_0x20abd3(0x22f)],_0x1da0b6[_0x20abd3(0x191)][_0x20abd3(0x1a6)][_0x20abd3(0xda)]=_0x40aa23[_0x20abd3(0xd6)],{'m1Prime':[_0x1da0b6,_0x265002],'m2Prime':[_0x1da0b6]});}},ho={'m1':_0x116e41['id'],'m2':_0x1bdf83['id'],'handler'(_0x185f31,_0x1aace2){const _0x2d319f=_0x54481f,_0x1f5c0a={'m1Prime':_0x185f31,'m2Prime':_0x1aace2};if(_0x185f31[_0x2d319f(0x191)]['unitId']!==_0x1aace2['params'][_0x2d319f(0x15b)]||_0x185f31[_0x2d319f(0x191)][_0x2d319f(0x126)]!==_0x1aace2['params'][_0x2d319f(0x126)])return _0x1f5c0a;const _0x42f8c8=_0x12a789[_0x2d319f(0xec)](_0x185f31),_0x5b80b9=_0x12a789[_0x2d319f(0xec)](_0x1aace2),{rowsAutoHeightInfo:_0x20220b}=_0x5b80b9['params'];for(let _0x176308=_0x20220b[_0x2d319f(0xbd)]-0x1;_0x176308>=0x0;_0x176308--){const _0x22802b=_0x20220b[_0x176308],_0x18a0a3={'startRow':_0x22802b[_0x2d319f(0x22d)],'endRow':_0x22802b[_0x2d319f(0x22d)],'startColumn':0x0,'endColumn':0x0},_0x415ffa=_0x27f777(h(_0x425bb4(_0x185f31[_0x2d319f(0x191)][_0x2d319f(0x1a6)])),_0x425bb4(_0x18a0a3));_0x415ffa==null?_0x20220b[_0x2d319f(0x200)](_0x176308,0x1):_0x22802b[_0x2d319f(0x22d)]+=_0x415ffa['step'];}return{'m1Prime':_0x42f8c8,'m2Prime':_0x5b80b9};}},go={'m1':_0x116e41['id'],'m2':_0x295209['id'],'handler'(_0x2af8e5,_0x26cdc3){const _0x2deba6=_0x54481f,_0x4ca4bb={'m1Prime':_0x2af8e5,'m2Prime':_0x26cdc3};if(_0x2af8e5[_0x2deba6(0x191)][_0x2deba6(0x15b)]!==_0x26cdc3['params'][_0x2deba6(0x15b)]||_0x2af8e5['params'][_0x2deba6(0x126)]!==_0x26cdc3[_0x2deba6(0x191)][_0x2deba6(0x126)])return _0x4ca4bb;const _0x3fa99a=_0x12a789['deepClone'](_0x2af8e5),_0xbd1ef8=_0x12a789[_0x2deba6(0xec)](_0x26cdc3),{ranges:_0x4640d1,rowHeight:_0x2024a5}=_0xbd1ef8['params'];return _0x4640d1[_0x2deba6(0x147)](_0x2f5763=>{const _0x4e3212=_0x2deba6,_0x39d760=_0x27f777(h(_0x425bb4(_0x2af8e5[_0x4e3212(0x191)][_0x4e3212(0x1a6)])),_0x425bb4(_0x2f5763));_0x39d760==null?_0xbd1ef8['id']=_0x411476['id']:(_0x2f5763[_0x4e3212(0x11e)]+=_0x39d760['step'],_0x2f5763[_0x4e3212(0xda)]+=_0x39d760['step']+_0x39d760['length']);}),typeof _0x2024a5!=_0x2deba6(0x13c)&&_0x593d1d(_0x2af8e5['params'][_0x2deba6(0x1a6)][_0x2deba6(0x11e)],_0x2af8e5['params']['range'][_0x2deba6(0xda)]-_0x2af8e5[_0x2deba6(0x191)][_0x2deba6(0x1a6)][_0x2deba6(0x11e)]+0x1,_0x2024a5),{'m1Prime':_0x3fa99a,'m2Prime':_0xbd1ef8};}},Io={'m1':_0x116e41['id'],'m2':_0x2d1c92['id'],'handler'(_0xebe667,_0x1635a4){const _0x54a798=_0x54481f,_0x199fc6={'m1Prime':_0xebe667,'m2Prime':_0x1635a4};if(_0xebe667['params'][_0x54a798(0x15b)]!==_0x1635a4['params']['unitId']||_0xebe667[_0x54a798(0x191)]['subUnitId']!==_0x1635a4['params'][_0x54a798(0x126)])return _0x199fc6;const _0x2cf177=_0x12a789[_0x54a798(0xec)](_0xebe667),_0x4acca7=_0x12a789['deepClone'](_0x1635a4),{ranges:_0x43a62f,autoHeightInfo:_0xce63d4}=_0x4acca7[_0x54a798(0x191)];return _0x43a62f[_0x54a798(0x147)](_0x425d6a=>{const _0x1bb286=_0x54a798,_0x1df729=_0x27f777(h(_0x425bb4(_0xebe667[_0x1bb286(0x191)][_0x1bb286(0x1a6)])),_0x425bb4(_0x425d6a));_0x1df729==null?_0x4acca7['id']=_0x411476['id']:(_0x425d6a[_0x1bb286(0x11e)]+=_0x1df729['step'],_0x425d6a['endRow']+=_0x1df729[_0x1bb286(0x1ba)]+_0x1df729[_0x1bb286(0xbd)]);}),typeof _0xce63d4!=_0x54a798(0x13c)&&_0x593d1d(_0xebe667[_0x54a798(0x191)][_0x54a798(0x1a6)]['startRow'],_0xebe667[_0x54a798(0x191)]['range'][_0x54a798(0xda)]-_0xebe667[_0x54a798(0x191)][_0x54a798(0x1a6)][_0x54a798(0x11e)]+0x1,_0xce63d4),{'m1Prime':_0x2cf177,'m2Prime':_0x4acca7};}},wo={'m1':_0x116e41['id'],'m2':_0x44bb69['id'],'handler':(_0x1017ef,_0x48cf48)=>{const _0x576ca1=_0x54481f,_0x229bd4={'m1Prime':_0x1017ef,'m2Prime':_0x48cf48};if(_0x1017ef[_0x576ca1(0x191)][_0x576ca1(0x15b)]!==_0x48cf48[_0x576ca1(0x191)][_0x576ca1(0x15b)]||_0x1017ef['params']['subUnitId']!==_0x48cf48[_0x576ca1(0x191)][_0x576ca1(0x126)])return _0x229bd4;const _0x1a5abf={'id':_0x348f36['id'],'params':{'unitId':_0x1017ef[_0x576ca1(0x191)][_0x576ca1(0x15b)],'subUnitId':_0x1017ef[_0x576ca1(0x191)][_0x576ca1(0x126)],'range':_0x1017ef[_0x576ca1(0x191)][_0x576ca1(0x1a6)]}},_0x39fc8f=wt(_0x48cf48,_0x1a5abf);return{'m1Prime':[_0x1017ef,..._0x39fc8f],'m2Prime':[_0x48cf48,..._0x39fc8f]};}},Co={'m1':_0x116e41['id'],'m2':_0x5ad83d['id'],'handler':(_0x26177a,_0x4d1784)=>{const _0x5c41ba=_0x54481f,_0x3cb4cc={'m1Prime':_0x26177a,'m2Prime':_0x4d1784};if(_0x26177a[_0x5c41ba(0x191)][_0x5c41ba(0x15b)]!==_0x4d1784[_0x5c41ba(0x191)][_0x5c41ba(0x15b)]||_0x4d1784[_0x5c41ba(0x191)][_0x5c41ba(0x126)]!==_0x26177a[_0x5c41ba(0x191)][_0x5c41ba(0x126)])return _0x3cb4cc;const _0x27c585={'id':_0x348f36['id'],'params':{'range':_0x26177a['params'][_0x5c41ba(0x1a6)]}},_0x42f9d4=Ct(_0x4d1784,_0x27c585);return{'m1Prime':[_0x26177a,..._0x42f9d4],'m2Prime':[_0x4d1784,..._0x42f9d4]};}},Po={'m1':_0x3194c5['id'],'m2':_0x5504b0['id'],'handler'(_0x3ed212,_0x4aafcd){const _0x163a3c=_0x54481f,_0x135dac=_0x12a789[_0x163a3c(0xec)](_0x3ed212),_0x55f09b=_0x12a789[_0x163a3c(0xec)](_0x4aafcd);if(_0x3ed212['params'][_0x163a3c(0x15b)]!==_0x4aafcd['params'][_0x163a3c(0x15b)]||_0x3ed212[_0x163a3c(0x191)][_0x163a3c(0x126)]!==_0x4aafcd['params'][_0x163a3c(0x126)])return{'m1Prime':_0x135dac,'m2Prime':_0x55f09b};for(let _0xfa3f19=0x0;_0xfa3f19<_0x135dac[_0x163a3c(0x191)][_0x163a3c(0x1a9)]['length'];_0xfa3f19++){let _0x22bbed=!0x1;for(let _0x43f2aa=0x0;_0x43f2aa<_0x55f09b[_0x163a3c(0x191)][_0x163a3c(0x1a9)][_0x163a3c(0xbd)];_0x43f2aa++){const _0x1029a=_0x135dac[_0x163a3c(0x191)][_0x163a3c(0x1a9)][_0xfa3f19],_0x2f7c1c=_0x55f09b[_0x163a3c(0x191)][_0x163a3c(0x1a9)][_0x43f2aa];if(_0x12b536[_0x163a3c(0x16e)](_0x1029a,_0x2f7c1c)){_0x22bbed=!0x0;break;}}_0x22bbed&&(_0x135dac[_0x163a3c(0x191)]['ranges'][_0x163a3c(0x200)](_0xfa3f19,0x1),_0xfa3f19--);}return _0x135dac[_0x163a3c(0x191)][_0x163a3c(0x1a9)][_0x163a3c(0xbd)]===0x0&&(_0x135dac['id']=_0x411476['id']),{'m1Prime':_0x135dac,'m2Prime':_0x55f09b};}},Uo={'m1':_0x3194c5['id'],'m2':_0x3732ba['id'],'handler'(_0x1eb804,_0x19fcce){const _0x44020f=_0x54481f,_0xb7d1e1=_0x12a789[_0x44020f(0xec)](_0x1eb804),_0x416fc7=_0x12a789[_0x44020f(0xec)](_0x19fcce);if(_0x1eb804['params'][_0x44020f(0x15b)]!==_0x19fcce['params'][_0x44020f(0x15b)]||_0x1eb804[_0x44020f(0x191)][_0x44020f(0x126)]!==_0x19fcce[_0x44020f(0x191)]['subUnitId'])return{'m1Prime':_0xb7d1e1,'m2Prime':_0x416fc7};const _0x3b2c81=_0xb7d1e1[_0x44020f(0x191)][_0x44020f(0x1a9)][_0x44020f(0x21d)](_0x546ce8=>{const _0x34a92e=_0x44020f,_0x597426=_0x416fc7['params']['range'],_0x48fe99=_0x597426[_0x34a92e(0x1ee)]-_0x597426[_0x34a92e(0x10c)]+0x1;return _0x597426[_0x34a92e(0x10c)]<=_0x546ce8[_0x34a92e(0x10c)]?{..._0x546ce8,'startColumn':_0x546ce8[_0x34a92e(0x10c)]+_0x48fe99,'endColumn':_0x546ce8[_0x34a92e(0x1ee)]+_0x48fe99}:_0x597426[_0x34a92e(0x10c)]>_0x546ce8[_0x34a92e(0x10c)]&&_0x597426[_0x34a92e(0x10c)]<=_0x546ce8[_0x34a92e(0x1ee)]?{..._0x546ce8,'endColumn':_0x546ce8[_0x34a92e(0x1ee)]+_0x48fe99}:{..._0x546ce8};});return _0xb7d1e1[_0x44020f(0x191)][_0x44020f(0x1a9)]=_0x3b2c81,{'m1Prime':_0xb7d1e1,'m2Prime':_0x416fc7};}},bo={'m1':_0x3194c5['id'],'m2':_0xa7a746['id'],'handler'(_0x527f28,_0x425de5){const _0x4c42eb=_0x54481f,_0x83040c=_0x12a789[_0x4c42eb(0xec)](_0x527f28),_0x2ee8aa=_0x12a789[_0x4c42eb(0xec)](_0x425de5);if(_0x527f28[_0x4c42eb(0x191)][_0x4c42eb(0x15b)]!==_0x425de5['params'][_0x4c42eb(0x15b)]||_0x527f28[_0x4c42eb(0x191)][_0x4c42eb(0x126)]!==_0x425de5[_0x4c42eb(0x191)][_0x4c42eb(0x126)])return{'m1Prime':_0x83040c,'m2Prime':_0x2ee8aa};const _0x5c322b=_0x83040c['params'][_0x4c42eb(0x1a9)][_0x4c42eb(0x21d)](_0x19fce5=>{const _0x29b8ef=_0x4c42eb,_0x3ada44=_0x2ee8aa[_0x29b8ef(0x191)][_0x29b8ef(0x1a6)],_0x1c2761=_0x3ada44[_0x29b8ef(0xda)]-_0x3ada44[_0x29b8ef(0x11e)]+0x1;return _0x3ada44[_0x29b8ef(0x11e)]<=_0x19fce5['startRow']?{..._0x19fce5,'startRow':_0x19fce5[_0x29b8ef(0x11e)]+_0x1c2761,'endRow':_0x19fce5['endRow']+_0x1c2761}:_0x3ada44[_0x29b8ef(0x11e)]>_0x19fce5[_0x29b8ef(0x11e)]&&_0x3ada44[_0x29b8ef(0x11e)]<=_0x19fce5['endRow']?{..._0x19fce5,'endRow':_0x19fce5['endRow']+_0x1c2761}:{..._0x19fce5};});return _0x83040c[_0x4c42eb(0x191)][_0x4c42eb(0x1a9)]=_0x5c322b,{'m1Prime':_0x83040c,'m2Prime':_0x2ee8aa};}},Mo={'m1':_0x3194c5['id'],'m2':_0x1c90f1['id'],'handler'(_0x2cd7ad,_0x33f440){const _0x1892c6=_0x54481f,_0x259ba4=_0x12a789['deepClone'](_0x2cd7ad),_0x335940=_0x12a789[_0x1892c6(0xec)](_0x33f440);if(_0x2cd7ad['params'][_0x1892c6(0x15b)]!==_0x33f440[_0x1892c6(0x191)][_0x1892c6(0x15b)]||_0x2cd7ad[_0x1892c6(0x191)][_0x1892c6(0x126)]!==_0x33f440['params'][_0x1892c6(0x126)])return{'m1Prime':_0x259ba4,'m2Prime':_0x335940};const _0x4440d2=_0x259ba4[_0x1892c6(0x191)][_0x1892c6(0x1a9)][_0x1892c6(0x121)]((_0x209928,_0x10f259)=>{const _0x187712=_0x1892c6,{sourceRange:_0x2932be,targetRange:_0x4b225a}=_0x33f440[_0x187712(0x191)],_0x4b8ab7={..._0x10f259};return _0x2932be['endColumn']<_0x4b8ab7[_0x187712(0x10c)]&&_0x4b225a[_0x187712(0x10c)]>_0x4b8ab7['endColumn']?(_0x4b8ab7[_0x187712(0x10c)]-=_0x2932be['endColumn']-_0x2932be['startColumn']+0x1,_0x4b8ab7[_0x187712(0x1ee)]-=_0x2932be['endColumn']-_0x2932be[_0x187712(0x10c)]+0x1,K(_0x4b8ab7)&&_0x209928[_0x187712(0x187)](_0x4b8ab7)):_0x2932be[_0x187712(0x10c)]>_0x4b8ab7[_0x187712(0x1ee)]&&_0x4b225a[_0x187712(0x1ee)]<_0x4b8ab7['startColumn']?(_0x4b8ab7[_0x187712(0x10c)]+=_0x2932be[_0x187712(0x1ee)]-_0x2932be[_0x187712(0x10c)]+0x1,_0x4b8ab7[_0x187712(0x1ee)]+=_0x2932be[_0x187712(0x1ee)]-_0x2932be[_0x187712(0x10c)]+0x1,K(_0x4b8ab7)&&_0x209928['push'](_0x4b8ab7)):_0x12b536[_0x187712(0x16e)](_0x4b8ab7,_0x2932be)||_0x12b536[_0x187712(0x16e)](_0x4b8ab7,_0x4b225a)||_0x209928[_0x187712(0x187)](_0x4b8ab7),_0x209928;},[]);return _0x259ba4[_0x1892c6(0x191)]['ranges']=_0x4440d2,_0x259ba4[_0x1892c6(0x191)][_0x1892c6(0x1a9)][_0x1892c6(0xbd)]===0x0&&(_0x259ba4['id']=_0x411476['id']),{'m1Prime':_0x259ba4,'m2Prime':_0x335940};}},vo={'m1':_0x3194c5['id'],'m2':_0xfa530e['id'],'handler'(_0x21fa73,_0x1a436b){const _0x319065=_0x54481f,_0x22e20d=_0x12a789[_0x319065(0xec)](_0x21fa73),_0x4936a3=_0x12a789[_0x319065(0xec)](_0x1a436b);if(_0x21fa73[_0x319065(0x191)][_0x319065(0x15b)]!==_0x1a436b[_0x319065(0x191)][_0x319065(0x15b)]||_0x21fa73[_0x319065(0x191)][_0x319065(0x126)]!==_0x1a436b[_0x319065(0x191)]['subUnitId'])return{'m1Prime':_0x22e20d,'m2Prime':_0x4936a3};const _0x4d4863=_0x22e20d[_0x319065(0x191)][_0x319065(0x1a9)][_0x319065(0x121)]((_0x54bc3d,_0xe7fccb)=>{const _0x2ad411=_0x319065,{sourceRange:_0x363250,targetRange:_0x23befd}=_0x1a436b[_0x2ad411(0x191)],_0x42395b={..._0xe7fccb};return _0x363250[_0x2ad411(0xda)]<_0x42395b[_0x2ad411(0x11e)]&&_0x23befd[_0x2ad411(0x11e)]>_0x42395b[_0x2ad411(0xda)]?(_0x42395b['startRow']-=_0x363250['endRow']-_0x363250[_0x2ad411(0x11e)]+0x1,_0x42395b['endRow']-=_0x363250['endRow']-_0x363250[_0x2ad411(0x11e)]+0x1,K(_0x42395b)&&_0x54bc3d[_0x2ad411(0x187)](_0x42395b)):_0x363250['startRow']>_0x42395b[_0x2ad411(0xda)]&&_0x23befd[_0x2ad411(0xda)]<_0x42395b[_0x2ad411(0x11e)]?(_0x42395b[_0x2ad411(0x11e)]+=_0x363250[_0x2ad411(0xda)]-_0x363250[_0x2ad411(0x11e)]+0x1,_0x42395b[_0x2ad411(0xda)]+=_0x363250[_0x2ad411(0xda)]-_0x363250[_0x2ad411(0x11e)]+0x1,K(_0x42395b)&&_0x54bc3d[_0x2ad411(0x187)](_0x42395b)):_0x12b536[_0x2ad411(0x16e)](_0x42395b,_0x363250)||_0x12b536[_0x2ad411(0x16e)](_0x42395b,_0x23befd)||_0x54bc3d[_0x2ad411(0x187)](_0x42395b),_0x54bc3d;},[]);return _0x22e20d[_0x319065(0x191)][_0x319065(0x1a9)]=_0x4d4863,_0x22e20d[_0x319065(0x191)]['ranges'][_0x319065(0xbd)]===0x0&&(_0x22e20d['id']=_0x411476['id']),{'m1Prime':_0x22e20d,'m2Prime':_0x4936a3};}},Eo={'m1':_0x3194c5['id'],'m2':_0x491a86['id'],'handler'(_0xe69a6c,_0x3020fb){const _0x2ff89b=_0x54481f,_0x1ad401=_0x12a789[_0x2ff89b(0xec)](_0xe69a6c),_0x4b46f3=_0x12a789[_0x2ff89b(0xec)](_0x3020fb);if(_0xe69a6c[_0x2ff89b(0x191)]['unitId']!==_0x3020fb[_0x2ff89b(0x191)]['unitId']||_0xe69a6c[_0x2ff89b(0x191)]['subUnitId']!==_0x3020fb[_0x2ff89b(0x191)]['subUnitId'])return{'m1Prime':_0x1ad401,'m2Prime':_0x4b46f3};const _0x11d053=_0x1ad401[_0x2ff89b(0x191)][_0x2ff89b(0x1a9)][_0x2ff89b(0x121)]((_0x33cf02,_0x277501)=>{const _0x4d4c1c=_0x2ff89b,_0x5eb23d=_0x4b46f3[_0x4d4c1c(0x191)][_0x4d4c1c(0x1a6)],_0x546e9c=_0x5eb23d[_0x4d4c1c(0x1ee)]-_0x5eb23d[_0x4d4c1c(0x10c)]+0x1;let _0x31c401={..._0x277501};return _0x5eb23d[_0x4d4c1c(0x10c)]>_0x277501[_0x4d4c1c(0x1ee)]?_0x31c401={..._0x277501}:_0x5eb23d[_0x4d4c1c(0x10c)]>=_0x277501[_0x4d4c1c(0x10c)]&&_0x5eb23d[_0x4d4c1c(0x10c)]<=_0x277501[_0x4d4c1c(0x1ee)]&&_0x5eb23d[_0x4d4c1c(0x1ee)]>_0x277501[_0x4d4c1c(0x1ee)]?(_0x31c401['endColumn']=_0x5eb23d[_0x4d4c1c(0x10c)]-0x1,_0x5eb23d[_0x4d4c1c(0x10c)]===_0x277501[_0x4d4c1c(0x10c)]&&(_0x31c401=null)):_0x5eb23d['startColumn']>_0x277501[_0x4d4c1c(0x10c)]&&_0x5eb23d[_0x4d4c1c(0x1ee)]<_0x277501['endColumn']?_0x31c401[_0x4d4c1c(0x1ee)]=_0x277501[_0x4d4c1c(0x1ee)]-_0x546e9c:_0x5eb23d['startColumn']<_0x277501[_0x4d4c1c(0x10c)]&&_0x5eb23d['endColumn']>=_0x277501[_0x4d4c1c(0x10c)]&&_0x5eb23d[_0x4d4c1c(0x1ee)]<=_0x277501[_0x4d4c1c(0x1ee)]?(_0x31c401[_0x4d4c1c(0x10c)]=_0x5eb23d[_0x4d4c1c(0x10c)],_0x31c401[_0x4d4c1c(0x1ee)]=_0x277501[_0x4d4c1c(0x1ee)]-_0x546e9c,_0x5eb23d['endColumn']===_0x277501[_0x4d4c1c(0x1ee)]&&(_0x31c401=null)):_0x5eb23d[_0x4d4c1c(0x10c)]<=_0x277501['startColumn']&&_0x5eb23d[_0x4d4c1c(0x1ee)]>=_0x277501[_0x4d4c1c(0x1ee)]?_0x31c401=null:_0x5eb23d['endColumn']<_0x277501[_0x4d4c1c(0x10c)]&&(_0x31c401[_0x4d4c1c(0x10c)]=_0x277501[_0x4d4c1c(0x10c)]-_0x546e9c,_0x31c401[_0x4d4c1c(0x1ee)]=_0x277501[_0x4d4c1c(0x1ee)]-_0x546e9c),_0x31c401&&!(_0x31c401[_0x4d4c1c(0x11e)]===_0x31c401[_0x4d4c1c(0xda)]&&_0x31c401[_0x4d4c1c(0x10c)]===_0x31c401[_0x4d4c1c(0x1ee)])&&_0x33cf02[_0x4d4c1c(0x187)](_0x31c401),_0x33cf02;},[]);return _0x1ad401[_0x2ff89b(0x191)]['ranges']=_0x11d053,_0x1ad401[_0x2ff89b(0x191)]['ranges'][_0x2ff89b(0xbd)]===0x0&&(_0x1ad401['id']=_0x411476['id']),{'m1Prime':_0x1ad401,'m2Prime':_0x4b46f3};}},So={'m1':_0x3194c5['id'],'m2':_0x116e41['id'],'handler'(_0x47b0e1,_0x57f4b9){const _0x3381da=_0x54481f,_0x7d5e3=_0x12a789[_0x3381da(0xec)](_0x47b0e1),_0x4832d1=_0x12a789['deepClone'](_0x57f4b9);if(_0x47b0e1[_0x3381da(0x191)][_0x3381da(0x15b)]!==_0x57f4b9['params']['unitId']||_0x47b0e1[_0x3381da(0x191)][_0x3381da(0x126)]!==_0x57f4b9[_0x3381da(0x191)][_0x3381da(0x126)])return{'m1Prime':_0x7d5e3,'m2Prime':_0x4832d1};const _0x488466=_0x7d5e3[_0x3381da(0x191)][_0x3381da(0x1a9)][_0x3381da(0x121)]((_0x4c1844,_0x4b9857)=>{const _0x556f02=_0x3381da,_0x1c0d63=_0x4832d1['params'][_0x556f02(0x1a6)],_0x1c9bdf=_0x1c0d63[_0x556f02(0xda)]-_0x1c0d63['startRow']+0x1;let _0x4d6ec2={..._0x4b9857};return _0x1c0d63[_0x556f02(0x11e)]>_0x4b9857[_0x556f02(0xda)]?_0x4d6ec2={..._0x4b9857}:_0x1c0d63[_0x556f02(0x11e)]>=_0x4b9857[_0x556f02(0x11e)]&&_0x1c0d63[_0x556f02(0x11e)]<=_0x4b9857['endRow']&&_0x1c0d63[_0x556f02(0xda)]>_0x4b9857[_0x556f02(0xda)]?(_0x4d6ec2[_0x556f02(0xda)]=_0x1c0d63[_0x556f02(0x11e)]-0x1,_0x1c0d63['startRow']===_0x4b9857[_0x556f02(0x11e)]&&(_0x4d6ec2=null)):_0x1c0d63['startRow']>_0x4b9857[_0x556f02(0x11e)]&&_0x1c0d63[_0x556f02(0xda)]<_0x4b9857['endRow']?_0x4d6ec2['endRow']=_0x4b9857[_0x556f02(0xda)]-_0x1c9bdf:_0x1c0d63[_0x556f02(0x11e)]<_0x4b9857[_0x556f02(0x11e)]&&_0x1c0d63[_0x556f02(0xda)]>=_0x4b9857[_0x556f02(0x11e)]&&_0x1c0d63[_0x556f02(0xda)]<=_0x4b9857[_0x556f02(0xda)]?(_0x4d6ec2[_0x556f02(0x11e)]=_0x1c0d63[_0x556f02(0x11e)],_0x4d6ec2[_0x556f02(0xda)]=_0x4b9857[_0x556f02(0xda)]-_0x1c9bdf,_0x1c0d63['endRow']===_0x4b9857['endRow']&&(_0x4d6ec2=null)):_0x1c0d63[_0x556f02(0x11e)]<=_0x4b9857[_0x556f02(0x11e)]&&_0x1c0d63[_0x556f02(0xda)]>=_0x4b9857[_0x556f02(0xda)]?_0x4d6ec2=null:_0x1c0d63[_0x556f02(0xda)]<_0x4b9857[_0x556f02(0x11e)]&&(_0x4d6ec2[_0x556f02(0x11e)]=_0x4b9857[_0x556f02(0x11e)]-_0x1c9bdf,_0x4d6ec2[_0x556f02(0xda)]=_0x4b9857[_0x556f02(0xda)]-_0x1c9bdf),_0x4d6ec2&&!(_0x4d6ec2[_0x556f02(0x11e)]===_0x4d6ec2['endRow']&&_0x4d6ec2[_0x556f02(0x10c)]===_0x4d6ec2[_0x556f02(0x1ee)])&&_0x4c1844[_0x556f02(0x187)](_0x4d6ec2),_0x4c1844;},[]);return _0x7d5e3[_0x3381da(0x191)][_0x3381da(0x1a9)]=_0x488466,_0x7d5e3[_0x3381da(0x191)][_0x3381da(0x1a9)]['length']===0x0&&(_0x7d5e3['id']=_0x411476['id']),{'m1Prime':_0x7d5e3,'m2Prime':_0x4832d1};}},Wo={'m1':_0x3194c5['id'],'m2':_0x22c7b4['id'],'handler'(_0x3bada8,_0xd8a62c){const _0x1952c6=_0x54481f,_0x3ae165={'m1Prime':[],'m2Prime':[]};if(_0x3bada8[_0x1952c6(0x191)][_0x1952c6(0x15b)]!==_0xd8a62c[_0x1952c6(0x191)][_0x1952c6(0x15b)]||_0x3bada8[_0x1952c6(0x191)]['subUnitId']!==_0xd8a62c['params'][_0x1952c6(0x126)])return _0x3ae165;const _0x1f5ec5=_0x12a789[_0x1952c6(0xec)](_0xd8a62c),_0x25d0c3=_0x1f5ec5['params'][_0x1952c6(0x11d)],_0x5b90df=_0x25d0c3[_0x25d0c3['length']-0x1][_0x1952c6(0x110)];return _0x3bada8['params'][_0x1952c6(0x1a9)][_0x1952c6(0x147)](_0x318dbe=>{const _0xc2f813=_0x1952c6;_0x5b90df&&_0x12b536[_0xc2f813(0x16e)](_0x318dbe,_0x5b90df)&&(_0x5b90df[_0xc2f813(0xd3)]=!0x1,_0x5b90df[_0xc2f813(0x1d1)]=!0x1,_0x5b90df['startRow']=_0x318dbe[_0xc2f813(0x11e)],_0x5b90df[_0xc2f813(0x10c)]=_0x318dbe[_0xc2f813(0x10c)],_0x5b90df['endRow']=_0x318dbe['startRow'],_0x5b90df[_0xc2f813(0x1ee)]=_0x318dbe['startColumn'],_0x5b90df[_0xc2f813(0x13e)]=_0x318dbe[_0xc2f813(0x10c)],_0x5b90df[_0xc2f813(0xf9)]=_0x318dbe['startRow']);}),_0x3ae165[_0x1952c6(0x1e8)][_0x1952c6(0x187)](_0x1f5ec5),_0x3ae165;}},Vo=_0x25b99e=>{const _0x1e04e1=_0x54481f,{order:_0x97a94c}=_0x25b99e,_0x136fa4={};return Object[_0x1e04e1(0x98)](_0x97a94c)['forEach'](_0x2c9436=>{_0x136fa4[_0x97a94c[Number(_0x2c9436)]]=Number(_0x2c9436);}),{..._0x25b99e,'order':_0x136fa4};},_o=(_0x511a68,_0x53e68e)=>{const _0x255201=_0x54481f,_0x28c3a1={};return Array[_0x255201(0xad)](new Set(Object[_0x255201(0x98)](_0x511a68)[_0x255201(0x125)](Object[_0x255201(0x98)](_0x53e68e))[_0x255201(0x21d)](Number)))[_0x255201(0x147)](_0x5e47dd=>{let _0x332759;_0x5e47dd in _0x53e68e?(_0x332759=_0x53e68e[_0x5e47dd],_0x332759 in _0x511a68&&(_0x332759=_0x511a68[_0x332759])):_0x332759=_0x511a68[_0x5e47dd],_0x28c3a1[_0x5e47dd]=_0x332759;}),_0x28c3a1;},Oo={'m1':_0x41be04['id'],'m2':_0x41be04['id'],'handler'(_0x998e8b,_0x410d90){const _0x29817d=_0x54481f,_0x2eeb30={'m1Prime':_0x998e8b,'m2Prime':_0x410d90};if(_0x998e8b[_0x29817d(0x191)][_0x29817d(0x15b)]!==_0x410d90[_0x29817d(0x191)][_0x29817d(0x15b)])return _0x2eeb30;const {range:_0x510375}=_0x998e8b['params'],{range:_0x5d5c6b}=_0x410d90[_0x29817d(0x191)];if(_0x5d5c6b['startColumn']===_0x510375[_0x29817d(0x10c)]&&_0x5d5c6b[_0x29817d(0x1ee)]===_0x510375[_0x29817d(0x1ee)]&&_0x5d5c6b[_0x29817d(0x11e)]<=_0x510375[_0x29817d(0x11e)]&&_0x5d5c6b[_0x29817d(0xda)]>=_0x510375[_0x29817d(0xda)]){const _0xccdf7c=Vo(_0x998e8b['params'])[_0x29817d(0xcb)],_0x5fa08={'id':_0x41be04['id'],'params':{..._0x410d90[_0x29817d(0x191)],'range':_0x5d5c6b,'order':_o(_0xccdf7c,_0x410d90[_0x29817d(0x191)][_0x29817d(0xcb)])}};return{'m1Prime':[],'m2Prime':_0x5fa08};}return _0x12b536[_0x29817d(0x16e)](_0x510375,_0x5d5c6b)?{'error':new Error(_0x29817d(0x214))}:_0x2eeb30;}},re={'id':_0x54481f(0x119),'type':_0x4d0bd2[_0x54481f(0x129)],'handler':()=>!0x0},yo={'m1':re['id'],'m2':'any','handler'(_0x543a24,_0x2a648d){const _0x3abfe5=_0x54481f;return{'error':new Error(_0x3abfe5(0x1f3))};}},No={'m1':'any','m2':re['id'],'handler'(_0x1026c3,_0x462db4){const _0x1a2710=_0x54481f;return _0x1026c3[_0x1a2710(0x191)][_0x1a2710(0x15b)]===_0x462db4[_0x1a2710(0x191)][_0x1a2710(0x15b)]?{'m1Prime':[],'m2Prime':_0x462db4}:{'m1Prime':_0x1026c3,'m2Prime':_0x462db4};}},Do={'m1':_0x2c204d['id'],'m2':_0x2c204d['id'],'handler'(_0x56f9f5,_0x361997){const _0x501e61=_0x54481f,_0x5dec9d={'m1Prime':_0x56f9f5,'m2Prime':_0x361997};if(_0x56f9f5['params'][_0x501e61(0x15b)]!==_0x361997[_0x501e61(0x191)][_0x501e61(0x15b)]||_0x56f9f5[_0x501e61(0x191)][_0x501e61(0x126)]!==_0x361997[_0x501e61(0x191)][_0x501e61(0x126)])return _0x5dec9d;const _0x5daf4f=_0x56f9f5[_0x501e61(0x191)][_0x501e61(0x230)],_0x905144=_0x361997[_0x501e61(0x191)][_0x501e61(0x230)],_0x7843f4={},_0x56dcd6=_0x12a789['deepClone'](_0x56f9f5),_0x379f9b=new Set([...Object['keys'](_0x5daf4f)[_0x501e61(0x21d)](Number),...Object[_0x501e61(0x98)](_0x905144)[_0x501e61(0x21d)](Number)]);for(const _0x21c113 of _0x379f9b){const _0xf54c9=_0x5daf4f[_0x21c113],_0xd8a27=_0x905144[_0x21c113];if(_0xf54c9&&_0xd8a27){const _0x1db1b0={..._0xf54c9,..._0xd8a27};_0x7843f4[_0x21c113]=_0x1db1b0;}else _0xf54c9?_0x7843f4[_0x21c113]=_0xf54c9:_0xd8a27&&(_0x7843f4[_0x21c113]=_0xd8a27);}return _0x56dcd6[_0x501e61(0x191)][_0x501e61(0x230)]=_0x7843f4,{'m1Prime':_0x56dcd6,'m2Prime':_0x361997};}},Ao={'m1':_0x311d1a['id'],'m2':_0x311d1a['id'],'handler'(_0xdb6091,_0x587ae3){const _0x310b93=_0x54481f;if(_0xdb6091[_0x310b93(0x191)]['unitId']!==_0x587ae3[_0x310b93(0x191)]['unitId']||_0xdb6091[_0x310b93(0x191)][_0x310b93(0x126)]!==_0x587ae3[_0x310b93(0x191)][_0x310b93(0x126)])return{'m1Prime':_0xdb6091,'m2Prime':_0x587ae3};const _0x26f5c9=_0xdb6091['params']['cfId']||_0xdb6091[_0x310b93(0x191)][_0x310b93(0xe7)][_0x310b93(0x228)],_0x467d4d=_0x587ae3[_0x310b93(0x191)][_0x310b93(0x228)]||_0x587ae3[_0x310b93(0x191)]['rule'][_0x310b93(0x228)];if(_0x26f5c9!==_0x467d4d)return{'m1Prime':_0xdb6091,'m2Prime':_0x587ae3};const _0x4d5509=_0x12a789['deepClone'](_0x587ae3);return{'m1Prime':[],'m2Prime':_0x4d5509};}};function To(_0x31777f,_0x559017){const _0x22c63e=_0x54481f,_0x59224f=_0x31777f[_0x22c63e(0x121)]((_0x4fadc1,_0x33dd1b)=>(_0x4fadc1[_0x22c63e(0x204)](_0x33dd1b[_0x22c63e(0x1f8)],!0x0),_0x4fadc1),new Map());return _0x559017[_0x22c63e(0x161)](_0x119aa9=>_0x59224f[_0x22c63e(0x1d8)](_0x119aa9[_0x22c63e(0x1f8)])!==void 0x0);}function Lo(_0xbd1ebd,_0x53b77b){const _0x5d239c=_0x54481f,_0x303bac=_0xbd1ebd['drawingIds'];return _0x53b77b[_0x5d239c(0x113)][_0x5d239c(0x161)](_0x2e7225=>_0x303bac[_0x5d239c(0x1ac)](_0x2e7225)!==-0x1);}const {UPDATE:ko,REMOVE:xo,ARRANGE:xe}=_0x1fd798,Ho={'m1':_0x5a9d9c['id'],'m2':_0x5a9d9c['id'],'handler'(_0x3b01fc,_0x11ebaf){const _0x18b521=_0x54481f,_0x2bbb35=_0x3b01fc[_0x18b521(0x191)],_0x2d304b=_0x11ebaf[_0x18b521(0x191)];if(_0x2bbb35[_0x18b521(0x15b)]!==_0x2d304b[_0x18b521(0x15b)]||_0x2bbb35[_0x18b521(0x126)]!==_0x2d304b['subUnitId'])return{'m1Prime':_0x3b01fc,'m2Prime':_0x11ebaf};const _0x32550d=_0x2bbb35[_0x18b521(0xcc)],_0x3ffed8=_0x2d304b[_0x18b521(0xcc)];if(_0x32550d===xo&&_0x3ffed8===ko&&To(_0x2bbb35[_0x18b521(0x10a)],_0x2d304b[_0x18b521(0x10a)]))return{'m1Prime':_0x12a789[_0x18b521(0xec)](_0x3b01fc),'m2Prime':[]};if(_0x32550d===xe&&_0x3ffed8===xe&&Lo(_0x2bbb35['objects'],_0x2d304b['objects'])){const _0x3d915d=_0x12a789['deepClone'](_0x3b01fc),_0x168cc6=_0x12a789['deepClone'](_0x11ebaf);return{'m1Prime':{..._0x3d915d,'params':{..._0x3d915d['params'],'op':_0x4f3477[_0x18b521(0xcc)][_0x18b521(0x1de)](_0x3d915d[_0x18b521(0x191)]['op'],_0x168cc6[_0x18b521(0x191)]['op'],_0x18b521(0xaa))}},'m2Prime':{..._0x168cc6,'params':{..._0x168cc6['params'],'op':_0x4f3477['type']['transform'](_0x168cc6[_0x18b521(0x191)]['op'],_0x3d915d[_0x18b521(0x191)]['op'],_0x18b521(0x22c))}}};}return{'m1Prime':_0x3b01fc,'m2Prime':_0x11ebaf};}},Fo={'m1':_0x4310ec['id'],'m2':_0x4310ec['id'],'handler'(_0x9f1306,_0x51356e){const _0x3a9f23=_0x54481f,_0x4b4f81={'m1Prime':_0x9f1306,'m2Prime':_0x51356e};return _0x9f1306['params'][_0x3a9f23(0x15b)]!==_0x51356e[_0x3a9f23(0x191)][_0x3a9f23(0x15b)]||_0x9f1306[_0x3a9f23(0x191)][_0x3a9f23(0x126)]!==_0x51356e[_0x3a9f23(0x191)][_0x3a9f23(0x126)]?_0x4b4f81:{'error':new Error(_0x3a9f23(0x1b3))};}},Bo={'m1':_0x30c2c8['id'],'m2':_0x180381['id'],'handler'(_0x5e2b6c,_0x10f031){const _0x5aeee2=_0x54481f;if(_0x5e2b6c['params'][_0x5aeee2(0x15b)]!==_0x10f031[_0x5aeee2(0x191)][_0x5aeee2(0x15b)]||_0x5e2b6c[_0x5aeee2(0x191)][_0x5aeee2(0x126)]!==_0x10f031[_0x5aeee2(0x191)][_0x5aeee2(0x126)])return{'m1Prime':_0x5e2b6c,'m2Prime':_0x10f031};const _0x1e7a9f=_0x12a789['deepClone'](_0x5e2b6c),_0x981408=_0x12a789[_0x5aeee2(0xec)](_0x10f031),_0x24aefa=_0x1e7a9f['params'][_0x5aeee2(0xd4)],_0x181ec8=_0x981408[_0x5aeee2(0x191)][_0x5aeee2(0x1a9)];for(const _0x4123a6 in _0x24aefa){const _0x41d350=_0x24aefa[_0x4123a6][_0x5aeee2(0x1a9)],_0x45a18d=[];_0x41d350[_0x5aeee2(0x147)](_0x2d1811=>{const _0x19d435=_0x5aeee2,_0x209608=ee(_0x2d1811,_0x181ec8);_0x209608['length']>0x0&&_0x45a18d[_0x19d435(0x187)](..._0x209608);}),_0x24aefa[_0x4123a6][_0x5aeee2(0x1a9)]=_0x45a18d;}return{'m1Prime':_0x1e7a9f,'m2Prime':_0x981408};}},Go={'m1':_0x30c2c8['id'],'m2':_0x30c2c8['id'],'handler'(_0x26d59f,_0x526329){const _0x548055=_0x54481f;if(_0x26d59f[_0x548055(0x191)][_0x548055(0x15b)]!==_0x526329[_0x548055(0x191)][_0x548055(0x15b)]||_0x26d59f[_0x548055(0x191)][_0x548055(0x126)]!==_0x526329['params']['subUnitId'])return{'m1Prime':_0x26d59f,'m2Prime':_0x526329};const _0x2b74e2=_0x12a789[_0x548055(0xec)](_0x26d59f),_0x57ca3e=_0x12a789[_0x548055(0xec)](_0x526329),_0x89f423=_0x2b74e2[_0x548055(0x191)]['values'],_0x2ed695=Object['values'](_0x57ca3e[_0x548055(0x191)]['values'])['map'](_0x25f1c2=>_0x25f1c2['ranges'])[_0x548055(0xe4)]();for(const _0x18fa5b in _0x89f423){const _0x4176f3=_0x89f423[_0x18fa5b][_0x548055(0x1a9)],_0x4fb43e=[];_0x4176f3[_0x548055(0x147)](_0x3c2f73=>{const _0x2600b6=_0x548055,_0x2a3859=ee(_0x3c2f73,_0x2ed695);_0x2a3859['length']>0x0&&_0x4fb43e[_0x2600b6(0x187)](..._0x2a3859);}),_0x89f423[_0x18fa5b][_0x548055(0x1a9)]=_0x4fb43e;}return{'m1Prime':_0x2b74e2,'m2Prime':_0x57ca3e};}},jo={'m1':_0x37e736['id'],'m2':_0x41a8ef['id'],'handler':(_0x470128,_0x28b18a)=>{const _0x1c36a0=_0x54481f,_0x207fdc={'m1Prime':_0x470128,'m2Prime':_0x28b18a};return _0x470128['params'][_0x1c36a0(0x15b)]!==_0x28b18a[_0x1c36a0(0x191)][_0x1c36a0(0x15b)]||_0x470128[_0x1c36a0(0x191)]['subUnitId']!==_0x28b18a[_0x1c36a0(0x191)]['subUnitId']?_0x207fdc:{'error':new Error(_0x1c36a0(0x195))};}},$o={'m1':_0x37e736['id'],'m2':_0x1c40ba['id'],'handler':(_0x1e32f0,_0x419cd4)=>{const _0xf6f43b=_0x54481f,_0x1a9316={'m1Prime':_0x1e32f0,'m2Prime':_0x419cd4};if(_0x1e32f0[_0xf6f43b(0x191)][_0xf6f43b(0x15b)]!==_0x419cd4[_0xf6f43b(0x191)]['unitId']||_0x1e32f0['params'][_0xf6f43b(0x126)]!==_0x419cd4[_0xf6f43b(0x191)][_0xf6f43b(0x126)])return _0x1a9316;const _0x31863a=_0x1e32f0[_0xf6f43b(0x191)][_0xf6f43b(0xe7)][_0xf6f43b(0x1a9)],_0x246585=_0x419cd4[_0xf6f43b(0x191)][_0xf6f43b(0xe7)]['ranges'];return _0x31863a[_0xf6f43b(0x161)](_0x32ec7e=>_0x246585['some'](_0xc49939=>_0x12b536[_0xf6f43b(0x16e)](_0x32ec7e,_0xc49939)))?{'error':new Error(_0xf6f43b(0x149))}:_0x1a9316;}},Yo={'m1':_0x37e736['id'],'m2':_0x5504b0['id'],'handler':(_0x4abbe0,_0x2126d8)=>{const _0x3b2c92=_0x54481f,_0x4696d3={'m1Prime':_0x4abbe0,'m2Prime':_0x2126d8};if(_0x4abbe0[_0x3b2c92(0x191)][_0x3b2c92(0x15b)]!==_0x2126d8[_0x3b2c92(0x191)][_0x3b2c92(0x15b)]||_0x4abbe0[_0x3b2c92(0x191)]['subUnitId']!==_0x2126d8['params']['subUnitId'])return _0x4696d3;const _0x340654=_0x4abbe0[_0x3b2c92(0x191)][_0x3b2c92(0xe7)][_0x3b2c92(0x1a9)],_0x20babd=_0x2126d8[_0x3b2c92(0x191)][_0x3b2c92(0x1a9)];return _0x340654[_0x3b2c92(0x161)](_0x10ef8a=>_0x20babd[_0x3b2c92(0x161)](_0x1a365a=>_0x12b536[_0x3b2c92(0x16e)](_0x10ef8a,_0x1a365a)))?{'error':new Error(_0x3b2c92(0xde))}:_0x4696d3;}},Jo={'m1':_0x37e736['id'],'m2':_0xfb6287['id'],'handler':(_0x48546a,_0xc46550)=>{const _0x869e6b=_0x54481f,_0x1933bc={'m1Prime':_0x48546a,'m2Prime':_0xc46550};return _0x48546a['params'][_0x869e6b(0x15b)]!==_0xc46550['params']['unitId']||_0x48546a['params'][_0x869e6b(0x126)]!==_0xc46550[_0x869e6b(0x191)][_0x869e6b(0xe7)][_0x869e6b(0x126)]?_0x1933bc:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20add\x20worksheet\x20protection')};}},Xo={'m1':_0x37e736['id'],'m2':_0x2d6c0f['id'],'handler':(_0x325a33,_0x2de987)=>{const _0x137918=_0x54481f,_0x12d1cc={'m1Prime':_0x325a33,'m2Prime':_0x2de987};return _0x325a33['params'][_0x137918(0x15b)]!==_0x2de987[_0x137918(0x191)]['unitId']||_0x325a33['params'][_0x137918(0x126)]!==_0x2de987[_0x137918(0x191)]['subUnitId']?_0x12d1cc:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20delete\x20conditional\x20formatting\x20rule')};}},Ko={'m1':_0x37e736['id'],'m2':_0x3732ba['id'],'handler':(_0x43b17b,_0x4da3e1)=>{const _0x41a580=_0x54481f,_0x25805d={'m1Prime':_0x43b17b,'m2Prime':_0x4da3e1};if(_0x43b17b[_0x41a580(0x191)][_0x41a580(0x15b)]!==_0x4da3e1[_0x41a580(0x191)][_0x41a580(0x15b)]||_0x43b17b[_0x41a580(0x191)][_0x41a580(0x126)]!==_0x4da3e1[_0x41a580(0x191)][_0x41a580(0x126)])return _0x25805d;const _0x4c63fd=_0x43b17b[_0x41a580(0x191)][_0x41a580(0xe7)]['ranges'],_0x497345=_0x4da3e1[_0x41a580(0x191)][_0x41a580(0x1a6)];return _0x4c63fd[_0x41a580(0x161)](_0xd5047c=>_0x12b536[_0x41a580(0x16e)](_0xd5047c,_0x497345))?{'error':new Error(_0x41a580(0x206))}:_0x25805d;}},zo={'m1':_0x37e736['id'],'m2':_0xa7a746['id'],'handler':(_0x506387,_0x5b9378)=>{const _0x1166fd=_0x54481f,_0x4ec45c={'m1Prime':_0x506387,'m2Prime':_0x5b9378};if(_0x506387[_0x1166fd(0x191)][_0x1166fd(0x15b)]!==_0x5b9378[_0x1166fd(0x191)]['unitId']||_0x506387['params'][_0x1166fd(0x126)]!==_0x5b9378[_0x1166fd(0x191)]['subUnitId'])return _0x4ec45c;const _0x2f2266=_0x506387[_0x1166fd(0x191)][_0x1166fd(0xe7)][_0x1166fd(0x1a9)],_0x59e96d=_0x5b9378[_0x1166fd(0x191)][_0x1166fd(0x1a6)];return _0x2f2266[_0x1166fd(0x161)](_0x18dd60=>_0x12b536['intersects'](_0x18dd60,_0x59e96d))?{'error':new Error(_0x1166fd(0x18f))}:_0x4ec45c;}},qo={'m1':_0x37e736['id'],'m2':_0x1c90f1['id'],'handler':(_0x2d608a,_0xfd3933)=>{const _0x5e159a=_0x54481f,_0x9e1835={'m1Prime':_0x2d608a,'m2Prime':_0xfd3933};if(_0x2d608a[_0x5e159a(0x191)][_0x5e159a(0x15b)]!==_0xfd3933[_0x5e159a(0x191)][_0x5e159a(0x15b)]||_0x2d608a[_0x5e159a(0x191)][_0x5e159a(0x126)]!==_0xfd3933[_0x5e159a(0x191)]['subUnitId'])return _0x9e1835;const _0x507141=_0x2d608a[_0x5e159a(0x191)]['rule'][_0x5e159a(0x1a9)],_0x1d0718=[_0xfd3933[_0x5e159a(0x191)][_0x5e159a(0x9d)],_0xfd3933[_0x5e159a(0x191)]['targetRange']];return _0x507141[_0x5e159a(0x161)](_0x2e7b0d=>_0x1d0718[_0x5e159a(0x161)](_0x585e75=>_0x12b536['intersects'](_0x2e7b0d,_0x585e75)))?{'error':new Error(_0x5e159a(0x1f1))}:_0x9e1835;}},Zo={'m1':_0x37e736['id'],'m2':_0xeb63e6['id'],'handler':(_0x4aaa56,_0x23e0aa)=>{const _0x3bf60e=_0x54481f,_0x3a7c53={'m1Prime':_0x4aaa56,'m2Prime':_0x23e0aa};if(_0x4aaa56['params'][_0x3bf60e(0x15b)]!==_0x23e0aa['params']['unitId']||_0x4aaa56['params'][_0x3bf60e(0x126)]!==_0x23e0aa[_0x3bf60e(0x191)][_0x3bf60e(0xad)]['subUnitId'])return _0x3a7c53;const _0x33de9f=_0x4aaa56[_0x3bf60e(0x191)][_0x3bf60e(0xe7)][_0x3bf60e(0x1a9)],_0x5e48e3=new _0x3597fb(_0x23e0aa[_0x3bf60e(0x191)]['from'][_0x3bf60e(0x9e)])[_0x3bf60e(0xa7)](),_0x4af267=new _0x3597fb(_0x23e0aa[_0x3bf60e(0x191)]['to']['value'])[_0x3bf60e(0xa7)](),_0x3aec71=[_0x5e48e3,_0x4af267];return _0x33de9f[_0x3bf60e(0x161)](_0x52fb31=>_0x3aec71[_0x3bf60e(0x161)](_0xd515e1=>_0x12b536[_0x3bf60e(0x16e)](_0x52fb31,_0xd515e1)))?{'error':new Error(_0x3bf60e(0x213))}:_0x3a7c53;}},Qo={'m1':_0x37e736['id'],'m2':_0xfa530e['id'],'handler':(_0x2f71b1,_0x58c2e6)=>{const _0x3e030e=_0x54481f,_0x2f56ce={'m1Prime':_0x2f71b1,'m2Prime':_0x58c2e6};if(_0x2f71b1[_0x3e030e(0x191)]['unitId']!==_0x58c2e6['params']['unitId']||_0x2f71b1[_0x3e030e(0x191)][_0x3e030e(0x126)]!==_0x58c2e6[_0x3e030e(0x191)][_0x3e030e(0x126)])return _0x2f56ce;const _0x2dfb60=_0x2f71b1[_0x3e030e(0x191)][_0x3e030e(0xe7)][_0x3e030e(0x1a9)],_0x251cd7=[_0x58c2e6[_0x3e030e(0x191)]['sourceRange'],_0x58c2e6[_0x3e030e(0x191)][_0x3e030e(0x12c)]];return _0x2dfb60['some'](_0x1666fc=>_0x251cd7['some'](_0x3259f9=>_0x12b536[_0x3e030e(0x16e)](_0x1666fc,_0x3259f9)))?{'error':new Error(_0x3e030e(0xff))}:_0x2f56ce;}},ti={'m1':_0x37e736['id'],'m2':_0x491a86['id'],'handler':(_0x275d06,_0x2d736e)=>{const _0x187100=_0x54481f,_0x3fb58f={'m1Prime':_0x275d06,'m2Prime':_0x2d736e};if(_0x275d06[_0x187100(0x191)][_0x187100(0x15b)]!==_0x2d736e[_0x187100(0x191)][_0x187100(0x15b)]||_0x275d06[_0x187100(0x191)][_0x187100(0x126)]!==_0x2d736e[_0x187100(0x191)][_0x187100(0x126)])return _0x3fb58f;const _0x551e37=_0x275d06[_0x187100(0x191)][_0x187100(0xe7)][_0x187100(0x1a9)],_0x5f1205=_0x2d736e['params']['range'];return _0x551e37[_0x187100(0x161)](_0x2f0be9=>_0x12b536[_0x187100(0x16e)](_0x2f0be9,_0x5f1205))?{'error':new Error(_0x187100(0x1cb))}:_0x3fb58f;}},ei={'m1':_0x37e736['id'],'m2':_0x42cad4['id'],'handler':(_0x5144b8,_0x4005bb)=>{const _0x28324d=_0x54481f,_0x442bc9={'m1Prime':_0x5144b8,'m2Prime':_0x4005bb};return _0x5144b8[_0x28324d(0x191)]['unitId']!==_0x4005bb[_0x28324d(0x191)]['unitId']||_0x5144b8['params'][_0x28324d(0x126)]!==_0x4005bb[_0x28324d(0x191)]['subUnitId']?_0x442bc9:{'error':new Error(_0x28324d(0x211))};}},ri={'m1':_0x37e736['id'],'m2':_0x116e41['id'],'handler':(_0x2aae96,_0x4526bb)=>{const _0x105dc6=_0x54481f,_0x218ab6={'m1Prime':_0x2aae96,'m2Prime':_0x4526bb};if(_0x2aae96[_0x105dc6(0x191)][_0x105dc6(0x15b)]!==_0x4526bb[_0x105dc6(0x191)]['unitId']||_0x2aae96[_0x105dc6(0x191)][_0x105dc6(0x126)]!==_0x4526bb['params'][_0x105dc6(0x126)])return _0x218ab6;const _0x28a226=_0x2aae96[_0x105dc6(0x191)]['rule'][_0x105dc6(0x1a9)],_0x249130=_0x4526bb[_0x105dc6(0x191)][_0x105dc6(0x1a6)];return _0x28a226[_0x105dc6(0x161)](_0x5dafa9=>_0x12b536[_0x105dc6(0x16e)](_0x5dafa9,_0x249130))?{'error':new Error(_0x105dc6(0x1f4))}:_0x218ab6;}},ni={'m1':_0x37e736['id'],'m2':_0x431d63['id'],'handler':(_0x4ec1da,_0x6509fd)=>{const _0x42b457=_0x54481f,_0x580788={'m1Prime':_0x4ec1da,'m2Prime':_0x6509fd};return _0x4ec1da[_0x42b457(0x191)][_0x42b457(0x15b)]!==_0x6509fd[_0x42b457(0x191)][_0x42b457(0x15b)]||_0x4ec1da[_0x42b457(0x191)][_0x42b457(0x126)]!==_0x6509fd[_0x42b457(0x191)][_0x42b457(0x126)]?_0x580788:{'error':new Error(_0x42b457(0x15c))};}},ai={'m1':_0x37e736['id'],'m2':_0x3194c5['id'],'handler':(_0x4867bd,_0x2c748e)=>{const _0xe79512=_0x54481f,_0x2b5fa9={'m1Prime':_0x4867bd,'m2Prime':_0x2c748e};if(_0x4867bd[_0xe79512(0x191)][_0xe79512(0x15b)]!==_0x2c748e[_0xe79512(0x191)]['unitId']||_0x4867bd[_0xe79512(0x191)][_0xe79512(0x126)]!==_0x2c748e['params']['subUnitId'])return _0x2b5fa9;const _0x1cf0e9=_0x4867bd[_0xe79512(0x191)][_0xe79512(0xe7)]['ranges'],_0x4248ff=_0x2c748e['params'][_0xe79512(0x1a9)];return _0x1cf0e9['some'](_0x475bf0=>_0x4248ff[_0xe79512(0x161)](_0x4326b8=>_0x12b536[_0xe79512(0x16e)](_0x475bf0,_0x4326b8)))?{'error':new Error(_0xe79512(0x170))}:_0x2b5fa9;}},si={'m1':_0x37e736['id'],'m2':_0x311d1a['id'],'handler':(_0x3b833b,_0x15b770)=>{const _0x4c9a86=_0x54481f,_0x42e3c0={'m1Prime':_0x3b833b,'m2Prime':_0x15b770};if(_0x3b833b['params'][_0x4c9a86(0x15b)]!==_0x15b770['params'][_0x4c9a86(0x15b)]||_0x3b833b[_0x4c9a86(0x191)][_0x4c9a86(0x126)]!==_0x15b770[_0x4c9a86(0x191)][_0x4c9a86(0x126)])return _0x42e3c0;const _0x5cc19c=_0x3b833b[_0x4c9a86(0x191)][_0x4c9a86(0xe7)]['ranges'],_0x9d7815=_0x15b770['params'][_0x4c9a86(0xe7)]['ranges'];return _0x5cc19c[_0x4c9a86(0x161)](_0x4404da=>_0x9d7815[_0x4c9a86(0x161)](_0x23060d=>_0x12b536[_0x4c9a86(0x16e)](_0x4404da,_0x23060d)))?{'error':new Error(_0x4c9a86(0x142))}:_0x42e3c0;}},oi={'m1':_0x37e736['id'],'m2':_0x4310ec['id'],'handler':(_0x46a999,_0x5541a2)=>{const _0x943e2b=_0x54481f,_0x40fd89={'m1Prime':_0x46a999,'m2Prime':_0x5541a2};if(_0x46a999[_0x943e2b(0x191)][_0x943e2b(0x15b)]!==_0x5541a2[_0x943e2b(0x191)][_0x943e2b(0x15b)]||_0x46a999['params'][_0x943e2b(0x126)]!==_0x5541a2[_0x943e2b(0x191)][_0x943e2b(0x126)])return _0x40fd89;const _0x40a891=_0x46a999[_0x943e2b(0x191)][_0x943e2b(0xe7)][_0x943e2b(0x1a9)],_0x1d3567=[{'startRow':_0x5541a2[_0x943e2b(0x191)]['startRow'],'endRow':_0x5541a2[_0x943e2b(0x191)][_0x943e2b(0x11e)],'startColumn':_0x5541a2[_0x943e2b(0x191)][_0x943e2b(0x10c)],'endColumn':_0x5541a2[_0x943e2b(0x191)][_0x943e2b(0x10c)]}];return _0x40a891[_0x943e2b(0x161)](_0x327729=>_0x1d3567[_0x943e2b(0x161)](_0x4f77ed=>_0x12b536[_0x943e2b(0x16e)](_0x327729,_0x4f77ed)))?{'error':new Error(_0x943e2b(0x169))}:_0x40fd89;}},ii={'m1':_0x37e736['id'],'m2':_0x30c2c8['id'],'handler':(_0xe8ec1e,_0x2ab4d9)=>{const _0x36e1ec=_0x54481f,_0x2c1380={'m1Prime':_0xe8ec1e,'m2Prime':_0x2ab4d9};return _0xe8ec1e[_0x36e1ec(0x191)][_0x36e1ec(0x15b)]!==_0x2ab4d9['params']['unitId']||_0xe8ec1e[_0x36e1ec(0x191)]['subUnitId']!==_0x2ab4d9[_0x36e1ec(0x191)][_0x36e1ec(0x126)]?_0x2c1380:{'error':new Error(_0x36e1ec(0x136))};}},di={'m1':_0x37e736['id'],'m2':_0x37e736['id'],'handler':(_0x1a9a18,_0x40469b)=>{const _0x319d94=_0x54481f,_0x1ddd6b={'m1Prime':_0x1a9a18,'m2Prime':_0x40469b};if(_0x1a9a18[_0x319d94(0x191)][_0x319d94(0x15b)]!==_0x40469b['params'][_0x319d94(0x15b)]||_0x1a9a18[_0x319d94(0x191)][_0x319d94(0x126)]!==_0x40469b[_0x319d94(0x191)]['subUnitId'])return _0x1ddd6b;const _0x2c5ab4=_0x1a9a18[_0x319d94(0x191)][_0x319d94(0xe7)][_0x319d94(0x1a9)],_0x5ec0bf=_0x40469b['params'][_0x319d94(0xe7)][_0x319d94(0x1a9)];return _0x2c5ab4[_0x319d94(0x161)](_0x2740fa=>_0x5ec0bf[_0x319d94(0x161)](_0x296959=>_0x12b536[_0x319d94(0x16e)](_0x2740fa,_0x296959)))?{'error':new Error(_0x319d94(0x1aa))}:_0x1ddd6b;}},mi={'m1':_0x37e736['id'],'m2':_0x59880b['id'],'handler':(_0x2c3a6b,_0x50ef93)=>{const _0x36a1dd=_0x54481f,_0x24c460={'m1Prime':_0x2c3a6b,'m2Prime':_0x50ef93};if(_0x2c3a6b[_0x36a1dd(0x191)][_0x36a1dd(0x15b)]!==_0x50ef93['params'][_0x36a1dd(0x15b)]||_0x2c3a6b[_0x36a1dd(0x191)][_0x36a1dd(0x126)]!==_0x50ef93['params'][_0x36a1dd(0x126)])return _0x24c460;const _0x4a3d10=_0x2c3a6b[_0x36a1dd(0x191)][_0x36a1dd(0xe7)][_0x36a1dd(0x1a9)],_0x970e8a=new _0x3597fb(_0x50ef93[_0x36a1dd(0x191)][_0x36a1dd(0xaf)])[_0x36a1dd(0xa7)]();return _0x4a3d10[_0x36a1dd(0x161)](_0x2e62c3=>_0x12b536[_0x36a1dd(0x16e)](_0x2e62c3,_0x970e8a))?{'error':new Error(_0x36a1dd(0x16c))}:_0x24c460;}},ui={'m1':_0x37e736['id'],'m2':_0x2d1a15['id'],'handler':(_0x75a936,_0x1ec47e)=>{const _0x143b70=_0x54481f,_0x2a7ec7={'m1Prime':_0x75a936,'m2Prime':_0x1ec47e};if(_0x75a936[_0x143b70(0x191)][_0x143b70(0x15b)]!==_0x1ec47e['params'][_0x143b70(0x15b)]||_0x75a936[_0x143b70(0x191)]['subUnitId']!==_0x1ec47e[_0x143b70(0x191)][_0x143b70(0x126)])return _0x2a7ec7;const _0x4da1bf=_0x75a936[_0x143b70(0x191)][_0x143b70(0xe7)][_0x143b70(0x1a9)],_0x4c8da9=_0x1ec47e[_0x143b70(0x191)][_0x143b70(0x1a9)];return _0x4da1bf[_0x143b70(0x161)](_0x34e3e6=>_0x4c8da9[_0x143b70(0x161)](_0x394b90=>_0x12b536[_0x143b70(0x16e)](_0x34e3e6,_0x394b90)))?{'error':new Error(_0x143b70(0x1bc))}:_0x2a7ec7;}},li={'m1':_0x37e736['id'],'m2':_0x62fd77['id'],'handler':(_0x389b5d,_0x48be5a)=>{const _0x5b1024=_0x54481f,_0x251329={'m1Prime':_0x389b5d,'m2Prime':_0x48be5a};return _0x389b5d[_0x5b1024(0x191)]['unitId']!==_0x48be5a[_0x5b1024(0x191)][_0x5b1024(0x15b)]||_0x389b5d[_0x5b1024(0x191)]['subUnitId']!==_0x48be5a[_0x5b1024(0x191)][_0x5b1024(0x126)]?_0x251329:{'error':new Error('set\x20range\x20protection\x20is\x20conflict\x20with\x20update\x20comment')};}},ci={'m1':_0x37e736['id'],'m2':_0x5ad83d['id'],'handler':(_0x416a1e,_0x107678)=>{const _0x4c5f3c=_0x54481f,_0xa80d86={'m1Prime':_0x416a1e,'m2Prime':_0x107678};return _0x416a1e[_0x4c5f3c(0x191)][_0x4c5f3c(0x15b)]!==_0x107678[_0x4c5f3c(0x191)][_0x4c5f3c(0x15b)]||_0x416a1e[_0x4c5f3c(0x191)][_0x4c5f3c(0x126)]!==_0x107678[_0x4c5f3c(0x191)][_0x4c5f3c(0x126)]?_0xa80d86:{'error':new Error(_0x4c5f3c(0x127))};}},pi={'m1':_0x59880b['id'],'m2':_0x5504b0['id'],'handler'(_0x41c20b,_0x36e213){const _0x4355da=_0x54481f,_0x5b3f21=mr[_0x4355da(0x12a)](_0x36e213,_0x41c20b);return at(_0x5b3f21)?{'m1Prime':_0x5b3f21[_0x4355da(0x1e8)],'m2Prime':_0x5b3f21[_0x4355da(0x1e2)]}:_0x5b3f21;}},fi={'m1':_0x59880b['id'],'m2':_0xeb63e6['id'],'handler'(_0x82e66a,_0x22efc4){const _0x16c086=_0x54481f,_0x4eb9f7={'m1Prime':_0x82e66a,'m2Prime':_0x22efc4};if(_0x82e66a[_0x16c086(0x191)][_0x16c086(0x15b)]!==_0x22efc4[_0x16c086(0x191)][_0x16c086(0x15b)])return _0x4eb9f7;const _0x1072a1=new _0x3597fb(_0x82e66a[_0x16c086(0x191)][_0x16c086(0xaf)])[_0x16c086(0xa7)](),_0x1337f6=new _0x3597fb(_0x22efc4[_0x16c086(0x191)][_0x16c086(0xad)][_0x16c086(0x9e)])[_0x16c086(0xa7)](),_0x30eda6=new _0x3597fb(_0x22efc4[_0x16c086(0x191)]['to'][_0x16c086(0x9e)])['getDataRange']();return _0x82e66a[_0x16c086(0x191)][_0x16c086(0x126)]===_0x22efc4[_0x16c086(0x191)][_0x16c086(0xad)]['subUnitId']&&_0x12b536[_0x16c086(0x16e)](_0x1072a1,_0x1337f6)||_0x82e66a[_0x16c086(0x191)][_0x16c086(0x126)]===_0x22efc4['params']['to']['subUnitId']&&_0x12b536[_0x16c086(0x16e)](_0x1072a1,_0x30eda6)?{'error':new Error(_0x16c086(0xfa))}:_0x4eb9f7;}},Ri={'m1':_0x59880b['id'],'m2':_0x41be04['id'],'handler'(_0x590a22,_0x58a64e){const _0x3ddeed=_0x54481f;var _0x5a1ccb,_0x28d225;const _0x50a344={'m1Prime':_0x590a22,'m2Prime':_0x58a64e};if(_0x590a22[_0x3ddeed(0x191)][_0x3ddeed(0x15b)]!==_0x58a64e[_0x3ddeed(0x191)][_0x3ddeed(0x15b)]||_0x590a22[_0x3ddeed(0x191)][_0x3ddeed(0x126)]!==_0x58a64e[_0x3ddeed(0x191)][_0x3ddeed(0x126)])return _0x50a344;const _0x1cfb96=_0x12a789[_0x3ddeed(0xec)](_0x590a22),{cellValue:_0x2e01c7}=_0x1cfb96[_0x3ddeed(0x191)],_0x4d98b2=new _0x3597fb(_0x2e01c7),{range:_0x3b0994}=_0x58a64e['params'],_0x551a1d=new Map();for(let _0x8833b3=_0x3b0994[_0x3ddeed(0x10c)];_0x8833b3<=_0x3b0994['endColumn'];_0x8833b3++)for(let _0x4ebf4d=_0x3b0994[_0x3ddeed(0x11e)];_0x4ebf4d<=_0x3b0994[_0x3ddeed(0xda)];_0x4ebf4d++)if(((_0x5a1ccb=_0x2e01c7==null?void 0x0:_0x2e01c7[_0x4ebf4d])==null?void 0x0:_0x5a1ccb[_0x8833b3])!==void 0x0){const _0x16e811=(_0x28d225=_0x58a64e[_0x3ddeed(0x191)][_0x3ddeed(0xcb)][_0x4ebf4d])!=null?_0x28d225:_0x4ebf4d;_0x16e811!==_0x4ebf4d&&(_0x551a1d[_0x3ddeed(0x1e1)](_0x16e811)||_0x551a1d[_0x3ddeed(0x204)](_0x16e811,new Map()),_0x551a1d[_0x3ddeed(0x1d8)](_0x16e811)[_0x3ddeed(0x204)](_0x8833b3,_0x2e01c7[_0x4ebf4d][_0x8833b3]),_0x4d98b2[_0x3ddeed(0xbb)](_0x4ebf4d,_0x8833b3));}return _0x551a1d['forEach']((_0x205647,_0x11f68d)=>{const _0x17a162=_0x3ddeed;_0x205647[_0x17a162(0x147)]((_0x548db4,_0x2f93e4)=>{const _0x5d2197=_0x17a162;_0x4d98b2[_0x5d2197(0x1a3)](_0x11f68d,_0x2f93e4,_0x548db4);});}),{'m1Prime':_0x1cfb96,'m2Prime':_0x58a64e};}},hi={'m1':_0x59880b['id'],'m2':_0x59880b['id'],'handler'(_0x36dfa5,_0x2dcfe4){const _0x1746ba=_0x54481f,_0xe09323={'m1Prime':_0x36dfa5,'m2Prime':_0x2dcfe4};if(_0x36dfa5[_0x1746ba(0x191)][_0x1746ba(0x15b)]!==_0x2dcfe4['params'][_0x1746ba(0x15b)]||_0x36dfa5[_0x1746ba(0x191)]['subUnitId']!==_0x2dcfe4[_0x1746ba(0x191)][_0x1746ba(0x126)])return _0xe09323;const _0x2dcd9b=_0x12a789[_0x1746ba(0xec)](_0x36dfa5),_0x1cfb83=_0x12a789[_0x1746ba(0xec)](_0x2dcfe4),_0x106d12=_0x12a789[_0x1746ba(0xec)](_0x2dcfe4),_0x173827=new _0x3597fb(_0x2dcd9b['params'][_0x1746ba(0xaf)]),_0x5bac9b=_0x173827[_0x1746ba(0xa7)](),_0x2da043=new _0x3597fb(_0x2dcfe4[_0x1746ba(0x191)]['cellValue']),_0x10db9f=new _0x3597fb(),_0x3054a5=_0x2da043['getDataRange']();return _0x12b536[_0x1746ba(0x16e)](_0x5bac9b,_0x3054a5)?(_0x173827[_0x1746ba(0x1bf)]((_0x1d93bf,_0x3965da,_0x595743)=>{const _0x4629f1=_0x1746ba;var _0x17a6e9;const _0xe9ace8=_0x2da043[_0x4629f1(0xf5)](_0x1d93bf,_0x3965da);_0xe9ace8===null&&_0x173827[_0x4629f1(0xbb)](_0x1d93bf,_0x3965da),_0x595743&&_0xe9ace8&&(typeof(_0xe9ace8==null?void 0x0:_0xe9ace8['s'])==_0x4629f1(0xf1)&&(_0xe9ace8['s']=_0x12a789['deepClone']((_0x17a6e9=_0x1cfb83[_0x4629f1(0x191)][_0x4629f1(0x1c7)])==null?void 0x0:_0x17a6e9[_0xe9ace8['s']])||void 0x0),_0x10db9f[_0x4629f1(0x1a3)](_0x1d93bf,_0x3965da,_0xe9ace8));}),_0x2dcd9b[_0x1746ba(0x191)]['cellValue']=_0x173827[_0x1746ba(0xd9)](),_0x1cfb83[_0x1746ba(0x191)]['cellValue']=_0x10db9f[_0x1746ba(0xd9)](),{'m1Prime':[_0x2dcd9b,_0x1cfb83],'m2Prime':_0x106d12}):_0xe09323;}},gi={'m1':_0x5d6537['id'],'m2':_0x5d6537['id'],'handler'(_0x5b3566,_0x146c7e){const _0x5d4446=_0x54481f,_0x5593ab={'m1Prime':_0x5b3566,'m2Prime':_0x146c7e};if(_0x5b3566[_0x5d4446(0x191)][_0x5d4446(0x15b)]!==_0x146c7e['params'][_0x5d4446(0x15b)]||_0x5b3566['params'][_0x5d4446(0x126)]!==_0x146c7e[_0x5d4446(0x191)]['subUnitId'])return _0x5593ab;const _0x8968a7=_0x5b3566[_0x5d4446(0x191)][_0x5d4446(0x181)],_0x22a1e3=_0x146c7e['params'][_0x5d4446(0x181)],_0x590330={},_0x5ac31c=_0x12a789['deepClone'](_0x5b3566),_0x291d68=new Set([...Object[_0x5d4446(0x98)](_0x8968a7)[_0x5d4446(0x21d)](Number),...Object[_0x5d4446(0x98)](_0x22a1e3)[_0x5d4446(0x21d)](Number)]);for(const _0x42c816 of _0x291d68){const _0x1afcf5=_0x8968a7[_0x42c816],_0x5f2b3f=_0x22a1e3[_0x42c816];if(_0x1afcf5&&_0x5f2b3f){const _0x2e7691={..._0x1afcf5,..._0x5f2b3f};_0x590330[_0x42c816]=_0x2e7691;}else _0x1afcf5?_0x590330[_0x42c816]=_0x1afcf5:_0x5f2b3f&&(_0x590330[_0x42c816]=_0x5f2b3f);}return _0x5ac31c[_0x5d4446(0x191)][_0x5d4446(0x181)]=_0x590330,{'m1Prime':_0x5ac31c,'m2Prime':_0x146c7e};}},Ii={'m1':_0x254b23['id'],'m2':_0xeb63e6['id'],'handler'(_0x565b06,_0x1e80f0){const _0x3e4458=_0x54481f,_0x18558f={'m1Prime':_0x565b06,'m2Prime':_0x1e80f0};if(_0x565b06[_0x3e4458(0x191)][_0x3e4458(0x15b)]!==_0x1e80f0[_0x3e4458(0x191)][_0x3e4458(0x15b)]||_0x565b06[_0x3e4458(0x191)][_0x3e4458(0x126)]!==_0x1e80f0[_0x3e4458(0x191)][_0x3e4458(0xad)][_0x3e4458(0x126)]&&_0x565b06[_0x3e4458(0x191)][_0x3e4458(0x126)]!==_0x1e80f0[_0x3e4458(0x191)]['to']['subUnitId'])return _0x18558f;let _0x397416=null;return _0x565b06[_0x3e4458(0x191)][_0x3e4458(0x126)]===_0x1e80f0[_0x3e4458(0x191)][_0x3e4458(0xad)][_0x3e4458(0x126)]&&new _0x3597fb(_0x1e80f0[_0x3e4458(0x191)][_0x3e4458(0xad)][_0x3e4458(0x9e)])[_0x3e4458(0x1bf)]((_0x1e28d6,_0x25a8e1)=>{const _0x30d4ba=_0x3e4458;_0x25a8e1===_0x565b06[_0x30d4ba(0x191)][_0x30d4ba(0x164)]&&(_0x397416=_0x1e80f0[_0x30d4ba(0x191)]['from']['subUnitId']);}),_0x565b06['params'][_0x3e4458(0x126)]===_0x1e80f0[_0x3e4458(0x191)]['to'][_0x3e4458(0x126)]&&new _0x3597fb(_0x1e80f0[_0x3e4458(0x191)]['to']['value'])[_0x3e4458(0x1bf)]((_0x4ec5d1,_0x447768)=>{const _0x23c9d6=_0x3e4458;_0x447768===_0x565b06[_0x23c9d6(0x191)][_0x23c9d6(0x164)]&&(_0x397416=_0x1e80f0[_0x23c9d6(0x191)]['to']['subUnitId']);}),_0x397416?{'m1Prime':_0x565b06,'m2Prime':[_0x1e80f0,{'id':_0xdfa2d9['id'],'params':{'unitId':_0x1e80f0[_0x3e4458(0x191)][_0x3e4458(0x15b)],'subUnitId':_0x397416}}]}:_0x18558f;}},wi={'m1':_0x254b23['id'],'m2':_0x431d63['id'],'handler'(_0x5d234f,_0x2179e4){const _0x1cd412=_0x54481f,_0xe45525={'m1Prime':_0x5d234f,'m2Prime':_0x2179e4};return _0x5d234f[_0x1cd412(0x191)][_0x1cd412(0x15b)]!==_0x2179e4[_0x1cd412(0x191)][_0x1cd412(0x15b)]||_0x5d234f[_0x1cd412(0x191)][_0x1cd412(0x126)]!==_0x2179e4[_0x1cd412(0x191)][_0x1cd412(0x126)]?_0xe45525:{'m1Prime':[],'m2Prime':[_0x2179e4]};}},Ci={'m1':_0x254b23['id'],'m2':_0x59880b['id'],'handler'(_0x1b0f16,_0x51db9a){const _0x2f4f78=_0x54481f,_0xd4824d={'m1Prime':_0x1b0f16,'m2Prime':_0x51db9a};if(_0x1b0f16[_0x2f4f78(0x191)][_0x2f4f78(0x15b)]!==_0x51db9a[_0x2f4f78(0x191)][_0x2f4f78(0x15b)]||_0x1b0f16['params']['subUnitId']!==_0x51db9a[_0x2f4f78(0x191)]['subUnitId'])return _0xd4824d;let _0x2775a0=!0x1;return new _0x3597fb(_0x51db9a[_0x2f4f78(0x191)]['cellValue'])['forValue']((_0x6d397,_0x38e7c9)=>{const _0x289fe1=_0x2f4f78;_0x38e7c9===_0x1b0f16[_0x289fe1(0x191)]['col']&&(_0x2775a0=!0x0);}),_0x2775a0?{'m1Prime':_0x1b0f16,'m2Prime':[_0x51db9a,{'id':_0xdfa2d9['id'],'params':{'unitId':_0x51db9a[_0x2f4f78(0x191)][_0x2f4f78(0x15b)],'subUnitId':_0x51db9a['params'][_0x2f4f78(0x126)]}}]}:_0xd4824d;}},Pi={'m1':_0x254b23['id'],'m2':_0x254b23['id'],'handler'(_0x2f7762,_0x2ec813){const _0x2d4556=_0x54481f,_0x13792e={'m1Prime':_0x2f7762,'m2Prime':_0x2ec813};return _0x2f7762[_0x2d4556(0x191)][_0x2d4556(0x15b)]!==_0x2ec813[_0x2d4556(0x191)][_0x2d4556(0x15b)]||_0x2f7762[_0x2d4556(0x191)][_0x2d4556(0x126)]!==_0x2ec813[_0x2d4556(0x191)][_0x2d4556(0x126)]||_0x2f7762[_0x2d4556(0x191)]['col']!==_0x2ec813[_0x2d4556(0x191)][_0x2d4556(0x164)]?_0x13792e:{'m1Prime':[],'m2Prime':[_0x2ec813]};}},Ui={'m1':_0x4a261b['id'],'m2':_0x431d63['id'],'handler'(_0x3f4e88,_0xf641ef){const _0x5a6b10=_0x54481f,_0x22f1fe={'m1Prime':_0x3f4e88,'m2Prime':_0xf641ef};return _0x3f4e88[_0x5a6b10(0x191)][_0x5a6b10(0x15b)]!==_0xf641ef['params'][_0x5a6b10(0x15b)]||_0x3f4e88['params']['subUnitId']!==_0xf641ef[_0x5a6b10(0x191)]['subUnitId']?_0x22f1fe:{'m1Prime':[],'m2Prime':[_0xf641ef]};}},bi={'m1':_0x4a261b['id'],'m2':_0x4a261b['id'],'handler'(_0x45fa35,_0x3310e9){const _0x512531=_0x54481f,_0x1c1bfe={'m1Prime':_0x45fa35,'m2Prime':_0x3310e9};return _0x45fa35['params'][_0x512531(0x15b)]!==_0x3310e9['params']['unitId']||_0x45fa35[_0x512531(0x191)][_0x512531(0x126)]!==_0x3310e9[_0x512531(0x191)][_0x512531(0x126)]?_0x1c1bfe:{'m1Prime':[],'m2Prime':[_0x3310e9]};}},Mi={'m1':_0x53f049['id'],'m2':_0x53f049['id'],'handler'(_0x555878,_0x1a6a2f){const _0x17022d=_0x54481f;return _0x555878[_0x17022d(0x191)]['unitId']===_0x1a6a2f[_0x17022d(0x191)][_0x17022d(0x15b)]&&_0x555878[_0x17022d(0x191)]['subUnitId']===_0x1a6a2f['params'][_0x17022d(0x126)]&&_0x555878[_0x17022d(0x191)][_0x17022d(0x8f)]!==_0x1a6a2f[_0x17022d(0x191)][_0x17022d(0x8f)]?{'error':new Error(_0x17022d(0x156))}:{'m1Prime':_0x555878,'m2Prime':_0x1a6a2f};}},vi={'m1':_0x2d1a15['id'],'m2':_0x2d1a15['id'],'handler'(_0x449367,_0x3c33df){const _0x3b2185=_0x54481f,_0x6b5663={'m1Prime':_0x449367,'m2Prime':_0x3c33df};if(_0x449367['params']['unitId']!==_0x3c33df[_0x3b2185(0x191)][_0x3b2185(0x15b)]||_0x449367['params'][_0x3b2185(0x126)]!==_0x3c33df[_0x3b2185(0x191)][_0x3b2185(0x126)])return _0x6b5663;const _0x5b12f0=_0x449367[_0x3b2185(0x191)][_0x3b2185(0x1a9)],_0x16fafe=[],_0x2ac67b=_0x12a789['deepClone'](_0x449367),_0x34d560=_0x3c33df['params'][_0x3b2185(0x1a9)];_0x5b12f0[_0x3b2185(0x147)](_0x21f468=>{const _0x3d0532=_0x3b2185,_0x4e6fa3={'start':_0x21f468[_0x3d0532(0x10c)],'end':_0x21f468['endColumn']},_0x13719c=_0x34d560['map'](_0x1ae87e=>({'start':_0x1ae87e[_0x3d0532(0x10c)],'end':_0x1ae87e[_0x3d0532(0x1ee)]})),_0x4ea9ae=Ue(_0x4e6fa3,_0x13719c)[_0x3d0532(0x21d)](_0x468c4d=>({..._0x21f468,'startColumn':_0x468c4d[_0x3d0532(0x22f)],'endColumn':_0x468c4d[_0x3d0532(0xd6)]}));_0x16fafe[_0x3d0532(0x187)](..._0x4ea9ae);}),_0x2ac67b[_0x3b2185(0x191)][_0x3b2185(0x1a9)]=_0x16fafe;const {colWidth:_0x376371}=_0x2ac67b[_0x3b2185(0x191)],{colWidth:_0x91ded1}=_0x3c33df[_0x3b2185(0x191)];return typeof _0x376371!=_0x3b2185(0x13c)&&(typeof _0x91ded1!=_0x3b2185(0x13c)?Object[_0x3b2185(0x98)](_0x91ded1)[_0x3b2185(0x21d)](Number)['forEach'](_0x35405a=>{_0x376371[_0x35405a]!=null&&delete _0x376371[_0x35405a];}):_0x34d560['forEach'](_0x5bfb4f=>{const _0x8ea1f9=_0x3b2185;for(let _0x491705=_0x5bfb4f[_0x8ea1f9(0x10c)];_0x491705<=_0x5bfb4f[_0x8ea1f9(0x1ee)];_0x491705++)delete _0x376371[_0x491705];})),{'m1Prime':_0x2ac67b,'m2Prime':_0x3c33df};}},Ei={'m1':_0x90af58['id'],'m2':_0x90af58['id'],'handler'(_0x4b3141,_0x4b80f4){const _0xe047fc=_0x54481f,_0x13dcaa={'m1Prime':_0x4b3141,'m2Prime':_0x4b80f4};return _0x4b3141['params'][_0xe047fc(0x15b)]!==_0x4b80f4[_0xe047fc(0x191)]['unitId']||_0x4b3141['params'][_0xe047fc(0x126)]!==_0x4b80f4[_0xe047fc(0x191)][_0xe047fc(0x126)]?_0x13dcaa:{'error':new Error(_0xe047fc(0x1c0))};}},Si={'m1':_0x1bdf83['id'],'m2':_0x1bdf83['id'],'handler'(_0x37f074,_0x4078da){const _0x2c528a=_0x54481f,_0x2015cc={'m1Prime':_0x37f074,'m2Prime':_0x4078da};if(_0x37f074[_0x2c528a(0x191)][_0x2c528a(0x15b)]!==_0x4078da[_0x2c528a(0x191)][_0x2c528a(0x15b)]||_0x37f074[_0x2c528a(0x191)][_0x2c528a(0x126)]!==_0x4078da[_0x2c528a(0x191)]['subUnitId'])return _0x2015cc;const _0x46b541=_0x37f074[_0x2c528a(0x191)]['rowsAutoHeightInfo'],_0x4a4f7d=[],_0x1c0411=_0x12a789['deepClone'](_0x37f074),_0x1fdf1b=_0x4078da[_0x2c528a(0x191)][_0x2c528a(0x106)];return _0x46b541[_0x2c528a(0x147)](_0x27a4c7=>{const _0x9dd10d=_0x2c528a;_0x1fdf1b[_0x9dd10d(0x135)](_0x4a3088=>_0x4a3088[_0x9dd10d(0x22d)]===_0x27a4c7[_0x9dd10d(0x22d)])||_0x4a4f7d[_0x9dd10d(0x187)](_0x27a4c7);}),_0x1c0411[_0x2c528a(0x191)][_0x2c528a(0x106)]=_0x4a4f7d,{'m1Prime':_0x1c0411,'m2Prime':_0x4078da};}},Wi={'m1':_0x295209['id'],'m2':_0x295209['id'],'handler'(_0xba8f5,_0x147477){const _0x1ee8fe=_0x54481f,_0x495221={'m1Prime':_0xba8f5,'m2Prime':_0x147477};if(_0xba8f5['params'][_0x1ee8fe(0x15b)]!==_0x147477['params'][_0x1ee8fe(0x15b)]||_0xba8f5['params'][_0x1ee8fe(0x126)]!==_0x147477[_0x1ee8fe(0x191)][_0x1ee8fe(0x126)])return _0x495221;const _0x287536=_0xba8f5[_0x1ee8fe(0x191)][_0x1ee8fe(0x1a9)],_0x55a323=[],_0x107f15=_0x12a789[_0x1ee8fe(0xec)](_0xba8f5),_0xae6760=_0x147477['params']['ranges'];_0x287536[_0x1ee8fe(0x147)](_0x5c3bed=>{const _0x154185=_0x1ee8fe,_0x485f38={'start':_0x5c3bed['startRow'],'end':_0x5c3bed[_0x154185(0xda)]},_0x42df53=_0xae6760[_0x154185(0x21d)](_0x3637af=>({'start':_0x3637af[_0x154185(0x11e)],'end':_0x3637af[_0x154185(0xda)]})),_0xb61e97=Ue(_0x485f38,_0x42df53)[_0x154185(0x21d)](_0x1e924c=>({..._0x5c3bed,'startRow':_0x1e924c[_0x154185(0x22f)],'endRow':_0x1e924c[_0x154185(0xd6)]}));_0x55a323['push'](..._0xb61e97);}),_0x107f15[_0x1ee8fe(0x191)][_0x1ee8fe(0x1a9)]=_0x55a323;const {rowHeight:_0x1ac804}=_0x107f15[_0x1ee8fe(0x191)],{rowHeight:_0x267794}=_0x147477[_0x1ee8fe(0x191)];return typeof _0x1ac804!=_0x1ee8fe(0x13c)&&(typeof _0x267794!=_0x1ee8fe(0x13c)?Object[_0x1ee8fe(0x98)](_0x267794)[_0x1ee8fe(0x21d)](Number)[_0x1ee8fe(0x147)](_0x32cdb0=>{_0x1ac804[_0x32cdb0]!=null&&delete _0x1ac804[_0x32cdb0];}):_0xae6760[_0x1ee8fe(0x147)](_0x17c829=>{const _0x547a89=_0x1ee8fe;for(let _0x2dca9=_0x17c829['startRow'];_0x2dca9<=_0x17c829[_0x547a89(0xda)];_0x2dca9++)delete _0x1ac804[_0x2dca9];})),{'m1Prime':_0x107f15,'m2Prime':_0x147477};}},Vi={'m1':_0x2d1c92['id'],'m2':_0x2d1c92['id'],'handler'(_0x5a5f51,_0x1a3c93){const _0x4955d9=_0x54481f,_0x13a6e5={'m1Prime':_0x5a5f51,'m2Prime':_0x1a3c93};if(_0x5a5f51[_0x4955d9(0x191)]['unitId']!==_0x1a3c93[_0x4955d9(0x191)][_0x4955d9(0x15b)]||_0x5a5f51[_0x4955d9(0x191)][_0x4955d9(0x126)]!==_0x1a3c93[_0x4955d9(0x191)][_0x4955d9(0x126)])return _0x13a6e5;const _0xd9e3c9=_0x5a5f51['params'][_0x4955d9(0x1a9)],_0xc4af1f=[],_0x3ddd14=_0x12a789[_0x4955d9(0xec)](_0x5a5f51),_0x13a447=_0x1a3c93[_0x4955d9(0x191)][_0x4955d9(0x1a9)];_0xd9e3c9[_0x4955d9(0x147)](_0x2de743=>{const _0x13343a=_0x4955d9,_0x1c05e1={'start':_0x2de743['startRow'],'end':_0x2de743['endRow']},_0x4980b1=_0x13a447[_0x13343a(0x21d)](_0x134ba1=>({'start':_0x134ba1[_0x13343a(0x11e)],'end':_0x134ba1[_0x13343a(0xda)]})),_0x971212=Ue(_0x1c05e1,_0x4980b1)[_0x13343a(0x21d)](_0x116aa0=>({..._0x2de743,'startRow':_0x116aa0[_0x13343a(0x22f)],'endRow':_0x116aa0[_0x13343a(0xd6)]}));_0xc4af1f[_0x13343a(0x187)](..._0x971212);}),_0x3ddd14['params'][_0x4955d9(0x1a9)]=_0xc4af1f;const {autoHeightInfo:_0x1b51c8}=_0x3ddd14[_0x4955d9(0x191)],{autoHeightInfo:_0x57044b}=_0x1a3c93[_0x4955d9(0x191)];return typeof _0x1b51c8!=_0x4955d9(0x13c)&&(typeof _0x57044b!=_0x4955d9(0x13c)?Object[_0x4955d9(0x98)](_0x57044b)['map'](Number)[_0x4955d9(0x147)](_0x1ebebe=>{_0x1b51c8[_0x1ebebe]!=null&&delete _0x1b51c8[_0x1ebebe];}):_0x13a447['forEach'](_0x29c422=>{const _0x33e834=_0x4955d9;for(let _0x4e9760=_0x29c422[_0x33e834(0x11e)];_0x4e9760<=_0x29c422['endRow'];_0x4e9760++)delete _0x1b51c8[_0x4e9760];})),{'m1Prime':_0x3ddd14,'m2Prime':_0x1a3c93};}},_i={'m1':_0x62fd77['id'],'m2':_0x62fd77['id'],'handler':(_0x3ddcd5,_0x34d1e1)=>{const _0x44637a=_0x54481f,_0x5b0f55=_0x3ddcd5[_0x44637a(0x191)],_0x2e9fbc=_0x34d1e1['params'];return _0x5b0f55[_0x44637a(0x15b)]===_0x2e9fbc[_0x44637a(0x15b)]&&_0x5b0f55[_0x44637a(0x126)]===_0x2e9fbc['subUnitId']&&_0x5b0f55[_0x44637a(0x198)]['commentId']===_0x2e9fbc[_0x44637a(0x198)][_0x44637a(0xa1)]?{'m1Prime':[],'m2Prime':_0x34d1e1}:{'m1Prime':_0x3ddcd5,'m2Prime':_0x34d1e1};}},Oi={'m1':_0x44bb69['id'],'m2':_0x44bb69['id'],'handler':(_0x5233f9,_0x17965)=>{const _0x837f7f=_0x54481f,_0x10a729=_0x5233f9[_0x837f7f(0x191)],_0x411630=_0x17965[_0x837f7f(0x191)];return _0x10a729['unitId']===_0x411630[_0x837f7f(0x15b)]&&_0x10a729[_0x837f7f(0x126)]===_0x411630['subUnitId']&&_0x10a729[_0x837f7f(0x198)][_0x837f7f(0xa1)]===_0x411630[_0x837f7f(0x198)][_0x837f7f(0xa1)]?{'m1Prime':[],'m2Prime':_0x17965}:{'m1Prime':_0x5233f9,'m2Prime':_0x17965};}},yi={'m1':_0x5ad83d['id'],'m2':_0x3273be['id'],'handler':(_0x209c1c,_0x5a5047)=>{const _0x1cc21c=_0x54481f,_0x4d3957={'m1Prime':_0x209c1c,'m2Prime':_0x5a5047},_0x1fdef7=_0x209c1c[_0x1cc21c(0x191)],_0x14ff3c=_0x5a5047[_0x1cc21c(0x191)];if(_0x1fdef7[_0x1cc21c(0x15b)]!==_0x14ff3c[_0x1cc21c(0x15b)]||_0x1fdef7[_0x1cc21c(0x126)]!==_0x14ff3c[_0x1cc21c(0x126)])return _0x4d3957;if(_0x209c1c[_0x1cc21c(0x191)]['payload'][_0x1cc21c(0xcc)]===_0x4fe948[_0x1cc21c(0x220)]){const {unitId:_0x320564,subUnitId:_0x30201b}=_0x209c1c[_0x1cc21c(0x191)],_0x3ea42c=Array['isArray'](_0x5a5047['params'][_0x1cc21c(0xe7)])?_0x5a5047[_0x1cc21c(0x191)][_0x1cc21c(0xe7)]:[_0x5a5047[_0x1cc21c(0x191)][_0x1cc21c(0xe7)]],_0x280def=[],_0x47e6c8=new _0x3597fb(),_0x17d2d4=_0x209c1c[_0x1cc21c(0x191)][_0x1cc21c(0x198)][_0x1cc21c(0x198)];_0x17d2d4[_0x1cc21c(0x147)](_0x17ae3e=>{const _0x2faf43=_0x1cc21c;_0x541337[_0x2faf43(0xe5)](_0x17ae3e,(_0x23ce0a,_0x1bfdbc)=>{const _0x3c7bb7=_0x2faf43;_0x47e6c8[_0x3c7bb7(0x1a3)](_0x23ce0a,_0x1bfdbc,_0x209c1c['params'][_0x3c7bb7(0x1bb)]);});}),_0x3ea42c[_0x1cc21c(0x147)](_0x1bd41d=>{const _0x5e0c0e=_0x1cc21c;_0x1bd41d['ranges'][_0x5e0c0e(0x147)](_0x3fbbb6=>{_0x541337['foreach'](_0x3fbbb6,(_0xdf85f9,_0x3ce759)=>{const _0x22be8f=_0x5b5c;_0x47e6c8[_0x22be8f(0x1a3)](_0xdf85f9,_0x3ce759,_0x1bd41d['uid']);});});});const _0x274ed2=_0x209c1c[_0x1cc21c(0x191)][_0x1cc21c(0x1bb)],_0xcbe1e1=_0x1be7bf(_0x47e6c8,_0x2669d3=>_0x2669d3===_0x274ed2);return _0x86e48(_0xcbe1e1,_0x17d2d4)||(_0xcbe1e1[_0x1cc21c(0xbd)]?_0x280def[_0x1cc21c(0x187)]({'id':_0x5ad83d['id'],'params':{'unitId':_0x320564,'subUnitId':_0x30201b,'ruleId':_0x274ed2,'payload':{'type':_0x4fe948['RANGE'],'payload':_0xcbe1e1}}}):_0x280def['push']({'id':_0x42cad4['id'],'params':{'unitId':_0x320564,'subUnitId':_0x30201b,'ruleId':_0x274ed2}})),{'m1Prime':_0x280def[_0x1cc21c(0xbd)]?_0x280def:[_0x209c1c],'m2Prime':[..._0x280def,_0x5a5047]};}return _0x4d3957;}},Ni={'m1':_0x5ad83d['id'],'m2':_0x42cad4['id'],'handler':(_0xeca6e6,_0x55e475)=>{const _0x21ab89=_0x54481f,_0x27ebd3={'m1Prime':_0xeca6e6,'m2Prime':_0x55e475};if(_0xeca6e6[_0x21ab89(0x191)]['unitId']!==_0x55e475['params'][_0x21ab89(0x15b)]||_0xeca6e6[_0x21ab89(0x191)][_0x21ab89(0x126)]!==_0x55e475[_0x21ab89(0x191)][_0x21ab89(0x126)])return _0x27ebd3;const _0x194a77=_0xeca6e6[_0x21ab89(0x191)][_0x21ab89(0x1bb)];return(Array[_0x21ab89(0xf8)](_0x55e475['params']['ruleId'])?_0x55e475[_0x21ab89(0x191)][_0x21ab89(0x1bb)]:[_0x55e475[_0x21ab89(0x191)][_0x21ab89(0x1bb)]])[_0x21ab89(0x1ac)](_0x194a77)>-0x1?{'m1Prime':[],'m2Prime':_0x55e475}:_0x27ebd3;}},Di={'m1':_0x5ad83d['id'],'m2':_0x5ad83d['id'],'handler':(_0x5ec8b5,_0x1e3774)=>{const _0x43204e=_0x54481f,_0x5bbb4e={'m1Prime':_0x5ec8b5,'m2Prime':_0x1e3774},_0x4499a5=_0x5ec8b5[_0x43204e(0x191)],_0x2e438d=_0x1e3774[_0x43204e(0x191)];if(_0x4499a5[_0x43204e(0x15b)]===_0x2e438d['unitId']&&_0x4499a5[_0x43204e(0x126)]===_0x2e438d[_0x43204e(0x126)]){const _0x59f37e=_0x12a789[_0x43204e(0xec)](_0x1e3774);if(_0x2e438d[_0x43204e(0x1bb)]===_0x4499a5[_0x43204e(0x1bb)]&&_0x4499a5[_0x43204e(0x198)][_0x43204e(0xcc)]===_0x2e438d[_0x43204e(0x198)][_0x43204e(0xcc)])return _0x4499a5['payload'][_0x43204e(0xcc)]===_0x4fe948['RANGE']&&!_0x86e48(_0x4499a5[_0x43204e(0x198)][_0x43204e(0x198)],_0x2e438d['payload'][_0x43204e(0x198)])?{'error':new Error(_0x43204e(0x139))}:{'m1Prime':[],'m2Prime':_0x59f37e};if(_0x4499a5[_0x43204e(0x198)][_0x43204e(0xcc)]===_0x4fe948[_0x43204e(0x220)]&&_0x2e438d[_0x43204e(0x198)][_0x43204e(0xcc)]===_0x4fe948[_0x43204e(0x220)]&&_0x2e438d['ruleId']!==_0x4499a5[_0x43204e(0x1bb)]){let _0x3487ee=function(_0x64efc,_0x576c99){_0x64efc['forEach'](_0x38c763=>{const _0x53001e=_0x5b5c;_0x541337[_0x53001e(0xe5)](_0x38c763,(_0x24f7a5,_0x44157f)=>{const _0xb812b=_0x53001e;_0x4ceaa0[_0xb812b(0x1a3)](_0x24f7a5,_0x44157f,_0x576c99);});});};const _0x4ceaa0=new _0x3597fb();_0x3487ee(_0x4499a5[_0x43204e(0x198)]['payload'],_0x4499a5[_0x43204e(0x1bb)]),_0x3487ee(_0x2e438d['payload'][_0x43204e(0x198)],_0x2e438d[_0x43204e(0x1bb)]);const _0x23323b=_0x1be7bf(_0x4ceaa0,_0x989b15=>_0x989b15===_0x4499a5[_0x43204e(0x1bb)]),_0x5dec13=!_0x86e48(_0x4499a5[_0x43204e(0x198)][_0x43204e(0x198)],_0x23323b)?_0x23323b['length']?[{'id':_0x5ad83d['id'],'params':{..._0x4499a5,'payload':{'type':_0x4fe948[_0x43204e(0x220)],'payload':_0x23323b}}}]:[{'id':_0x42cad4['id'],'params':{..._0x4499a5,'payload':void 0x0}}]:[];return{'m1Prime':[_0x5ec8b5],'m2Prime':[..._0x5dec13,_0x1e3774]};}}return _0x5bbb4e;}},Ai={'m1':_0x3193a6['id'],'m2':_0x3193a6['id'],'handler':(_0x59bb66,_0x372627)=>{const _0x212add=_0x54481f,_0x41ce43=_0x59bb66[_0x212add(0x191)],_0x454922=_0x372627[_0x212add(0x191)];return _0x41ce43['unitId']===_0x454922[_0x212add(0x15b)]&&_0x41ce43['subUnitId']===_0x454922[_0x212add(0x126)]&&_0x41ce43['id']===_0x454922['id']?{'m2Prime':_0x372627,'m1Prime':[]}:{'m1Prime':_0x59bb66,'m2Prime':_0x372627};}},Ti={'m1':_0x362695['id'],'m2':_0x362695['id'],'handler':(_0x3185f4,_0x2b314d)=>{const _0x38a407=_0x54481f,_0x33d341=_0x3185f4[_0x38a407(0x191)],_0x50f095=_0x2b314d['params'];return _0x33d341[_0x38a407(0x15b)]===_0x50f095['unitId']&&_0x33d341[_0x38a407(0x126)]===_0x50f095[_0x38a407(0x126)]&&_0x33d341['id']===_0x50f095['id']?{'m2Prime':_0x2b314d,'m1Prime':[]}:{'m1Prime':_0x3185f4,'m2Prime':_0x2b314d};}},Li={'m1':_0x58230c['id'],'m2':_0x5504b0['id'],'handler'(_0x4fd78c,_0x448c47){const _0x3fd8d0=_0x54481f,_0x80d21b=_0x12a789[_0x3fd8d0(0xec)](_0x448c47);return _0x4fd78c[_0x3fd8d0(0x191)][_0x3fd8d0(0x126)]!==_0x448c47[_0x3fd8d0(0x191)][_0x3fd8d0(0x126)]||_0x4fd78c[_0x3fd8d0(0x191)][_0x3fd8d0(0x15b)]!==_0x448c47[_0x3fd8d0(0x191)][_0x3fd8d0(0x15b)]?{'m1Prime':_0x4fd78c,'m2Prime':_0x80d21b}:(_0x80d21b['id']=_0x411476['id'],{'m1Prime':_0x4fd78c,'m2Prime':_0x80d21b});}},ki={'m1':_0x58230c['id'],'m2':_0x3194c5['id'],'handler'(_0x4ac971,_0x597fa7){const _0x55ad3a=_0x54481f,_0x44acf1=_0x12a789[_0x55ad3a(0xec)](_0x597fa7);return _0x4ac971[_0x55ad3a(0x191)][_0x55ad3a(0x126)]!==_0x597fa7['params'][_0x55ad3a(0x126)]||_0x4ac971[_0x55ad3a(0x191)][_0x55ad3a(0x15b)]!==_0x597fa7[_0x55ad3a(0x191)]['unitId']?{'m1Prime':_0x4ac971,'m2Prime':_0x44acf1}:(_0x44acf1['id']=_0x411476['id'],{'m1Prime':_0x4ac971,'m2Prime':_0x44acf1});}},xi={'m1':_0x392aa2['id'],'m2':_0x392aa2['id'],'handler'(_0x10c160,_0x4911ba){const _0x21d07f=_0x54481f;if(_0x10c160['params'][_0x21d07f(0x175)]['id']===_0x4911ba['params'][_0x21d07f(0x175)]['id'])return{'error':new Error('Two\x20mutation\x20have\x20the\x20same\x20worksheetId!')};const _0x42d8d3=_0x12a789[_0x21d07f(0xec)](_0x10c160),_0x54bd1c=_0x12a789['deepClone'](_0x4911ba);return _0x42d8d3['params'][_0x21d07f(0x189)]<=_0x54bd1c[_0x21d07f(0x191)][_0x21d07f(0x189)]?_0x54bd1c['params']['index']+=0x1:_0x42d8d3['params']['index']>_0x54bd1c[_0x21d07f(0x191)][_0x21d07f(0x189)]&&(_0x42d8d3[_0x21d07f(0x191)][_0x21d07f(0x189)]+=0x1),_0x10c160[_0x21d07f(0x191)]['sheet']['name']===_0x4911ba[_0x21d07f(0x191)]['sheet'][_0x21d07f(0xab)]?{'error':new Error('Two\x20mutation\x20have\x20the\x20same\x20worksheet\x20name!')}:{'m1Prime':_0x42d8d3,'m2Prime':_0x54bd1c};}},Hi={'m1':_0x58230c['id'],'m2':_0x54481f(0x22a),'handler'(_0x518cd5,_0x4426c0){const _0x55209e=_0x54481f;var _0x38dec1;return _0x518cd5[_0x55209e(0x191)][_0x55209e(0x126)]===((_0x38dec1=_0x4426c0[_0x55209e(0x191)])==null?void 0x0:_0x38dec1[_0x55209e(0x126)])&&_0x518cd5['id']!==_0x4426c0['id']?{'error':new Error(_0x55209e(0x11b))}:{'m1Prime':_0x518cd5,'m2Prime':_0x4426c0};}},Fi={'m1':_0x3be156['id'],'m2':_0x3be156['id'],'handler'(_0x29baca,_0x398934){const _0x557989=_0x54481f,_0x198277=_0x12a789[_0x557989(0xec)](_0x29baca),_0x2bafa2=_0x12a789[_0x557989(0xec)](_0x398934),_0x4e7404={'error':new Error(_0x557989(0x91))};if(_0x29baca[_0x557989(0x191)]['fromOrder']===_0x398934['params'][_0x557989(0x180)])_0x198277['id']=_0x411476['id'],_0x2bafa2[_0x557989(0x191)][_0x557989(0x180)]=_0x29baca[_0x557989(0x191)][_0x557989(0xdb)];else{_0x29baca['params'][_0x557989(0x180)]===_0x29baca['params']['toOrder']&&(_0x198277['id']=_0x411476['id']),_0x398934['params']['fromOrder']===_0x398934[_0x557989(0x191)]['toOrder']&&(_0x2bafa2['id']=_0x411476['id']);const _0x3ae1d9=[Math[_0x557989(0x12b)](_0x29baca[_0x557989(0x191)]['fromOrder'],_0x29baca[_0x557989(0x191)][_0x557989(0xdb)]),Math[_0x557989(0x1a7)](_0x29baca[_0x557989(0x191)][_0x557989(0x180)],_0x29baca[_0x557989(0x191)][_0x557989(0xdb)])],_0x378856=[Math['min'](_0x398934[_0x557989(0x191)][_0x557989(0x180)],_0x398934[_0x557989(0x191)][_0x557989(0xdb)]),Math[_0x557989(0x1a7)](_0x398934[_0x557989(0x191)][_0x557989(0x180)],_0x398934[_0x557989(0x191)]['toOrder'])];if(_0x3ae1d9[0x0]<=_0x378856[0x1]&&_0x3ae1d9[0x1]>=_0x378856[0x0])return _0x4e7404;}return{'m1Prime':_0x198277,'m2Prime':_0x2bafa2};}},Bi={'m1':_0x392aa2['id'],'m2':_0x3be156['id'],'handler'(_0x279556,_0x554955){const _0x16bdb5=_0x54481f,_0x356d1a=_0x12a789[_0x16bdb5(0xec)](_0x279556),_0x2e5bcf=_0x12a789[_0x16bdb5(0xec)](_0x554955);return _0x279556[_0x16bdb5(0x191)][_0x16bdb5(0x189)]<=_0x554955[_0x16bdb5(0x191)][_0x16bdb5(0xcb)]&&(_0x2e5bcf[_0x16bdb5(0x191)][_0x16bdb5(0xcb)]+=0x1),{'m1Prime':_0x356d1a,'m2Prime':_0x2e5bcf};}},Gi={'m1':_0x54481f(0x22a),'m2':_0x58230c['id'],'handler'(_0x4f0aa9,_0x1e77f5){return{'m1Prime':_0x4f0aa9,'m2Prime':_0x1e77f5};}},ji=[xi,Bi,Hi,Gi,Fi];var $i=Object['defineProperty'],Yi=Object[_0x54481f(0x157)],Ji=(_0x498359,_0x13024c,_0x27cfed,_0x27761d)=>{const _0x4cdf1b=_0x54481f;for(var _0x44bea5=_0x27761d>0x1?void 0x0:_0x27761d?Yi(_0x13024c,_0x27cfed):_0x13024c,_0x1970bd=_0x498359[_0x4cdf1b(0xbd)]-0x1,_0x359193;_0x1970bd>=0x0;_0x1970bd--)(_0x359193=_0x498359[_0x1970bd])&&(_0x44bea5=(_0x27761d?_0x359193(_0x13024c,_0x27cfed,_0x44bea5):_0x359193(_0x44bea5))||_0x44bea5);return _0x27761d&&_0x44bea5&&$i(_0x13024c,_0x27cfed,_0x44bea5),_0x44bea5;},Xi=(_0x3cb449,_0x1df9db)=>(_0x2d196f,_0x44f755)=>_0x1df9db(_0x2d196f,_0x44f755,_0x3cb449);let Bt=class extends _0x441d81{constructor(_0x35ad3c){const _0x1a15fa=_0x54481f;super(),this[_0x1a15fa(0x14c)]=_0x35ad3c,[...ji,Zn,Qn,ta,ea,ma,sa,oa,ia,pa,da,ra,ua,wa,Ca,Pa,ba,Sa,Na,Da,Aa,Wa,Va,_a,Ea,Ua,Oa,Ha,Ka,Fa,$a,Ya,Ja,Qa,Xa,za,Ba,ls,gs,us,bs,Ms,vs,Is,ws,Cs,hs,cs,Ps,ns,os,as,Ns,Os,ys,Fs,Ls,ks,xs,$s,Hs,Ds,Bs,ao,ro,eo,uo,ho,go,Io,lo,co,po,mo,no,fo,hi,fi,Ei,Fo,Mi,vi,Si,Wi,Vi,gi,Do,Go,Bo,zs,qs,xr,Ao,es,Yn,Hr,Di,Xs,Kn,ds,zn,Vs,Qs,Ra,Ss,ha,La,Js,Co,Fr,yi,Ni,la,ca,ya,qa,Za,Us,Gs,js,Ro,Pi,wi,Ci,Ii,bi,Ui,fn,rr,qn,nr,Ia,ar,xa,or,ms,sr,rs,ir,_s,dr,to,mr,pi,Rn,Li,na,Ma,Ga,ps,As,so,ki,Po,bo,Uo,Mo,vo,Eo,So,hn,Wo,kr,jn,$n,Oi,_i,Jn,ga,ka,is,Ws,Zs,fa,Ta,ts,Es,Ys,wo,Br,Ks,Ai,Ti,Gr,jr,$r,Yr,Jr,Xr,Kr,zr,qr,Zr,Qr,tn,en,rn,nn,an,sn,on,dn,mn,un,ln,cn,pn,jo,$o,Yo,Jo,Xo,Ko,zo,qo,Zo,Qo,ti,ri,ei,ni,ai,si,oi,ii,di,mi,ui,li,ci,gn,In,wn,Cn,Pn,Un,bn,Mn,vn,En,Wn,Sn,Vn,yn,_n,On,An,Nn,Dn,Tn,Ln,kn,xn,Hn,Fn,Bn,Gn,va,aa,oo,Ts,fs,ja,ss,Ri,Oo,Ho,No,yo][_0x1a15fa(0x147)](_0x1ba88f=>{const _0x42d060=_0x1a15fa;this[_0x42d060(0x14c)]['registerTransformAlgorithm'](_0x1ba88f);});}};Bt=Ji([Xi(0x0,Pe)],Bt);function Ki(_0x43da79,_0x421262){const _0x19e21a=_0x54481f;if(!Array[_0x19e21a(0xf8)](_0x43da79))return;const _0x29cbe0=_0x43da79[_0x19e21a(0x1ac)](_0x19e21a(0xc9))>-0x1?_0x43da79:_0x43da79[_0x19e21a(0x135)](_0x5ccc8b=>Array['isArray'](_0x5ccc8b)&&_0x5ccc8b[_0x19e21a(0x1ac)](_0x19e21a(0xc9))>-0x1);if(!Array[_0x19e21a(0xf8)](_0x29cbe0))return;const _0x299946=_0x29cbe0[_0x19e21a(0x1ac)](_0x19e21a(0xc9));if(!(_0x299946===-0x1||(_0x299946===0x0?'':_0x29cbe0[_0x299946-0x1])!==_0x421262))return _0x29cbe0[_0x19e21a(0x1f2)](_0x299946);}function He(_0x2cf83f,_0x18c7c9,_0x1e60e3=_0x54481f(0x22c)){const _0x4fca24=_0x54481f;if(_0x18c7c9[_0x4fca24(0xbd)]===0x0)return[];const {segmentId:_0x53ec20}=_0x18c7c9[0x0];if(_0x53ec20==null)return _0x18c7c9;const _0x320140=Ki(_0x2cf83f,_0x53ec20);if(_0x320140==null)return _0x18c7c9;const _0x32001c=[];for(const _0x2f85a9 of _0x18c7c9){const _0x169134=_0x50a671[_0x4fca24(0x1ce)](_0x320140,_0x2f85a9[_0x4fca24(0x10f)],_0x1e60e3),_0x7dc7f4=_0x50a671[_0x4fca24(0x1ce)](_0x320140,_0x2f85a9['endOffset'],_0x1e60e3),_0x364cf7={..._0x2f85a9,'startOffset':_0x169134,'endOffset':_0x7dc7f4,'collapsed':_0x169134===_0x7dc7f4};_0x32001c[_0x4fca24(0x187)](_0x364cf7);}return _0x32001c;}const zi={'m1':_0x3a407a['id'],'m2':_0x3a407a['id'],'handler'(_0x7fa814,_0x244b71){const _0x396fb6=_0x54481f;if(_0x7fa814[_0x396fb6(0x191)][_0x396fb6(0x15b)]!==_0x244b71[_0x396fb6(0x191)][_0x396fb6(0x15b)])return{'error':new Error('Two\x20mutation\x20need\x20have\x20the\x20same\x20unitId!')};const _0x256ba0=_0x12a789[_0x396fb6(0xec)](_0x7fa814),_0x22f49d=_0x12a789[_0x396fb6(0xec)](_0x244b71);return{'m1Prime':{..._0x256ba0,'params':{..._0x256ba0[_0x396fb6(0x191)],'actions':_0x50a671[_0x396fb6(0x1de)](_0x256ba0[_0x396fb6(0x191)][_0x396fb6(0x123)],_0x22f49d['params'][_0x396fb6(0x123)],_0x396fb6(0xaa)),'textRanges':_0x256ba0['params'][_0x396fb6(0x1b9)]?He(_0x22f49d[_0x396fb6(0x191)][_0x396fb6(0x123)],_0x256ba0[_0x396fb6(0x191)][_0x396fb6(0x1b9)],_0x396fb6(0x22c)):null}},'m2Prime':{..._0x22f49d,'params':{..._0x22f49d[_0x396fb6(0x191)],'actions':_0x50a671['transform'](_0x22f49d[_0x396fb6(0x191)][_0x396fb6(0x123)],_0x256ba0[_0x396fb6(0x191)][_0x396fb6(0x123)],_0x396fb6(0x22c)),'textRanges':_0x22f49d[_0x396fb6(0x191)][_0x396fb6(0x1b9)]?He(_0x256ba0[_0x396fb6(0x191)][_0x396fb6(0x123)],_0x22f49d[_0x396fb6(0x191)]['textRanges'],_0x396fb6(0x22c)):null}}};}},qi=[zi];var Zi=Object[_0x54481f(0x20f)],Qi=Object['getOwnPropertyDescriptor'],td=(_0x46e679,_0x55ef41,_0x590c6d,_0x52d1b5)=>{const _0x2b191a=_0x54481f;for(var _0x446fee=_0x52d1b5>0x1?void 0x0:_0x52d1b5?Qi(_0x55ef41,_0x590c6d):_0x55ef41,_0x546809=_0x46e679[_0x2b191a(0xbd)]-0x1,_0x5954fc;_0x546809>=0x0;_0x546809--)(_0x5954fc=_0x46e679[_0x546809])&&(_0x446fee=(_0x52d1b5?_0x5954fc(_0x55ef41,_0x590c6d,_0x446fee):_0x5954fc(_0x446fee))||_0x446fee);return _0x52d1b5&&_0x446fee&&Zi(_0x55ef41,_0x590c6d,_0x446fee),_0x446fee;},ed=(_0x1f9d30,_0x296d72)=>(_0x4dec71,_0x49b7d3)=>_0x296d72(_0x4dec71,_0x49b7d3,_0x1f9d30);let Gt=class extends _0x441d81{constructor(_0x2f06fa){const _0x3a309c=_0x54481f;super(),this[_0x3a309c(0x14c)]=_0x2f06fa,[...qi][_0x3a309c(0x147)](_0x4d174a=>{const _0x33d6f3=_0x3a309c;this[_0x33d6f3(0x14c)]['registerTransformAlgorithm'](_0x4d174a);});}};Gt=td([ed(0x0,Pe)],Gt);function tm(_0x212ac7){const _0x4a2ab5=_0x54481f;return{..._0x212ac7,'mutations':_0x212ac7['mutations'][_0x4a2ab5(0x21d)](rd)};}function em(_0x32aa01){const _0x3d5d34=_0x54481f;return _0x32aa01[_0x3d5d34(0x21d)](_0xa8afec=>({'id':_0xa8afec['id'],'params':JSON['parse'](_0xa8afec[_0x3d5d34(0x1a8)])}));}function rm(_0x55caa8){const _0x54c73b=_0x54481f;return{..._0x55caa8,'mutations':_0x55caa8[_0x54c73b(0x19a)][_0x54c73b(0x21d)](nd)};}function _0x5b5c(_0xf378f8,_0x639c6e){const _0x1fedfa=_0x1fed();return _0x5b5c=function(_0x5b5cd0,_0x6526d2){_0x5b5cd0=_0x5b5cd0-0x8e;let _0x423d1f=_0x1fedfa[_0x5b5cd0];return _0x423d1f;},_0x5b5c(_0xf378f8,_0x639c6e);}function rd(_0x249aeb){return{'id':_0x249aeb['id'],'params':JSON['parse'](_0x249aeb['data'])};}function nd(_0x58d0ad){const _0x4344be=_0x54481f;return{'id':_0x58d0ad['id'],'data':JSON['stringify'](_0x58d0ad[_0x4344be(0x191)])};}var ad=(_0x338d73=>(_0x338d73['FETCH_MISSING']=_0x54481f(0xe3),_0x338d73[_0x54481f(0x221)]=_0x54481f(0xf4),_0x338d73[_0x54481f(0xa8)]=_0x54481f(0xa2),_0x338d73[_0x54481f(0xa4)]=_0x54481f(0x172),_0x338d73[_0x54481f(0xd1)]=_0x54481f(0x14b),_0x338d73[_0x54481f(0x17f)]=_0x54481f(0x174),_0x338d73[_0x54481f(0xbe)]=_0x54481f(0x16b),_0x338d73[_0x54481f(0xd8)]=_0x54481f(0x15e),_0x338d73[_0x54481f(0xba)]=_0x54481f(0x9b),_0x338d73[_0x54481f(0x122)]=_0x54481f(0xa9),_0x338d73[_0x54481f(0x226)]=_0x54481f(0x186),_0x338d73[_0x54481f(0x1f7)]=_0x54481f(0x1a5),_0x338d73[_0x54481f(0x19c)]=_0x54481f(0x216),_0x338d73[_0x54481f(0x152)]=_0x54481f(0x12f),_0x338d73[_0x54481f(0x143)]='liveshare.fetch_operations',_0x338d73['LIVESHARE_TERMINATE']=_0x54481f(0x13a),_0x338d73[_0x54481f(0x18c)]='error_msg',_0x338d73[_0x54481f(0x105)]=_0x54481f(0xea),_0x338d73[_0x54481f(0xe1)]=_0x54481f(0x1ad),_0x338d73['UPDATE_PERMISSION_OBJ']=_0x54481f(0x20a),_0x338d73[_0x54481f(0x1b5)]=_0x54481f(0x124),_0x338d73))(ad||{});const sd=_0x54481f(0x208),od={};var id=Object[_0x54481f(0x20f)],dd=Object[_0x54481f(0x157)],md=(_0x1e6720,_0x53f40d,_0x2a792c,_0x17ddd2)=>{for(var _0x15024d=_0x17ddd2>0x1?void 0x0:_0x17ddd2?dd(_0x53f40d,_0x2a792c):_0x53f40d,_0x250152=_0x1e6720['length']-0x1,_0x5e7eb5;_0x250152>=0x0;_0x250152--)(_0x5e7eb5=_0x1e6720[_0x250152])&&(_0x15024d=(_0x17ddd2?_0x5e7eb5(_0x53f40d,_0x2a792c,_0x15024d):_0x5e7eb5(_0x15024d))||_0x15024d);return _0x17ddd2&&_0x15024d&&id(_0x53f40d,_0x2a792c,_0x15024d),_0x15024d;},ud=(_0x467291,_0x358db4)=>(_0x193107,_0x134421)=>_0x358db4(_0x193107,_0x134421,_0x467291);let jt=class extends _0x441d81{constructor(_0x4f24b1){const _0x5d570b=_0x54481f;super(),this[_0x5d570b(0xe6)]=_0x4f24b1,[re]['forEach'](_0x214434=>this[_0x5d570b(0xe6)][_0x5d570b(0x1d6)](_0x214434));}};jt=md([ud(0x0,_0x2b122d)],jt);const ld=_0x4375e7=>{const _0x3bff03=_0x54481f,_0x5e3c6d={};if(!_0x4375e7)return{'cellValue':_0x4375e7,'styleRefMap':void 0x0};const _0x394052=[];return{'cellValue':new _0x3597fb(_0x12a789[_0x3bff03(0xec)](_0x4375e7))[_0x3bff03(0x1bf)]((_0x3ac99c,_0x48b560,_0x3f8c76)=>{const _0x40bc69=_0x3bff03,_0xff8316=_0x3f8c76&&_0x3f8c76['s'];if(_0xff8316&&typeof _0xff8316===_0x40bc69(0x17a)){const _0x2fbb0a=JSON['stringify'](_0xff8316),_0x2908a2=_0x394052['findIndex'](_0x31d21d=>_0x31d21d===_0x2fbb0a);if(_0x2908a2>-0x1)_0x3f8c76['s']=''+_0x2908a2;else{const _0x19c0fd=_0x394052[_0x40bc69(0x187)](_0x2fbb0a)-0x1;_0x5e3c6d[_0x19c0fd]=_0xff8316,_0x3f8c76['s']=''+_0x19c0fd;}}})[_0x3bff03(0xd9)](),'styleRefMap':_0x5e3c6d};},cd=(_0x390ac0,_0x2009a7)=>!_0x390ac0||!_0x2009a7?_0x390ac0:new _0x3597fb(_0x12a789[_0x54481f(0xec)](_0x390ac0))['forValue']((_0x4f8e3e,_0x181203,_0x11e086)=>{const _0x23ee2f=_0x54481f,_0x581250=_0x11e086&&_0x11e086['s'];if(_0x581250&&typeof _0x581250===_0x23ee2f(0xf1)){const _0x3b1131=_0x2009a7[_0x581250];_0x3b1131&&(_0x11e086['s']=_0x3b1131);}})[_0x54481f(0xd9)](),pd=_0x411bfa(_0x54481f(0xb4)),fd=_0x411bfa(_0x54481f(0x1df));class ur{constructor(){const _0x397e03=_0x54481f;se(this,'interceptor',new _0x2aaff8({'COMPRESS_MUTATION_APPLY':pd,'COMPRESS_MUTATION_SEND':fd})),this[_0x397e03(0x1cf)]();}[_0x54481f(0x1cf)](){const _0x1e2a51=_0x54481f;this[_0x1e2a51(0x120)]['intercept'](this[_0x1e2a51(0x120)][_0x1e2a51(0xf3)]()['COMPRESS_MUTATION_APPLY'],{'priority':-0x1,'handler':_0x53bf5f=>_0x53bf5f}),this['interceptor'][_0x1e2a51(0x116)](this['interceptor'][_0x1e2a51(0xf3)]()['COMPRESS_MUTATION_SEND'],{'priority':-0x1,'handler':_0x5b6b05=>_0x5b6b05}),this[_0x1e2a51(0xeb)]();}[_0x54481f(0xeb)](){const _0x55dfdb=_0x54481f;this[_0x55dfdb(0x120)][_0x55dfdb(0x116)](this[_0x55dfdb(0x120)][_0x55dfdb(0xf3)]()[_0x55dfdb(0xb4)],{'handler':(_0x11a9f1,_0x32fe2f,_0x464c70)=>{if(!_0x11a9f1)return _0x464c70(_0x11a9f1);const _0x3c312b=_0x11a9f1['map'](_0x465fdb=>{const _0x3c199a=_0x5b5c;if(_0x465fdb['id']===_0x59880b['id']){const _0x3f13a0=_0x465fdb['params'];if(!_0x3f13a0[_0x3c199a(0x1c7)])return _0x465fdb;const _0x48e9a9=cd(_0x3f13a0[_0x3c199a(0xaf)],_0x3f13a0['styleRefMap']);return{..._0x465fdb,'params':{..._0x3f13a0,'cellValue':_0x48e9a9}};}return _0x465fdb;});return _0x464c70(_0x3c312b);}}),this[_0x55dfdb(0x120)]['intercept'](this[_0x55dfdb(0x120)][_0x55dfdb(0xf3)]()[_0x55dfdb(0x1df)],{'handler':(_0x422634,_0x5f2f26,_0x2f4c0f)=>{const _0x341d0d=_0x55dfdb;if(!_0x422634)return _0x2f4c0f(_0x422634);const _0x626854=_0x422634[_0x341d0d(0x21d)](_0x1d89c6=>{const _0x3fd12f=_0x341d0d;if(_0x1d89c6['id']===_0x59880b['id']){const _0x1a1641=_0x1d89c6[_0x3fd12f(0x191)];return _0x1a1641[_0x3fd12f(0x1c7)]?_0x1d89c6:{..._0x1d89c6,'params':{..._0x1a1641,...ld(_0x1a1641['cellValue'])}};}return _0x1d89c6;});return _0x2f4c0f(_0x626854);}});}}var Rd=Object[_0x54481f(0x20f)],hd=Object['getOwnPropertyDescriptor'],gd=(_0x50a6a2,_0x2db111,_0x3d3a1c,_0x1be9f7)=>{for(var _0x40b332=_0x1be9f7>0x1?void 0x0:_0x1be9f7?hd(_0x2db111,_0x3d3a1c):_0x2db111,_0x309c0b=_0x50a6a2['length']-0x1,_0x1bed54;_0x309c0b>=0x0;_0x309c0b--)(_0x1bed54=_0x50a6a2[_0x309c0b])&&(_0x40b332=(_0x1be9f7?_0x1bed54(_0x2db111,_0x3d3a1c,_0x40b332):_0x1bed54(_0x40b332))||_0x40b332);return _0x1be9f7&&_0x40b332&&Rd(_0x2db111,_0x3d3a1c,_0x40b332),_0x40b332;},Id=(_0x22c936,_0x3e9016)=>(_0x1f54c0,_0x56ce46)=>_0x3e9016(_0x1f54c0,_0x56ce46,_0x22c936);const nm=new Set([_0x392aa2['id'],_0x58230c['id'],_0x3b4149['id'],_0xfb6287['id'],_0x11f486['id']]),am=new Set([_0x392aa2['id'],_0x58230c['id'],re['id'],_0x4310ec['id']]);let $t=class{constructor(_0x138636){this['_univerInstanceService']=_0x138636;}[_0x54481f(0x20e)](_0x4c023b){const _0x349bf2=_0x54481f,_0x44adb6=this[_0x349bf2(0xac)][_0x349bf2(0x1dd)](_0x4c023b);if(!_0x44adb6)throw new Error(_0x349bf2(0x225)+_0x4c023b+'.');return _0x44adb6[_0x349bf2(0x224)]();}[_0x54481f(0xb5)](_0x388fe1){const _0x3bd379=_0x54481f,_0x5918d3=this['_univerInstanceService']['getUnit'](_0x388fe1);if(!_0x5918d3)throw new Error(_0x3bd379(0xb3)+_0x388fe1+'.');return _0x5918d3['incrementRev'](),_0x5918d3['getRev']();}[_0x54481f(0x132)](_0x48963f,_0x183b36){const _0x4a3703=_0x54481f,_0x16a47d=this['_univerInstanceService'][_0x4a3703(0x1dd)](_0x48963f);_0x16a47d&&_0x16a47d[_0x4a3703(0x1fd)](_0x183b36);}};$t=gd([Id(0x0,_0x447f4c)],$t);var ne=(_0x4e04eb=>(_0x4e04eb[_0x4e04eb[_0x54481f(0xfe)]=0x0]='UNDEFINED',_0x4e04eb[_0x4e04eb['OK']=0x1]='OK',_0x4e04eb[_0x4e04eb[_0x54481f(0x1f0)]=0x2]=_0x54481f(0x1f0),_0x4e04eb[_0x4e04eb[_0x54481f(0x14d)]=0x3]=_0x54481f(0x14d),_0x4e04eb[_0x4e04eb[_0x54481f(0x18e)]=0x4]=_0x54481f(0x18e),_0x4e04eb[_0x4e04eb[_0x54481f(0x212)]=0x5]='UNAUTHENTICATED',_0x4e04eb[_0x4e04eb[_0x54481f(0xb9)]=0x6]=_0x54481f(0xb9),_0x4e04eb[_0x4e04eb[_0x54481f(0x1e7)]=0x7]=_0x54481f(0x1e7),_0x4e04eb[_0x4e04eb['TOO_MANY_REQUESTS']=0x8]=_0x54481f(0x103),_0x4e04eb[_0x4e04eb[_0x54481f(0x15f)]=0x9]=_0x54481f(0x15f),_0x4e04eb[_0x4e04eb['CHANGESET_REVISION_CONFILICT']=0x1389]='CHANGESET_REVISION_CONFILICT',_0x4e04eb[_0x4e04eb[_0x54481f(0x141)]=0x1771]='SNAPSHOT_INVALID_SNAPSHOT',_0x4e04eb[_0x4e04eb[_0x54481f(0x22e)]=0x1772]=_0x54481f(0x22e),_0x4e04eb[_0x4e04eb['ENSURE_SNAPSHOT_EXECUTION']=0x1773]=_0x54481f(0x153),_0x4e04eb[_0x4e04eb['APPLY_REJECT']=0x1b59]='APPLY_REJECT',_0x4e04eb[_0x4e04eb[_0x54481f(0x145)]=0x1b5a]=_0x54481f(0x145),_0x4e04eb[_0x4e04eb[_0x54481f(0x199)]=0x1b5b]=_0x54481f(0x199),_0x4e04eb[_0x4e04eb[_0x54481f(0xa5)]=0x1b5c]=_0x54481f(0xa5),_0x4e04eb[_0x4e04eb[_0x54481f(0x17c)]=0x1b5d]='APPLY_DUPLICATED',_0x4e04eb[_0x4e04eb['CONNECTOR_DATA_TOO_LARGE']=0x1f41]=_0x54481f(0x1b6),_0x4e04eb[_0x4e04eb['LICENSE_MAX_UNITS_EXCEEDED']=0x2329]=_0x54481f(0x1fa),_0x4e04eb[_0x4e04eb['LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED']=0x232a]=_0x54481f(0x165),_0x4e04eb[_0x4e04eb[_0x54481f(0xef)]=0x232b]=_0x54481f(0xef),_0x4e04eb[_0x4e04eb[_0x54481f(0x128)]=0x232c]=_0x54481f(0x128),_0x4e04eb[_0x4e04eb[_0x54481f(0x146)]=0x232d]='LICENSE_DISTRO_REJECTED',_0x4e04eb[_0x4e04eb[_0x54481f(0xb8)]=0x2711]='YUUMI_UNABLE_LOAD_URL',_0x4e04eb[_0x4e04eb[_0x54481f(0xc7)]=0x2712]='YUUMI_URL_COL_OUT_OF_RANGE',_0x4e04eb[_0x4e04eb[_0x54481f(0x20c)]=0x2713]=_0x54481f(0x20c),_0x4e04eb[_0x4e04eb[_0x54481f(0xb0)]=0x2714]=_0x54481f(0xb0),_0x4e04eb[_0x4e04eb[_0x54481f(0x14f)]=-0x1]=_0x54481f(0x14f),_0x4e04eb))(ne||{}),j=(_0x2cc019=>(_0x2cc019[_0x2cc019[_0x54481f(0x21b)]=0x0]='UNIVER_UNKNOWN',_0x2cc019[_0x2cc019[_0x54481f(0x138)]=0x1]=_0x54481f(0x138),_0x2cc019[_0x2cc019['UNIVER_SHEET']=0x2]=_0x54481f(0x1c9),_0x2cc019[_0x2cc019[_0x54481f(0x1fc)]=0x3]='UNIVER_SLIDE',_0x2cc019[_0x2cc019[_0x54481f(0x18b)]=0x4]=_0x54481f(0x18b),_0x2cc019[_0x2cc019[_0x54481f(0x14f)]=-0x1]=_0x54481f(0x14f),_0x2cc019))(j||{});function Yt(_0x1e35ce){const _0xf6804a=_0x54481f;return!!(_0x1e35ce&&_0x1e35ce['code']&&_0x1e35ce[_0xf6804a(0x21f)]!==ne['OK']&&_0x1e35ce[_0xf6804a(0x21f)]!=='OK');}const J=[];for(let t=0x0;t<0x100;++t)J[_0x54481f(0x187)]((t+0x100)[_0x54481f(0x215)](0x10)[_0x54481f(0x1f2)](0x1));function wd(_0x1ca7c8,_0x7295bc=0x0){const _0x2867cc=_0x54481f;return(J[_0x1ca7c8[_0x7295bc+0x0]]+J[_0x1ca7c8[_0x7295bc+0x1]]+J[_0x1ca7c8[_0x7295bc+0x2]]+J[_0x1ca7c8[_0x7295bc+0x3]]+'-'+J[_0x1ca7c8[_0x7295bc+0x4]]+J[_0x1ca7c8[_0x7295bc+0x5]]+'-'+J[_0x1ca7c8[_0x7295bc+0x6]]+J[_0x1ca7c8[_0x7295bc+0x7]]+'-'+J[_0x1ca7c8[_0x7295bc+0x8]]+J[_0x1ca7c8[_0x7295bc+0x9]]+'-'+J[_0x1ca7c8[_0x7295bc+0xa]]+J[_0x1ca7c8[_0x7295bc+0xb]]+J[_0x1ca7c8[_0x7295bc+0xc]]+J[_0x1ca7c8[_0x7295bc+0xd]]+J[_0x1ca7c8[_0x7295bc+0xe]]+J[_0x1ca7c8[_0x7295bc+0xf]])[_0x2867cc(0x17d)]();}let ie;const Cd=new Uint8Array(0x10);function Pd(){const _0x2638d4=_0x54481f;if(!ie){if(typeof crypto>'u'||!crypto[_0x2638d4(0xc1)])throw new Error(_0x2638d4(0x1c2));ie=crypto[_0x2638d4(0xc1)][_0x2638d4(0x1e4)](crypto);}return ie(Cd);}const Ud=typeof crypto<'u'&&crypto[_0x54481f(0xee)]&&crypto[_0x54481f(0xee)][_0x54481f(0x1e4)](crypto),Fe={'randomUUID':Ud};function Be(_0x1a7ac8,_0x107085,_0x494752){const _0x4309ca=_0x54481f;if(Fe[_0x4309ca(0xee)]&&!_0x107085&&!_0x1a7ac8)return Fe[_0x4309ca(0xee)]();_0x1a7ac8=_0x1a7ac8||{};const _0x13276d=_0x1a7ac8[_0x4309ca(0x207)]||(_0x1a7ac8[_0x4309ca(0xca)]||Pd)();return _0x13276d[0x6]=_0x13276d[0x6]&0xf|0x40,_0x13276d[0x8]=_0x13276d[0x8]&0x3f|0x80,wd(_0x13276d);}const bd={[_0x40c94a['UNIVER_DOC']]:j['UNIVER_DOC'],[_0x40c94a['UNIVER_SHEET']]:j['UNIVER_SHEET'],[_0x40c94a['UNIVER_SLIDE']]:j[_0x54481f(0x1fc)],[_0x40c94a['UNIVER_UNKNOWN']]:j['UNIVER_UNKNOWN'],[_0x40c94a['UNIVER_PROJECT']]:j[_0x54481f(0x21b)],[_0x40c94a[_0x54481f(0x14f)]]:j[_0x54481f(0x14f)]};function sm(_0x17bb03){const _0x5ba456=_0x54481f;var _0x151dae;return(_0x151dae=bd[_0x17bb03])!=null?_0x151dae:j[_0x5ba456(0x21b)];}function om(_0x5f0ce4){const _0x2c45f5=_0x54481f;return btoa(encodeURIComponent(_0x5f0ce4)['replace'](/%([0-9A-F]{2})/g,(_0x1d419e,_0x4b1b0e)=>String[_0x2c45f5(0xae)](Number[_0x2c45f5(0xfc)](_0x4b1b0e,0x10))));}const Md=new TextDecoder();function lr(_0x403963){const _0x13b730=_0x54481f,_0x5c50c0=atob(_0x403963),_0x4e6ae2=_0x5c50c0[_0x13b730(0xbd)];let _0x5ab679=new Uint8Array(_0x4e6ae2);for(let _0x455646=0x0;_0x455646<_0x4e6ae2;_0x455646++)_0x5ab679[_0x455646]=_0x5c50c0[_0x13b730(0x109)](_0x455646);const _0x3e4df4=Md['decode'](_0x5ab679);return _0x5ab679=null,_0x3e4df4;}const ae=new TextEncoder(),ve=new TextDecoder();function cr(_0x122b12){const _0x3e7a3a=_0x54481f,_0x57099d=_0x12a789[_0x3e7a3a(0xec)](_0x122b12);return delete _0x57099d['id'],delete _0x57099d[_0x3e7a3a(0xab)],delete _0x57099d[_0x3e7a3a(0xb1)],delete _0x57099d[_0x3e7a3a(0x1cd)],delete _0x57099d['cellData'],ae[_0x3e7a3a(0x20b)](JSON[_0x3e7a3a(0xcd)](_0x57099d));}function pr(_0x472268){const _0x146454=_0x54481f,_0x3d2758=_0x12a789[_0x146454(0xec)](_0x472268);return delete _0x3d2758['id'],delete _0x3d2758[_0x146454(0x1b0)],delete _0x3d2758['name'],delete _0x3d2758['sheetOrder'],delete _0x3d2758[_0x146454(0x102)],ae[_0x146454(0x20b)](JSON[_0x146454(0xcd)](_0x3d2758));}function fr(_0x164148){const _0x375585=_0x54481f,_0xab865f=_0x12a789[_0x375585(0xec)](_0x164148);return delete _0xab865f['id'],delete _0xab865f[_0x375585(0x1b0)],delete _0xab865f[_0x375585(0x205)],delete _0xab865f[_0x375585(0x1dc)],ae[_0x375585(0x20b)](JSON[_0x375585(0xcd)](_0xab865f));}function Ge(_0x494394){const _0x170ba8=_0x54481f;return JSON[_0x170ba8(0x209)](typeof _0x494394=='string'?lr(_0x494394):ve[_0x170ba8(0x19f)](_0x494394));}function vd(_0xa6effa){const _0xb6f88c=_0x54481f;return _0xa6effa instanceof Uint8Array?JSON['parse'](ve[_0xb6f88c(0x19f)](_0xa6effa)):_0xa6effa;}function Ed(_0x4903ca){const _0x220a0c=_0x54481f;return JSON[_0x220a0c(0x209)](typeof _0x4903ca==_0x220a0c(0xf1)?lr(_0x4903ca):ve[_0x220a0c(0x19f)](_0x4903ca));}const de=0x100*0x14;function Rr(_0x57b64c,_0x1a19d0){const _0x30edd9=_0x54481f,_0x455561=new _0x3597fb(_0x57b64c),_0x53a91e=_0x455561[_0x30edd9(0x1a4)](),_0x58a864=[];let _0x4f0c40=0x0;for(;_0x4f0c40<_0x53a91e;){const _0x4416bd=Math[_0x30edd9(0x12b)](_0x4f0c40+de,_0x53a91e-0x1),_0x4f9420=_0x455561[_0x30edd9(0x1a2)](_0x4f0c40,Math[_0x30edd9(0x12b)](_0x4f0c40+de,_0x53a91e-0x1),0x0,_0x1a19d0),_0x45ddb7=Sd(_0x4f9420);_0x58a864['push']({'id':_0x12a789['generateRandomId'](0x13,_0x30edd9(0x12e)),'startRow':_0x4f0c40,'endRow':_0x4416bd,'data':_0x45ddb7}),_0x4f0c40+=de;}return _0x58a864;}function Sd(_0x5f1b5e){const _0x28dda4=_0x54481f,_0x171c29=_0x5f1b5e[_0x28dda4(0x11f)]();return ae[_0x28dda4(0x20b)](JSON[_0x28dda4(0xcd)](_0x171c29));}async function im(_0x545a4,_0x28efac,_0x504489,_0x53b51f){const _0xe5ee24=_0x54481f;var _0x288e06;const _0xe12a93={'unitID':_0x28efac['id'],'rev':_0x53b51f,'creator':'','name':(_0x288e06=_0x28efac[_0xe5ee24(0x205)])!=null?_0x288e06:'','resources':_0x28efac[_0xe5ee24(0x1dc)]||[],'originalMeta':fr(_0x28efac)};return{'snapshot':{'unitID':_0x504489,'rev':_0xe12a93['rev'],'type':j[_0xe5ee24(0x138)],'workbook':void 0x0,'doc':_0xe12a93}};}async function dm(_0x57e476,_0x54d164,_0x22ec43,_0x2fca90,_0x2ffbce){const _0x20f2a1=_0x54481f,_0x5c1186={},_0x592d29={};if(!await Promise['all'](Object[_0x20f2a1(0x13f)](_0x54d164[_0x20f2a1(0x102)])[_0x20f2a1(0x21d)](async([_0x465def,_0x3db7dc])=>{const _0x739579=_0x20f2a1,_0x43da9c={'id':_0x3db7dc['id'],'type':_0x520ae2['GRID'],'name':_0x3db7dc[_0x739579(0xab)],'rowCount':_0x3db7dc[_0x739579(0xb1)],'columnCount':_0x3db7dc[_0x739579(0x1cd)],'originalMeta':cr(_0x3db7dc)};if(_0x592d29[_0x465def]=_0x43da9c,_0x3db7dc[_0x739579(0xf0)]){const _0x34294d=Rr(_0x3db7dc[_0x739579(0xf0)],_0x3db7dc[_0x739579(0x1cd)]),_0x18dfd7=await Promise[_0x739579(0xce)](_0x34294d['map'](_0x188123=>_0x2ffbce[_0x739579(0x1b1)](_0x57e476,{'unitID':_0x22ec43,'type':j[_0x739579(0x1c9)],'block':_0x188123})));if(_0x18dfd7['some'](_0x33ad7b=>{const _0x268198=_0x739579;var _0x561a80;return((_0x561a80=_0x33ad7b[_0x268198(0xc8)])==null?void 0x0:_0x561a80[_0x268198(0x21f)])!==ne['OK'];}))return!0x1;_0x5c1186[_0x465def]={'sheetID':_0x465def,'blocks':_0x18dfd7[_0x739579(0x21d)](_0x4427d0=>_0x4427d0[_0x739579(0x176)])};}return!0x0;})))throw new Error(_0x20f2a1(0x188));const _0x54dd14=pr(_0x54d164),_0x26d83e={'unitID':_0x54d164['id'],'rev':_0x2fca90,'creator':'','name':_0x54d164[_0x20f2a1(0xab)],'sheetOrder':_0x54d164[_0x20f2a1(0x1da)],'sheets':_0x592d29,'blockMeta':_0x5c1186,'resources':_0x54d164['resources']||[],'originalMeta':_0x54dd14};return{'snapshot':{'unitID':_0x22ec43,'rev':_0x26d83e[_0x20f2a1(0x1b0)],'type':j[_0x20f2a1(0x1c9)],'workbook':_0x26d83e,'doc':void 0x0}};}async function mm(_0x5a56eb,_0x3f7397,_0x221b88,_0x2171c6,_0x8790cb){const _0x323efb=_0x54481f;var _0xc75361,_0x21b57c;const _0x5d1be6={},_0x6e3916={};if(!await Promise['all'](Object[_0x323efb(0x13f)](_0x3f7397[_0x323efb(0x102)])[_0x323efb(0x21d)](async([_0x1594dc,_0x254d7c])=>{const _0x5419f3=_0x323efb,_0x4c001b={'id':_0x254d7c['id'],'type':_0x520ae2[_0x5419f3(0x1d5)],'name':_0x254d7c[_0x5419f3(0xab)],'rowCount':_0x254d7c[_0x5419f3(0xb1)],'columnCount':_0x254d7c[_0x5419f3(0x1cd)],'originalMeta':cr(_0x254d7c)};if(_0x6e3916[_0x1594dc]=_0x4c001b,_0x254d7c[_0x5419f3(0xf0)]){const _0xf8917e=Rr(_0x254d7c['cellData'],_0x254d7c['columnCount']),_0x43940c=await Promise['all'](_0xf8917e[_0x5419f3(0x21d)](_0x562a4d=>_0x8790cb[_0x5419f3(0x1b1)](_0x5a56eb,{'unitID':_0x221b88,'type':j['UNIVER_SHEET'],'block':_0x562a4d})));if(_0x43940c['some'](_0x3bf765=>{const _0xc0c0fe=_0x5419f3;var _0x5066c6;return((_0x5066c6=_0x3bf765['error'])==null?void 0x0:_0x5066c6[_0xc0c0fe(0x21f)])!==ne['OK'];}))return!0x1;_0x5d1be6[_0x1594dc]={'sheetID':_0x1594dc,'blocks':_0x43940c['map'](_0x2f39cf=>_0x2f39cf['blockID'])};}return!0x0;})))throw new Error('[transformWorkbookDataToSnapshot()]:\x20Failed\x20to\x20save\x20sheet\x20blocks.');const _0x59558d=pr(_0x3f7397),_0x4ee339={'unitID':_0x3f7397['id'],'rev':_0x2171c6,'creator':'','name':_0x3f7397['name'],'sheetOrder':_0x3f7397['sheetOrder'],'sheets':_0x6e3916,'blockMeta':_0x5d1be6,'resources':_0x3f7397[_0x323efb(0x1dc)]||[],'originalMeta':_0x59558d},_0x5d4668={'unitID':_0x221b88,'rev':_0x4ee339[_0x323efb(0x1b0)],'type':j[_0x323efb(0x1c9)],'workbook':_0x4ee339,'doc':void 0x0},_0x7febf7=await _0x8790cb[_0x323efb(0x1ed)](_0x5a56eb,{'unitID':_0x221b88,'type':j[_0x323efb(0x1c9)],'snapshot':_0x5d4668});if(Yt(_0x7febf7[_0x323efb(0xc8)]))throw new Error(_0x323efb(0x162)+((_0xc75361=_0x7febf7[_0x323efb(0xc8)])==null?void 0x0:_0xc75361[_0x323efb(0x21f)])+':'+((_0x21b57c=_0x7febf7[_0x323efb(0xc8)])==null?void 0x0:_0x21b57c[_0x323efb(0x18d)]));return{'snapshot':_0x5d4668};}function Wd(_0xe18127,_0x11652f,_0x54f47e){const _0x40e442=_0x54481f,_0x2f0405=_0xe18127[_0x40e442(0x11a)];if(!_0x2f0405)throw new Error('');const _0x4a47ac={};Object['entries'](_0x2f0405[_0x40e442(0x102)])[_0x40e442(0x147)](([_0x467460,_0x2a4bff])=>{const _0x2f5025=_0x40e442,_0xbe7f38=Ge(_0x2a4bff[_0x2f5025(0xfd)]);_0x4a47ac[_0x467460]={'id':_0x2a4bff['id'],'name':_0x2a4bff['name'],'rowCount':_0x2a4bff[_0x2f5025(0xb1)],'columnCount':_0x2a4bff[_0x2f5025(0x1cd)],..._0xbe7f38};});const _0x4fb215=new Map();_0x11652f[_0x40e442(0x147)](_0x4e7bc4=>{const _0x503a65=_0x40e442;_0x4fb215[_0x503a65(0x204)](_0x4e7bc4['id'],_0x4e7bc4);}),_0x2f0405[_0x40e442(0xe0)]&&Object['entries'](_0x2f0405['blockMeta'])[_0x40e442(0x147)](([_0x278381,_0x5407fb])=>{const _0x29375d=_0x40e442;var _0x5cf0ec;const _0x2fe041=_0x4a47ac[_0x278381];_0x2fe041['cellData']={};const _0x18e1cf=[];(_0x5cf0ec=_0x5407fb[_0x29375d(0x1e9)])==null||_0x5cf0ec[_0x29375d(0x147)](_0x22a38c=>{const _0x61f64a=_0x29375d,_0x389f72=_0x4fb215[_0x61f64a(0x1d8)](_0x22a38c);if(_0x389f72)_0x18e1cf[_0x61f64a(0x187)](_0x389f72);else throw new Error('');}),_0x18e1cf[_0x29375d(0x147)](_0x4266d8=>{const _0x2df61e=_0x29375d,_0x488de4=vd(_0x4266d8[_0x2df61e(0x1a8)]);Object[_0x2df61e(0x13f)](_0x488de4)[_0x2df61e(0x147)](([_0x361c24,_0x1e574d])=>{const _0x147769=_0x2df61e,_0x3542b4=_0x2fe041['cellData'][+_0x361c24]={};Object[_0x147769(0x13f)](_0x1e574d)['forEach'](([_0xf28c88,_0x2c0c87])=>{_0x3542b4[+_0xf28c88]=_0x2c0c87;});});});});const _0x5093e3=Ge(_0x2f0405[_0x40e442(0xfd)]);return{'id':_0xe18127[_0x40e442(0xfb)]||_0x2f0405[_0x40e442(0xfb)],'rev':_0xe18127[_0x40e442(0x1b0)]||_0x2f0405['rev'],'name':_0x2f0405[_0x40e442(0xab)],'sheetOrder':_0x2f0405[_0x40e442(0x1da)],'appVersion':'','locale':_0x4a1312[_0x40e442(0xd7)],'sheets':_0x4a47ac,'styles':{},'resources':_0x2f0405[_0x40e442(0x1dc)]||[],..._0x5093e3};}function Vd(_0x133274){const _0x43298f=_0x54481f,_0xae15b9=_0x133274[_0x43298f(0xc5)];if(_0xae15b9==null)throw new Error('transformSnapshotToDocumentData():\x20snapshot.doc\x20is\x20undefined.');const {unitID:_0x4d2ebd,rev:_0x58b0b,name:_0x5d727e,originalMeta:_0x1d827a,resources:_0x8f390e=[]}=_0xae15b9,{body:_0x4fc961,documentStyle:_0x4c4611={},settings:_0x320ffd={},drawings:_0x57a503={},drawingsOrder:_0xfde2a6=[],tableSource:_0x459e6a={},headers:_0x43de11={},footers:_0xf0a8ec={},lists:_0x116f4a={}}=Ed(_0x1d827a);return{'id':_0x4d2ebd,'rev':_0x58b0b,'locale':_0x4a1312['EN_US'],'title':_0x5d727e,'body':_0x4fc961,'documentStyle':_0x4c4611,'settings':_0x320ffd,'drawings':_0x57a503,'drawingsOrder':_0xfde2a6,'resources':_0x8f390e,'tableSource':_0x459e6a,'headers':_0x43de11,'footers':_0xf0a8ec,'lists':_0x116f4a};}async function um(_0x12e28a,_0x24fa26,_0x28fd91,_0x50bf6b,_0x2c3147){const _0x80197d=_0x54481f;var _0x329be4,_0x49e5c6,_0x489ac4;const _0x2ecc82={'unitID':_0x24fa26['id'],'rev':_0x50bf6b,'creator':'','name':(_0x329be4=_0x24fa26[_0x80197d(0x205)])!=null?_0x329be4:'','resources':_0x24fa26[_0x80197d(0x1dc)]||[],'originalMeta':fr(_0x24fa26)},_0x291f5c={'unitID':_0x28fd91,'rev':_0x2ecc82['rev'],'type':j[_0x80197d(0x138)],'workbook':void 0x0,'doc':_0x2ecc82},_0x239b5d=await _0x2c3147[_0x80197d(0x1ed)](_0x12e28a,{'unitID':_0x28fd91,'type':j[_0x80197d(0x138)],'snapshot':_0x291f5c});if(Yt(_0x239b5d['error']))throw new Error('transformDocumentDataToSnapshot():\x20Failed\x20to\x20save\x20snapshot.\x0aErrorCode:\x20'+((_0x49e5c6=_0x239b5d[_0x80197d(0xc8)])==null?void 0x0:_0x49e5c6[_0x80197d(0x21f)])+':'+((_0x489ac4=_0x239b5d[_0x80197d(0xc8)])==null?void 0x0:_0x489ac4[_0x80197d(0x18d)]));return{'snapshot':_0x291f5c};}async function lm(_0x4b6724,_0x5b9116){const _0x1697b8=_0x54481f,_0x35e3fa=_0x4b6724[_0x1697b8(0x11a)];if(!_0x35e3fa)throw new Error('Workbook\x20metadata\x20is\x20not\x20available');const _0x509dce=[],_0x2f346a=[];return Object['entries'](_0x35e3fa['blockMeta'])['forEach'](([_0x1be16a,_0x56b39a])=>{const _0x4e204c=_0x1697b8,_0xfe19cd=_0x56b39a[_0x4e204c(0x1e9)][_0x4e204c(0x21d)](async _0x4918a5=>{const _0x2e0f34=_0x4e204c,_0x2855f2={'unitID':_0x35e3fa['unitID'],'type':j[_0x2e0f34(0x1c9)],'blockID':_0x4918a5},{block:_0x1b07bc}=await _0x5b9116[_0x2e0f34(0xf2)]({},_0x2855f2);if(_0x1b07bc)_0x509dce[_0x2e0f34(0x187)](_0x1b07bc);else throw new Error(_0x2e0f34(0x202));});_0x2f346a['push'](..._0xfe19cd);}),await Promise[_0x1697b8(0xce)](_0x2f346a),_0x509dce;}var _d=Object['defineProperty'],Od=Object['getOwnPropertyDescriptor'],yd=(_0x1eff15,_0x57c79b,_0xcc1a37,_0x270e74)=>{const _0x127d75=_0x54481f;for(var _0x4af524=_0x270e74>0x1?void 0x0:_0x270e74?Od(_0x57c79b,_0xcc1a37):_0x57c79b,_0x38a5e5=_0x1eff15[_0x127d75(0xbd)]-0x1,_0x58443d;_0x38a5e5>=0x0;_0x38a5e5--)(_0x58443d=_0x1eff15[_0x38a5e5])&&(_0x4af524=(_0x270e74?_0x58443d(_0x57c79b,_0xcc1a37,_0x4af524):_0x58443d(_0x4af524))||_0x4af524);return _0x270e74&&_0x4af524&&_d(_0x57c79b,_0xcc1a37,_0x4af524),_0x4af524;},mt=(_0x1a1ba2,_0x364c09)=>(_0x4e4ef9,_0x248fa9)=>_0x364c09(_0x4e4ef9,_0x248fa9,_0x1a1ba2);const Nd=_0x3b0bb1(_0x54481f(0x155));let pe=class{constructor(_0x5f0ce7,_0x30da39,_0x4df9b5,_0xbb6ca7,_0x1182ce,_0x32ee1f,_0x18a99f){const _0x34a1e0=_0x54481f;this['_revisionService']=_0x5f0ce7,this[_0x34a1e0(0xac)]=_0x30da39,this[_0x34a1e0(0x1ff)]=_0x4df9b5,this[_0x34a1e0(0xe6)]=_0xbb6ca7,this[_0x34a1e0(0x10d)]=_0x1182ce,this['_compressMutationService']=_0x32ee1f,this[_0x34a1e0(0xed)]=_0x18a99f;}async['loadSheet'](_0x34c43c,_0x11fb46,_0x271051){const _0x3e2e9f=_0x54481f;var _0x55bfdc;_0x271051===void 0x0&&(_0x271051={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x41dbe4,changesets:_0x216412,error:_0x4dc3cb}=await this[_0x3e2e9f(0x1ff)][_0x3e2e9f(0x1e6)](_0x271051,{'unitID':_0x34c43c,'type':j[_0x3e2e9f(0x1c9)],'revision':_0x11fb46});if(Yt(_0x4dc3cb)||!_0x41dbe4||!_0x41dbe4[_0x3e2e9f(0x11a)])throw new Error(_0x3e2e9f(0x1f9));const _0x2dcd2f=(_0x55bfdc=_0x216412==null?void 0x0:_0x216412[_0x3e2e9f(0xbd)])!=null?_0x55bfdc:0x0;if(_0x11fb46!==0x0&&_0x41dbe4[_0x3e2e9f(0x1b0)]+_0x2dcd2f!==_0x11fb46)throw new Error(_0x3e2e9f(0x1ae));const {workbook:_0x5609b9}=_0x41dbe4,_0x28bf06=_0x5609b9[_0x3e2e9f(0xe0)]?Object['entries'](_0x5609b9[_0x3e2e9f(0xe0)])[_0x3e2e9f(0x21d)](([_0x232831,_0x285d56])=>{const _0x515d5e=_0x3e2e9f;var _0x3cc356,_0x337093;return(_0x337093=(_0x3cc356=_0x285d56['blocks'])==null?void 0x0:_0x3cc356[_0x515d5e(0x21d)](_0x5ee58b=>_0x5ee58b))!=null?_0x337093:[];})[_0x3e2e9f(0xe4)]():[],_0x4f3f1b=(await Promise[_0x3e2e9f(0xce)](_0x28bf06[_0x3e2e9f(0x21d)](_0x5a6636=>this['_snapshotServerService'][_0x3e2e9f(0x112)](_0x271051,{'unitID':_0x34c43c,'type':j[_0x3e2e9f(0x1c9)],'blockID':_0x5a6636})['then'](_0x1f641b=>_0x1f641b[_0x3e2e9f(0x154)]))))[_0x3e2e9f(0x94)](_0x4b5c1a=>!!_0x4b5c1a),_0x174b49=Wd(_0x41dbe4,_0x4f3f1b),_0x54e28e=this[_0x3e2e9f(0xac)][_0x3e2e9f(0xa3)](_0x40c94a[_0x3e2e9f(0x1c9)],_0x174b49),_0x5a42bf=this[_0x3e2e9f(0x17b)][_0x3e2e9f(0x120)][_0x3e2e9f(0x14e)](this[_0x3e2e9f(0x17b)][_0x3e2e9f(0x120)][_0x3e2e9f(0xf3)]()[_0x3e2e9f(0xb4)]);return _0x216412==null||_0x216412[_0x3e2e9f(0x147)](_0x2e09d2=>{const _0xfd417b=_0x3e2e9f,_0x5adb9e=_0x2e09d2[_0xfd417b(0x19a)]['map'](_0x36c258=>({'id':_0x36c258['id'],'params':JSON['parse'](_0x36c258['data'])}));({..._0x2e09d2,'mutations':_0x5a42bf(_0x5adb9e,null)||_0x5adb9e}['mutations'][_0xfd417b(0x147)](_0x1c49b7=>this[_0xfd417b(0xe6)][_0xfd417b(0x1d2)](_0x1c49b7['id'],_0x1c49b7[_0xfd417b(0x191)],{'fromChangeset':!0x0})),this['_revisionService']['incrementRevOfUnit'](_0x34c43c));}),_0x54e28e;}async[_0x54481f(0x148)](_0x59fca5,_0x4f4714,_0x5a928a){const _0xc7d299=_0x54481f;var _0x1bc541;_0x5a928a===void 0x0&&(_0x5a928a={'metadata':{'x-feature-id':Be()}});const {snapshot:_0x1e5ed2,changesets:_0x2d75dd,error:_0x24bc8b}=await this['_snapshotServerService'][_0xc7d299(0x1e6)](_0x5a928a,{'unitID':_0x59fca5,'type':j[_0xc7d299(0x138)],'revision':_0x4f4714});if(Yt(_0x24bc8b)||!_0x1e5ed2||!_0x1e5ed2[_0xc7d299(0xc5)])throw new Error('[SnapshotService]:\x20request\x20snapshot\x20error!');const _0xdd59b1=(_0x1bc541=_0x2d75dd==null?void 0x0:_0x2d75dd[_0xc7d299(0xbd)])!=null?_0x1bc541:0x0;if(_0x4f4714!==0x0&&_0x1e5ed2[_0xc7d299(0x1b0)]+_0xdd59b1!==_0x4f4714)throw new Error(_0xc7d299(0x1ae));const _0xf08ed9=Vd(_0x1e5ed2),_0x9ac696=this[_0xc7d299(0xac)][_0xc7d299(0xa3)](_0x40c94a['UNIVER_DOC'],_0xf08ed9);return _0x2d75dd==null||_0x2d75dd[_0xc7d299(0x147)](_0x22676d=>{const _0xed0d4b=_0xc7d299;_0x22676d[_0xed0d4b(0x19a)]['map'](_0x3aff62=>({'id':_0x3aff62['id'],'params':JSON['parse'](_0x3aff62[_0xed0d4b(0x1a8)])}))[_0xed0d4b(0x147)](_0x5d7283=>this['_commandService'][_0xed0d4b(0x1d2)](_0x5d7283['id'],_0x5d7283[_0xed0d4b(0x191)],{'fromChangeset':!0x0})),this[_0xed0d4b(0x101)][_0xed0d4b(0xb5)](_0x59fca5);}),_0x9ac696;}[_0x54481f(0x183)](_0x495db6,_0x34ce3a){const _0x2fe9ae=_0x54481f,_0xac68ca={..._0x34ce3a['getSnapshot']()};_0x34ce3a['getSheets']()[_0x2fe9ae(0x147)](_0xf37ece=>{const _0xb11f4f=_0x2fe9ae;_0xac68ca[_0xb11f4f(0x102)][_0xf37ece[_0xb11f4f(0x1a0)]()]=_0x12a789[_0xb11f4f(0xec)](_0xf37ece[_0xb11f4f(0x203)]());});const _0x18a6b9=this[_0x2fe9ae(0xed)][_0x2fe9ae(0x10b)](_0x34ce3a[_0x2fe9ae(0x1d9)](),_0x40c94a[_0x2fe9ae(0x1c9)]);return _0xac68ca['resources']=_0x18a6b9,_0xac68ca;}[_0x54481f(0x193)](_0x5c9ef6,_0x178963){const _0x1a1c57=_0x54481f,_0x31db71={..._0x178963[_0x1a1c57(0x203)]()},_0x5afb17=this['_resourceManagerService'][_0x1a1c57(0x10b)](_0x178963['getUnitId'](),_0x40c94a[_0x1a1c57(0x138)]);return _0x31db71[_0x1a1c57(0x1dc)]=_0x5afb17,_0x31db71;}};pe=yd([mt(0x0,_0x3d133c($t)),mt(0x1,_0x447f4c),mt(0x2,Nd),mt(0x3,_0x2b122d),mt(0x4,_0x3d133c(_0x4dd70c)),mt(0x5,_0x3d133c(ur)),mt(0x6,_0x3d133c(_0x9e1776))],pe);var hr=Object[_0x54481f(0x20f)],Dd=Object[_0x54481f(0x157)],Ad=(_0xffe3e,_0x42a828,_0x5e238b)=>_0x42a828 in _0xffe3e?hr(_0xffe3e,_0x42a828,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x5e238b}):_0xffe3e[_0x42a828]=_0x5e238b,Td=(_0x165ab7,_0x215329,_0x1852ec,_0x33e900)=>{const _0xc7144f=_0x54481f;for(var _0x2a5773=_0x33e900>0x1?void 0x0:_0x33e900?Dd(_0x215329,_0x1852ec):_0x215329,_0x32c5b5=_0x165ab7[_0xc7144f(0xbd)]-0x1,_0x42c531;_0x32c5b5>=0x0;_0x32c5b5--)(_0x42c531=_0x165ab7[_0x32c5b5])&&(_0x2a5773=(_0x33e900?_0x42c531(_0x215329,_0x1852ec,_0x2a5773):_0x42c531(_0x2a5773))||_0x2a5773);return _0x33e900&&_0x2a5773&&hr(_0x215329,_0x1852ec,_0x2a5773),_0x2a5773;},je=(_0x564775,_0x29ace4)=>(_0x3ead93,_0x209d23)=>_0x29ace4(_0x3ead93,_0x209d23,_0x564775),Ld=(_0x3c4468,_0x7d060d,_0x1d4528)=>Ad(_0x3c4468,_0x7d060d+'',_0x1d4528);const kd=_0x54481f(0x168);let fe=class extends _0x270299{constructor(_0x1cc6ef=od,_0x280372,_0x31df90){const _0x38ac3a=_0x54481f;super(),this['_config']=_0x1cc6ef,this['_injector']=_0x280372,this[_0x38ac3a(0xbc)]=_0x31df90;const {..._0xdbfecb}=this[_0x38ac3a(0x131)];this[_0x38ac3a(0xbc)][_0x38ac3a(0x1bd)](sd,_0xdbfecb);}['onStarting'](){const _0x398478=_0x54481f;[[$t],[jt],[Bt],[Gt],[pe],[Pe,{'useClass':Tr}],[ur]][_0x398478(0x147)](_0x51a216=>this['_injector'][_0x398478(0x8e)](_0x51a216)),this[_0x398478(0x10d)][_0x398478(0x1d8)](Gt),this[_0x398478(0x10d)][_0x398478(0x1d8)](jt),this[_0x398478(0x10d)][_0x398478(0x1d8)](Bt);}};Ld(fe,_0x54481f(0x19d),kd),fe=Td([_0x413580(_0x18a08b),je(0x1,_0x3d133c(_0x4dd70c)),je(0x2,_0x1e6fd0)],fe);const cm=_0x3b0bb1(_0x54481f(0x178)),pm={'id':_0x54481f(0x179),'type':_0x4d0bd2[_0x54481f(0x129)],'handler':()=>!0x0};export{ad as CollaborationEvent,ur as CompressMutationService,pm as CreateUnitMutation,Gt as DocTransformController,cm as IHistoryIoService,Nd as ISnapshotServerService,Pe as ITransformService,re as RevertRevisionMutation,$t as RevisionService,am as SINGLE_HISTORY_MUTATIONS,nm as SINGLE_SNAPSHOT_MUTATIONS,Bt as SheetTransformController,pe as SnapshotService,Tr as TransformService,fe as UniverCollaborationPlugin,lr as b64DecodeUnicode,om as b64EncodeUnicode,im as generateTempDocumentSnapshot,dm as generateTemporarySnap,lm as getSheetBlocksFromSnapshot,Dr as isTransformChangesetsFailure,Zd as isTransformChangesetsSuccess,le as isTransformMutationFailure,at as isTransformMutationSuccess,ce as isTransformMutationsFailure,qd as isTransformMutationsSuccess,Ar as isTransformMutationsWithChangesetFailure,Qd as isTransformMutationsWithChangesetSuccess,Lt as makeArray,sm as mapDocumentTypeToUniverType,rm as parseChangesetToProtocol,nd as parseMutationToProtocol,tm as parseProtocolChangeset,em as parseProtocolCommand,rd as parseProtocolMutation,ve as textDecoder,ae as textEncoder,um as transformDocumentDataToSnapshot,Vd as transformSnapshotToDocumentData,Wd as transformSnapshotToWorkbookData,mm as transformWorkbookDataToSnapshot};
|