@univerjs-pro/shape-editor-ui 1.0.0-alpha.2 → 1.0.0-alpha.3
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/README.md +14 -2
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ar-SA.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -1
- package/lib/cjs/locale/de-DE.js +1 -1
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/es-ES.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/id-ID.js +1 -1
- package/lib/cjs/locale/it-IT.js +1 -1
- package/lib/cjs/locale/ja-JP.js +1 -1
- package/lib/cjs/locale/ko-KR.js +1 -1
- package/lib/cjs/locale/pl-PL.js +1 -1
- package/lib/cjs/locale/pt-BR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/sk-SK.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-HK.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/es/locale/ar-SA.js +1 -1
- package/lib/es/locale/ca-ES.js +1 -1
- package/lib/es/locale/de-DE.js +1 -1
- package/lib/es/locale/en-US.js +1 -1
- package/lib/es/locale/es-ES.js +1 -1
- package/lib/es/locale/fa-IR.js +1 -1
- package/lib/es/locale/fr-FR.js +1 -1
- package/lib/es/locale/id-ID.js +1 -1
- package/lib/es/locale/it-IT.js +1 -1
- package/lib/es/locale/ja-JP.js +1 -1
- package/lib/es/locale/ko-KR.js +1 -1
- package/lib/es/locale/pl-PL.js +1 -1
- package/lib/es/locale/pt-BR.js +1 -1
- package/lib/es/locale/ru-RU.js +1 -1
- package/lib/es/locale/sk-SK.js +1 -1
- package/lib/es/locale/vi-VN.js +1 -1
- package/lib/es/locale/zh-CN.js +1 -1
- package/lib/es/locale/zh-HK.js +1 -1
- package/lib/es/locale/zh-TW.js +1 -1
- package/lib/index.css +120 -18
- package/lib/index.js +1 -1
- package/lib/locale/ar-SA.js +1 -1
- package/lib/locale/ca-ES.js +1 -1
- package/lib/locale/de-DE.js +1 -1
- package/lib/locale/en-US.js +1 -1
- package/lib/locale/es-ES.js +1 -1
- package/lib/locale/fa-IR.js +1 -1
- package/lib/locale/fr-FR.js +1 -1
- package/lib/locale/id-ID.js +1 -1
- package/lib/locale/it-IT.js +1 -1
- package/lib/locale/ja-JP.js +1 -1
- package/lib/locale/ko-KR.js +1 -1
- package/lib/locale/pl-PL.js +1 -1
- package/lib/locale/pt-BR.js +1 -1
- package/lib/locale/ru-RU.js +1 -1
- package/lib/locale/sk-SK.js +1 -1
- package/lib/locale/vi-VN.js +1 -1
- package/lib/locale/zh-CN.js +1 -1
- package/lib/locale/zh-HK.js +1 -1
- package/lib/locale/zh-TW.js +1 -1
- package/lib/types/components/fill-style-tabs-editor/FillStyleTabsEditor.d.ts +2 -1
- package/lib/types/index.d.ts +24 -22
- package/lib/types/locale/en-US.d.ts +2 -0
- package/lib/types/utils/activate-drawing-object.d.ts +23 -0
- package/lib/types/utils/shape-floating-toolbar-config.d.ts +5 -0
- package/lib/types/utils/shape-transformer-config.d.ts +31 -0
- package/lib/types/views/shape-floating-toolbar/ShapeFloatingToolbar.d.ts +131 -6
- package/lib/types/views/shape-floating-toolbar/shape-floating-toolbar-utils.d.ts +2 -5
- package/lib/types/views/shape-picker/ShapePickerGrid.d.ts +2 -4
- package/lib/types/views/shape-picker/index.d.ts +2 -2
- package/lib/types/views/shape-text-editor/ShapeTextEditor.d.ts +105 -9
- package/lib/types/views/shape-text-editor/ShapeTextEditorContainer.d.ts +2 -2
- package/lib/types/views/shape-text-editor/ShapeTextPositionWrapper.d.ts +29 -0
- package/lib/types/views/shape-text-editor/hooks/use-shape-position.d.ts +3 -1
- package/lib/types/views/shape-text-editor/shape-text-behavior.d.ts +15 -0
- package/lib/types/views/shape-text-editor/shape-text-document.d.ts +8 -3
- package/lib/types/views/shape-text-editor/shape-text-editor-commands.d.ts +4 -0
- package/lib/types/views/shape-text-editor/shape-text-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-no-wrap-layout.d.ts +24 -0
- package/lib/types/views/shape-text-editor/shape-text-placeholder.d.ts +8 -0
- package/lib/types/views/shape-text-editor/shape-text-resize-policy.d.ts +17 -0
- package/lib/types/views/shape-text-editor/types.d.ts +25 -6
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ar-SA.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -1
- package/lib/umd/locale/de-DE.js +1 -1
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/es-ES.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/id-ID.js +1 -1
- package/lib/umd/locale/it-IT.js +1 -1
- package/lib/umd/locale/ja-JP.js +1 -1
- package/lib/umd/locale/ko-KR.js +1 -1
- package/lib/umd/locale/pl-PL.js +1 -1
- package/lib/umd/locale/pt-BR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/sk-SK.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-HK.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +13 -13
package/lib/umd/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function _0x20cb(){const _0x1ab437=['QuadArrowCallout','MathMultiply','Flat','startIndex','shape.type.flow-chart-display','ShapePickerGrid','onCommandExecuted','ShapeSnip1RectIcon','shape.type.callout1','shape-curved-right-arrow-icon','snapToGrid','No\x20fill','shape-curved-left-arrow-icon','shape.type.action-button-help','useDependency','ActionButtonDocument','shape-editor-ui.textEditor.paragraphType.heading1','ShapeCloudIcon','shape-accent-border-callout1-icon','packageName','shape-rect-textbox-vertical-icon','M16.5\x203.5L3.5\x2016.5','univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-3\x20univer-py-1\x20univer-text-sm\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','shape-accent-border-callout3-icon','univer-w-24','FlowchartAlternateProcess','shape-flow-chart-decision-icon','#ffffff','univer-text-sm','divides','size','shape-half-frame-icon','ShapeFlowChartMergeIcon','\x0a\x20\x20\x20\x20\x20\x20univer-box-border\x20univer-flex\x20univer-items-center\x20univer-rounded\x20univer-bg-white\x20univer-py-1\x20univer-shadow-sm\x0a\x20\x20\x20\x20\x20\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x0a\x20\x20\x20\x20','shape.type.math-multiply','UnorderIcon','NoFill','bottom-center','ShapeRtTriangleIcon','round','bottom','BasicShape','toStringTag','Star7','shape-flow-chart-offpage-connector-icon','ShapeTypeEnum','shape-down-arrow-callout-icon','M1.50439\x209C1.50439\x208.11634\x202.22074\x207.4\x203.10439\x207.4H13.4044C14.288\x207.4\x2015.0044\x208.11634\x2015.0044\x209C15.0044\x209.88366\x2014.2881\x2010.6\x2013.4044\x2010.6H3.1044C2.22074\x2010.6\x201.50439\x209.88366\x201.50439\x209ZM3.10439\x208.6C2.88348\x208.6\x202.70439\x208.77909\x202.70439\x209C2.70439\x209.22091\x202.88348\x209.4\x203.1044\x209.4H13.4044C13.6253\x209.4\x2013.8044\x209.22091\x2013.8044\x209C13.8044\x208.77909\x2013.6253\x208.6\x2013.4044\x208.6H3.10439Z','M7.95546\x206.5C8.5083\x206.5\x208.97172\x206.68269\x209.32944\x207.06731C9.67903\x207.45192\x209.8579\x207.94231\x209.8579\x208.54808C9.8579\x209.14423\x209.66277\x209.68269\x209.28879\x2010.1731C9.06115\x2010.4519\x208.66277\x2010.8173\x208.08554\x2011.2788C7.45952\x2011.7692\x207.08554\x2012.2019\x206.96359\x2012.5769H9.40449C9.65939\x2012.5769\x209.86603\x2012.7836\x209.86603\x2013.0385C9.86603\x2013.2934\x209.65939\x2013.5\x209.40449\x2013.5H6.53829C6.16701\x2013.5\x205.85654\x2013.1957\x205.93176\x2012.8321C6.017\x2012.4201\x206.18595\x2012.0443\x206.44326\x2011.7019C6.65464\x2011.4038\x207.09367\x2010.9904\x207.7522\x2010.4519C8.14245\x2010.125\x208.41887\x209.86538\x208.58147\x209.66346C8.84164\x209.31731\x208.97985\x208.94231\x208.97985\x208.53846C8.97985\x208.15385\x208.89042\x207.86538\x208.71155\x207.67308C8.53269\x207.48077\x208.2644\x207.38462\x207.92294\x207.38462C7.55708\x207.38462\x207.28066\x207.52885\x207.09367\x207.82692C6.9529\x208.03503\x206.86291\x208.3082\x206.81759\x208.65365C6.78613\x208.89346\x206.59231\x209.08654\x206.35043\x209.08654C6.10164\x209.08654\x205.89745\x208.88275\x205.92578\x208.63557C5.99029\x208.07296\x206.1682\x207.6079\x206.45952\x207.24038C6.83351\x206.74038\x207.33757\x206.5\x207.95546\x206.5Z','M1.98682\x2013.4992C1.98682\x2012.5603\x202.74793\x2011.7992\x203.68682\x2011.7992H14.2868C15.2257\x2011.7992\x2015.9868\x2012.5603\x2015.9868\x2013.4992V13.4992C15.9868\x2014.4381\x2015.2257\x2015.1992\x2014.2868\x2015.1992H3.68682C2.74793\x2015.1992\x201.98682\x2014.4381\x201.98682\x2013.4992V13.4992Z','Injector','tag','ShapeEllipseRibbonIcon','font-color-double-icon','click','shape-up-arrow-icon','shape.type.non-isosceles-trapezoid','M9\x202C13.4\x202\x2017\x205.6\x2017\x2010C17\x2011.45\x2016.6\x2012.85\x2015.95\x2014H19V18H9C4.6\x2018\x201\x2014.4\x201\x2010C1\x205.6\x204.6\x202\x209\x202Z','ShapeAccentCallout2Icon','getDocRanges','_registerIcons','HorizontalAlign','h3-icon','useEditor','typography-icon','BottomIcon','ShapeLineTypeEnum','shape-star32-icon','univer-absolute','6.4','ShapeNotchedRightArrowIcon','shape-editor-ui.fill.transparency','univer-shrink-0\x20univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','HEADING_2','M2\x204H13.6L18\x208V16H6.4L2\x2012.5V4Z','getShapeTextEditorKeyboardConfig','Callout2','textRanges','Medium','M7.25625\x206.594C7.25625\x206.26594\x207.5222\x206\x207.85025\x206H12.1322C12.6204\x206\x2013.0163\x206.39582\x2013.0163\x206.8841C13.0163\x206.99764\x2012.9944\x207.11011\x2012.9518\x207.21538L10.1416\x2014.1688C10.0441\x2014.4101\x209.80992\x2014.568\x209.54973\x2014.568C9.09318\x2014.568\x208.78423\x2014.1027\x208.96143\x2013.6819L11.6963\x207.188H7.85025C7.5222\x207.188\x207.25625\x206.92206\x207.25625\x206.594Z','univer-text-gray-600\x20univer-transition-transform','gridType','M4.75332\x205.22217C3.86966\x205.22217\x203.15332\x205.93851\x203.15332\x206.82217V12.5331C3.15332\x2013.9691\x204.31738\x2015.1332\x205.75332\x2015.1332H10.2465C11.6825\x2015.1332\x2012.8465\x2013.9691\x2012.8465\x2012.5331V6.82217C12.8465\x205.93851\x2012.1302\x205.22217\x2011.2465\x205.22217H4.75332ZM4.35332\x206.82217C4.35332\x206.60125\x204.53241\x206.42217\x204.75332\x206.42217H11.2465C11.4674\x206.42217\x2011.6465\x206.60125\x2011.6465\x206.82217V12.5331C11.6465\x2013.3063\x2011.0197\x2013.9332\x2010.2465\x2013.9332H5.75332C4.98012\x2013.9332\x204.35332\x2013.3063\x204.35332\x2012.5331V6.82217Z','shape-editor-ui.line.dashType.roundDot','shape-editor-ui.align.top','M4\x2011.5L4\x2016L9\x2016L9\x2010.5L4\x2011.5ZM7.5\x2014.5L5.5\x2014.5L5.5\x2012.5L7.5\x2012L7.5\x2014.5Z','univer-flex\x20univer-h-4\x20univer-w-14\x20-univer-translate-y-1\x20univer-items-center\x20univer-justify-center\x20univer-rounded-full\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-[10px]\x20univer-text-gray-500\x20univer-shadow-sm\x20univer-transition-colors\x20hover:univer-border-gray-300\x20hover:univer-bg-gray-50\x20hover:univer-text-gray-700\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-300\x20dark:hover:!univer-bg-gray-800','lineSpacing','Solid','ShapeBracketPairIcon','main','Callout3','forEach','M2.5\x2015.5H8.2','shape-editor-ui.toolbar.resetColor','24AUPUYg','M6\x202.8V17.2M14\x202.8V17.2','Gradient','univer-w-20\x20univer-flex-1','shape-notched-right-arrow-icon','shape-editor-ui.line.capType.title','M15\x203H18V17H15','shape-up-down-arrow-callout-icon','leftTop','getSkeleton','Star16','shape.type.border-callout1','getObjectIncludeInGroup','ShapeActionButtonReturnIcon','CLIP','isRichText','ShapeBentConnector3Icon','shape-plus-icon','shape-bracket-pair-icon','M16.5\x2013.5C17.5041\x2013.5\x2019.5\x2013\x2019.5\x2013L17.5\x208.5L19.5\x203.5C19.5\x203.5\x2017.5754\x204\x2016.5713\x204L16.5\x205.5C16.6341\x205.5\x2016.9031\x205.51359\x2017.0381\x205.5L16.1709\x208.56543L17.4033\x2011.8027C17.2766\x2011.8404\x2017.1541\x2011.8757\x2017.0381\x2011.9053C16.7039\x2011.9903\x2016.5633\x2011.9999\x2016.5713\x2012H16V5.5H16.5L16.5713\x204H14.5V9V13.5H16.5Z','ShapeActionButtonBlankIcon','shape-editor-ui.fill.picture.align.bl','shape-editor-ui.line.capType.square','M12\x205.5C12\x204.11929\x2010.8807\x203\x209.5\x203H9V0L0\x209L9\x2018V8H9.5V6H7V13.1719L2.82812\x209L7\x204.82812V5H9.5C9.77614\x205\x2010\x205.22386\x2010\x205.5C10\x205.77614\x209.77614\x206\x209.5\x206V8C10.8807\x208\x2012\x206.88071\x2012\x205.5Z','ShapeStripedRightArrowIcon','deepClone','getSnapshot','Snip2SameRect','shape-lightning-bolt-icon','shape-action-button-forward-next-icon','FlowchartCollate','ShapeLineJoinEnum','4\x202\x201\x202','FlowchartMerge','M13.7591\x206.66645C13.7591\x206.40387\x2013.5884\x206.1718\x2013.3377\x206.09364C13.087\x206.01549\x2012.8147\x206.10941\x2012.6654\x206.32546L9.67321\x2010.6577C9.60398\x2010.7579\x209.56689\x2010.8769\x209.56689\x2010.9987V11.6731C9.56689\x2012.0045\x209.83552\x2012.2731\x2010.1669\x2012.2731H12.5591V13.3331C12.5591\x2013.6645\x2012.8278\x2013.9331\x2013.1591\x2013.9331C13.4905\x2013.9331\x2013.7591\x2013.6645\x2013.7591\x2013.3331V12.2731H14.1669C14.4983\x2012.2731\x2014.7669\x2012.0045\x2014.7669\x2011.6731C14.7669\x2011.3417\x2014.4983\x2011.0731\x2014.1669\x2011.0731H13.7591V6.66645ZM12.5591\x208.59091V11.0731H10.8447L12.5591\x208.59091Z','SetInlineFormatSubscriptCommand','string','onChange','shape.type.math-equal','strokeWidth','SetParagraphNamedStyleCommand','Digit7','worksheet','Ribbon','M1.25\x202.96401C1.25\x203.84767\x201.96634\x204.56401\x202.85\x204.56401H13.15C14.0337\x204.56401\x2014.75\x203.84767\x2014.75\x202.96401C14.75\x202.08036\x2014.0337\x201.36401\x2013.15\x201.36401H2.85C1.96635\x201.36401\x201.25\x202.08036\x201.25\x202.96401ZM2.85\x203.36401C2.62909\x203.36401\x202.45\x203.18493\x202.45\x202.96401C2.45\x202.7431\x202.62909\x202.56401\x202.85\x202.56401H13.15C13.3709\x202.56401\x2013.55\x202.7431\x2013.55\x202.96401C13.55\x203.18493\x2013.3709\x203.36401\x2013.15\x203.36401H2.85Z','BracketPair','rect','jsx','colStartX','ShapeBracePairIcon','group-icon','Typography','setConfig','shape.type.up-down-arrow','univer-flex\x20univer-h-7\x20univer-items-center\x20univer-gap-1\x20univer-px-1','ShapeFunnelIcon','ShapeCanIcon','M12\x2014C12\x2013.4477\x2012.4477\x2013\x2013\x2013H18V11H13C11.3431\x2011\x2010\x2012.3431\x2010\x2014V19H12V14Z','shape-bevel-icon','Disposable','fontSize','50FUcrHo','ShapeMathEqualIcon','M12.7002\x205.0137L19.0449\x205.0137L14.8457\x209.627L20\x2014.54L15.6416\x2014.54L15.4766\x2020L10\x2014.54L4.5234\x2020L4.8857\x2014.54L0\x2014.54L5.1543\x209.627L0.9551\x205.0137L7.2998\x205.0137L10\x200ZM8.2552\x206.6137L4.5754\x206.6137L7.3902\x209.7058L3.9966\x2012.94L6.595\x2012.94L6.4818\x2014.6444L6.3939\x2015.8745L9.9999\x2012.2797L13.9871\x2016.2561L14.0424\x2014.4918L14.0893\x2012.94L16.0034\x2012.94L12.6098\x209.7058L15.4245\x206.6137L11.7448\x206.6137L10\x203.373Z','ShapeActionButtonBackPreviousIcon','shape-line-inv-icon','shape-editor-ui.line.solidLine','ShapeActionButtonDocumentIcon','ShapeFlowChartMagneticTapeIcon','shape-right-bracket-icon','ShapeLineDashEnum','Diamond','Checkbox','label','shape.type.chart-plus','ShapeFlowChartConnectorIcon','dashType','PlaqueTabs','WedgeEllipseCallout','mode','H1Icon','shape.type.action-button-movie','shape-heptagon-icon','M14.3\x2010H17.5','shape.type.flow-chart-manual-input','shape.type.corner','shape.type.cube','shape-editor-ui.textEditor.paragraphType.quote','univer-w-20','shape.type.straight-connector1','shape.type.left-arrow','Round2SameRect','shape-round1-rect-icon','CTRL_COMMAND','univer-flex\x20univer-h-6\x20univer-min-w-7\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','M10\x202.8V17.2M2.8\x2010H17.2','shape-editor-ui.toolbar.textBackgroundColor','shape-accent-callout2-icon','Sun','ShapeNonIsoscelesTrapezoidIcon','imageOpacity','setContextValue','shape-editor-ui.fill.picture.align.tr','line','shape.type.brace-pair','shape-flow-chart-offline-storage-icon','BaselineOffset','imageRotateWithShape','shape-flow-chart-merge-icon','rowStartY','shape-action-button-beginning-icon','univer-relative\x20univer-flex\x20univer-h-5\x20univer-w-10\x20univer-items-center\x20univer-justify-center','image/*','updateHostSize','ShapeActionButtonMovieIcon','DoubleWave','CurvedRightArrow','M10.9913\x2010.8779C11.4971\x2010.8779\x2011.9073\x2011.2882\x2011.9073\x2011.7939C11.9073\x2012.2997\x2011.4971\x2012.71\x2010.9913\x2012.71C10.4857\x2012.7099\x2010.0754\x2012.2996\x2010.0753\x2011.7939C10.0753\x2011.2882\x2010.4857\x2010.878\x2010.9913\x2010.8779Z','underline','underline-icon','Color','shape-editor-ui.line.sketchType.curved','_componentManager','SetTextSelectionsOperation','rectangle','Corner','shape.type.star7','IContextService','shape.type.action-button-return','M4\x2010H16','ShapeRound1RectIcon','M5.13037\x2012.5475C4.799\x2012.5475\x204.53037\x2012.8161\x204.53037\x2013.1475C4.53037\x2013.4788\x204.799\x2013.7475\x205.13037\x2013.7475H15.1489C15.4803\x2013.7475\x2015.7489\x2013.4788\x2015.7489\x2013.1475C15.7489\x2012.8161\x2015.4803\x2012.5475\x2015.1489\x2012.5475H5.13037Z','M1.8\x201.8H6.2V6.2H1.8z','shape.type.folder-corner','shape.type.right-arrow-callout','ShapeHomePlateIcon','mainComponent','segmentId','M7\x203V1.5H19V9H17','url(#shape-ribbon-icon_clip0_2_47)','UndoCommand','shape-accent-callout3-icon','shape-smiley-face-icon','shape-chart-star-icon','Snip2DiagRect','shape-editor-ui.toolbar.underline','onBack','textSelection$','square','shape-decagon-icon-frame-clip','MoreDownIcon','shape.type.border-callout2','M18.2\x2010C18.2\x2014.5287\x2014.5287\x2018.2\x2010\x2018.2C5.4713\x2018.2\x201.8\x2014.5287\x201.8\x2010C1.8\x205.4713\x205.4713\x201.8\x2010\x201.8L18.2\x2010Z','shape-editor-ui.line.width','ShapeDownArrowCalloutIcon','FlowchartConnector','DownArrowCallout','shape-editor-ui.line.dashType.longDashDot','univer-h-14\x20univer-w-full\x20univer-rounded\x20univer-object-cover','ShapeFlowChartAlternateProcessIcon','ShapeSwooshArrowIcon','shape.type.rect-textbox-vertical','componentKey','italic','_docSelectionRenderService','solid','SetInlineFormatTextFillCommand','M19.0001\x204V15H9.00013V4H19.0001Z','ShapeTrapezoidIcon','DeleteIcon','M4\x204H10V16H18','defineProperty','ShapeFlowChartExtractIcon','M2\x2010H18','onBeforeCommand','M5\x205L15\x2015M15\x205L5\x2015','isStrike','ShapeOctagonIcon','@univerjs/drawing','register','ShapeCallout1Icon','FlowchartOnlineStorage','M3.7\x209.4H8.2','ShapePieWedgeIcon','ShapeRectTextboxVerticalIcon','shape-flow-chart-punched-card-icon','useIsFocusing','M1.8\x2013V18.2H7L1.8\x2013Z','GradientFill','ShapeSketchTypeEnum','shape.type.flow-chart-punched-card','shape-editor-ui.fill.picture.tileAsTexture','getBody','ShapeCallout3Icon','_floatMenu','shape-hexagon-icon','shape-rect-icon','Gear9','backLabel','M1.8\x2013.5L6.1\x202.5L10.2\x2013.5','right-justifying-icon','M1.8\x2016.2V3.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H1.8Z','delete-icon','components','univer-shrink-0\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','gradientFill','AlignRightCommand','shape-bent-connector3-arrow1-icon','InputNumber','transformByState','shape-block-arc-icon','ShapeLightningBoltIcon','ShapeFlowChartSortIcon','attrs','scaleX','_iconManager','useEffect','univer-box-border\x20univer-flex\x20univer-max-w-[760px]\x20univer-flex-wrap\x20univer-items-center\x20univer-rounded\x20univer-bg-white\x20univer-px-1\x20univer-py-1\x20univer-shadow-sm\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','requestAnimationFrame','shape.type.flow-chart-multidocument','ShapeUturnArrowIcon','M15\x202.75C13.25\x204.45\x2012\x207.2\x2012\x2010C12\x2012.95\x2013.25\x2015.6\x2015\x2017.25','url(#shape-folder-corner-icon_shape-folder-corner-icon-clip-0)','ChartX','shape.type.accent-border-callout3','shape.type.action-button-document','univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','ShapeLeftBracketIcon','Accordion','startNodePosition','shape-rt-triangle-icon','shape.type.action-button-sound','shape.type.straight-connector2','OpenArrow','VERTICAL_ROTATE_ANGLE','text','shape-irregular-seal1-icon','linear','shape-editor-ui','ShapeLeftRightArrowIcon','M8.66518\x2015.56944C6.54997\x2015.46709\x205.5\x2014.24853\x205.5\x2012.16667L5.5\x209.25L5.5\x209.10092L5.5\x209.02855L5.5\x203.8468L1.5\x203.8468L2\x2010.5118C2.2003\x2013.62756\x205.38081\x2016.05556\x208.5918\x2016.05556C8.66075\x2016.05556\x208.59674\x2015.57167\x208.66518\x2015.56944ZM8.5918\x2018C4.32466\x2018\x200.79254\x2014.77386\x200.52637\x2010.63333L0\x202.4444L7\x202.4444L7\x2012.16667C7\x2013.24055\x207.89543\x2014.11111\x209\x2014.11111C10.1046\x2014.11111\x2011.5\x2013.24055\x2011.5\x2012.16667L13\x2012.16667C13\x2013.72842\x2012.0526\x2015.07423\x2010.6865\x2015.69287C12.8423\x2014.92301\x2014.7903\x2012.99938\x2015\x2010.65612L15.2865\x205.4523L15.2969\x205.3611L14.2754\x203.8468L13\x205.4523L13\x2012.16667L11.5\x2012.16667L11.5\x207.3056L9.5\x207.3056L14.4072\x200.5L19\x207.3056L16.957\x207.3056L16.6416\x2010.82416C16.2785\x2014.88383\x2012.7832\x2017.99983\x208.5918\x2018Z','univer-flex\x20univer-size-4\x20univer-items-center\x20univer-justify-center','M7\x204.3H9.6L14.2\x209.8V14.5C14.2\x2015.163\x2013.663\x2015.7\x2013\x2015.7H7C6.337\x2015.7\x205.8\x2015.163\x205.8\x2014.5V5.5C5.8\x204.837\x206.337\x204.3\x207\x204.3Z','align-bottom-icon','M17.083\x206V8H21.3531L18.6194\x204.71963L17.083\x206ZM15\x206V4H13.5V6H15ZM15\x2017V19H17V17H15ZM0\x2017H-2V19H0V17ZM0\x2011V9H-2V11H0ZM9\x2011V12.5H10.5V11H9ZM9\x206H10.5V4H9V6ZM7.08301\x206L5.54657\x204.71963L2.81292\x208H7.08301V6ZM12.083\x202.38419e-07L13.6195\x20-1.28037L12.083\x20-3.1241L10.5466\x20-1.28037L12.083\x202.38419e-07ZM17.083\x206V4H15V6V8H17.083V6ZM15\x206H13.5V17H15H17V6H15ZM15\x2017V15.5H0V17V19H15V17ZM0\x2017H1.5V14V12.5L1.41699\x2011H0H-2V17H0ZM0\x2011V12.5H9V11V9H0V11ZM9\x2011H10.5V8.5V6H9H7V11H9ZM9\x206V4H7.08301V6V8H9V6ZM7.08301\x206L8.33913\x207L13.3391\x201L12.083\x202.38419e-07L10.5466\x20-1.28037L5.54657\x204.71963L7.08301\x206ZM12.083\x202.38419e-07L10.6217\x201L16.0322\x207L17.083\x206L18.6194\x204.71963L13.6195\x20-1.28037L12.083\x202.38419e-07Z','StealthArrow','ShapeCurvedConnector3Icon','BreakLineCommand','ShapeStar7Icon','4\x203','matrix(-1\x200\x200\x20-1\x2020\x2020)','shape-editor-ui.textEditor.paragraphType.callout','univer-w-[168px]\x20univer-rounded-lg\x20univer-bg-white\x20univer-p-2\x20univer-shadow-lg\x20dark:!univer-bg-gray-900','M6\x203V16','M13.5\x2010H15.5','shape.type.accent-border-callout1','shape-editor-ui.fill.picture.align.br','url(#$1','useCallback','ShapeUpDownArrowIcon','shape-flow-chart-manual-operation-icon','shape.type.decagon','univer-flex\x20univer-items-center\x20univer-border-b\x20univer-border-gray-200','ShapeMathDivideIcon','M11.5\x202.27343C11.5\x201.24876\x2012.7775\x200.780388\x2013.4394\x201.56249L18.7109\x207.79198C19.048\x208.19051\x2019.0586\x208.77111\x2018.7363\x209.18163L13.4648\x2015.8906C12.8194\x2016.7118\x2011.5001\x2016.2555\x2011.5\x2015.2109V12.0801C10.2932\x2012.6861\x208.53247\x2013.6553\x207.12499\x2014.7812C5.04388\x2016.4461\x203.0166\x2018.7421\x202.49999\x2019.5C1.87407\x2020.4183\x201.5\x2019.5\x201.5\x2018.5C1.5\x2014.5789\x202.1361\x2010.9175\x205.35937\x208.23144C6.70905\x207.1067\x208.22438\x206.33098\x209.48534\x205.82616C10.255\x205.51805\x2010.9583\x205.29907\x2011.5\x205.16503V2.27343ZM13.5\x205.90038C13.4998\x206.49587\x2013.0419\x206.94381\x2012.5088\x207.00097C12.2607\x207.02756\x2011.3765\x207.22305\x2010.2285\x207.68261C9.09728\x208.13549\x207.78298\x208.8166\x206.64062\x209.76855C4.80955\x2011.2944\x203.97212\x2013.1621\x203.5\x2015.5C4.19492\x2014.7294\x204.9181\x2013.9843\x205.87499\x2013.2187C8.1897\x2011.367\x2011.2787\x209.94815\x2011.956\x209.64648L12.0986\x209.59374C12.8115\x209.38166\x2013.4998\x209.94054\x2013.5\x2010.6514V12.6084L16.709\x208.52343L13.5\x204.72948V5.90038Z','Wave','DiagStripe','M2.11953\x208.5999H7.88935C10.1109\x209.46549\x2010.5895\x2010.7649\x2010.4268\x2011.6869C10.2475\x2012.703\x209.26939\x2013.5898\x208.00009\x2013.5898C6.63323\x2013.5898\x205.77631\x2013.0502\x205.25534\x2012.528C4.99021\x2012.2623\x204.80823\x2011.9965\x204.69365\x2011.7993C4.63659\x2011.7011\x204.59698\x2011.6211\x204.5727\x2011.5686C4.56059\x2011.5424\x204.55236\x2011.5231\x204.54774\x2011.512L4.54352\x2011.5016C4.4267\x2011.193\x204.0823\x2011.0363\x203.77279\x2011.1516C3.46228\x2011.2673\x203.30438\x2011.6129\x203.4201\x2011.9234L3.9649\x2011.7203C3.4201\x2011.9234\x203.41998\x2011.9231\x203.4201\x2011.9234L3.4206\x2011.9247L3.42118\x2011.9263L3.42262\x2011.9301L3.42661\x2011.9403C3.42977\x2011.9484\x203.43394\x2011.9588\x203.43914\x2011.9713C3.44956\x2011.9965\x203.46418\x2012.0304\x203.48334\x2012.0719C3.52161\x2012.1547\x203.57828\x2012.2682\x203.65608\x2012.4021C3.81124\x2012.6692\x204.0534\x2013.0223\x204.40584\x2013.3756C5.12\x2014.0914\x206.27196\x2014.7898\x208.00009\x2014.7898C9.82574\x2014.7898\x2011.3236\x2013.5101\x2011.6085\x2011.8955C11.812\x2010.7422\x2011.3901\x209.55402\x2010.2665\x208.5999H13.8804C14.2117\x208.5999\x2014.4803\x208.33127\x2014.4803\x207.9999C14.4803\x207.66853\x2014.2117\x207.3999\x2013.8804\x207.3999H8.01411C8.0048\x207.39968\x207.99551\x207.39969\x207.98625\x207.3999H2.11953C1.78816\x207.3999\x201.51953\x207.66853\x201.51953\x207.9999C1.51953\x208.33127\x201.78816\x208.5999\x202.11953\x208.5999Z','ShapeArcIcon','M20\x2010L12.5\x2017L12.5\x2013.0312L7.5\x2013.0312L7.5\x2017L0\x2010L7.5\x203L7.5\x206.9688L12.5\x206.9688L12.5\x203ZM14.1\x208.5687L5.9\x208.5687L5.9\x206.6812L2.3433\x2010.0001L5.9\x2013.3176L5.9\x2011.4312L14.1\x2011.4312L14.1\x2013.3179L17.6555\x2010.0001L14.1\x206.681Z','shape.type.vertical-scroll','img','ShapeFlowChartTerminatorIcon','createElement','ShapeChordIcon','LEFT','more-right-icon','shape-block-arc-icon_shape-block-arc-icon-clip-0','ShapeFlowChartDecisionIcon','M11.8\x2015.5H17.5','ShapeStar16Icon','shape.type.star4','M1.8\x207V1.8H7L1.8\x207Z','FlowchartInternalStorage','M10.9999\x2015.6341L11\x204.6339L4.5\x2010.634ZM9.4002\x208.2875L9.4002\x2012.3833L6.9799\x2010.5216Z','url(#shape-ribbon2-icon_clip0_2_47)','getDocumentData','react/jsx-runtime','ShapeTextFloatToolbar','FlowchartPreparation','number','shape-curved-up-arrow-icon','M3.33315\x205.56641C3.00178\x205.56641\x202.73315\x205.83504\x202.73315\x206.16641C2.73315\x206.49778\x203.00178\x206.76641\x203.33315\x206.76641H12.6665C12.9979\x206.76641\x2013.2665\x206.49778\x2013.2665\x206.16641C13.2665\x205.83504\x2012.9979\x205.56641\x2012.6665\x205.56641H3.33315Z','M11.5\x209.7H14.2','FlowchartExtract','shape-ribbon-icon','saveImage','shape-bent-up-arrow-icon','Curved','ShapeFlowChartOrIcon','shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right','hidden','entries','ShapeDodecagonIcon','IrregularSeal1','h1-icon','true','rgb','M12\x2016L8\x2013H4V7H8L12\x204V16ZM8.5\x208.6H5.6V11.4H8.5L10.4\x2012.825V7.174L8.5\x208.6Z','Star6','SwooshArrow','shape.type.donut','M16\x208.5L16\x204L11\x204L11\x209.5L16\x208.5ZM12.5\x205.5L14.5\x205.5L14.5\x207.5L12.5\x208L12.5\x205.5Z','basicShape','length','shape.type.plaque','constructor','ShapeRound2SameRectIcon','univer-my-1\x20univer-h-px\x20univer-bg-gray-200\x20dark:!univer-bg-gray-700','FlowchartDocument','Segmented','shape-triangle-icon','executeEditorUndoRedoCommand','ICommandService','Arc','getImageSize','shape.type.left-right-circular-arrow','ENTER','M8.8\x202.1H14.2','M5\x203H2V17H5','MoreRightIcon','shape-diamond-icon','shape-folder-corner-icon','Rectangle','Parallelogram','pageMarginLeft','shape-editor-ui.line.beginArrowType','shape-icon','horizontalAlign','#2563EB','-univer-rotate-90\x20univer-text-xs','starAndBanner','shape-editor-ui.line.dashType.dashDot','xlink:href','M9.2\x201.8H1.8V18.2H18.2V10.8H9.2V1.8Z','M1.8\x203.8H18.2V16.2H1.8z','M16.5\x206.5C17.5041\x206.5\x2019.5\x207\x2019.5\x207L17.5\x2011.5L19.5\x2016.5C19.5\x2016.5\x2017.5754\x2016\x2016.5713\x2016L16.5\x2014.5C16.6341\x2014.5\x2016.9031\x2014.4864\x2017.0381\x2014.5L16.1709\x2011.4346L17.4033\x208.1973C17.2766\x208.1596\x2017.1541\x208.1243\x2017.0381\x208.0947C16.7039\x208.0097\x2016.5633\x208.0001\x2016.5713\x208H16V14.5H16.5L16.5713\x2016H14.5V11V6.5H16.5Z','M7.9999\x2010.5671C8.33127\x2010.5671\x208.5999\x2010.2985\x208.5999\x209.96714V2.30047C8.5999\x201.9691\x208.33127\x201.70047\x207.9999\x201.70047C7.66853\x201.70047\x207.3999\x201.9691\x207.3999\x202.30047V9.96714C7.3999\x2010.2985\x207.66853\x2010.5671\x207.9999\x2010.5671Z','univer-min-w-44\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-text-xs\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','editorWidth','fillImageSource','M16\x2011.5V16H11V10.5L16\x2011.5ZM12.5\x2014.5H14.5V12.5L12.5\x2012V14.5Z','BorderCallout1','shape.type.chevron','shape-editor-ui.fill.title','shape.type.gear6','M10.6669\x206.40332C10.3355\x206.40332\x2010.0669\x206.67195\x2010.0669\x207.00332V9.34492C10.0669\x209.67629\x2010.3355\x209.94492\x2010.6669\x209.94492C10.7822\x209.94492\x2010.8899\x209.91238\x2010.9814\x209.85599C10.9901\x209.85195\x2011.0027\x209.84632\x2011.0192\x209.83936C11.0764\x209.81533\x2011.1692\x209.78033\x2011.2927\x209.74447C11.5397\x209.67268\x2011.8996\x209.60022\x2012.3336\x209.60022C12.4975\x209.60022\x2012.5978\x209.63412\x2012.6624\x209.67167C12.7263\x209.70877\x2012.79\x209.76953\x2012.8503\x209.87834C12.983\x2010.1181\x2013.0669\x2010.5337\x2013.0669\x2011.1669C13.0669\x2011.8061\x2012.9802\x2012.1936\x2012.8338\x2012.414C12.7252\x2012.5775\x2012.5275\x2012.7336\x2012.0002\x2012.7336C11.6445\x2012.7336\x2011.4936\x2012.622\x2011.4192\x2012.5328C11.3289\x2012.4245\x2011.2669\x2012.2453\x2011.2669\x2012.0028C11.2669\x2011.6714\x2010.9983\x2011.4028\x2010.6669\x2011.4028C10.3355\x2011.4028\x2010.0669\x2011.6714\x2010.0669\x2012.0028C10.0669\x2012.4244\x2010.1716\x2012.9106\x2010.4979\x2013.3016C10.8401\x2013.7118\x2011.356\x2013.9336\x2012.0002\x2013.9336C12.8063\x2013.9336\x2013.4419\x2013.6673\x2013.8334\x2013.0779C14.1869\x2012.5456\x2014.2669\x2011.8497\x2014.2669\x2011.1669C14.2669\x2010.4781\x2014.1841\x209.81027\x2013.9002\x209.29724C13.7521\x209.02964\x2013.545\x208.79662\x2013.2651\x208.63403C12.986\x208.4719\x2012.6697\x208.40022\x2012.3336\x208.40022C11.9239\x208.40022\x2011.5627\x208.44957\x2011.2669\x208.51389V7.60332H13.3336C13.6649\x207.60332\x2013.9336\x207.33469\x2013.9336\x207.00332C13.9336\x206.67195\x2013.6649\x206.40332\x2013.3336\x206.40332H10.6669Z','M2.9289\x202.9289L17.0711\x2017.0711','UnderlineIcon','shape-editor-ui.fill.picture.align.ctr','ShapeAccentBorderCallout1Icon','0\x200\x2016\x2016','shape-editor-ui.line.sketchType.none','Plaque','univer-text-xs','ShapeSnip2DiagRectIcon','shape-editor-ui.line.sketchType.title','shapeTextOpticalVerticalAlign','FALSE','shape.type.up-arrow-callout','bold-icon','FONT_SIZE_LIST','M14.4854\x204L18.771\x2010L14.4854\x2016H5.51465L1.229\x2010L5.51465\x204H14.4854Z','M19.0001\x204V15H6.00014V4H19.0001Z','ShapeUpDownArrowCalloutIcon','\x0a\x20\x20\x20\x20\x20\x20univer-flex\x20univer-h-6\x20univer-items-center\x20univer-justify-center\x20univer-border-none\x20univer-bg-transparent\x0a\x20\x20\x20\x20\x20\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x0a\x20\x20\x20\x20\x20\x20hover:univer-bg-gray-100\x0a\x20\x20\x20\x20\x20\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x0a\x20\x20\x20\x20\x20\x20dark:!univer-text-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:hover:!univer-bg-gray-700\x0a\x20\x20\x20\x20','shape-editor-ui.textEditor.paragraphType.heading4','strikethrough','setEditing','shape-editor-ui.line.arrowType.none','decorate','ceil','ShapeFloatingToolbar','M8.22957\x205.47839C8.30034\x205.50767\x208.36664\x205.55107\x208.42417\x205.6086L10.4242\x207.6086C10.6585\x207.84291\x2010.6585\x208.22281\x2010.4242\x208.45713C10.1899\x208.69144\x209.80995\x208.69144\x209.57564\x208.45713L8.5999\x207.48139V13.6995C8.5999\x2014.0309\x208.33127\x2014.2995\x207.9999\x2014.2995C7.66853\x2014.2995\x207.3999\x2014.0309\x207.3999\x2013.6995V7.48139L6.42417\x208.45713C6.18985\x208.69144\x205.80995\x208.69144\x205.57564\x208.45713C5.34132\x208.22281\x205.34132\x207.84291\x205.57564\x207.6086L7.57541\x205.60882C7.7522\x205.43203\x208.01209\x205.38841\x208.22957\x205.47839Z','MathNotEqual','RoundRect','blockArrow','ShapeBentArrowIcon','DocParagraphTypeDropdown','M18.2\x2013V18.2H13L18.2\x2013Z','shape.type.flow-chart-predefined-process','shape-editor-ui.toolbar.expandShapeToolbar','Dropdown','SmileyFace','isHorizontal','univer-w-32\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','getCanvasElement','shape-editor-ui.align.middle','shape-editor-ui.textEditor.paragraphType.normal','ShapeFlowChartInternalStorageIcon','shape-editor-ui.config','MathEqual','ShapePickerDropdown','ActionButtonForwardNext','M10.0713\x2018L3\x2011C1.7859\x2010.0868\x201\x208.6356\x201\x207C1\x204.2386\x203.2386\x202\x206\x202C7.6357\x202\x209.0878\x202.7857\x2010\x204C10.9122\x202.7857\x2012.3642\x202\x2014\x202C16.7614\x202\x2019\x204.2386\x2019\x207C19\x208.6358\x2018.2134\x2010.0868\x2016.999\x2010.9991L17\x2011L10.0713\x2018ZM10.0713\x2015.74L4.05\x209.78C3.2\x209.15\x202.7\x208.16\x202.7\x207C2.7\x205.1775\x204.1775\x203.7\x206\x203.7C7.0781\x203.7\x208.0603\x204.2108\x208.6821\x205.0624L10\x206.856L11.3179\x205.0624C11.9397\x204.2108\x2012.9219\x203.7\x2014\x203.7C15.8225\x203.7\x2017.3\x205.1775\x2017.3\x207C17.3\x208.1601\x2016.7989\x209.1506\x2015.9506\x209.7781L10.0713\x2015.74Z','Chord','Plus','stretch','url(#shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-left)','shape-floating-toolbar','shape.type.hexagon','Fragment','shape.type.border-callout3','PERIOD','ShapeFillEditor','shape-math-multiply-icon','1em','univer-flex\x20univer-h-5\x20univer-items-center\x20univer-justify-center','shape-action-button-information-icon','getTextRanges','HalfFrame','imageFillMode','M1.8\x2018.2V1.8H18.2L12.6\x207.4H7.4V12.6L1.8\x2018.2Z','M14.1544\x208.5999C15.038\x208.5999\x2015.7544\x207.88356\x2015.7544\x206.9999C15.7544\x206.11625\x2015.038\x205.3999\x2014.1544\x205.3999H3.85439C2.97074\x205.3999\x202.25439\x206.11625\x202.25439\x206.9999C2.25439\x207.88356\x202.97074\x208.5999\x203.85439\x208.5999H14.1544ZM14.5544\x206.9999C14.5544\x207.22082\x2014.3753\x207.3999\x2014.1544\x207.3999H3.85439C3.63348\x207.3999\x203.45439\x207.22082\x203.45439\x206.9999C3.45439\x206.77899\x203.63348\x206.5999\x203.85439\x206.5999H14.1544C14.3753\x206.5999\x2014.5544\x206.77899\x2014.5544\x206.9999Z','FlowchartDecision','doc','shape-flow-chart-predefined-process-icon','M2.75\x203H11.6L17.65\x2010L11.6\x2017H2.75L9.15\x2010L2.75\x203Z','M4.66665\x2012.9004C4.33528\x2012.9004\x204.06665\x2013.169\x204.06665\x2013.5004C4.06665\x2013.8318\x204.33528\x2014.1004\x204.66665\x2014.1004H14C14.3314\x2014.1004\x2014.6\x2013.8318\x2014.6\x2013.5004C14.6\x2013.169\x2014.3314\x2012.9004\x2014\x2012.9004H4.66665Z','#000000','.shape.group.','RightJustifyingIcon','RadioGroup','SquareTabs','TextWrapShapeIcon','WedgeRoundRectCallout','height','shape-editor-ui.line.capType.flat','LongDashDot','marginTop','MoveDownIcon','shape.type.flow-chart-terminator','subscribe','Snip1Rect','Plugin','shape-editor-ui.fill.picture.insert','span','viewportKeys','ShapeDecagonIcon','allowHostSizeShrink','object','_showFloatMenu','variant','shape.type.heart','BorderCallout2','shape-ellipse-ribbon-icon','gradient','FlowChartOfflineStorage','shape-left-right-arrow-callout-icon','shape-flow-chart-process-icon','univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','startOffset','deg)\x20scaleY(','shape-editor-ui.toolbar.italic','shape-editor-ui.textEditor.paragraphType.code','updateDocumentDataMargin','ShapeFlowChartInputOutputIcon','shape.type.funnel','univer-flex\x20univer-h-7\x20univer-min-w-9\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','GridType','viewportScrollX','shape.type.action-button-information','M6.80225\x202H13.1978L16.7534\x2018H3.24658L6.80225\x202Z','AccentBorderCallout2','M10\x201.8V10H18.2C18.2\x2014.529\x2014.529\x2018.2\x2010\x2018.2C5.471\x2018.2\x201.8\x2014.529\x201.8\x2010C1.8\x205.471\x205.471\x201.8\x2010\x201.8Z','shape.type.line','M13.1858\x2014C12.8678\x2014\x2012.5814\x2013.8076\x2012.4612\x2013.5133L11.892\x2012.12H8.412L7.81627\x2013.5341C7.69734\x2013.8164\x207.4208\x2014\x207.11444\x2014C6.57847\x2014\x206.21019\x2013.4611\x206.40493\x2012.9617L8.73684\x206.98245C8.96788\x206.39004\x209.53865\x206\x2010.1745\x206C10.8119\x206\x2011.3836\x206.39182\x2011.6137\x206.9862L13.9158\x2012.9348C14.1143\x2013.4477\x2013.7358\x2014\x2013.1858\x2014ZM8.88\x2010.8H11.424L10.236\x207.404H10.092L8.88\x2010.8Z','ChartStar','fill','memo','active','imageTile','M2\x2016V4H13.6L18\x208V16H2Z','getAncestorScale','MetaKeys','shape.type.flow-chart-punched-tape','ShapeCallout2Icon','attachPopupToRange','shape-curved-down-arrow-icon','shape.type.flow-chart-extract','div','ShapeDiamondIcon','executeCommand','SuperscriptIcon','M3.77393\x209.00006H1.9165C1.91653\x2012.8659\x204.82681\x2016.0001\x208.4165\x2016.0001C12.0062\x2016.0001\x2014.9165\x2012.8659\x2014.9165\x209.00006H16.0005L14.021\x206.00006L12.0005\x209.00006H13.0591C13.0591\x2011.7613\x2010.9806\x2013.9991\x208.4165\x2013.9991V12.2374C9.37167\x2012.2374\x2010.2981\x2011.6773\x2010.8325\x2010.7618H8.69092L14.0356\x202.82428L19.2729\x2010.7618H16.5083C15.7478\x2014.679\x2012.5031\x2017.7618\x208.4165\x2017.7618C3.73333\x2017.7618\x200.154823\x2013.7135\x200.154785\x209.00006V7.23834H5.53564V9.00006C5.53568\x2010.9134\x206.94564\x2012.2374\x208.4165\x2012.2374V13.9991C5.85245\x2013.9991\x203.77396\x2011.7613\x203.77393\x209.00006Z','namedStyleType','shape.type.bent-arrow','M15\x2013L18\x2016L15\x2019','M16.043\x2010.75C16.4884\x2010.75\x2016.7114\x2010.2115\x2016.3965\x209.89652L10.1251\x203.6251L3.85367\x209.89653C3.53868\x2010.2115\x203.76177\x2010.75\x204.20722\x2010.75L16.043\x2010.75ZM6.8634\x209.1495L10.1251\x205.8878L13.3868\x209.1495L6.8634\x209.1495Z','ShapeUpArrowCalloutIcon','UNIVER_DOC','ShapeLineCapEnum','FlowchartSort','shape-parallelogram-icon','shape.type.star32','shape-chevron-icon','ShapeSnipRoundRectIcon','4\x202','baselineWidth','QuadArrow','sketchType','getActualSize','shape-editor-ui.fill.picture.align.t','Heptagon','align-text-both-icon','ShapeSquareTabsIcon','M12.7012\x207.2988L20\x2010L12.7012\x2012.7012L10\x2020L7.2988\x2012.7012L0\x2010L7.2988\x207.2988L10\x200ZM8.5442\x208.5442L4.6102\x2010L8.5442\x2011.4558L10\x2015.3885L11.4558\x2011.4558L15.3885\x2010L11.4558\x208.5442L10\x204.6102Z','min','BracePair','ShapeFlowChartDisplayIcon','ShapeFillEnum','ungroup-icon','M14.4605\x202.56689H6.8981C6.56672\x202.56689\x206.2981\x202.83552\x206.2981\x203.16689C6.2981\x203.49827\x206.56672\x203.76689\x206.8981\x203.76689H14.4605C14.7918\x203.76689\x2015.0605\x203.49827\x2015.0605\x203.16689C15.0605\x202.83552\x2014.7918\x202.56689\x2014.4605\x202.56689Z','M10.2\x205.9H14.2','ShapeNoSmokingIcon','M13\x202H8C5.8\x202\x203.5\x205.6\x203.5\x2010C3.5\x2014.4\x205.8\x2018\x208\x2018H13','ShapeGradientTypeEnum','ActionButtonMovie','rotate(','IUniverInstanceService','setZoomRatio','getCurrentUnitOfType','1.0.0-alpha.2','shape.type.snip-round-rect','svg','M14.3\x204.5H12.7V15.5H14.3V4.5Z','M16\x2012V18H4V12H8.6V5.1L10\x202.7L11.4\x205.1V12H16ZM7\x206H5.6699L10\x200L14.3301\x206H13V10.4H17.6V19.6H2.4V10.4H7V6Z','ShapeWedgeRoundRectCalloutIcon','ShapeChartXIcon','M19.8384\x209.06158H17.4858C16.7507\x205.70841\x2013.9647\x203.06158\x2010.4165\x203.06158C6.86834\x203.06158\x204.08235\x205.70841\x203.34717\x209.06158H1.13623L5.51514\x2017L10.2083\x209.06158H8.87158C9.28814\x208.57566\x209.85891\x208.29987\x2010.4165\x208.29987C10.9741\x208.29987\x2011.5449\x208.57566\x2011.9614\x209.06158H10.8113L15.5151\x2017.001L19.8384\x209.06158ZM13.5\x2010.8234L14.3442\x2010.8233C14.3442\x208.45649\x2012.5861\x206.53815\x2010.4165\x206.53815C8.24692\x206.53815\x206.4888\x208.45649\x206.48877\x2010.8233L7.5\x2010.8234L5.51514\x2013.8233L3.99951\x2010.8233H4.9165C4.91653\x207.50975\x207.37908\x204.8233\x2010.4165\x204.8233C13.4539\x204.8233\x2015.9165\x207.50975\x2015.9165\x2010.8233H17.0005L15.5151\x2013.8233L13.5\x2010.8234Z','onSelectionStart$','M7.57564\x2010.3914C7.80995\x2010.6257\x208.18985\x2010.6257\x208.42417\x2010.3914L10.4242\x208.3914C10.6585\x208.15709\x2010.6585\x207.77719\x2010.4242\x207.54287C10.1899\x207.30856\x209.80995\x207.30856\x209.57564\x207.54287L7.9999\x209.11861L6.42417\x207.54287C6.18985\x207.30856\x205.80995\x207.30856\x205.57564\x207.54287C5.34132\x207.77719\x205.34132\x208.15709\x205.57564\x208.3914L7.57564\x2010.3914Z','univer-size-full','shape.type.star16','typography-horizontal-align-row','baselineHeight','M19\x2013C15.6863\x2013\x2013\x2015.6863\x2013\x2019H19V13ZM17.4\x2017.4H14.9012A4.4\x204.4\x200\x200\x201\x2017.4\x2014.9012V17.4Z','startArrow','fontFamily','CENTER','WRAP','TOP','_docCanvasPopManagerService','shape.type.parallelogram','shape-heart-icon','shape.type.curved-right-arrow','displayName','type','ShapeFlowChartPredefinedProcessIcon','shape-editor-ui.fill.picture.scaleX','SetInlineFormatSuperscriptCommand','shape-editor-ui.shapePosition','univer-grid\x20univer-grid-cols-[repeat(3,minmax(0,1fr))_76px]\x20univer-items-center\x20univer-gap-1','M2\x204.25C4.45\x203.45\x206.35\x203.75\x208.1\x204.75C9.7\x205.65\x2011.2\x205.65\x2012.85\x204.65C14.5\x203.65\x2016.1\x203.8\x2018\x204.4V15.75C15.95\x2016.45\x2014.15\x2016.1\x2012.55\x2014.85C11.2\x2013.8\x209.55\x2013.8\x208.15\x2014.8C6.55\x2015.9\x204.55\x2016.1\x202\x2015.3V4.25Z','ShapeFlowChartProcessIcon','shape-diag-stripe-icon','shape-flow-chart-magnetic-disk-icon','parseFloat','offsetX','Gear6','shape.type.no-smoking','shape.type.action-button-back-previous','shape.type.flow-chart-internal-storage','shape-math-not-equal-icon','files','target','ShapeQuadArrowCalloutIcon','hasCommand','M20\x2010.001L11\x2018.001L11\x2014L6\x2014L6\x206L11\x206L11\x202.001ZM12.6\x207.6L7.6\x207.6L7.6\x2012.4L12.6\x2012.4L12.6\x2014.4366L17.5904\x2010.001L12.6\x205.5642Z','FlowchartDelay','transparent','scaleY','Dash','dash','mask0_1_36','M11.7902\x205.992C12.7142\x205.992\x2013.4292\x206.377\x2013.9352\x207.158C14.3972\x207.884\x2014.6282\x208.852\x2014.6282\x2010.073C14.6282\x2011.283\x2014.3972\x2012.262\x2013.9352\x2012.988C13.4292\x2013.758\x2012.7142\x2014.154\x2011.7902\x2014.154C10.8662\x2014.154\x2010.1512\x2013.758\x209.64524\x2012.988C9.18324\x2012.262\x208.95224\x2011.294\x208.95224\x2010.073C8.95224\x208.841\x209.18324\x207.873\x209.64524\x207.158C10.1512\x206.377\x2010.8662\x205.992\x2011.7902\x205.992ZM11.7902\x207.004C11.1412\x207.004\x2010.6902\x207.356\x2010.4262\x208.071C10.2282\x208.555\x2010.1402\x209.226\x2010.1402\x2010.073C10.1402\x2010.909\x2010.2282\x2011.58\x2010.4262\x2012.075C10.6902\x2012.779\x2011.1412\x2013.142\x2011.7902\x2013.142C12.4282\x2013.142\x2012.8902\x2012.779\x2013.1542\x2012.075C13.3412\x2011.58\x2013.4402\x2010.909\x2013.4402\x2010.073C13.4402\x209.226\x2013.3412\x208.555\x2013.1542\x208.071C12.8902\x207.356\x2012.4282\x207.004\x2011.7902\x207.004Z','M3.6\x203.6L16.4\x2016.4','ShapeLineInvIcon','ShapeSnip2SameRectIcon','shape-right-arrow-icon','DEFAULT','shape-editor-ui.line.endArrowType','shape.type.left-arrow-callout','SHAPE_EDITOR_UI_PLUGIN','ShapePlusIcon','shape.type.flow-chart-connector','disabled','Cloud','shape-funnel-icon','Other','shape-home-plate-icon','univer-w-full','shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-left','shape-right-brace-icon','CurvedDownArrow','domY','ActionButtonInformation','nextHeight','shape.type.action-button-home','_initSelectionChange','options','max','M18\x203V15H14.2881L14.0938\x2015.0859L6.5\x2018.4609V15H2V3H18Z','ShapeRibbonIcon','shape.type.flow-chart-preparation','children','BentConnector3','ShapeImageFillEditor','SquareDot','custom','shape-line-icon','ShapeChartPlusIcon','shape-folder-corner-icon_shape-folder-corner-icon-clip-1','isActive','Button','None','M2.66641\x2013.4663C2.33504\x2013.4663\x202.06641\x2013.7349\x202.06641\x2014.0663C2.06641\x2014.3977\x202.33504\x2014.6663\x202.66641\x2014.6663H13.3331C13.6644\x2014.6663\x2013.9331\x2014.3977\x2013.9331\x2014.0663C13.9331\x2013.7349\x2013.6644\x2013.4663\x2013.3331\x2013.4663H2.66641Z','typography-vertical-align-row','map','M1.8\x202.8H18.2V17.2H1.8z','substring','Hexagon','finally','shape-bent-connector3-icon','M1.3999\x209.8334C1.3999\x209.50203\x201.66853\x209.2334\x201.9999\x209.2334H13.9999C14.3313\x209.2334\x2014.5999\x209.50203\x2014.5999\x209.8334C14.5999\x2010.1648\x2014.3313\x2010.4334\x2013.9999\x2010.4334H1.9999C1.66853\x2010.4334\x201.3999\x2010.1648\x201.3999\x209.8334Z','shape.type.wedge-rect-callout','FoldedCorner','PaintBucketDoubleIcon','LeftRightArrowCallout','TopmostIcon','M19.083\x207H17V16.9688H7V19L1\x2014L7\x209V10.9688H11V7H9.08301L14.083\x201L19.083\x207ZM15.55\x205.55V15.5688H5.75L3.65\x2014L5.75\x2012.43H12.45V5.55L14.083\x203.55L15.55\x205.55Z','Reset\x20color','spaceBelow','EllipseRibbon2','shape-striped-right-arrow-icon','DeleteRightCommand','shape-chart-plus-icon','Triangle','shape.type.flow-chart-process','shape-star7-icon','ShapeBorderCallout1Icon','shape-up-arrow-callout-icon','shape-horizontal-scroll-icon','shape-action-button-blank-icon','M10.192\x205.096C11.104\x205.096\x2011.824\x205.336\x2012.364\x205.816C12.844\x206.248\x2013.084\x206.788\x2013.084\x207.424C13.084\x207.868\x2012.988\x208.24\x2012.796\x208.54C12.58\x208.864\x2012.256\x209.104\x2011.824\x209.272V9.308C12.232\x209.404\x2012.592\x209.644\x2012.88\x2010.028C13.216\x2010.436\x2013.384\x2010.904\x2013.384\x2011.444C13.384\x2012.2\x2013.108\x2012.812\x2012.556\x2013.292C11.992\x2013.76\x2011.2\x2014\x2010.192\x2014C9.172\x2014\x208.38\x2013.76\x207.828\x2013.292C7.276\x2012.812\x207\x2012.2\x207\x2011.444C7\x2010.904\x207.168\x2010.436\x207.504\x2010.028C7.792\x209.644\x208.14\x209.404\x208.56\x209.308V9.272C8.128\x209.104\x207.804\x208.864\x207.588\x208.54C7.396\x208.24\x207.3\x207.868\x207.3\x207.424C7.3\x206.788\x207.54\x206.248\x208.02\x205.816C8.548\x205.336\x209.28\x205.096\x2010.192\x205.096ZM10.192\x206.14C9.664\x206.14\x209.244\x206.272\x208.932\x206.56C8.656\x206.8\x208.524\x207.112\x208.524\x207.472C8.524\x207.88\x208.632\x208.204\x208.86\x208.444C9.136\x208.732\x209.58\x208.876\x2010.192\x208.876C10.792\x208.876\x2011.236\x208.732\x2011.524\x208.444C11.74\x208.204\x2011.86\x207.88\x2011.86\x207.472C11.86\x207.112\x2011.716\x206.8\x2011.452\x206.56C11.14\x206.272\x2010.72\x206.14\x2010.192\x206.14ZM10.192\x209.848C9.568\x209.848\x209.088\x209.992\x208.776\x2010.304C8.452\x2010.592\x208.296\x2010.964\x208.296\x2011.444C8.296\x2011.888\x208.452\x2012.248\x208.788\x2012.524C9.112\x2012.8\x209.58\x2012.944\x2010.192\x2012.944C10.792\x2012.944\x2011.272\x2012.8\x2011.62\x2012.524C11.932\x2012.248\x2012.088\x2011.888\x2012.088\x2011.444C12.088\x2010.964\x2011.932\x2010.592\x2011.62\x2010.316C11.284\x2010.004\x2010.816\x209.848\x2010.192\x209.848Z','ShapeStrokeColorDoubleIcon','button','call','url(#shape-folder-corner-icon_shape-folder-corner-icon-clip-1)','ItalicIcon','shape-quad-arrow-callout-icon','strikethrough-icon','8\x202\x201\x202','univer-absolute\x20univer-z-[100]\x20univer-overflow-visible','M10\x203V17M3\x2010H17','M7.5\x208C7.5\x207.72386\x207.27614\x207.5\x207\x207.5C6.72386\x207.5\x206.5\x207.72386\x206.5\x208C6.5\x208.27614\x206.72386\x208.5\x207\x208.5V10C5.89543\x2010\x205\x209.10457\x205\x208C5\x206.89543\x205.89543\x206\x207\x206C8.10457\x206\x209\x206.89543\x209\x208C9\x209.10457\x208.10457\x2010\x207\x2010V8.5C7.27614\x208.5\x207.5\x208.27614\x207.5\x208Z','dispose','ShapeCurvedConnector3Arrow1Icon','calculate','shape-snip1-rect-icon','FlowchartPunchedCard','shape.type.gear9','shape-arc-icon','ShapeRightBraceIcon','SetInlineFormatUnderlineCommand','12390125tcXhYI','M9.0001\x2015.5001L9\x204.5L15.5\x2010.5ZM10.5998\x208.1535L10.5998\x2012.2493L13.0201\x2010.3876Z','ShapeTriangleIcon','shape-brace-pair-icon','NoLine','shape.type.down-arrow','unitId','M10\x2020L3\x2012.5L6.9688\x2012.5L6.9688\x207.5L3\x207.5L10\x200L17\x207.5L13.0312\x207.5L13.0312\x2012.5L17\x2012.5ZM11.4312\x2014.1L11.4312\x205.9L13.3187\x205.9L9.9999\x202.3433L6.6824\x205.9L8.5687\x205.9L8.5687\x2014.1L6.6822\x2014.1L9.9999\x2017.6555L13.319\x2014.1Z','ShapeHeptagonIcon','FlowchartDisplay','shape-action-button-help-icon','ShapeCornerTabsIcon','ShapeStar32Icon','shape-stroke-color-double-icon','shape-editor-ui.textEditor.paragraphType.orderedList','onFront','UpArrowCallout','shape.type.math-divide','shape-editor-ui.fill.picture.rotateWithShape','ShapeEllipseRibbon2Icon','shape.type.left-circular-arrow','\x0a\x20\x20\x20\x20\x20\x20univer-h-4\x20univer-w-px\x20univer-self-center\x20univer-bg-gray-200\x0a\x20\x20\x20\x20\x20\x20dark:!univer-bg-gray-700\x0a\x20\x20\x20\x20','ShapeBorderCallout3Icon','M10\x201.00098L2\x2010.001H6.00098V19.001H14.001V10.001H18L10\x201.00098ZM10\x203.401L14.4458\x208.401H12.401V17.401H7.60098V8.401H5.55518L10\x203.401Z','univer-text-xl\x20univer-text-gray-500','M2.10904\x2014.4537L10.299\x203.06987','Round','univer-text-sm\x20univer-font-medium\x20univer-text-gray-800\x20dark:!univer-text-gray-100','white','ShapeLineEditor','_hideFloatMenu','blur','SetInlineFormatItalicCommand','ShapeFlowChartPunchedCardIcon','Chevron','h5-icon','bBox','AccentBorderCallout1','getShapeTextEditorContentStyle','shape-editor-ui.line.noLine','shape-editor-ui.line.joinType.bevel','TypographyIcon','get','univer-flex\x20univer-flex-col\x20univer-gap-1.5','shape-editor-ui.fill.noFill','RIGHT','univer-text-gray-500','shape-editor-ui.line.arrowType.openArrow','useRef','Star5','ShapeMathMultiplyIcon','shape-editor-ui.fill.gradientFill','function','univer-w-14','shape.type.curved-connector3-arrow1','Inject','M1.9999\x2012.9004C1.66853\x2012.9004\x201.3999\x2013.169\x201.3999\x2013.5004C1.3999\x2013.8318\x201.66853\x2014.1004\x201.9999\x2014.1004H11.3332C11.6646\x2014.1004\x2011.9332\x2013.8318\x2011.9332\x2013.5004C11.9332\x2013.169\x2011.6646\x2012.9004\x2011.3332\x2012.9004H1.9999Z','EllipseRibbon','url(#shape-octagon-icon-frame-clip)','FlowchartTerminator','univer-h-px\x20univer-bg-gray-200\x20dark:!univer-bg-gray-700','ShapeEllipseIcon','shape-flow-chart-extract-icon','univer-rounded-lg\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-bg-gray-900','shape-left-arrow-icon','@univerjs/ui','SnipRoundRect','M10\x206.00001C10.8571\x206.00001\x2011.5338\x206.21564\x2012.0414\x206.64691C12.4925\x207.03505\x2012.718\x207.52022\x2012.718\x208.09165C12.718\x208.49057\x2012.6278\x208.8248\x2012.4474\x209.09434C12.2444\x209.38545\x2011.9398\x209.60108\x2011.5338\x209.75203V9.78437C11.9173\x209.87062\x2012.2556\x2010.0863\x2012.5263\x2010.4313C12.8421\x2010.7978\x2013\x2011.2183\x2013\x2011.7035C13\x2012.3828\x2012.7406\x2012.9326\x2012.2218\x2013.3639C11.6917\x2013.7844\x2010.9474\x2014\x2010\x2014C9.04135\x2014\x208.29699\x2013.7844\x207.7782\x2013.3639C7.2594\x2012.9326\x207\x2012.3828\x207\x2011.7035C7\x2011.2183\x207.15789\x2010.7978\x207.47368\x2010.4313C7.74436\x2010.0863\x208.07143\x209.87062\x208.46617\x209.78437V9.75203C8.06015\x209.60108\x207.75564\x209.38545\x207.55263\x209.09434C7.37218\x208.8248\x207.28195\x208.49057\x207.28195\x208.09165C7.28195\x207.52022\x207.50752\x207.03505\x207.95865\x206.64691C8.45489\x206.21564\x209.14286\x206.00001\x2010\x206.00001ZM10\x206.93801C9.50376\x206.93801\x209.10902\x207.05661\x208.81579\x207.31537C8.55639\x207.531\x208.43233\x207.81133\x208.43233\x208.13478C8.43233\x208.50135\x208.53383\x208.79246\x208.74812\x209.00809C9.00752\x209.26685\x209.42481\x209.39623\x2010\x209.39623C10.5639\x209.39623\x2010.9812\x209.26685\x2011.2519\x209.00809C11.4549\x208.79246\x2011.5677\x208.50135\x2011.5677\x208.13478C11.5677\x207.81133\x2011.4323\x207.531\x2011.1842\x207.31537C10.891\x207.05661\x2010.4962\x206.93801\x2010\x206.93801ZM10\x2010.2695C9.41353\x2010.2695\x208.96241\x2010.3989\x208.66917\x2010.6793C8.36466\x2010.938\x208.21804\x2011.2722\x208.21804\x2011.7035C8.21804\x2012.1024\x208.36466\x2012.4259\x208.68045\x2012.6739C8.98496\x2012.9218\x209.42481\x2013.0512\x2010\x2013.0512C10.5639\x2013.0512\x2011.015\x2012.9218\x2011.3421\x2012.6739C11.6353\x2012.4259\x2011.782\x2012.1024\x2011.782\x2011.7035C11.782\x2011.2722\x2011.6353\x2010.938\x2011.3421\x2010.69C11.0263\x2010.4097\x2010.5865\x2010.2695\x2010\x2010.2695Z','source','keys','M7.2857\x206.0029L7.5253\x206.2425L7.5774\x206.2946L7.6296\x206.3468L7.6817\x206.3989L7.7339\x206.4511L7.7861\x206.5033L7.8382\x206.5554L7.8904\x206.6075L7.9425\x206.6597L7.9947\x206.7119L8.0468\x206.764L8.099\x206.8162L8.1511\x206.8683L8.2033\x206.9205L8.2554\x206.9726L8.3076\x207.0248L8.3597\x207.0769L8.4119\x207.1291L8.4641\x207.1812L8.5162\x207.2334L8.5684\x207.2855L8.6205\x207.3377L8.7248\x207.442L8.777\x207.4942L8.8291\x207.5463L8.8813\x207.5985L8.9334\x207.6506L9.0377\x207.7549L9.0899\x207.8071L9.1421\x207.8592L9.1942\x207.9114L9.2464\x207.9635L9.2985\x208.0157L9.3507\x208.0678L9.4028\x208.12L9.455\x208.1722L9.5071\x208.2243L9.5593\x208.2765L9.6114\x208.3286L9.6636\x208.3808L9.7157\x208.4329L9.7679\x208.4851L9.82\x208.5372L9.8722\x208.5894L9.9243\x208.6415L9.9765\x208.6937L10.0287\x208.7458L10.0808\x208.798L10.133\x208.8501L10.1851\x208.9023L10.2373\x208.9544L10.2894\x209.0066L10.3416\x209.0588L10.3937\x209.1109L10.4459\x209.1631L10.498\x209.2152L10.5502\x209.2674L10.6024\x209.3195L10.6545\x209.3717L10.7066\x209.4238L10.7588\x209.476L10.811\x209.5281L10.8631\x209.5803L10.9153\x209.6324L10.9674\x209.6846L11.0196\x209.7368L11.0717\x209.7889L11.1239\x209.841L11.176\x209.8932L11.2282\x209.9454L11.2803\x209.9975L11.3325\x2010.0497L11.3846\x2010.1018L11.4368\x2010.154L11.489\x2010.2061L11.5411\x2010.2583L11.5933\x2010.3104L11.6454\x2010.3626L11.6976\x2010.4147L11.7497\x2010.4669L11.8019\x2010.5191L11.854\x2010.5712L11.9062\x2010.6234L11.9583\x2010.6755L12.0105\x2010.7277L12.0627\x2010.7798L12.1148\x2010.832L12.1669\x2010.8841L12.2191\x2010.9363L12.2713\x2010.9884L12.3234\x2011.0406L12.3756\x2011.0927L12.4277\x2011.1449L12.4799\x2011.197L12.532\x2011.2492L12.5842\x2011.3014L12.6363\x2011.3535L13.3143\x2012.0315L13.3665\x2012.0836L13.4186\x2012.1358L13.4708\x2012.1879L13.523\x2012.2401L13.5751\x2012.2923L13.6272\x2012.3444L13.6794\x2012.3966L13.7316\x2012.4487L13.7837\x2012.5009L13.8359\x2012.553L13.888\x2012.6052L13.9402\x2012.6573L13.9923\x2012.7095L14.0445\x2012.7616L14.0966\x2012.8138L14.4203\x2013.1374L14.4293\x2013.1278L14.4756\x2013.0768L14.5201\x2013.0245L14.5645\x2012.9705L14.6079\x2012.9159L14.6502\x2012.8606L14.6915\x2012.8047L14.7317\x2012.7482L14.7709\x2012.6911L14.8091\x2012.6334L14.8462\x2012.5751L14.8823\x2012.5162L14.9174\x2012.4568L14.9515\x2012.3968L14.9846\x2012.3363L15.0167\x2012.2753L15.0477\x2012.2138L15.0778\x2012.1517L15.1068\x2012.0892L15.1349\x2012.0263L15.1619\x2011.9628L15.188\x2011.8989L15.2131\x2011.8346L15.2372\x2011.7698L15.2603\x2011.7046L15.2824\x2011.6391L15.3035\x2011.5731L15.3236\x2011.5068L15.3428\x2011.4401L15.361\x2011.3731L15.3782\x2011.3057L15.3945\x2011.238L15.4097\x2011.17L15.424\x2011.1017L15.4374\x2011.0332L15.4498\x2010.9643L15.4612\x2010.8952L15.4716\x2010.8259L15.4812\x2010.7564L15.4897\x2010.6866L15.4973\x2010.6166L15.504\x2010.5465L15.5097\x2010.4761L15.5144\x2010.4057L15.5182\x2010.335L15.5211\x2010.2643L15.5231\x2010.1934L15.5241\x2010.1224L15.5242\x2010.0513L15.5233\x209.9802L15.5216\x209.909L15.5189\x209.8377L15.5152\x209.7664L15.5107\x209.6951L15.5052\x209.6238L15.4989\x209.5525L15.4916\x209.4812L15.4834\x209.41L15.4743\x209.3387L15.4643\x209.2676L15.4534\x209.1965L15.4417\x209.1256L15.429\x209.0547L15.4154\x208.984L15.401\x208.9134L15.3856\x208.8429L15.3694\x208.7726L15.3523\x208.7025L15.3343\x208.6325L15.3155\x208.5628L15.2958\x208.4932L15.2752\x208.424L15.2538\x208.3549L15.2315\x208.2861L15.2083\x208.2176L15.1843\x208.1494L15.1595\x208.0815L15.1338\x208.0139L15.1072\x207.9466L15.0798\x207.8796L15.0516\x207.8131L15.0226\x207.7468L14.9927\x207.681L14.962\x207.6156L14.9305\x207.5505L14.8981\x207.486L14.865\x207.4218L14.831\x207.3581L14.7962\x207.2949L14.7606\x207.2321L14.7243\x207.1698L14.6871\x207.108L14.6491\x207.0468L14.6104\x206.9861L14.5708\x206.9259L14.5305\x206.8663L14.4894\x206.8073L14.4475\x206.7488L14.4048\x206.691L14.3614\x206.6338L14.3172\x206.5772L14.2723\x206.5212L14.2266\x206.4659L14.1801\x206.4112L14.1329\x206.3573L14.0849\x206.304L14.0362\x206.2514L13.9868\x206.1996L13.9366\x206.1485L13.8838\x206.0963L13.8301\x206.0448L13.7759\x205.9943L13.7211\x205.9448L13.6656\x205.8963L13.6097\x205.8488L13.5532\x205.8023L13.4962\x205.7568L13.4386\x205.7123L13.3805\x205.6687L13.322\x205.6262L13.263\x205.5847L13.2034\x205.5442L13.1434\x205.5046L13.083\x205.4661L13.0221\x205.4285L12.9608\x205.3919L12.8991\x205.3564L12.8369\x205.3218L12.7744\x205.2882L12.7115\x205.2556L12.6482\x205.224L12.5845\x205.1933L12.5205\x205.1637L12.4561\x205.1351L12.3914\x205.1074L12.3264\x205.0808L12.2611\x205.0551L12.1955\x205.0304L12.1296\x205.0068L12.0634\x204.9841L11.997\x204.9624L11.9303\x204.9417L11.8634\x204.9219L11.7963\x204.9032L11.7289\x204.8855L11.6614\x204.8687L11.5936\x204.853L11.5257\x204.8382L11.4576\x204.8244L11.3894\x204.8116L11.321\x204.7999L11.2524\x204.7891L11.1838\x204.7793L11.115\x204.7704L11.0462\x204.7626L10.9772\x204.7558L10.9082\x204.7499L10.8391\x204.7451L10.77\x204.7412L10.7008\x204.7384L10.6316\x204.7365L10.5624\x204.7356L10.4932\x204.7357L10.4239\x204.7368L10.3547\x204.7389L10.2856\x204.742L10.2165\x204.7461L10.1474\x204.7512L10.0784\x204.7572L10.0094\x204.7643L9.9406\x204.7723L9.8719\x204.7814L9.8033\x204.7914L9.7348\x204.8024L9.6664\x204.8144L9.5982\x204.8274L9.5301\x204.8414L9.4622\x204.8564L9.3945\x204.8724L9.327\x204.8893L9.2597\x204.9073L9.1926\x204.9262L9.1258\x204.9462L9.0591\x204.9671L8.9928\x204.989L8.9267\x205.0119L8.8608\x205.0359L8.7953\x205.0607L8.7301\x205.0866L8.6651\x205.1135L8.6005\x205.1414L8.5362\x205.1702L8.4723\x205.2001L8.4087\x205.2309L8.3455\x205.2628L8.2826\x205.2956L8.2202\x205.3294L8.1581\x205.3642L8.0965\x205.4L8.0352\x205.4368L7.9744\x205.4746L7.9141\x205.5133L7.8542\x205.5531L7.7948\x205.5939L7.7359\x205.6356L7.6774\x205.6784L7.6195\x205.7221L7.562\x205.7668L7.5051\x205.8126L7.4487\x205.8593L7.3929\x205.907L7.3376\x205.9557ZM13.1968\x206.9649L13.241\x207.0115L13.2845\x207.0587L13.3273\x207.1068L13.3693\x207.1556L13.4106\x207.2051L13.4512\x207.2554L13.491\x207.3063L13.53\x207.358L13.5683\x207.4102L13.6059\x207.4632L13.6426\x207.5168L13.6786\x207.571L13.7139\x207.6258L13.7483\x207.6812L13.7819\x207.7372L13.8148\x207.7937L13.8469\x207.8508L13.8781\x207.9083L13.9086\x207.9665L13.9382\x208.0251L13.9671\x208.0842L13.9951\x208.1437L14.0222\x208.2037L14.0486\x208.2641L14.0741\x208.325L14.0987\x208.3863L14.1225\x208.4479L14.1455\x208.5099L14.1676\x208.5723L14.1888\x208.6351L14.2092\x208.6981L14.2287\x208.7615L14.2473\x208.8252L14.265\x208.8891L14.2818\x208.9534L14.2977\x209.0179L14.3127\x209.0826L14.3268\x209.1476L14.34\x209.2127L14.3523\x209.2781L14.3636\x209.3436L14.374\x209.4093L14.3834\x209.4752L14.3919\x209.5412L14.3994\x209.6073L14.406\x209.6735L14.4116\x209.7398L14.4163\x209.8066L14.42\x209.8755L14.4226\x209.944L14.4242\x2010.0122L14.4246\x2010.0801L14.424\x2010.1476L14.4223\x2010.2148L14.4196\x2010.2815L14.4158\x2010.3479L14.411\x2010.4139L14.4051\x2010.4795L14.3981\x2010.5447L14.3902\x2010.6094L14.3812\x2010.6738L14.3713\x2010.7376L14.3603\x2010.801L14.3483\x2010.8639L14.3354\x2010.9264L14.3181\x2011.0029L14.1801\x2011.3416L13.8784\x2011.0399L13.834\x2010.9956L13.7897\x2010.9512L13.5235\x2010.685L13.4791\x2010.6406L13.4347\x2010.5963L13.3904\x2010.5519L13.346\x2010.5076L13.3016\x2010.4632L13.2573\x2010.4188L13.2129\x2010.3745L13.1685\x2010.3301L13.1242\x2010.2857L13.0798\x2010.2414L13.0354\x2010.197L12.9911\x2010.1526L12.9467\x2010.1083L12.9023\x2010.0639L12.858\x2010.0195L12.8136\x209.9752L12.7692\x209.9308L12.7249\x209.8864L12.6805\x209.8421L12.6361\x209.7977L12.5918\x209.7533L12.5474\x209.709L12.503\x209.6646L12.4587\x209.6202L12.4143\x209.5759L12.3699\x209.5315L12.3256\x209.4871L12.2812\x209.4428L12.2368\x209.3984L12.1925\x209.354L12.1481\x209.3097L12.1038\x209.2653L12.0594\x209.2209L12.015\x209.1766L11.9707\x209.1322L11.9263\x209.0878L11.8819\x209.0435L11.8376\x208.9991L11.3051\x208.4667L11.2608\x208.4223L11.2164\x208.378L11.172\x208.3336L11.1277\x208.2892L11.0833\x208.2449L11.0389\x208.2005L10.9946\x208.1561L10.9502\x208.1118L10.9058\x208.0674L10.8615\x208.023L10.8171\x207.9787L10.7727\x207.9343L10.7284\x207.8899L10.684\x207.8456L10.6397\x207.8012L10.5953\x207.7568L10.5509\x207.7125L10.5066\x207.6681L10.4622\x207.6237L10.4178\x207.5794L10.3735\x207.535L10.3291\x207.4906L10.2847\x207.4463L10.2404\x207.4019L10.196\x207.3575L10.1516\x207.3132L10.1072\x207.2688L10.0629\x207.2244L10.0185\x207.1801L9.9741\x207.1357L9.9298\x207.0913L9.8854\x207.047L9.841\x207.0026L9.7967\x206.9582L9.7523\x206.9139L9.7079\x206.8695L9.6636\x206.8251L9.6192\x206.7808L9.4861\x206.6477L9.4417\x206.6033L9.3974\x206.5589L9.353\x206.5146L9.3086\x206.4702L9.2643\x206.4258L9.0075\x206.169L9.3453\x206.0305L9.4131\x206.0083L9.476\x205.9889L9.5391\x205.9707L9.6025\x205.9537L9.6662\x205.9378L9.73\x205.923L9.794\x205.9094L9.8583\x205.8969L9.9227\x205.8856L9.9872\x205.8754L10.0519\x205.8664L10.1167\x205.8585L10.1816\x205.8517L10.2466\x205.8461L10.3117\x205.8416L10.3768\x205.8383L10.4419\x205.8361L10.5071\x205.835L10.5723\x205.8351L10.6375\x205.8364L10.7026\x205.8387L10.7678\x205.8423L10.8328\x205.8469L10.8978\x205.8527L10.9627\x205.8597L11.0275\x205.8678L11.0921\x205.877L11.1567\x205.8874L11.221\x205.8989L11.2852\x205.9115L11.3493\x205.9253L11.4131\x205.9403L11.4767\x205.9563L11.5401\x205.9736L11.6032\x205.9919L11.666\x206.0114L11.7286\x206.0321L11.7908\x206.0539L11.8528\x206.0768L11.9144\x206.1009L11.9756\x206.1261L12.0366\x206.1525L12.0971\x206.18L12.1572\x206.2087L12.2169\x206.2385L12.2761\x206.2694L12.335\x206.3015L12.3933\x206.3347L12.4512\x206.369L12.5086\x206.4045L12.5654\x206.4412L12.6217\x206.4789L12.6775\x206.5179L12.7327\x206.5579L12.7873\x206.5991L12.8413\x206.6415L12.8947\x206.6849L12.9475\x206.7295L12.9996\x206.7753L13.051\x206.8221L13.1018\x206.8701L13.1518\x206.9192ZM6.0029\x207.2148L5.9745\x207.2457L5.9259\x207.3002L5.8782\x207.3553L5.8315\x207.411L5.7858\x207.4671L5.7411\x207.5238L5.6973\x207.581L5.6545\x207.6387L5.6127\x207.6969L5.5719\x207.7555L5.532\x207.8146L5.4931\x207.8742L5.4552\x207.9342L5.4183\x207.9947L5.3823\x208.0555L5.3473\x208.1168L5.3133\x208.1785L5.2803\x208.2405L5.2482\x208.303L5.2171\x208.3657L5.187\x208.4289L5.1578\x208.4924L5.1296\x208.5562L5.1024\x208.6204L5.0762\x208.6848L5.0509\x208.7496L5.0267\x208.8147L5.0033\x208.88L4.981\x208.9456L4.9596\x209.0114L4.9392\x209.0775L4.9198\x209.1438L4.9013\x209.2104L4.8839\x209.2771L4.8674\x209.344L4.8518\x209.4112L4.8373\x209.4785L4.8237\x209.546L4.8111\x209.6136L4.7994\x209.6814L4.7887\x209.7493L4.7791\x209.8173L4.7703\x209.8854L4.7626\x209.9536L4.7558\x2010.0219L4.75\x2010.0903L4.7452\x2010.1588L4.7413\x2010.2273L4.7384\x2010.2958L4.7365\x2010.3644L4.7356\x2010.433L4.7356\x2010.5015L4.7366\x2010.5701L4.7386\x2010.6387L4.7416\x2010.7072L4.7455\x2010.7757L4.7504\x2010.8441L4.7563\x2010.9125L4.7632\x2010.9808L4.771\x2011.049L4.7798\x2011.1171L4.7896\x2011.1852L4.8003\x2011.253L4.812\x2011.3208L4.8247\x2011.3884L4.8384\x2011.4559L4.853\x2011.5232L4.8687\x2011.5903L4.8852\x2011.6572L4.9028\x2011.724L4.9213\x2011.7905L4.9408\x2011.8568L4.9613\x2011.9229L4.9828\x2011.9887L5.0052\x2012.0542L5.0286\x2012.1196L5.0529\x2012.1846L5.0783\x2012.2493L5.1046\x2012.3137L5.1319\x2012.3779L5.1601\x2012.4417L5.1894\x2012.5051L5.2196\x2012.5683L5.2508\x2012.631L5.2829\x2012.6934L5.316\x2012.7555L5.3501\x2012.8171L5.3852\x2012.8783L5.4212\x2012.9392L5.4582\x2012.9996L5.4962\x2013.0596L5.5352\x2013.1191L5.5751\x2013.1782L5.616\x2013.2368L5.6579\x2013.2949L5.7008\x2013.3526L5.7446\x2013.4097L5.7895\x2013.4664L5.8353\x2013.5225L5.882\x2013.5781L5.9298\x2013.6331L5.9785\x2013.6876L6.0282\x2013.7416L6.0789\x2013.7949L6.1306\x2013.8477L6.1819\x2013.8986L6.2336\x2013.9484L6.286\x2013.9975L6.3391\x2014.0457L6.3928\x2014.0931L6.4471\x2014.1397L6.5021\x2014.1855L6.5577\x2014.2305L6.6139\x2014.2746L6.6707\x2014.318L6.728\x2014.3606L6.7859\x2014.4023L6.8444\x2014.4432L6.9034\x2014.4833L6.9629\x2014.5226L7.023\x2014.561L7.0835\x2014.5986L7.1446\x2014.6354L7.2061\x2014.6713L7.2681\x2014.7064L7.3305\x2014.7407L7.3934\x2014.7741L7.4567\x2014.8067L7.5204\x2014.8384L7.5845\x2014.8693L7.649\x2014.8993L7.7139\x2014.9285L7.7791\x2014.9568L7.8447\x2014.9842L7.9106\x2015.0108L7.9769\x2015.0365L8.0434\x2015.0614L8.1103\x2015.0854L8.1774\x2015.1085L8.2449\x2015.1307L8.3125\x2015.1521L8.3804\x2015.1726L8.4486\x2015.1922L8.517\x2015.2109L8.5855\x2015.2287L8.6543\x2015.2456L8.7233\x2015.2617L8.7924\x2015.2768L8.8617\x2015.2911L8.9311\x2015.3044L9.0007\x2015.3169L9.0703\x2015.3285L9.1401\x2015.3391L9.2099\x2015.3489L9.2799\x2015.3577L9.3499\x2015.3656L9.4199\x2015.3726L9.49\x2015.3787L9.5601\x2015.3839L9.6303\x2015.3882L9.7004\x2015.3915L9.7705\x2015.394L9.8405\x2015.3955L9.9106\x2015.396L9.9806\x2015.3957L10.0505\x2015.3944L10.1203\x2015.3922L10.1901\x2015.389L10.2597\x2015.3849L10.3292\x2015.3799L10.3986\x2015.374L10.4679\x2015.3671L10.5369\x2015.3592L10.6058\x2015.3504L10.6746\x2015.3407L10.7431\x2015.33L10.8115\x2015.3184L10.8796\x2015.3058L10.9474\x2015.2923L11.0151\x2015.2778L11.0824\x2015.2624L11.1495\x2015.246L11.2164\x2015.2286L11.2829\x2015.2103L11.3491\x2015.191L11.415\x2015.1708L11.4805\x2015.1496L11.5458\x2015.1274L11.6106\x2015.1043L11.6751\x2015.0802L11.7392\x2015.0551L11.8029\x2015.029L11.8663\x2015.002L11.9292\x2014.974L11.9916\x2014.945L12.0537\x2014.915L12.1152\x2014.8841L12.1763\x2014.8522L12.237\x2014.8192L12.2971\x2014.7853L12.3567\x2014.7504L12.4159\x2014.7145L12.4745\x2014.6777L12.5326\x2014.6398L12.5901\x2014.6009L12.6471\x2014.561L12.7035\x2014.5201L12.7593\x2014.4782L12.8146\x2014.4354L12.8692\x2014.3914L12.9233\x2014.3465L12.9758\x2014.3013L13.0268\x2014.2548L13.0351\x2014.247L13.026\x2014.2378L12.9743\x2014.1861L12.9226\x2014.1345L12.8709\x2014.0828L12.8193\x2014.0311L12.6126\x2013.8244L12.5609\x2013.7728L12.5093\x2013.7211L12.4059\x2013.6178L12.3542\x2013.5661L12.3026\x2013.5144L12.2509\x2013.4627L12.1992\x2013.4111L12.1476\x2013.3594L12.0959\x2013.3077L11.9409\x2013.1527L11.8892\x2013.101L11.8375\x2013.0494L11.7342\x2012.946L11.6825\x2012.8944L11.6308\x2012.8427L11.4758\x2012.6877L11.4242\x2012.636L11.3725\x2012.5843L11.2692\x2012.481L11.2175\x2012.4293L11.1141\x2012.326L11.0625\x2012.2743L11.0108\x2012.2226L10.9591\x2012.171L10.9074\x2012.1193L10.8558\x2012.0676L10.8041\x2012.016L10.7524\x2011.9643L10.7008\x2011.9126L10.6491\x2011.8609L10.5457\x2011.7576L10.4941\x2011.7059L10.4424\x2011.6542L10.3907\x2011.6026L10.3391\x2011.5509L10.2874\x2011.4992L10.2357\x2011.4476L10.184\x2011.3959L10.0807\x2011.2925L10.029\x2011.2409L9.9774\x2011.1892L9.9257\x2011.1375L9.8223\x2011.0342L9.7707\x2010.9825L9.719\x2010.9308L9.564\x2010.7758L9.5123\x2010.7242L9.4606\x2010.6725L9.3573\x2010.5691L9.3056\x2010.5175L9.254\x2010.4658L9.2023\x2010.4141L9.1506\x2010.3625L9.099\x2010.3108L9.0473\x2010.2591L8.9956\x2010.2074L8.8923\x2010.1041L8.8406\x2010.0524L8.7889\x2010.0007L8.7373\x209.9491L8.6856\x209.8974L8.6339\x209.8457L8.5822\x209.7941L8.5306\x209.7424L8.4272\x209.6391L8.3756\x209.5874L8.3239\x209.5357L8.2722\x209.4841L8.1689\x209.3807L8.1172\x209.329L8.0655\x209.2774L8.0139\x209.2257L7.9622\x209.174L7.9105\x209.1223L7.8589\x209.0707L7.8072\x209.019L7.7555\x208.9673L7.7038\x208.9157L7.6522\x208.864L7.6005\x208.8123L7.5488\x208.7606L7.4971\x208.709L7.4455\x208.6573L7.3938\x208.6056L7.3421\x208.554L7.2905\x208.5023L7.2388\x208.4506L7.1871\x208.3989L7.1354\x208.3473L7.0321\x208.2439L6.9804\x208.1923L6.9288\x208.1406L6.8771\x208.0889L6.8254\x208.0372L6.7737\x207.9856L6.6187\x207.8306L6.5671\x207.7789L6.5154\x207.7272L6.4637\x207.6755L6.257\x207.4689L6.2054\x207.4172L6.1537\x207.3655L6.102\x207.3138L6.0503\x207.2622ZM6.8701\x2013.0308L6.8222\x2012.9801L6.7754\x2012.9288L6.7298\x2012.8768L6.6852\x2012.8241L6.6418\x2012.7708L6.5996\x2012.7169L6.5584\x2012.6624L6.5184\x2012.6073L6.4796\x2012.5516L6.4418\x2012.4954L6.4052\x2012.4386L6.3698\x2012.3814L6.3354\x2012.3236L6.3022\x2012.2654L6.2702\x2012.2067L6.2393\x2012.1475L6.2095\x2012.0879L6.1809\x2012.0279L6.1534\x2011.9676L6.127\x2011.9068L6.1018\x2011.8456L6.0777\x2011.7841L6.0547\x2011.7223L6.0329\x2011.6601L6.0123\x2011.5977L5.9928\x2011.535L5.9744\x2011.472L5.9571\x2011.4087L5.941\x2011.3453L5.926\x2011.2816L5.9122\x2011.2177L5.8995\x2011.1536L5.8879\x2011.0893L5.8775\x2011.0249L5.8682\x2010.9603L5.8601\x2010.8957L5.8531\x2010.8309L5.8472\x2010.766L5.8425\x2010.7011L5.8389\x2010.6361L5.8365\x2010.5711L5.8351\x2010.506L5.835\x2010.4409L5.8359\x2010.3758L5.838\x2010.3108L5.8413\x2010.2458L5.8456\x2010.1808L5.8512\x2010.1159L5.8578\x2010.0511L5.8656\x209.9864L5.8745\x209.9218L5.8846\x209.8574L5.8958\x209.7931L5.9082\x209.7289L5.9217\x209.665L5.9363\x209.6012L5.952\x209.5377L5.969\x209.4743L5.987\x209.4113L6.0062\x209.3485L6.0265\x209.286L6.1464\x208.9383L6.4177\x209.1852L6.4653\x209.2328L6.7311\x209.4985L6.7754\x209.5428L6.9525\x209.72L6.9968\x209.7643L7.0854\x209.8529L7.1297\x209.8972L7.174\x209.9415L7.2183\x209.9857L7.2626\x2010.03L7.5283\x2010.2958L7.5726\x2010.3401L7.6612\x2010.4287L7.7055\x2010.4729L7.7498\x2010.5172L7.7941\x2010.5615L7.8827\x2010.6501L7.927\x2010.6944L11.1029\x2013.8703L11.0518\x2014.1283L10.8713\x2014.1753L10.8103\x2014.1901L10.749\x2014.2039L10.6874\x2014.2167L10.6255\x2014.2285L10.5632\x2014.2394L10.5008\x2014.2492L10.438\x2014.2581L10.3751\x2014.266L10.3119\x2014.2729L10.2485\x2014.2789L10.185\x2014.2838L10.1213\x2014.2878L10.0574\x2014.2908L9.9934\x2014.2928L9.9292\x2014.2938L9.865\x2014.2938L9.8007\x2014.2929L9.7363\x2014.2909L9.6718\x2014.288L9.6073\x2014.2841L9.5427\x2014.2793L9.4782\x2014.2734L9.4137\x2014.2665L9.3491\x2014.2587L9.2846\x2014.2499L9.2202\x2014.2401L9.1558\x2014.2293L9.0915\x2014.2175L9.0273\x2014.2048L8.9633\x2014.191L8.8993\x2014.1763L8.8355\x2014.1606L8.7719\x2014.1438L8.7084\x2014.1261L8.6452\x2014.1074L8.5821\x2014.0877L8.5193\x2014.067L8.4567\x2014.0454L8.3944\x2014.0227L8.3323\x2013.999L8.2706\x2013.9743L8.2091\x2013.9487L8.148\x2013.922L8.0872\x2013.8943L8.0268\x2013.8657L7.9667\x2013.836L7.907\x2013.8053L7.8478\x2013.7736L7.789\x2013.741L7.7306\x2013.7073L7.6726\x2013.6726L7.6152\x2013.6369L7.5582\x2013.6002L7.5017\x2013.5624L7.4458\x2013.5237L7.3904\x2013.484L7.3356\x2013.4432L7.2813\x2013.4014L7.2277\x2013.3587L7.1746\x2013.3149L7.1222\x2013.2701L7.0704\x2013.2243L7.0193\x2013.1774L6.9689\x2013.1296L6.9191\x2013.0807Z','M3\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2017\x2016','LeftCircularArrow','getShapeTextData','forwardRef','M14.8447\x204.8271L17.0254\x202.7588L17.0254\x205.5176L19.9092\x207.4971L17.5\x209.5L20\x2013.1035L15.6836\x2013.1035L19.0381\x2018.6211L12.3301\x2015.1729L12.0566\x2017.9307L8.3057\x2017.2412L4.2813\x2020L4.2813\x2015.8623L0\x2015.8623L2.9394\x2011.7246L0\x208.9658L4.5\x208.5L2.9394\x205.1348L7.6348\x205.5176L7.5\x202L11\x204.5L12.0566\x200ZM5.8812\x2016.9632L7.9455\x2015.5482L10.6351\x2016.0421L10.7378\x2015.0152L10.9699\x2012.6743L13.0615\x2013.7495L14.7206\x2014.5989L12.8391\x2011.5035L16.9433\x2011.5035L15.3492\x209.207L16.4776\x208.2693L17.2598\x207.6172L16.1199\x206.8362L15.5005\x206.4107L14.4744\x207.3849L12.6911\x204.2967L12.0116\x207.1891L9.2217\x205.1962L9.3024\x207.258L5.5447\x206.9517L5.9516\x207.8266L6.8946\x209.8609L4.6654\x2010.0914L3.6472\x2010.1942L5.0519\x2011.5129L3.0993\x2014.2623L5.8812\x2014.2623Z','shape-vertical-scroll-icon','sections','117462FCbaDt','getInitialShapeFillType','M5.75\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2015\x2016','viewportScrollY','body','CodeIcon','key','input','_injector','shape-wave-icon','UpDownArrow','iterator','shape.type.left-bracket','shape-left-right-circular-arrow-icon','ShapeDefaultConfig','univer-gap-2','shape.type.bracket-pair','shape-editor-ui.fill.picture.source','stops','DeleteLeftCommand','M7.82994\x201.40913C7.88746\x201.35161\x207.95376\x201.30821\x208.02453\x201.27893C8.09527\x201.24959\x208.17285\x201.2334\x208.2542\x201.2334C8.33555\x201.2334\x208.41313\x201.24959\x208.48387\x201.27893C8.55464\x201.30821\x208.62094\x201.35161\x208.67846\x201.40913L10.6785\x203.40913C10.9128\x203.64345\x2010.9128\x204.02335\x2010.6785\x204.25766C10.4441\x204.49198\x2010.0642\x204.49198\x209.82994\x204.25766L8.8542\x203.28193V5.8334C8.8542\x206.16477\x208.58557\x206.4334\x208.2542\x206.4334C7.92283\x206.4334\x207.6542\x206.16477\x207.6542\x205.8334V3.28193L6.67846\x204.25766C6.44415\x204.49198\x206.06425\x204.49198\x205.82994\x204.25766C5.59562\x204.02335\x205.59562\x203.64345\x205.82994\x203.40913L7.82994\x201.40913Z','univer-mb-2\x20univer-flex\x20univer-h-7\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-xs\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','ShapeRightArrowIcon','OrderIcon','ShapeTextFloatMenuRenderControllerBase','gradientStops','ShapeChevronIcon','shape-dodecagon-icon','H3Icon','getObject','ShapeTextEditorContainer','SUPERSCRIPT','reduce','M11.8\x204.5H17.5','shape.type.heptagon','ShapeBorderCallout2Icon','ShapeFolderCornerIcon','M4.53027\x2012.2604C4.1989\x2012.2604\x203.93027\x2012.529\x203.93027\x2012.8604C3.93027\x2013.1917\x204.1989\x2013.4604\x204.53027\x2013.4604H14.5488C14.8802\x2013.4604\x2015.1488\x2013.1917\x2015.1488\x2012.8604C15.1488\x2012.529\x2014.8802\x2012.2604\x2014.5488\x2012.2604H4.53027Z','Radio','ShapeRightArrowCalloutIcon','ShapeCurvedLeftArrowIcon','shape.type.math-not-equal','borderClassName','shape.type.wedge-round-rect-callout','shape.type.star8','GradientColorPicker','ShapeFlowChartManualInputIcon','M15.56944\x208.66518C15.46709\x206.54997\x2014.24853\x205.5\x2012.16667\x205.5L9.25\x205.5L9.10092\x205.5L9.02855\x205.5L3.8468\x205.5L3.8468\x201.5L10.5118\x202C13.62756\x202.2003\x2016.05556\x205.38081\x2016.05556\x208.5918C16.05556\x208.66075\x2015.57167\x208.59674\x2015.56944\x208.66518ZM18\x208.5918C18\x204.32466\x2014.77386\x200.79254\x2010.63333\x200.52637L2.4444\x200L2.4444\x207L12.16667\x207C13.24055\x207\x2014.11111\x207.89543\x2014.11111\x209C14.11111\x2010.1046\x2013.24055\x2011.5\x2012.16667\x2011.5L12.16667\x2013C13.72842\x2013\x2015.07423\x2012.0526\x2015.69287\x2010.6865C14.92301\x2012.8423\x2012.99938\x2014.7903\x2010.65612\x2015L5.4523\x2015.2865L5.3611\x2015.2969L3.8468\x2014.2754L5.4523\x2013L12.16667\x2013L12.16667\x2011.5L7.3056\x2011.5L7.3056\x209.5L0.5\x2014.4072L7.3056\x2019L7.3056\x2016.957L10.82416\x2016.6416C14.88383\x2016.2785\x2017.99983\x2012.7832\x2018\x208.5918Z','shape.type.chart-star','title','M6.14645\x204.64645C6.34171\x204.45118\x206.65829\x204.45118\x206.85355\x204.64645L9.85355\x207.64645C10.0488\x207.84171\x2010.0488\x208.15829\x209.85355\x208.35355L6.85355\x2011.3536C6.65829\x2011.5488\x206.34171\x2011.5488\x206.14645\x2011.3536C5.95118\x2011.1583\x205.95118\x2010.8417\x206.14645\x2010.6464L8.79289\x208L6.14645\x205.35355C5.95118\x205.15829\x205.95118\x204.84171\x206.14645\x204.64645Z','M15.5426\x2012.4L17.151\x2012.4L15.6873\x209.9999L17.1719\x207.5634L15.5426\x207.5442L15.5426\x204.5287L12.4\x204.5287L12.4\x202.8867L10\x204.3867L7.6\x202.8867L7.6\x204.5287L4.9457\x204.5287L4.9457\x207.6466L3.222\x207.5954L4.9914\x2010.0117L3.1999\x2012.4L4.9457\x2012.4L4.9457\x2015.4713L7.6\x2015.4713L7.6\x2017.112L10\x2015.6132L12.4\x2017.112L12.4\x2015.4713L15.5426\x2015.4713ZM17.1426\x2017.0713L14\x2017.0713L14\x2020L10\x2017.5L6\x2020L6\x2017.0713L3.3457\x2017.0713L3.3457\x2014L0\x2014L3\x2010L0\x205.9033L3.3457\x206L3.3457\x202.9287L6\x202.9287L6\x200L10\x202.5L14\x200L14\x202.9287L17.1426\x202.9287L17.1426\x205.9648L20\x206L17.5605\x2010L20\x2014L17.1426\x2014Z','univer-flex\x20univer-flex-col','M13.9999\x2015.4058L13.9999\x204.0918L5\x2010.092ZM12.4001\x207.0803L12.4001\x2012.6026L8.0074\x2010.009Z','PictureFill','color','M13.8\x2013.8H18.2V18.2H13.8z','univer-gap-4','url(#shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right)','resetInitialWidth','ShapeFlowChartDelayIcon','group\x20univer-relative\x20univer-inline-block','mask','M1.3999\x2013.6999C1.3999\x2013.3685\x201.66853\x2013.0999\x201.9999\x2013.0999H13.9999C14.3313\x2013.0999\x2014.5999\x2013.3685\x2014.5999\x2013.6999C14.5999\x2014.0312\x2014.3313\x2014.2999\x2013.9999\x2014.2999H1.9999C1.66853\x2014.2999\x201.3999\x2014.0312\x201.3999\x2013.6999Z','ShapeStar10Icon','shape-octagon-icon-frame-clip','M8.57975\x2014.5902C8.58121\x2014.5917\x208.58268\x2014.5931\x208.58416\x2014.5946C8.64077\x2014.6502\x208.70566\x2014.6923\x208.77482\x2014.7209C8.84557\x2014.7502\x208.92314\x2014.7664\x209.00449\x2014.7664C9.08585\x2014.7664\x209.16342\x2014.7502\x209.23416\x2014.7209C9.30332\x2014.6923\x209.36821\x2014.6502\x209.42482\x2014.5946','M19.0002\x204V15H6.00018V4H19.0002Z','ShapeStar5Icon','shape-flow-chart-delay-icon','ShapeCircularArrowIcon','ShapeRectIcon','amd','getBoundingClientRect','ShapeStar4Icon','ShapeParallelogramIcon','M6.2721\x201L13.7279\x201L19\x206.2721L19\x2013.7279L13.7279\x2019L6.2721\x2019L1\x2013.7279L1\x206.2721Z','shape-action-button-end-icon','ShapeCurvedDownArrowIcon','CurvedConnector3','NamedStyleType','shape-up-down-arrow-icon','univer-flex\x20univer-h-6\x20univer-min-w-7\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','BentArrow','find','M7\x206H12V4.60156L15.3936\x206.71289L12\x209.125V8H8C6.34315\x208\x205\x209.34315\x205\x2011V17H3V10L1\x2010V19H7V11C7\x2010.4477\x207.44771\x2010\x208\x2010H10V13.001L19\x206.60156L10\x201.00098L10\x204H7C3.68629\x204\x201\x206.68629\x201\x2010L3\x2010C3\x207.79086\x204.79086\x206\x207\x206Z','h2-icon','align-top-icon','ShapeHexagonIcon','ShapeLineIcon','ChartPlus','M14\x2013L17\x2016L14\x2019','angle','shape-star16-icon','M4.2058\x201.2L4.2002\x201.2788L4.2002\x2011.7697L4.1247\x2012.2L1.6847\x2012.2L1.5482\x2012.2846L1.415\x2012.4934L1.2731\x2012.742L1.1444\x2012.9957L1.0289\x2013.254L0.9265\x2013.5163L0.8374\x2013.7823L0.7614\x2014.0513L0.6986\x2014.323L0.6489\x2014.5967L0.6125\x2014.8721L0.5892\x2015.1486L0.5791\x2015.4258L0.5821\x2015.703L0.5984\x2015.9799L0.6278\x2016.256L0.6704\x2016.5307L0.7261\x2016.8035L0.7951\x2017.074L0.8772\x2017.3417L0.9724\x2017.606L1.0809\x2017.8665L1.2025\x2018.1227L1.3374\x2018.3741L1.4854\x2018.6203L1.5959\x2018.785L1.7715\x2018.8L15.7265\x2018.8L15.8002\x2018.7921L15.8002\x208.157L15.9622\x207.8L17.7931\x207.8L17.9321\x207.7346L18.0514\x207.5369L18.187\x207.2861L18.3099\x207.0305L18.4201\x206.7705L18.5177\x206.5066L18.6026\x206.2391L18.6747\x205.9687L18.7341\x205.6956L18.7807\x205.4205L18.8145\x205.1438L18.8354\x204.8659L18.8434\x204.5873L18.8385\x204.3084L18.8207\x204.0298L18.7899\x203.7519L18.7462\x203.4752L18.6894\x203.2L18.6195\x202.927L18.5366\x202.6565L18.4405\x202.389L18.3313\x202.125L18.2079\x201.8627L18.0788\x201.6044L17.9495\x201.3458L17.8729\x201.2ZM15.8216\x202.8L16.0095\x202.8L16.69\x202.8L16.8955\x202.8323L16.9678\x203.0217L16.9978\x203.1052L17.0261\x203.1891L17.0526\x203.2734L17.0773\x203.3581L17.1003\x203.4431L17.1216\x203.5284L17.1412\x203.614L17.159\x203.6998L17.1751\x203.7859L17.1895\x203.8722L17.2021\x203.9587L17.213\x204.0453L17.2222\x204.132L17.2297\x204.2189L17.2354\x204.3058L17.2394\x204.3928L17.2417\x204.4798L17.2423\x204.5668L17.2412\x204.6537L17.2384\x204.7406L17.2338\x204.8275L17.2276\x204.9142L17.2196\x205.0008L17.21\x205.0872L17.1986\x205.1735L17.1855\x205.2595L17.1708\x205.3454L17.1543\x205.4309L17.1361\x205.5162L17.1162\x205.6011L17.0947\x205.6857L17.0714\x205.77L17.0465\x205.8538L17.0199\x205.9373L16.9754\x206.0674L16.8287\x206.2L16.0314\x206.2L15.8002\x206.2L9.9029\x206.2L9.6376\x206.1165L9.6972\x205.8563L9.7142\x205.7771L9.7302\x205.6978L9.745\x205.6183L9.7588\x205.5386L9.7716\x205.4588L9.7832\x205.3789L9.7938\x205.2988L9.8033\x205.2186L9.8118\x205.1384L9.8191\x205.058L9.8254\x204.9775L9.8306\x204.897L9.8347\x204.8164L9.8378\x204.7357L9.8397\x204.655L9.8406\x204.5743L9.8404\x204.4936L9.8391\x204.4128L9.8367\x204.3321L9.8333\x204.2514L9.8287\x204.1707L9.8231\x204.0901L9.8163\x204.0095L9.8085\x203.9289L9.7996\x203.8484L9.7896\x203.7681L9.7785\x203.6878L9.7663\x203.6076L9.753\x203.5275L9.7387\x203.4475L9.7232\x203.3677L9.7066\x203.2881L9.6889\x203.2085L9.6701\x203.1292L9.5875\x202.8ZM5.8002\x207.2807L5.8743\x206.4829L6.2533\x207.2209L6.321\x207.3451L6.3919\x207.468L6.466\x207.5895L6.5433\x207.7097L6.5951\x207.7861L6.6239\x207.8L14.029\x207.8L14.2002\x208.0097L14.2002\x2016.9641L14.0575\x2017.2L5.8002\x2017.2ZM7.8916\x202.819L7.9666\x203.0218L7.9957\x203.118L8.0132\x203.2124L8.028\x203.2974L8.0417\x203.3825L8.0544\x203.4676L8.0661\x203.553L8.0768\x203.6384L8.0864\x203.7238L8.095\x203.8094L8.1026\x203.8951L8.1091\x203.9808L8.1146\x204.0665L8.1191\x204.1523L8.1226\x204.2381L8.125\x204.324L8.1265\x204.4099L8.1269\x204.4957L8.1263\x204.5816L8.1247\x204.6675L8.1221\x204.7533L8.1184\x204.8391L8.1138\x204.9249L8.1081\x205.0106L8.1014\x205.0963L8.0937\x205.1819L8.085\x205.2675L8.0753\x205.3529L8.0646\x205.4383L8.0529\x205.5235L8.0401\x205.6087L8.0264\x205.6937L8.0117\x205.7786L7.9959\x205.8634L7.9792\x205.948L7.9325\x206.1703L7.6002\x206.2133L7.4686\x206.038L7.4284\x205.9298L7.3993\x205.8462L7.372\x205.7622L7.3465\x205.6778L7.3228\x205.5929L7.301\x205.5077L7.2809\x205.4222L7.2626\x205.3364L7.2462\x205.2502L7.2315\x205.1639L7.2187\x205.0773L7.2076\x204.9905L7.1984\x204.9035L7.1909\x204.8164L7.1853\x204.7292L7.1815\x204.642L7.1794\x204.5547L7.1792\x204.4673L7.1808\x204.38L7.1842\x204.2927L7.1893\x204.2055L7.1963\x204.1184L7.2051\x204.0314L7.2157\x203.9446L7.2281\x203.8579L7.2423\x203.7715L7.2583\x203.6853L7.2761\x203.5994L7.2957\x203.5138L7.3171\x203.4285L7.3404\x203.3436L7.3654\x203.259L7.3922\x203.1749L7.4209\x203.0912L7.4513\x203.0081L7.5373\x202.7875ZM2.9658\x2014.0162L2.9958\x2014.0995L3.0241\x2014.1832L3.0507\x2014.2674L3.0755\x2014.3519L3.0986\x2014.4367L3.12\x2014.5218L3.1397\x2014.6072L3.1576\x2014.6929L3.1738\x2014.7788L3.1883\x2014.865L3.2011\x2014.9513L3.2121\x2015.0377L3.2214\x2015.1243L3.229\x2015.211L3.2349\x2015.2978L3.2391\x2015.3846L3.2416\x2015.4714L3.2423\x2015.5583L3.2414\x2015.6451L3.2387\x2015.7319L3.2344\x2015.8186L3.2283\x2015.9052L3.2205\x2015.9916L3.2111\x2016.0779L3.1999\x2016.1641L3.187\x2016.25L3.1725\x2016.3357L3.1562\x2016.4211L3.1383\x2016.5062L3.1187\x2016.5911L3.0974\x2016.6756L3.0743\x2016.7597L3.0497\x2016.8435L3.0233\x2016.9268L2.985\x2017.04L2.8601\x2017.2L2.5595\x2017.2L2.4593\x2017.0133L2.4246\x2016.9193L2.3959\x2016.836L2.3689\x2016.7523L2.3437\x2016.6681L2.3203\x2016.5835L2.2987\x2016.4986L2.2789\x2016.4133L2.2609\x2016.3278L2.2447\x2016.2419L2.2302\x2016.1558L2.2176\x2016.0695L2.2067\x2015.983L2.1977\x2015.8964L2.1904\x2015.8096L2.1849\x2015.7227L2.1813\x2015.6357L2.1794\x2015.5487L2.1792\x2015.4617L2.1809\x2015.3747L2.1844\x2015.2877L2.1897\x2015.2008L2.1967\x2015.114L2.2056\x2015.0274L2.2162\x2014.9409L2.2286\x2014.8545L2.2428\x2014.7684L2.2589\x2014.6825L2.2767\x2014.5969L2.2962\x2014.5116L2.3176\x2014.4267L2.3408\x2014.342L2.3658\x2014.2578L2.3925\x2014.174L2.4211\x2014.0906L2.4514\x2014.0078L2.5371\x2013.7879L2.8899\x2013.8183Z','SetInlineFormatBoldCommand','accent-primary-600\x20univer-h-1.5\x20univer-w-full\x20univer-cursor-pointer\x20univer-appearance-none\x20univer-rounded-full\x20univer-bg-gray-200\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-bg-gray-700\x20[&::-webkit-slider-thumb]:univer-size-3.5\x20[&::-webkit-slider-thumb]:univer-appearance-none\x20[&::-webkit-slider-thumb]:univer-rounded-full\x20[&::-webkit-slider-thumb]:univer-bg-primary-600\x20[&::-webkit-slider-thumb]:univer-shadow-sm','M8.44922\x202L2\x209.27246V17H18V2H8.44922Z','CircularArrow','M15.5\x2013.5H18.5V16.5H15.5z','\x0a\x20\x20\x20\x20\x20\x20univer-flex\x20univer-h-6\x20univer-min-w-6\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x0a\x20\x20\x20\x20\x20\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1\x20univer-text-sm\x20univer-text-gray-700\x0a\x20\x20\x20\x20\x20\x20univer-transition-colors\x0a\x20\x20\x20\x20\x20\x20hover:univer-bg-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:!univer-text-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:hover:!univer-bg-gray-700\x0a\x20\x20\x20\x20','WrapStrategy','shape-border-callout1-icon','docs-callout.command.insert','shape.type.star5','FontColorDoubleIcon','setItem','resize','M11\x208.5V6.5V4H15.5V8.5H13H11ZM14\x205.5H12.5V7H14V5.5Z','UniverShapeEditorUIPlugin','shape.type.ribbon2','@univerjs-pro/engine-shape','shape-editor-ui.line.joinType.title','HEADING_3','ShapeHeartIcon','HomePlate','M12.8098\x2010.0174C13.4565\x209.45285\x2014.781\x209.44507\x2015.0272\x2010.5759C15.2798\x2011.736\x2013.8101\x2013.2515\x2012.7376\x2014.1033C12.7227\x2014.1151\x2012.7315\x2014.1389\x2012.7505\x2014.1388L15.2251\x2014.1388','evenodd','shape-plaque-tabs-icon','univerjs-icon\x20univerjs-icon-','LeftArrowCallout','DocSelectionManagerService','M7\x202C5.2\x202\x204.4\x202.75\x204.4\x204.6V7.3C4.4\x208.55\x203.85\x209.35\x202.6\x209.9C3.85\x2010.45\x204.4\x2011.25\x204.4\x2012.5V15.4C4.4\x2017.25\x205.2\x2018\x207\x2018','shape-curved-connector3-icon','shape-editor-ui.fill.solidFill','commandId','Cube','end','opacity','root','KeyCode','shape.type.dodecagon','shape.type.flow-chart-manual-operation','shape.type.line-inv','univer-text-xs\x20univer-text-gray-500\x20dark:!univer-text-gray-300','endNodePosition','M4.65791\x201.30005C3.77355\x201.30005\x203.05664\x202.01696\x203.05664\x202.90132V12.8588C3.05664\x2013.8755\x203.88086\x2014.6998\x204.89759\x2014.6998H9.1016C11.2233\x2014.6998\x2012.9433\x2012.9798\x2012.9433\x2010.8581C12.9433\x209.13925\x2011.8145\x207.68407\x2010.2578\x207.1934C10.8806\x206.56856\x2011.2655\x205.70659\x2011.2655\x204.75472C11.2655\x202.84676\x209.71883\x201.30005\x207.81087\x201.30005H4.65791ZM4.25664\x202.90132C4.25664\x202.6797\x204.4363\x202.50005\x204.65791\x202.50005H7.81087C9.05609\x202.50005\x2010.0655\x203.5095\x2010.0655\x204.75472C10.0655\x205.99993\x209.05609\x207.00938\x207.81087\x207.00938H4.25664V2.90132ZM4.25664\x2012.8588V8.21636H9.1016C10.5606\x208.21636\x2011.7433\x209.39909\x2011.7433\x2010.8581C11.7433\x2012.317\x2010.5606\x2013.4998\x209.1016\x2013.4998H4.89759C4.5436\x2013.4998\x204.25664\x2013.2128\x204.25664\x2012.8588Z','groupShapeOptions','ShapeRightBracketIcon','M4\x203H16C17.1046\x203\x2018\x203.89543\x2018\x205V13C18\x2014.1046\x2017.1046\x2015\x2016\x2015H14.2881L14.0938\x2015.0859L6.5\x2018.4609V15H4C2.89543\x2015\x202\x2014.1046\x202\x2013V5C2\x203.89543\x202.89543\x203\x204\x203Z','ShapeFlowChartOfflineStorageIcon','M8\x202C9.2853\x202\x2010.457\x202.42475\x2011.3428\x203.12207C11.8615\x202.96265\x2012.419\x202.875\x2013\x202.875C15.7614\x202.875\x2018\x204.83375\x2018\x207.25C18\x207.97779\x2017.7949\x208.66285\x2017.4355\x209.2666C18.9353\x209.84364\x2020\x2011.297\x2020\x2013C20\x2015.2091\x2018.2091\x2017\x2016\x2017C15.5108\x2017\x2015.0426\x2016.9107\x2014.6094\x2016.75C13.8013\x2017.5234\x2012.7069\x2018\x2011.5\x2018C10.4258\x2018\x209.43972\x2017.6232\x208.66602\x2016.9951C7.77055\x2017.627\x206.67928\x2018\x205.5\x2018C2.46243\x2018\x200\x2015.5376\x200\x2012.5C0\x2010.2946\x201.29808\x208.39235\x203.17188\x207.51562C3.05993\x207.15196\x203\x206.76961\x203\x206.375C3\x203.95875\x205.23858\x202\x208\x202Z','shape-plaque-icon','code-icon','M10\x203C13.866\x203\x2017\x206.13401\x2017\x2010C17\x2013.866\x2013.866\x2017\x2010\x2017H2V3H10Z','endOffset','symbol','shape.type.half-frame','shape.type.star6','nextWidth','shape-left-up-arrow-icon','shape-teardrop-icon','M0.939453\x2012.5002C0.939453\x2011.4325\x201.80504\x2010.5669\x202.87279\x2010.5669C3.94054\x2010.5669\x204.80612\x2011.4325\x204.80612\x2012.5002C4.80612\x2013.568\x203.94054\x2014.4336\x202.87279\x2014.4336C1.80504\x2014.4336\x200.939453\x2013.568\x200.939453\x2012.5002ZM2.87279\x2011.7669C2.46778\x2011.7669\x202.13945\x2012.0952\x202.13945\x2012.5002C2.13945\x2012.9052\x202.46778\x2013.2336\x202.87279\x2013.2336C3.2778\x2013.2336\x203.60612\x2012.9052\x203.60612\x2012.5002C3.60612\x2012.0952\x203.2778\x2011.7669\x202.87279\x2011.7669Z','FlowchartMagneticTape','shape-border-callout2-icon','url(#shape-block-arc-icon_shape-block-arc-icon-clip-0)','shape-flow-chart-display-icon','ShapePlaqueIcon','M5\x201L2\x204L5\x207','Square','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-gap-2\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-2\x20univer-text-left\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','shape-star10-icon','shape.type.octagon','univer-mx-auto\x20univer-mt-2\x20univer-h-1\x20univer-w-1/2\x20univer-rounded-md\x20univer-bg-primary-600','bold','M18.699\x2010.001L10.2\x2017.5556L10.2\x2013.8L1.4\x2013.8L4.25\x2010L1.4\x206.2L10.2\x206.2L10.2\x202.4463ZM16.2906\x2010.001L11.8\x2013.9927L11.8\x2012.2L4.6\x2012.2L6.25\x2010L4.6\x207.8L11.8\x207.8L11.8\x206.0093Z','ShapeGroupEnum','AlignLeftCommand','M1.9999\x201.89941C1.66853\x201.89941\x201.3999\x202.16804\x201.3999\x202.49941C1.3999\x202.83078\x201.66853\x203.09941\x201.9999\x203.09941H13.9999C14.3313\x203.09941\x2014.5999\x202.83078\x2014.5999\x202.49941C14.5999\x202.16804\x2014.3313\x201.89941\x2013.9999\x201.89941H1.9999Z','getDrawingTransform','editorTop','M1.5\x203.5H4.5V6.5H1.5z','ActionButtonHelp','306836nhufPt','SolidLine','M19\x2010.001L10\x2018.001V14H1V6H10V2.00098L19\x2010.001ZM16.6\x2010.001L11.6\x205.55651V7.6H2.6V12.4H11.6V14.4455L16.6\x2010.001Z','M5.8\x205.8H14.2V14.2H5.8z','order-icon','clipPath','shape-down-arrow-icon-clip','gradientAngle','ellipse','shape.type.frame','rotate(-90deg)','FOCUSING_PANEL_EDITOR','M15.5\x203.5L15.5\x208L15.5\x2013L4.5\x2013L4.5\x208L4.5\x203.5L15.5\x203.5ZM6\x2011.5L14\x2011.5L14\x205L6\x205L6\x2011.5Z','univer-px-4\x20univer-pb-2.5\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','M13\x201C13\x204.3137\x2015.6863\x207\x2019\x207V1H13ZM17.4\x205.0988A4.4\x204.4\x200\x200\x201\x2014.9012\x202.6H17.4V5.0988Z','ShapeActionButtonForwardNextIcon','ShapeSmileyFaceIcon','univer-w-[280px]\x20univer-rounded-lg\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-bg-gray-900','shape.type.flow-chart-delay','docs-quote.command.insert','Teardrop','updateDocumentStyle','backwardLabel','univer-flex\x20univer-flex-col\x20univer-gap-2','FlowchartOr','M7.46855\x202.83731C7.46855\x202.61639\x207.64764\x202.4373\x207.86855\x202.4373H13.8603C14.0812\x202.4373\x2014.2603\x202.61639\x2014.2603\x202.8373V9.5049C14.2603\x209.72581\x2014.0812\x209.90489\x2013.8603\x209.90489H12.866C12.5346\x209.90489\x2012.266\x2010.1735\x2012.266\x2010.5049C12.266\x2010.8363\x2012.5346\x2011.1049\x2012.866\x2011.1049H13.8603C14.7439\x2011.1049\x2015.4603\x2010.3886\x2015.4603\x209.5049V2.8373C15.4603\x201.95365\x2014.7439\x201.2373\x2013.8603\x201.2373H7.86855C6.9849\x201.2373\x206.26855\x201.95365\x206.26855\x202.83731V3.48688C6.26855\x203.81825\x206.53718\x204.08688\x206.86855\x204.08688C7.19993\x204.08688\x207.46855\x203.81825\x207.46855\x203.48688V2.83731Z','ShapeWedgeRectCalloutIcon','TRADITIONAL','VerticalAlign','M15\x204L13\x204L13\x207L16\x207L16\x204.8L20\x2010L16\x2015.2L16\x2013L13\x2013L13\x2016L15\x2016L10\x2020L5\x2016L7\x2016L7\x2013L4\x2013L4\x2015.2L0\x2010L4\x204.8L4\x207L7\x207L7\x204L5\x204L10\x200ZM8.6\x203.2547L8.6\x208.6L3.0989\x208.6L2.022\x2010L3.0989\x2011.4L8.6\x2011.4L8.6\x2016.7453L10\x2017.8653L11.4\x2016.7453L11.4\x2011.4L16.9011\x2011.4L17.978\x2010L16.9011\x208.6L11.4\x208.6L11.4\x203.2547L10\x202.1347Z','test','ShapeMathPlusIcon','ShapeAccentCallout1Icon','M10.6667\x206.06689C10.3353\x206.06689\x2010.0667\x206.33552\x2010.0667\x206.66689C10.0667\x206.99827\x2010.3353\x207.26689\x2010.6667\x207.26689H12.7732L11.193\x209.29853C11.0524\x209.47942\x2011.027\x209.72465\x2011.1277\x209.93051C11.2283\x2010.1364\x2011.4375\x2010.2669\x2011.6667\x2010.2669C12.2418\x2010.2669\x2012.6786\x2010.4115\x2012.9585\x2010.6354C13.2204\x2010.845\x2013.4\x2011.166\x2013.4\x2011.6669C13.4\x2012.1622\x2013.2254\x2012.3937\x2013.0567\x2012.5202C12.8588\x2012.6686\x2012.5829\x2012.7336\x2012.3333\x2012.7336C11.7271\x2012.7336\x2011.3432\x2012.4858\x2011.1106\x2012.23C10.8877\x2011.9848\x2010.5082\x2011.9667\x2010.2631\x2012.1896C10.0179\x2012.4125\x209.99979\x2012.792\x2010.2227\x2013.0372C10.6568\x2013.5147\x2011.3522\x2013.9336\x2012.3333\x2013.9336C12.7504\x2013.9336\x2013.3078\x2013.8319\x2013.7767\x2013.4802C14.2746\x2013.1068\x2014.6\x2012.5049\x2014.6\x2011.6669C14.6\x2010.8345\x2014.2796\x2010.1555\x2013.7081\x209.69837C13.4342\x209.47923\x2013.117\x209.32231\x2012.7746\x209.21971L14.4736\x207.03526C14.6143\x206.85437\x2014.6397\x206.60914\x2014.539\x206.40328C14.4383\x206.19743\x2014.2291\x206.06689\x2014\x206.06689H10.6667Z','shape.type.ellipse-ribbon','textStyle','shape-straight-connector2-icon','M8.00033\x201.20996C6.43345\x201.20996\x205.23596\x201.88077\x204.64804\x202.94304C4.06338\x203.99943\x204.15123\x205.32084\x204.90099\x206.47062C5.08199\x206.7482\x205.45374\x206.82648\x205.73131\x206.64548C6.00888\x206.46448\x206.08716\x206.09273\x205.90616\x205.81516C5.36418\x204.98402\x205.35768\x204.13897\x205.69797\x203.52412C6.035\x202.91515\x206.78176\x202.40996\x208.00033\x202.40996C9.19423\x202.40996\x2010.0017\x202.93409\x2010.5236\x203.46755C10.7871\x203.73682\x2010.9756\x204.00712\x2011.0974\x204.20903C11.158\x204.30951\x2011.2013\x204.39164\x2011.2284\x204.44625C11.2419\x204.47351\x2011.2514\x204.49377\x2011.2568\x204.50588L11.2621\x204.51771C11.3901\x204.82216\x2011.7407\x204.96686\x2012.046\x204.83992C12.3519\x204.71267\x2012.4968\x204.36149\x2012.3695\x204.05552L11.8231\x204.28278C12.3695\x204.05552\x2012.3697\x204.0558\x2012.3695\x204.05552L12.3691\x204.05437L12.3685\x204.05298L12.367\x204.04953L12.3629\x204.03993L12.3498\x204.01036C12.3388\x203.98619\x2012.3234\x203.95326\x2012.3033\x203.91282C12.2632\x203.83203\x2012.2043\x203.72072\x2012.1249\x203.58908C11.9666\x203.32674\x2011.7235\x202.97805\x2011.3814\x202.62834C10.6921\x201.92381\x209.59192\x201.20996\x208.00033\x201.20996Z','M10\x202C12.3755\x202\x2016\x204\x2016\x204V13C16\x2013\x2012.3755\x2011.5\x2010\x2011.5C7.6245\x2011.5\x204\x2013\x204\x2013V4C4\x204\x207.6245\x202\x2010\x202ZM9.99087\x203.16696C9.23117\x203.16696\x208.1813\x203.509\x207\x204C6.6811\x204.1325\x205.7611\x204.47933\x205.5\x204.60143V11C6.667\x2010.5563\x208.6536\x2010\x2010\x2010C11.3464\x2010\x2013.333\x2010.5563\x2014.5\x2011V4.7354C14.2389\x204.6133\x2013.3189\x204.1325\x2013\x204C11.8187\x203.509\x2010.7506\x203.16696\x209.99087\x203.16696Z','ShapeUpArrowIcon','M18\x2011.5508L12.6367\x2011.5508L15.0908\x2019L12.667\x2019L2\x208.5L2\x206.5L7\x206.5L4\x201L12.5\x201ZM9.6953\x208.1L3.875\x208.1L12.6669\x2016.7542L10.4241\x209.9508L15.3617\x209.9508L11.5297\x202.6L6.6953\x202.6Z','M6.02734\x202H17.7373L13.9727\x2018H2.2627L6.02734\x202Z','M8.66518\x202.43056C6.54997\x202.53291\x205.5\x203.75147\x205.5\x205.83333V8.75V8.89908V8.97145V14.1532H1.5L2\x207.4882C2.2003\x204.37244\x205.38081\x201.94444\x208.5918\x201.94444C8.66075\x201.94444\x208.59674\x202.42833\x208.66518\x202.43056ZM8.5918\x200C4.32466\x200\x200.79254\x203.22614\x200.52637\x207.36667L0\x2015.5556H7V5.83333C7\x204.75945\x207.89543\x203.88889\x209\x203.88889C10.1046\x203.88889\x2011.5\x204.75945\x2011.5\x205.83333H13C13\x204.27158\x2012.0526\x202.92577\x2010.6865\x202.30713C12.8423\x203.07699\x2014.7903\x205.00062\x2015\x207.34388L15.2865\x2012.5477L15.2969\x2012.6389L14.2754\x2014.1532L13\x2012.5477V5.83333H11.5V10.6944H9.5L14.4072\x2017.5L19\x2010.6944H16.957L16.6416\x207.17584C16.2785\x203.11617\x2012.7832\x200.000175\x208.5918\x200Z','univer-h-0\x20univer-w-7\x20univer-border-t-2\x20univer-border-solid\x20univer-border-gray-400\x20dark:!univer-border-gray-300','dataModel','getSkeletonData','Tooltip','shape-straight-connector1-icon','shape-editor-ui.line.sketchType.handDrawn','ColorPicker','shape-editor-ui.textEditor.paragraphType.bulletList','ShapeCubeIcon','defs','M9\x209H11V13H9z','univer-flex\x20univer-aspect-square\x20univer-cursor-pointer\x20univer-items-center\x20univer-justify-center\x20univer-rounded\x20univer-border-none\x20univer-bg-transparent\x20univer-p-1\x20univer-text-gray-700\x20hover:univer-bg-gray-200\x20dark:!univer-text-gray-200\x20dark:hover:!univer-bg-gray-700','-fill','idSuffix','shape-left-brace-icon','ShapeFlowChartOnlineStorageIcon','-line','univer-flex\x20univer-flex-col\x20univer-gap-3\x20univer-pt-2','setSelectionRanges','ShapeStar12Icon','univer-flex-1','onTransformChange$','univer-flex\x20univer-flex-col\x20univer-gap-4\x20univer-pt-2','ShapeStar24Icon','BACKSPACE','vertical-center-icon','plain','shape-left-right-ribbon-icon','command:','shape-left-bracket-icon','shape.type.up-arrow','http://www.w3.org/2000/svg','shape-editor-ui.line.color','shape.type.star12','shape-editor-ui.fill.picture.offsetX','version','M6.2981\x2012.4999C6.2981\x2012.1685\x206.56672\x2011.8999\x206.8981\x2011.8999H14.4605C14.7918\x2011.8999\x2015.0605\x2012.1685\x2015.0605\x2012.4999C15.0605\x2012.8313\x2014.7918\x2013.0999\x2014.4605\x2013.0999H6.8981C6.56672\x2013.0999\x206.2981\x2012.8313\x206.2981\x2012.4999Z','shape-editor-ui.fill.color','M5.7\x204.5H7.3V15.5H5.7V4.5Z','univer-grid\x20univer-grid-cols-10\x20univer-gap-1','ShapeAccentBorderCallout3Icon','isFinite','ShapeTextPositionWrapper','\x20px','shape-flow-chart-or-icon','aba','M8\x201C9.2853\x201\x2010.457\x201.42475\x2011.3428\x202.12207C11.8615\x201.96265\x2012.419\x201.875\x2013\x201.875C15.7614\x201.875\x2018\x203.83375\x2018\x206.25C18\x206.96644\x2017.801\x207.64142\x2017.4521\x208.23828C18.9433\x208.74691\x2020\x2010.0153\x2020\x2011.5C20\x2013.433\x2018.2091\x2015\x2016\x2015C15.2712\x2015\x2014.5885\x2014.8283\x2014\x2014.5303C13.4115\x2014.8283\x2012.7288\x2015\x2012\x2015C10.4354\x2015\x209.0812\x2014.2137\x208.42383\x2013.0684C7.72298\x2014.226\x206.45206\x2015\x205\x2015C2.79086\x2015\x201\x2013.2091\x201\x2011C1\x209.31993\x202.03608\x207.88253\x203.50391\x207.29004C3.18147\x206.71156\x203\x206.06192\x203\x205.375C3\x202.95875\x205.23858\x201\x208\x201Z','shape.type.action-button-beginning','univer-h-5\x20univer-w-12','textRect','shape.type.right-bracket','subUnitId','univer-text-xl','push','getViewport','M15.5\x203.5H18.5V6.5H15.5z','M2\x203C6.95\x203\x2010.75\x204.45\x2013.45\x207.2C16.05\x209.85\x2017.4\x2012.55\x2018\x2017','M3\x209L0\x204H6V14H0L3\x209ZM4.5\x205.5H2.5L4.5\x208.5V5.5ZM4.5\x209.5L2.5\x2012.5H4.5V9.5Z','shape-star6-icon','shape-down-arrow-icon','zeroWidthParagraphBreak','UNIVER_UNKNOWN','shape.type.rt-triangle','M12.9844\x205L19\x205L13.9697\x2010L19\x2015L12.9844\x2015L10\x2020L7.0156\x2015L1\x2015L6.0303\x2010L1\x205L7.0156\x205L10\x200ZM7.9233\x206.6L4.8799\x206.6L8.2998\x2010L4.8799\x2013.4L7.9234\x2013.4L10\x2016.8768L12.0766\x2013.4L15.1201\x2013.4L11.7001\x2010L15.1201\x206.6L12.0766\x206.6L10\x203.1221Z','shape-chart-x-icon','UturnArrow','M15.4713\x2011.7165L17.512\x2010L15.4713\x208.2835L15.4713\x204.5287L11.7166\x204.5287L10\x202.4868L8.2834\x204.5287L4.5287\x204.5287L4.5287\x208.2834L2.4868\x2010L4.5287\x2011.7166L4.5287\x2015.4713L8.2835\x2015.4713L10\x2017.512L11.7165\x2015.4713L15.4713\x2015.4713ZM17.0713\x2017.0713L12.4619\x2017.0713L10\x2020L7.5381\x2017.0713L2.9287\x2017.0713L2.9287\x2012.4619L0\x2010L2.9287\x207.5381L2.9287\x202.9287L7.5381\x202.9287L10\x200L12.4619\x202.9287L17.0713\x202.9287L17.0713\x207.5381L20\x2010L17.0713\x2012.4619Z','M1.5\x2013.5H4.5V16.5H1.5z','ShapeArrowTypeEnum','M2.5999\x202.66689C2.5999\x202.33552\x202.33127\x202.06689\x201.9999\x202.06689C1.66853\x202.06689\x201.3999\x202.33552\x201.3999\x202.66689V13.3336C1.3999\x2013.6649\x201.66853\x2013.9336\x201.9999\x2013.9336C2.33127\x2013.9336\x202.5999\x2013.6649\x202.5999\x2013.3336V8.5999H7.3999V13.3336C7.3999\x2013.6649\x207.66853\x2013.9336\x207.9999\x2013.9336C8.33127\x2013.9336\x208.5999\x2013.6649\x208.5999\x2013.3336V2.66689C8.5999\x202.33552\x208.33127\x202.06689\x207.9999\x202.06689C7.66853\x202.06689\x207.3999\x202.33552\x207.3999\x202.66689V7.3999H2.5999V2.66689Z','0\x200\x2017\x2016','shape-round2-diag-rect-icon','angular','NORMAL_TEXT','M2\x205V14C2\x2016.2\x205.6\x2018.5\x2010\x2018.5C14.4\x2018.5\x2018\x2016.2\x2018\x2014V5','1.4','equationShape','shape-action-button-back-previous-icon','getShapeModel','card','url(#mask0_1_36)','ShapeDoubleWaveIcon','Star10','shape-editor-ui.line.dashType.squareDot','univer-text-xs\x20univer-text-gray-600\x20univer-transition-transform\x20dark:!univer-text-gray-300','ImageFillModeEnum','callout','univer-mb-2','_context','ShapeCurvedConnector3Arrow2Icon','Line','offsetY','ShapeStraightConnector1Icon','shape-cloud-callout-icon','endArrow','M1\x2013C4.3137\x2013\x207\x2015.6863\x207\x2019H1V13ZM2.6\x2017.4H5.0988A4.4\x204.4\x200\x200\x200\x202.6\x2014.9012V17.4Z','shape.type.lightning-bolt','shape-star24-icon','!univer-h-6\x20univer-w-14\x20!univer-min-w-0\x20!univer-rounded-md\x20!univer-px-1.5','useState','shape-editor-ui.fill.picture.align.r','renderConfig','ShapeRectTextboxHorizontalIcon','shape-left-right-up-arrow-icon','shape-editor-ui.fill.picture.align.b','M4.96372\x202.59116C5.19803\x202.35684\x205.19803\x201.97695\x204.96372\x201.74263C4.7294\x201.50832\x204.3495\x201.50832\x204.11519\x201.74263L2.53945\x203.31837L1.96372\x202.74263C1.7294\x202.50832\x201.3495\x202.50832\x201.11519\x202.74263C0.880874\x202.97695\x200.880874\x203.35684\x201.11519\x203.59116L2.11519\x204.59116C2.3495\x204.82547\x202.7294\x204.82547\x202.96372\x204.59116L4.96372\x202.59116Z','ShapeFlowChartMultidocumentIcon','univer-flex\x20univer-items-center\x20univer-gap-2','M13.5\x208C13.5\x207.72386\x2013.2761\x207.5\x2013\x207.5C12.7239\x207.5\x2012.5\x207.72386\x2012.5\x208C12.5\x208.27614\x2012.7239\x208.5\x2013\x208.5V10C11.8954\x2010\x2011\x209.10457\x2011\x208C11\x206.89543\x2011.8954\x206\x2013\x206C14.1046\x206\x2015\x206.89543\x2015\x208C15\x209.10457\x2014.1046\x2010\x2013\x2010V8.5C13.2761\x208.5\x2013.5\x208.27614\x2013.5\x208Z','shape.type.accent-callout1','value','HEADING_1','Stretch','RedoCommand','default','Dodecagon','M1.8\x201.8H18.2V18.2H1.8z','ShapeHalfFrameIcon','join','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','BulletListCommand','more-down-icon','file','IRenderManagerService','shape.type.circular-arrow','ShapeStraightConnector2Icon','ActionButtonSound','useShapePosition','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20univer-rounded-xl\x20univer-border\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-2\x20univer-shadow-lg\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','MathMinus','univer-text-primary-600','shape-editor-ui.line.joinType.round','M3\x206H4.6V14H3V6Z','shape.type.arc','M12\x2016H18V4H12V8.6H5.1L2.7\x2010L5.1\x2011.4H12V16ZM6\x2013V14.3301L0\x2010L6\x205.6699V7H10.4V2.4H19.6V17.6H10.4V13H6Z','univer-text-base','getItem','#3B82F6','stroke','shape-accent-callout1-icon','shape.type.flow-chart-online-storage','deepCompare','isNaN','M9.80385\x201.40005H11.9997C12.3311\x201.40005\x2012.5997\x201.66868\x2012.5997\x202.00005C12.5997\x202.33143\x2012.3311\x202.60005\x2011.9997\x202.60005H10.1185L7.12251\x2013.4001H9.33324C9.66461\x2013.4001\x209.93324\x2013.6687\x209.93324\x2014.0001C9.93324\x2014.3314\x209.66461\x2014.6001\x209.33324\x2014.6001H6.34785C6.33847\x2014.6003\x206.32905\x2014.6003\x206.31962\x2014.6001H3.9999C3.66853\x2014.6001\x203.3999\x2014.3314\x203.3999\x2014.0001C3.3999\x2013.6687\x203.66853\x2013.4001\x203.9999\x2013.4001H5.87719L8.87322\x202.60005H6.66641C6.33504\x202.60005\x206.06641\x202.33143\x206.06641\x202.00005C6.06641\x201.66868\x206.33504\x201.40005\x206.66641\x201.40005H9.52916C9.61698\x201.37929\x209.71064\x201.3781\x209.80385\x201.40005Z','StraightConnector1','paint-bucket-double-icon','ShapeFlowChartPunchedTapeIcon','LeftUpArrow','ShapeBentConnector3Arrow2Icon','stopPropagation','alignment','M4\x202H16L10\x2010L16\x2018H4L10\x2010L4\x202Z','BOTTOM','Small','ShapeIcon','FlowchartOffPageConnector','columns','SetInlineFormatTextBackgroundColorCommand','univer-rounded-lg\x20univer-p-3','NoSmoking','M1.65465\x203.96697V2.9942C1.65465\x202.9188\x201.64353\x202.86563\x201.62465\x202.83387C1.61052\x202.81011\x201.58943\x202.79243\x201.53852\x202.79243H1.44483C1.23836\x202.79243\x201.07099\x202.62506\x201.07099\x202.41859C1.07099\x202.23956\x201.19714\x202.09152\x201.36369\x202.04728C1.4425\x202.02634\x201.51336\x202.00423\x201.57642\x201.98104C1.65529\x201.94986\x201.73286\x201.91381\x201.80913\x201.87285C1.8974\x201.82544\x201.99768\x201.79517\x202.10303\x201.79517C2.41692\x201.79517\x202.67137\x202.04962\x202.67137\x202.36351V4.02047C2.67137\x204.12385\x202.75517\x204.20765\x202.85855\x204.20765C3.0614\x204.20765\x203.22585\x204.3721\x203.22585\x204.57495V4.63332C3.22585\x204.86842\x203.03527\x205.059\x202.80018\x205.059H1.41884C1.1829\x205.059\x200.993164\x204.86511\x200.993164\x204.63087C0.993164\x204.39932\x201.18072\x204.20765\x201.41398\x204.20765C1.5469\x204.20765\x201.65465\x204.09989\x201.65465\x203.96697Z','shape.type.double-wave','Funnel','random','ShapeIrregularSeal2Icon','shape.type.flow-chart-sort','select','M4\x204L16\x2016M16\x204L4\x2016','Ribbon2','getFreeze','6REsPPV','disposeWithMe','top-center','M12.9673\x206.74968C13.0774\x206.59315\x2013.2567\x206.5\x2013.4481\x206.5C13.7726\x206.5\x2014.0357\x206.7631\x2014.0357\x207.08765V11.1275H14.5735C14.8091\x2011.1275\x2015\x2011.3184\x2015\x2011.5539C15\x2011.7895\x2014.8091\x2011.9804\x2014.5735\x2011.9804H14.0357V13.0357C14.0357\x2013.2921\x2013.8278\x2013.5\x2013.5714\x2013.5C13.315\x2013.5\x2013.1071\x2013.2921\x2013.1071\x2013.0357V11.9804H10.7671C10.3435\x2011.9804\x2010\x2011.6369\x2010\x2011.2133C10\x2011.0553\x2010.0487\x2010.9013\x2010.1396\x2010.7721L12.9673\x206.74968ZM13.0804\x207.85294L10.7946\x2011.1275H13.1071V7.85294H13.0804Z','IconManager','M7.9999\x200.733398C8.33127\x200.733398\x208.5999\x201.00203\x208.5999\x201.3334V4.55137L9.57564\x203.57564C9.80995\x203.34132\x2010.1899\x203.34132\x2010.4242\x203.57564C10.6585\x203.80995\x2010.6585\x204.18985\x2010.4242\x204.42417L8.42417\x206.42417C8.18985\x206.65848\x207.80995\x206.65848\x207.57564\x206.42417L5.57564\x204.42417C5.34132\x204.18985\x205.34132\x203.80995\x205.57564\x203.57564C5.80995\x203.34132\x206.18985\x203.34132\x206.42417\x203.57564L7.3999\x204.55137V1.3334C7.3999\x201.00203\x207.66853\x200.733398\x207.9999\x200.733398Z','shape-flow-chart-collate-icon','shape.type.flow-chart-input-output','DiamondArrow','verticalAlign','includes','sectionBreaks','pictureFill','Tile','onClick','current','textWrap','ShapeTeardropIcon','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-2\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:hover:!univer-bg-gray-800','univer-pt-2','GroupIcon','onAfterCommand','M13.5\x2012.2L15.2\x2013.2','ShapeStar6Icon','shape-decagon-icon','FlowchartPunchedTape','shape.type.quad-arrow','M6\x2018.5L1\x2015V9H6','M2\x206.80176L18\x203.24609V16H2V6.80176Z','univer-flex\x20univer-min-w-0\x20univer-flex-col','RightBracket','updateShapeText','M5.13037\x202.827C4.799\x202.827\x204.53037\x203.09563\x204.53037\x203.427C4.53037\x203.75837\x204.799\x204.027\x205.13037\x204.027H15.1489C15.4803\x204.027\x2015.7489\x203.75837\x2015.7489\x203.427C15.7489\x203.09563\x2015.4803\x202.827\x2015.1489\x202.827H5.13037Z','picture','ShapeMathMinusIcon','M12.4\x2016.4H16.4V12.4','shape-math-minus-icon','getSelfOrHeaderFooterModel','getShapePickerTypeTitle','univer-absolute\x20-univer-top-3\x20univer-left-1/2\x20univer-z-10\x20univer-flex\x20univer-h-3\x20univer-w-16\x20-univer-translate-x-1/2\x20univer-items-center\x20univer-justify-center\x20univer-rounded-t-md\x20univer-border\x20univer-border-b-0\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-[10px]\x20univer-text-gray-500\x20univer-shadow-sm\x20univer-transition-colors\x20hover:univer-bg-gray-50\x20hover:univer-text-gray-700\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-300\x20dark:hover:!univer-bg-gray-800','shape.type.math-minus','UngroupIcon','ShapeDownArrowIcon','shape-math-plus-icon','getRenderById','shape-action-button-return-icon','M10\x204C14.9706\x204\x2019\x208.47715\x2019\x2014H13C13\x2012.067\x2011.6569\x2010.5\x2010\x2010.5C8.34315\x2010.5\x207\x2012.067\x207\x2014H1C1\x208.47715\x205.02944\x204\x2010\x204ZM10\x206C6.82909\x206\x204.23467\x208.78741\x203.37402\x2012H5.5C6.27164\x2010.0381\x207.94982\x208.44434\x2010\x208.44434C12.0502\x208.44434\x2013.8944\x2010.0381\x2014.666\x2012H16.792C15.9313\x208.78741\x2013.1709\x206\x2010\x206Z','shape-cloud-icon','M2\x204H10V16H18','shape.type.diag-stripe','range','M14.0045\x204.4334C14.8881\x204.4334\x2015.6045\x203.71705\x2015.6045\x202.8334C15.6045\x201.94974\x2014.8881\x201.2334\x2014.0045\x201.2334H3.70449C2.82084\x201.2334\x202.10449\x201.94974\x202.10449\x202.8334C2.10449\x203.71705\x202.82084\x204.4334\x203.70449\x204.4334H14.0045ZM14.4045\x202.8334C14.4045\x203.05431\x2014.2254\x203.2334\x2014.0045\x203.2334H3.70449C3.48358\x203.2334\x203.30449\x203.05431\x203.30449\x202.8334C3.30449\x202.61248\x203.48358\x202.4334\x203.70449\x202.4334H14.0045C14.2254\x202.4334\x2014.4045\x202.61249\x2014.4045\x202.8334Z','shape-editor-ui.fill.picture.alignment','shape.type.chord','DEFAULT_STYLES','ShapeCornerIcon','M18.2\x207V1.8H13L18.2\x207Z','shape.type.snip1-rect','isConnectorShape','M8.82985\x201.94185C9.11822\x200.68605\x2010.8819\x200.68605\x2011.1703\x201.94185L11.4309\x203.07644C12.1471\x203.22251\x2012.8251\x203.47598\x2013.4473\x203.81975L14.3676\x203.12044C15.385\x202.34663\x2016.7362\x203.49551\x2016.161\x204.64512L15.6387\x205.68695C16.0832\x206.25141\x2016.4452\x206.8843\x2016.7103\x207.56722L17.8618\x207.63145C19.1323\x207.70113\x2019.4391\x209.46117\x2018.2691\x209.96722L17.2068\x2010.4251C17.1885\x2011.1714\x2017.0591\x2011.8889\x2016.8359\x2012.5635L17.6775\x2013.3615C18.6066\x2014.2424\x2017.7247\x2015.7913\x2016.5073\x2015.4166L15.404\x2015.0764C14.9292\x2015.6206\x2014.3762\x2016.0925\x2013.7619\x2016.4739L13.9016\x2017.6322C14.0544\x2018.9122\x2012.3957\x2019.5235\x2011.7008\x2018.4433L11.0717\x2017.4657C10.722\x2017.5185\x2010.3643\x2017.5466\x2010.0001\x2017.5466V15.1109C10.2421\x2015.1109\x2010.4813\x2015.0918\x2010.7172\x2015.0562L11.6762\x2014.9111L12.506\x2014.3974C12.9153\x2014.1432\x2013.2855\x2013.8282\x2013.6035\x2013.4638L14.2455\x2012.7252L14.5565\x2011.7892C14.7051\x2011.3403\x2014.792\x2010.863\x2014.8042\x2010.3644L14.8277\x209.37258L14.4732\x208.4592C14.2958\x208.00218\x2014.0544\x207.58008\x2013.7596\x207.20568L13.1457\x206.42669L12.2971\x205.95811C11.8833\x205.72954\x2011.4326\x205.56163\x2010.9567\x205.46455L9.9989\x205.26831L9.0423\x205.46455C8.56615\x205.56177\x208.11609\x205.72993\x207.70306\x205.95811L6.85093\x206.42788L6.23941\x207.20568C5.94443\x207.58031\x205.70305\x208.00251\x205.52577\x208.4592L5.17013\x209.37495L5.19478\x2010.3656C5.2071\x2010.8636\x205.29398\x2011.3405\x205.44244\x2011.7892L5.75113\x2012.7228L6.39669\x2013.4638C6.71483\x2013.8284\x207.08386\x2014.1439\x207.49179\x2014.3974L8.3181\x2014.9099L9.28174\x2015.0562C9.51731\x2015.0918\x209.7571\x2015.1109\x2010.0001\x2015.1109V17.5466C9.63551\x2017.5466\x209.27729\x2017.5186\x208.92727\x2017.4657L8.29932\x2018.4433C7.60445\x2019.5235\x205.94567\x2018.9122\x206.09856\x2017.6322L6.23589\x2016.4739C5.62207\x2016.0925\x205.06942\x2015.6204\x204.595\x2015.0764L3.49285\x2015.4166C2.27536\x2015.7914\x201.39241\x2014.2424\x202.32146\x2013.3615L3.16303\x2012.5635C2.94001\x2011.8893\x202.81055\x2011.172\x202.79213\x2010.4263L1.73107\x209.96722C0.560794\x209.46131\x200.867797\x207.70113\x202.13836\x207.63145L3.28862\x207.56722C3.5537\x206.88436\x203.91582\x206.25139\x204.36025\x205.68695L3.83911\x204.64512C3.26373\x203.4954\x204.61511\x202.34634\x205.63258\x203.12044L6.55162\x203.81975C7.17384\x203.47593\x207.85194\x203.22259\x208.56811\x203.07644L8.82985\x201.94185Z','Callout','ShapeFlowChartMagneticDrumIcon','shape.type.irregular-seal1','currentColor','M5.57564\x204.38825C5.80995\x204.62256\x206.18985\x204.62256\x206.42417\x204.38825L7.3999\x203.41251V9.63049C7.3999\x209.96186\x207.66853\x2010.2305\x207.9999\x2010.2305C8.33127\x2010.2305\x208.5999\x209.96186\x208.5999\x209.63049V3.41251L9.57564\x204.38825C9.80995\x204.62256\x2010.1899\x204.62256\x2010.4242\x204.38825C10.6585\x204.15393\x2010.6585\x203.77403\x2010.4242\x203.53972L8.4324\x201.54796C8.32324\x201.43445\x208.16982\x201.36382\x207.9999\x201.36382C7.82998\x201.36382\x207.67655\x201.43446\x207.56739\x201.54797L5.57564\x203.53972C5.34132\x203.77403\x205.34132\x204.15393\x205.57564\x204.38825Z','M1.9999\x205.56641C1.66853\x205.56641\x201.3999\x205.83504\x201.3999\x206.16641C1.3999\x206.49778\x201.66853\x206.76641\x201.9999\x206.76641H13.9999C14.3313\x206.76641\x2014.5999\x206.49778\x2014.5999\x206.16641C14.5999\x205.83504\x2014.3313\x205.56641\x2013.9999\x205.56641H1.9999Z','M5.75\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2017\x2016','shape-square-tabs-icon','centerAngle','ShapeAccentBorderCallout2Icon','Linear','Radial','ShapePieIcon','shape-editor-ui.line.arrowType.arrow','shape.type.snip2-same-rect','M4.46416\x202.03237C4.46416\x201.701\x204.19553\x201.43237\x203.86416\x201.43237C3.53279\x201.43237\x203.26416\x201.701\x203.26416\x202.03237V7.33338C3.26416\x2010.0313\x205.35834\x2012.2667\x207.9999\x2012.2667C10.6415\x2012.2667\x2012.7356\x2010.0313\x2012.7356\x207.33338V2.03237C12.7356\x201.701\x2012.467\x201.43237\x2012.1356\x201.43237C11.8043\x201.43237\x2011.5356\x201.701\x2011.5356\x202.03237V7.33338C11.5356\x209.42194\x209.92656\x2011.0667\x207.9999\x2011.0667C6.07325\x2011.0667\x204.46416\x209.42194\x204.46416\x207.33338V2.03237Z','Large','LightningBolt','merge','M19.0002\x204V15H9.00018V4H19.0002Z','DashDot','clearUndoRedoHistory','@univerjs-pro/shape-editor-ui','other','\x0a\x20\x20\x20\x20\x20\x20!univer-h-6\x20!univer-min-w-0\x20!univer-rounded-md\x20!univer-border-transparent\x0a\x20\x20\x20\x20\x20\x20!univer-bg-transparent\x20!univer-px-1.5\x0a\x20\x20\x20\x20','section','BooleanNumber','M2\x206.4H13.6V18M13.6\x206.4L18\x202M13.6\x206.4V18','url(#shape-dodecagon-icon-frame-clip)','shape-cube-icon','ShapeBentUpArrowIcon','shape-editor-ui.line.title','shape.type.flow-chart-merge','ShapeRound2DiagRectIcon','shape-editor-ui.textEditor.paragraphType.heading3','setTimeout','M2.5\x2010H5.7','AccentBorderCallout3','16iLvtyA','8\x202\x201\x202\x201\x202','shape.type.left-right-ribbon','monospace','shape.type.sun','2324195tfWYyH','OvalArrow','ShapeWedgeEllipseCalloutIcon','M2.06641\x201.9999C2.06641\x201.66853\x202.33504\x201.3999\x202.66641\x201.3999H13.3331C13.6644\x201.3999\x2013.9331\x201.66853\x2013.9331\x201.9999V3.64434C13.9331\x203.97571\x2013.6644\x204.24434\x2013.3331\x204.24434C13.0017\x204.24434\x2012.7331\x203.97571\x2012.7331\x203.64434V2.5999H8.59966V13.3999H10.6665C10.9979\x2013.3999\x2011.2665\x2013.6685\x2011.2665\x2013.9999C11.2665\x2014.3313\x2010.9979\x2014.5999\x2010.6665\x2014.5999L7.99966\x2014.5999L5.33315\x2014.5999C5.00178\x2014.5999\x204.73315\x2014.3313\x204.73315\x2013.9999C4.73315\x2013.6685\x205.00178\x2013.3999\x205.33315\x2013.3999H7.39966V2.5999H3.26641V3.64434C3.26641\x203.97571\x202.99778\x204.24434\x202.66641\x204.24434C2.33504\x204.24434\x202.06641\x203.97571\x202.06641\x203.64434V1.9999Z','fillType','shape.type.snip2-diag-rect','M12.7881\x2012.2627C12.9191\x2011.8697\x2013.3443\x2011.6571\x2013.7373\x2011.7881C14.1303\x2011.9191\x2014.3429\x2012.3443\x2014.2119\x2012.7373C13.8704\x2013.7617\x2013.0365\x2014.3867\x2012.248\x2014.7451C11.4567\x2015.1048\x2010.5998\x2015.25\x2010\x2015.25C9.4002\x2015.25\x208.54332\x2015.1048\x207.75195\x2014.7451C6.96347\x2014.3867\x206.12956\x2013.7617\x205.78808\x2012.7373C5.6571\x2012.3443\x205.86974\x2011.9191\x206.26269\x2011.7881C6.65565\x2011.6571\x207.08093\x2011.8697\x207.21191\x2012.2627C7.37041\x2012.7382\x207.78659\x2013.1133\x208.37304\x2013.3799C8.95661\x2013.6451\x209.59984\x2013.75\x2010\x2013.75C10.4002\x2013.75\x2011.0434\x2013.6451\x2011.627\x2013.3799C12.2134\x2013.1133\x2012.6296\x2012.7382\x2012.7881\x2012.2627Z','ShapeWaveIcon','ActionButtonBackPrevious','M2.61816\x202H17.3818L10\x2016.7637L2.61816\x202Z','shape.type.down-arrow-callout','Round1Rect','shape.type.bevel','481113ixNjhU','shape-editor-ui.textEditor.paragraphType.checkList','shape.type.wave','shape-wedge-ellipse-callout-icon','shape-ribbon2-icon_clip0_2_47','shape-text-editor-content','shape-flow-chart-input-output-icon','M8\x203H12V17H8','shape-no-smoking-icon','M1\x2010.001L10\x2018.001V14H19V6H10V2.00098L1\x2010.001ZM3.40002\x2010.001L8.4\x205.55651V7.6H17.4V12.4H8.4V14.4455L3.40002\x2010.001Z','SetInlineFormatFontSizeCommand','ShapeArrowSizeEnum','TRUE','M2\x203H10.6L18.5\x2010L10.6\x2017H2V3Z','text-type-icon','M1.9999\x205.56641C1.66853\x205.56641\x201.3999\x205.83504\x201.3999\x206.16641C1.3999\x206.49778\x201.66853\x206.76641\x201.9999\x206.76641H11.3332C11.6646\x206.76641\x2011.9332\x206.49778\x2011.9332\x206.16641C11.9332\x205.83504\x2011.6646\x205.56641\x2011.3332\x205.56641H1.9999Z','subscribeEvent','shape-floating-toolbar-collapsed','shape-gear6-icon','UniverInstanceType','shape-editor-ui.line.dashType.title','M4.5\x2016.5V12V7H15.5V12V16.5H4.5ZM14\x208.5H6V15H14V8.5Z','url(#shape-cloud-icon-clip)','Digit8','Star12','shape.type.cloud-callout','shape-editor-ui.line.transparency','spaceAbove','M14\x204L13\x204L13\x205L15\x205L15\x207L16\x207L16\x205.8037L20\x2010L16\x2014.1963L16\x2013L15\x2013L15\x2015L13\x2015L13\x2016L14\x2016L9.8037\x2020L5.6074\x2016L7\x2016L7\x2015L5\x2015L5\x2013L4\x2013L4\x2014.1963L0\x2010L4\x205.8037L4\x207L5\x207L5\x205L7\x205L7\x204L5.6074\x204L9.8037\x200ZM8.6\x203.3569L8.6\x206.6L6.6\x206.6L6.6\x208.6L3.5445\x208.6L2.2101\x2010L3.5445\x2011.4L6.6\x2011.4L6.6\x2013.4L8.6\x2013.4L8.6\x2016.6429L9.8038\x2017.7911L11.4\x2016.2679L11.4\x2013.4L13.4\x2013.4L13.4\x2011.4L16.4554\x2011.4L17.7912\x2010L16.4554\x208.6L13.4\x208.6L13.4\x206.6L11.4\x206.6L11.4\x203.732L9.8038\x202.2101Z','JUSTIFIED','univer-pb-2','shape-dodecagon-icon-frame-clip','M9.2\x204.6V8C9.2\x209.105\x2010.095\x2010\x2011.2\x2010H14','CheckListCommand','DocSelectAllCommand','pageMarginTop','editorHeight','shape-curved-connector3-arrow2-icon','univer-block\x20univer-h-[100px]\x20univer-w-[100px]\x20univer-object-cover','M1.09985\x203.64443C1.09985\x203.31306\x201.36848\x203.04443\x201.69985\x203.04443H14.2999C14.6312\x203.04443\x2014.8999\x203.31306\x2014.8999\x203.64443C14.8999\x203.9758\x2014.6312\x204.24443\x2014.2999\x204.24443H1.69985C1.36848\x204.24443\x201.09985\x203.9758\x201.09985\x203.64443Z','M10\x2019.001L2\x2010.001H6.00098V1.00098L14.001\x201.00098V10.001H18L10\x2019.001Z','useKeyboardEvent','wrapStrategy','0\x200\x2020\x2020','@univerjs/engine-render','radial','jsxs','M12.5894\x206.5C13.1423\x206.5\x2013.6057\x206.68269\x2013.9634\x207.06731C14.313\x207.45192\x2014.4919\x207.94231\x2014.4919\x208.54808C14.4919\x209.14423\x2014.2967\x209.68269\x2013.9228\x2010.1731C13.6951\x2010.4519\x2013.2967\x2010.8173\x2012.7195\x2011.2788C12.0935\x2011.7692\x2011.7195\x2012.2019\x2011.5976\x2012.5769H14.0385C14.2934\x2012.5769\x2014.5\x2012.7836\x2014.5\x2013.0385C14.5\x2013.2934\x2014.2934\x2013.5\x2014.0385\x2013.5H11.1723C10.801\x2013.5\x2010.4905\x2013.1957\x2010.5657\x2012.8321C10.651\x2012.4201\x2010.8199\x2012.0443\x2011.0772\x2011.7019C11.2886\x2011.4038\x2011.7276\x2010.9904\x2012.3862\x2010.4519C12.7764\x2010.125\x2013.0528\x209.86538\x2013.2154\x209.66346C13.4756\x209.31731\x2013.6138\x208.94231\x2013.6138\x208.53846C13.6138\x208.15385\x2013.5244\x207.86538\x2013.3455\x207.67308C13.1667\x207.48077\x2012.8984\x207.38462\x2012.5569\x207.38462C12.1911\x207.38462\x2011.9146\x207.52885\x2011.7276\x207.82692C11.5869\x208.03503\x2011.4969\x208.3082\x2011.4516\x208.65365C11.4201\x208.89346\x2011.2263\x209.08654\x2010.9844\x209.08654C10.7356\x209.08654\x2010.5314\x208.88275\x2010.5598\x208.63557C10.6243\x208.07296\x2010.8022\x207.6079\x2011.0935\x207.24038C11.4675\x206.74038\x2011.9715\x206.5\x2012.5894\x206.5Z','M2\x206H18M2\x2014H18','shape.type.rect','engine','M10\x203V17','Pie','lineStrokeType','M14\x206H19V14H14V19H6V14H1V6H6V1H14V6ZM7.6\x207.6H2.6V12.4H7.6V17.4H12.4V12.4H17.4V7.6H12.4V2.6H7.6V7.6Z','shape-ribbon-icon_clip0_2_47','shape-editor-ui.fill.picture.align.tl','shape-editor-ui.toolbar.alignJustify','@univerjs/docs-ui','onSavingEditorData$','M2\x203.41406V18H16.5859L2\x203.41406Z','Angular','circle','shape.type.round-rect','onForward','M6.00013\x203V16','M9.44444\x2012.3158H10C10.4296\x2012.3158\x2010.7778\x2011.9859\x2010.7778\x2011.5789H12.3333C12.3333\x2012.7998\x2011.2887\x2013.7895\x2010\x2013.7895H9.44444C8.15578\x2013.7895\x207.11111\x2012.7998\x207.11111\x2011.5789V9.63158H7.0549L7.11111\x209.5625V6.94737H5.55556V11.5789H4V5.47368L8.66667\x205.47368V11.5789C8.66667\x2011.9859\x209.01489\x2012.3158\x209.44444\x2012.3158ZM8.66667\x2014.5263H10.7778C12.496\x2014.5263\x2013.8889\x2013.2067\x2013.8889\x2011.5789V7.68421H14.1198L13.3253\x206.53649L12.3333\x207.75329V11.5789H10.7778V9.15789H9.22222L13.4278\x204L17\x209.15789H15.4444V11.5789C15.4444\x2014.0206\x2013.3551\x2016\x2010.7778\x2016H8.66667C6.08934\x2016\x204\x2014.0206\x204\x2011.5789H5.55556C5.55556\x2013.2067\x206.94845\x2014.5263\x208.66667\x2014.5263Z','shape-curved-connector3-arrow1-icon','1623321AQtReZ','pageHeight','userSpaceOnUse','shape-double-wave-icon','M12.1543\x201.00391C13.7394\x201.08421\x2015\x202.39489\x2015\x204V5.30762C14.5832\x205.14723\x2014.149\x205.02276\x2013.7002\x204.93848V4C13.7002\x203.06112\x2012.9389\x202.2998\x2012\x202.2998H4C3.06112\x202.2998\x202.2998\x203.06112\x202.2998\x204V12C2.2998\x2012.9389\x203.06112\x2013.7002\x204\x2013.7002H4.93848C5.02276\x2014.149\x205.14723\x2014.5832\x205.30762\x2015H4C2.39489\x2015\x201.08421\x2013.7394\x201.00391\x2012.1543L1\x2012V4C1\x202.34315\x202.34315\x201\x204\x201H12L12.1543\x201.00391Z','shape-editor-ui.toolbar.collapseShapeToolbar','shape.type.left-right-arrow','shape-editor-ui.toolbar.textColor','shape-editor-ui.deleteShape','shape.type.bent-up-arrow','shape-snip2-diag-rect-icon','SetInlineFormatStrikethroughCommand','RightBrace','M3.5\x206.5C2.49588\x206.5\x200.5\x207\x200.5\x207L2.5\x2011.5L0.5\x2016.5C0.5\x2016.5\x202.42459\x2016\x203.42871\x2016L3.5\x2014.5C3.36588\x2014.5\x203.09687\x2014.4864\x202.96191\x2014.5L3.8291\x2011.4346L2.59668\x208.1973C2.72342\x208.1596\x202.84589\x208.1243\x202.96191\x208.0947C3.29605\x208.0097\x203.43669\x208.0001\x203.42871\x208H4V14.5H3.5L3.42871\x2016H5.5V11V6.5H3.5Z','shape-flow-chart-connector-icon','isItalic','documentStyle','M10\x201.41406L18.4854\x209.89949L10\x2018.3848L1.51465\x209.89949L10\x201.41406Z','M19\x204V15H9V4H19Z','shape-editor-ui.toolbar.subscript','shape-ribbon2-icon','shape.type.home-plate','M8.6\x202H10C14.4\x202\x2018\x205.6\x2018\x2010C18\x2014.4\x2014.4\x2018\x2010\x2018H8.6L2.25\x2010L8.6\x202Z','replace','@univerjs/design','shape-flow-chart-sort-icon','shape-flow-chart-manual-input-icon','ShapeIrregularSeal1Icon','univer-w-auto','univer-flex\x20univer-h-6\x20univer-w-6\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','shape-editor-ui.toolbar.bold','shape.type.ellipse','UniverIcon','M1\x2019L1\x208L8\x201L19\x201ZM2.6\x208.6624L2.6\x2015.1376L15.1376\x202.6L8.6634\x202.6Z','UpArrow','url(#shape-heptagon-icon-frame-clip)','ShapeChartStarIcon','shape-action-button-sound-icon','shape.type.math-plus','shape.type.corner-tabs','UniverProShapeEditorUi','RichTextEditingMutation','clsx','FlowchartProcess','shape-corner-icon','shape-bent-connector3-arrow2-icon','url(#shape-decagon-icon-frame-clip)','M1.00013\x2017L6.00013\x209','DocSkeletonManagerService','1314891GpVqxm','shape-editor-ui.textEditor.paragraphType.heading2','shape.type.flow-chart-magnetic-disk','offset','onShapeClick','asc','shape-flow-chart-magnetic-drum-icon','DELETE','paragraphStyle','shape-text-editor-position-wrapper','univer-flex\x20univer-flex-col\x20univer-gap-3','Select','univer-flex\x20univer-h-7\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-xs\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','M11.8223\x206C12.4524\x206\x2012.9806\x206.20879\x2013.3884\x206.64835C13.7869\x207.08791\x2013.9907\x207.64835\x2013.9907\x208.34066C13.9907\x209.02198\x2013.7683\x209.63736\x2013.342\x2010.1978C13.0826\x2010.5165\x2012.6285\x2010.9341\x2011.9706\x2011.4615C11.257\x2012.022\x2010.8307\x2012.5165\x2010.6917\x2012.9451H13.4725C13.7638\x2012.9451\x2014\x2013.1812\x2014\x2013.4725C14\x2013.7638\x2013.7638\x2014\x2013.4725\x2014H9.9407C9.66456\x2014\x209.43657\x2013.7752\x209.47159\x2013.5013C9.54522\x2012.9254\x209.7513\x2012.4084\x2010.0986\x2011.9451C10.3396\x2011.6044\x2010.84\x2011.1319\x2011.5906\x2010.5165C12.0354\x2010.1429\x2012.3505\x209.84615\x2012.5358\x209.61538C12.8324\x209.21978\x2012.9899\x208.79121\x2012.9899\x208.32967C12.9899\x207.89011\x2012.888\x207.56044\x2012.6841\x207.34066C12.4802\x207.12088\x2012.1744\x207.01099\x2011.7852\x207.01099C11.3682\x207.01099\x2011.0531\x207.17582\x2010.84\x207.51648C10.6794\x207.75458\x2010.5768\x208.06718\x2010.5252\x208.46257C10.4895\x208.73596\x2010.2685\x208.95604\x209.99282\x208.95604C9.70925\x208.95604\x209.47653\x208.72378\x209.50866\x208.44204C9.58205\x207.79843\x209.78489\x207.26647\x2010.1172\x206.84615C10.5435\x206.27473\x2011.118\x206\x2011.8223\x206Z','LongDash','getActiveTextRange','shape-editor-ui.line.arrowSize.medium','ShapeStar8Icon','Pentagon','shape.type.curved-left-arrow','shape-editor-ui.textWrap.inline','h4-icon','collapsed','M1.00018\x2017L2.50018\x209H6.00018','OrderListCommand','shape.type.pie','shape-left-right-arrow-icon','shapeTypeOptions','ShapeMathNotEqualIcon','shape-editor-ui.line.arrowSize.large','addImageSourceCache','M17\x2011L20\x2016L14\x2016L14\x206L20\x206L17\x2011ZM15.5\x2014.5L17.5\x2014.5L15.5\x2011.5L15.5\x2014.5ZM15.5\x2010.5L17.5\x207.5L15.5\x207.5L15.5\x2010.5Z','shape.type.rect-textbox-horizontal','abd','AlignCenterCommand','shape.type.action-button-blank','M10.5031\x200.926758C11.9748\x200.926758\x2013.1679\x202.12013\x2013.1681\x203.5918V6.41602C13.1679\x206.78314\x2012.8702\x207.08105\x2012.5031\x207.08105C12.1361\x207.08084\x2011.8382\x206.783\x2011.838\x206.41602V3.5918C11.8378\x202.85467\x2011.2402\x202.25684\x2010.5031\x202.25684H4.0929C3.35572\x202.25684\x202.75813\x202.85467\x202.75793\x203.5918V12.085C2.75818\x2012.8221\x203.35574\x2013.4199\x204.0929\x2013.4199H6.18958L6.32434\x2013.4326C6.62712\x2013.4947\x206.85444\x2013.7639\x206.85461\x2014.085C6.8544\x2014.406\x206.62705\x2014.6742\x206.32434\x2014.7363L6.18958\x2014.75H4.0929C2.62121\x2014.75\x201.4281\x2013.5566\x201.42786\x2012.085V3.5918C1.42806\x202.12013\x202.62118\x200.926758\x204.0929\x200.926758H10.5031Z','left-justifying-icon','pages','M1.9999\x2012.9004C1.66853\x2012.9004\x201.3999\x2013.169\x201.3999\x2013.5004C1.3999\x2013.8318\x201.66853\x2014.1004\x201.9999\x2014.1004H13.9999C14.3313\x2014.1004\x2014.5999\x2013.8318\x2014.5999\x2013.5004C14.5999\x2013.169\x2014.3313\x2012.9004\x2013.9999\x2012.9004H1.9999Z','combobox','shape-star4-icon','ShapeCurvedUpArrowIcon','shape-cloud-icon-clip','ShapeActionButtonHelpIcon','diamond','shape-swoosh-arrow-icon','shape-math-divide-icon','univer-w-28\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','Moon','univer-w-12','H4Icon','M7\x2013L6\x2013L6\x2014.3301L0\x2010L6\x205.6699L6\x207L7\x207L7\x201L13\x201L13\x207L14\x207L14\x205.6699L20\x2010L14\x2014.3301L14\x2013L13\x2013L13\x2019L7\x2019ZM8.6\x208.6L4.6735\x208.6L2.7334\x2010L4.6735\x2011.4L8.6\x2011.4L8.6\x2017.4L11.4\x2017.4L11.4\x2011.4L15.3266\x2011.4L17.2652\x2010L15.3266\x208.6L11.4\x208.6L11.4\x202.6L8.6\x202.6Z','M14.0999\x206.33879C14.0999\x206.09377\x2013.9509\x205.87336\x2013.7236\x205.78203C13.4962\x205.6907\x2013.2362\x205.74679\x2013.0667\x205.92373L11.4753\x207.58486C11.2461\x207.82415\x2011.2542\x208.20396\x2011.4935\x208.43319C11.7328\x208.66243\x2012.1126\x208.65427\x2012.3419\x208.41499L12.8999\x207.83245V13.3333C12.8999\x2013.6646\x2013.1686\x2013.9333\x2013.4999\x2013.9333C13.8313\x2013.9333\x2014.0999\x2013.6646\x2014.0999\x2013.3333V6.33879Z','textFill','AccentCallout2','LineInv','shape.type.bent-connector3-arrow2','none','noFill','M6.90365\x206.33995C7.03232\x206.22121\x207.19758\x206.146\x207.37267\x206.146C7.71913\x206.146\x208\x206.42686\x208\x206.77333V13.4005C8\x2013.7316\x207.73159\x2014\x207.4005\x2014C7.06941\x2014\x206.801\x2013.7316\x206.801\x2013.4005V7.587C6.48979\x207.88374\x206.12143\x208.12809\x205.69906\x208.32007C5.35797\x208.4751\x204.997\x208.20342\x204.997\x207.82875C4.997\x207.5703\x205.17444\x207.34822\x205.41575\x207.2557C5.63756\x207.17064\x205.86665\x207.06108\x206.108\x206.927C6.41215\x206.74113\x206.67737\x206.54877\x206.90365\x206.33995Z','shape-circular-arrow-icon','RoundDot','M11.9572\x208.51465C12.5471\x208.51471\x2013.0936\x208.82742\x2013.3927\x209.33594L14.3419\x2010.9502C14.6291\x2011.4386\x2014.6479\x2012.037\x2014.3966\x2012.5391L14.3419\x2012.6377L13.3927\x2014.252C13.0936\x2014.7605\x2012.5471\x2015.0732\x2011.9572\x2015.0732H10.0255C9.50941\x2015.0731\x209.02688\x2014.8339\x208.71399\x2014.4336L8.59094\x2014.252L7.64075\x2012.6377C7.33466\x2012.1169\x207.33466\x2011.471\x207.64075\x2010.9502L8.59094\x209.33594L8.71399\x209.1543C9.02688\x208.75387\x209.50935\x208.51477\x2010.0255\x208.51465H11.9572ZM10.0255\x209.84473C9.93678\x209.84483\x209.85287\x209.87988\x209.79114\x209.94043L9.73743\x2010.0098L8.78723\x2011.624C8.72565\x2011.7288\x208.72564\x2011.8591\x208.78723\x2011.9639L9.73743\x2013.5781L9.79114\x2013.6475C9.85286\x2013.7079\x209.93684\x2013.7431\x2010.0255\x2013.7432H11.9572C12.0757\x2013.7431\x2012.186\x2013.6803\x2012.2462\x2013.5781L13.1954\x2011.9639L13.2306\x2011.8809C13.2536\x2011.7953\x2013.2415\x2011.7025\x2013.1954\x2011.624L12.2462\x2010.0098C12.186\x209.90756\x2012.0758\x209.84479\x2011.9572\x209.84473H10.0255Z','shape.type.accent-callout2','M20\x2011L11.75\x2019.6602V15.9932C9.10474\x2015.8629\x207\x2013.6776\x207\x2011V6.36328C7.00035\x206.20808\x207.17349\x206.11599\x207.30273\x206.20215L8.33594\x206.89062C9.35155\x207.56769\x2010.5335\x207.94807\x2011.75\x207.99414V2.33984L20\x2011ZM9\x2011C9\x2012.6056\x2010.2627\x2013.917\x2011.8486\x2013.9951L13.75\x2014.0889V14.6602L17.2363\x2011L13.75\x207.33887V10.0713L11.6738\x209.99316C10.7566\x209.95838\x209.85452\x209.77558\x209\x209.45801V11Z','ShapeActionButtonHomeIcon','NotchedRightArrow','shape-editor-ui.line.joinType.miter','MathDivide','shape.type.can','Miter','shape-cloud-callout-icon-clip','shape.type.action-button-end','sessionKey','univer-mb-1\x20univer-rounded\x20univer-bg-gray-100\x20univer-px-3\x20univer-py-1.5\x20univer-text-xs\x20univer-font-medium\x20univer-text-gray-700\x20dark:!univer-bg-gray-800\x20dark:!univer-text-gray-200','vertical','M2\x206.4L6.4\x202H18V13.6L13.6\x2018H2V6.4Z','Heart','ShapeMoonIcon','COMMA','FlowChartInputOutput','group','shape-wedge-round-rect-callout-icon','M1.41943\x204H18.5806L14.2949\x2016H5.70508L1.41943\x204Z','MIDDLE','univer-flex\x20univer-h-6\x20univer-min-w-9\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','domX','catch','univer-flex\x20univer-items-center\x20univer-justify-between','M10.3014\x201.70389C9.85268\x200.479568\x208.12109\x200.479557\x207.67238\x201.70389L4.72235\x209.75326C4.60832\x2010.0644\x204.76811\x2010.4091\x205.07924\x2010.5231C5.39038\x2010.6371\x205.73504\x2010.4773\x205.84907\x2010.1662L6.99975\x207.02646C7.03588\x207.03324\x207.07314\x207.03679\x207.11123\x207.03679H10.9778L12.1247\x2010.1662C12.2387\x2010.4773\x2012.5834\x2010.6371\x2012.8945\x2010.5231C13.2057\x2010.4091\x2013.3654\x2010.0644\x2013.2514\x209.75326L10.3014\x201.70389ZM10.538\x205.83679L9.17467\x202.11682C9.11057\x201.94192\x208.8632\x201.94192\x208.7991\x202.11682L7.43576\x205.83679H10.538Z','isBold','M2\x204.5C5\x205.35\x208\x204.95\x2010.5\x203.3C12.75\x201.8\x2015.25\x201.35\x2018\x202V13.8C15.3\x2013.25\x2012.85\x2013.95\x2011\x2015.5C8.35\x2017.4\x205.35\x2017.35\x202\x2015.3V4.5Z','content','ShapeFlowChartOffpageConnectorIcon','shape.type.curved-down-arrow','M7\x207.935C7\x207.275\x207.231\x206.635\x207.654\x206.128L7.836\x205.91C8.745\x204.819\x2010.374\x204.69\x2011.442\x205.625C12.542\x206.587\x2012.598\x208.281\x2011.564\x209.315L10\x2010.4V12.7','shape-editor-ui.toolbar.alignLeft','ShapePlaqueTabsIcon','FlowchartPredefinedProcess','M17.0711\x202.9289L2.9289\x2017.0711','shape-flow-chart-document-icon','ShapeFlowChartPreparationIcon','closest','shape-ellipse-icon','abs','M4\x204H10V16H16','LocaleService','width','shape-editor-ui.toolbar.strikethrough','M7.58641\x206.33811C7.69108\x206.22386\x207.83569\x206.15094\x207.99065\x206.15094C8.26885\x206.15094\x208.49438\x206.37647\x208.49438\x206.65467V13.3511C8.49438\x2013.6261\x208.27143\x2013.8491\x207.99642\x2013.8491C7.7214\x2013.8491\x207.49845\x2013.6261\x207.49845\x2013.3511V7.56334C7.26654\x207.82427\x206.99641\x208.04389\x206.68997\x208.22217C6.36833\x208.4093\x205.99999\x208.14751\x205.99999\x207.77541C5.99999\x207.53458\x206.16061\x207.32594\x206.37895\x207.22433C6.55349\x207.1431\x206.73362\x207.04047\x206.92282\x206.91644C7.17667\x206.73339\x207.39786\x206.54392\x207.58641\x206.33811Z','M0\x200H20V20H0z','univer-min-w-32\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','shape-editor-ui.openPanel','trim','0\x200\x2048\x2020','shape-non-isosceles-trapezoid-icon','dataStream','shape.type.bent-connector3','univer-gap-3','FillStyleTabsEditor','use','ShapeLeftBraceIcon','M2.8\x204.8H17.2V15.2H2.8z','UniverDrawing','#111827','univer-flex\x20univer-flex-col\x20univer-gap-2\x20univer-border-l-2\x20univer-border-l-gray-200\x20univer-pl-3\x20dark:!univer-border-l-gray-600','ShapeCurvedRightArrowIcon','M4.66665\x205.56641C4.33528\x205.56641\x204.06665\x205.83504\x204.06665\x206.16641C4.06665\x206.49778\x204.33528\x206.76641\x204.66665\x206.76641H14C14.3314\x206.76641\x2014.6\x206.49778\x2014.6\x206.16641C14.6\x205.83504\x2014.3314\x205.56641\x2014\x205.56641H4.66665Z','IrregularSeal2','shape.type.round2-diag-rect','univer-mx-auto\x20univer-mt-2\x20univer-h-1\x20univer-w-1/2\x20univer-rounded-md','lineJoinType','colorChannel1','pluginName','ShapeLeftCircularArrowIcon','EquationShape','gradientType','ShapeLeftRightRibbonIcon','move-down-icon','shape.type.bent-connector3-arrow1','shape-text-editor','M3\x2011L0\x206L6\x206L6\x2016L-1.74846e-06\x2016L3\x2011ZM4.5\x207.5L2.5\x207.5L4.5\x2010.5L4.5\x207.5ZM4.5\x2011.5L2.5\x2014.5L4.5\x2014.5L4.5\x2011.5Z','updateHostHeight','Trapezoid','filter','frontLabel','AccentCallout1','M5.8\x2014.2V5.8H14.2','solidFill','applyShapeTextEditorCanvasTransparency','HorizontallyIcon','univer-w-28','ShapeRoundRectIcon','shape-editor-ui.line.endArrowSize','shape-left-arrow-callout-icon','shape-rect-textbox-horizontal-icon','ShapeLeftRightUpArrowIcon','ShapeRibbon2Icon','Decagon','toPrimitive','Rect','topmost-icon','univer-w-[260px]\x20univer-rounded-lg\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-bg-gray-900','shape-editor-ui.line.sketchType.freehand','IImageIoService','M15.083\x207L13\x207L13\x2010.9688L14\x2010.9688L14\x209L20\x2014L14\x2019L14\x2016.9688L6\x2016.9688L6\x2019L0\x2014L6\x209L6\x2010.9688L7\x2010.9688L7\x207L5.083\x207L10.083\x201ZM8.6\x2012.5688L4.2166\x2012.5688L2.498\x2014L4.1414\x2015.3688L15.8588\x2015.3688L17.5007\x2014L15.7835\x2012.5688L11.4\x2012.5688L11.4\x205.0788L10.083\x203.4982L8.6\x205.278Z','ctr','M10.1007\x203.92188C10.4034\x203.98418\x2010.631\x204.25215\x2010.631\x204.57324C10.6309\x204.8943\x2010.4033\x205.16233\x2010.1007\x205.22461L9.96594\x205.23828H4.73547C4.36824\x205.23828\x204.0705\x204.94046\x204.07043\x204.57324C4.07043\x204.20597\x204.3682\x203.9082\x204.73547\x203.9082H9.96594L10.1007\x203.92188Z','univer-flex\x20univer-h-8\x20univer-w-8\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','shape-editor-ui.line.dashType.dash','univer-mr-5\x20univer-cursor-default\x20univer-py-4\x20univer-text-center\x20univer-text-sm\x20univer-font-semibold','flowchart','M6.5\x205H8.5C9.0523\x205\x2010.0661\x205.44772\x2010.0661\x206H11.5661C11.5661\x204.34315\x2010.1569\x203.60304\x208.5\x203.60304H6.5C4.84315\x203.60304\x204\x204.34315\x204\x206V10V10.0938V12.7969V15.5H1.5V6H0V17H5.5V6C5.5\x205.44771\x205.94771\x205\x206.5\x205ZM5.5\x201.60304H9.5C11.7091\x201.60304\x2014\x203.79086\x2014\x206V14V14.603L12.8965\x2016.3597L11.5661\x2014.603V10.0201V6H10.0661V13.103H8.06612L12.8965\x2018.603L17.5\x2013.103H15.5V6C15.5\x202.68629\x2012.8137\x200\x209.5\x200H5.5C2.18629\x200\x200\x202.68629\x200\x206H1.5C1.5\x203.79086\x203.29086\x201.60304\x205.5\x201.60304Z','defIds','univer-hidden','icon','style','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','top','M0\x206H1.6V14H0V6Z','shape-callout2-icon','shapeText','M9.92206\x202.45064C9.98634\x202.12556\x209.77492\x201.80992\x209.44984\x201.74564C9.12477\x201.68136\x208.80913\x201.89278\x208.74485\x202.21785L6.41152\x2014.0179C6.34724\x2014.3429\x206.55865\x2014.6586\x206.88373\x2014.7228C7.20881\x2014.7871\x207.52444\x2014.5757\x207.58872\x2014.2506L9.92206\x202.45064Z','bottom-icon','shape-frame-icon','shape.type.swoosh-arrow','ShapeHorizontalScrollIcon','shapeId','ShapeFlowChartDocumentIcon','StripedRightArrow','ShapeQuadArrowIcon','assign','React','visible','M1.8\x201.8L5.8\x205.8M18.2\x201.8L14.2\x205.8M18.2\x2018.2L14.2\x2014.2M1.8\x2018.2L5.8\x2014.2','IConfigService','direction','NonIsoscelesTrapezoid','DownArrow','LeftRightArrow','M13.5\x207.8L15.2\x206.8','univer-pointer-events-none\x20univer-absolute\x20univer-bottom-full\x20univer-left-0\x20univer-mb-1\x20univer-hidden\x20univer-overflow-hidden\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-shadow-md\x20group-hover:univer-block\x20dark:!univer-border-gray-600\x20dark:!univer-bg-gray-800','0\x200\x2018\x2019','0\x200\x2019\x2018','SolidFill','M1.00014\x2017L6.00014\x209','shapeKey','_config','ShapeFlowChartSummingJunctionIcon','shape.type.uturn-arrow','ShapeLeftRightArrowCalloutIcon','ShapeGear6Icon','Transparency','shape-editor-ui.line.arrowType.diamondArrow','univer-relative\x20univer-size-full\x20univer-overflow-visible','useMemo','shape.type.pie-wedge','calcShapePosition','univer.shape-editor-ui.floating-toolbar.collapsed','shape.type.flow-chart-offline-storage','M2\x207V12C2\x2014.2\x205.6\x2016.5\x2010\x2016.5C14.4\x2016.5\x2018\x2014.2\x2018\x2012V7','disposable','M6.12398\x208.30171C6.35829\x208.0674\x206.73819\x208.0674\x206.97251\x208.30171L8.00007\x209.32928L9.02764\x208.30171C9.26195\x208.0674\x209.64185\x208.0674\x209.87617\x208.30171C10.1105\x208.53603\x2010.1105\x208.91593\x209.87617\x209.15024L8.8486\x2010.1778L9.87617\x2011.2054C10.1105\x2011.4397\x2010.1105\x2011.8196\x209.87617\x2012.0539C9.64185\x2012.2882\x209.26195\x2012.2882\x209.02764\x2012.0539L8.00007\x2011.0263L6.97251\x2012.0539C6.73819\x2012.2882\x206.35829\x2012.2882\x206.12398\x2012.0539C5.88966\x2011.8196\x205.88966\x2011.4397\x206.12398\x2011.2054L7.15154\x2010.1778L6.12398\x209.15024C5.88966\x208.91593\x205.88966\x208.53603\x206.12398\x208.30171Z','ShapePickerPanel','Tools','LeftRightCircularArrow','SetInlineFormatFontFamilyCommand','M4.7061\x2011L3.5\x2011L3.5\x206L5\x206L5\x205L14\x205L14\x206L14.5879\x206L15.2939\x205L16\x205L16\x2013L15.2939\x2013L14.5879\x2012L14\x2012L14\x2015L4.7061\x2015ZM6.306\x2013.4L12.4\x2013.4L12.4\x2010.4L14.4\x2010.4L14.4\x207.6L12.4\x207.6L12.4\x206.6L6.6\x206.6L6.6\x207.6L5.1\x207.6L5.1\x209.4L6.306\x209.4Z','1\x203','ShapeTextEditor','shape.type.notched-right-arrow','ActionButtonReturn','forwardLabel','shape-pie-wedge-icon','ShapeActionButtonInformationIcon','shape-editor-ui.line.cornerRadius','shape-folder-corner-icon_shape-folder-corner-icon-clip-0','shape-snip-round-rect-icon','M1.6543\x2013.1665C1.6543\x2012.2828\x202.37064\x2011.5665\x203.2543\x2011.5665H13.5543C14.438\x2011.5665\x2015.1543\x2012.2828\x2015.1543\x2013.1665C15.1543\x2014.0502\x2014.438\x2014.7665\x2013.5543\x2014.7665H3.2543C2.37064\x2014.7665\x201.6543\x2014.0502\x201.6543\x2013.1665ZM3.2543\x2012.7665C3.03338\x2012.7665\x202.8543\x2012.9456\x202.8543\x2013.1665C2.8543\x2013.3874\x203.03338\x2013.5665\x203.2543\x2013.5665H13.5543C13.7752\x2013.5665\x2013.9543\x2013.3874\x2013.9543\x2013.1665C13.9543\x2012.9456\x2013.7752\x2012.7665\x2013.5543\x2012.7665H3.2543Z','LongDashDotDot','shape-sun-icon','superscript-icon','LeftArrow','M1.8\x2013.8H6.2V18.2H1.8z','M10\x2018C7.62453\x2018\x204\x2016\x204\x2016V7C4\x207\x207.62453\x208.5\x2010\x208.5C12.3755\x208.5\x2016\x207\x2016\x207V16C16\x2016\x2012.3755\x2018\x2010\x2018ZM10.0091\x2016.833C10.7688\x2016.833\x2011.8187\x2016.491\x2013\x2016C13.3189\x2015.8675\x2014.2389\x2015.5207\x2014.5\x2015.3986V9C13.333\x209.4437\x2011.3464\x2010\x2010\x2010C8.65361\x2010\x206.66698\x209.4437\x205.5\x209V15.2646C5.76114\x2015.3867\x206.68111\x2015.8675\x207\x2016C8.18134\x2016.491\x209.24939\x2016.833\x2010.0091\x2016.833Z','shape.type.horizontal-scroll','unsubscribe','_docSelectionManagerService','shape.type.action-button-forward-next','univer-flex\x20univer-cursor-pointer\x20univer-items-center\x20univer-gap-1.5\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','M2.20012\x2013.6905C2.65851\x2013.6905\x203.03012\x2013.3189\x203.03012\x2012.8605C3.03012\x2012.4021\x202.65851\x2012.0305\x202.20012\x2012.0305C1.74172\x2012.0305\x201.37012\x2012.4021\x201.37012\x2012.8605C1.37012\x2013.3189\x201.74172\x2013.6905\x202.20012\x2013.6905Z','M13.9229\x203.20605L17.8452\x2010L13.9229\x2016.7939H6.07764L2.15527\x2010L6.07764\x203.20605H13.9229Z','ShapeLeftArrowIcon','left','M4.53027\x207.4C4.1989\x207.4\x203.93027\x207.66863\x203.93027\x208C3.93027\x208.33137\x204.1989\x208.6\x204.53027\x208.6H14.5488C14.8802\x208.6\x2015.1488\x208.33137\x2015.1488\x208C15.1488\x207.66863\x2014.8802\x207.4\x2014.5488\x207.4H4.53027Z','shape.type.ellipse-ribbon2','M1.25\x2013.036C1.25\x2012.1523\x201.96634\x2011.436\x202.85\x2011.436H13.15C14.0337\x2011.436\x2014.75\x2012.1523\x2014.75\x2013.036C14.75\x2013.9196\x2014.0337\x2014.636\x2013.15\x2014.636H2.85C1.96635\x2014.636\x201.25\x2013.9196\x201.25\x2013.036ZM2.85\x2012.636C2.62909\x2012.636\x202.45\x2012.8151\x202.45\x2013.036C2.45\x2013.2569\x202.62909\x2013.436\x202.85\x2013.436H13.15C13.3709\x2013.436\x2013.55\x2013.2569\x2013.55\x2013.036C13.55\x2012.8151\x2013.3709\x2012.636\x2013.15\x2012.636H2.85Z','M2.5\x204.5H8.2','ActionButtonEnd','univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','preventDefault','shape-flow-chart-terminator-icon','M12.3606\x207.2578L20\x207.2578L13.8197\x2011.7432L16.1803\x2019L10\x2014.5146L3.8197\x2019L6.1803\x2011.7432L0\x207.2578L7.6394\x207.2578L10\x200ZM8.8767\x208.9584L5.2405\x208.9584L8.1824\x2011.093L7.0591\x2014.545L9.9999\x2012.4127L12.9394\x2014.545L11.8175\x2011.0931L14.7595\x208.9584L11.1232\x208.9584L10\x205.5051Z','M6.0001\x2015.3138L6.0001\x203.9999L15\x2010ZM7.5999\x206.9883L7.5999\x2012.5106L11.9926\x209.917Z','textRuns','M1\x208H13V15C11.25\x2014.8\x209.6\x2015.25\x208.25\x2016.35L7.6\x2016.85C5.95\x2018.15\x203.65\x2018.25\x201\x2016.75V8Z','shape.type.ribbon','useObservable','M3.0999\x202.66689C3.0999\x202.33552\x202.83127\x202.06689\x202.4999\x202.06689C2.16853\x202.06689\x201.8999\x202.33552\x201.8999\x202.66689V13.3336C1.8999\x2013.6649\x202.16853\x2013.9336\x202.4999\x2013.9336C2.83127\x2013.9336\x203.0999\x2013.6649\x203.0999\x2013.3336V8.5999H8.2334V13.3336C8.2334\x2013.6649\x208.50203\x2013.9336\x208.8334\x2013.9336C9.16477\x2013.9336\x209.4334\x2013.6649\x209.4334\x2013.3336V2.66689C9.4334\x202.33552\x209.16477\x202.06689\x208.8334\x202.06689C8.50203\x202.06689\x208.2334\x202.33552\x208.2334\x202.66689V7.3999H3.0999V2.66689Z','M3.5\x2013.5C2.49588\x2013.5\x200.5\x2013\x200.5\x2013L2.5\x208.5L0.5\x203.5C0.5\x203.5\x202.42459\x204\x203.42871\x204L3.5\x205.5C3.36588\x205.5\x203.09687\x205.51359\x202.96191\x205.5L3.8291\x208.56543L2.59668\x2011.8027C2.72342\x2011.8404\x202.84589\x2011.8757\x202.96191\x2011.9053C3.29605\x2011.9903\x203.43669\x2011.9999\x203.42871\x2012H4V5.5H3.5L3.42871\x204H5.5V9V13.5H3.5Z','M4.53037\x208.28711C4.53037\x207.95574\x204.799\x207.68711\x205.13037\x207.68711H15.1489C15.4803\x207.68711\x2015.7489\x207.95574\x2015.7489\x208.28711C15.7489\x208.61848\x2015.4803\x208.88711\x2015.1489\x208.88711H5.13037C4.799\x208.88711\x204.53037\x208.61848\x204.53037\x208.28711Z','input,\x20textarea,\x20[contenteditable=\x22true\x22],\x20[role=\x22combobox\x22],\x20[data-u-comp=\x22select\x22],\x20.univer-select','_configService','M2.4334\x202.66689C2.4334\x202.33552\x202.16477\x202.06689\x201.8334\x202.06689C1.50203\x202.06689\x201.2334\x202.33552\x201.2334\x202.66689V13.3336C1.2334\x2013.6649\x201.50203\x2013.9336\x201.8334\x2013.9336C2.16477\x2013.9336\x202.4334\x2013.6649\x202.4334\x2013.3336V8.5999H7.2334V13.3336C7.2334\x2013.6649\x207.50203\x2013.9336\x207.8334\x2013.9336C8.16477\x2013.9336\x208.4334\x2013.6649\x208.4334\x2013.3336V2.66689C8.4334\x202.33552\x208.16477\x202.06689\x207.8334\x202.06689C7.50203\x202.06689\x207.2334\x202.33552\x207.2334\x202.66689V7.3999H2.4334V2.66689Z','tolerance','M1.8\x2016.2V6C1.8\x204.785\x202.785\x203.8\x204\x203.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H1.8Z','shape.type.up-down-arrow-callout','M3.5\x203.5L16.5\x2016.5','ShapeBentConnector3Arrow1Icon','TextTypeIcon','editorLeft','scene','documentMarginTop','path','univer-block\x20univer-w-full','MoveUpIcon','M10\x203.28027L18.3994\x2010L10\x2016.7197L1.6001\x2010L10\x203.28027Z','paragraphs','ShapeGear9Icon','Octagon','ResetInlineFormatTextBackgroundColorCommand','flipY','params','DocumentFlavor','shape-editor-ui.fill.pictureFill','ShapeAccentCallout3Icon','M12\x202C10.2\x202\x209.4\x202.75\x209.4\x204.6V7.3C9.4\x208.55\x208.85\x209.35\x207.6\x209.9C8.85\x2010.45\x209.4\x2011.25\x209.4\x2012.5V15.4C9.4\x2017.25\x2010.2\x2018\x2012\x2018','ShapeLeftArrowCalloutIcon','M7\x201C7\x204.3137\x204.3137\x207\x201\x207V1H7ZM2.6\x205.0988A4.4\x204.4\x200\x200\x200\x205.0988\x202.6H2.6V5.0988Z','setDocumentData','ShapeVerticalScrollIcon','shape-editor-ui.line.dashType.longDash','M1.3999\x202.3002C1.3999\x202.63157\x201.66853\x202.9002\x201.9999\x202.9002H13.9999C14.3313\x202.9002\x2014.5999\x202.63157\x2014.5999\x202.3002C14.5999\x201.96882\x2014.3313\x201.7002\x2013.9999\x201.7002H1.9999C1.66853\x201.7002\x201.3999\x201.96882\x201.3999\x202.3002Z','M19\x204V15H6V4H19Z','prepareShapeTextDocumentData','ShapeBlockArcIcon','M8\x202C9.8\x202\x2010.6\x202.75\x2010.6\x204.6V7.3C10.6\x208.55\x2011.15\x209.35\x2012.4\x209.9C11.15\x2010.45\x2010.6\x2011.25\x2010.6\x2012.5V15.4C10.6\x2017.25\x209.8\x2018\x208\x2018','ShapePentagonIcon','getUnitId','shape.type.round2-same-rect'];_0x20cb=function(){return _0x1ab437;};return _0x20cb();}function _0x539c(_0x265a86,_0x4e7a75){_0x265a86=_0x265a86-0xee;const _0x20cbd5=_0x20cb();let _0x539c3c=_0x20cbd5[_0x265a86];return _0x539c3c;}(function(_0x50717b,_0x12ac1a){const _0x37123c=_0x539c,_0x4ecc46=_0x50717b();while(!![]){try{const _0x50b435=parseInt(_0x37123c(0x48a))/0x1+-parseInt(_0x37123c(0x341))/0x2+parseInt(_0x37123c(0x294))/0x3*(-parseInt(_0x37123c(0x695))/0x4)+parseInt(_0x37123c(0x47d))/0x5*(parseInt(_0x37123c(0x416))/0x6)+parseInt(_0x37123c(0x4ce))/0x7*(-parseInt(_0x37123c(0x478))/0x8)+-parseInt(_0x37123c(0x4ff))/0x9*(parseInt(_0x37123c(0x6d2))/0xa)+parseInt(_0x37123c(0x246))/0xb;if(_0x50b435===_0x12ac1a)break;else _0x4ecc46['push'](_0x4ecc46['shift']());}catch(_0x1b97fc){_0x4ecc46['push'](_0x4ecc46['shift']());}}}(_0x20cb,0x778d4),function(_0x27772e,_0x536b5e){const _0x587970=_0x539c;typeof exports==_0x587970(0x165)&&typeof module<'u'?_0x536b5e(exports,require('@univerjs/design'),require('react'),require('react/jsx-runtime'),require('@univerjs/core'),require('@univerjs/ui'),require('@univerjs-pro/engine-shape'),require('@univerjs/drawing'),require('@univerjs/docs'),require('@univerjs/docs-ui'),require('@univerjs/engine-render')):typeof define==_0x587970(0x27a)&&define[_0x587970(0x2dc)]?define(['exports',_0x587970(0x4e6),'react',_0x587970(0x7b4),'@univerjs/core',_0x587970(0x287),_0x587970(0x303),_0x587970(0x747),'@univerjs/docs',_0x587970(0x4c4),_0x587970(0x4b6)],_0x536b5e):(_0x27772e=typeof globalThis<'u'?globalThis:_0x27772e||self,_0x536b5e(_0x27772e[_0x587970(0x4f6)]={},_0x27772e['UniverDesign'],_0x27772e['React'],_0x27772e[_0x587970(0x5c0)],_0x27772e['UniverCore'],_0x27772e['UniverUi'],_0x27772e['UniverProEngineShape'],_0x27772e[_0x587970(0x57b)],_0x27772e['UniverDocs'],_0x27772e['UniverDocsUi'],_0x27772e['UniverEngineRender']));}(this,function(_0x184f0a,_0xa18fa4,_0x31b8c1,_0x30fb45,_0x2c5933,_0x100e66,_0x2efdc4,_0x1d1765,_0x58cd82,_0xadbe38,_0x41cf52){const _0x4e4756=_0x539c;Object[_0x4e4756(0x740)](_0x184f0a,Symbol[_0x4e4756(0x660)],{'value':'Module'});function _0x3e4017({ref:_0x1c855d,..._0x4913c4}){const _0x1cb293=_0x4e4756;let {icon:_0x346187,id:_0x24aff7,className:_0x2e430f,extend:_0x515ba5,..._0x5680e4}=_0x4913c4,_0x58c6b5=(_0x1cb293(0x30b)+_0x24aff7+'\x20'+(_0x2e430f||''))['trim'](),_0x254c1e=(0x0,_0x31b8c1[_0x1cb293(0x276)])('_'+_0xa03be7());return _0x444049(_0x346187,''+_0x24aff7,{'defIds':_0x346187[_0x1cb293(0x5ad)],'idSuffix':_0x254c1e[_0x1cb293(0x425)]},{'ref':_0x1c855d,'className':_0x58c6b5,..._0x5680e4},_0x515ba5);}function _0x444049(_0x543d37,_0x46ce84,_0x45b98e,_0x255b7e,_0x5929c2){const _0x45fd87=_0x4e4756;return(0x0,_0x31b8c1[_0x45fd87(0x7a6)])(_0x543d37[_0x45fd87(0x669)],{'key':_0x46ce84,..._0x37e5dd(_0x543d37,_0x45b98e,_0x5929c2),..._0x255b7e},(_0x316fb6(_0x543d37,_0x45b98e)[_0x45fd87(0x20a)]||[])[_0x45fd87(0x217)]((_0x26b3af,_0x3cc4f1)=>_0x444049(_0x26b3af,_0x46ce84+'-'+_0x543d37['tag']+'-'+_0x3cc4f1,_0x45b98e,void 0x0,_0x5929c2)));}function _0x37e5dd(_0x3fe938,_0x137ebe,_0x4c28cd){const _0x23c3c7=_0x4e4756;let _0x71d6dd={..._0x3fe938[_0x23c3c7(0x76a)]};_0x4c28cd!=null&&_0x4c28cd[_0x23c3c7(0x584)]&&_0x71d6dd['fill']===_0x23c3c7(0x584)&&(_0x71d6dd[_0x23c3c7(0x181)]=_0x4c28cd['colorChannel1']),_0x4c28cd!=null&&_0x4c28cd[_0x23c3c7(0x584)]&&_0x71d6dd[_0x23c3c7(0x3f6)]==='colorChannel1'&&(_0x71d6dd[_0x23c3c7(0x3f6)]=_0x4c28cd['colorChannel1']),_0x3fe938[_0x23c3c7(0x669)]===_0x23c3c7(0x2d2)&&_0x71d6dd['id']&&(_0x71d6dd['id']+=_0x137ebe[_0x23c3c7(0x379)]),Object[_0x23c3c7(0x7c3)](_0x71d6dd)[_0x23c3c7(0x692)](([_0x505eb1,_0x4c62b5])=>{const _0xcae981=_0x23c3c7;_0x505eb1===_0xcae981(0x2d2)&&typeof _0x4c62b5==_0xcae981(0x6b9)&&(_0x71d6dd[_0x505eb1]=_0x4c62b5[_0xcae981(0x4e5)](/url\(#(.*)\)/,_0xcae981(0x796)+_0x137ebe[_0xcae981(0x379)]+')'));});let {defIds:_0x1fb275}=_0x137ebe;return!_0x1fb275||_0x1fb275['length']===0x0?_0x71d6dd:(_0x3fe938[_0x23c3c7(0x669)]===_0x23c3c7(0x578)&&_0x71d6dd[_0x23c3c7(0xf9)]&&(_0x71d6dd['xlink:href']+=_0x137ebe['idSuffix']),Object[_0x23c3c7(0x7c3)](_0x71d6dd)[_0x23c3c7(0x692)](([_0xabe459,_0x3c6aca])=>{const _0x46b6ce=_0x23c3c7;typeof _0x3c6aca==_0x46b6ce(0x6b9)&&(_0x71d6dd[_0xabe459]=_0x3c6aca['replace'](/url\(#(.*)\)/,'url(#$1'+_0x137ebe[_0x46b6ce(0x379)]+')'));}),_0x71d6dd);}function _0x316fb6(_0x3a16a8,_0x1c96e3){const _0x4dbafa=_0x4e4756;var _0x23ed90;let {defIds:_0x266bc7}=_0x1c96e3;return!_0x266bc7||_0x266bc7[_0x4dbafa(0x7cf)]===0x0?_0x3a16a8:_0x3a16a8[_0x4dbafa(0x669)]===_0x4dbafa(0x375)&&(_0x23ed90=_0x3a16a8['children'])!=null&&_0x23ed90[_0x4dbafa(0x7cf)]?{..._0x3a16a8,'children':_0x3a16a8['children'][_0x4dbafa(0x217)](_0x47dc6e=>typeof _0x47dc6e['attrs']['id']==_0x4dbafa(0x6b9)&&_0x266bc7&&_0x266bc7[_0x4dbafa(0x420)](_0x47dc6e[_0x4dbafa(0x76a)]['id'])?{..._0x47dc6e,'attrs':{..._0x47dc6e[_0x4dbafa(0x76a)],'id':_0x47dc6e[_0x4dbafa(0x76a)]['id']+_0x1c96e3['idSuffix']}}:_0x47dc6e)}:_0x3a16a8;}function _0xa03be7(){const _0x3a38e1=_0x4e4756;return Math[_0x3a38e1(0x40f)]()['toString'](0x24)[_0x3a38e1(0x219)](0x2,0x8);}_0x3e4017['displayName']=_0x4e4756(0x4ee);let _0x4c7bd1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2d3),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1c0),'fillRule':'evenodd','clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0xfd),'fillRule':'evenodd','clipRule':_0x4e4756(0x309)}}]},_0x487879=(0x0,_0x31b8c1['forwardRef'])(function(_0x39a102,_0x5451cd){const _0x5172ed=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x39a102,{'id':_0x5172ed(0x788),'ref':_0x5451cd,'icon':_0x4c7bd1}));});_0x487879[_0x4e4756(0x1cf)]='AlignBottomIcon';let _0x1fc9db={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M1.9999\x201.89941C1.66853\x201.89941\x201.3999\x202.16804\x201.3999\x202.49941C1.3999\x202.83078\x201.66853\x203.09941\x201.9999\x203.09941H13.9999C14.3313\x203.09941\x2014.5999\x202.83078\x2014.5999\x202.49941C14.5999\x202.16804\x2014.3313\x201.89941\x2013.9999\x201.89941H1.9999Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x457)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x21d)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x526)}}]},_0x35f8a4=(0x0,_0x31b8c1['forwardRef'])(function(_0x2d461d,_0x51a066){const _0x14e141=_0x4e4756;return(0x0,_0x31b8c1[_0x14e141(0x7a6)])(_0x3e4017,Object[_0x14e141(0x5bf)]({},_0x2d461d,{'id':_0x14e141(0x1a5),'ref':_0x51a066,'icon':_0x1fc9db}));});_0x35f8a4[_0x4e4756(0x1cf)]='AlignTextBothIcon';let _0x469e62={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2016\x2016','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x62e)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x122)}}]},_0x1db6cf=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5dedea,_0x5e2570){const _0x3cd7b8=_0x4e4756;return(0x0,_0x31b8c1[_0x3cd7b8(0x7a6)])(_0x3e4017,Object[_0x3cd7b8(0x5bf)]({},_0x5dedea,{'id':_0x3cd7b8(0x2eb),'ref':_0x5e2570,'icon':_0x469e62}));});_0x1db6cf['displayName']='AlignTopIcon';let _0x2fd33c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x31c),'fillRule':_0x4e4756(0x309),'clipRule':'evenodd'}}]},_0x2a516b=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1dd506,_0xb7f792){const _0x5e62af=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x5e62af(0x5bf)]({},_0x1dd506,{'id':_0x5e62af(0x115),'ref':_0xb7f792,'icon':_0x2fd33c}));});_0x2a516b[_0x4e4756(0x1cf)]='BoldIcon';let _0x23ba54={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2017\x2016','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x449),'fillRule':_0x4e4756(0x309),'clipRule':'evenodd'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x14a),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M8.57975\x2014.5902L6.58023\x2012.5907C6.34591\x2012.3564\x206.34591\x2011.9765\x206.58023\x2011.7421C6.81454\x2011.5078\x207.19444\x2011.5078\x207.42876\x2011.7421L8.40449\x2012.7179V10.1664C8.40449\x209.83504\x208.67312\x209.56641\x209.00449\x209.56641C9.33586\x209.56641\x209.60449\x209.83504\x209.60449\x2010.1664V12.7179L10.5802\x2011.7421C10.8145\x2011.5078\x2011.1944\x2011.5078\x2011.4288\x2011.7421C11.6631\x2011.9765\x2011.6631\x2012.3564\x2011.4288\x2012.5907L9.42923\x2014.5902'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2d6)}}]},_0x93dce4=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x91b8aa,_0x4683c7){const _0x4dbcb2=_0x4e4756;return(0x0,_0x31b8c1[_0x4dbcb2(0x7a6)])(_0x3e4017,Object[_0x4dbcb2(0x5bf)]({},_0x91b8aa,{'id':_0x4dbcb2(0x5b7),'ref':_0x4683c7,'icon':_0x23ba54}));});_0x93dce4[_0x4e4756(0x1cf)]=_0x4e4756(0x677);let _0x3af9eb={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5b6)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M5.14972\x203.90157C5.38815\x204.1317\x205.39487\x204.51154\x205.16473\x204.74996L2.55461\x207.45409C2.01739\x208.01066\x202.03336\x208.89745\x202.59029\x209.43431L5.14944\x2011.9013C5.38802\x2012.1313\x205.39498\x2012.5111\x205.165\x2012.7497C4.93502\x2012.9883\x204.55519\x2012.9952\x204.31662\x2012.7652L1.75746\x2010.2983C0.723174\x209.30122\x200.693506\x207.65434\x201.69121\x206.6207L4.30133\x203.91657C4.53146\x203.67815\x204.9113\x203.67143\x205.14972\x203.90157Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M10.8505\x203.90157C11.0889\x203.67143\x2011.4688\x203.67815\x2011.6989\x203.91657L14.309\x206.6207C15.3067\x207.65434\x2015.2771\x209.30122\x2014.2428\x2010.2983L11.6836\x2012.7652C11.4451\x2012.9952\x2011.0652\x2012.9883\x2010.8352\x2012.7497C10.6053\x2012.5111\x2010.6122\x2012.1313\x2010.8508\x2011.9013L13.41\x209.43431C13.9669\x208.89745\x2013.9829\x208.01066\x2013.4456\x207.45409L10.8355\x204.74996C10.6054\x204.51154\x2010.6121\x204.1317\x2010.8505\x203.90157Z'}}]},_0x1fbb57=(0x0,_0x31b8c1['forwardRef'])(function(_0x4f0d0c,_0x6baf49){const _0x12ce07=_0x4e4756;return(0x0,_0x31b8c1[_0x12ce07(0x7a6)])(_0x3e4017,Object[_0x12ce07(0x5bf)]({},_0x4f0d0c,{'id':_0x12ce07(0x323),'ref':_0x6baf49,'icon':_0x3af9eb}));});_0x1fbb57[_0x4e4756(0x1cf)]=_0x4e4756(0x299);let _0x25dba0={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2016\x2016','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M5.3313\x201.4667C5.3313\x201.13533\x205.59993\x200.866699\x205.9313\x200.866699H10.069C10.4004\x200.866699\x2010.669\x201.13533\x2010.669\x201.4667C10.669\x201.79807\x2010.4004\x202.0667\x2010.069\x202.0667H5.9313C5.59993\x202.0667\x205.3313\x201.79807\x205.3313\x201.4667Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x4b1)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5de)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x688),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x2473c6=(0x0,_0x31b8c1['forwardRef'])(function(_0xe447e6,_0x236b10){const _0x487e21=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0xe447e6,{'id':_0x487e21(0x75f),'ref':_0x236b10,'icon':_0x25dba0}));});_0x2473c6[_0x4e4756(0x1cf)]=_0x4e4756(0x73e);let _0x4921ab={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x70a)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x53e),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x523)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M8.04993\x206.42969C8.35293\x206.49172\x208.58118\x206.75971\x208.58118\x207.08105C8.581\x207.40229\x208.35289\x207.67047\x208.04993\x207.73242L7.91614\x207.74609H4.73547C4.36833\x207.74609\x204.07063\x207.44816\x204.07043\x207.08105C4.07043\x206.71379\x204.3682\x206.41602\x204.73547\x206.41602H7.91614L8.04993\x206.42969Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5a7)}}]},_0x3f3545=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x46ca4e,_0x408856){const _0x13b4c8=_0x4e4756;return(0x0,_0x31b8c1[_0x13b4c8(0x7a6)])(_0x3e4017,Object[_0x13b4c8(0x5bf)]({},_0x46ca4e,{'id':'doc-setting-icon','ref':_0x408856,'icon':_0x4921ab}));});_0x3f3545['displayName']='DocSettingIcon';let _0x5d616c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x3b2),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M7.38125\x201.16211C6.49759\x201.16211\x205.78125\x201.87845\x205.78125\x202.76211V5.6377H2.87783C1.99418\x205.6377\x201.27783\x206.35404\x201.27783\x207.2377V13.2377C1.27783\x2014.1214\x201.99418\x2014.8377\x202.87783\x2014.8377H8.87783C9.76149\x2014.8377\x2010.4778\x2014.1214\x2010.4778\x2013.2377V10.3621H13.3813C14.2649\x2010.3621\x2014.9813\x209.64577\x2014.9813\x208.76211V2.76211C14.9813\x201.87845\x2014.2649\x201.16211\x2013.3813\x201.16211H7.38125ZM10.4778\x209.16211H13.3813C13.6022\x209.16211\x2013.7812\x208.98302\x2013.7812\x208.76211V2.76211C13.7812\x202.5412\x2013.6022\x202.36211\x2013.3813\x202.36211H7.38125C7.16034\x202.36211\x206.98125\x202.5412\x206.98125\x202.76211V5.6377H8.87783C9.76149\x205.6377\x2010.4778\x206.35404\x2010.4778\x207.2377V9.16211ZM6.98125\x206.8377H8.87783C9.09875\x206.8377\x209.27783\x207.01678\x209.27783\x207.2377V9.16211H7.38125C7.16034\x209.16211\x206.98125\x208.98302\x206.98125\x208.76211V6.8377ZM5.78125\x206.8377V8.76211C5.78125\x209.64577\x206.49759\x2010.3621\x207.38125\x2010.3621H9.27783V13.2377C9.27783\x2013.4586\x209.09875\x2013.6377\x208.87783\x2013.6377H2.87783C2.65692\x2013.6377\x202.47783\x2013.4586\x202.47783\x2013.2377V7.2377C2.47783\x207.01678\x202.65692\x206.8377\x202.87783\x206.8377H5.78125Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x36b9=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x42d75f,_0x573ded){const _0x3cda3e=_0x4e4756;return(0x0,_0x31b8c1[_0x3cda3e(0x7a6)])(_0x3e4017,Object['assign']({},_0x42d75f,{'id':_0x3cda3e(0x6c7),'ref':_0x573ded,'icon':_0x5d616c}));});_0x36b9[_0x4e4756(0x1cf)]=_0x4e4756(0x42a);let _0x1a7d9a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x60c)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x534)}}]},_0x4fcc35=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x598123,_0x4283cc){const _0x332628=_0x4e4756;return(0x0,_0x31b8c1[_0x332628(0x7a6)])(_0x3e4017,Object[_0x332628(0x5bf)]({},_0x598123,{'id':_0x332628(0x7c6),'ref':_0x4283cc,'icon':_0x1a7d9a}));});_0x4fcc35[_0x4e4756(0x1cf)]=_0x4e4756(0x6e5);let _0x43df9f={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x3b1)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M11.2667\x208.33356C11.2667\x207.67245\x2011.8201\x207.26689\x2012.3333\x207.26689C12.8465\x207.26689\x2013.4\x207.67244\x2013.4\x208.33356C13.4\x208.62807\x2013.2712\x208.94814\x2012.9954\x209.32391C12.7183\x209.70153\x2012.3394\x2010.0744\x2011.9174\x2010.4803L11.8355\x2010.559C11.4524\x2010.9268\x2011.0365\x2011.3263\x2010.7149\x2011.7373C10.3718\x2012.1759\x2010.0667\x2012.7122\x2010.0667\x2013.3336C10.0667\x2013.6649\x2010.3353\x2013.9336\x2010.6667\x2013.9336H14C14.3314\x2013.9336\x2014.6\x2013.6649\x2014.6\x2013.3336C14.6\x2013.0022\x2014.3314\x2012.7336\x2014\x2012.7336H11.4782C11.5286\x2012.6531\x2011.5889\x2012.5676\x2011.6601\x2012.4767C11.9269\x2012.1355\x2012.2843\x2011.792\x2012.6877\x2011.4043L12.7492\x2011.3452C13.1606\x2010.9496\x2013.615\x2010.5079\x2013.9629\x2010.0338C14.3122\x209.55787\x2014.6\x208.98906\x2014.6\x208.33356C14.6\x206.88362\x2013.3757\x206.06689\x2012.3333\x206.06689C11.291\x206.06689\x2010.0667\x206.88361\x2010.0667\x208.33356C10.0667\x208.66493\x2010.3353\x208.93356\x2010.6667\x208.93356C10.998\x208.93356\x2011.2667\x208.66493\x2011.2667\x208.33356Z'}}]},_0x1029bd=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x192693,_0x2c1d68){const _0x4a57bf=_0x4e4756;return(0x0,_0x31b8c1[_0x4a57bf(0x7a6)])(_0x3e4017,Object[_0x4a57bf(0x5bf)]({},_0x192693,{'id':_0x4a57bf(0x2ea),'ref':_0x2c1d68,'icon':_0x43df9f}));});_0x1029bd[_0x4e4756(0x1cf)]='H2Icon';let _0x1f7172={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M2.5999\x202.66689C2.5999\x202.33552\x202.33127\x202.06689\x201.9999\x202.06689C1.66853\x202.06689\x201.3999\x202.33552\x201.3999\x202.66689V13.3336C1.3999\x2013.6649\x201.66853\x2013.9336\x201.9999\x2013.9336C2.33127\x2013.9336\x202.5999\x2013.6649\x202.5999\x2013.3336V8.5999H7.3999V13.3336C7.3999\x2013.6649\x207.66853\x2013.9336\x207.9999\x2013.9336C8.33127\x2013.9336\x208.5999\x2013.6649\x208.5999\x2013.3336V2.66689C8.5999\x202.33552\x208.33127\x202.06689\x207.9999\x202.06689C7.66853\x202.06689\x207.3999\x202.33552\x207.3999\x202.66689V7.3999H2.5999V2.66689Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x362)}}]},_0x41f960=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x154600,_0x2ff2df){const _0x47723f=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x154600,{'id':_0x47723f(0x674),'ref':_0x2ff2df,'icon':_0x1f7172}));});_0x41f960[_0x4e4756(0x1cf)]=_0x4e4756(0x2b0);let _0x396dc1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x611)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x6b7),'fillRule':_0x4e4756(0x309),'clipRule':'evenodd'}}]},_0x1c2acc=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2a539a,_0x5f215d){const _0x45c24f=_0x4e4756;return(0x0,_0x31b8c1[_0x45c24f(0x7a6)])(_0x3e4017,Object['assign']({},_0x2a539a,{'id':_0x45c24f(0x514),'ref':_0x5f215d,'icon':_0x396dc1}));});_0x1c2acc[_0x4e4756(0x1cf)]=_0x4e4756(0x532);let _0x5a7666={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2016\x2016','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x3b1)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x107)}}]},_0x1aa049=(0x0,_0x31b8c1['forwardRef'])(function(_0x349272,_0x9fc523){const _0x1d96b4=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x1d96b4(0x5bf)]({},_0x349272,{'id':_0x1d96b4(0x269),'ref':_0x9fc523,'icon':_0x5a7666}));});_0x1aa049[_0x4e4756(0x1cf)]='H5Icon';let _0x4c60ee={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x33c)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7b9)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M1.3999\x209.8334C1.3999\x209.50203\x201.66853\x209.2334\x201.9999\x209.2334H13.9999C14.3313\x209.2334\x2014.5999\x209.50203\x2014.5999\x209.8334C14.5999\x2010.1648\x2014.3313\x2010.4334\x2013.9999\x2010.4334H1.9999C1.66853\x2010.4334\x201.3999\x2010.1648\x201.3999\x209.8334Z'}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M3.33315\x2012.9004C3.00178\x2012.9004\x202.73315\x2013.169\x202.73315\x2013.5004C2.73315\x2013.8318\x203.00178\x2014.1004\x203.33315\x2014.1004H12.6665C12.9979\x2014.1004\x2013.2665\x2013.8318\x2013.2665\x2013.5004C13.2665\x2013.169\x2012.9979\x2012.9004\x2012.6665\x2012.9004H3.33315Z'}}]},_0x346995=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3f2ac8,_0x3d0421){const _0x4f4a80=_0x4e4756;return(0x0,_0x31b8c1[_0x4f4a80(0x7a6)])(_0x3e4017,Object['assign']({},_0x3f2ac8,{'id':'horizontally-icon','ref':_0x3d0421,'icon':_0x4c60ee}));});_0x346995[_0x4e4756(0x1cf)]=_0x4e4756(0x596);let _0x3dfb73={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x3fb)}}]},_0x457946=(0x0,_0x31b8c1['forwardRef'])(function(_0x2e09b4,_0x5779b8){const _0x4287b6=_0x4e4756;return(0x0,_0x31b8c1[_0x4287b6(0x7a6)])(_0x3e4017,Object[_0x4287b6(0x5bf)]({},_0x2e09b4,{'id':'italic-icon','ref':_0x5779b8,'icon':_0x3dfb73}));});_0x457946[_0x4e4756(0x1cf)]=_0x4e4756(0x236);let _0x43ddfd={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x33c)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x499)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x21d)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x27e)}}]},_0x449f46=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x36cb0c,_0x1e1d75){const _0x446f23=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x36cb0c,{'id':_0x446f23(0x524),'ref':_0x1e1d75,'icon':_0x43ddfd}));});_0x449f46['displayName']='LeftJustifyingIcon';let _0x2e7678={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M11.3536\x206.14645C11.5488\x206.34171\x2011.5488\x206.65829\x2011.3536\x206.85355L8.35355\x209.85355C8.15829\x2010.0488\x207.84171\x2010.0488\x207.64645\x209.85355L4.64645\x206.85355C4.45118\x206.65829\x204.45118\x206.34171\x204.64645\x206.14645C4.84171\x205.95118\x205.15829\x205.95118\x205.35355\x206.14645L8\x208.79289L10.6464\x206.14645C10.8417\x205.95118\x2011.1583\x205.95118\x2011.3536\x206.14645Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x452c38=(0x0,_0x31b8c1['forwardRef'])(function(_0x274bf1,_0x5b0078){const _0x4f64f6=_0x4e4756;return(0x0,_0x31b8c1[_0x4f64f6(0x7a6)])(_0x3e4017,Object[_0x4f64f6(0x5bf)]({},_0x274bf1,{'id':_0x4f64f6(0x3e5),'ref':_0x5b0078,'icon':_0x2e7678}));});_0x452c38[_0x4e4756(0x1cf)]=_0x4e4756(0x72b);let _0x185ad9={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x2c6),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0xd54a61=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x59362e,_0x4f38e){const _0x3c2969=_0x4e4756;return(0x0,_0x31b8c1[_0x3c2969(0x7a6)])(_0x3e4017,Object[_0x3c2969(0x5bf)]({},_0x59362e,{'id':_0x3c2969(0x7a9),'ref':_0x4f38e,'icon':_0x185ad9}));});_0xd54a61[_0x4e4756(0x1cf)]=_0x4e4756(0x7df);let _0x543a18={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x6c1),'fillRule':_0x4e4756(0x309),'clipRule':'evenodd'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M5.57564\x2011.6118C5.80995\x2011.3774\x206.18985\x2011.3774\x206.42417\x2011.6118L7.3999\x2012.5875V6.36951C7.3999\x206.03814\x207.66853\x205.76951\x207.9999\x205.76951C8.33127\x205.76951\x208.5999\x206.03814\x208.5999\x206.36951V12.5875L9.57564\x2011.6118C9.80995\x2011.3774\x2010.1899\x2011.3774\x2010.4242\x2011.6118C10.6585\x2011.8461\x2010.6585\x2012.226\x2010.4242\x2012.4603L8.4324\x2014.452C8.32324\x2014.5655\x208.16982\x2014.6362\x207.9999\x2014.6362C7.82998\x2014.6362\x207.67655\x2014.5655\x207.56739\x2014.452L5.57564\x2012.4603C5.34132\x2012.226\x205.34132\x2011.8461\x205.57564\x2011.6118Z'}}]},_0x384775=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x359966,_0x183126){const _0x106be3=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x106be3(0x5bf)]({},_0x359966,{'id':_0x106be3(0x58a),'ref':_0x183126,'icon':_0x543a18}));});_0x384775[_0x4e4756(0x1cf)]=_0x4e4756(0x15b);let _0x4694af={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x600),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x456)}}]},_0x433254=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2055e7,_0x33e945){const _0x329630=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x329630(0x5bf)]({},_0x2055e7,{'id':'move-up-icon','ref':_0x33e945,'icon':_0x4694af}));});_0x433254[_0x4e4756(0x1cf)]=_0x4e4756(0x61d);let _0x2edb4b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x3b2),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x40c)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M0.949709\x209.2145C1.14957\x209.02907\x201.33226\x208.85497\x201.49677\x208.69321C1.6914\x208.50496\x201.84244\x208.33306\x201.95136\x208.17747C2.05826\x208.02476\x202.10492\x207.89219\x202.10492\x207.77781C2.10492\x207.65255\x202.07293\x207.57986\x202.02759\x207.53865L2.0245\x207.5357C1.97641\x207.48761\x201.9103\x207.46013\x201.81635\x207.46013C1.71986\x207.46013\x201.6383\x207.47348\x201.5822\x207.51611L1.58034\x207.51749C1.42279\x207.63092\x201.19425\x207.67086\x201.03149\x207.50811L1.02187\x207.49849C0.868433\x207.34505\x200.852261\x207.07998\x201.03819\x206.93364C1.12802\x206.86293\x201.21897\x206.8051\x201.31109\x206.76081C1.48788\x206.67257\x201.69616\x206.63037\x201.93278\x206.63037C2.15191\x206.63037\x202.34929\x206.67491\x202.52246\x206.76665C2.69563\x206.85514\x202.83257\x206.98323\x202.93172\x207.14966C3.03175\x207.31758\x203.08022\x207.51184\x203.08022\x207.72929C3.08022\x207.91104\x203.03028\x208.09333\x202.93429\x208.27521C2.84374\x208.45283\x202.72797\x208.62691\x202.58859\x208.79616C2.51109\x208.88842\x202.43304\x208.97759\x202.35442\x209.06369C2.34919\x209.06941\x202.34388\x209.07573\x202.33892\x209.08228C2.34542\x209.08201\x202.35268\x209.08151\x202.36075\x209.08073C2.46266\x209.07087\x202.54985\x209.06576\x202.62168\x209.06576H2.78662C3.02915\x209.06576\x203.22576\x209.26237\x203.22576\x209.5049C3.22576\x209.74742\x203.02915\x209.94403\x202.78662\x209.94403H1.23472C1.00261\x209.94403\x200.814453\x209.75587\x200.814453\x209.52376C0.814453\x209.40615\x200.86379\x209.29421\x200.949709\x209.2145Z'}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M1.2579\x2014.674C1.45109\x2014.7553\x201.67487\x2014.7946\x201.92711\x2014.7946C2.1451\x2014.7946\x202.34841\x2014.7599\x202.53619\x2014.6895L2.53746\x2014.689C2.7264\x2014.6148\x202.88145\x2014.5071\x202.99952\x2014.3647L3.00018\x2014.3639C3.12167\x2014.2138\x203.18089\x2014.0326\x203.18089\x2013.8252C3.18089\x2013.6181\x203.12169\x2013.4411\x202.99737\x2013.3022C2.91596\x2013.2112\x202.81864\x2013.1388\x202.70642\x2013.0846C2.80611\x2013.023\x202.88805\x2012.9505\x202.95017\x2012.8661C3.04138\x2012.7422\x203.08609\x2012.5977\x203.08609\x2012.4365C3.08609\x2012.1403\x202.97594\x2011.9041\x202.7521\x2011.7404C2.53645\x2011.5772\x202.25212\x2011.5002\x201.90815\x2011.5002C1.7136\x2011.5002\x201.52963\x2011.5372\x201.35712\x2011.6115C1.28512\x2011.6418\x201.21426\x2011.6776\x201.14456\x2011.7188C0.938688\x2011.8404\x200.928034\x2012.1099\x201.06649\x2012.2774C1.21291\x2012.4544\x201.46028\x2012.4561\x201.63989\x2012.363C1.70891\x2012.3286\x201.78521\x2012.3109\x201.87023\x2012.3109C1.96356\x2012.3109\x202.01717\x2012.3317\x202.04691\x2012.3578C2.07449\x2012.3821\x202.09529\x2012.4231\x202.09529\x2012.4981C2.09529\x2012.5709\x202.0658\x2012.6284\x201.99667\x2012.6764C1.96042\x2012.6999\x201.8978\x2012.7216\x201.80025\x2012.7355C1.61051\x2012.7625\x201.44118\x2012.9145\x201.44118\x2013.1237C1.44118\x2013.3319\x201.60937\x2013.4885\x201.80489\x2013.5068C1.87785\x2013.5136\x201.93575\x2013.5234\x201.97985\x2013.5355C2.07997\x2013.562\x202.12905\x2013.596\x202.14927\x2013.6246C2.17519\x2013.6614\x202.19008\x2013.7078\x202.19008\x2013.7684C2.19008\x2013.8334\x202.16583\x2013.8754\x202.1142\x2013.9064C2.05357\x2013.9428\x201.96521\x2013.965\x201.84179\x2013.965C1.749\x2013.965\x201.6547\x2013.9433\x201.55817\x2013.8981C1.363\x2013.7983\x201.08846\x2013.8083\x200.942801\x2014.01L0.936366\x2014.0189C0.827321\x2014.1699\x200.821861\x2014.401\x200.994678\x2014.5262C1.07406\x2014.5836\x201.16225\x2014.633\x201.2579\x2014.674Z'}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x436)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x60e)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x718)}}]},_0x33e11f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2cb1c7,_0x41fd4a){const _0x27081b=_0x4e4756;return(0x0,_0x31b8c1[_0x27081b(0x7a6)])(_0x3e4017,Object[_0x27081b(0x5bf)]({},_0x2cb1c7,{'id':_0x27081b(0x345),'ref':_0x41fd4a,'icon':_0x2edb4b}));});_0x33e11f[_0x4e4756(0x1cf)]=_0x4e4756(0x2ab);let _0x220ffe={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x33c)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x57f)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x21d)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x14f)}}]},_0xbbff2c=(0x0,_0x31b8c1['forwardRef'])(function(_0x2557da,_0x41b62d){const _0x19414f=_0x4e4756;return(0x0,_0x31b8c1[_0x19414f(0x7a6)])(_0x3e4017,Object[_0x19414f(0x5bf)]({},_0x2557da,{'id':_0x19414f(0x75d),'ref':_0x41b62d,'icon':_0x220ffe}));});_0xbbff2c[_0x4e4756(0x1cf)]=_0x4e4756(0x152);let _0x1e41ec={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x73c),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x4cb),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.00013\x2017L6.00013\x209','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x221984=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x43660b,_0x50fb13){const _0x6cb30f=_0x4e4756;return(0x0,_0x31b8c1[_0x6cb30f(0x7a6)])(_0x3e4017,Object['assign']({},_0x43660b,{'id':_0x6cb30f(0x648),'ref':_0x50fb13,'icon':_0x1e41ec}));});_0x221984[_0x4e4756(0x1cf)]=_0x4e4756(0x10b);let _0x56e062={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x465),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M6.00018\x203V16','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x516),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x7b6982=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x443d1a,_0xf38f72){const _0x11543a=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x11543a(0x5bf)]({},_0x443d1a,{'id':'shape-accent-border-callout2-icon','ref':_0xf38f72,'icon':_0x56e062}));});_0x7b6982[_0x4e4756(0x1cf)]=_0x4e4756(0x45b);let _0x56cfcb={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x792),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x431),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x550ac8=(0x0,_0x31b8c1['forwardRef'])(function(_0x31d880,_0x20b4ac){const _0x535d88=_0x4e4756;return(0x0,_0x31b8c1[_0x535d88(0x7a6)])(_0x3e4017,Object[_0x535d88(0x5bf)]({},_0x31d880,{'id':_0x535d88(0x64d),'ref':_0x20b4ac,'icon':_0x56cfcb}));});_0x550ac8[_0x4e4756(0x1cf)]=_0x4e4756(0x394);let _0x53061a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M19.0001\x204V15H9.00013V4H19.0001Z','strokeDasharray':_0x4e4756(0x78e),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4cb),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x4fd),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x52bb8c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x52b0ff,_0x339779){const _0x454b0c=_0x4e4756;return(0x0,_0x31b8c1[_0x454b0c(0x7a6)])(_0x3e4017,Object['assign']({},_0x52b0ff,{'id':_0x454b0c(0x3f7),'ref':_0x339779,'icon':_0x53061a}));});_0x52bb8c[_0x4e4756(0x1cf)]=_0x4e4756(0x361);let _0x542942={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x465),'strokeDasharray':'4\x203','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M6.00018\x203V16','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.00018\x2017L2.50018\x209H6.00018','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x25b594=(0x0,_0x31b8c1['forwardRef'])(function(_0x35e182,_0x1edc74){const _0x182382=_0x4e4756;return(0x0,_0x31b8c1[_0x182382(0x7a6)])(_0x3e4017,Object[_0x182382(0x5bf)]({},_0x35e182,{'id':_0x182382(0x6f6),'ref':_0x1edc74,'icon':_0x542942}));});_0x25b594[_0x4e4756(0x1cf)]=_0x4e4756(0x670);let _0x25bbcd={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M19\x204V15H9V4H19Z','strokeDasharray':_0x4e4756(0x78e),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M6\x203V16','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x431),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x5e381a=(0x0,_0x31b8c1['forwardRef'])(function(_0x557e0b,_0x5dfab5){const _0x323381=_0x4e4756;return(0x0,_0x31b8c1[_0x323381(0x7a6)])(_0x3e4017,Object[_0x323381(0x5bf)]({},_0x557e0b,{'id':_0x323381(0x722),'ref':_0x5dfab5,'icon':_0x25bbcd}));});_0x5e381a[_0x4e4756(0x1cf)]=_0x4e4756(0x627);let _0x470c89={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x2c9),'fillRule':'evenodd'}}]},_0x497335=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x58b57d,_0x21918d){const _0x111337=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x111337(0x5bf)]({},_0x58b57d,{'id':_0x111337(0x3b9),'ref':_0x21918d,'icon':_0x470c89}));});_0x497335[_0x4e4756(0x1cf)]=_0x4e4756(0x6d5);let _0x1d67a0={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7b1),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1ba)}}]},_0x1e1464=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x47dfe1,_0x20e6f9){const _0x692bb3=_0x4e4756;return(0x0,_0x31b8c1[_0x692bb3(0x7a6)])(_0x3e4017,Object['assign']({},_0x47dfe1,{'id':_0x692bb3(0x703),'ref':_0x20e6f9,'icon':_0x1d67a0}));});_0x1e1464[_0x4e4756(0x1cf)]='ShapeActionButtonBeginningIcon';let _0x233643={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}}]},_0x5789bf=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x404181,_0x507ec5){const _0x3ac027=_0x4e4756;return(0x0,_0x31b8c1[_0x3ac027(0x7a6)])(_0x3e4017,Object[_0x3ac027(0x5bf)]({},_0x404181,{'id':_0x3ac027(0x230),'ref':_0x507ec5,'icon':_0x233643}));});_0x5789bf['displayName']=_0x4e4756(0x6a9);let _0x19aedd={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x787),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x4aa),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x35fe9d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5b5ded,_0x4df696){const _0x18eb76=_0x4e4756;return(0x0,_0x31b8c1[_0x18eb76(0x7a6)])(_0x3e4017,Object[_0x18eb76(0x5bf)]({},_0x5b5ded,{'id':'shape-action-button-document-icon','ref':_0x4df696,'icon':_0x19aedd}));});_0x35fe9d[_0x4e4756(0x1cf)]=_0x4e4756(0x6d8);let _0x40120a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x247),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x392)}}]},_0x2e9326=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x597109,_0x55bf8c){const _0x2a81de=_0x4e4756;return(0x0,_0x31b8c1[_0x2a81de(0x7a6)])(_0x3e4017,Object['assign']({},_0x597109,{'id':_0x2a81de(0x2e1),'ref':_0x55bf8c,'icon':_0x40120a}));});_0x2e9326['displayName']='ShapeActionButtonEndIcon';let _0x291509={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x607),'fillRule':_0x4e4756(0x309)}}]},_0x31cf76=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xf8c86d,_0x3a95e5){const _0x34bed0=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x34bed0(0x5bf)]({},_0xf8c86d,{'id':_0x34bed0(0x6b2),'ref':_0x3a95e5,'icon':_0x291509}));});_0x31cf76[_0x4e4756(0x1cf)]=_0x4e4756(0x350);let _0x520a3f={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x55f),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':'circle','attrs':{'cx':0xa,'cy':0xf,'r':0.8,'fill':_0x4e4756(0x455)}}]},_0xded03e=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x247845,_0x1d78e7){const _0x5eb56c=_0x4e4756;return(0x0,_0x31b8c1[_0x5eb56c(0x7a6)])(_0x3e4017,Object[_0x5eb56c(0x5bf)]({},_0x247845,{'id':_0x5eb56c(0x250),'ref':_0x1d78e7,'icon':_0x520a3f}));});_0xded03e['displayName']=_0x4e4756(0x52b);let _0x4024eb={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x195),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M5.2\x209H6.8V14.2H9.2V12H10.8V14.2H13.2V9H14.8V15.8H5.2V9Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M13.8\x204.5H12.2V8H13.8V4.5Z'}}]},_0x4f91b1=(0x0,_0x31b8c1['forwardRef'])(function(_0x3afb7f,_0x216c92){const _0x3f6ff0=_0x4e4756;return(0x0,_0x31b8c1[_0x3f6ff0(0x7a6)])(_0x3e4017,Object[_0x3f6ff0(0x5bf)]({},_0x3afb7f,{'id':'shape-action-button-home-icon','ref':_0x216c92,'icon':_0x4024eb}));});_0x4f91b1[_0x4e4756(0x1cf)]=_0x4e4756(0x541);let _0x458b42={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':5.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':7.5,'r':0x1,'fill':'currentColor'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x376)}}]},_0x4c779e=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x6592bb,_0x2a9921){const _0x421f63=_0x4e4756;return(0x0,_0x31b8c1[_0x421f63(0x7a6)])(_0x3e4017,Object[_0x421f63(0x5bf)]({},_0x6592bb,{'id':_0x421f63(0x145),'ref':_0x2a9921,'icon':_0x458b42}));});_0x4c779e[_0x4e4756(0x1cf)]=_0x4e4756(0x5ea);let _0x219d5b={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x5e3),'fillRule':_0x4e4756(0x309)}}]},_0x651905=(0x0,_0x31b8c1['forwardRef'])(function(_0x1a70a1,_0xbf89c5){const _0x4b2349=_0x4e4756;return(0x0,_0x31b8c1[_0x4b2349(0x7a6)])(_0x3e4017,Object['assign']({},_0x1a70a1,{'id':'shape-action-button-movie-icon','ref':_0xbf89c5,'icon':_0x219d5b}));});_0x651905[_0x4e4756(0x1cf)]=_0x4e4756(0x707);let _0x27249b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x4cc)}}]},_0x5561e8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xa9b6e4,_0x1b0aba){const _0x53e58b=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0xa9b6e4,{'id':_0x53e58b(0x443),'ref':_0x1b0aba,'icon':_0x27249b}));});_0x5561e8[_0x4e4756(0x1cf)]=_0x4e4756(0x6a2);let _0x366f71={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7c9),'fillRule':'evenodd'}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x5c8),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x793),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x42c),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x3ac8dd=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2521bc,_0x45b05c){const _0x2d850=_0x4e4756;return(0x0,_0x31b8c1[_0x2d850(0x7a6)])(_0x3e4017,Object[_0x2d850(0x5bf)]({},_0x2521bc,{'id':_0x2d850(0x4f3),'ref':_0x45b05c,'icon':_0x366f71}));});_0x3ac8dd[_0x4e4756(0x1cf)]='ShapeActionButtonSoundIcon';let _0x455f8c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x3a4),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x50a986=(0x0,_0x31b8c1['forwardRef'])(function(_0x41e7a3,_0x5bfce8){const _0xa18997=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0xa18997(0x5bf)]({},_0x41e7a3,{'id':_0xa18997(0x243),'ref':_0x5bfce8,'icon':_0x455f8c}));});_0x50a986[_0x4e4756(0x1cf)]=_0x4e4756(0x7a1);let _0x369b4a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2e9),'fillRule':_0x4e4756(0x309)}}]},_0x5acde4=(0x0,_0x31b8c1['forwardRef'])(function(_0x48212a,_0x4ca62f){const _0xe48378=_0x4e4756;return(0x0,_0x31b8c1[_0xe48378(0x7a6)])(_0x3e4017,Object[_0xe48378(0x5bf)]({},_0x48212a,{'id':'shape-bent-arrow-icon','ref':_0x4ca62f,'icon':_0x369b4a}));});_0x5acde4[_0x4e4756(0x1cf)]=_0x4e4756(0x126);let _0x4aa9e5={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x73f),'strokeLinecap':'round','strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M15\x2013L18\x2016L15\x2019','strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x12439b=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x26264f,_0x58b3e4){const _0x38ec47=_0x4e4756;return(0x0,_0x31b8c1[_0x38ec47(0x7a6)])(_0x3e4017,Object[_0x38ec47(0x5bf)]({},_0x26264f,{'id':_0x38ec47(0x764),'ref':_0x58b3e4,'icon':_0x4aa9e5}));});_0x12439b[_0x4e4756(0x1cf)]=_0x4e4756(0x616);let _0x429de5={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x446),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x332),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x194),'strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x305779=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3190a8,_0x46b4f5){const _0x5a2912=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x5a2912(0x5bf)]({},_0x3190a8,{'id':_0x5a2912(0x4fb),'ref':_0x46b4f5,'icon':_0x429de5}));});_0x305779['displayName']='ShapeBentConnector3Arrow2Icon';let _0x422e68={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x569),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x61a15f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4980bf,_0x3819ca){const _0x2a5847=_0x4e4756;return(0x0,_0x31b8c1[_0x2a5847(0x7a6)])(_0x3e4017,Object[_0x2a5847(0x5bf)]({},_0x4980bf,{'id':_0x2a5847(0x21c),'ref':_0x3819ca,'icon':_0x422e68}));});_0x61a15f['displayName']='ShapeBentConnector3Icon';let _0x12f9f5={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':'0\x200\x2018\x2017','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x2d2),'attrs':{'id':_0x4e4756(0x1eb),'width':0x12,'height':0x11,'x':0x0,'y':0x0,'maskUnits':_0x4e4756(0x4d0)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x262),'d':'M17.083\x206H15V17H0V11H9V6H7.08301L12.083\x200L17.083\x206Z'}}]},{'tag':'g','attrs':{'mask':_0x4e4756(0x3bc)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x789)}}]}]},_0x562ca7=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3a3335,_0x471a09){const _0x2f3112=_0x4e4756;return(0x0,_0x31b8c1[_0x2f3112(0x7a6)])(_0x3e4017,Object[_0x2f3112(0x5bf)]({},_0x3a3335,{'id':_0x2f3112(0x7be),'ref':_0x471a09,'icon':_0x12f9f5}));});_0x562ca7['displayName']=_0x4e4756(0x470);let _0x32c1f0={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x344),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x5c2),'strokeWidth':1.6}}]},_0x54668a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4bce7f,_0x4d4a9b){const _0x1b3d8f=_0x4e4756;return(0x0,_0x31b8c1[_0x1b3d8f(0x7a6)])(_0x3e4017,Object[_0x1b3d8f(0x5bf)]({},_0x4bce7f,{'id':_0x1b3d8f(0x6cf),'ref':_0x4d4a9b,'icon':_0x32c1f0}));});_0x54668a[_0x4e4756(0x1cf)]='ShapeBevelIcon';let _0x117cb3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x375),'attrs':{},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x7aa)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x444)}}]}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M10\x204C14.9706\x204\x2019\x208.47715\x2019\x2014H13C13\x2012.067\x2011.6569\x2010.5\x2010\x2010.5C8.34315\x2010.5\x207\x2012.067\x207\x2014H1C1\x208.47715\x205.02944\x204\x2010\x204ZM10\x206C6.82909\x206\x204.23467\x208.78741\x203.37402\x2012H5.5C6.27164\x2010.0381\x207.94982\x208.44434\x2010\x208.44434C12.0502\x208.44434\x2013.8944\x2010.0381\x2014.666\x2012H16.792C15.9313\x208.78741\x2013.1709\x206\x2010\x206Z','strokeWidth':3.2,'clipPath':_0x4e4756(0x32f)}}],'defIds':[_0x4e4756(0x7aa)]},_0xe4e173=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x534e4b,_0x13d959){const _0x5857db=_0x4e4756;return(0x0,_0x31b8c1[_0x5857db(0x7a6)])(_0x3e4017,Object[_0x5857db(0x5bf)]({},_0x534e4b,{'id':_0x5857db(0x767),'ref':_0x13d959,'icon':_0x117cb3}));});_0xe4e173[_0x4e4756(0x1cf)]=_0x4e4756(0x631);let _0x1359e7={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x118),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x5cd),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x5d766a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3cec03,_0x2bfd0f){const _0x302199=_0x4e4756;return(0x0,_0x31b8c1[_0x302199(0x7a6)])(_0x3e4017,Object[_0x302199(0x5bf)]({},_0x3cec03,{'id':_0x302199(0x2fa),'ref':_0x2bfd0f,'icon':_0x1359e7}));});_0x5d766a[_0x4e4756(0x1cf)]='ShapeBorderCallout1Icon';let _0x2a9d40={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2d7),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x516),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x26e22d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x228c78,_0xc9d086){const _0x313ac=_0x4e4756;return(0x0,_0x31b8c1[_0x313ac(0x7a6)])(_0x3e4017,Object['assign']({},_0x228c78,{'id':_0x313ac(0x32e),'ref':_0xc9d086,'icon':_0x2a9d40}));});_0x26e22d[_0x4e4756(0x1cf)]=_0x4e4756(0x2b7);let _0x99cb0b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M19\x204V15H6V4H19Z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M6\x2018.5L1\x2015V9H6','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x2d4050=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xcbd8ed,_0x4c6de9){const _0x4eb4bf=_0x4e4756;return(0x0,_0x31b8c1[_0x4eb4bf(0x7a6)])(_0x3e4017,Object[_0x4eb4bf(0x5bf)]({},_0xcbd8ed,{'id':'shape-border-callout3-icon','ref':_0x4c6de9,'icon':_0x99cb0b}));});_0x2d4050[_0x4e4756(0x1cf)]=_0x4e4756(0x25c);let _0x42b1d0={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x30e),'strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M13\x202C14.8\x202\x2015.6\x202.75\x2015.6\x204.6V7.3C15.6\x208.55\x2016.15\x209.35\x2017.4\x209.9C16.15\x2010.45\x2015.6\x2011.25\x2015.6\x2012.5V15.4C15.6\x2017.25\x2014.8\x2018\x2013\x2018','strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x1bb5f5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x57eec0,_0x5b002d){const _0xb4c649=_0x4e4756;return(0x0,_0x31b8c1[_0xb4c649(0x7a6)])(_0x3e4017,Object['assign']({},_0x57eec0,{'id':_0xb4c649(0x249),'ref':_0x5b002d,'icon':_0x42b1d0}));});_0x1bb5f5[_0x4e4756(0x1cf)]=_0x4e4756(0x6c6);let _0x4ed1ff={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x7de),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x69b),'strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x4371d8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x463b61,_0x53f309){const _0x4e64de=_0x4e4756;return(0x0,_0x31b8c1[_0x4e64de(0x7a6)])(_0x3e4017,Object['assign']({},_0x463b61,{'id':_0x4e64de(0x6a7),'ref':_0x53f309,'icon':_0x4ed1ff}));});_0x4371d8[_0x4e4756(0x1cf)]='ShapeBracketPairIcon';let _0x1618c5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x118),'strokeDasharray':'4\x203','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x5cd),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x363138=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x234b51,_0x3746fb){const _0x3a5e6a=_0x4e4756;return(0x0,_0x31b8c1[_0x3a5e6a(0x7a6)])(_0x3e4017,Object[_0x3a5e6a(0x5bf)]({},_0x234b51,{'id':'shape-callout1-icon','ref':_0x3746fb,'icon':_0x1618c5}));});_0x363138[_0x4e4756(0x1cf)]=_0x4e4756(0x749);let _0x1aad05={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2d7),'strokeDasharray':'4\x203','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x516),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x3fb30d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x967298,_0x44e513){const _0x3ea512=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3ea512(0x5bf)]({},_0x967298,{'id':_0x3ea512(0x5b4),'ref':_0x44e513,'icon':_0x1aad05}));});_0x3fb30d[_0x4e4756(0x1cf)]=_0x4e4756(0x189);let _0x8d32b3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x62f),'strokeDasharray':_0x4e4756(0x78e),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x431),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x7c9de6=(0x0,_0x31b8c1['forwardRef'])(function(_0x5c45fd,_0x89d145){const _0x4e6848=_0x4e4756;return(0x0,_0x31b8c1[_0x4e6848(0x7a6)])(_0x3e4017,Object[_0x4e6848(0x5bf)]({},_0x5c45fd,{'id':'shape-callout3-icon','ref':_0x89d145,'icon':_0x8d32b3}));});_0x7c9de6['displayName']=_0x4e4756(0x756);let _0x3252bd={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x349),'attrs':{'cx':0xa,'cy':0x5,'stroke':'currentColor','rx':0x8,'ry':0x4,'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x3b6),'strokeWidth':1.6}}]},_0x24cc08=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1fce71,_0x293e95){const _0x463272=_0x4e4756;return(0x0,_0x31b8c1[_0x463272(0x7a6)])(_0x3e4017,Object[_0x463272(0x5bf)]({},_0x1fce71,{'id':'shape-can-icon','ref':_0x293e95,'icon':_0x3252bd}));});_0x24cc08[_0x4e4756(0x1cf)]=_0x4e4756(0x6cd);let _0x5d0be8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x23b),'strokeWidth':1.6}}]},_0x22cfd3=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4f01fc,_0x54de10){const _0xc139ee=_0x4e4756;return(0x0,_0x31b8c1[_0xc139ee(0x7a6)])(_0x3e4017,Object[_0xc139ee(0x5bf)]({},_0x4f01fc,{'id':_0xc139ee(0x229),'ref':_0x54de10,'icon':_0x5d0be8}));});_0x22cfd3[_0x4e4756(0x1cf)]='ShapeChartPlusIcon';let _0x4d8eae={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x108),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x563),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4bd),'strokeWidth':1.6}}]},_0x46ff83=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xba857e,_0x54050a){const _0x335b13=_0x4e4756;return(0x0,_0x31b8c1[_0x335b13(0x7a6)])(_0x3e4017,Object[_0x335b13(0x5bf)]({},_0xba857e,{'id':_0x335b13(0x724),'ref':_0x54050a,'icon':_0x4d8eae}));});_0x46ff83[_0x4e4756(0x1cf)]=_0x4e4756(0x4f2);let _0x4a12db={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x3e0),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M2.92894\x202.92891L17.0711\x2017.0711M17.0711\x202.92891L2.92894\x2017.0711','strokeWidth':1.6}}]},_0x17ab89=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x75970e,_0x15a073){const _0x4a4573=_0x4e4756;return(0x0,_0x31b8c1[_0x4a4573(0x7a6)])(_0x3e4017,Object[_0x4a4573(0x5bf)]({},_0x75970e,{'id':_0x4a4573(0x3ac),'ref':_0x15a073,'icon':_0x4a12db}));});_0x17ab89[_0x4e4756(0x1cf)]='ShapeChartXIcon';let _0x146fde={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x14e),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x28a46d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x382d80,_0xcfc11a){const _0x581963=_0x4e4756;return(0x0,_0x31b8c1[_0x581963(0x7a6)])(_0x3e4017,Object[_0x581963(0x5bf)]({},_0x382d80,{'id':_0x581963(0x19c),'ref':_0xcfc11a,'icon':_0x146fde}));});_0x28a46d[_0x4e4756(0x1cf)]=_0x4e4756(0x2ae);let _0x4e58fc={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x72d),'strokeWidth':1.6}}]},_0x4339a8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x6fb841,_0x14413d){const _0x141145=_0x4e4756;return(0x0,_0x31b8c1[_0x141145(0x7a6)])(_0x3e4017,Object[_0x141145(0x5bf)]({},_0x6fb841,{'id':'shape-chord-icon','ref':_0x14413d,'icon':_0x4e58fc}));});_0x4339a8[_0x4e4756(0x1cf)]='ShapeChordIcon';let _0x1e7447={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x5ca),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5ac)}}]},_0x55e67c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x35d2d4,_0x4a75b9){const _0x2a71e0=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x2a71e0(0x5bf)]({},_0x35d2d4,{'id':_0x2a71e0(0x53c),'ref':_0x4a75b9,'icon':_0x1e7447}));});_0x55e67c['displayName']=_0x4e4756(0x2da);let _0x37dd03={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'circle','attrs':{'cx':0x8,'cy':0x11,'r':0x2,'fill':_0x4e4756(0x455)}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0x4,'cy':0x13,'r':0x1,'fill':_0x4e4756(0x455)}},{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x547)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x39a)}}]},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M8\x201C9.2853\x201\x2010.457\x201.42475\x2011.3428\x202.12207C11.8615\x201.96265\x2012.419\x201.875\x2013\x201.875C15.7614\x201.875\x2018\x203.83375\x2018\x206.25C18\x206.96644\x2017.801\x207.64142\x2017.4521\x208.23828C18.9433\x208.74691\x2020\x2010.0153\x2020\x2011.5C20\x2013.433\x2018.2091\x2015\x2016\x2015C15.2712\x2015\x2014.5885\x2014.8283\x2014\x2014.5303C13.4115\x2014.8283\x2012.7288\x2015\x2012\x2015C10.4354\x2015\x209.0812\x2014.2137\x208.42383\x2013.0684C7.72298\x2014.226\x206.45206\x2015\x205\x2015C2.79086\x2015\x201\x2013.2091\x201\x2011C1\x209.31993\x202.03608\x207.88253\x203.50391\x207.29004C3.18147\x206.71156\x203\x206.06192\x203\x205.375C3\x202.95875\x205.23858\x201\x208\x201Z','strokeWidth':3.2,'clipPath':'url(#shape-cloud-callout-icon-clip)'}}]},_0x500ed5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2bba21,_0x28046b){const _0xe64547=_0x4e4756;return(0x0,_0x31b8c1[_0xe64547(0x7a6)])(_0x3e4017,Object[_0xe64547(0x5bf)]({},_0x2bba21,{'id':_0xe64547(0x3c9),'ref':_0x28046b,'icon':_0x37dd03}));});_0x500ed5['displayName']='ShapeCloudCalloutIcon';let _0x1930e1={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x52a)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':'M8\x202C9.2853\x202\x2010.457\x202.42475\x2011.3428\x203.12207C11.8615\x202.96265\x2012.419\x202.875\x2013\x202.875C15.7614\x202.875\x2018\x204.83375\x2018\x207.25C18\x207.97779\x2017.7949\x208.66285\x2017.4355\x209.2666C18.9353\x209.84364\x2020\x2011.297\x2020\x2013C20\x2015.2091\x2018.2091\x2017\x2016\x2017C15.5108\x2017\x2015.0426\x2016.9107\x2014.6094\x2016.75C13.8013\x2017.5234\x2012.7069\x2018\x2011.5\x2018C10.4258\x2018\x209.43972\x2017.6232\x208.66602\x2016.9951C7.77055\x2017.627\x206.67928\x2018\x205.5\x2018C2.46243\x2018\x200\x2015.5376\x200\x2012.5C0\x2010.2946\x201.29808\x208.39235\x203.17188\x207.51562C3.05993\x207.15196\x203\x206.76961\x203\x206.375C3\x203.95875\x205.23858\x202\x208\x202Z'}}]},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x321),'strokeWidth':3.2,'clipPath':_0x4e4756(0x4a0)}}]},_0x1f17c2=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5a1583,_0x4cfa7e){const _0x534525=_0x4e4756;return(0x0,_0x31b8c1[_0x534525(0x7a6)])(_0x3e4017,Object[_0x534525(0x5bf)]({},_0x5a1583,{'id':_0x534525(0x445),'ref':_0x4cfa7e,'icon':_0x1930e1}));});_0x1f17c2[_0x4e4756(0x1cf)]='ShapeCloudIcon';let _0x58b522={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0xfa),'strokeWidth':1.6}}]},_0x3463b0=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x589cc8,_0x1005cd){const _0x245978=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x245978(0x5bf)]({},_0x589cc8,{'id':_0x245978(0x4fa),'ref':_0x1005cd,'icon':_0x58b522}));});_0x3463b0[_0x4e4756(0x1cf)]=_0x4e4756(0x44d);let _0x51bc1d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x7af),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x750),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x44e),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x128),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x5945bb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x598c85,_0x253316){const _0x781fb3=_0x4e4756;return(0x0,_0x31b8c1[_0x781fb3(0x7a6)])(_0x3e4017,Object[_0x781fb3(0x5bf)]({},_0x598c85,{'id':'shape-corner-tabs-icon','ref':_0x253316,'icon':_0x51bc1d}));});_0x5945bb[_0x4e4756(0x1cf)]='ShapeCornerTabsIcon';let _0x2e688e={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x54c),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x46d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x4fe8c3=(0x0,_0x31b8c1['forwardRef'])(function(_0x2529b3,_0x503318){const _0x70bb1a=_0x4e4756;return(0x0,_0x31b8c1[_0x70bb1a(0x7a6)])(_0x3e4017,Object[_0x70bb1a(0x5bf)]({},_0x2529b3,{'id':_0x70bb1a(0x46f),'ref':_0x503318,'icon':_0x2e688e}));});_0x4fe8c3[_0x4e4756(0x1cf)]='ShapeCubeIcon';let _0x5cdf63={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x458),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':'M14\x2013L17\x2016L14\x2019','strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x340b30=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x474815,_0x3d8d5b){const _0xb1985e=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x474815,{'id':_0xb1985e(0x4cd),'ref':_0x3d8d5b,'icon':_0x5cdf63}));});_0x340b30[_0x4e4756(0x1cf)]='ShapeCurvedConnector3Arrow1Icon';let _0x38cf63={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x28d),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M6\x201L3\x204L6\x207','strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x2ef),'strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x4f4cee=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xa5f013,_0x35bc4d){const _0x27a0d1=_0x4e4756;return(0x0,_0x31b8c1[_0x27a0d1(0x7a6)])(_0x3e4017,Object[_0x27a0d1(0x5bf)]({},_0xa5f013,{'id':_0x27a0d1(0x4af),'ref':_0x35bc4d,'icon':_0x38cf63}));});_0x4f4cee[_0x4e4756(0x1cf)]='ShapeCurvedConnector3Arrow2Icon';let _0x458950={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x296),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x489102=(0x0,_0x31b8c1['forwardRef'])(function(_0x68dd4a,_0x40045a){const _0x2b294b=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x2b294b(0x5bf)]({},_0x68dd4a,{'id':_0x2b294b(0x30f),'ref':_0x40045a,'icon':_0x458950}));});_0x489102['displayName']=_0x4e4756(0x78b);let _0x3dae82={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x5cb),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x36b)}}]},_0x3f3c04=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x25361e,_0x210de3){const _0x2cd662=_0x4e4756;return(0x0,_0x31b8c1[_0x2cd662(0x7a6)])(_0x3e4017,Object[_0x2cd662(0x5bf)]({},_0x25361e,{'id':_0x2cd662(0x18b),'ref':_0x210de3,'icon':_0x3dae82}));});_0x3f3c04[_0x4e4756(0x1cf)]=_0x4e4756(0x2e2);let _0x7594fb={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x5ca),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2c3)}}]},_0x3de428=(0x0,_0x31b8c1['forwardRef'])(function(_0x2353fe,_0x3dd622){const _0x2cb102=_0x4e4756;return(0x0,_0x31b8c1[_0x2cb102(0x7a6)])(_0x3e4017,Object[_0x2cb102(0x5bf)]({},_0x2353fe,{'id':_0x2cb102(0x642),'ref':_0x3dd622,'icon':_0x7594fb}));});_0x3de428['displayName']=_0x4e4756(0x2bc);let _0x3495cc={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x5ca),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M2.43056\x2010.33482C2.53291\x2012.45003\x203.75147\x2013.5\x205.83333\x2013.5L8.75\x2013.5L8.89908\x2013.5L8.97145\x2013.5L14.1532\x2013.5L14.1532\x2017.5L7.4882\x2017C4.37244\x2016.7997\x201.94444\x2013.61919\x201.94444\x2010.4082C1.94444\x2010.33925\x202.42833\x2010.40326\x202.43056\x2010.33482ZM0\x2010.4082C0\x2014.67534\x203.22614\x2018.20746\x207.36667\x2018.47363L15.5556\x2019L15.5556\x2012L5.83333\x2012C4.75945\x2012\x203.88889\x2011.10457\x203.88889\x2010C3.88889\x208.8954\x204.75945\x207.5\x205.83333\x207.5L5.83333\x206C4.27158\x206\x202.92577\x206.9474\x202.30713\x208.3135C3.07699\x206.1577\x205.00062\x204.2097\x207.34388\x204L12.5477\x203.7135L12.6389\x203.7031L14.1532\x204.7246L12.5477\x206L5.83333\x206L5.83333\x207.5L10.6944\x207.5L10.6944\x209.5L17.5\x204.5928L10.6944\x200L10.6944\x202.043L7.17584\x202.3584C3.11617\x202.7215\x200.00018\x206.2168\x200\x2010.4082Z'}}]},_0x1dc3a7=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x262ee5,_0x5f2235){const _0x485875=_0x4e4756;return(0x0,_0x31b8c1[_0x485875(0x7a6)])(_0x3e4017,Object[_0x485875(0x5bf)]({},_0x262ee5,{'id':_0x485875(0x63f),'ref':_0x5f2235,'icon':_0x3495cc}));});_0x1dc3a7[_0x4e4756(0x1cf)]=_0x4e4756(0x57e);let _0x4f5618={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x5cb),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x785)}}]},_0x4c5ed4=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c7ff7,_0x8965b0){const _0x53c3f1=_0x4e4756;return(0x0,_0x31b8c1[_0x53c3f1(0x7a6)])(_0x3e4017,Object['assign']({},_0x1c7ff7,{'id':_0x53c3f1(0x7b8),'ref':_0x8965b0,'icon':_0x4f5618}));});_0x4c5ed4['displayName']='ShapeCurvedUpArrowIcon';let _0x4f967b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x72a)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':'M6.2721\x201L13.7279\x201L19\x206.2721L19\x2013.7279L13.7279\x2019L6.2721\x2019L1\x2013.7279L1\x206.2721Z'}}]},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x2e0),'strokeWidth':3.2,'clipPath':_0x4e4756(0x4fc)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1ec)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x53b)}}]},_0x590f47=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x58e7e6,_0x38cbe7){const _0x1bfe35=_0x4e4756;return(0x0,_0x31b8c1[_0x1bfe35(0x7a6)])(_0x3e4017,Object['assign']({},_0x58e7e6,{'id':_0x1bfe35(0x42e),'ref':_0x38cbe7,'icon':_0x4f967b}));});_0x590f47[_0x4e4756(0x1cf)]=_0x4e4756(0x163);let _0x48d522={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x4ef),'fillRule':_0x4e4756(0x309)}}]},_0x54a3dc=(0x0,_0x31b8c1['forwardRef'])(function(_0x3cf26d,_0x4ef1b2){const _0x518fa6=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x518fa6(0x5bf)]({},_0x3cf26d,{'id':_0x518fa6(0x1d8),'ref':_0x4ef1b2,'icon':_0x48d522}));});_0x54a3dc['displayName']='ShapeDiagStripeIcon';let _0x593159={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4df),'strokeWidth':1.6}}]},_0x268270=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x208d1a,_0x11eb07){const _0x353210=_0x4e4756;return(0x0,_0x31b8c1[_0x353210(0x7a6)])(_0x3e4017,Object[_0x353210(0x5bf)]({},_0x208d1a,{'id':_0x353210(0x7e0),'ref':_0x11eb07,'icon':_0x593159}));});_0x268270[_0x4e4756(0x1cf)]=_0x4e4756(0x18e);let _0x222c2d={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x4a9)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x2e0)}}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2e0),'strokeWidth':3.2,'clipPath':_0x4e4756(0x46e)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M11.9156\x205.81614C12.6636\x205.81614\x2013.2906\x206.02514\x2013.7746\x206.46514C14.2476\x206.90514\x2014.4896\x207.46614\x2014.4896\x208.15914C14.4896\x208.84114\x2014.2256\x209.45714\x2013.7196\x2010.0181C13.4116\x2010.3371\x2012.8726\x2010.7551\x2012.0916\x2011.2831C11.2446\x2011.8441\x2010.7386\x2012.3391\x2010.5736\x2012.7681H13.9726C14.2642\x2012.7681\x2014.5006\x2013.0045\x2014.5006\x2013.2961C14.5006\x2013.5877\x2014.2642\x2013.8241\x2013.9726\x2013.8241H9.5886C9.31245\x2013.8241\x209.0838\x2013.599\x209.12511\x2013.3259C9.21238\x2012.7491\x209.45704\x2012.2313\x209.8696\x2011.7671C10.1556\x2011.4261\x2010.7496\x2010.9531\x2011.6406\x2010.3371C12.1686\x209.96314\x2012.5426\x209.66614\x2012.7626\x209.43514C13.1146\x209.03914\x2013.3016\x208.61014\x2013.3016\x208.14814C13.3016\x207.70814\x2013.1806\x207.37814\x2012.9386\x207.15814C12.6966\x206.93814\x2012.3336\x206.82814\x2011.8716\x206.82814C11.3766\x206.82814\x2011.0026\x206.99314\x2010.7496\x207.33414C10.5733\x207.55452\x2010.4559\x207.83867\x2010.3907\x208.19314C10.3317\x208.5143\x2010.0727\x208.77514\x209.74618\x208.77514C9.40855\x208.77514\x209.12958\x208.49744\x209.18359\x208.16417C9.28101\x207.56304\x209.51701\x207.0627\x209.8916\x206.66314C10.3976\x206.09114\x2011.0796\x205.81614\x2011.9156\x205.81614Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M6.90665\x206.19395C7.03532\x206.07521\x207.20058\x206\x207.37567\x206C7.72213\x206\x208.003\x206.28087\x208.003\x206.62733V13.2545C8.003\x2013.5856\x207.73459\x2013.854\x207.4035\x2013.854C7.07241\x2013.854\x206.804\x2013.5856\x206.804\x2013.2545V7.441C6.49279\x207.73774\x206.12443\x207.9821\x205.70206\x208.17407C5.36097\x208.3291\x205\x208.05742\x205\x207.68276C5\x207.42431\x205.17744\x207.20223\x205.41875\x207.1097C5.64056\x207.02465\x205.86965\x206.91508\x206.111\x206.781C6.41515\x206.59513\x206.68037\x206.40277\x206.90665\x206.19395Z'}}]},_0x2e21dc=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x426c23,_0x2796e6){const _0x5e9f85=_0x4e4756;return(0x0,_0x31b8c1[_0x5e9f85(0x7a6)])(_0x3e4017,Object[_0x5e9f85(0x5bf)]({},_0x426c23,{'id':_0x5e9f85(0x2af),'ref':_0x2796e6,'icon':_0x222c2d}));});_0x2e21dc[_0x4e4756(0x1cf)]=_0x4e4756(0x7c4);let _0x361a37={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'circle','attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':4.2,'stroke':'currentColor','strokeWidth':1.6}}]},_0x4ea25a=(0x0,_0x31b8c1['forwardRef'])(function(_0x44f7d8,_0x2b56d7){return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x44f7d8,{'id':'shape-donut-icon','ref':_0x2b56d7,'icon':_0x361a37}));});_0x4ea25a['displayName']='ShapeDonutIcon';let _0x308529={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x1d6),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x614ccf=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xbe8bb3,_0x2336dc){const _0x27bb26=_0x4e4756;return(0x0,_0x31b8c1[_0x27bb26(0x7a6)])(_0x3e4017,Object[_0x27bb26(0x5bf)]({},_0xbe8bb3,{'id':_0x27bb26(0x4d1),'ref':_0x2336dc,'icon':_0x308529}));});_0x614ccf[_0x4e4756(0x1cf)]=_0x4e4756(0x3bd);let _0x1a69e5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M4\x208V2H16V8H11.4V14.9L10\x2017.3L8.6\x2014.9V8H4ZM13\x2014H14.3301L10\x2020L5.6699\x2014H7V9.6H2.4V0.4H17.6V9.6H13V14Z','fillRule':_0x4e4756(0x309)}}]},_0x556c44=(0x0,_0x31b8c1['forwardRef'])(function(_0x549d1e,_0x4bc605){const _0x13feb7=_0x4e4756;return(0x0,_0x31b8c1[_0x13feb7(0x7a6)])(_0x3e4017,Object[_0x13feb7(0x5bf)]({},_0x549d1e,{'id':_0x13feb7(0x664),'ref':_0x4bc605,'icon':_0x1a69e5}));});_0x556c44[_0x4e4756(0x1cf)]='ShapeDownArrowCalloutIcon';let _0x4530ad={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x347)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x4b2)}}]},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4b2),'strokeWidth':3.2,'clipPath':'url(#shape-down-arrow-icon-clip)'}}]},_0x32e425=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5c5ed9,_0x545703){const _0x22db02=_0x4e4756;return(0x0,_0x31b8c1[_0x22db02(0x7a6)])(_0x3e4017,Object[_0x22db02(0x5bf)]({},_0x5c5ed9,{'id':_0x22db02(0x3a7),'ref':_0x545703,'icon':_0x4530ad}));});_0x32e425['displayName']=_0x4e4756(0x440);let _0x501cde={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'ellipse','attrs':{'cx':0xa,'cy':0xa,'stroke':_0x4e4756(0x455),'rx':8.2,'ry':6.2,'strokeWidth':1.6}}]},_0x21c897=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3342b6,_0x3eb809){const _0x4462a7=_0x4e4756;return(0x0,_0x31b8c1[_0x4462a7(0x7a6)])(_0x3e4017,Object['assign']({},_0x3342b6,{'id':_0x4462a7(0x567),'ref':_0x3eb809,'icon':_0x501cde}));});_0x21c897[_0x4e4756(0x1cf)]=_0x4e4756(0x283);let _0x34df69={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5f4)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M4\x208.5V4H9V9.5L4\x208.5ZM7.5\x205.5H5.5V7.5L7.5\x208V5.5Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7cd),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x60d)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x6a8)}}]},_0x379b57=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x9e312f,_0x4d9f8d){const _0x3908b3=_0x4e4756;return(0x0,_0x31b8c1[_0x3908b3(0x7a6)])(_0x3e4017,Object[_0x3908b3(0x5bf)]({},_0x9e312f,{'id':_0x3908b3(0x16a),'ref':_0x4d9f8d,'icon':_0x34df69}));});_0x379b57[_0x4e4756(0x1cf)]=_0x4e4756(0x66a);let _0x3aa278={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x367)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x102),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x68b),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0xfc)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x4db)}}]},_0x1bc875=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x56953e,_0x3920a7){const _0x3c93a0=_0x4e4756;return(0x0,_0x31b8c1[_0x3c93a0(0x7a6)])(_0x3e4017,Object['assign']({},_0x56953e,{'id':'shape-ellipse-ribbon2-icon','ref':_0x3920a7,'icon':_0x3aa278}));});_0x1bc875[_0x4e4756(0x1cf)]=_0x4e4756(0x259);let _0x4ca82d={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x6c3),'attrs':{'width':16.4,'height':12.4,'x':1.8,'y':3.8,'stroke':_0x4e4756(0x455),'rx':2.2,'strokeWidth':1.6}}]},_0x38c33c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x53ce8a,_0x390e06){const _0x1641d7=_0x4e4756;return(0x0,_0x31b8c1[_0x1641d7(0x7a6)])(_0x3e4017,Object[_0x1641d7(0x5bf)]({},_0x53ce8a,{'id':'shape-flow-chart-alternate-process-icon','ref':_0x390e06,'icon':_0x4ca82d}));});_0x38c33c['displayName']='ShapeFlowChartAlternateProcessIcon';let _0x216528={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x403),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x3fd41b=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xe1afd6,_0x18ae24){const _0x3488da=_0x4e4756;return(0x0,_0x31b8c1[_0x3488da(0x7a6)])(_0x3e4017,Object[_0x3488da(0x5bf)]({},_0xe1afd6,{'id':_0x3488da(0x41c),'ref':_0x18ae24,'icon':_0x216528}));});_0x3fd41b[_0x4e4756(0x1cf)]='ShapeFlowChartCollateIcon';let _0x301460={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'circle','attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':'currentColor','strokeWidth':1.6}}]},_0x55e18b=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1d3287,_0x30941b){const _0x3e0b9e=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3e0b9e(0x5bf)]({},_0x1d3287,{'id':_0x3e0b9e(0x4dc),'ref':_0x30941b,'icon':_0x301460}));});_0x55e18b[_0x4e4756(0x1cf)]=_0x4e4756(0x6e0);let _0x416199={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x61e),'strokeWidth':1.6}}]},_0x4cf52a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3da7f0,_0x2c4ea6){const _0x538e63=_0x4e4756;return(0x0,_0x31b8c1[_0x538e63(0x7a6)])(_0x3e4017,Object['assign']({},_0x3da7f0,{'id':_0x538e63(0x650),'ref':_0x2c4ea6,'icon':_0x416199}));});_0x4cf52a[_0x4e4756(0x1cf)]='ShapeFlowChartDecisionIcon';let _0x3c0361={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x324),'strokeWidth':1.6}}]},_0x67d566=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x151e09,_0x4899fc){const _0x1f9d8a=_0x4e4756;return(0x0,_0x31b8c1[_0x1f9d8a(0x7a6)])(_0x3e4017,Object['assign']({},_0x151e09,{'id':_0x1f9d8a(0x2d9),'ref':_0x4899fc,'icon':_0x3c0361}));});_0x67d566[_0x4e4756(0x1cf)]=_0x4e4756(0x2d0);let _0x1f8df4={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4e4),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x110fae=(0x0,_0x31b8c1['forwardRef'])(function(_0x550ebd,_0x5bc8c4){const _0x20fc6d=_0x4e4756;return(0x0,_0x31b8c1[_0x20fc6d(0x7a6)])(_0x3e4017,Object[_0x20fc6d(0x5bf)]({},_0x550ebd,{'id':_0x20fc6d(0x330),'ref':_0x5bc8c4,'icon':_0x1f8df4}));});_0x110fae[_0x4e4756(0x1cf)]=_0x4e4756(0x1aa);let _0x1877f1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M2\x204H18V13.8C15.6\x2013.45\x2013.05\x2014.05\x2011\x2015.5C8.45\x2017.25\x205.25\x2017.35\x202\x2015.45V4Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x57b275=(0x0,_0x31b8c1['forwardRef'])(function(_0x1a314d,_0xce352b){const _0x2a359b=_0x4e4756;return(0x0,_0x31b8c1[_0x2a359b(0x7a6)])(_0x3e4017,Object[_0x2a359b(0x5bf)]({},_0x1a314d,{'id':_0x2a359b(0x564),'ref':_0xce352b,'icon':_0x1877f1}));});_0x57b275[_0x4e4756(0x1cf)]=_0x4e4756(0x5bc);let _0x253936={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M10\x203.23633L17.3818\x2018H2.61816L10\x203.23633Z','strokeWidth':1.6}}]},_0x4a47c1=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5d685c,_0x32b256){const _0x2660de=_0x4e4756;return(0x0,_0x31b8c1[_0x2660de(0x7a6)])(_0x3e4017,Object[_0x2660de(0x5bf)]({},_0x5d685c,{'id':_0x2660de(0x284),'ref':_0x32b256,'icon':_0x253936}));});_0x4a47c1[_0x4e4756(0x1cf)]=_0x4e4756(0x741);let _0x56afe4={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x36a),'strokeWidth':1.6}}]},_0x5522d8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3377bb,_0x2d6d9d){const _0x3f86b2=_0x4e4756;return(0x0,_0x31b8c1[_0x3f86b2(0x7a6)])(_0x3e4017,Object['assign']({},_0x3377bb,{'id':_0x3f86b2(0x490),'ref':_0x2d6d9d,'icon':_0x56afe4}));});_0x5522d8[_0x4e4756(0x1cf)]=_0x4e4756(0x175);let _0x5251a3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x218),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M6\x202.8V17.2M1.8\x207H18.2','strokeWidth':1.6}}]},_0x42c72d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x53d48d,_0x281cb5){const _0x591993=_0x4e4756;return(0x0,_0x31b8c1[_0x591993(0x7a6)])(_0x3e4017,Object[_0x591993(0x5bf)]({},_0x53d48d,{'id':'shape-flow-chart-internal-storage-icon','ref':_0x281cb5,'icon':_0x5251a3}));});_0x42c72d[_0x4e4756(0x1cf)]=_0x4e4756(0x132);let _0x422dd5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x349),'attrs':{'cx':0xa,'cy':0x7,'stroke':_0x4e4756(0x455),'rx':0x8,'ry':0x4,'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x5dc),'strokeWidth':1.6}}]},_0x716344=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4cb41a,_0x16263e){const _0x475770=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x475770(0x5bf)]({},_0x4cb41a,{'id':_0x475770(0x1d9),'ref':_0x16263e,'icon':_0x422dd5}));});_0x716344[_0x4e4756(0x1cf)]='ShapeFlowChartMagneticDiskIcon';let _0x15fa78={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x349),'attrs':{'cx':0xd,'cy':0xa,'stroke':_0x4e4756(0x455),'rx':0x4,'ry':0x8,'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x1b0),'strokeWidth':1.6}}]},_0x57a66d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3e69d6,_0xcc4d16){const _0x233a11=_0x4e4756;return(0x0,_0x31b8c1[_0x233a11(0x7a6)])(_0x3e4017,Object['assign']({},_0x3e69d6,{'id':_0x233a11(0x505),'ref':_0xcc4d16,'icon':_0x15fa78}));});_0x57a66d[_0x4e4756(0x1cf)]=_0x4e4756(0x453);let _0x396974={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x66f),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x32a8c0=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4ae0a2,_0x2f9e6d){const _0x390bde=_0x4e4756;return(0x0,_0x31b8c1[_0x390bde(0x7a6)])(_0x3e4017,Object[_0x390bde(0x5bf)]({},_0x4ae0a2,{'id':'shape-flow-chart-magnetic-tape-icon','ref':_0x2f9e6d,'icon':_0x396974}));});_0x32a8c0['displayName']=_0x4e4756(0x6d9);let _0x3eab68={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x432),'strokeWidth':1.6}}]},_0x358c55=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x856c69,_0x22dbb3){const _0x270f32=_0x4e4756;return(0x0,_0x31b8c1[_0x270f32(0x7a6)])(_0x3e4017,Object[_0x270f32(0x5bf)]({},_0x856c69,{'id':_0x270f32(0x4e8),'ref':_0x22dbb3,'icon':_0x3eab68}));});_0x358c55[_0x4e4756(0x1cf)]='ShapeFlowChartManualInputIcon';let _0x58df9a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x553),'strokeWidth':1.6}}]},_0x2e7a2e=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x13ced8,_0x4d4d9d){const _0x310bc6=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x13ced8,{'id':_0x310bc6(0x799),'ref':_0x4d4d9d,'icon':_0x58df9a}));});_0x2e7a2e['displayName']='ShapeFlowChartManualOperationIcon';let _0x498abb={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x486),'strokeWidth':1.6}}]},_0x49cad3=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4bdb61,_0x50f161){const _0x9a5db=_0x4e4756;return(0x0,_0x31b8c1[_0x9a5db(0x7a6)])(_0x3e4017,Object[_0x9a5db(0x5bf)]({},_0x4bdb61,{'id':_0x9a5db(0x701),'ref':_0x50f161,'icon':_0x498abb}));});_0x49cad3[_0x4e4756(0x1cf)]=_0x4e4756(0x656);let _0x5801d4={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M4\x206V4.5H16V12H14','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x71f),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x609),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x37253e=(0x0,_0x31b8c1['forwardRef'])(function(_0x158937,_0x2c91a9){const _0x34b7c1=_0x4e4756;return(0x0,_0x31b8c1[_0x34b7c1(0x7a6)])(_0x3e4017,Object[_0x34b7c1(0x5bf)]({},_0x158937,{'id':'shape-flow-chart-multidocument-icon','ref':_0x2c91a9,'icon':_0x5801d4}));});_0x37253e[_0x4e4756(0x1cf)]=_0x4e4756(0x3d6);let _0x47428f={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x486),'strokeWidth':1.6}}]},_0x1e4c4d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x43336d,_0x45934d){const _0x3e344a=_0x4e4756;return(0x0,_0x31b8c1[_0x3e344a(0x7a6)])(_0x3e4017,Object[_0x3e344a(0x5bf)]({},_0x43336d,{'id':_0x3e344a(0x6fe),'ref':_0x45934d,'icon':_0x47428f}));});_0x1e4c4d[_0x4e4756(0x1cf)]='ShapeFlowChartOfflineStorageIcon';let _0x172a6e={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M4\x201H16V15.4194L10\x2018.8481L4\x2015.4194V1Z','strokeWidth':1.6}}]},_0x4633c5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xd7102d,_0x395b7e){const _0x54cd63=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x54cd63(0x5bf)]({},_0xd7102d,{'id':_0x54cd63(0x662),'ref':_0x395b7e,'icon':_0x172a6e}));});_0x4633c5[_0x4e4756(0x1cf)]='ShapeFlowChartOffpageConnectorIcon';let _0x5d9e31={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x772),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M15\x202H7C4.2\x202\x202\x205.6\x202\x2010C2\x2014.4\x204.2\x2018\x207\x2018H15','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x2b0742=(0x0,_0x31b8c1['forwardRef'])(function(_0xa2e099,_0x38528b){const _0x28720f=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x28720f(0x5bf)]({},_0xa2e099,{'id':'shape-flow-chart-online-storage-icon','ref':_0x38528b,'icon':_0x5d9e31}));});_0x2b0742[_0x4e4756(0x1cf)]=_0x4e4756(0x37b);let _0x3086a3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x6f4),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x1aa2b4=(0x0,_0x31b8c1['forwardRef'])(function(_0x1b32ff,_0x5f31a5){const _0x1ae4e9=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x1ae4e9(0x5bf)]({},_0x1b32ff,{'id':_0x1ae4e9(0x398),'ref':_0x5f31a5,'icon':_0x3086a3}));});_0x1aa2b4[_0x4e4756(0x1cf)]=_0x4e4756(0x7c0);let _0x2f02e0={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x218),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x696),'strokeWidth':1.6}}]},_0x3d8a74=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x109b8b,_0x21e7c6){const _0x5b950e=_0x4e4756;return(0x0,_0x31b8c1[_0x5b950e(0x7a6)])(_0x3e4017,Object[_0x5b950e(0x5bf)]({},_0x109b8b,{'id':_0x5b950e(0x14d),'ref':_0x21e7c6,'icon':_0x2f02e0}));});_0x3d8a74[_0x4e4756(0x1cf)]=_0x4e4756(0x1d1);let _0x1ad5f1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x117),'strokeWidth':1.6}}]},_0x59ae24=(0x0,_0x31b8c1['forwardRef'])(function(_0xe6a33c,_0x4cc048){return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0xe6a33c,{'id':'shape-flow-chart-preparation-icon','ref':_0x4cc048,'icon':_0x1ad5f1}));});_0x59ae24[_0x4e4756(0x1cf)]=_0x4e4756(0x565);let _0x12ed63={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0xfb),'strokeWidth':1.6}}]},_0x42664f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x6b52e1,_0x2ea332){const _0x22b4fc=_0x4e4756;return(0x0,_0x31b8c1[_0x22b4fc(0x7a6)])(_0x3e4017,Object[_0x22b4fc(0x5bf)]({},_0x6b52e1,{'id':_0x22b4fc(0x16e),'ref':_0x2ea332,'icon':_0x12ed63}));});_0x42664f['displayName']='ShapeFlowChartProcessIcon';let _0x190531={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2f5),'strokeWidth':1.6}}]},_0x38a3ef=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x43bae9,_0x5a257b){const _0x4561cd=_0x4e4756;return(0x0,_0x31b8c1[_0x4561cd(0x7a6)])(_0x3e4017,Object[_0x4561cd(0x5bf)]({},_0x43bae9,{'id':_0x4561cd(0x74e),'ref':_0x5a257b,'icon':_0x190531}));});_0x38a3ef[_0x4e4756(0x1cf)]=_0x4e4756(0x267);let _0x503f2a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x55b),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x39a7e2=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x564280,_0x347d06){const _0x21d898=_0x4e4756;return(0x0,_0x31b8c1[_0x21d898(0x7a6)])(_0x3e4017,Object[_0x21d898(0x5bf)]({},_0x564280,{'id':'shape-flow-chart-punched-tape-icon','ref':_0x347d06,'icon':_0x503f2a}));});_0x39a7e2['displayName']=_0x4e4756(0x3fe);let _0x2ae820={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M10\x201.6L16.8\x2010L10\x2018.4L3.2\x2010L10\x201.6Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x716),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x287506=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x529692,_0x3f3315){const _0x489db7=_0x4e4756;return(0x0,_0x31b8c1[_0x489db7(0x7a6)])(_0x3e4017,Object[_0x489db7(0x5bf)]({},_0x529692,{'id':_0x489db7(0x4e7),'ref':_0x3f3315,'icon':_0x2ae820}));});_0x287506[_0x4e4756(0x1cf)]=_0x4e4756(0x769);let _0x5779f7={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':'currentColor','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x744),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x2aa805=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4fc0aa,_0xcdf334){const _0x5ce6fb=_0x4e4756;return(0x0,_0x31b8c1[_0x5ce6fb(0x7a6)])(_0x3e4017,Object[_0x5ce6fb(0x5bf)]({},_0x4fc0aa,{'id':'shape-flow-chart-summing-junction-icon','ref':_0xcdf334,'icon':_0x5779f7}));});_0x2aa805[_0x4e4756(0x1cf)]=_0x4e4756(0x5d0);let _0x36151e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'rect','attrs':{'width':18.4,'height':12.4,'x':0.8,'y':3.8,'stroke':_0x4e4756(0x455),'rx':6.2,'strokeWidth':1.6}}]},_0x56e91a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x35c600,_0xb0ff44){const _0x5b5dfe=_0x4e4756;return(0x0,_0x31b8c1[_0x5b5dfe(0x7a6)])(_0x3e4017,Object['assign']({},_0x35c600,{'id':_0x5b5dfe(0x605),'ref':_0xb0ff44,'icon':_0x36151e}));});_0x56e91a[_0x4e4756(0x1cf)]=_0x4e4756(0x7a5);let _0xf46f4b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x375),'attrs':{},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x5ec)},'children':[{'tag':'path','attrs':{'d':'M17\x203H3V20C1.89543\x2020\x201\x2019.1046\x201\x2018V3C1\x201.89543\x201.89543\x201\x203\x201H17C18.1046\x201\x2019\x201.89543\x2019\x203V13L12\x2020H3V18H11.1719L17\x2012.1719V3Z'}}]},{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x211)},'children':[{'tag':'path','attrs':{'d':_0x4e4756(0x6ce)}}]}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M17\x203H3V20C1.89543\x2020\x201\x2019.1046\x201\x2018V3C1\x201.89543\x201.89543\x201\x203\x201H17C18.1046\x201\x2019\x201.89543\x2019\x203V13L12\x2020H3V18H11.1719L17\x2012.1719V3Z','strokeWidth':3.2,'clipPath':_0x4e4756(0x773)}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x6ce),'strokeWidth':3.2,'clipPath':_0x4e4756(0x235)}}],'defIds':[_0x4e4756(0x5ec),_0x4e4756(0x211)]},_0x125e43=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x553121,_0x22949a){const _0x53d9f5=_0x4e4756;return(0x0,_0x31b8c1[_0x53d9f5(0x7a6)])(_0x3e4017,Object['assign']({},_0x553121,{'id':_0x53d9f5(0xee),'ref':_0x22949a,'icon':_0xf46f4b}));});_0x125e43['displayName']=_0x4e4756(0x2b8);let _0x45b777={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x344),'strokeWidth':1.6}}]},_0x201b28=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x11ff03,_0x1a9da2){const _0x35be04=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x35be04(0x5bf)]({},_0x11ff03,{'id':_0x35be04(0x5b8),'ref':_0x1a9da2,'icon':_0x45b777}));});_0x201b28['displayName']='ShapeFrameIcon';let _0x4a54b1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M1\x204.5C1\x202.567\x205.0294\x201\x2010\x201C14.9706\x201\x2019\x202.567\x2019\x204.5L14.454\x2015.4104C13.7046\x2017.209\x2011.9474\x2018.4\x2010\x2018.4C8.0526\x2018.4\x206.2954\x2017.209\x205.546\x2015.4104L1\x204.5Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x349),'attrs':{'cx':0xa,'cy':5.5,'stroke':_0x4e4756(0x455),'rx':5.2,'ry':1.7,'strokeWidth':1.6}}]},_0x52dcf0=(0x0,_0x31b8c1['forwardRef'])(function(_0x398995,_0x18b028){const _0x96a387=_0x4e4756;return(0x0,_0x31b8c1[_0x96a387(0x7a6)])(_0x3e4017,Object[_0x96a387(0x5bf)]({},_0x398995,{'id':_0x96a387(0x1f9),'ref':_0x18b028,'icon':_0x4a54b1}));});_0x52dcf0[_0x4e4756(0x1cf)]=_0x4e4756(0x6cc);let _0x446288={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M15.8155\x2010.005C15.8154\x209.39294\x2015.7031\x208.8081\x2015.4991\x208.26375L15.1817\x207.41415L15.5547\x206.66512L14.8291\x206.85262L14.0049\x206.14559C13.3522\x205.58559\x2012.5566\x205.17075\x2011.6729\x204.95907L10.7579\x204.73934L10.3213\x203.91512L9.88579\x204.73934L8.97075\x204.95907C8.07067\x205.1748\x207.26258\x205.59916\x206.60551\x206.17196L5.8018\x206.87313L4.87016\x206.65438L4.90141\x206.70711L5.38872\x207.52743L5.08598\x208.43075C4.91964\x208.92801\x204.82917\x209.45617\x204.82915\x2010.005C4.82915\x2010.508\x204.90665\x2010.995\x205.04887\x2011.4591L5.3184\x2012.3399L4.87114\x2013.0919L5.627\x2012.9151L6.44243\x2013.6876C7.06499\x2014.2768\x207.83828\x2014.7268\x208.70708\x2014.9796L9.08501\x2015.0763L10.0303\x2015.2823L10.3213\x2015.8331L10.6133\x2015.2823L11.5586\x2015.0763C12.5814\x2014.8534\x2013.4892\x2014.3605\x2014.2012\x2013.6866L15.0166\x2012.9151L15.7706\x2013.0919L15.3252\x2012.3419L15.5948\x2011.46C15.7375\x2010.9945\x2015.8155\x2010.5071\x2015.8155\x2010.005ZM10.3272\x2017.628L10.3291\x2017.6309V17.6261L10.3272\x2017.628ZM10.3291\x2017.6309L10.3272\x2017.628L10.3291\x2017.6261V17.6309ZM17.8975\x2010.005C17.8975\x2010.7226\x2017.7869\x2011.4154\x2017.586\x2012.0704L18.6582\x2013.8741C18.7244\x2013.9856\x2018.7692\x2014.0998\x2018.795\x2014.214C18.8338\x2014.3852\x2018.8294\x2014.5561\x2018.7901\x2014.7169C18.6717\x2015.1996\x2018.2362\x2015.5914\x2017.6905\x2015.6261C17.5693\x2015.6338\x2017.4423\x2015.6242\x2017.3125\x2015.5938L15.6329\x2015.1993C14.6472\x2016.1322\x2013.3982\x2016.8062\x2012.002\x2017.1104L11.4073\x2018.2364C11.3808\x2018.2863\x2011.3511\x2018.333\x2011.3194\x2018.377L11.3135\x2018.3858C11.2801\x2018.4314\x2011.2435\x2018.4736\x2011.2051\x2018.5128C11.1959\x2018.5222\x2011.1853\x2018.5301\x2011.1758\x2018.5391C11.1462\x2018.5675\x2011.116\x2018.5945\x2011.084\x2018.6192C11.0664\x2018.6329\x2011.0476\x2018.6447\x2011.0293\x2018.6573C11.0048\x2018.6742\x2010.9807\x2018.6913\x2010.9551\x2018.7061C10.9335\x2018.7187\x2010.911\x2018.7292\x2010.8887\x2018.7403C10.8635\x2018.753\x2010.8385\x2018.7656\x2010.8125\x2018.7764C10.7881\x2018.7866\x2010.7633\x2018.7952\x2010.7383\x2018.8038C10.7146\x2018.812\x2010.6912\x2018.8205\x2010.667\x2018.8272C10.6435\x2018.8338\x2010.6196\x2018.8386\x2010.5957\x2018.8438C10.5672\x2018.85\x2010.5387\x2018.8562\x2010.5098\x2018.8604C10.4861\x2018.8639\x2010.4624\x2018.8661\x2010.4385\x2018.8682C10.4115\x2018.8707\x2010.3846\x2018.8724\x2010.3575\x2018.8731C10.3307\x2018.8739\x2010.3041\x2018.8741\x2010.2774\x2018.8731C10.2535\x2018.8723\x2010.2299\x2018.8704\x2010.2061\x2018.8682C10.1793\x2018.8658\x2010.1526\x2018.8635\x2010.126\x2018.8595C10.0985\x2018.8552\x2010.0712\x2018.8499\x2010.044\x2018.8438C10.0207\x2018.8387\x209.99765\x2018.8327\x209.97465\x2018.8263C9.94926\x2018.8191\x209.92439\x2018.8106\x209.89946\x2018.8018C9.87348\x2018.7927\x209.84768\x2018.7834\x209.82231\x2018.7725C9.79941\x2018.7627\x209.77725\x2018.7515\x209.75493\x2018.7403C9.73205\x2018.7288\x209.70876\x2018.7182\x209.68657\x2018.7052C9.66143\x2018.6905\x209.63746\x2018.6739\x209.61333\x2018.6573C9.59261\x2018.643\x209.57169\x2018.629\x209.5518\x2018.6134C9.52654\x2018.5935\x209.50333\x2018.5711\x209.47954\x2018.5489C9.46509\x2018.5354\x209.44945\x2018.5232\x209.43559\x2018.5089C9.37067\x2018.4419\x209.31451\x2018.3647\x209.26469\x2018.2794C9.2562\x2018.2648\x209.24534\x2018.2515\x209.23735\x2018.2364L8.64165\x2017.1104C7.24555\x2016.8061\x205.99629\x2016.1322\x205.01079\x2015.1993L3.3311\x2015.5938C3.26644\x2015.609\x203.20251\x2015.6188\x203.13969\x2015.6241L2.96489\x2015.6261L2.96391\x2015.6251C2.92981\x2015.6232\x202.89653\x2015.618\x202.86333\x2015.6134C2.83869\x2015.6099\x202.81418\x2015.6075\x202.79008\x2015.6026C2.76112\x2015.5968\x202.73324\x2015.588\x202.70512\x2015.5802C2.67854\x2015.5728\x202.65178\x2015.5668\x202.62602\x2015.5577C2.59652\x2015.5473\x202.56843\x2015.5341\x202.54008\x2015.5216C2.5184\x2015.512\x202.49659\x2015.5031\x202.47563\x2015.4923C2.45153\x2015.4799\x202.42841\x2015.4661\x202.40532\x2015.4522C2.37974\x2015.4368\x202.35437\x2015.4215\x202.33012\x2015.4044C2.30898\x2015.3895\x202.28867\x2015.3737\x202.2686\x2015.3575C2.24748\x2015.3405\x202.22695\x2015.323\x202.20708\x2015.3048C2.18634\x2015.2857\x202.16682\x2015.2656\x202.14751\x2015.2452C2.12938\x2015.2261\x202.11158\x2015.2068\x202.09477\x2015.1866C2.07736\x2015.1657\x202.06089\x2015.1442\x202.04497\x2015.1222C2.0283\x2015.0991\x202.01208\x2015.0759\x201.99711\x2015.0518C1.98479\x2015.032\x201.97308\x2015.0118\x201.96196\x2014.9913C1.94861\x2014.9667\x201.9364\x2014.9416\x201.92485\x2014.9161C1.91394\x2014.892\x201.90381\x2014.8677\x201.89458\x2014.8429C1.885\x2014.8172\x201.8769\x2014.7911\x201.86919\x2014.7647C1.86238\x2014.7414\x201.85593\x2014.7182\x201.85063\x2014.6944C1.84356\x2014.6628\x201.83832\x2014.631\x201.83403\x2014.5987C1.83119\x2014.5773\x201.82779\x2014.5559\x201.82622\x2014.5343C1.82368\x2014.4996\x201.82443\x2014.4649\x201.82524\x2014.4298C1.82568\x2014.4113\x201.82482\x2014.3927\x201.82622\x2014.3741C1.82925\x2014.3334\x201.83603\x2014.293\x201.84379\x2014.252C1.84662\x2014.2372\x201.84813\x2014.222\x201.85161\x2014.2071C1.85979\x2014.172\x201.87197\x2014.1377\x201.88383\x2014.1026C1.90975\x2014.0262\x201.94192\x2013.9489\x201.98637\x2013.8741L3.05766\x2012.0694C2.85701\x2011.4148\x202.74711\x2010.7222\x202.74711\x2010.005C2.74714\x209.22538\x202.87579\x208.47482\x203.11137\x207.77059L1.98637\x205.87606C1.88709\x205.7089\x201.83532\x205.53511\x201.82426\x205.36532C1.81695\x205.25206\x201.82828\x205.14046\x201.85454\x205.03329C1.97261\x204.55029\x202.40824\x204.15875\x202.95415\x204.12411C3.07531\x204.11641\x203.20236\x204.12594\x203.33208\x204.15633L5.23735\x204.60262C6.1464\x203.81014\x207.2568\x203.22813\x208.4854\x202.93368L9.23735\x201.51375C9.68886\x200.660788\x2010.9558\x200.660771\x2011.4073\x201.51375L12.1582\x202.93368C13.3672\x203.22327\x2014.4605\x203.79249\x2015.3614\x204.56551L16.8965\x204.17098C17.5875\x203.99312\x2018.2086\x204.4077\x2018.3829\x204.97762C18.462\x205.23629\x2018.4489\x205.52698\x2018.3086\x205.80868L17.4493\x207.53231C17.7387\x208.30444\x2017.8975\x209.13684\x2017.8975\x2010.005Z'}}]},_0x4ad5fe=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x134db2,_0x2da9d3){const _0xce6736=_0x4e4756;return(0x0,_0x31b8c1[_0xce6736(0x7a6)])(_0x3e4017,Object['assign']({},_0x134db2,{'id':_0xce6736(0x49c),'ref':_0x2da9d3,'icon':_0x446288}));});_0x4ad5fe[_0x4e4756(0x1cf)]='ShapeGear6Icon';let _0x4e814d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x451)}}]},_0x5bac45=(0x0,_0x31b8c1['forwardRef'])(function(_0x69001f,_0x4242c5){const _0x205216=_0x4e4756;return(0x0,_0x31b8c1[_0x205216(0x7a6)])(_0x3e4017,Object[_0x205216(0x5bf)]({},_0x69001f,{'id':'shape-gear9-icon','ref':_0x4242c5,'icon':_0x4e814d}));});_0x5bac45[_0x4e4756(0x1cf)]=_0x4e4756(0x620);let _0x5e77c9={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x149),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x593),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x32c22b=(0x0,_0x31b8c1['forwardRef'])(function(_0x1e5174,_0x2211e8){const _0x31e453=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x31e453(0x5bf)]({},_0x1e5174,{'id':_0x31e453(0x655),'ref':_0x2211e8,'icon':_0x5e77c9}));});_0x32c22b[_0x4e4756(0x1cf)]='ShapeHalfFrameIcon';let _0x45d510={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x137),'fillRule':_0x4e4756(0x309)}}]},_0x89443d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1d761a,_0x4790fc){const _0x5a0be5=_0x4e4756;return(0x0,_0x31b8c1[_0x5a0be5(0x7a6)])(_0x3e4017,Object['assign']({},_0x1d761a,{'id':_0x5a0be5(0x1cd),'ref':_0x4790fc,'icon':_0x45d510}));});_0x89443d[_0x4e4756(0x1cf)]=_0x4e4756(0x306);let _0x574a27={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':'shape-heptagon-icon-frame-clip'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x2e0)}}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x2e0),'strokeWidth':3.2,'clipPath':_0x4e4756(0x4f1)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x685)}}]},_0x2e42e4=(0x0,_0x31b8c1['forwardRef'])(function(_0x389fea,_0x4d9007){const _0x5f095c=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x5f095c(0x5bf)]({},_0x389fea,{'id':_0x5f095c(0x6e7),'ref':_0x4d9007,'icon':_0x574a27}));});_0x2e42e4[_0x4e4756(0x1cf)]='ShapeHeptagonIcon';let _0x265002={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x5fb),'strokeWidth':1.6}}]},_0x590809=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5a1ce0,_0x1b9671){const _0x35701d=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x5a1ce0,{'id':_0x35701d(0x758),'ref':_0x1b9671,'icon':_0x265002}));});_0x590809[_0x4e4756(0x1cf)]=_0x4e4756(0x2ec);let _0x3eaae1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x497),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x2c9605=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2ee645,_0x4ab254){const _0x5772e8=_0x4e4756;return(0x0,_0x31b8c1[_0x5772e8(0x7a6)])(_0x3e4017,Object[_0x5772e8(0x5bf)]({},_0x2ee645,{'id':_0x5772e8(0x1fb),'ref':_0x4ab254,'icon':_0x3eaae1}));});_0x2c9605[_0x4e4756(0x1cf)]=_0x4e4756(0x71c);let _0x3845c8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M1.2\x2015.7942L1.2789\x2015.7998L11.7697\x2015.7998L12.2\x2015.8752L12.2\x2018.3153L12.2846\x2018.4518L12.4934\x2018.585L12.742\x2018.7269L12.9957\x2018.8556L13.254\x2018.9711L13.5163\x2019.0734L13.7823\x2019.1626L14.0513\x2019.2386L14.323\x2019.3014L14.5967\x2019.351L14.8721\x2019.3875L15.1486\x2019.4108L15.4258\x2019.4209L15.703\x2019.4178L15.98\x2019.4016L16.256\x2019.3722L16.5307\x2019.3296L16.8035\x2019.2738L17.074\x2019.2049L17.3417\x2019.1228L17.606\x2019.0275L17.8665\x2018.919L18.1227\x2018.7974L18.3741\x2018.6626L18.6203\x2018.5146L18.785\x2018.4041L18.8\x2018.2285L18.8\x204.2735L18.7921\x204.1998L8.157\x204.1998L7.8\x204.0378L7.8\x202.2069L7.7345\x202.0679L7.5368\x201.9486L7.2861\x201.8131L7.0305\x201.6901L6.7705\x201.5799L6.5065\x201.4823L6.2391\x201.3974L5.9686\x201.3253L5.6956\x201.2659L5.4205\x201.2193L5.1438\x201.1855L4.8659\x201.1646L4.5873\x201.1566L4.3084\x201.1615L4.0298\x201.1793L3.7519\x201.2101L3.4752\x201.2539L3.2\x201.3107L2.927\x201.3805L2.6565\x201.4634L2.389\x201.5595L2.125\x201.6687L1.8627\x201.7921L1.6044\x201.9212L1.3458\x202.0505L1.2\x202.1271ZM7.2807\x2014.1998L6.4825\x2014.1258L7.2209\x2013.7466L7.345\x2013.679L7.4679\x2013.6082L7.5895\x2013.5341L7.7096\x2013.4567L7.7861\x2013.4048L7.8\x2013.3761L7.8\x205.9711L8.0097\x205.7998L16.964\x205.7998L17.2\x205.9424L17.2\x2014.1998ZM14.0162\x2017.0342L14.0995\x2017.0042L14.1832\x2016.9759L14.2673\x2016.9493L14.3518\x2016.9244L14.4367\x2016.9013L14.5218\x2016.8799L14.6072\x2016.8603L14.6929\x2016.8424L14.7788\x2016.8262L14.8649\x2016.8117L14.9513\x2016.7989L15.0377\x2016.7879L15.1243\x2016.7786L15.211\x2016.7709L15.2978\x2016.7651L15.3846\x2016.7609L15.4714\x2016.7584L15.5583\x2016.7576L15.6451\x2016.7586L15.7319\x2016.7613L15.8186\x2016.7656L15.9052\x2016.7717L15.9916\x2016.7794L16.0779\x2016.7889L16.164\x2016.8001L16.25\x2016.8129L16.3357\x2016.8275L16.4211\x2016.8437L16.5062\x2016.8617L16.5911\x2016.8813L16.6756\x2016.9026L16.7597\x2016.9256L16.8435\x2016.9503L16.9268\x2016.9767L17.04\x2017.015L17.2\x2017.1399L17.2\x2017.4405L17.0133\x2017.5407L16.9194\x2017.5754L16.836\x2017.6041L16.7523\x2017.6311L16.6681\x2017.6563L16.5835\x2017.6797L16.4986\x2017.7013L16.4133\x2017.7211L16.3278\x2017.7391L16.2419\x2017.7553L16.1558\x2017.7698L16.0695\x2017.7824L15.983\x2017.7933L15.8964\x2017.8023L15.8096\x2017.8096L15.7227\x2017.8151L15.6358\x2017.8188L15.5487\x2017.8207L15.4617\x2017.8208L15.3747\x2017.8191L15.2877\x2017.8156L15.2009\x2017.8103L15.1141\x2017.8033L15.0274\x2017.7944L14.9409\x2017.7838L14.8545\x2017.7714L14.7684\x2017.7572L14.6825\x2017.7412L14.5969\x2017.7234L14.5116\x2017.7038L14.4267\x2017.6824L14.342\x2017.6592L14.2578\x2017.6342L14.174\x2017.6075L14.0906\x2017.5789L14.0078\x2017.5486L13.7879\x2017.4629L13.8182\x2017.1101ZM2.819\x2012.1084L3.0218\x2012.0334L3.118\x2012.0043L3.2124\x2011.9867L3.2974\x2011.972L3.3824\x2011.9582L3.4676\x2011.9455L3.5529\x2011.9339L3.6383\x2011.9232L3.7238\x2011.9136L3.8094\x2011.905L3.895\x2011.8974L3.9807\x2011.8909L4.0665\x2011.8854L4.1523\x2011.8809L4.2381\x2011.8774L4.324\x2011.8749L4.4099\x2011.8735L4.4957\x2011.8731L4.5816\x2011.8737L4.6675\x2011.8753L4.7533\x2011.8779L4.8391\x2011.8816L4.9249\x2011.8862L5.0107\x2011.8919L5.0963\x2011.8986L5.1819\x2011.9063L5.2675\x2011.915L5.3529\x2011.9247L5.4383\x2011.9354L5.5235\x2011.9471L5.6087\x2011.9598L5.6937\x2011.9735L5.7786\x2011.9883L5.8634\x2012.004L5.948\x2012.0208L6.1704\x2012.0675L6.2133\x2012.3997L6.0381\x2012.5313L5.9298\x2012.5716L5.8462\x2012.6007L5.7622\x2012.628L5.6778\x2012.6535L5.593\x2012.6772L5.5078\x2012.699L5.4222\x2012.7191L5.3364\x2012.7374L5.2503\x2012.7538L5.1639\x2012.7685L5.0773\x2012.7813L4.9905\x2012.7924L4.9036\x2012.8016L4.8165\x2012.8091L4.7293\x2012.8147L4.642\x2012.8186L4.5547\x2012.8206L4.4674\x2012.8208L4.38\x2012.8192L4.2927\x2012.8159L4.2055\x2012.8107L4.1184\x2012.8037L4.0314\x2012.7949L3.9446\x2012.7843L3.8579\x2012.7719L3.7715\x2012.7577L3.6853\x2012.7417L3.5994\x2012.7239L3.5138\x2012.7043L3.4285\x2012.6829L3.3436\x2012.6596L3.259\x2012.6346L3.1749\x2012.6078L3.0912\x2012.5791L3.0081\x2012.5487L2.7875\x2012.4627ZM2.8\x203.9905L2.8\x203.31L2.8323\x203.1045L3.0217\x203.0322L3.1052\x203.0022L3.1891\x202.9739L3.2734\x202.9474L3.3581\x202.9227L3.4431\x202.8997L3.5284\x202.8784L3.614\x202.8588L3.6998\x202.841L3.7859\x202.8249L3.8722\x202.8105L3.9587\x202.7979L4.0453\x202.787L4.132\x202.7778L4.2189\x202.7703L4.3058\x202.7646L4.3928\x202.7606L4.4798\x202.7583L4.5668\x202.7577L4.6538\x202.7588L4.7407\x202.7616L4.8275\x202.7662L4.9142\x202.7724L5.0008\x202.7804L5.0873\x202.79L5.1735\x202.8014L5.2596\x202.8145L5.3454\x202.8292L5.4309\x202.8457L5.5162\x202.8639L5.6011\x202.8837L5.6858\x202.9053L5.77\x202.9286L5.8539\x202.9535L5.9373\x202.9801L6.0675\x203.0246L6.2\x203.1714L6.2\x203.9686L6.2\x204.1998L6.2\x2010.0971L6.1165\x2010.3624L5.8563\x2010.3028L5.7771\x2010.2858L5.6978\x2010.2698L5.6183\x2010.255L5.5386\x2010.2411L5.4588\x2010.2284L5.3789\x2010.2168L5.2988\x2010.2062L5.2186\x2010.1967L5.1384\x2010.1882L5.058\x2010.1809L4.9775\x2010.1746L4.897\x2010.1694L4.8164\x2010.1653L4.7357\x2010.1622L4.655\x2010.1603L4.5743\x2010.1594L4.4936\x2010.1596L4.4128\x2010.1609L4.3321\x2010.1633L4.2514\x2010.1667L4.1707\x2010.1713L4.0901\x2010.1769L4.0095\x2010.1836L3.9289\x2010.1915L3.8484\x2010.2004L3.7681\x2010.2104L3.6878\x2010.2215L3.6076\x2010.2337L3.5275\x2010.247L3.4475\x2010.2613L3.3677\x2010.2768L3.2881\x2010.2934L3.2085\x2010.3111L3.1292\x2010.3299L2.8\x2010.4125L2.8\x204.1784Z','fillRule':_0x4e4756(0x309)}}]},_0x1c6b41=(0x0,_0x31b8c1['forwardRef'])(function(_0x210ae6,_0x417540){const _0x4977fd=_0x4e4756;return(0x0,_0x31b8c1[_0x4977fd(0x7a6)])(_0x3e4017,Object[_0x4977fd(0x5bf)]({},_0x210ae6,{'id':_0x4977fd(0x22f),'ref':_0x417540,'icon':_0x3845c8}));});_0x1c6b41['displayName']='ShapeHorizontalScrollIcon';let _0x3889bb={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x4d2)}},{'tag':'circle','attrs':{'cx':12.5,'cy':12.5,'r':5.85,'stroke':_0x4e4756(0x455),'strokeWidth':1.3}}]},_0x482dd5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c6f6c,_0x3a024d){const _0x3149c8=_0x4e4756;return(0x0,_0x31b8c1[_0x3149c8(0x7a6)])(_0x3e4017,Object[_0x3149c8(0x5bf)]({},_0x1c6f6c,{'id':_0x3149c8(0xf3),'ref':_0x3a024d,'icon':_0x3889bb}));});_0x482dd5[_0x4e4756(0x1cf)]=_0x4e4756(0x406);let _0x5bdd78={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M12.667\x205.5176L18\x204.8271L14\x208.9658L20\x2011.2139L14\x2012.4141L18\x2018.6211L10.667\x2015.1729L10\x2020L7.333\x2015.8623L4\x2020L4\x2014.4824L0\x2014.1787L4\x2010.5L0\x206.207L5.333\x206.207L5.333\x200.6895L9.6543\x205.6416L12.667\x200ZM6.933\x207.807L3.677\x207.807L6.2686\x2010.5874L3.793\x2012.8621L5.6\x2012.9996L5.6\x2015.4617L7.4775\x2013.1324L9.0051\x2015.5024L9.3793\x2012.7992L13.6347\x2014.7987L11.3819\x2011.305L14.1861\x2010.7426L11.1541\x209.6078L12.852\x207.8512L13.6495\x207.0029L10.5254\x207.4071L9.9738\x208.4408L6.933\x204.9568Z','fillRule':_0x4e4756(0x309)}}]},_0x38f563=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3bd1b5,_0x1b19bc){const _0x3e5760=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3e5760(0x5bf)]({},_0x3bd1b5,{'id':_0x3e5760(0x781),'ref':_0x1b19bc,'icon':_0x5bdd78}));});_0x38f563[_0x4e4756(0x1cf)]=_0x4e4756(0x4e9);let _0x1c6577={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x291),'fillRule':_0x4e4756(0x309)}}]},_0x3c1176=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x497141,_0x17d72e){const _0x44eeea=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x44eeea(0x5bf)]({},_0x497141,{'id':'shape-irregular-seal2-icon','ref':_0x17d72e,'icon':_0x1c6577}));});_0x3c1176['displayName']=_0x4e4756(0x410);let _0x54a6c8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x3f2),'fillRule':_0x4e4756(0x309)}}]},_0x31612b=(0x0,_0x31b8c1['forwardRef'])(function(_0x18e206,_0x3351f8){const _0x342a80=_0x4e4756;return(0x0,_0x31b8c1[_0x342a80(0x7a6)])(_0x3e4017,Object[_0x342a80(0x5bf)]({},_0x18e206,{'id':_0x342a80(0x59a),'ref':_0x3351f8,'icon':_0x54a6c8}));});_0x31612b[_0x4e4756(0x1cf)]=_0x4e4756(0x629);let _0x141002={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x493),'fillRule':_0x4e4756(0x309)}}]},_0x12c29c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2402bf,_0x2c995f){const _0x4b3d35=_0x4e4756;return(0x0,_0x31b8c1[_0x4b3d35(0x7a6)])(_0x3e4017,Object[_0x4b3d35(0x5bf)]({},_0x2402bf,{'id':_0x4b3d35(0x286),'ref':_0x2c995f,'icon':_0x141002}));});_0x12c29c[_0x4e4756(0x1cf)]=_0x4e4756(0x5fc);let _0x4d961a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x628),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x5083dd=(0x0,_0x31b8c1['forwardRef'])(function(_0x23de01,_0x14caf0){const _0x5d4af5=_0x4e4756;return(0x0,_0x31b8c1[_0x5d4af5(0x7a6)])(_0x3e4017,Object[_0x5d4af5(0x5bf)]({},_0x23de01,{'id':_0x5d4af5(0x37a),'ref':_0x14caf0,'icon':_0x4d961a}));});_0x5083dd[_0x4e4756(0x1cf)]=_0x4e4756(0x579);let _0x2cc087={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':'M12\x203H8V17H12','strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x2c9552=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2531c2,_0x3a5b91){const _0x4edefe=_0x4e4756;return(0x0,_0x31b8c1[_0x4edefe(0x7a6)])(_0x3e4017,Object[_0x4edefe(0x5bf)]({},_0x2531c2,{'id':_0x4edefe(0x389),'ref':_0x3a5b91,'icon':_0x2cc087}));});_0x2c9552['displayName']=_0x4e4756(0x778);let _0x52b81f={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x191),'fillRule':_0x4e4756(0x309)}}]},_0x2f72a3=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c982a,_0x8d8ce6){const _0x53ea33=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x53ea33(0x5bf)]({},_0x1c982a,{'id':'shape-left-circular-arrow-icon','ref':_0x8d8ce6,'icon':_0x52b81f}));});_0x2f72a3[_0x4e4756(0x1cf)]=_0x4e4756(0x586);let _0x2cda0e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x533),'fillRule':_0x4e4756(0x309)}}]},_0x3a38cb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x8e5720,_0x1e5e45){const _0x3c9fe5=_0x4e4756;return(0x0,_0x31b8c1[_0x3c9fe5(0x7a6)])(_0x3e4017,Object[_0x3c9fe5(0x5bf)]({},_0x8e5720,{'id':_0x3c9fe5(0x16d),'ref':_0x1e5e45,'icon':_0x2cda0e}));});_0x3a38cb[_0x4e4756(0x1cf)]=_0x4e4756(0x5d2);let _0x54456f={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7a2),'fillRule':_0x4e4756(0x309)}}]},_0x2eca22=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x501bf0,_0x42d77a){const _0x535fda=_0x4e4756;return(0x0,_0x31b8c1[_0x535fda(0x7a6)])(_0x3e4017,Object[_0x535fda(0x5bf)]({},_0x501bf0,{'id':_0x535fda(0x519),'ref':_0x42d77a,'icon':_0x54456f}));});_0x2eca22[_0x4e4756(0x1cf)]=_0x4e4756(0x784);let _0x19cf2b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1be),'fillRule':_0x4e4756(0x309)}}]},_0x70b950=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c6935,_0x5a7b90){const _0x4ab8a1=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x4ab8a1(0x5bf)]({},_0x1c6935,{'id':_0x4ab8a1(0x2a1),'ref':_0x5a7b90,'icon':_0x19cf2b}));});_0x70b950[_0x4e4756(0x1cf)]='ShapeLeftRightCircularArrowIcon';let _0x17b037={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x375),'attrs':{},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x1fd)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x6ac)}}]},{'tag':_0x4e4756(0x346),'attrs':{'id':'shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right'},'children':[{'tag':'path','attrs':{'d':'M20\x2011L11.75\x2019.6602V15.9932C9.10474\x2015.8629\x207\x2013.6776\x207\x2011V6.36328C7.00035\x206.20808\x207.17349\x206.11599\x207.30273\x206.20215L8.33594\x206.89062C9.35155\x207.56769\x2010.5335\x207.94807\x2011.75\x207.99414V2.33984L20\x2011ZM9\x2011C9\x2012.6056\x2010.2627\x2013.917\x2011.8486\x2013.9951L13.75\x2014.0889V14.6602L17.2363\x2011L13.75\x207.33887V10.0713L11.6738\x209.99316C10.7566\x209.95838\x209.85452\x209.77558\x209\x209.45801V11Z'}}]}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x6ac),'strokeWidth':3.2,'clipPath':_0x4e4756(0x13b)}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x540),'strokeWidth':3.2,'clipPath':_0x4e4756(0x2ce)}}],'defIds':[_0x4e4756(0x1fd),_0x4e4756(0x7c1)]},_0x5bc5f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xa1f6f3,_0x76bca3){const _0xba741f=_0x4e4756;return(0x0,_0x31b8c1[_0xba741f(0x7a6)])(_0x3e4017,Object[_0xba741f(0x5bf)]({},_0xa1f6f3,{'id':_0xba741f(0x387),'ref':_0x76bca3,'icon':_0x17b037}));});_0x5bc5f[_0x4e4756(0x1cf)]=_0x4e4756(0x589);let _0x3775e0={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x5a5),'fillRule':'evenodd'}}]},_0x580d32=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4c9bc4,_0xda1d2e){const _0x30a388=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x30a388(0x5bf)]({},_0x4c9bc4,{'id':_0x30a388(0x3d3),'ref':_0xda1d2e,'icon':_0x3775e0}));});_0x580d32[_0x4e4756(0x1cf)]=_0x4e4756(0x59c);let _0x527da4={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x223),'fillRule':_0x4e4756(0x309)}}]},_0x3dc053=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4c5a30,_0x514e76){const _0x2cefd7=_0x4e4756;return(0x0,_0x31b8c1[_0x2cefd7(0x7a6)])(_0x3e4017,Object[_0x2cefd7(0x5bf)]({},_0x4c5a30,{'id':_0x2cefd7(0x32a),'ref':_0x514e76,'icon':_0x527da4}));});_0x3dc053[_0x4e4756(0x1cf)]='ShapeLeftUpArrowIcon';let _0x52a2cd={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x369),'fillRule':_0x4e4756(0x309)}}]},_0x23c57b=(0x0,_0x31b8c1['forwardRef'])(function(_0x41fffc,_0x28b0d0){const _0x3109df=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x41fffc,{'id':_0x3109df(0x6b1),'ref':_0x28b0d0,'icon':_0x52a2cd}));});_0x23c57b[_0x4e4756(0x1cf)]=_0x4e4756(0x768);let _0x54b6d5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x615),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x410dfa=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3e6ed0,_0x4b5c2c){const _0x1ea404=_0x4e4756;return(0x0,_0x31b8c1[_0x1ea404(0x7a6)])(_0x3e4017,Object[_0x1ea404(0x5bf)]({},_0x3e6ed0,{'id':_0x1ea404(0x20f),'ref':_0x4b5c2c,'icon':_0x54b6d5}));});_0x410dfa['displayName']=_0x4e4756(0x2ed);let _0x16065e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x64b),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x5f1b28=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xbf1f93,_0x3fa67e){const _0x5bc503=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x5bc503(0x5bf)]({},_0xbf1f93,{'id':_0x5bc503(0x6d6),'ref':_0x3fa67e,'icon':_0x16065e}));});_0x5f1b28[_0x4e4756(0x1cf)]=_0x4e4756(0x1ee);let _0x4048fb={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0x3,'r':2.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M2\x2010H18','strokeLinecap':_0x4e4756(0x729),'strokeWidth':1.6}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0x11,'r':2.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}}]},_0x32ade8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x16eb2e,_0x46204){const _0x3ef105=_0x4e4756;return(0x0,_0x31b8c1[_0x3ef105(0x7a6)])(_0x3e4017,Object[_0x3ef105(0x5bf)]({},_0x16eb2e,{'id':_0x3ef105(0x52e),'ref':_0x46204,'icon':_0x4048fb}));});_0x32ade8['displayName']=_0x4e4756(0x79c);let _0x37e6c8={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x4ba),'strokeLinecap':_0x4e4756(0x729),'strokeWidth':1.6}}]},_0x47ce45=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2525e2,_0x23d914){const _0x56f4bb=_0x4e4756;return(0x0,_0x31b8c1[_0x56f4bb(0x7a6)])(_0x3e4017,Object['assign']({},_0x2525e2,{'id':'shape-math-equal-icon','ref':_0x23d914,'icon':_0x37e6c8}));});_0x47ce45[_0x4e4756(0x1cf)]=_0x4e4756(0x6d3);let _0x508464={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x742),'strokeLinecap':_0x4e4756(0x729),'strokeWidth':1.6}}]},_0x1c1a5d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4f71da,_0xb43305){const _0x1997f9=_0x4e4756;return(0x0,_0x31b8c1[_0x1997f9(0x7a6)])(_0x3e4017,Object[_0x1997f9(0x5bf)]({},_0x4f71da,{'id':_0x1997f9(0x43a),'ref':_0xb43305,'icon':_0x508464}));});_0x1c1a5d[_0x4e4756(0x1cf)]=_0x4e4756(0x438);let _0x5c2fb3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x413),'strokeLinecap':_0x4e4756(0x729),'strokeWidth':1.6}}]},_0x466a5c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xd45429,_0x41e1c6){const _0x41a479=_0x4e4756;return(0x0,_0x31b8c1[_0x41a479(0x7a6)])(_0x3e4017,Object['assign']({},_0xd45429,{'id':_0x41a479(0x142),'ref':_0x41e1c6,'icon':_0x5c2fb3}));});_0x466a5c['displayName']=_0x4e4756(0x278);let _0x2e6a62={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':'M3\x206H17M3\x2014H17M13.5\x202L6.5\x2018','strokeLinecap':_0x4e4756(0x729),'strokeWidth':1.6}}]},_0x182cbb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5a81eb,_0x402673){const _0xff8bf5=_0x4e4756;return(0x0,_0x31b8c1[_0xff8bf5(0x7a6)])(_0x3e4017,Object['assign']({},_0x5a81eb,{'id':_0xff8bf5(0x1e0),'ref':_0x402673,'icon':_0x2e6a62}));});_0x182cbb[_0x4e4756(0x1cf)]=_0x4e4756(0x51b);let _0x176638={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M14\x206H19V14H14V19H6V14H1V6H6V1H14V6ZM7.6\x207.6H2.6V12.4H7.6V17.4H12.4V12.4H17.4V7.6H12.4V2.6H7.6V7.6Z'}}]},_0x42ab00=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3713f6,_0x19ef83){const _0x3be346=_0x4e4756;return(0x0,_0x31b8c1[_0x3be346(0x7a6)])(_0x3e4017,Object[_0x3be346(0x5bf)]({},_0x3713f6,{'id':_0x3be346(0x441),'ref':_0x19ef83,'icon':_0x176638}));});_0x42ab00[_0x4e4756(0x1cf)]=_0x4e4756(0x360);let _0x5c3c88={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M15.6\x201.8C12.8\x205.9\x2011.8\x206.7\x2011.8\x2010C11.8\x2013.3\x2013.1\x2014.9\x2015.6\x2018.2C10.8\x2018.1\x205.8\x2016.1\x205.8\x2010C5.8\x203.9\x2010.8\x201.9\x2015.6\x201.8Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x53735a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xc103aa,_0x25c356){const _0x589a0d=_0x4e4756;return(0x0,_0x31b8c1[_0x589a0d(0x7a6)])(_0x3e4017,Object[_0x589a0d(0x5bf)]({},_0xc103aa,{'id':'shape-moon-icon','ref':_0x25c356,'icon':_0x5c3c88}));});_0x53735a[_0x4e4756(0x1cf)]=_0x4e4756(0x54e);let _0x1c16ce={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':'circle','attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x28c),'fillRule':_0x4e4756(0x309)}}]},_0x3a2c8d=(0x0,_0x31b8c1['forwardRef'])(function(_0x2e2f52,_0x58d0ba){const _0x36a657=_0x4e4756;return(0x0,_0x31b8c1[_0x36a657(0x7a6)])(_0x3e4017,Object[_0x36a657(0x5bf)]({},_0x2e2f52,{'id':_0x36a657(0x492),'ref':_0x58d0ba,'icon':_0x1c16ce}));});_0x3a2c8d['displayName']=_0x4e4756(0x1af);let _0x2202c9={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M6.80225\x202H13.1978L16.7534\x2018H3.24658L6.80225\x202Z','strokeWidth':1.6}}]},_0x47d4d9=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c806b,_0x4f82f2){const _0x2004b9=_0x4e4756;return(0x0,_0x31b8c1[_0x2004b9(0x7a6)])(_0x3e4017,Object['assign']({},_0x1c806b,{'id':_0x2004b9(0x573),'ref':_0x4f82f2,'icon':_0x2202c9}));});_0x47d4d9[_0x4e4756(0x1cf)]=_0x4e4756(0x6f8);let _0x427dfe={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x339),'fillRule':_0x4e4756(0x309)}}]},_0xb2d5b9=(0x0,_0x31b8c1['forwardRef'])(function(_0x27ede9,_0x1a8559){const _0x20fb0f=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x20fb0f(0x5bf)]({},_0x27ede9,{'id':_0x20fb0f(0x699),'ref':_0x1a8559,'icon':_0x427dfe}));});_0xb2d5b9[_0x4e4756(0x1cf)]=_0x4e4756(0x67c);let _0x3fd4cf={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x2d5)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x2e0)}}]},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2e0),'strokeWidth':3.2,'clipPath':_0x4e4756(0x280)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x231)}}]},_0x3b28a7=(0x0,_0x31b8c1['forwardRef'])(function(_0x5ac9ee,_0x3108e8){const _0x58f390=_0x4e4756;return(0x0,_0x31b8c1[_0x58f390(0x7a6)])(_0x3e4017,Object[_0x58f390(0x5bf)]({},_0x5ac9ee,{'id':'shape-octagon-icon','ref':_0x3108e8,'icon':_0x3fd4cf}));});_0x3b28a7[_0x4e4756(0x1cf)]=_0x4e4756(0x746);let _0x316c08={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x36a),'strokeWidth':1.6}}]},_0x49de1f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x42aea2,_0xe2e27a){const _0xb799e8=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0xb799e8(0x5bf)]({},_0x42aea2,{'id':_0xb799e8(0x19a),'ref':_0xe2e27a,'icon':_0x316c08}));});_0x49de1f['displayName']=_0x4e4756(0x2df);let _0x5369c8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M10\x203.23584L17.3838\x208.60059L14.5635\x2017.2812H5.43652L2.61572\x208.60059L10\x203.23584Z','strokeWidth':1.6}}]},_0x4d900a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5f533a,_0x1af82b){const _0x1e146b=_0x4e4756;return(0x0,_0x31b8c1[_0x1e146b(0x7a6)])(_0x3e4017,Object[_0x1e146b(0x5bf)]({},_0x5f533a,{'id':'shape-pentagon-icon','ref':_0x1af82b,'icon':_0x5369c8}));});_0x4d900a[_0x4e4756(0x1cf)]=_0x4e4756(0x633);let _0x3be617={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x17d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x15e5c6=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2703a5,_0x5c00a6){const _0x4f4c04=_0x4e4756;return(0x0,_0x31b8c1[_0x4f4c04(0x7a6)])(_0x3e4017,Object[_0x4f4c04(0x5bf)]({},_0x2703a5,{'id':'shape-pie-icon','ref':_0x5c00a6,'icon':_0x3be617}));});_0x15e5c6[_0x4e4756(0x1cf)]='ShapePieIcon';let _0x175119={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M18\x2018H1C1\x208.6112\x208.6112\x201\x2018\x201V18ZM16.4\x202.6833A15.4\x2015.4\x200\x200\x200\x202.6833\x2016.4H16.4V2.6833Z','fillRule':_0x4e4756(0x309)}}]},_0x5f2a82=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x21da95,_0x28a7e2){const _0x418737=_0x4e4756;return(0x0,_0x31b8c1[_0x418737(0x7a6)])(_0x3e4017,Object[_0x418737(0x5bf)]({},_0x21da95,{'id':_0x418737(0x5e9),'ref':_0x28a7e2,'icon':_0x175119}));});_0x5f2a82[_0x4e4756(0x1cf)]=_0x4e4756(0x74c);let _0x14b3de={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M13.2\x201.8C13.2\x204.562\x2015.438\x206.8\x2018.2\x206.8V13.2C15.438\x2013.2\x2013.2\x2015.438\x2013.2\x2018.2H6.8C6.8\x2015.438\x204.562\x2013.2\x201.8\x2013.2V6.8C4.562\x206.8\x206.8\x204.562\x206.8\x201.8H13.2Z','strokeLinejoin':'round','strokeWidth':1.6}}]},_0xf5a5cd=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x21fd3c,_0x389522){const _0x4db54b=_0x4e4756;return(0x0,_0x31b8c1[_0x4db54b(0x7a6)])(_0x3e4017,Object[_0x4db54b(0x5bf)]({},_0x21fd3c,{'id':_0x4db54b(0x322),'ref':_0x389522,'icon':_0x14b3de}));});_0xf5a5cd['displayName']=_0x4e4756(0x331);let _0x5351d2={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x62a),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x3cb),'fillRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x34f),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1c5),'fillRule':_0x4e4756(0x309)}}]},_0x261d20=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1f797e,_0x3829b9){const _0x21f566=_0x4e4756;return(0x0,_0x31b8c1[_0x21f566(0x7a6)])(_0x3e4017,Object[_0x21f566(0x5bf)]({},_0x1f797e,{'id':_0x21f566(0x30a),'ref':_0x3829b9,'icon':_0x5351d2}));});_0x261d20[_0x4e4756(0x1cf)]=_0x4e4756(0x561);let _0x42e2f6={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x4c0)}}]},_0xb74b52=(0x0,_0x31b8c1['forwardRef'])(function(_0x3b998d,_0x5d0e12){const _0x3032c2=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3032c2(0x5bf)]({},_0x3b998d,{'id':_0x3032c2(0x6a6),'ref':_0x5d0e12,'icon':_0x42e2f6}));});_0xb74b52[_0x4e4756(0x1cf)]=_0x4e4756(0x1f5);let _0x5b4a3f={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x4a6),'fillRule':_0x4e4756(0x309)}}]},_0x306846=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x110371,_0x3d6c34){const _0x1e5111=_0x4e4756;return(0x0,_0x31b8c1[_0x1e5111(0x7a6)])(_0x3e4017,Object[_0x1e5111(0x5bf)]({},_0x110371,{'id':_0x1e5111(0x237),'ref':_0x3d6c34,'icon':_0x5b4a3f}));});_0x306846['displayName']=_0x4e4756(0x1e3);let _0x19a31e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x35e),'fillRule':_0x4e4756(0x309)}}]},_0x4835d7=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5ac1c8,_0x2bbde5){const _0x597480=_0x4e4756;return(0x0,_0x31b8c1[_0x597480(0x7a6)])(_0x3e4017,Object[_0x597480(0x5bf)]({},_0x5ac1c8,{'id':'shape-quad-arrow-icon','ref':_0x2bbde5,'icon':_0x19a31e}));});_0x4835d7[_0x4e4756(0x1cf)]=_0x4e4756(0x5be);let _0x2b71b5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0xfb),'strokeWidth':1.6}}]},_0x195c5d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2c8195,_0x1a8651){const _0x21c3ec=_0x4e4756;return(0x0,_0x31b8c1[_0x21c3ec(0x7a6)])(_0x3e4017,Object[_0x21c3ec(0x5bf)]({},_0x2c8195,{'id':_0x21c3ec(0x759),'ref':_0x1a8651,'icon':_0x2b71b5}));});_0x195c5d['displayName']='ShapeRectIcon';let _0x19134e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M2.8\x204.8H17.2V15.2H2.8z','strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x4e4756(0x262),'stroke':'currentColor','d':_0x4e4756(0x33f),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'white','stroke':'currentColor','d':_0x4e4756(0x3a3),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x262),'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x2f7),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'white','stroke':'currentColor','d':_0x4e4756(0x3af),'strokeWidth':1.2}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x17f)}}]},_0x36177c=(0x0,_0x31b8c1['forwardRef'])(function(_0x39c65f,_0x167cce){const _0x422312=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x422312(0x5bf)]({},_0x39c65f,{'id':_0x422312(0x59b),'ref':_0x167cce,'icon':_0x19134e}));});_0x36177c[_0x4e4756(0x1cf)]=_0x4e4756(0x3d2);let _0x3bca27={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x57a),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x262),'stroke':'currentColor','d':_0x4e4756(0x33f),'strokeWidth':1.2}},{'tag':'path','attrs':{'fill':_0x4e4756(0x262),'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x3a3),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'white','stroke':'currentColor','d':'M15.5\x2013.5H18.5V16.5H15.5z','strokeWidth':1.2}},{'tag':'path','attrs':{'fill':_0x4e4756(0x262),'stroke':_0x4e4756(0x455),'d':'M1.5\x2013.5H4.5V16.5H1.5z','strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M6.5\x206.97823C6.5\x207.29621\x206.69236\x207.58258\x206.98673\x207.70283L8.38\x208.272V11.752L6.9659\x2012.3477C6.68357\x2012.4667\x206.5\x2012.7432\x206.5\x2013.0496C6.5\x2013.5855\x207.03894\x2013.9538\x207.53828\x2013.7591L13.5175\x2011.4272C14.11\x2011.1961\x2014.5\x2010.6253\x2014.5\x209.98948C14.5\x209.35214\x2014.1082\x208.78037\x2013.5138\x208.55034L7.56524\x206.24825C7.05231\x206.04974\x206.5\x206.42823\x206.5\x206.97823ZM9.7\x2011.284V8.74L13.096\x209.928V10.072L9.7\x2011.284Z'}}]},_0x2433b1=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xe6f6cc,_0x27821c){const _0x4d10af=_0x4e4756;return(0x0,_0x31b8c1[_0x4d10af(0x7a6)])(_0x3e4017,Object[_0x4d10af(0x5bf)]({},_0xe6f6cc,{'id':_0x4d10af(0x64a),'ref':_0x27821c,'icon':_0x3bca27}));});_0x2433b1['displayName']='ShapeRectTextboxVerticalIcon';let _0x21c95d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'g','attrs':{'fill':_0x4e4756(0x455),'clipPath':_0x4e4756(0x720)},'children':[{'tag':'path','attrs':{'d':_0x4e4756(0x49f)}},{'tag':_0x4e4756(0x61b),'attrs':{'d':'M4.5\x208.5V6.5V4H9V8.5H6.5H4.5ZM7.5\x205.5H6V7H7.5V5.5Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x300)}},{'tag':_0x4e4756(0x61b),'attrs':{'d':_0x4e4756(0x3a5)}},{'tag':_0x4e4756(0x61b),'attrs':{'d':'M17\x209L20\x2014L14\x2014L14\x204L20\x204L17\x209ZM15.5\x2012.5L17.5\x2012.5L15.5\x209.5L15.5\x2012.5ZM15.5\x208.5L17.5\x205.5L15.5\x205.5L15.5\x208.5Z'}}]},{'tag':'defs','attrs':{},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x4c1)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x262),'d':_0x4e4756(0x56e)}}]}]}],'defIds':[_0x4e4756(0x4c1)]},_0x31daa4=(0x0,_0x31b8c1['forwardRef'])(function(_0x712f05,_0x45a02f){const _0x175f6f=_0x4e4756;return(0x0,_0x31b8c1[_0x175f6f(0x7a6)])(_0x3e4017,Object[_0x175f6f(0x5bf)]({},_0x712f05,{'id':_0x175f6f(0x7bc),'ref':_0x45a02f,'icon':_0x21c95d}));});_0x31daa4[_0x4e4756(0x1cf)]=_0x4e4756(0x208);let _0x2128ce={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'g','attrs':{'fill':_0x4e4756(0x455),'clipPath':_0x4e4756(0x7b2)},'children':[{'tag':'path','attrs':{'d':_0x4e4756(0x34d)}},{'tag':'path','attrs':{'d':'M15.5\x2011.5L15.5\x2013.5L15.5\x2016L11\x2016L11\x2011.5L13.5\x2011.5L15.5\x2011.5ZM12.5\x2014.5L14\x2014.5L14\x2013L12.5\x2013L12.5\x2014.5Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'d':'M9\x2011.5L9\x2013.5L9\x2016L4.5\x2016L4.5\x2011.5L7\x2011.5L9\x2011.5ZM6\x2014.5L7.5\x2014.5L7.5\x2013L6\x2013L6\x2014.5Z'}},{'tag':'path','attrs':{'d':_0x4e4756(0x51e)}},{'tag':'path','attrs':{'d':_0x4e4756(0x58d)}}]},{'tag':_0x4e4756(0x375),'attrs':{},'children':[{'tag':_0x4e4756(0x346),'attrs':{'id':_0x4e4756(0x48e)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'white','d':'M0\x200H20V20H0z','transform':_0x4e4756(0x78f)}}]}]}],'defIds':[_0x4e4756(0x48e)]},_0x3484e9=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xf81efb,_0xb8d594){const _0x24070f=_0x4e4756;return(0x0,_0x31b8c1[_0x24070f(0x7a6)])(_0x3e4017,Object[_0x24070f(0x5bf)]({},_0xf81efb,{'id':_0x24070f(0x4e2),'ref':_0xb8d594,'icon':_0x2128ce}));});_0x3484e9[_0x4e4756(0x1cf)]=_0x4e4756(0x59d);let _0x1480b1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M8\x204H2V16H8V11.4H14.9L17.3\x2010L14.9\x208.6H8V4ZM14\x207V5.6699L20\x2010L14\x2014.3301V13H9.6V17.6H0.4V2.4H9.6V7H14Z','fillRule':_0x4e4756(0x309)}}]},_0x199e7b=(0x0,_0x31b8c1['forwardRef'])(function(_0x32db51,_0x120e39){const _0x17c2b9=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x17c2b9(0x5bf)]({},_0x32db51,{'id':'shape-right-arrow-callout-icon','ref':_0x120e39,'icon':_0x1480b1}));});_0x199e7b[_0x4e4756(0x1cf)]=_0x4e4756(0x2bb);let _0x332fb8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x343),'fillRule':_0x4e4756(0x309)}}]},_0x17b722=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xd355d9,_0x4d6ef1){const _0x2a0b83=_0x4e4756;return(0x0,_0x31b8c1[_0x2a0b83(0x7a6)])(_0x3e4017,Object['assign']({},_0xd355d9,{'id':_0x2a0b83(0x1f0),'ref':_0x4d6ef1,'icon':_0x332fb8}));});_0x17b722[_0x4e4756(0x1cf)]=_0x4e4756(0x2aa);let _0x19d6c1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x632),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x59c1ba=(0x0,_0x31b8c1['forwardRef'])(function(_0xe08e56,_0x4a4586){const _0x380ae5=_0x4e4756;return(0x0,_0x31b8c1[_0x380ae5(0x7a6)])(_0x3e4017,Object[_0x380ae5(0x5bf)]({},_0xe08e56,{'id':_0x380ae5(0x1fe),'ref':_0x4a4586,'icon':_0x19d6c1}));});_0x59c1ba['displayName']=_0x4e4756(0x244);let _0x11cc7c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x491),'strokeLinecap':'round','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x54eee5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4f6947,_0xd93145){const _0x7fc183=_0x4e4756;return(0x0,_0x31b8c1[_0x7fc183(0x7a6)])(_0x3e4017,Object[_0x7fc183(0x5bf)]({},_0x4f6947,{'id':_0x7fc183(0x6da),'ref':_0xd93145,'icon':_0x11cc7c}));});_0x54eee5[_0x4e4756(0x1cf)]=_0x4e4756(0x31e);let _0x4d0490={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x6c3),'attrs':{'width':16.4,'height':12.4,'x':1.8,'y':3.8,'stroke':_0x4e4756(0x455),'rx':2.2,'strokeWidth':1.6}}]},_0x2edfc7=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x118036,_0x56d256){const _0x428b89=_0x4e4756;return(0x0,_0x31b8c1[_0x428b89(0x7a6)])(_0x3e4017,Object[_0x428b89(0x5bf)]({},_0x118036,{'id':'shape-round-rect-icon','ref':_0x56d256,'icon':_0x4d0490}));});_0x2edfc7[_0x4e4756(0x1cf)]=_0x4e4756(0x598);let _0x28cb6a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x75e),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x558284=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x244f0d,_0x47b6a7){const _0x33b1d7=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x33b1d7(0x5bf)]({},_0x244f0d,{'id':_0x33b1d7(0x6f1),'ref':_0x47b6a7,'icon':_0x28cb6a}));});_0x558284[_0x4e4756(0x1cf)]=_0x4e4756(0x717);let _0x4209ca={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M1.8\x203.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H4C2.785\x2016.2\x201.8\x2015.215\x201.8\x2014V3.8Z','strokeLinejoin':'round','strokeWidth':1.6}}]},_0x1449d8=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2bfe20,_0x42ad88){const _0x23c929=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x23c929(0x5bf)]({},_0x2bfe20,{'id':_0x23c929(0x3b3),'ref':_0x42ad88,'icon':_0x4209ca}));});_0x1449d8[_0x4e4756(0x1cf)]=_0x4e4756(0x473);let _0x2ac256={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x613),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x18bc8c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4537f8,_0x29deb6){const _0xf415e8=_0x4e4756;return(0x0,_0x31b8c1[_0xf415e8(0x7a6)])(_0x3e4017,Object[_0xf415e8(0x5bf)]({},_0x4537f8,{'id':'shape-round2-same-rect-icon','ref':_0x29deb6,'icon':_0x2ac256}));});_0x18bc8c[_0x4e4756(0x1cf)]='ShapeRound2SameRectIcon';let _0x1f224e={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x4c6),'strokeWidth':1.6}}]},_0x181a1e=(0x0,_0x31b8c1['forwardRef'])(function(_0x12bab0,_0x212187){const _0x4d7c06=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x4d7c06(0x5bf)]({},_0x12bab0,{'id':_0x4d7c06(0x77b),'ref':_0x212187,'icon':_0x1f224e}));});_0x181a1e[_0x4e4756(0x1cf)]=_0x4e4756(0x65c);let _0x160cba={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x23c)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x3d8)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x483)}}]},_0xb0f2a7=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x2b3580,_0x3494f7){const _0x2dee51=_0x4e4756;return(0x0,_0x31b8c1[_0x2dee51(0x7a6)])(_0x3e4017,Object[_0x2dee51(0x5bf)]({},_0x2b3580,{'id':_0x2dee51(0x723),'ref':_0x3494f7,'icon':_0x160cba}));});_0xb0f2a7[_0x4e4756(0x1cf)]=_0x4e4756(0x351);let _0x7a3dce={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M2\x2016V6.2C2\x204.985\x202.985\x204\x204.2\x204H13.6L18\x208V16H2Z','strokeLinejoin':'round','strokeWidth':1.6}}]},_0x5db6af=(0x0,_0x31b8c1['forwardRef'])(function(_0x2e1a30,_0x166387){const _0x2f9240=_0x4e4756;return(0x0,_0x31b8c1[_0x2f9240(0x7a6)])(_0x3e4017,Object[_0x2f9240(0x5bf)]({},_0x2e1a30,{'id':_0x2f9240(0x5ed),'ref':_0x166387,'icon':_0x7a3dce}));});_0x5db6af[_0x4e4756(0x1cf)]=_0x4e4756(0x19d);let _0x17587c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x185),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x4ef2df=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5de466,_0x271d39){const _0x1ca986=_0x4e4756;return(0x0,_0x31b8c1[_0x1ca986(0x7a6)])(_0x3e4017,Object[_0x1ca986(0x5bf)]({},_0x5de466,{'id':_0x1ca986(0x240),'ref':_0x271d39,'icon':_0x17587c}));});_0x4ef2df[_0x4e4756(0x1cf)]='ShapeSnip1RectIcon';let _0x515010={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x680),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x41fc25=(0x0,_0x31b8c1['forwardRef'])(function(_0x185193,_0x2a9d64){const _0x147269=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x147269(0x5bf)]({},_0x185193,{'id':_0x147269(0x4d8),'ref':_0x2a9d64,'icon':_0x515010}));});_0x41fc25[_0x4e4756(0x1cf)]='ShapeSnip2DiagRectIcon';let _0x1fd997={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M2\x208.5L6.4\x204H13.6L18\x208.5V16H2V8.5Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x10b8a9=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x984bd5,_0x2fdbf7){const _0x3d22be=_0x4e4756;return(0x0,_0x31b8c1[_0x3d22be(0x7a6)])(_0x3e4017,Object[_0x3d22be(0x5bf)]({},_0x984bd5,{'id':'shape-snip2-same-rect-icon','ref':_0x2fdbf7,'icon':_0x1fd997}));});_0x10b8a9[_0x4e4756(0x1cf)]=_0x4e4756(0x1ef);let _0x1025fb={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x719),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x5f3),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M13.8\x201.8H18.2V6.2H13.8z','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x2cc),'strokeWidth':1.6}}]},_0x1e5f47=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x9f90d3,_0x221ec7){const _0x44fa87=_0x4e4756;return(0x0,_0x31b8c1[_0x44fa87(0x7a6)])(_0x3e4017,Object['assign']({},_0x9f90d3,{'id':_0x44fa87(0x459),'ref':_0x221ec7,'icon':_0x1025fb}));});_0x1e5f47['displayName']=_0x4e4756(0x1a6);let _0x1c71f9={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M15.5426\x2012.4L17.151\x2012.4L15.6873\x209.9999L17.1719\x207.5634L15.5426\x207.5442L15.5426\x204.5287L11.8884\x204.5287L10.243\x202.5235L8.5997\x204.5287L4.9457\x204.5287L4.9457\x207.6466L3.222\x207.5954L4.9914\x2010.0117L3.1999\x2012.4L4.9457\x2012.4L4.9457\x2015.4713L8.5998\x2015.4713L10.243\x2017.4753L11.8883\x2015.4713L15.5426\x2015.4713ZM17.1426\x2017.0713L12.6455\x2017.0713L10.2441\x2020L7.8418\x2017.0713L3.3457\x2017.0713L3.3457\x2014L0\x2014L3\x2010L0\x205.9033L3.3457\x206L3.3457\x202.9287L7.8418\x202.9287L10.2441\x200L12.6455\x202.9287L17.1426\x202.9287L17.1426\x205.9648L20\x206L17.5605\x2010L20\x2014L17.1426\x2014Z','fillRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M11.6427\x206C12.4102\x206\x2013.0041\x206.37736\x2013.4244\x207.14286C13.8081\x207.85445\x2014\x208.80323\x2014\x2010C14\x2011.186\x2013.8081\x2012.1456\x2013.4244\x2012.8571C13.0041\x2013.6119\x2012.4102\x2014\x2011.6427\x2014C10.8752\x2014\x2010.2813\x2013.6119\x209.86097\x2012.8571C9.47722\x2012.1456\x209.28534\x2011.1968\x209.28534\x2010C9.28534\x208.79245\x209.47722\x207.84367\x209.86097\x207.14286C10.2813\x206.37736\x2010.8752\x206\x2011.6427\x206ZM11.6427\x206.99191C11.1036\x206.99191\x2010.729\x207.33693\x2010.5097\x208.03774C10.3452\x208.51213\x2010.2721\x209.16981\x2010.2721\x2010C10.2721\x2010.8194\x2010.3452\x2011.4771\x2010.5097\x2011.9623C10.729\x2012.6523\x2011.1036\x2013.0081\x2011.6427\x2013.0081C12.1726\x2013.0081\x2012.5564\x2012.6523\x2012.7757\x2011.9623C12.931\x2011.4771\x2013.0132\x2010.8194\x2013.0132\x2010C13.0132\x209.16981\x2012.931\x208.51213\x2012.7757\x208.03774C12.5564\x207.33693\x2012.1726\x206.99191\x2011.6427\x206.99191Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x56d)}}]},_0x15157c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x19d91d,_0x490bde){const _0x15211f=_0x4e4756;return(0x0,_0x31b8c1[_0x15211f(0x7a6)])(_0x3e4017,Object[_0x15211f(0x5bf)]({},_0x19d91d,{'id':_0x15211f(0x335),'ref':_0x490bde,'icon':_0x1c71f9}));});_0x15157c[_0x4e4756(0x1cf)]=_0x4e4756(0x2d4);let _0xe73e2d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x2c7),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x50c)}},{'tag':'path','attrs':{'fill':'currentColor','d':'M7.6091\x206.19862C7.71516\x206.08227\x207.86203\x206.008\x208.01946\x206.008C8.30134\x206.008\x208.52985\x206.2365\x208.52985\x206.51838V13.495C8.52985\x2013.7739\x208.30373\x2014\x208.0248\x2014C7.74588\x2014\x207.51976\x2013.7739\x207.51976\x2013.495V7.44756C7.28541\x207.71253\x207.01259\x207.9357\x206.7032\x208.11706C6.37588\x208.30892\x206\x208.0423\x206\x207.6629C6\x207.41785\x206.16328\x207.20549\x206.38523\x207.10161C6.56197\x207.01889\x206.74438\x206.91442\x206.93595\x206.78822C7.19346\x206.6016\x207.41785\x206.40844\x207.6091\x206.19862Z'}}]},_0x238b59=(0x0,_0x31b8c1['forwardRef'])(function(_0x50eff7,_0xb80e){const _0x188aa8=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x188aa8(0x5bf)]({},_0x50eff7,{'id':'shape-star12-icon','ref':_0xb80e,'icon':_0xe73e2d}));});_0x238b59[_0x4e4756(0x1cf)]=_0x4e4756(0x37f);let _0x178797={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2c7),'fillRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M12.0922\x206.3746C13.1972\x206.3746\x2013.9126\x206.7853\x2014.2274\x207.61727C14.3407\x207.91664\x2014.0875\x208.20479\x2013.7674\x208.20479C13.5205\x208.20479\x2013.3193\x208.02563\x2013.2035\x207.80758C12.9951\x207.4154\x2012.623\x207.22366\x2012.0825\x207.22366C11.5971\x207.22366\x2011.2184\x207.45008\x2010.9369\x207.91234C10.6553\x208.3463\x2010.5194\x208.88404\x2010.5194\x209.54441C10.5194\x209.57272\x2010.5194\x209.61045\x2010.5291\x209.66706H10.568C10.7621\x209.36517\x2011.0049\x209.14819\x2011.3058\x209.00668C11.5777\x208.86517\x2011.8981\x208.79913\x2012.267\x208.79913C12.9466\x208.79913\x2013.4903\x209.00668\x2013.8981\x209.42177C14.2961\x209.8463\x2014.5485\x2010.5189\x2014.5485\x2011.1792C14.5485\x2011.8491\x2014.3155\x2012.4057\x2013.8592\x2012.8396C13.3932\x2013.2736\x2012.8107\x2013.5\x2012.1311\x2013.5C11.2767\x2013.5\x2010.6359\x2013.1981\x2010.1893\x2012.5943C9.76214\x2012.0189\x209.5\x2011.0916\x209.5\x2010.0633C9.5\x208.96894\x209.7233\x208.08215\x2010.1893\x207.40291C10.6553\x206.71423\x2011.2961\x206.3746\x2012.0922\x206.3746ZM12.0534\x209.62932C11.6165\x209.62932\x2011.2767\x209.7614\x2011.0243\x2010.0255C10.7718\x2010.2897\x2010.6942\x2010.7642\x2010.6942\x2011.2075C10.6942\x2011.6415\x2010.8204\x2011.9906\x2011.0825\x2012.2547C11.335\x2012.5189\x2011.6748\x2012.6509\x2012.0922\x2012.6509C12.5194\x2012.6509\x2012.8592\x2012.5094\x2013.1117\x2012.2358C13.3738\x2011.9528\x2013.5097\x2011.6038\x2013.5097\x2011.1792C13.5097\x2010.7453\x2013.335\x2010.2708\x2013.0825\x2010.0255C12.8301\x209.7614\x2012.4806\x209.62932\x2012.0534\x209.62932Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M7.73333\x206.53632C7.8503\x206.42838\x208.00054\x206.36\x208.15971\x206.36C8.47468\x206.36\x208.73001\x206.61533\x208.73001\x206.9303V12.955C8.73001\x2013.256\x208.48601\x2013.5\x208.18501\x2013.5C7.88402\x2013.5\x207.64001\x2013.256\x207.64001\x2012.955V7.67C7.35709\x207.93976\x207.02222\x208.16191\x206.63824\x208.33643C6.32816\x208.47737\x206.00001\x208.23038\x206.00001\x207.88978C6.00001\x207.65483\x206.16132\x207.45293\x206.38069\x207.36882C6.58234\x207.2915\x206.7906\x207.19189\x207.01001\x207.07C7.28651\x206.90103\x207.52762\x206.72615\x207.73333\x206.53632Z'}}]},_0xfe95ef=(0x0,_0x31b8c1['forwardRef'])(function(_0x15c71d,_0x54e684){const _0xe712a1=_0x4e4756;return(0x0,_0x31b8c1[_0xe712a1(0x7a6)])(_0x3e4017,Object[_0xe712a1(0x5bf)]({},_0x15c71d,{'id':_0xe712a1(0x2f1),'ref':_0x54e684,'icon':_0x178797}));});_0xfe95ef[_0x4e4756(0x1cf)]=_0x4e4756(0x7ad);let _0x5c8d6a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2c7),'fillRule':'evenodd'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x419)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x666)}}]},_0x21e00a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1f3a42,_0x661072){const _0x3dfb4d=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3dfb4d(0x5bf)]({},_0x1f3a42,{'id':_0x3dfb4d(0x3cd),'ref':_0x661072,'icon':_0x5c8d6a}));});_0x21e00a['displayName']=_0x4e4756(0x383);let _0x23da00={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2c7),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x4b9)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M8.05049\x206.5C8.60971\x206.5\x209.05243\x206.66038\x209.39417\x206.99057C9.72039\x207.32075\x209.89126\x207.77358\x209.89126\x208.34906C9.89126\x209.08491\x209.58058\x209.58491\x208.97476\x209.83019C9.30097\x209.95283\x209.54951\x2010.1415\x209.72039\x2010.3868C9.9068\x2010.6415\x2010\x2010.9717\x2010\x2011.3679C10\x2011.9906\x209.82136\x2012.5\x209.47184\x2012.8962C9.09903\x2013.2925\x208.60971\x2013.5\x208.01942\x2013.5C7.45243\x2013.5\x206.99417\x2013.3208\x206.65243\x2012.9717C6.34428\x2012.6573\x206.14372\x2012.2301\x206.05074\x2011.69C6.00957\x2011.4508\x206.20502\x2011.2453\x206.44767\x2011.2453C6.67451\x2011.2453\x206.85393\x2011.4269\x206.90096\x2011.6488C6.95658\x2011.9113\x207.06111\x2012.1258\x207.21942\x2012.2925C7.42136\x2012.5189\x207.68544\x2012.6321\x208.01165\x2012.6321C8.36893\x2012.6321\x208.65631\x2012.5\x208.87379\x2012.2547C9.06019\x2012.0283\x209.16116\x2011.7547\x209.16116\x2011.4151C9.16116\x2011.0189\x209.06019\x2010.7264\x208.85825\x2010.5377C8.67184\x2010.3491\x208.39223\x2010.2547\x208.02718\x2010.2547H8.01009C7.79647\x2010.2547\x207.6233\x2010.0815\x207.6233\x209.86792C7.6233\x209.6543\x207.79647\x209.48113\x208.01009\x209.48113H8.01942C8.36116\x209.48113\x208.61748\x209.38679\x208.78835\x209.20755C8.95922\x209.0283\x209.05243\x208.76415\x209.05243\x208.42453C9.05243\x208.08491\x208.96699\x207.83019\x208.81165\x207.65094C8.64078\x207.46226\x208.38447\x207.37736\x208.05825\x207.37736C7.72427\x207.37736\x207.46019\x207.48113\x207.27379\x207.68868C7.14954\x207.82701\x207.05635\x208.01145\x206.99882\x208.24199C6.94616\x208.45298\x206.77167\x208.62264\x206.5542\x208.62264C6.31334\x208.62264\x206.11943\x208.41738\x206.16627\x208.18112C6.25771\x207.71991\x206.44189\x207.3465\x206.72233\x207.0566C7.06408\x206.67924\x207.5068\x206.5\x208.05049\x206.5Z'}}]},_0x356444=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x113a63,_0x107862){const _0x3cca29=_0x4e4756;return(0x0,_0x31b8c1[_0x3cca29(0x7a6)])(_0x3e4017,Object['assign']({},_0x113a63,{'id':_0x3cca29(0x679),'ref':_0x107862,'icon':_0x23da00}));});_0x356444[_0x4e4756(0x1cf)]=_0x4e4756(0x252);let _0x4d473a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x1a7),'fillRule':_0x4e4756(0x309)}}]},_0x350265=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x33072b,_0x10d943){const _0x171b1d=_0x4e4756;return(0x0,_0x31b8c1[_0x171b1d(0x7a6)])(_0x3e4017,Object[_0x171b1d(0x5bf)]({},_0x33072b,{'id':_0x171b1d(0x528),'ref':_0x10d943,'icon':_0x4d473a}));});_0x350265['displayName']='ShapeStar4Icon';let _0x395561={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x606),'fillRule':'evenodd'}}]},_0x55f050=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1c0c6a,_0x5f2d58){const _0x803e63=_0x4e4756;return(0x0,_0x31b8c1[_0x803e63(0x7a6)])(_0x3e4017,Object[_0x803e63(0x5bf)]({},_0x1c0c6a,{'id':'shape-star5-icon','ref':_0x5f2d58,'icon':_0x395561}));});_0x55f050[_0x4e4756(0x1cf)]=_0x4e4756(0x2d8);let _0x176c7c={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x3ab),'fillRule':_0x4e4756(0x309)}}]},_0x5cc927=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x56c3a5,_0xbc56eb){const _0x35c0ac=_0x4e4756;return(0x0,_0x31b8c1[_0x35c0ac(0x7a6)])(_0x3e4017,Object[_0x35c0ac(0x5bf)]({},_0x56c3a5,{'id':_0x35c0ac(0x3a6),'ref':_0xbc56eb,'icon':_0x176c7c}));});_0x5cc927[_0x4e4756(0x1cf)]=_0x4e4756(0x42d);let _0x45e9a3={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x6d4),'fillRule':_0x4e4756(0x309)}}]},_0x2310a2=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4025ed,_0x437881){const _0x73e423=_0x4e4756;return(0x0,_0x31b8c1[_0x73e423(0x7a6)])(_0x3e4017,Object[_0x73e423(0x5bf)]({},_0x4025ed,{'id':_0x73e423(0x22c),'ref':_0x437881,'icon':_0x45e9a3}));});_0x2310a2[_0x4e4756(0x1cf)]=_0x4e4756(0x78d);let _0x3f1faa={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x3ae),'fillRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x289)}}]},_0x2e95a0=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xae965c,_0x25dc63){const _0x1737c5=_0x4e4756;return(0x0,_0x31b8c1[_0x1737c5(0x7a6)])(_0x3e4017,Object['assign']({},_0xae965c,{'id':'shape-star8-icon','ref':_0x25dc63,'icon':_0x3f1faa}));});_0x2e95a0['displayName']=_0x4e4756(0x510);let _0xf52593={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x1ed),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':'M12.4\x2016.4H16.4V12.4','strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x564839=(0x0,_0x31b8c1['forwardRef'])(function(_0x12e079,_0x483535){const _0x12b60c=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x12b60c(0x5bf)]({},_0x12e079,{'id':_0x12b60c(0x370),'ref':_0x483535,'icon':_0xf52593}));});_0x564839[_0x4e4756(0x1cf)]=_0x4e4756(0x3c8);let _0xb79432={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x1ed),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M7.6\x203.6H3.6V7.6','strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x439),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x54cefc=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1f773e,_0x32dfbb){const _0x1fcccf=_0x4e4756;return(0x0,_0x31b8c1[_0x1fcccf(0x7a6)])(_0x3e4017,Object[_0x1fcccf(0x5bf)]({},_0x1f773e,{'id':_0x1fcccf(0x365),'ref':_0x32dfbb,'icon':_0xb79432}));});_0x54cefc['displayName']=_0x4e4756(0x3e9);let _0x1864b1={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1e5),'fillRule':'evenodd'}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x3f0)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x5b3)}}]},_0x35a925=(0x0,_0x31b8c1['forwardRef'])(function(_0x399546,_0x1e7ad9){const _0xd9f4a4=_0x4e4756;return(0x0,_0x31b8c1[_0xd9f4a4(0x7a6)])(_0x3e4017,Object[_0xd9f4a4(0x5bf)]({},_0x399546,{'id':_0xd9f4a4(0x227),'ref':_0x1e7ad9,'icon':_0x1864b1}));});_0x35a925[_0x4e4756(0x1cf)]=_0x4e4756(0x6ad);let _0x4263d3={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M10.2812\x2018.834C10.1222\x2019.0115\x209.84452\x2019.0116\x209.68555\x2018.834L7.67969\x2016.5928C8.40137\x2016.8443\x209.17597\x2016.9834\x209.9834\x2016.9834C10.7907\x2016.9834\x2011.5655\x2016.8442\x2012.2871\x2016.5928L10.2812\x2018.834ZM3.67969\x2013.0303C4.36642\x2014.4487\x205.51827\x2015.5991\x206.93652\x2016.2861L3.93652\x2016.4531C3.69851\x2016.4663\x203.50149\x2016.2693\x203.51465\x2016.0312L3.67969\x2013.0303ZM16.4531\x2016.0312C16.4663\x2016.2693\x2016.2693\x2016.4663\x2016.0312\x2016.4531L13.0303\x2016.2861C14.4486\x2015.5993\x2015.5993\x2014.4486\x2016.2861\x2013.0303L16.4531\x2016.0312ZM18.834\x209.68555C19.0116\x209.84452\x2019.0115\x2010.1222\x2018.834\x2010.2812L16.5928\x2012.2871C16.8442\x2011.5655\x2016.9834\x2010.7907\x2016.9834\x209.9834C16.9834\x209.17597\x2016.8443\x208.40137\x2016.5928\x207.67969L18.834\x209.68555ZM3.37305\x207.68066C3.12179\x208.40196\x202.98343\x209.17648\x202.9834\x209.9834C2.9834\x2010.7902\x203.12188\x2011.5649\x203.37305\x2012.2861L1.13281\x2010.2812C0.955646\x2010.1222\x200.955437\x209.84443\x201.13281\x209.68555L3.37305\x207.68066ZM6.93652\x203.67969C5.51815\x204.36655\x204.36655\x205.51815\x203.67969\x206.93652L3.51465\x203.93652C3.50149\x203.69851\x203.69851\x203.50149\x203.93652\x203.51465L6.93652\x203.67969ZM16.0312\x203.51465C16.2693\x203.50149\x2016.4663\x203.69851\x2016.4531\x203.93652L16.2861\x206.93652C15.5991\x205.51827\x2014.4487\x204.36642\x2013.0303\x203.67969L16.0312\x203.51465ZM9.68555\x201.13281C9.84443\x200.955437\x2010.1222\x200.955646\x2010.2812\x201.13281L12.2861\x203.37305C11.5649\x203.12188\x2010.7902\x202.9834\x209.9834\x202.9834C9.17648\x202.98343\x208.40196\x203.12179\x207.68066\x203.37305L9.68555\x201.13281Z'}},{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0xa,'cy':0xa,'r':5.2,'stroke':_0x4e4756(0x455),'strokeWidth':1.6}}]},_0x2faf83=(0x0,_0x31b8c1['forwardRef'])(function(_0x11b7a7,_0x5bb329){const _0x4b821f=_0x4e4756;return(0x0,_0x31b8c1[_0x4b821f(0x7a6)])(_0x3e4017,Object[_0x4b821f(0x5bf)]({},_0x11b7a7,{'id':_0x4b821f(0x5f0),'ref':_0x5bb329,'icon':_0x4263d3}));});_0x2faf83[_0x4e4756(0x1cf)]='ShapeSunIcon';let _0x57be1b={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x4e4756(0x79d),'fillRule':_0x4e4756(0x309)}}]},_0x374a7a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x28394b,_0x3478c9){const _0x39c3d0=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x39c3d0(0x5bf)]({},_0x28394b,{'id':_0x39c3d0(0x52d),'ref':_0x3478c9,'icon':_0x57be1b}));});_0x374a7a[_0x4e4756(0x1cf)]=_0x4e4756(0x735);let _0x195513={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M18.2\x2010V1.8H10C5.471\x201.8\x201.8\x205.471\x201.8\x2010C1.8\x2014.529\x205.471\x2018.2\x2010\x2018.2C14.529\x2018.2\x2018.2\x2014.529\x2018.2\x2010Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x22eacf=(0x0,_0x31b8c1['forwardRef'])(function(_0x3590c8,_0x4eda3a){const _0x5bbf62=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x5bbf62(0x5bf)]({},_0x3590c8,{'id':_0x5bbf62(0x32b),'ref':_0x4eda3a,'icon':_0x195513}));});_0x22eacf[_0x4e4756(0x1cf)]=_0x4e4756(0x427);let _0xde3e4a={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x17b),'strokeWidth':1.6}}]},_0x1403eb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4b844e,_0x4656d9){const _0x69a501=_0x4e4756;return(0x0,_0x31b8c1[_0x69a501(0x7a6)])(_0x3e4017,Object['assign']({},_0x4b844e,{'id':'shape-trapezoid-icon','ref':_0x4656d9,'icon':_0xde3e4a}));});_0x1403eb['displayName']=_0x4e4756(0x73d);let _0x5454b5={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M10\x203.23633L17.3818\x2018H2.61816L10\x203.23633Z','strokeWidth':1.6}}]},_0x3d426c=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5f1326,_0x12339e){const _0x3b3b03=_0x4e4756;return(0x0,_0x31b8c1[_0x3b3b03(0x7a6)])(_0x3e4017,Object[_0x3b3b03(0x5bf)]({},_0x5f1326,{'id':_0x3b3b03(0x7d6),'ref':_0x12339e,'icon':_0x5454b5}));});_0x3d426c[_0x4e4756(0x1cf)]=_0x4e4756(0x248);let _0x37ed6b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1bb),'fillRule':_0x4e4756(0x309)}}]},_0x537f5f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4b963d,_0x1e4a5c){const _0x509e29=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object['assign']({},_0x4b963d,{'id':_0x509e29(0x22e),'ref':_0x1e4a5c,'icon':_0x37ed6b}));});_0x537f5f[_0x4e4756(0x1cf)]=_0x4e4756(0x196);let _0x4dcf21={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x25d),'fillRule':'evenodd'}}]},_0x5eb0cb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x42cadf,_0x9b605f){const _0xd173b3=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0xd173b3(0x5bf)]({},_0x42cadf,{'id':_0xd173b3(0x66d),'ref':_0x9b605f,'icon':_0x4dcf21}));});_0x5eb0cb['displayName']=_0x4e4756(0x368);let _0xd2b0ce={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M16\x205L13\x205L13\x206L19\x206L19\x2014L13\x2014L13\x2015L16\x2015L10\x2020L4\x2015L7\x2015L7\x2014L1\x2014L1\x206L7\x206L7\x205L4\x205L10\x200ZM8.6\x203.2482L8.6\x207.6L2.6\x207.6L2.6\x2012.4L8.6\x2012.4L8.6\x2016.7509L10\x2017.9171L11.4\x2016.7509L11.4\x2012.4L17.4\x2012.4L17.4\x207.6L11.4\x207.6L11.4\x203.2482L10\x202.0819Z','fillRule':_0x4e4756(0x309)}}]},_0x42a962=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x27f8ba,_0x315fe2){const _0x468d00=_0x4e4756;return(0x0,_0x31b8c1[_0x468d00(0x7a6)])(_0x3e4017,Object[_0x468d00(0x5bf)]({},_0x27f8ba,{'id':_0x468d00(0x69c),'ref':_0x315fe2,'icon':_0xd2b0ce}));});_0x42a962[_0x4e4756(0x1cf)]=_0x4e4756(0x119);let _0xcbd32b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x4e4756(0x4b5),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x24d),'fillRule':_0x4e4756(0x309)}}]},_0x47eb1f=(0x0,_0x31b8c1['forwardRef'])(function(_0x35dd2f,_0x58a284){const _0x592a17=_0x4e4756;return(0x0,_0x31b8c1[_0x592a17(0x7a6)])(_0x3e4017,Object[_0x592a17(0x5bf)]({},_0x35dd2f,{'id':_0x592a17(0x2e5),'ref':_0x58a284,'icon':_0xcbd32b}));});_0x47eb1f[_0x4e4756(0x1cf)]=_0x4e4756(0x798);let _0x5b88b8={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2017\x2017','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M11.5\x206C11.5\x204.34315\x2010.6569\x203.5\x209\x203.5H6C4.34315\x203.5\x203.5\x204.34315\x203.5\x206V15H1.5V6H0V16.5H5V6C5\x205.44771\x205.44771\x205\x206\x205H9C9.5523\x205\x2010\x205.44772\x2010\x206H11.5ZM6\x201.5H9C11.2091\x201.5\x2013.5\x203.79086\x2013.5\x206V9H13.4971L12.5\x2011L11.5\x209V6H10V7H8L12.5\x2014L17\x207H15V6C15\x202.68629\x2012.3137\x200\x209\x200H6C2.68629\x200\x200\x202.68629\x200\x206H1.5C1.5\x203.79086\x203.79086\x201.5\x206\x201.5Z'}}]},_0x43361d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4cfc72,_0x4f6cd2){const _0x441ec1=_0x4e4756;return(0x0,_0x31b8c1[_0x441ec1(0x7a6)])(_0x3e4017,Object[_0x441ec1(0x5bf)]({},_0x4cfc72,{'id':'shape-uturn-arrow-icon','ref':_0x4f6cd2,'icon':_0x5b88b8}));});_0x43361d['displayName']=_0x4e4756(0x771);let _0x31f60b={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2f2),'fillRule':_0x4e4756(0x309)}}]},_0x8bf4e=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x16b1bf,_0xb9d1c4){const _0x235aaa=_0x4e4756;return(0x0,_0x31b8c1[_0x235aaa(0x7a6)])(_0x3e4017,Object['assign']({},_0x16b1bf,{'id':_0x235aaa(0x292),'ref':_0xb9d1c4,'icon':_0x31f60b}));});_0x8bf4e[_0x4e4756(0x1cf)]=_0x4e4756(0x62c);let _0x293da2={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M2\x203.1C5\x201.15\x208.3\x201.15\x2010.85\x203.25C12.9\x204.9\x2015.4\x205.45\x2018\x204.55V16.65C15.1\x2017.25\x2012.55\x2016.7\x2010.35\x2015.25C7.8\x2013.55\x205.25\x2013.25\x202\x2014V3.1Z','strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.6}}]},_0x4c0a21=(0x0,_0x31b8c1['forwardRef'])(function(_0x1a313b,_0x1b03d2){const _0x3b0a7e=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3b0a7e(0x5bf)]({},_0x1a313b,{'id':_0x3b0a7e(0x29d),'ref':_0x1b03d2,'icon':_0x293da2}));});_0x4c0a21['displayName']=_0x4e4756(0x484);let _0x156a40={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x4b5),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M5.59961\x2013.9463L5.12988\x2013.6523C3.17706\x2012.4297\x202\x2010.5443\x202\x208.5C2\x205.07312\x205.40326\x202\x2010\x202C14.5967\x202\x2018\x205.07312\x2018\x208.5C18\x2011.9269\x2014.5967\x2015\x2010\x2015C9.69917\x2015\x209.40364\x2015.0831\x209.1709\x2015.165C8.92125\x2015.2529\x208.65656\x2015.372\x208.39355\x2015.5029C7.86719\x2015.7649\x207.27855\x2016.1101\x206.71777\x2016.4561C6.33331\x2016.6932\x205.95047\x2016.9379\x205.59961\x2017.1631V13.9463Z','strokeWidth':1.6}}]},_0x1229e5=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x184bfc,_0x421347){const _0x203b10=_0x4e4756;return(0x0,_0x31b8c1[_0x203b10(0x7a6)])(_0x3e4017,Object[_0x203b10(0x5bf)]({},_0x184bfc,{'id':_0x203b10(0x48d),'ref':_0x421347,'icon':_0x156a40}));});_0x1229e5[_0x4e4756(0x1cf)]='ShapeWedgeEllipseCalloutIcon';let _0x580984={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x207),'strokeWidth':1.6}}]},_0x9d6fcf=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x3c3de1,_0x4a3c9a){const _0x2e5f9f=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x2e5f9f(0x5bf)]({},_0x3c3de1,{'id':'shape-wedge-rect-callout-icon','ref':_0x4a3c9a,'icon':_0x580984}));});_0x9d6fcf[_0x4e4756(0x1cf)]='ShapeWedgeRectCalloutIcon';let _0x2d64db={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2020\x2020','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x31f),'strokeWidth':1.6}}]},_0x3e272a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x509a59,_0x27092f){const _0x29fde6=_0x4e4756;return(0x0,_0x31b8c1[_0x29fde6(0x7a6)])(_0x3e4017,Object['assign']({},_0x509a59,{'id':_0x29fde6(0x552),'ref':_0x27092f,'icon':_0x2d64db}));});_0x3e272a[_0x4e4756(0x1cf)]=_0x4e4756(0x1bc);let _0x3ce6cf={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x366)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x7a0)}}]},_0x318e1d=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xd29cb8,_0x44ec74){const _0x85b48e=_0x4e4756;return(0x0,_0x31b8c1[_0x85b48e(0x7a6)])(_0x3e4017,Object[_0x85b48e(0x5bf)]({},_0xd29cb8,{'id':_0x85b48e(0x238),'ref':_0x44ec74,'icon':_0x3ce6cf}));});_0x318e1d[_0x4e4756(0x1cf)]='StrikethroughIcon';let _0x10393d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2017\x2017','width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M2.08596\x2014.1387L10.3379\x202.66873','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':'currentColor','d':'M10.3379\x2014.1387L2.08596\x202.66873','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x308),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}}]},_0xdd1cc0=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x4ba253,_0x1d1097){const _0x2292ba=_0x4e4756;return(0x0,_0x31b8c1[_0x2292ba(0x7a6)])(_0x3e4017,Object[_0x2292ba(0x5bf)]({},_0x4ba253,{'id':'subscript-icon','ref':_0x1d1097,'icon':_0x10393d}));});_0xdd1cc0[_0x4e4756(0x1cf)]='SubscriptIcon';let _0x59fa86={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2017\x2017','width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x25f),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':'M10.2989\x2014.4537L2.10899\x203.06987','strokeLinecap':'round','strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':'M12.7525\x203.35933C13.3943\x202.79901\x2014.7089\x202.79129\x2014.9533\x203.91363C15.204\x205.06487\x2013.7456\x206.56876\x2012.6812\x207.41429C12.6663\x207.4261\x2012.6751\x207.44982\x2012.6941\x207.44982L15.1497\x207.44977','strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}}]},_0x459d3f=(0x0,_0x31b8c1['forwardRef'])(function(_0x47b896,_0x43e435){const _0x93403f=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x93403f(0x5bf)]({},_0x47b896,{'id':_0x93403f(0x5f1),'ref':_0x43e435,'icon':_0x59fa86}));});_0x459d3f['displayName']=_0x4e4756(0x190);let _0x351caa={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x480)}}]},_0x77dc9f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0xd39136,_0x1cd225){const _0x41d712=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x41d712(0x5bf)]({},_0xd39136,{'id':_0x41d712(0x498),'ref':_0x1cd225,'icon':_0x351caa}));});_0x77dc9f[_0x4e4756(0x1cf)]=_0x4e4756(0x617);let _0x503d12={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x3b2),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2a8)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x665),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5ee),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x3df028=(0x0,_0x31b8c1['forwardRef'])(function(_0x2fa2bc,_0x3301a2){const _0x3b9236=_0x4e4756;return(0x0,_0x31b8c1[_0x3b9236(0x7a6)])(_0x3e4017,Object[_0x3b9236(0x5bf)]({},_0x2fa2bc,{'id':_0x3b9236(0x5a1),'ref':_0x3301a2,'icon':_0x503d12}));});_0x3df028[_0x4e4756(0x1cf)]=_0x4e4756(0x222);let _0x379b5d={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2016\x2016','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':'path','attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x75c),'strokeLinecap':_0x4e4756(0x65d),'strokeLinejoin':_0x4e4756(0x65d),'strokeWidth':1.35}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x74b),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.35}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x4e4756(0x7dd),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':'currentColor','d':_0x4e4756(0x1ae),'strokeLinecap':'round','strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':_0x4e4756(0x7ba),'strokeLinecap':_0x4e4756(0x65d),'strokeWidth':1.2}},{'tag':_0x4e4756(0x61b),'attrs':{'stroke':_0x4e4756(0x455),'d':'M12.7\x2013.5H14.2','strokeLinecap':'round','strokeWidth':1.2}}]},_0x1b4bdf=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x517429,_0x287f4f){const _0x317158=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x317158(0x5bf)]({},_0x517429,{'id':_0x317158(0x676),'ref':_0x287f4f,'icon':_0x379b5d}));});_0x1b4bdf['displayName']=_0x4e4756(0x26f);let _0x19eba9={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x461)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x215)}}]},_0xf856b0=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x1b89f5,_0x464571){const _0x3b1557=_0x4e4756;return(0x0,_0x31b8c1[_0x3b1557(0x7a6)])(_0x3e4017,Object[_0x3b1557(0x5bf)]({},_0x1b89f5,{'id':_0x3b1557(0x70c),'ref':_0x464571,'icon':_0x19eba9}));});_0xf856b0['displayName']=_0x4e4756(0x109);let _0x1060a4={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x3b2),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x35a)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M3.19888\x205.56299C2.31522\x205.56299\x201.59888\x206.27933\x201.59888\x207.16299V13.163C1.59888\x2014.0466\x202.31522\x2014.763\x203.19888\x2014.763H9.19888C10.0825\x2014.763\x2010.7989\x2014.0466\x2010.7989\x2013.163V7.16299C10.7989\x206.27933\x2010.0825\x205.56299\x209.19888\x205.56299H3.19888ZM2.79888\x207.16299C2.79888\x206.94207\x202.97796\x206.76299\x203.19888\x206.76299H9.19888C9.41979\x206.76299\x209.59888\x206.94207\x209.59888\x207.16299V13.163C9.59888\x2013.3839\x209.41979\x2013.563\x209.19888\x2013.563H3.19888C2.97796\x2013.563\x202.79888\x2013.3839\x202.79888\x2013.163V7.16299Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x47b447=(0x0,_0x31b8c1['forwardRef'])(function(_0x9074bb,_0x5cfc4b){const _0x3168bc=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x3168bc(0x5bf)]({},_0x9074bb,{'id':_0x3168bc(0x1ac),'ref':_0x5cfc4b,'icon':_0x1060a4}));});_0x47b447[_0x4e4756(0x1cf)]=_0x4e4756(0x43f);let _0x4296b0={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x3b2),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M3.03012\x203.14006C3.03012\x203.59845\x202.65851\x203.97006\x202.20012\x203.97006C1.74172\x203.97006\x201.37012\x203.59845\x201.37012\x203.14006C1.37012\x202.68166\x201.74172\x202.31006\x202.20012\x202.31006C2.65851\x202.31006\x203.03012\x202.68166\x203.03012\x203.14006Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':'M4.53027\x202.54014C4.1989\x202.54014\x203.93027\x202.80877\x203.93027\x203.14014C3.93027\x203.47151\x204.1989\x203.74014\x204.53027\x203.74014H14.5488C14.8802\x203.74014\x2015.1488\x203.47151\x2015.1488\x203.14014C15.1488\x202.80877\x2014.8802\x202.54014\x2014.5488\x202.54014H4.53027Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M2.20012\x208.82992C2.65851\x208.82992\x203.03012\x208.45832\x203.03012\x207.99992C3.03012\x207.54153\x202.65851\x207.16992\x202.20012\x207.16992C1.74172\x207.16992\x201.37012\x207.54153\x201.37012\x207.99992C1.37012\x208.45832\x201.74172\x208.82992\x202.20012\x208.82992Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5fe)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x5fa)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x2b9)}}]},_0xe53487=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x45584e,_0x4d2566){const _0x189a70=_0x4e4756;return(0x0,_0x31b8c1[_0x189a70(0x7a6)])(_0x3e4017,Object['assign']({},_0x45584e,{'id':'unorder-icon','ref':_0x4d2566,'icon':_0x4296b0}));});_0xe53487[_0x4e4756(0x1cf)]=_0x4e4756(0x659);let _0x3136b9={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x41b)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M5.57564\x2011.5756L7.57564\x209.57564C7.80995\x209.34132\x208.18985\x209.34132\x208.42417\x209.57564L10.4242\x2011.5756C10.6585\x2011.81\x2010.6585\x2012.1899\x2010.4242\x2012.4242C10.1899\x2012.6585\x209.80995\x2012.6585\x209.57564\x2012.4242L8.5999\x2011.4484V14.6665C8.5999\x2014.9979\x208.33127\x2015.2665\x207.9999\x2015.2665C7.66853\x2015.2665\x207.3999\x2014.9979\x207.3999\x2014.6665V11.4484L6.42417\x2012.4242C6.18985\x2012.6585\x205.80995\x2012.6585\x205.57564\x2012.4242C5.34132\x2012.1899\x205.34132\x2011.81\x205.57564\x2011.5756Z'}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':'M1.9999\x207.40015C1.66853\x207.40015\x201.3999\x207.66878\x201.3999\x208.00015C1.3999\x208.33152\x201.66853\x208.60015\x201.9999\x208.60015H13.9999C14.3313\x208.60015\x2014.5999\x208.33152\x2014.5999\x208.00015C14.5999\x207.66878\x2014.3313\x207.40015\x2013.9999\x207.40015H1.9999Z'}}]},_0xdac954=(0x0,_0x31b8c1['forwardRef'])(function(_0x3cedd2,_0x383c82){const _0x31c563=_0x4e4756;return(0x0,_0x31b8c1[_0x31c563(0x7a6)])(_0x3e4017,Object[_0x31c563(0x5bf)]({},_0x3cedd2,{'id':_0x31c563(0x385),'ref':_0x383c82,'icon':_0x3136b9}));});_0xdac954['displayName']='VerticalCenterIcon';let _0x28c75f={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':'none','viewBox':_0x4e4756(0x3b2),'width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'colorChannel1','d':_0x4e4756(0x667)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x559),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x44cbce=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x52319e,_0x54b6f8){const _0x2f63c1=_0x4e4756;return(0x0,_0x31b8c1[_0x2f63c1(0x7a6)])(_0x3e4017,Object[_0x2f63c1(0x5bf)]({},_0x52319e,{'id':_0x2f63c1(0x66b),'ref':_0x54b6f8,'icon':_0x28c75f}));});_0x44cbce[_0x4e4756(0x1cf)]=_0x4e4756(0x2fd);let _0x14e31a={'tag':'svg','attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':'0\x200\x2017\x2016','width':'1em','height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M8.01281\x201.36643C8.79386\x200.585377\x2010.0602\x200.585378\x2010.8412\x201.36643L12.9223\x203.44752C13.7034\x204.22857\x2013.7034\x205.4949\x2012.9223\x206.27595L9.36445\x209.83383C8.5834\x2010.6149\x207.31707\x2010.6149\x206.53602\x209.83383L4.45493\x207.75273C3.67388\x206.97168\x203.67388\x205.70535\x204.45493\x204.9243L8.01281\x201.36643ZM9.9927\x202.21495C9.68028\x201.90253\x209.17375\x201.90253\x208.86133\x202.21495L5.30346\x205.77283L5.29671\x205.77966L10.839\x206.66224L12.0738\x205.42742C12.3862\x205.115\x2012.3862\x204.60847\x2012.0738\x204.29605L9.9927\x202.21495Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M14.5179\x209.48875C14.5179\x209.99175\x2014.1101\x2010.3995\x2013.607\x2010.3995C13.1041\x2010.3995\x2012.6963\x209.99175\x2012.6963\x209.48875C12.6963\x209.1773\x2013.0455\x208.59966\x2013.3114\x208.20487C13.4549\x207.99177\x2013.7591\x207.99177\x2013.9027\x208.20486C14.1687\x208.59965\x2014.5179\x209.1773\x2014.5179\x209.48875Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x584),'d':_0x4e4756(0x667)}}]},_0x20616a=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x7a4896,_0x555646){const _0x35208f=_0x4e4756;return(0x0,_0x31b8c1[_0x35208f(0x7a6)])(_0x3e4017,Object['assign']({},_0x7a4896,{'id':_0x35208f(0x3fd),'ref':_0x555646,'icon':_0x14e31a}));});_0x20616a['displayName']=_0x4e4756(0x220);let _0x391421={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'viewBox':'0\x200\x2016\x2016','width':_0x4e4756(0x143),'height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0x8,'cy':0x8,'r':5.4,'fill':_0x4e4756(0x584),'stroke':_0x4e4756(0x455),'strokeWidth':1.2}}]},_0x4b3966=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x375c17,_0x4e0f65){const _0x2c15f3=_0x4e4756;return(0x0,_0x31b8c1['createElement'])(_0x3e4017,Object[_0x2c15f3(0x5bf)]({},_0x375c17,{'id':'shape-background-color-double-icon','ref':_0x4e0f65,'icon':_0x391421}));});_0x4b3966[_0x4e4756(0x1cf)]='ShapeBackgroundColorDoubleIcon';let _0x6aec20={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':'http://www.w3.org/2000/svg','viewBox':_0x4e4756(0x10c),'width':'1em','height':_0x4e4756(0x143)},'children':[{'tag':_0x4e4756(0x4c8),'attrs':{'cx':0x8,'cy':0x8,'r':5.1,'fill':_0x4e4756(0x539),'stroke':'colorChannel1','strokeWidth':1.8}}]},_0x37160f=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x148eef,_0x24e97c){const _0xfd66f3=_0x4e4756;return(0x0,_0x31b8c1[_0xfd66f3(0x7a6)])(_0x3e4017,Object['assign']({},_0x148eef,{'id':_0xfd66f3(0x253),'ref':_0x24e97c,'icon':_0x6aec20}));});_0x37160f[_0x4e4756(0x1cf)]=_0x4e4756(0x232);let _0x49ac23={'tag':_0x4e4756(0x1b9),'attrs':{'xmlns':_0x4e4756(0x38b),'fill':_0x4e4756(0x539),'viewBox':_0x4e4756(0x10c),'width':_0x4e4756(0x143),'height':'1em'},'children':[{'tag':_0x4e4756(0x61b),'attrs':{'fill':'currentColor','d':_0x4e4756(0x3d5)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x1ad)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M6.8981\x207.2334C6.56672\x207.2334\x206.2981\x207.50203\x206.2981\x207.8334C6.2981\x208.16477\x206.56672\x208.4334\x206.8981\x208.4334H14.4605C14.7918\x208.4334\x2015.0605\x208.16477\x2015.0605\x207.8334C15.0605\x207.50203\x2014.7918\x207.2334\x2014.4605\x207.2334H6.8981Z'}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x390)}},{'tag':_0x4e4756(0x61b),'attrs':{'fill':_0x4e4756(0x455),'d':'M2.87279\x205.8999C1.80504\x205.8999\x200.939453\x206.76549\x200.939453\x207.83324C0.939453\x208.90099\x201.80504\x209.76657\x202.87279\x209.76657C3.94054\x209.76657\x204.80612\x208.90099\x204.80612\x207.83324C4.80612\x206.76549\x203.94054\x205.8999\x202.87279\x205.8999ZM2.13945\x207.83324C2.13945\x207.42823\x202.46778\x207.0999\x202.87279\x207.0999C3.2778\x207.0999\x203.60612\x207.42823\x203.60612\x207.83324C3.60612\x208.23824\x203.2778\x208.56657\x202.87279\x208.56657C2.46778\x208.56657\x202.13945\x208.23824\x202.13945\x207.83324Z','fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}},{'tag':'path','attrs':{'fill':_0x4e4756(0x455),'d':_0x4e4756(0x32c),'fillRule':_0x4e4756(0x309),'clipRule':_0x4e4756(0x309)}}]},_0x30ddeb=(0x0,_0x31b8c1[_0x4e4756(0x290)])(function(_0x5d4498,_0x1a3f89){const _0x63402b=_0x4e4756;return(0x0,_0x31b8c1[_0x63402b(0x7a6)])(_0x3e4017,Object[_0x63402b(0x5bf)]({},_0x5d4498,{'id':'todo-list-double-icon','ref':_0x1a3f89,'icon':_0x49ac23}));});_0x30ddeb[_0x4e4756(0x1cf)]='TodoListDoubleIcon';let _0x49dc1c={'noFill':_0x4e4756(0x641),'solidFill':_0x4e4756(0x68e),'gradientFill':_0x4e4756(0x697),'pictureFill':'Picture','color':_0x4e4756(0x70d),'transparency':_0x4e4756(0x5d4)},_0x4be5d2={'none':'none','solid':'solid','gradient':_0x4e4756(0x16b),'picture':_0x4e4756(0x437)},_0x8dfc14={'type':_0x4e4756(0x782),'angle':0x0,'stops':[{'color':_0x4e4756(0x651),'offset':0x0},{'color':_0x4e4756(0x150),'offset':0x64}]};function _0x3e7255(_0x5a676e){const _0x521a73=_0x4e4756;var _0xca90f9,_0x2eaa88,_0x37c227,_0x4e38c8,_0x22f05f;let {className:_0x2ac89f,compact:_0x1d1321=!0x0,disabled:_0x2e57b6=!0x1,value:_0x4b75a4,typeValues:_0x40171e=_0x4be5d2,color:_0x2e6d97=_0x521a73(0x651),transparency:_0x2fbbe9=0x0,gradientValue:_0x5c77bd=_0x8dfc14,labels:_0x23d262,tabLabels:_0x3d2189,noFillEditor:_0x13e20d,pictureFillEditor:_0x1076d4,renderColorIcon:_0x14f6af,keepColorPickerOpenOnChange:_0x5157b3=!0x1,onChange:_0x3cd263,onColorChange:_0x3eae21,onTransparencyChange:_0x2dd2a2,onGradientChange:_0x5d1ca8}=_0x5a676e,[_0x5a164d,_0x25a72a]=(0x0,_0x31b8c1[_0x521a73(0x3cf)])(!0x1),_0x560e5c={..._0x49dc1c,..._0x23d262},_0x59cfa6=[{'label':(_0xca90f9=_0x3d2189==null?void 0x0:_0x3d2189[_0x521a73(0x53a)])==null?_0x560e5c[_0x521a73(0x53a)]:_0xca90f9,'value':_0x40171e[_0x521a73(0x539)]},{'label':(_0x2eaa88=_0x3d2189==null?void 0x0:_0x3d2189[_0x521a73(0x594)])==null?_0x560e5c[_0x521a73(0x594)]:_0x2eaa88,'value':_0x40171e[_0x521a73(0x73a)]},{'label':(_0x37c227=_0x3d2189==null?void 0x0:_0x3d2189[_0x521a73(0x762)])==null?_0x560e5c[_0x521a73(0x762)]:_0x37c227,'value':_0x40171e[_0x521a73(0x16b)]},{'label':(_0x4e38c8=_0x3d2189==null?void 0x0:_0x3d2189[_0x521a73(0x422)])==null?_0x560e5c[_0x521a73(0x422)]:_0x4e38c8,'value':_0x40171e[_0x521a73(0x437)]}];return(0x0,_0x30fb45[_0x521a73(0x4b8)])(_0x521a73(0x18d),{'className':(0x0,_0xa18fa4['clsx'])(_0x521a73(0x433),_0x1d1321?'univer-gap-3':_0x521a73(0x2cd),_0x2ac89f),'children':[(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0xa18fa4[_0x521a73(0x7d5)],{'className':(0x0,_0xa18fa4[_0x521a73(0x4f8)])('univer-w-full\x20univer-min-w-0\x20univer-overflow-hidden',_0x1d1321&&_0x521a73(0x10f),_0x2e57b6&&'univer-pointer-events-none\x20univer-opacity-60'),'items':_0x59cfa6,'value':_0x4b75a4,'onChange':_0x1d7d9c=>{_0x2e57b6||_0x3cd263==null||_0x3cd263(_0x1d7d9c);}}),_0x4b75a4===_0x40171e[_0x521a73(0x539)]&&_0x13e20d,_0x4b75a4===_0x40171e[_0x521a73(0x73a)]&&(0x0,_0x30fb45[_0x521a73(0x4b8)])(_0x521a73(0x18d),{'className':(0x0,_0xa18fa4['clsx'])(_0x521a73(0x2c8),_0x1d1321?_0x521a73(0x2a3):_0x521a73(0x576)),'children':[(0x0,_0x30fb45[_0x521a73(0x4b8)])(_0x521a73(0x18d),{'className':_0x521a73(0x603),'children':[(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0x521a73(0x161),{'className':_0x521a73(0x67e),'children':_0x560e5c['color']}),(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0xa18fa4['Dropdown'],{'disabled':_0x2e57b6,'overlay':(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0x521a73(0x18d),{'className':'univer-rounded-lg\x20univer-p-3','children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x521a73(0x372)],{'value':_0x2e6d97,'onChange':_0x127be0=>{_0x3eae21==null||_0x3eae21(_0x127be0),_0x5157b3||_0x25a72a(!0x1);}})}),'open':_0x5a164d,'onOpenChange':_0x25a72a,'children':(0x0,_0x30fb45['jsxs'])('a',{'className':'univer-flex\x20univer-cursor-pointer\x20univer-items-center\x20univer-gap-1.5\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','children':[(_0x22f05f=_0x14f6af==null?void 0x0:_0x14f6af(_0x2e6d97))==null?(0x0,_0x30fb45['jsx'])(_0x20616a,{'className':_0x521a73(0x25e),'extend':{'colorChannel1':_0x2e6d97}}):_0x22f05f,(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x521a73(0x4f8)])(_0x521a73(0x686),{'univer-rotate-180':_0x5a164d})})]})})]}),(0x0,_0x30fb45[_0x521a73(0x4b8)])(_0x521a73(0x18d),{'className':_0x521a73(0x603),'children':[(0x0,_0x30fb45[_0x521a73(0x6c4)])('span',{'className':_0x521a73(0x67e),'children':_0x560e5c['transparency']}),(0x0,_0x30fb45['jsx'])(_0x521a73(0x18d),{'className':_0x521a73(0x6ed),'children':(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0xa18fa4[_0x521a73(0x765)],{'className':'univer-w-full','value':_0x2fbbe9,'disabled':_0x2e57b6,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x31389c=>_0x31389c+'%','parser':_0xfb44b7=>(_0xfb44b7==null?void 0x0:_0xfb44b7[_0x521a73(0x4e5)]('%',''))||'','onChange':_0x3c9922=>_0x2dd2a2==null?void 0x0:_0x2dd2a2(_0x3c9922==null?0x0:_0x3c9922)})})]})]}),_0x4b75a4===_0x40171e[_0x521a73(0x16b)]&&(0x0,_0x30fb45[_0x521a73(0x6c4)])(_0xa18fa4[_0x521a73(0x2c1)],{'compact':_0x1d1321,'value':_0x5c77bd,'onChange':_0x5d1ca8}),_0x4b75a4===_0x40171e[_0x521a73(0x437)]&&_0x1076d4]});}var _0x39b218=_0x4e4756(0x468),_0x2c78bb=_0x4e4756(0x1b7);let _0x23b19d={};function _0x454be5(_0x52ec3f,_0x4053b8){return function(_0x188c98,_0x1f3ad7){_0x4053b8(_0x188c98,_0x1f3ad7,_0x52ec3f);};}function _0x467c17(_0x1996e7,_0x54c28e,_0x3b77d4,_0x1c7540){const _0x4bb3fe=_0x4e4756;var _0x112864=arguments[_0x4bb3fe(0x7cf)],_0x1e0e6e=_0x112864<0x3?_0x54c28e:_0x1c7540===null?_0x1c7540=Object['getOwnPropertyDescriptor'](_0x54c28e,_0x3b77d4):_0x1c7540,_0xbfae4c;if(typeof Reflect==_0x4bb3fe(0x165)&&typeof Reflect[_0x4bb3fe(0x11f)]==_0x4bb3fe(0x27a))_0x1e0e6e=Reflect['decorate'](_0x1996e7,_0x54c28e,_0x3b77d4,_0x1c7540);else{for(var _0x305029=_0x1996e7[_0x4bb3fe(0x7cf)]-0x1;_0x305029>=0x0;_0x305029--)(_0xbfae4c=_0x1996e7[_0x305029])&&(_0x1e0e6e=(_0x112864<0x3?_0xbfae4c(_0x1e0e6e):_0x112864>0x3?_0xbfae4c(_0x54c28e,_0x3b77d4,_0x1e0e6e):_0xbfae4c(_0x54c28e,_0x3b77d4))||_0x1e0e6e);}return _0x112864>0x3&&_0x1e0e6e&&Object[_0x4bb3fe(0x740)](_0x54c28e,_0x3b77d4,_0x1e0e6e),_0x1e0e6e;}let _0x21fbf9={'ShapeAccentBorderCallout1Icon':_0x221984,'ShapeAccentBorderCallout2Icon':_0x7b6982,'ShapeAccentBorderCallout3Icon':_0x550ac8,'ShapeAccentCallout1Icon':_0x52bb8c,'ShapeAccentCallout2Icon':_0x25b594,'ShapeAccentCallout3Icon':_0x5e381a,'ShapeActionButtonBackPreviousIcon':_0x497335,'ShapeActionButtonBeginningIcon':_0x1e1464,'ShapeActionButtonBlankIcon':_0x5789bf,'ShapeActionButtonDocumentIcon':_0x35fe9d,'ShapeActionButtonEndIcon':_0x2e9326,'ShapeActionButtonForwardNextIcon':_0x31cf76,'ShapeActionButtonHelpIcon':_0xded03e,'ShapeActionButtonHomeIcon':_0x4f91b1,'ShapeActionButtonInformationIcon':_0x4c779e,'ShapeActionButtonMovieIcon':_0x651905,'ShapeActionButtonReturnIcon':_0x5561e8,'ShapeActionButtonSoundIcon':_0x3ac8dd,'ShapeArcIcon':_0x50a986,'ShapeBentArrowIcon':_0x5acde4,'ShapeBentConnector3Arrow1Icon':_0x12439b,'ShapeBentConnector3Arrow2Icon':_0x305779,'ShapeBentConnector3Icon':_0x61a15f,'ShapeBentUpArrowIcon':_0x562ca7,'ShapeBevelIcon':_0x54668a,'ShapeBlockArcIcon':_0xe4e173,'ShapeBorderCallout1Icon':_0x5d766a,'ShapeBorderCallout2Icon':_0x26e22d,'ShapeBorderCallout3Icon':_0x2d4050,'ShapeBracePairIcon':_0x1bb5f5,'ShapeBracketPairIcon':_0x4371d8,'ShapeCallout1Icon':_0x363138,'ShapeCallout2Icon':_0x3fb30d,'ShapeCallout3Icon':_0x7c9de6,'ShapeCanIcon':_0x24cc08,'ShapeChartPlusIcon':_0x22cfd3,'ShapeChartStarIcon':_0x46ff83,'ShapeChartXIcon':_0x17ab89,'ShapeChevronIcon':_0x28a46d,'ShapeChordIcon':_0x4339a8,'ShapeCircularArrowIcon':_0x55e67c,'ShapeCloudCalloutIcon':_0x500ed5,'ShapeCloudIcon':_0x1f17c2,'ShapeCornerIcon':_0x3463b0,'ShapeCornerTabsIcon':_0x5945bb,'ShapeCubeIcon':_0x4fe8c3,'ShapeCurvedConnector3Arrow1Icon':_0x340b30,'ShapeCurvedConnector3Arrow2Icon':_0x4f4cee,'ShapeCurvedConnector3Icon':_0x489102,'ShapeCurvedDownArrowIcon':_0x3f3c04,'ShapeCurvedLeftArrowIcon':_0x3de428,'ShapeCurvedRightArrowIcon':_0x1dc3a7,'ShapeCurvedUpArrowIcon':_0x4c5ed4,'ShapeDecagonIcon':_0x590f47,'ShapeDiagStripeIcon':_0x54a3dc,'ShapeDiamondIcon':_0x268270,'ShapeDodecagonIcon':_0x2e21dc,'ShapeDonutIcon':_0x4ea25a,'ShapeDoubleWaveIcon':_0x614ccf,'ShapeDownArrowCalloutIcon':_0x556c44,'ShapeDownArrowIcon':_0x32e425,'ShapeEllipseIcon':_0x21c897,'ShapeEllipseRibbon2Icon':_0x1bc875,'ShapeEllipseRibbonIcon':_0x379b57,'ShapeFlowChartAlternateProcessIcon':_0x38c33c,'ShapeFlowChartCollateIcon':_0x3fd41b,'ShapeFlowChartConnectorIcon':_0x55e18b,'ShapeFlowChartDecisionIcon':_0x4cf52a,'ShapeFlowChartDelayIcon':_0x67d566,'ShapeFlowChartDisplayIcon':_0x110fae,'ShapeFlowChartDocumentIcon':_0x57b275,'ShapeFlowChartExtractIcon':_0x4a47c1,'ShapeFlowChartInputOutputIcon':_0x5522d8,'ShapeFlowChartInternalStorageIcon':_0x42c72d,'ShapeFlowChartMagneticDiskIcon':_0x716344,'ShapeFlowChartMagneticDrumIcon':_0x57a66d,'ShapeFlowChartMagneticTapeIcon':_0x32a8c0,'ShapeFlowChartManualInputIcon':_0x358c55,'ShapeFlowChartManualOperationIcon':_0x2e7a2e,'ShapeFlowChartMergeIcon':_0x49cad3,'ShapeFlowChartMultidocumentIcon':_0x37253e,'ShapeFlowChartOfflineStorageIcon':_0x1e4c4d,'ShapeFlowChartOffpageConnectorIcon':_0x4633c5,'ShapeFlowChartOnlineStorageIcon':_0x2b0742,'ShapeFlowChartOrIcon':_0x1aa2b4,'ShapeFlowChartPredefinedProcessIcon':_0x3d8a74,'ShapeFlowChartPreparationIcon':_0x59ae24,'ShapeFlowChartProcessIcon':_0x42664f,'ShapeFlowChartPunchedCardIcon':_0x38a3ef,'ShapeFlowChartPunchedTapeIcon':_0x39a7e2,'ShapeFlowChartSortIcon':_0x287506,'ShapeFlowChartSummingJunctionIcon':_0x2aa805,'ShapeFlowChartTerminatorIcon':_0x56e91a,'ShapeFolderCornerIcon':_0x125e43,'ShapeFrameIcon':_0x201b28,'ShapeFunnelIcon':_0x52dcf0,'ShapeGear6Icon':_0x4ad5fe,'ShapeGear9Icon':_0x5bac45,'ShapeHalfFrameIcon':_0x32c22b,'ShapeHeartIcon':_0x89443d,'ShapeHeptagonIcon':_0x2e42e4,'ShapeHexagonIcon':_0x590809,'ShapeHomePlateIcon':_0x2c9605,'ShapeHorizontalScrollIcon':_0x1c6b41,'ShapeIcon':_0x482dd5,'ShapeIrregularSeal1Icon':_0x38f563,'ShapeIrregularSeal2Icon':_0x3c1176,'ShapeLeftArrowCalloutIcon':_0x31612b,'ShapeLeftArrowIcon':_0x12c29c,'ShapeLeftBraceIcon':_0x5083dd,'ShapeLeftBracketIcon':_0x2c9552,'ShapeLeftCircularArrowIcon':_0x2f72a3,'ShapeLeftRightArrowCalloutIcon':_0x3a38cb,'ShapeLeftRightArrowIcon':_0x2eca22,'ShapeLeftRightCircularArrowIcon':_0x70b950,'ShapeLeftRightRibbonIcon':_0x5bc5f,'ShapeLeftRightUpArrowIcon':_0x580d32,'ShapeLeftUpArrowIcon':_0x3dc053,'ShapeLightningBoltIcon':_0x23c57b,'ShapeLineIcon':_0x410dfa,'ShapeLineInvIcon':_0x5f1b28,'ShapeMathDivideIcon':_0x32ade8,'ShapeMathEqualIcon':_0x47ce45,'ShapeMathMinusIcon':_0x1c1a5d,'ShapeMathMultiplyIcon':_0x466a5c,'ShapeMathNotEqualIcon':_0x182cbb,'ShapeMathPlusIcon':_0x42ab00,'ShapeMoonIcon':_0x53735a,'ShapeNoSmokingIcon':_0x3a2c8d,'ShapeNonIsoscelesTrapezoidIcon':_0x47d4d9,'ShapeNotchedRightArrowIcon':_0xb2d5b9,'ShapeOctagonIcon':_0x3b28a7,'ShapeParallelogramIcon':_0x49de1f,'ShapePentagonIcon':_0x4d900a,'ShapePieIcon':_0x15e5c6,'ShapePieWedgeIcon':_0x5f2a82,'ShapePlaqueIcon':_0xf5a5cd,'ShapePlaqueTabsIcon':_0x261d20,'ShapePlusIcon':_0xb74b52,'ShapeQuadArrowCalloutIcon':_0x306846,'ShapeQuadArrowIcon':_0x4835d7,'ShapeRectIcon':_0x195c5d,'ShapeRectTextboxHorizontalIcon':_0x36177c,'ShapeRectTextboxVerticalIcon':_0x2433b1,'ShapeRibbon2Icon':_0x3484e9,'ShapeRibbonIcon':_0x31daa4,'ShapeRightArrowCalloutIcon':_0x199e7b,'ShapeRightArrowIcon':_0x17b722,'ShapeRightBraceIcon':_0x59c1ba,'ShapeRightBracketIcon':_0x54eee5,'ShapeRound1RectIcon':_0x558284,'ShapeRound2DiagRectIcon':_0x1449d8,'ShapeRound2SameRectIcon':_0x18bc8c,'ShapeRoundRectIcon':_0x2edfc7,'ShapeRtTriangleIcon':_0x181a1e,'ShapeSmileyFaceIcon':_0xb0f2a7,'ShapeSnip1RectIcon':_0x4ef2df,'ShapeSnip2DiagRectIcon':_0x41fc25,'ShapeSnip2SameRectIcon':_0x10b8a9,'ShapeSnipRoundRectIcon':_0x5db6af,'ShapeSquareTabsIcon':_0x1e5f47,'ShapeStar10Icon':_0x15157c,'ShapeStar12Icon':_0x238b59,'ShapeStar16Icon':_0xfe95ef,'ShapeStar24Icon':_0x21e00a,'ShapeStar32Icon':_0x356444,'ShapeStar4Icon':_0x350265,'ShapeStar5Icon':_0x55f050,'ShapeStar6Icon':_0x5cc927,'ShapeStar7Icon':_0x2310a2,'ShapeStar8Icon':_0x2e95a0,'ShapeStraightConnector1Icon':_0x564839,'ShapeStraightConnector2Icon':_0x54cefc,'ShapeStripedRightArrowIcon':_0x35a925,'ShapeSunIcon':_0x2faf83,'ShapeSwooshArrowIcon':_0x374a7a,'ShapeTeardropIcon':_0x22eacf,'ShapeTrapezoidIcon':_0x1403eb,'ShapeTriangleIcon':_0x3d426c,'ShapeUpArrowCalloutIcon':_0x537f5f,'ShapeUpArrowIcon':_0x5eb0cb,'ShapeUpDownArrowCalloutIcon':_0x42a962,'ShapeUpDownArrowIcon':_0x47eb1f,'ShapeUturnArrowIcon':_0x43361d,'ShapeVerticalScrollIcon':_0x8bf4e,'ShapeWaveIcon':_0x4c0a21,'ShapeWedgeEllipseCalloutIcon':_0x1229e5,'ShapeWedgeRectCalloutIcon':_0x9d6fcf,'ShapeWedgeRoundRectCalloutIcon':_0x3e272a},_0x276789=class extends _0x2c5933[_0x4e4756(0x6d0)]{constructor(_0x502d89){const _0xd415cb=_0x4e4756;super(),this[_0xd415cb(0x76c)]=_0x502d89,this[_0xd415cb(0x672)]();}[_0x4e4756(0x672)](){const _0x298df0=_0x4e4756;this[_0x298df0(0x417)](this[_0x298df0(0x76c)][_0x298df0(0x748)](_0x21fbf9));}};_0x276789=_0x467c17([_0x454be5(0x0,(0x0,_0x2c5933[_0x4e4756(0x27d)])(_0x100e66[_0x4e4756(0x41a)]))],_0x276789);function _0x4f4040(_0x33cda3){'@babel/helpers - typeof';const _0x1f0b3a=_0x4e4756;return _0x4f4040=typeof Symbol==_0x1f0b3a(0x27a)&&typeof Symbol[_0x1f0b3a(0x29f)]==_0x1f0b3a(0x326)?function(_0x4407f6){return typeof _0x4407f6;}:function(_0x532ff2){const _0xfab0b8=_0x1f0b3a;return _0x532ff2&&typeof Symbol==_0xfab0b8(0x27a)&&_0x532ff2[_0xfab0b8(0x7d1)]===Symbol&&_0x532ff2!==Symbol['prototype']?_0xfab0b8(0x326):typeof _0x532ff2;},_0x4f4040(_0x33cda3);}function _0x436a18(_0x1a5222,_0xace442){const _0x1df344=_0x4e4756;if(_0x4f4040(_0x1a5222)!=_0x1df344(0x165)||!_0x1a5222)return _0x1a5222;var _0x497df4=_0x1a5222[Symbol[_0x1df344(0x59f)]];if(_0x497df4!==void 0x0){var _0x3ef8f6=_0x497df4['call'](_0x1a5222,_0xace442||_0x1df344(0x3de));if(_0x4f4040(_0x3ef8f6)!=_0x1df344(0x165))return _0x3ef8f6;throw TypeError(_0x1df344(0x3e3));}return(_0xace442===_0x1df344(0x6b9)?String:Number)(_0x1a5222);}function _0x485694(_0x10edd9){const _0x57bd3d=_0x4e4756;var _0xb22e19=_0x436a18(_0x10edd9,_0x57bd3d(0x6b9));return _0x4f4040(_0xb22e19)==_0x57bd3d(0x326)?_0xb22e19:_0xb22e19+'';}function _0x5753da(_0x13fd9c,_0x4a816a,_0x595ebc){const _0xf75313=_0x4e4756;return(_0x4a816a=_0x485694(_0x4a816a))in _0x13fd9c?Object[_0xf75313(0x740)](_0x13fd9c,_0x4a816a,{'value':_0x595ebc,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x13fd9c[_0x4a816a]=_0x595ebc,_0x13fd9c;}let _0xc53c8a=class extends _0x2c5933[_0x4e4756(0x15f)]{constructor(_0x5d84a6=_0x23b19d,_0x6b48dc,_0x2d4a9b){const _0x1fa0a2=_0x4e4756;super(),this[_0x1fa0a2(0x5cf)]=_0x5d84a6,this[_0x1fa0a2(0x29c)]=_0x6b48dc,this['_configService']=_0x2d4a9b;let {..._0x3fd300}=(0x0,_0x2c5933[_0x1fa0a2(0x464)])({},_0x23b19d,this['_config']);this[_0x1fa0a2(0x610)][_0x1fa0a2(0x6c9)](_0x1fa0a2(0x133),_0x3fd300);}['onStarting'](){const _0x3683f4=_0x4e4756;this[_0x3683f4(0x29c)]['add']([_0x276789]),this[_0x3683f4(0x29c)][_0x3683f4(0x270)](_0x276789);}};_0x5753da(_0xc53c8a,_0x4e4756(0x1d0),_0x2c5933[_0x4e4756(0x49d)][_0x4e4756(0x3a9)]),_0x5753da(_0xc53c8a,_0x4e4756(0x585),_0x4e4756(0x1f4)),_0x5753da(_0xc53c8a,_0x4e4756(0x649),_0x39b218),_0x5753da(_0xc53c8a,_0x4e4756(0x38f),_0x2c78bb),_0xc53c8a=_0x467c17([_0x454be5(0x1,(0x0,_0x2c5933['Inject'])(_0x2c5933[_0x4e4756(0x668)])),_0x454be5(0x2,_0x2c5933[_0x4e4756(0x5c3)])],_0xc53c8a);function _0x315c39(_0x4955e3){const _0x5184bd=_0x4e4756;var _0x5024e9,_0x26197a,_0x548b75,_0x58e261,_0x2ef4e4,_0xbdd082,_0x47ea32,_0x55487b,_0x1b1922,_0x25ba06,_0x353b1b,_0x32fc37,_0x37e867;let {shapeData:_0x1ab85e,disableShapeOption:_0x693d67,onUpdateShapeData:_0x3d9e93,onUpdateShapeFillImage:_0x2a731b}=_0x4955e3,_0x3d3474=(0x0,_0x100e66[_0x5184bd(0x644)])(_0x2c5933['LocaleService']),_0x11194b=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x5184bd(0x714)]),_0x3776ab=(0x0,_0x100e66[_0x5184bd(0x644)])(_0x1d1765[_0x5184bd(0x5a4)]),_0x27de6b=(0x0,_0x31b8c1[_0x5184bd(0x276)])(null),_0x2886c4=_0x1ab85e[_0x5184bd(0x181)],_0x95e442=!!(_0x2886c4!=null&&_0x2886c4[_0x5184bd(0x101)]),[_0x5ccc6a,_0x2224c1]=(0x0,_0x31b8c1[_0x5184bd(0x3cf)])((_0x5024e9=_0x2886c4==null?void 0x0:_0x2886c4['imageOpacity'])==null?0x1:_0x5024e9),[_0x1a3106,_0x2148f0]=(0x0,_0x31b8c1[_0x5184bd(0x3cf)])((_0x26197a=_0x2886c4==null?void 0x0:_0x2886c4[_0x5184bd(0x148)])==null?_0x2efdc4[_0x5184bd(0x3c1)][_0x5184bd(0x3dc)]:_0x26197a),[_0x243411,_0x4e63c3]=(0x0,_0x31b8c1['useState'])((_0x548b75=_0x2886c4==null?void 0x0:_0x2886c4[_0x5184bd(0x700)])==null?!0x1:_0x548b75),[_0x22bce9,_0x380973]=(0x0,_0x31b8c1[_0x5184bd(0x3cf)])((_0x58e261=_0x2886c4==null||(_0x2ef4e4=_0x2886c4[_0x5184bd(0x184)])==null?void 0x0:_0x2ef4e4[_0x5184bd(0x1db)])==null?0x0:_0x58e261),[_0x5b7245,_0x417713]=(0x0,_0x31b8c1['useState'])((_0xbdd082=_0x2886c4==null||(_0x47ea32=_0x2886c4[_0x5184bd(0x184)])==null?void 0x0:_0x47ea32[_0x5184bd(0x3c7)])==null?0x0:_0xbdd082),[_0x1fb6da,_0x41e548]=(0x0,_0x31b8c1[_0x5184bd(0x3cf)])((_0x55487b=_0x2886c4==null||(_0x1b1922=_0x2886c4[_0x5184bd(0x184)])==null?void 0x0:_0x1b1922[_0x5184bd(0x76b)])==null?0x1:_0x55487b),[_0x4431cb,_0x544edd]=(0x0,_0x31b8c1[_0x5184bd(0x3cf)])((_0x25ba06=_0x2886c4==null||(_0x353b1b=_0x2886c4['imageTile'])==null?void 0x0:_0x353b1b[_0x5184bd(0x1e8)])==null?0x1:_0x25ba06),[_0x3c6703,_0xaa2fdf]=(0x0,_0x31b8c1['useState'])((_0x32fc37=_0x2886c4==null||(_0x37e867=_0x2886c4[_0x5184bd(0x184)])==null?void 0x0:_0x37e867[_0x5184bd(0x402)])==null?'tl':_0x32fc37),_0x36b7a5=_0x1a3106===_0x2efdc4[_0x5184bd(0x3c1)]['Tile'],_0x4c994a=Math['round']((0x1-_0x5ccc6a)*0x64),_0x345516=Math[_0x5184bd(0x65d)](_0x1fb6da*0x64),_0xb973fb=Math[_0x5184bd(0x65d)](_0x4431cb*0x64),_0x50721f=[{'label':_0x3d3474['t'](_0x5184bd(0x4c2)),'value':'tl'},{'label':_0x3d3474['t'](_0x5184bd(0x1a3)),'value':'t'},{'label':_0x3d3474['t'](_0x5184bd(0x6fb)),'value':'tr'},{'label':_0x3d3474['t']('shape-editor-ui.fill.picture.align.l'),'value':'l'},{'label':_0x3d3474['t'](_0x5184bd(0x10a)),'value':_0x5184bd(0x5a6)},{'label':_0x3d3474['t'](_0x5184bd(0x3d0)),'value':'r'},{'label':_0x3d3474['t'](_0x5184bd(0x6aa)),'value':'bl'},{'label':_0x3d3474['t'](_0x5184bd(0x3d4)),'value':'b'},{'label':_0x3d3474['t'](_0x5184bd(0x795)),'value':'br'}],_0x5a5643=_0x1aa1f2=>{_0x3d9e93({'oldShapeData':{'fill':_0x2886c4?{..._0x2886c4}:void 0x0}},{'fill':{..._0x2886c4,..._0x1aa1f2}});},_0x18ec12=_0x1d16b7=>{const _0x18675b=_0x5184bd;_0x5a5643({'imageTile':{..._0x2886c4==null?void 0x0:_0x2886c4[_0x18675b(0x184)],..._0x1d16b7}});},_0x3fc4c5=()=>{const _0x31a1c7=_0x5184bd;var _0x48707a;return(_0x48707a=_0x27de6b['current'])==null?void 0x0:_0x48707a[_0x31a1c7(0x66c)]();},_0x5c7d12=async _0x47fe43=>{const _0x320f6a=_0x5184bd;var _0x438881;let _0x19b390=(_0x438881=_0x47fe43[_0x320f6a(0x1e2)][_0x320f6a(0x1e1)])==null?void 0x0:_0x438881[0x0];if(!_0x19b390)return;_0x47fe43[_0x320f6a(0x1e2)][_0x320f6a(0x3da)]='';let _0x3e01df=await _0x3776ab[_0x320f6a(0x7bd)](_0x19b390);if(_0x3e01df==null)return;let {imageSourceType:_0x4ca614,source:_0x3f2705,base64Cache:_0x5aafe6}=_0x3e01df,{image:_0xb2065f}=await(0x0,_0x1d1765['getImageSize'])(_0x5aafe6||'');_0x3776ab['addImageSourceCache'](_0x3f2705,_0x4ca614,_0xb2065f),_0x3d9e93({'oldShapeData':{'fill':_0x2886c4?{..._0x2886c4}:void 0x0}},{'fill':{..._0x2886c4,'fillType':_0x2efdc4[_0x320f6a(0x1ab)][_0x320f6a(0x2ca)],'fillImageSource':_0x3f2705,'fillImageSourceType':_0x4ca614}}),_0x2a731b==null||_0x2a731b(_0xb2065f);},_0x16e1ba=_0x5184bd(0x761),_0x5811b9=_0x5184bd(0x603);return(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x37d),'children':[(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':'univer-flex\x20univer-flex-col\x20univer-gap-2','children':[(0x0,_0x30fb45['jsx'])('span',{'className':_0x16e1ba,'children':_0x3d3474['t'](_0x5184bd(0x2a5))}),(0x0,_0x30fb45[_0x5184bd(0x4b8)])('div',{'className':_0x5184bd(0x3d7),'children':[(0x0,_0x30fb45['jsx'])(_0x5184bd(0x29b),{'ref':_0x27de6b,'type':_0x5184bd(0x3e6),'accept':_0x5184bd(0x705),'className':_0x5184bd(0x5ae),'onChange':_0x5c7d12}),(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x2d1),'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x233),{'type':_0x5184bd(0x233),'disabled':_0x693d67,'className':_0x5184bd(0x64c),'onClick':_0x3fc4c5,'children':(0x0,_0x30fb45['jsxs'])(_0x5184bd(0x161),{'children':[_0x3d3474['t'](_0x5184bd(0x160)),'\x20']})}),_0x95e442&&(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x5c9),'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])('img',{'src':_0x2886c4==null?void 0x0:_0x2886c4[_0x5184bd(0x101)],'alt':'','className':_0x5184bd(0x4b0)})})]})]})]}),(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5811b9,'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x161),{'className':_0x16e1ba,'children':_0x3d3474['t'](_0x5184bd(0x67d))}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x6ed),'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4['InputNumber'],{'className':_0x5184bd(0x1fc),'value':_0x4c994a,'disabled':_0x693d67,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x421951=>_0x421951+'%','parser':_0x407eed=>(_0x407eed==null?void 0x0:_0x407eed[_0x5184bd(0x4e5)]('%',''))||'','onChange':_0x2b3335=>{const _0x10f66b=_0x5184bd;let _0xee01bb=(0x64-Math[_0x10f66b(0x206)](0x0,Math[_0x10f66b(0x1a8)](0x64,_0x2b3335==null?0x0:_0x2b3335)))/0x64;_0x2224c1(_0xee01bb),_0x5a5643({'imageOpacity':_0xee01bb}),_0x11194b['setContextValue'](_0x2c5933[_0x10f66b(0x34c)],!0x1);},'onFocus':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x0),'onBlur':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x1)})})]}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4[_0x5184bd(0x6dd)],{'checked':_0x36b7a5,'disabled':_0x693d67,'onChange':_0x7ed161=>{const _0x379ea2=_0x5184bd;let _0x44a4b7=_0x7ed161?_0x2efdc4['ImageFillModeEnum'][_0x379ea2(0x423)]:_0x2efdc4[_0x379ea2(0x3c1)][_0x379ea2(0x3dc)];_0x2148f0(_0x44a4b7),_0x5a5643({'imageFillMode':_0x44a4b7});},'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])('span',{'className':_0x5184bd(0x652),'children':_0x3d3474['t'](_0x5184bd(0x754))})}),_0x36b7a5&&(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x57d),'children':[(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5811b9,'children':[(0x0,_0x30fb45['jsx'])(_0x5184bd(0x161),{'className':_0x16e1ba,'children':_0x3d3474['t'](_0x5184bd(0x38e))}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])('div',{'className':_0x5184bd(0x6ed),'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4[_0x5184bd(0x765)],{'className':_0x5184bd(0x1fc),'value':_0x22bce9,'disabled':_0x693d67,'step':0x1,'onChange':_0x202695=>{_0x18ec12({'offsetX':_0x202695==null?0x0:_0x202695}),_0x380973(_0x202695==null?0x0:_0x202695);},'onFocus':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x0),'onBlur':()=>_0x11194b['setContextValue'](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1)})})]}),(0x0,_0x30fb45['jsxs'])('div',{'className':_0x5811b9,'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x161),{'className':_0x16e1ba,'children':_0x3d3474['t']('shape-editor-ui.fill.picture.offsetY')}),(0x0,_0x30fb45['jsx'])('div',{'className':_0x5184bd(0x6ed),'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4[_0x5184bd(0x765)],{'className':_0x5184bd(0x1fc),'value':_0x5b7245,'disabled':_0x693d67,'step':0x1,'onChange':_0x583a0c=>{_0x18ec12({'offsetY':_0x583a0c==null?0x0:_0x583a0c}),_0x417713(_0x583a0c==null?0x0:_0x583a0c);},'onFocus':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x0),'onBlur':()=>_0x11194b['setContextValue'](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1)})})]}),(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5811b9,'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x161),{'className':_0x16e1ba,'children':_0x3d3474['t'](_0x5184bd(0x1d2))}),(0x0,_0x30fb45['jsx'])(_0x5184bd(0x18d),{'className':_0x5184bd(0x6ed),'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4['InputNumber'],{'className':_0x5184bd(0x1fc),'value':_0x345516,'disabled':_0x693d67,'min':0x1,'max':0x3e8,'step':0xa,'formatter':_0x35ee96=>_0x35ee96+'%','parser':_0x5a715a=>(_0x5a715a==null?void 0x0:_0x5a715a[_0x5184bd(0x4e5)]('%',''))||'','onChange':_0x36fdfa=>{const _0x4d38d2=_0x5184bd;let _0x2175e8=Math[_0x4d38d2(0x206)](0.01,(_0x36fdfa==null?0x64:_0x36fdfa)/0x64);_0x41e548(_0x2175e8),_0x18ec12({'scaleX':_0x2175e8}),_0x11194b[_0x4d38d2(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1);},'onFocus':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x0),'onBlur':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x1)})})]}),(0x0,_0x30fb45[_0x5184bd(0x4b8)])(_0x5184bd(0x18d),{'className':_0x5811b9,'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])('span',{'className':_0x16e1ba,'children':_0x3d3474['t']('shape-editor-ui.fill.picture.scaleY')}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x18d),{'className':_0x5184bd(0x6ed),'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x5184bd(0x765)],{'className':'univer-w-full','value':_0xb973fb,'disabled':_0x693d67,'min':0x1,'max':0x3e8,'step':0xa,'formatter':_0x2c40a2=>_0x2c40a2+'%','parser':_0x4aa8ed=>(_0x4aa8ed==null?void 0x0:_0x4aa8ed['replace']('%',''))||'','onChange':_0x13c51b=>{const _0x380595=_0x5184bd;let _0x5d15e3=Math['max'](0.01,(_0x13c51b==null?0x64:_0x13c51b)/0x64);_0x544edd(_0x5d15e3),_0x18ec12({'scaleY':_0x5d15e3}),_0x11194b[_0x380595(0x6fa)](_0x2c5933[_0x380595(0x34c)],!0x1);},'onFocus':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x0),'onBlur':()=>_0x11194b[_0x5184bd(0x6fa)](_0x2c5933[_0x5184bd(0x34c)],!0x1)})})]}),(0x0,_0x30fb45['jsxs'])(_0x5184bd(0x18d),{'className':_0x5811b9,'children':[(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x161),{'className':_0x16e1ba,'children':_0x3d3474['t'](_0x5184bd(0x44a))}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])('div',{'className':_0x5184bd(0x597),'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4[_0x5184bd(0x50a)],{'className':_0x5184bd(0x1fc),'value':_0x3c6703,'options':_0x50721f,'disabled':_0x693d67,'onChange':_0xe4b7d5=>{_0xaa2fdf(_0xe4b7d5),_0x18ec12({'alignment':_0xe4b7d5});}})})]})]}),(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0xa18fa4[_0x5184bd(0x6dd)],{'checked':_0x243411,'disabled':_0x693d67,'onChange':_0x147235=>{_0x4e63c3(_0x147235),_0x5a5643({'imageRotateWithShape':_0x147235});},'children':(0x0,_0x30fb45[_0x5184bd(0x6c4)])(_0x5184bd(0x161),{'className':'univer-text-sm','children':_0x3d3474['t'](_0x5184bd(0x258))})})]});}function _0x21b461(_0x5ae277){const _0x830880=_0x4e4756;var _0x5c2fbf,_0x3553cb;return(_0x5c2fbf=(_0x3553cb=_0x5ae277[_0x830880(0x181)])==null?void 0x0:_0x3553cb['fillType'])==null?_0x2efdc4[_0x830880(0x1ab)][_0x830880(0x65a)]:_0x5c2fbf;}function _0x455297(_0x408761){const _0x59a6de=_0x4e4756;var _0x4f8b1f,_0x3ec9e3,_0x2d2b59,_0x2c51f8;let _0x31b3e6=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x59a6de(0x56a)]),_0xaf5515=(0x0,_0x100e66[_0x59a6de(0x644)])(_0x2c5933[_0x59a6de(0x714)]),{shapeData:_0x56f62e,isLineShape:_0x196653,shapeId:_0x67d2cc,disableShapeOption:_0x47875b,onUpdateShapeData:_0x505a08,onUpdateShapeFillImage:_0x1a5b67}=_0x408761,[_0x14d206,_0x31d4f2]=(0x0,_0x31b8c1[_0x59a6de(0x3cf)])(_0x21b461(_0x56f62e)),[_0x517c34,_0x291b83]=(0x0,_0x31b8c1[_0x59a6de(0x3cf)])((_0x4f8b1f=(_0x3ec9e3=_0x56f62e[_0x59a6de(0x181)])==null?void 0x0:_0x3ec9e3[_0x59a6de(0x2cb)])==null?_0x2efdc4['ShapeDefaultConfig'][_0x59a6de(0x181)]:_0x4f8b1f),[_0x4145cd,_0x231664]=(0x0,_0x31b8c1[_0x59a6de(0x3cf)])((_0x2d2b59=(_0x2c51f8=_0x56f62e['fill'])==null?void 0x0:_0x2c51f8[_0x59a6de(0x314)])==null?0x1:_0x2d2b59),[_0x2ce365,_0x443df]=(0x0,_0x31b8c1[_0x59a6de(0x3cf)])(!0x1);if(_0x196653)return null;let _0x42049d=0x64-_0x4145cd*0x64;return(0x0,_0x30fb45[_0x59a6de(0x4b8)])(_0x59a6de(0x18d),{'className':_0x59a6de(0x509),'children':[(0x0,_0x30fb45['jsxs'])(_0xa18fa4[_0x59a6de(0x153)],{'value':_0x14d206,'disabled':_0x47875b,'onChange':_0xded7c7=>{const _0x435bd9=_0x59a6de;var _0x1395e3;_0x505a08({'oldShapeData':{'fill':{'fillType':(_0x1395e3=_0x56f62e[_0x435bd9(0x181)])==null?void 0x0:_0x1395e3[_0x435bd9(0x481)]}}},{'fill':{'fillType':_0xded7c7}}),_0x31d4f2(_0xded7c7);},'direction':'vertical','children':[(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0xa18fa4['Radio'],{'value':_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x65a)],'children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':_0x59a6de(0x652),'children':_0x31b3e6['t'](_0x59a6de(0x272))})}),(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0xa18fa4['Radio'],{'value':_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x5cc)],'children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':_0x59a6de(0x652),'children':_0x31b3e6['t'](_0x59a6de(0x310))})}),(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0xa18fa4['Radio'],{'value':_0x2efdc4[_0x59a6de(0x1ab)]['GradientFill'],'children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':'univer-text-sm','children':_0x31b3e6['t'](_0x59a6de(0x279))})}),(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0xa18fa4[_0x59a6de(0x2ba)],{'value':_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x2ca)],'children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':_0x59a6de(0x652),'children':_0x31b3e6['t'](_0x59a6de(0x626))})})]}),_0x14d206===_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x5cc)]&&(0x0,_0x30fb45['jsxs'])(_0x59a6de(0x18d),{'className':'univer-flex\x20univer-flex-col\x20univer-gap-4\x20univer-pt-2','children':[(0x0,_0x30fb45[_0x59a6de(0x4b8)])(_0x59a6de(0x18d),{'className':_0x59a6de(0x558),'children':[(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':_0x59a6de(0x777),'children':_0x31b3e6['t']('shape-editor-ui.fill.color')}),(0x0,_0x30fb45['jsx'])(_0xa18fa4['Dropdown'],{'disabled':_0x47875b,'overlay':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x18d),{'className':'univer-rounded-lg\x20univer-p-3','children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0xa18fa4[_0x59a6de(0x372)],{'value':_0x517c34,'onChange':_0x182873=>{const _0x19c3a5=_0x59a6de;var _0x3687f7;_0x505a08({'oldShapeData':{'fill':{'color':(_0x3687f7=_0x56f62e[_0x19c3a5(0x181)])==null?void 0x0:_0x3687f7['color']}}},{'fill':{'color':_0x182873}}),_0x291b83(_0x182873),_0x443df(!0x1);}})}),'open':_0x2ce365,'onOpenChange':_0x443df,'children':(0x0,_0x30fb45[_0x59a6de(0x4b8)])('a',{'className':_0x59a6de(0x5f9),'children':[(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x4b3966,{'className':_0x59a6de(0x25e),'extend':{'colorChannel1':_0x517c34}}),(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x59a6de(0x4f8)])(_0x59a6de(0x686),{'univer-rotate-180':_0x2ce365})})]})})]}),(0x0,_0x30fb45[_0x59a6de(0x4b8)])(_0x59a6de(0x18d),{'className':_0x59a6de(0x603),'children':[(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x161),{'className':_0x59a6de(0x761),'children':_0x31b3e6['t']('shape-editor-ui.fill.transparency')}),(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x18d),{'className':'univer-flex\x20univer-items-center\x20univer-gap-3','children':(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x59a6de(0x18d),{'className':'univer-w-20','children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x59a6de(0x765)],{'className':_0x59a6de(0x1fc),'value':_0x42049d,'disabled':_0x47875b,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x4d8a4c=>_0x4d8a4c+'%','parser':_0x472c8f=>(_0x472c8f==null?void 0x0:_0x472c8f[_0x59a6de(0x4e5)]('%',''))||'','onChange':_0x224c83=>{const _0x40f6b0=_0x59a6de;let _0x1af42c=(0x64-Math[_0x40f6b0(0x206)](0x0,Math[_0x40f6b0(0x1a8)](0x64,_0x224c83==null?0x0:_0x224c83)))/0x64;_0x231664(_0x1af42c),_0x505a08({'oldShapeData':{'fill':{..._0x56f62e[_0x40f6b0(0x181)],'fillType':_0x14d206}}},{'fill':{..._0x56f62e['fill'],'fillType':_0x14d206,'opacity':_0x1af42c}}),_0xaf5515[_0x40f6b0(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1);},'onFocus':()=>_0xaf5515[_0x59a6de(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x0),'onBlur':()=>{const _0x32cd1f=_0x59a6de;_0xaf5515[_0x32cd1f(0x6fa)](_0x2c5933[_0x32cd1f(0x34c)],!0x1);}})})})]})]}),_0x14d206===_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x751)]&&(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x5d1a58,{'shapeData':_0x56f62e,'disableShapeOption':_0x47875b,'onUpdate':_0x11d70e=>{_0x505a08({'oldShapeData':{'fill':{..._0x56f62e['fill']}}},{'fill':{..._0x56f62e['fill'],..._0x11d70e}});}}),_0x14d206===_0x2efdc4[_0x59a6de(0x1ab)][_0x59a6de(0x2ca)]&&(0x0,_0x30fb45[_0x59a6de(0x6c4)])(_0x315c39,{'shapeId':_0x67d2cc,'shapeData':_0x56f62e,'disableShapeOption':_0x47875b,'onUpdateShapeData':_0x505a08,'onUpdateShapeFillImage':_0x1a5b67})]});}function _0x470cc9(_0x54f84d){const _0x379024=_0x4e4756;switch(_0x54f84d){case _0x2efdc4[_0x379024(0x1b1)][_0x379024(0x45c)]:return'linear';case _0x2efdc4['ShapeGradientTypeEnum'][_0x379024(0x45d)]:return _0x379024(0x4b7);case _0x2efdc4[_0x379024(0x1b1)][_0x379024(0x4c7)]:return _0x379024(0x3b4);case _0x2efdc4[_0x379024(0x1b1)][_0x379024(0x6dc)]:return _0x379024(0x52c);default:return'linear';}}function _0xb3af6b(_0x428b37){const _0x2a1081=_0x4e4756;switch(_0x428b37){case _0x2a1081(0x782):return _0x2efdc4[_0x2a1081(0x1b1)][_0x2a1081(0x45c)];case _0x2a1081(0x4b7):return _0x2efdc4['ShapeGradientTypeEnum']['Radial'];case _0x2a1081(0x3b4):return _0x2efdc4[_0x2a1081(0x1b1)][_0x2a1081(0x4c7)];case'diamond':return _0x2efdc4['ShapeGradientTypeEnum'][_0x2a1081(0x6dc)];default:return _0x2efdc4['ShapeGradientTypeEnum']['Linear'];}}function _0x5d1a58(_0x511e1b){const _0x1b5f84=_0x4e4756;let {shapeData:_0x5334b3,disableShapeOption:_0x29788a,onUpdate:_0x78426c}=_0x511e1b,_0x2b3730=(0x0,_0x31b8c1[_0x1b5f84(0x5d7)])(()=>{const _0x521bff=_0x1b5f84;var _0x3abc6d;let _0x337952=_0x5334b3[_0x521bff(0x181)];return{'type':_0x470cc9(_0x337952==null?void 0x0:_0x337952[_0x521bff(0x588)]),'angle':(_0x3abc6d=_0x337952==null?void 0x0:_0x337952[_0x521bff(0x348)])==null?0x0:_0x3abc6d,'stops':_0x337952!=null&&_0x337952[_0x521bff(0x2ad)]&&_0x337952['gradientStops'][_0x521bff(0x7cf)]>=0x2?_0x337952[_0x521bff(0x2ad)]['map'](_0x218fca=>({'color':_0x218fca[_0x521bff(0x2cb)],'offset':_0x218fca['position']*0x64,'opacity':_0x218fca[_0x521bff(0x314)]})):[{'color':(_0x337952==null?void 0x0:_0x337952[_0x521bff(0x2cb)])||'#ffffff','offset':0x0},{'color':'#000000','offset':0x64}]};},[_0x5334b3[_0x1b5f84(0x181)]]);return(0x0,_0x30fb45[_0x1b5f84(0x6c4)])(_0x1b5f84(0x18d),{'className':_0x1b5f84(0x429),'children':(0x0,_0x30fb45[_0x1b5f84(0x6c4)])(_0xa18fa4[_0x1b5f84(0x2c1)],{'value':_0x2b3730,'onChange':_0x5c01ce=>{const _0x3c2cdc=_0x1b5f84;let _0x5e2b19=_0xb3af6b(_0x5c01ce[_0x3c2cdc(0x1d0)]),_0x898cd6=_0x5c01ce[_0x3c2cdc(0x2f0)];_0x78426c({'gradientType':_0x5e2b19,'gradientAngle':_0x898cd6,'gradientStops':_0x5c01ce[_0x3c2cdc(0x2a6)][_0x3c2cdc(0x217)](_0x5741cb=>({'color':_0x5741cb[_0x3c2cdc(0x2cb)],'position':_0x5741cb['offset']/0x64,'opacity':_0x5741cb[_0x3c2cdc(0x314)]}))});}})});}function _0x18f957(_0x5e1e26){const _0x5dee1b=_0x4e4756;var _0x53a446,_0x50a9e2,_0xf8543,_0x2e6194,_0x224e37,_0xa180f5,_0x4fa1f0,_0x1ca4bf,_0x356220,_0x366a94,_0x1335f6,_0xa979ac,_0x4f9265,_0xab2297,_0x3d3e22,_0x1a20d9,_0x420c74;let _0x2aae1f=(0x0,_0x100e66[_0x5dee1b(0x644)])(_0x2c5933[_0x5dee1b(0x56a)]),_0x4c9516=(0x0,_0x100e66[_0x5dee1b(0x644)])(_0x2c5933['IContextService']),{shapeData:_0x33dea3,isLineShape:_0x5e05fb,disableShapeOption:_0x3f5c3,onUpdateShapeData:_0x31e949,onUpdateLineShapeData:_0x3000d5}=_0x5e1e26,_0x5d75c6=_0x33dea3['stroke'],[_0x240de1,_0x53a8d0]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x53a446=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x4bf)])==null?_0x2efdc4[_0x5dee1b(0x678)]['SolidLine']:_0x53a446),[_0x3505a2,_0x3f7b50]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x50a9e2=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x2cb)])==null?_0x2efdc4[_0x5dee1b(0x2a2)][_0x5dee1b(0x3f6)]:_0x50a9e2),[_0x2afebf,_0x383640]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0xf8543=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x314)])==null?0x1:_0xf8543),[_0x5d11db,_0x1f8663]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x2e6194=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x56b)])==null?_0x2efdc4[_0x5dee1b(0x2a2)][_0x5dee1b(0x6bc)]:_0x2e6194),[_0x3431e1,_0x17f99e]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x224e37=_0x5d75c6==null?void 0x0:_0x5d75c6['cornerRadius'])==null?0x0:_0x224e37),[_0x5dc62e,_0x44ae00]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0xa180f5=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x6e1)])==null?_0x2efdc4[_0x5dee1b(0x6db)]['Solid']:_0xa180f5),[_0x5d9974,_0x560892]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x4fa1f0=_0x5d75c6==null?void 0x0:_0x5d75c6['capType'])==null?_0x2efdc4[_0x5dee1b(0x198)]['Flat']:_0x4fa1f0),[_0x4448a1,_0x192e7a]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x1ca4bf=_0x5d75c6==null?void 0x0:_0x5d75c6['lineJoinType'])==null?_0x2efdc4[_0x5dee1b(0x6b4)][_0x5dee1b(0x546)]:_0x1ca4bf),[_0x350dd7,_0x40b8b1]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x356220=_0x5d75c6==null?void 0x0:_0x5d75c6[_0x5dee1b(0x1a1)])==null?_0x2efdc4[_0x5dee1b(0x752)][_0x5dee1b(0x214)]:_0x356220),_0xad5364=_0x33dea3,[_0x37c907,_0x2edaa3]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0x366a94=(_0x1335f6=_0xad5364['ln'])==null||(_0x1335f6=_0x1335f6[_0x5dee1b(0x1c6)])==null?void 0x0:_0x1335f6[_0x5dee1b(0x1d0)])==null?_0x2efdc4['ShapeArrowTypeEnum'][_0x5dee1b(0x214)]:_0x366a94),[_0xbf6b14,_0x30da46]=(0x0,_0x31b8c1['useState'])((_0xa979ac=(_0x4f9265=_0xad5364['ln'])==null||(_0x4f9265=_0x4f9265[_0x5dee1b(0x1c6)])==null?void 0x0:_0x4f9265[_0x5dee1b(0x654)])==null?_0x2efdc4[_0x5dee1b(0x495)][_0x5dee1b(0x684)]:_0xa979ac),[_0x53412d,_0x1102b8]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])((_0xab2297=(_0x3d3e22=_0xad5364['ln'])==null||(_0x3d3e22=_0x3d3e22['endArrow'])==null?void 0x0:_0x3d3e22[_0x5dee1b(0x1d0)])==null?_0x2efdc4[_0x5dee1b(0x3b0)]['None']:_0xab2297),[_0x2747e1,_0x2fd12a]=(0x0,_0x31b8c1['useState'])((_0x1a20d9=(_0x420c74=_0xad5364['ln'])==null||(_0x420c74=_0x420c74[_0x5dee1b(0x3ca)])==null?void 0x0:_0x420c74[_0x5dee1b(0x654)])==null?_0x2efdc4['ShapeArrowSizeEnum'][_0x5dee1b(0x684)]:_0x1a20d9),[_0x2facff,_0x107bd2]=(0x0,_0x31b8c1[_0x5dee1b(0x3cf)])(!0x1),_0x2fb26a=0x64-_0x2afebf*0x64,_0x463383=[{'label':_0x2aae1f['t']('shape-editor-ui.line.dashType.solid'),'value':String(_0x2efdc4[_0x5dee1b(0x6db)]['Solid'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x689)),'value':String(_0x2efdc4['ShapeLineDashEnum'][_0x5dee1b(0x53d)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x3bf)),'value':String(_0x2efdc4[_0x5dee1b(0x6db)][_0x5dee1b(0x20d)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x5a9)),'value':String(_0x2efdc4[_0x5dee1b(0x6db)][_0x5dee1b(0x1e9)])},{'label':_0x2aae1f['t'](_0x5dee1b(0xf8)),'value':String(_0x2efdc4[_0x5dee1b(0x6db)][_0x5dee1b(0x466)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x62d)),'value':String(_0x2efdc4[_0x5dee1b(0x6db)]['LongDash'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x732)),'value':String(_0x2efdc4[_0x5dee1b(0x6db)][_0x5dee1b(0x159)])},{'label':_0x2aae1f['t']('shape-editor-ui.line.dashType.longDashDotDot'),'value':String(_0x2efdc4[_0x5dee1b(0x6db)][_0x5dee1b(0x5ef)])}],_0x243cd2=[{'label':_0x2aae1f['t'](_0x5dee1b(0x158)),'value':String(_0x2efdc4[_0x5dee1b(0x198)][_0x5dee1b(0x638)])},{'label':_0x2aae1f['t']('shape-editor-ui.line.capType.round'),'value':String(_0x2efdc4[_0x5dee1b(0x198)][_0x5dee1b(0x260)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x6ab)),'value':String(_0x2efdc4[_0x5dee1b(0x198)][_0x5dee1b(0x333)])}],_0x3f00e2=[{'label':_0x2aae1f['t'](_0x5dee1b(0x10d)),'value':String(_0x2efdc4[_0x5dee1b(0x752)][_0x5dee1b(0x214)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x70e)),'value':String(_0x2efdc4['ShapeSketchTypeEnum'][_0x5dee1b(0x7bf)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x5a3)),'value':String(_0x2efdc4[_0x5dee1b(0x752)]['Freehand'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x371)),'value':String(_0x2efdc4['ShapeSketchTypeEnum']['HandDrawn'])}],_0x56deab=[{'label':_0x2aae1f['t'](_0x5dee1b(0x543)),'value':String(_0x2efdc4[_0x5dee1b(0x6b4)][_0x5dee1b(0x546)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x3ef)),'value':String(_0x2efdc4[_0x5dee1b(0x6b4)]['Round'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x26e)),'value':String(_0x2efdc4[_0x5dee1b(0x6b4)]['Bevel'])}],_0x315d72=[{'label':_0x2aae1f['t'](_0x5dee1b(0x11e)),'value':String(_0x2efdc4[_0x5dee1b(0x3b0)][_0x5dee1b(0x214)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x45f)),'value':String(_0x2efdc4[_0x5dee1b(0x3b0)]['Arrow'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x275)),'value':String(_0x2efdc4[_0x5dee1b(0x3b0)][_0x5dee1b(0x77e)])},{'label':_0x2aae1f['t']('shape-editor-ui.line.arrowType.stealthArrow'),'value':String(_0x2efdc4[_0x5dee1b(0x3b0)][_0x5dee1b(0x78a)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x5d5)),'value':String(_0x2efdc4[_0x5dee1b(0x3b0)][_0x5dee1b(0x41e)])},{'label':_0x2aae1f['t']('shape-editor-ui.line.arrowType.ovalArrow'),'value':String(_0x2efdc4['ShapeArrowTypeEnum'][_0x5dee1b(0x47e)])}],_0xf74a86=[{'label':_0x2aae1f['t']('shape-editor-ui.line.arrowSize.small'),'value':String(_0x2efdc4['ShapeArrowSizeEnum'][_0x5dee1b(0x405)])},{'label':_0x2aae1f['t'](_0x5dee1b(0x50f)),'value':String(_0x2efdc4[_0x5dee1b(0x495)]['Medium'])},{'label':_0x2aae1f['t'](_0x5dee1b(0x51c)),'value':String(_0x2efdc4['ShapeArrowSizeEnum'][_0x5dee1b(0x462)])}];return(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':'univer-flex\x20univer-flex-col\x20univer-gap-3','children':[(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0xa18fa4[_0x5dee1b(0x153)],{'value':String(_0x240de1),'disabled':_0x3f5c3,'onChange':_0x4c5511=>{const _0x59ad0c=_0x5dee1b;var _0x5050a7;_0x53a8d0(Number(_0x4c5511)),_0x31e949({'oldShapeData':{'stroke':{'lineStrokeType':(_0x5050a7=_0x33dea3['stroke'])==null?void 0x0:_0x5050a7[_0x59ad0c(0x4bf)]}}},{'stroke':{'lineStrokeType':Number(_0x4c5511)}});},'direction':_0x5dee1b(0x54b),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x2ba)],{'value':String(_0x2efdc4['ShapeLineTypeEnum'][_0x5dee1b(0x24a)]),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x161),{'className':'univer-text-sm','children':_0x2aae1f['t'](_0x5dee1b(0x26d))})}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x2ba)],{'value':String(_0x2efdc4[_0x5dee1b(0x678)][_0x5dee1b(0x342)]),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('span',{'className':_0x5dee1b(0x652),'children':_0x2aae1f['t'](_0x5dee1b(0x6d7))})})]}),_0x240de1!==_0x2efdc4[_0x5dee1b(0x678)][_0x5dee1b(0x24a)]&&(0x0,_0x30fb45['jsxs'])('div',{'className':_0x5dee1b(0x382),'children':[(0x0,_0x30fb45['jsxs'])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x558),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('span',{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x38c))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x12b)],{'disabled':_0x3f5c3,'overlay':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x40a),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x372)],{'value':_0x3505a2,'onChange':_0x2a5bdb=>{const _0x5c0643=_0x5dee1b;var _0x51d90e;_0x31e949({'oldShapeData':{'stroke':{'color':(_0x51d90e=_0x33dea3[_0x5c0643(0x3f6)])==null?void 0x0:_0x51d90e['color']}}},{'stroke':{'color':_0x2a5bdb}}),_0x3f7b50(_0x2a5bdb),_0x107bd2(!0x1);}})}),'open':_0x2facff,'onOpenChange':_0x107bd2,'children':(0x0,_0x30fb45['jsxs'])('a',{'className':_0x5dee1b(0x5f9),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x37160f,{'className':_0x5dee1b(0x25e),'extend':{'colorChannel1':_0x3505a2}}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4['clsx'])(_0x5dee1b(0x686),{'univer-rotate-180':_0x2facff})})]})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x603),'children':[(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x761),'children':_0x2aae1f['t'](_0x5dee1b(0x4a4))}),(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x603),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('div',{'className':_0x5dee1b(0x698),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x765)],{'className':_0x5dee1b(0x1fc),'value':_0x2fb26a,'disabled':_0x3f5c3,'min':0x0,'max':0x64,'formatter':_0x454c3e=>_0x454c3e+'%','parser':_0x2fd359=>(_0x2fd359==null?void 0x0:_0x2fd359['replace']('%',''))||'','onChange':_0x58d20c=>{const _0xdf76a3=_0x5dee1b;var _0x241a1b;let _0x13d915=(0x64-Math[_0xdf76a3(0x206)](0x0,Math[_0xdf76a3(0x1a8)](0x64,_0x58d20c==null?0x0:_0x58d20c)))/0x64;_0x383640(_0x13d915),_0x31e949({'oldShapeData':{'stroke':{'opacity':(_0x241a1b=_0x33dea3[_0xdf76a3(0x3f6)])==null?void 0x0:_0x241a1b['opacity']}}},{'stroke':{'opacity':_0x13d915}}),_0x4c9516['setContextValue'](_0x2c5933[_0xdf76a3(0x34c)],!0x1);},'onFocus':()=>_0x4c9516[_0x5dee1b(0x6fa)](_0x2c5933[_0x5dee1b(0x34c)],!0x0),'onBlur':_0x55d026=>{const _0x3cebcd=_0x5dee1b;_0x4c9516[_0x3cebcd(0x6fa)](_0x2c5933[_0x3cebcd(0x34c)],!0x1);}})})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x603),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x72e))}),(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x18d),{'className':'univer-w-20','children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x765)],{'className':_0x5dee1b(0x1fc),'disabled':_0x3f5c3,'value':_0x5d11db,'min':0.25,'max':0x64,'step':0.25,'formatter':_0x40d274=>_0x40d274+_0x5dee1b(0x397),'parser':_0x5557e8=>(_0x5557e8==null?void 0x0:_0x5557e8['replace']('\x20px',''))||'','onChange':_0x454d20=>{const _0x3bf4ad=_0x5dee1b;if(!Number[_0x3bf4ad(0x3fa)](_0x454d20)&&_0x454d20!==null){var _0xca3357;_0x31e949({'oldShapeData':{'stroke':{'width':(_0xca3357=_0x33dea3[_0x3bf4ad(0x3f6)])==null?void 0x0:_0xca3357['width']}}},{'stroke':{'width':_0x454d20}});}_0x4c9516[_0x3bf4ad(0x6fa)](_0x2c5933[_0x3bf4ad(0x34c)],!0x1);},'onFocus':()=>_0x4c9516['setContextValue'](_0x2c5933[_0x5dee1b(0x34c)],!0x0),'onBlur':_0x48d592=>{_0x4c9516['setContextValue'](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1);}})})]}),_0x5e05fb&&(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x603),'children':[(0x0,_0x30fb45['jsx'])('span',{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x5eb))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x6ed),'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x5dee1b(0x765)],{'className':_0x5dee1b(0x1fc),'disabled':_0x3f5c3,'value':_0x3431e1,'min':0x0,'step':0x1,'formatter':_0x257484=>_0x257484+'\x20px','parser':_0x3a8978=>(_0x3a8978==null?void 0x0:_0x3a8978['replace'](_0x5dee1b(0x397),''))||'','onChange':_0x4fd5fb=>{const _0x5d6ee4=_0x5dee1b;var _0x1271d6;let _0x213855=Math[_0x5d6ee4(0x206)](0x0,_0x4fd5fb==null?0x0:_0x4fd5fb);_0x17f99e(_0x213855),_0x31e949({'oldShapeData':{'stroke':{'cornerRadius':(_0x1271d6=_0x33dea3[_0x5d6ee4(0x3f6)])==null?void 0x0:_0x1271d6['cornerRadius']}}},{'stroke':{'cornerRadius':_0x213855}}),_0x4c9516['setContextValue'](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1);},'onFocus':()=>_0x4c9516[_0x5dee1b(0x6fa)](_0x2c5933[_0x5dee1b(0x34c)],!0x0),'onBlur':()=>{const _0x2bb0ed=_0x5dee1b;_0x4c9516['setContextValue'](_0x2c5933[_0x2bb0ed(0x34c)],!0x1);}})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':'univer-flex\x20univer-items-center\x20univer-justify-between','children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x49e))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':'univer-w-full','value':String(_0x5dc62e),'options':_0x463383,'disabled':_0x3f5c3,'onChange':_0x1ec94c=>{const _0x40065a=_0x5dee1b;var _0x356477;_0x44ae00(Number(_0x1ec94c)),_0x31e949({'oldShapeData':{'stroke':{'dashType':(_0x356477=_0x33dea3[_0x40065a(0x3f6)])==null?void 0x0:_0x356477[_0x40065a(0x6e1)]}}},{'stroke':{'dashType':Number(_0x1ec94c)}});}})})]}),(0x0,_0x30fb45['jsxs'])('div',{'className':_0x5dee1b(0x558),'children':[(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x69a))}),(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0x5d9974),'options':_0x243cd2,'disabled':_0x3f5c3,'onChange':_0x22ccad=>{const _0x129308=_0x5dee1b;var _0x1e700b;_0x560892(Number(_0x22ccad)),_0x31e949({'oldShapeData':{'stroke':{'capType':(_0x1e700b=_0x33dea3[_0x129308(0x3f6)])==null?void 0x0:_0x1e700b['capType']}}},{'stroke':{'capType':Number(_0x22ccad)}});}})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':'univer-flex\x20univer-items-center\x20univer-justify-between','children':[(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x304))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0x4448a1),'options':_0x56deab,'disabled':_0x3f5c3,'onChange':_0xac2247=>{const _0x32935f=_0x5dee1b;var _0x33b1de;_0x192e7a(Number(_0xac2247)),_0x31e949({'oldShapeData':{'stroke':{'lineJoinType':(_0x33b1de=_0x33dea3[_0x32935f(0x3f6)])==null?void 0x0:_0x33b1de[_0x32935f(0x583)]}}},{'stroke':{'lineJoinType':Number(_0xac2247)}});}})})]}),!_0x5e05fb&&(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x558),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('span',{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x111))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0x350dd7),'options':_0x3f00e2,'disabled':_0x3f5c3,'onChange':_0xfe7f0=>{const _0x214a72=_0x5dee1b;var _0x5436dd;_0x40b8b1(Number(_0xfe7f0)),_0x31e949({'oldShapeData':{'stroke':{'sketchType':(_0x5436dd=_0x33dea3[_0x214a72(0x3f6)])==null?void 0x0:_0x5436dd['sketchType']}}},{'stroke':{'sketchType':Number(_0xfe7f0)}});}})})]}),_0x5e05fb&&(0x0,_0x30fb45['jsxs'])(_0x30fb45[_0x5dee1b(0x13e)],{'children':[(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x558),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('span',{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0xf2))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('div',{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0x37c907),'options':_0x315d72,'onChange':_0x72d45e=>{const _0x1075b8=_0x5dee1b;var _0x5bc259;_0x2edaa3(Number(_0x72d45e));let _0x5c6000={'ln':{'startArrow':{'type':(_0x5bc259=_0x33dea3['ln'])==null||(_0x5bc259=_0x5bc259[_0x1075b8(0x1c6)])==null?void 0x0:_0x5bc259[_0x1075b8(0x1d0)]}}};_0x3000d5==null||_0x3000d5({'oldShapeData':_0x5c6000},{'ln':{'startArrow':{'type':Number(_0x72d45e)}}});}})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':'univer-flex\x20univer-items-center\x20univer-justify-between','children':[(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t']('shape-editor-ui.line.beginArrowSize')}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0xbf6b14),'options':_0xf74a86,'onChange':_0x1f55f6=>{const _0x9bfebb=_0x5dee1b;var _0x14c19c;_0x30da46(Number(_0x1f55f6));let _0x22cb62={'ln':{'startArrow':{'size':(_0x14c19c=_0x33dea3['ln'])==null||(_0x14c19c=_0x14c19c[_0x9bfebb(0x1c6)])==null?void 0x0:_0x14c19c[_0x9bfebb(0x654)]}}};_0x3000d5==null||_0x3000d5({'oldShapeData':_0x22cb62},{'ln':{'startArrow':{'size':Number(_0x1f55f6)}}});}})})]}),(0x0,_0x30fb45[_0x5dee1b(0x4b8)])(_0x5dee1b(0x18d),{'className':'univer-flex\x20univer-items-center\x20univer-justify-between','children':[(0x0,_0x30fb45['jsx'])(_0x5dee1b(0x161),{'className':'univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x2aae1f['t'](_0x5dee1b(0x1f2))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x18d),{'className':_0x5dee1b(0x597),'children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':_0x5dee1b(0x1fc),'value':String(_0x53412d),'options':_0x315d72,'onChange':_0x1fadf6=>{const _0xbb28ce=_0x5dee1b;var _0x5d0e6a;_0x1102b8(Number(_0x1fadf6));let _0x3d81e2={'ln':{'endArrow':{'type':(_0x5d0e6a=_0x33dea3['ln'])==null||(_0x5d0e6a=_0x5d0e6a[_0xbb28ce(0x3ca)])==null?void 0x0:_0x5d0e6a[_0xbb28ce(0x1d0)]}}};_0x3000d5==null||_0x3000d5({'oldShapeData':_0x3d81e2},{'ln':{'endArrow':{'type':Number(_0x1fadf6)}}});}})})]}),(0x0,_0x30fb45['jsxs'])('div',{'className':_0x5dee1b(0x558),'children':[(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0x5dee1b(0x161),{'className':_0x5dee1b(0x777),'children':_0x2aae1f['t'](_0x5dee1b(0x599))}),(0x0,_0x30fb45[_0x5dee1b(0x6c4)])('div',{'className':'univer-w-28','children':(0x0,_0x30fb45[_0x5dee1b(0x6c4)])(_0xa18fa4[_0x5dee1b(0x50a)],{'className':'univer-w-full','value':String(_0x2747e1),'options':_0xf74a86,'onChange':_0x5b64dc=>{const _0x2cee65=_0x5dee1b;var _0x246084;_0x2fd12a(Number(_0x5b64dc));let _0x5a7590={'ln':{'endArrow':{'size':(_0x246084=_0x33dea3['ln'])==null||(_0x246084=_0x246084[_0x2cee65(0x3ca)])==null?void 0x0:_0x246084[_0x2cee65(0x654)]}}};_0x3000d5==null||_0x3000d5({'oldShapeData':_0x5a7590},{'ln':{'endArrow':{'size':Number(_0x5b64dc)}}});}})})]})]})]})]});}function _0x512d96(_0x142d18){const _0x42fcb0=_0x4e4756;let {shapeData:_0x422aa1,shapeId:_0x2ca16f,shapeType:_0xa7a913,version:_0x2c8c6f,disableShapeOption:_0x4547ba,positionEditor:_0x43acc4,onUpdateShapeData:_0x1ca8df,onUpdateLineShapeData:_0x12c837,onUpdateShapeFillImage:_0x44174e}=_0x142d18,_0x320b1e=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x42fcb0(0x56a)]),_0x34b02e=(0x0,_0x2efdc4[_0x42fcb0(0x450)])(_0xa7a913),[_0x5f3e81,_0x25f72e]=(0x0,_0x31b8c1[_0x42fcb0(0x3cf)])(0x0),_0x2d3fc6=[{'label':(0x0,_0x30fb45['jsx'])(_0x42fcb0(0x18d),{'children':_0x320b1e['t'](_0x42fcb0(0x105))}),'children':(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0x42fcb0(0x46b),{'className':_0x42fcb0(0x34e),'children':(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0x455297,{'shapeId':_0x2ca16f,'shapeData':_0x422aa1,'isLineShape':_0x34b02e,'disableShapeOption':_0x4547ba,'onUpdateShapeData':_0x1ca8df,'onUpdateShapeFillImage':_0x44174e},_0x2ca16f+'-'+_0x2c8c6f+_0x42fcb0(0x378))})},{'label':(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0x42fcb0(0x18d),{'children':_0x320b1e['t']('shape-editor-ui.line.title')}),'children':(0x0,_0x30fb45[_0x42fcb0(0x6c4)])('section',{'className':_0x42fcb0(0x34e),'children':(0x0,_0x30fb45['jsx'])(_0x18f957,{'shapeId':_0x2ca16f,'shapeData':_0x422aa1,'isLineShape':_0x34b02e,'disableShapeOption':_0x4547ba,'onUpdateShapeData':_0x1ca8df,'onUpdateLineShapeData':_0x12c837},_0x2ca16f+'-'+_0x2c8c6f+_0x42fcb0(0x37c))})}];return(0x0,_0x30fb45[_0x42fcb0(0x4b8)])(_0x42fcb0(0x18d),{'className':_0x42fcb0(0x1c1),'children':[(0x0,_0x30fb45[_0x42fcb0(0x4b8)])(_0x42fcb0(0x18d),{'className':_0x42fcb0(0x79b),'children':[(0x0,_0x30fb45[_0x42fcb0(0x4b8)])(_0x42fcb0(0x18d),{'className':(0x0,_0xa18fa4[_0x42fcb0(0x4f8)])(_0x42fcb0(0x5aa),_0x5f3e81===0x0?_0x42fcb0(0x3ee):_0x42fcb0(0x274)),'onClick':()=>_0x25f72e(0x0),'children':[_0x320b1e['t']('shape-editor-ui.shapeStyle'),(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0x42fcb0(0x18d),{'className':(0x0,_0xa18fa4['clsx'])(_0x42fcb0(0x582),{'univer-bg-primary-600':_0x5f3e81===0x0,'univer-bg-transparent':_0x5f3e81!==0x0})})]}),(0x0,_0x30fb45[_0x42fcb0(0x4b8)])('div',{'className':(0x0,_0xa18fa4[_0x42fcb0(0x4f8)])(_0x42fcb0(0x5aa),{'univer-text-primary-600':_0x5f3e81===0x1,'univer-text-gray-500':_0x5f3e81!==0x1}),'onClick':()=>_0x25f72e(0x1),'children':[_0x320b1e['t'](_0x42fcb0(0x1d4)),(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0x42fcb0(0x18d),{'className':(0x0,_0xa18fa4[_0x42fcb0(0x4f8)])(_0x42fcb0(0x337),{'univer-bg-primary-600':_0x5f3e81===0x1,'univer-bg-transparent':_0x5f3e81!==0x1})})]})]}),(0x0,_0x30fb45[_0x42fcb0(0x6c4)])('div',{'className':'univer-flex-1\x20univer-overflow-auto','children':_0x5f3e81===0x0?(0x0,_0x30fb45['jsx'])('div',{'className':'','children':(0x0,_0x30fb45[_0x42fcb0(0x6c4)])(_0xa18fa4[_0x42fcb0(0x779)],{'items':_0x2d3fc6})},_0x2c8c6f):_0x43acc4})]});}function _0x6a674(_0x2e5d4a){const _0x5596ad=_0x4e4756;return _0x2e5d4a[_0x5596ad(0x4e5)](/\r\n/g,'\x0a')[_0x5596ad(0x4e5)](/\r/g,'\x0a');}function _0x1f92e3(_0x566ee3){const _0x50e60f=_0x4e4756;if(_0x566ee3&&'text'in _0x566ee3&&typeof _0x566ee3['text']==_0x50e60f(0x6b9))return _0x566ee3[_0x50e60f(0x780)];}function _0x3a88fc(_0x235cc2){const _0x223c45=_0x4e4756;if(!(!_0x235cc2||!('isRichText'in _0x235cc2)||_0x235cc2[_0x223c45(0x6a4)]!==!0x1))return{..._0x235cc2[_0x223c45(0x1c7)]?{'ff':_0x235cc2['fontFamily']}:{},..._0x235cc2[_0x223c45(0x6d1)]===void 0x0?{}:{'fs':_0x235cc2[_0x223c45(0x6d1)]},..._0x235cc2[_0x223c45(0x2cb)]?{'cl':{'rgb':_0x235cc2[_0x223c45(0x2cb)]}}:{},..._0x235cc2[_0x223c45(0x338)]===void 0x0?{}:{'bl':_0x235cc2[_0x223c45(0x338)]?_0x2c5933[_0x223c45(0x46c)]['TRUE']:_0x2c5933['BooleanNumber'][_0x223c45(0x113)]},..._0x235cc2[_0x223c45(0x738)]===void 0x0?{}:{'it':_0x235cc2[_0x223c45(0x738)]?_0x2c5933['BooleanNumber'][_0x223c45(0x496)]:_0x2c5933['BooleanNumber']['FALSE']},..._0x235cc2['underline']===void 0x0?{}:{'ul':{'s':_0x235cc2[_0x223c45(0x70b)]?_0x2c5933['BooleanNumber']['TRUE']:_0x2c5933[_0x223c45(0x46c)]['FALSE']}}};}function _0x3d3ce4(_0x4a593b,_0x2f3dc8=_0x2c5933[_0x4e4756(0x673)][_0x4e4756(0x7a8)],_0x247522=''){const _0x182895=_0x4e4756;let _0x435430=_0x6a674(_0x247522)['split']('\x0a'),_0x3b4631=_0x435430[_0x182895(0x3e2)]('\x0d')+'\x0d\x0a',_0x5c36dc=Math[_0x182895(0x206)](0x0,_0x3b4631[_0x182895(0x7cf)]-0x2),_0x53716f=new Set(),_0x133d13=0x0,_0x354436=_0x435430[_0x182895(0x217)](_0x5d66e1=>{const _0x1a10dd=_0x182895;let _0x2196da={'startIndex':_0x133d13+_0x5d66e1['length'],'paragraphId':(0x0,_0x2c5933['createParagraphId'])(_0x53716f),'paragraphStyle':{'horizontalAlign':_0x2f3dc8}};return _0x133d13+=_0x5d66e1[_0x1a10dd(0x7cf)]+0x1,_0x2196da;});return{'id':'shape-text','body':{'dataStream':_0x3b4631,'textRuns':_0x4a593b?[{'st':0x0,'ed':Math['max'](0x1,_0x5c36dc),'ts':{..._0x4a593b}}]:[],'paragraphs':_0x354436},'documentStyle':{'textStyle':_0x4a593b?{..._0x4a593b}:void 0x0}};}function _0x2a9129(_0x5c1822,_0x48fa8d){const _0x382510=_0x4e4756;var _0x419495,_0x2bca9e,_0x405d06;let _0x44990a=_0x5c1822[_0x382510(0x5b5)],_0xc1256b=_0x44990a&&_0x382510(0x36d)in _0x44990a?_0x44990a[_0x382510(0x36d)]:void 0x0,_0x35ace9=(_0x419495=(_0x2bca9e=_0x48fa8d[_0x382510(0xf4)])==null?_0xc1256b==null?void 0x0:_0xc1256b['ha']:_0x2bca9e)==null?_0x2c5933[_0x382510(0x673)][_0x382510(0x7a8)]:_0x419495,_0x5b9b97={..._0x3a88fc(_0x44990a),..._0x48fa8d[_0x382510(0x364)]},_0x5ce276=Object['keys'](_0x5b9b97)[_0x382510(0x7cf)]>0x0;if(_0xc1256b!=null&&_0xc1256b['doc']){var _0x531a99,_0x3c5a9f;return{'va':(_0x531a99=_0xc1256b['va'])==null?_0x2c5933[_0x382510(0x35d)][_0x382510(0x1ca)]:_0x531a99,'ha':(_0x3c5a9f=_0xc1256b['ha'])==null?_0x2c5933[_0x382510(0x673)]['LEFT']:_0x3c5a9f,'doc':_0x2c5933[_0x382510(0x5e0)][_0x382510(0x6ae)](_0xc1256b['doc'])};}return{'va':_0x2c5933['VerticalAlign'][_0x382510(0x1ca)],'ha':_0x35ace9,'doc':_0x3d3ce4(_0x5ce276?_0x5b9b97:void 0x0,_0x35ace9,(_0x405d06=_0x1f92e3(_0x44990a))==null?'':_0x405d06)};}function _0xa5c857(_0x529e22,_0x55c07d){const _0x361ea4=_0x4e4756;var _0x1aa8c1,_0x26029f,_0xeb20bf,_0x49b003,_0x5eedae;let _0x1f89b2=_0x529e22[_0x361ea4(0x5b5)],_0x290216=_0x1f89b2&&_0x361ea4(0x36d)in _0x1f89b2&&_0x1f89b2[_0x361ea4(0x36d)]&&typeof _0x1f89b2[_0x361ea4(0x36d)]=='object'?_0x1f89b2[_0x361ea4(0x36d)]:{},_0xd1c995=_0x1f92e3(_0x1f89b2),_0x5ef47e=_0x2a9129(_0x529e22,_0x55c07d),_0x51b699=(_0x1aa8c1=_0x55c07d['horizontalAlign'])==null?_0x5ef47e['ha']:_0x1aa8c1,_0x3de36a=(_0x26029f=_0x55c07d[_0x361ea4(0x41f)])==null?_0x5ef47e['va']:_0x26029f,_0x2456ed=_0x5ef47e[_0x361ea4(0x14c)];if(_0x2456ed[_0x361ea4(0x4de)]={..._0x2456ed[_0x361ea4(0x4de)],'renderConfig':{...(_0xeb20bf=_0x2456ed['documentStyle'])==null?void 0x0:_0xeb20bf['renderConfig'],'horizontalAlign':_0x51b699,'verticalAlign':_0x3de36a}},_0x55c07d[_0x361ea4(0x364)]){var _0x20a586,_0x2e976d;_0x2456ed['documentStyle']={..._0x2456ed[_0x361ea4(0x4de)],'textStyle':{...(_0x20a586=_0x2456ed[_0x361ea4(0x4de)])==null?void 0x0:_0x20a586[_0x361ea4(0x364)],..._0x55c07d[_0x361ea4(0x364)]}};let _0x4ef51b=(_0x2e976d=_0x2456ed[_0x361ea4(0x298)])==null?void 0x0:_0x2e976d[_0x361ea4(0x608)];if(_0x4ef51b){for(let _0x4a158e of _0x4ef51b)_0x4a158e['ts']={..._0x4a158e['ts'],..._0x55c07d[_0x361ea4(0x364)]};}}let _0x59f4bb=(_0x49b003=_0x2456ed[_0x361ea4(0x298)])==null?void 0x0:_0x49b003['paragraphs'];if(_0x59f4bb){for(let _0x4e2f69 of _0x59f4bb)_0x4e2f69[_0x361ea4(0x507)]={..._0x4e2f69[_0x361ea4(0x507)],'horizontalAlign':_0x51b699};}return{'shapeText':{..._0x1f89b2==null?{}:_0x1f89b2,'isHorizontal':(_0x5eedae=_0x1f89b2==null?void 0x0:_0x1f89b2[_0x361ea4(0x12d)])==null?!0x0:_0x5eedae,..._0xd1c995===void 0x0?{}:{'text':_0xd1c995},'dataModel':{..._0x290216,'va':_0x3de36a,'ha':_0x51b699,'doc':_0x2456ed}}};}let _0x577c27=_0x4e4756(0x5da),_0x1250bf={'none':_0x2efdc4[_0x4e4756(0x1ab)][_0x4e4756(0x65a)],'solid':_0x2efdc4[_0x4e4756(0x1ab)][_0x4e4756(0x5cc)],'gradient':_0x2efdc4[_0x4e4756(0x1ab)]['GradientFill'],'picture':_0x2efdc4[_0x4e4756(0x1ab)][_0x4e4756(0x2ca)]};function _0x5ce7ab(_0x219d47){const _0x720183=_0x4e4756;return _0x219d47 instanceof HTMLElement?!!_0x219d47[_0x720183(0x566)](_0x720183(0x60f)):!0x1;}function _0x27fec8(_0x1753cf){_0x5ce7ab(_0x1753cf['target'])||_0x1753cf['preventDefault']();}function _0x50579d(_0x16f9b3){const _0x309a1f=_0x4e4756;_0x16f9b3[_0x309a1f(0x401)](),_0x27fec8(_0x16f9b3);}function _0x192a89(_0x2c4b99){let _0xbcb62=(0x0,_0x31b8c1['useRef'])(!0x1),_0x5290f6=(0x0,_0x31b8c1['useRef'])(null);return{'handleOpenChange':_0x2924fa=>{const _0x15db6a=_0x539c;!_0x2924fa&&_0xbcb62[_0x15db6a(0x425)]||_0x2c4b99(_0x2924fa);},'markInternalInteraction':()=>{const _0x5a611f=_0x539c;_0xbcb62[_0x5a611f(0x425)]=!0x0,_0x5290f6[_0x5a611f(0x425)]&&clearTimeout(_0x5290f6[_0x5a611f(0x425)]),_0x5290f6[_0x5a611f(0x425)]=setTimeout(()=>{const _0x2fe741=_0x5a611f;_0xbcb62['current']=!0x1,_0x5290f6[_0x2fe741(0x425)]=null;},0x1f4);}};}function _0x3a29b0(){const _0x903780=_0x4e4756;return(0x0,_0x30fb45[_0x903780(0x4b8)])('svg',{'viewBox':'0\x200\x2020\x2020','width':_0x903780(0x143),'height':_0x903780(0x143),'fill':_0x903780(0x539),'aria-hidden':_0x903780(0x7c7),'children':[(0x0,_0x30fb45[_0x903780(0x6c4)])(_0x903780(0x61b),{'d':_0x903780(0x601),'stroke':_0x903780(0x455),'strokeWidth':_0x903780(0x3b7),'strokeLinecap':_0x903780(0x65d)}),(0x0,_0x30fb45['jsx'])(_0x903780(0x61b),{'d':_0x903780(0x2b5),'stroke':_0x903780(0x455),'strokeWidth':'1.4','strokeLinecap':'round'}),(0x0,_0x30fb45['jsx'])(_0x903780(0x61b),{'d':_0x903780(0x476),'stroke':'currentColor','strokeWidth':_0x903780(0x3b7),'strokeLinecap':_0x903780(0x65d)}),(0x0,_0x30fb45['jsx'])(_0x903780(0x61b),{'d':_0x903780(0x6e8),'stroke':_0x903780(0x455),'strokeWidth':_0x903780(0x3b7),'strokeLinecap':_0x903780(0x65d)}),(0x0,_0x30fb45[_0x903780(0x6c4)])(_0x903780(0x61b),{'d':_0x903780(0x693),'stroke':_0x903780(0x455),'strokeWidth':'1.4','strokeLinecap':_0x903780(0x65d)}),(0x0,_0x30fb45[_0x903780(0x6c4)])('path',{'d':_0x903780(0x7ac),'stroke':_0x903780(0x455),'strokeWidth':_0x903780(0x3b7),'strokeLinecap':_0x903780(0x65d)}),(0x0,_0x30fb45[_0x903780(0x6c4)])(_0x903780(0x6c3),{'x':'6.8','y':'7','width':_0x903780(0x67b),'height':'6','rx':'1','stroke':_0x903780(0x455),'strokeWidth':'1.4'})]});}function _0x173e1f(){const _0x125077=_0x4e4756;return(0x0,_0x30fb45[_0x125077(0x6c4)])('span',{'className':'univer-h-5\x20univer-w-px\x20univer-bg-gray-200\x20dark:!univer-bg-gray-700'});}function _0x5e49e5(_0xa5a2c){const _0x58a4b4=_0x4e4756;return(0x0,_0x30fb45[_0x58a4b4(0x6c4)])(_0x58a4b4(0x18d),{'className':_0x58a4b4(0x6cb),'children':_0xa5a2c[_0x58a4b4(0x20a)]});}function _0x8170f0(_0x7340ab){const _0x2e84f4=_0x4e4756;return(0x0,_0x30fb45[_0x2e84f4(0x6c4)])(_0xa18fa4[_0x2e84f4(0x36f)],{'title':_0x7340ab[_0x2e84f4(0x2c5)],'placement':_0x2e84f4(0x65e),'children':(0x0,_0x30fb45[_0x2e84f4(0x6c4)])(_0x2e84f4(0x233),{'type':_0x2e84f4(0x233),'disabled':_0x7340ab[_0x2e84f4(0x1f7)],'onClick':_0x7340ab[_0x2e84f4(0x424)],'className':(0x0,_0xa18fa4[_0x2e84f4(0x4f8)])(_0x2e84f4(0x4eb),{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x7340ab['active']}),'children':_0x7340ab[_0x2e84f4(0x20a)]})});}function _0x1d401a(_0x3c5825){const _0x215e74=_0x4e4756;let {title:_0x244a68,open:_0x1b1aae,disabled:_0x5a187d,icon:_0x25cfec,overlay:_0x2b4e7b,onApply:_0x1ea500,onOpenChange:_0x11d7df}=_0x3c5825,_0xf2bd31=_0x215e74(0x11a);return(0x0,_0x30fb45['jsxs'])(_0x215e74(0x18d),{'className':'univer-flex\x20univer-h-6\x20univer-items-center','children':[(0x0,_0x30fb45[_0x215e74(0x6c4)])(_0xa18fa4[_0x215e74(0x36f)],{'title':_0x244a68,'placement':_0x215e74(0x65e),'children':(0x0,_0x30fb45['jsx'])(_0x215e74(0x233),{'type':'button','disabled':_0x5a187d,'onClick':_0x1ea500,'className':(0x0,_0xa18fa4[_0x215e74(0x4f8)])(_0xf2bd31,'univer-w-7\x20univer-rounded-l-md\x20univer-rounded-r-none',{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x1b1aae}),'children':_0x25cfec})}),(0x0,_0x30fb45[_0x215e74(0x6c4)])(_0xa18fa4[_0x215e74(0x12b)],{'disabled':_0x5a187d,'open':_0x1b1aae,'onOpenChange':_0x11d7df,'overlay':_0x2b4e7b,'children':(0x0,_0x30fb45['jsx'])(_0x215e74(0x161),{'children':(0x0,_0x30fb45[_0x215e74(0x6c4)])(_0xa18fa4[_0x215e74(0x36f)],{'title':_0x244a68,'placement':_0x215e74(0x65e),'children':(0x0,_0x30fb45[_0x215e74(0x6c4)])(_0x215e74(0x233),{'type':'button','disabled':_0x5a187d,'className':(0x0,_0xa18fa4['clsx'])(_0xf2bd31,'univer-w-4\x20univer-rounded-l-none\x20univer-rounded-r-md\x20univer-border-l\x20univer-border-solid\x20univer-border-gray-200\x20dark:!univer-border-gray-700',{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x1b1aae}),'children':(0x0,_0x30fb45[_0x215e74(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x215e74(0x4f8)])(_0x215e74(0x3c0),{'univer-rotate-180':_0x1b1aae})})})})})})]});}function _0x5e1bb4(_0xc041c){const _0x3a2f0d=_0x4e4756;switch(_0xc041c){case _0x2efdc4['ShapeLineDashEnum'][_0x3a2f0d(0x53d)]:case _0x2efdc4['ShapeLineDashEnum']['SquareDot']:return _0x3a2f0d(0x5e4);case _0x2efdc4[_0x3a2f0d(0x6db)][_0x3a2f0d(0x1e9)]:return _0x3a2f0d(0x19e);case _0x2efdc4['ShapeLineDashEnum']['DashDot']:return _0x3a2f0d(0x6b5);case _0x2efdc4[_0x3a2f0d(0x6db)][_0x3a2f0d(0x50d)]:return'8\x202';case _0x2efdc4[_0x3a2f0d(0x6db)][_0x3a2f0d(0x159)]:return _0x3a2f0d(0x239);case _0x2efdc4[_0x3a2f0d(0x6db)]['LongDashDotDot']:return _0x3a2f0d(0x479);case _0x2efdc4[_0x3a2f0d(0x6db)][_0x3a2f0d(0x68e)]:default:return;}}function _0x5a5ea2(_0x46f0dc){const _0xc25bef=_0x4e4756;let {lineStrokeType:_0x1917b4,dashType:_0x253a07,color:_0x4e50be='currentColor',width:_0x1f0eb7=0x2,className:_0x319bda}=_0x46f0dc;return _0x1917b4===_0x2efdc4['ShapeLineTypeEnum'][_0xc25bef(0x24a)]?(0x0,_0x30fb45['jsxs'])(_0xc25bef(0x161),{'className':(0x0,_0xa18fa4['clsx'])(_0xc25bef(0x704),_0x319bda),'children':[(0x0,_0x30fb45[_0xc25bef(0x6c4)])(_0xc25bef(0x161),{'className':_0xc25bef(0x36c)}),(0x0,_0x30fb45[_0xc25bef(0x6c4)])(_0xc25bef(0x161),{'className':'univer-absolute\x20univer-h-7\x20univer-w-0\x20univer-rotate-45\x20univer-border-l-2\x20univer-border-solid\x20univer-border-red-500'})]}):(0x0,_0x30fb45[_0xc25bef(0x6c4)])(_0xc25bef(0x1b9),{'className':(0x0,_0xa18fa4[_0xc25bef(0x4f8)])(_0xc25bef(0x39c),_0x319bda),'viewBox':_0xc25bef(0x572),'aria-hidden':_0xc25bef(0x7c7),'children':(0x0,_0x30fb45['jsx'])('line',{'x1':'4','y1':'10','x2':'44','y2':'10','stroke':_0x4e50be,'strokeWidth':Math[_0xc25bef(0x206)](0x1,Math[_0xc25bef(0x1a8)](0x4,_0x1f0eb7)),'strokeDasharray':_0x5e1bb4(_0x253a07),'strokeLinecap':_0x253a07===_0x2efdc4[_0xc25bef(0x6db)][_0xc25bef(0x53d)]?'round':'butt'})});}function _0x22ea27(_0xe800e8){const _0x5e00b1=_0x4e4756;return(0x0,_0x30fb45[_0x5e00b1(0x6c4)])(_0x5e00b1(0x161),{'className':_0x5e00b1(0x144),'children':(0x0,_0x30fb45[_0x5e00b1(0x6c4)])(_0x5a5ea2,{'dashType':_0xe800e8[_0x5e00b1(0x6e1)],'color':_0xe800e8[_0x5e00b1(0x2cb)],'width':_0xe800e8['width']})});}function _0x3ed536(_0xadd5b3){const _0x4d780e=_0x4e4756;let {label:_0x50e4bb,value:_0x2918ea,min:_0x3eb43f,max:_0x2c4a5f,step:_0x4d7c33,disabled:_0x52c5ec,suffix:_0x527133='',onChange:_0x3c752d}=_0xadd5b3;return(0x0,_0x30fb45[_0x4d780e(0x4b8)])('div',{'className':_0x4d780e(0x271),'children':[(0x0,_0x30fb45[_0x4d780e(0x4b8)])(_0x4d780e(0x18d),{'className':_0x4d780e(0x603),'children':[(0x0,_0x30fb45[_0x4d780e(0x6c4)])(_0x4d780e(0x161),{'className':_0x4d780e(0x16f),'children':_0x50e4bb}),(0x0,_0x30fb45[_0x4d780e(0x4b8)])('span',{'className':_0x4d780e(0x31a),'children':[_0x2918ea,_0x527133]})]}),(0x0,_0x30fb45['jsx'])('input',{'type':_0x4d780e(0x448),'min':_0x3eb43f,'max':_0x2c4a5f,'step':_0x4d7c33,'value':_0x2918ea,'disabled':_0x52c5ec,'onChange':_0x35c0c7=>_0x3c752d(Number(_0x35c0c7[_0x4d780e(0x1e2)][_0x4d780e(0x3da)])),'className':_0x4d780e(0x2f4)})]});}function _0x262ef6(_0x1cbca0){const _0x1581ef=_0x4e4756;var _0x5d7b63,_0x859c85,_0x4156e8,_0x48563b,_0x3d4310;let {title:_0x1ff9b1,shapeData:_0x1b80a5,disabled:_0x210431,resetLabel:_0x53b341,onReset:_0x6559e9,onUpdateShapeData:_0xf414d0}=_0x1cbca0,_0x26692f=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x1581ef(0x56a)]),[_0x36a073,_0xa40ceb]=(0x0,_0x31b8c1['useState'])(!0x1),[_0x5a5ed9,_0x1cd9b4]=(0x0,_0x31b8c1[_0x1581ef(0x3cf)])(!0x1),{handleOpenChange:_0x1edce1,markInternalInteraction:_0x2de62f}=_0x192a89(_0xa40ceb),_0x14833e=_0x1b80a5[_0x1581ef(0x3f6)],_0x5b9047=(_0x5d7b63=_0x14833e==null?void 0x0:_0x14833e['color'])==null?_0x1581ef(0xf5):_0x5d7b63,_0x57076e=Math[_0x1581ef(0x206)](0x1,Math[_0x1581ef(0x1a8)](0xa,Math[_0x1581ef(0x65d)]((_0x859c85=_0x14833e==null?void 0x0:_0x14833e[_0x1581ef(0x56b)])==null?0x1:_0x859c85))),_0x16ad63=Math[_0x1581ef(0x65d)]((0x1-((_0x4156e8=_0x14833e==null?void 0x0:_0x14833e[_0x1581ef(0x314)])==null?0x1:_0x4156e8))*0x64),_0xb14d51=(_0x48563b=_0x14833e==null?void 0x0:_0x14833e[_0x1581ef(0x6e1)])==null?_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x68e)]:_0x48563b,_0x2aeac3=(_0x3d4310=_0x14833e==null?void 0x0:_0x14833e[_0x1581ef(0x4bf)])==null?_0x2efdc4[_0x1581ef(0x678)]['SolidLine']:_0x3d4310,_0xc4a479=_0x2aeac3!==_0x2efdc4[_0x1581ef(0x678)][_0x1581ef(0x24a)]&&_0xb14d51!==_0x2efdc4['ShapeLineDashEnum'][_0x1581ef(0x68e)]&&_0xb14d51!==_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x1e9)],_0x275297=_0x2aeac3===_0x2efdc4[_0x1581ef(0x678)][_0x1581ef(0x24a)]?_0x1581ef(0x539):_0xb14d51===_0x2efdc4['ShapeLineDashEnum']['Solid']?_0x1581ef(0x73a):_0xb14d51===_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x1e9)]?_0x1581ef(0x1ea):_0x1581ef(0x20e),_0x4d30ed=[{'label':(0x0,_0x30fb45['jsx'])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x68e)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x68e)])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4['ShapeLineDashEnum']['RoundDot'],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x53d)])},{'label':(0x0,_0x30fb45['jsx'])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x20d)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4['ShapeLineDashEnum']['SquareDot'])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x1e9)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4['ShapeLineDashEnum'][_0x1581ef(0x1e9)])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)]['DashDot'],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x466)])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4['ShapeLineDashEnum'][_0x1581ef(0x50d)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x50d)])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x159)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x159)])},{'label':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x22ea27,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x5ef)],'color':_0x5b9047,'width':_0x57076e}),'value':String(_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x5ef)])}];(0x0,_0x31b8c1['useEffect'])(()=>{const _0x27d36e=_0x1581ef;(!_0x36a073||_0x2aeac3===_0x2efdc4[_0x27d36e(0x678)][_0x27d36e(0x24a)])&&_0x1cd9b4(!0x1);},[_0x2aeac3,_0x36a073]);let _0x2cdb76=_0x2e6070=>{const _0xa0a8d9=_0x1581ef;_0xf414d0({'oldShapeData':{'stroke':_0x1b80a5[_0xa0a8d9(0x3f6)]}},{'stroke':_0x2e6070});},_0x322fc6=_0x398953=>{const _0x4d8a8a=_0x1581ef;var _0x5e86c5;_0x2cdb76({..._0x14833e,'lineStrokeType':_0x2aeac3,'color':_0x5b9047,'width':_0x57076e,'opacity':(_0x5e86c5=_0x14833e==null?void 0x0:_0x14833e[_0x4d8a8a(0x314)])==null?0x1:_0x5e86c5,'dashType':_0xb14d51,..._0x398953});},_0x1510c4=_0x1cd025=>{const _0xc94ad2=_0x1581ef;if(_0x1cd025===_0xc94ad2(0x539)){_0x322fc6({'lineStrokeType':_0x2efdc4[_0xc94ad2(0x678)][_0xc94ad2(0x24a)]});return;}_0x322fc6({'lineStrokeType':_0x2efdc4[_0xc94ad2(0x678)]['SolidLine'],'dashType':_0x1cd025===_0xc94ad2(0x73a)?_0x2efdc4['ShapeLineDashEnum'][_0xc94ad2(0x68e)]:_0x2efdc4[_0xc94ad2(0x6db)]['Dash']});};return(0x0,_0x30fb45['jsx'])(_0xa18fa4['Dropdown'],{'disabled':_0x210431,'open':_0x36a073,'onOpenChange':_0x1edce1,'overlay':(0x0,_0x30fb45['jsx'])(_0x1581ef(0x18d),{'onPointerDownCapture':_0x190f0e=>{_0x2de62f(),_0x27fec8(_0x190f0e);},'onMouseDownCapture':_0x138804=>{_0x2de62f(),_0x27fec8(_0x138804);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x1b17f8=>{const _0xecd36e=_0x1581ef;_0x1b17f8[_0xecd36e(0x401)](),(!(_0x1b17f8['target']instanceof HTMLElement)||!_0x1b17f8[_0xecd36e(0x1e2)]['closest']('[data-u-comp=\x22shape-stroke-dash-dropdown\x22]'))&&_0x1cd9b4(!0x1);},'className':_0x1581ef(0x352),'children':(0x0,_0x30fb45[_0x1581ef(0x4b8)])(_0x1581ef(0x18d),{'className':_0x1581ef(0x509),'children':[(0x0,_0x30fb45[_0x1581ef(0x6c4)])('span',{'className':_0x1581ef(0x261),'children':_0x26692f['t'](_0x1581ef(0x471))}),(0x0,_0x30fb45[_0x1581ef(0x4b8)])(_0x1581ef(0x18d),{'className':_0x1581ef(0x1d5),'children':[[_0x1581ef(0x539),_0x1581ef(0x73a),_0x1581ef(0x1ea)][_0x1581ef(0x217)](_0x2f572a=>(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0xa18fa4[_0x1581ef(0x36f)],{'title':_0x2f572a===_0x1581ef(0x539)?_0x26692f['t']('shape-editor-ui.line.noLine'):_0x2f572a===_0x1581ef(0x73a)?_0x26692f['t'](_0x1581ef(0x6d7)):_0x26692f['t'](_0x1581ef(0x5a9)),'placement':_0x1581ef(0x5b2),'children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])('button',{'type':_0x1581ef(0x233),'disabled':_0x210431,'aria-label':_0x2f572a,'onClick':()=>_0x1510c4(_0x2f572a),'className':(0x0,_0xa18fa4[_0x1581ef(0x4f8)])(_0x1581ef(0x5b1),{'univer-border-primary-600\x20univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0x275297===_0x2f572a}),'children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x5a5ea2,{'lineStrokeType':_0x2f572a===_0x1581ef(0x539)?_0x2efdc4[_0x1581ef(0x678)][_0x1581ef(0x24a)]:_0x2efdc4[_0x1581ef(0x678)]['SolidLine'],'dashType':_0x2f572a===_0x1581ef(0x1ea)?_0x2efdc4[_0x1581ef(0x6db)]['Dash']:_0x2efdc4[_0x1581ef(0x6db)]['Solid'],'color':_0x2f572a==='none'?void 0x0:_0x5b9047,'width':_0x2f572a===_0x1581ef(0x539)?0x2:_0x57076e})})},_0x2f572a)),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0xa18fa4[_0x1581ef(0x12b)],{'disabled':_0x210431||_0x2aeac3===_0x2efdc4[_0x1581ef(0x678)][_0x1581ef(0x24a)],'open':_0x5a5ed9,'onOpenChange':_0x1cd9b4,'overlay':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x1581ef(0x18d),{'data-u-comp':'shape-stroke-dash-dropdown','onPointerDownCapture':_0xccbd60=>{_0x2de62f(),_0x27fec8(_0xccbd60);},'onMouseDownCapture':_0x2c67e7=>{_0x2de62f(),_0x27fec8(_0x2c67e7);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x5221ec=>_0x5221ec[_0x1581ef(0x401)](),'className':_0x1581ef(0x52f),'children':_0x4d30ed[_0x1581ef(0x217)](_0x4d2452=>(0x0,_0x30fb45[_0x1581ef(0x6c4)])('button',{'type':_0x1581ef(0x233),'onClick':()=>{const _0x4d1660=_0x1581ef;let _0x1e6a0e=Number(_0x4d2452[_0x4d1660(0x3da)]);_0x322fc6({'lineStrokeType':_0x2efdc4[_0x4d1660(0x678)][_0x4d1660(0x342)],'dashType':_0x1e6a0e}),_0x1cd9b4(!0x1);},'className':(0x0,_0xa18fa4[_0x1581ef(0x4f8)])(_0x1581ef(0x428),{'univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0x4d2452['value']===String(_0xb14d51)}),'children':_0x4d2452[_0x1581ef(0x6de)]},_0x4d2452[_0x1581ef(0x3da)]))}),'children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x1581ef(0x161),{'className':_0x1581ef(0x61c),'data-u-comp':'shape-stroke-dash-dropdown','children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0xa18fa4['Tooltip'],{'title':_0x26692f['t'](_0x1581ef(0x5a9)),'placement':_0x1581ef(0x5b2),'children':(0x0,_0x30fb45[_0x1581ef(0x4b8)])(_0x1581ef(0x233),{'type':_0x1581ef(0x233),'role':_0x1581ef(0x527),'aria-expanded':_0x5a5ed9,'disabled':_0x210431||_0x2aeac3===_0x2efdc4['ShapeLineTypeEnum'][_0x1581ef(0x24a)],'onClick':_0x4ccbb0=>{_0x4ccbb0['stopPropagation'](),_0x1cd9b4(_0x55c619=>!_0x55c619);},'className':(0x0,_0xa18fa4[_0x1581ef(0x4f8)])('univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-1\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800',{'univer-border-primary-600\x20univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0xc4a479}),'children':[(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x5a5ea2,{'dashType':_0x2efdc4[_0x1581ef(0x6db)][_0x1581ef(0x159)],'color':_0x5b9047,'width':_0x57076e,'className':_0x1581ef(0x531)}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4['clsx'])(_0x1581ef(0x3c0),{'univer-rotate-180':_0x5a5ed9})})]})})})})]}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x3ed536,{'label':_0x26692f['t'](_0x1581ef(0x72e)),'value':_0x57076e,'min':0x1,'max':0xa,'step':0x1,'disabled':_0x210431||_0x2aeac3===_0x2efdc4[_0x1581ef(0x678)][_0x1581ef(0x24a)],'onChange':_0x1e95e1=>{const _0x2e5e4c=_0x1581ef;_0x322fc6({'lineStrokeType':_0x2efdc4[_0x2e5e4c(0x678)][_0x2e5e4c(0x342)],'width':_0x1e95e1});}}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x1581ef(0x18d),{'className':_0x1581ef(0x282)}),_0x6559e9&&(0x0,_0x30fb45[_0x1581ef(0x6c4)])('button',{'type':'button','disabled':_0x210431,'onClick':()=>{_0x6559e9(),_0xa40ceb(!0x1);},'className':_0x1581ef(0x50b),'children':_0x53b341==null?_0x1581ef(0x224):_0x53b341}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0xa18fa4[_0x1581ef(0x372)],{'value':_0x5b9047,'onChange':_0x2fd24c=>{const _0xe6c666=_0x1581ef;_0x322fc6({'lineStrokeType':_0x2efdc4[_0xe6c666(0x678)][_0xe6c666(0x342)],'color':_0x2fd24c});}}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x3ed536,{'label':_0x26692f['t'](_0x1581ef(0x4a4)),'value':_0x16ad63,'min':0x0,'max':0x64,'step':0x5,'suffix':'%','disabled':_0x210431||_0x2aeac3===_0x2efdc4[_0x1581ef(0x678)]['NoLine'],'onChange':_0x31e83a=>{const _0x2f66d8=_0x1581ef;_0x322fc6({'opacity':(0x64-Math['max'](0x0,Math[_0x2f66d8(0x1a8)](0x64,_0x31e83a)))/0x64});}})]})}),'children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x1581ef(0x161),{'children':(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0xa18fa4[_0x1581ef(0x36f)],{'title':_0x1ff9b1,'placement':_0x1581ef(0x65e),'children':(0x0,_0x30fb45['jsxs'])(_0x1581ef(0x233),{'type':_0x1581ef(0x233),'disabled':_0x210431,'className':(0x0,_0xa18fa4[_0x1581ef(0x4f8)])(_0x1581ef(0x6f3),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x36a073}),'children':[(0x0,_0x30fb45['jsx'])(_0x37160f,{'className':_0x1581ef(0x3a0),'extend':{'colorChannel1':_0x5b9047}}),(0x0,_0x30fb45[_0x1581ef(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4['clsx'])(_0x1581ef(0x3c0),{'univer-rotate-180':_0x36a073})})]})})})});}function _0x54943b(_0x566d81){const _0x1fbbdb=_0x4e4756;var _0x30c0ae,_0x2021dd;return(_0x30c0ae=(_0x2021dd=_0x566d81[_0x1fbbdb(0x181)])==null?void 0x0:_0x2021dd[_0x1fbbdb(0x481)])==null?_0x2efdc4[_0x1fbbdb(0x1ab)][_0x1fbbdb(0x65a)]:_0x30c0ae;}function _0x141be8(_0x3141b7){const _0x5a3f80=_0x4e4756;switch(_0x3141b7){case _0x2efdc4[_0x5a3f80(0x1b1)][_0x5a3f80(0x45d)]:return _0x5a3f80(0x4b7);case _0x2efdc4[_0x5a3f80(0x1b1)][_0x5a3f80(0x4c7)]:return _0x5a3f80(0x3b4);case _0x2efdc4[_0x5a3f80(0x1b1)][_0x5a3f80(0x6dc)]:return _0x5a3f80(0x52c);case _0x2efdc4['ShapeGradientTypeEnum']['Linear']:default:return _0x5a3f80(0x782);}}function _0xa68e0f(_0x282643){const _0x3e7451=_0x4e4756;switch(_0x282643){case'radial':return _0x2efdc4[_0x3e7451(0x1b1)][_0x3e7451(0x45d)];case'angular':return _0x2efdc4[_0x3e7451(0x1b1)][_0x3e7451(0x4c7)];case _0x3e7451(0x52c):return _0x2efdc4['ShapeGradientTypeEnum'][_0x3e7451(0x6dc)];default:return _0x2efdc4['ShapeGradientTypeEnum'][_0x3e7451(0x45c)];}}function _0x24c192(_0x5e35ab,_0x14417f){const _0x4fbd8e=_0x4e4756;var _0x5a1c6d;let _0x3f476c=_0x5e35ab[_0x4fbd8e(0x181)];return{'type':_0x141be8(_0x3f476c==null?void 0x0:_0x3f476c[_0x4fbd8e(0x588)]),'angle':(_0x5a1c6d=_0x3f476c==null?void 0x0:_0x3f476c[_0x4fbd8e(0x348)])==null?0x0:_0x5a1c6d,'stops':_0x3f476c!=null&&_0x3f476c[_0x4fbd8e(0x2ad)]&&_0x3f476c[_0x4fbd8e(0x2ad)][_0x4fbd8e(0x7cf)]>=0x2?_0x3f476c[_0x4fbd8e(0x2ad)]['map'](_0xdbc474=>({'color':_0xdbc474[_0x4fbd8e(0x2cb)],'offset':_0xdbc474['position']*0x64,'opacity':_0xdbc474[_0x4fbd8e(0x314)]})):[{'color':_0x14417f,'offset':0x0},{'color':_0x4fbd8e(0x150),'offset':0x64}]};}function _0xce78fe(_0x524388){const _0x70767c=_0x4e4756;var _0x2ff084,_0x25d462,_0x5eced8;let {shapeData:_0x15c446,disabled:_0x42d964,onUpdateShapeData:_0x511258}=_0x524388,_0x305b32=(0x0,_0x100e66[_0x70767c(0x644)])(_0x2c5933[_0x70767c(0x56a)]),_0x566828=(0x0,_0x100e66[_0x70767c(0x644)])(_0x2c5933[_0x70767c(0x714)]),_0x3df16d=(0x0,_0x100e66[_0x70767c(0x644)])(_0x1d1765[_0x70767c(0x5a4)]),_0xe65bf9=(0x0,_0x31b8c1['useRef'])(null),_0x441f7d=_0x15c446[_0x70767c(0x181)],_0x41ced6=(_0x2ff084=(_0x25d462=_0x441f7d==null?void 0x0:_0x441f7d[_0x70767c(0x6f9)])==null?_0x441f7d==null?void 0x0:_0x441f7d[_0x70767c(0x314)]:_0x25d462)==null?0x1:_0x2ff084,_0x492669=Math[_0x70767c(0x65d)]((0x1-_0x41ced6)*0x64),_0x3388ae=_0x441f7d!=null&&_0x441f7d[_0x70767c(0x101)]&&/^(?:data:|https?:)/[_0x70767c(0x35f)](_0x441f7d[_0x70767c(0x101)])?_0x441f7d[_0x70767c(0x101)]:void 0x0,_0x5dadb5=_0x5821cf=>{const _0x27ccd3=_0x70767c;var _0x3ad38f;_0x511258({'oldShapeData':{'fill':_0x441f7d?{..._0x441f7d}:void 0x0}},{'fill':{..._0x441f7d,'fillType':_0x2efdc4[_0x27ccd3(0x1ab)]['PictureFill'],'imageFillMode':(_0x3ad38f=_0x441f7d==null?void 0x0:_0x441f7d[_0x27ccd3(0x148)])==null?_0x2efdc4[_0x27ccd3(0x3c1)][_0x27ccd3(0x3dc)]:_0x3ad38f,..._0x5821cf}});};return(0x0,_0x30fb45['jsxs'])('div',{'className':_0x70767c(0x358),'children':[(0x0,_0x30fb45['jsxs'])(_0x70767c(0x18d),{'className':_0x70767c(0x603),'children':[(0x0,_0x30fb45[_0x70767c(0x6c4)])(_0x70767c(0x161),{'className':_0x70767c(0x67e),'children':_0x305b32['t'](_0x70767c(0x2a5))}),(0x0,_0x30fb45[_0x70767c(0x6c4)])(_0x70767c(0x29b),{'ref':_0xe65bf9,'type':_0x70767c(0x3e6),'accept':'image/*','className':'univer-hidden','onChange':async _0x1385e2=>{const _0x49c634=_0x70767c;var _0x16bc4e;let _0x173b53=(_0x16bc4e=_0x1385e2[_0x49c634(0x1e2)][_0x49c634(0x1e1)])==null?void 0x0:_0x16bc4e[0x0];if(!_0x173b53)return;_0x1385e2[_0x49c634(0x1e2)]['value']='';let _0x278b14=await _0x3df16d[_0x49c634(0x7bd)](_0x173b53);if(_0x278b14==null)return;let {imageSourceType:_0x2e2ca6,source:_0x59c613,base64Cache:_0x159fad}=_0x278b14,{image:_0x540179}=await(0x0,_0x1d1765[_0x49c634(0x7da)])(_0x159fad||'');_0x3df16d[_0x49c634(0x51d)](_0x59c613,_0x2e2ca6,_0x540179),_0x5dadb5({'fillImageSource':_0x59c613,'fillImageSourceType':_0x2e2ca6,'imageOpacity':_0x41ced6});}}),(0x0,_0x30fb45['jsx'])('button',{'type':'button','disabled':_0x42d964,'onClick':()=>{const _0x194697=_0x70767c;var _0x3f4e64;return(_0x3f4e64=_0xe65bf9[_0x194697(0x425)])==null?void 0x0:_0x3f4e64['click']();},'className':_0x70767c(0xff),'children':_0x305b32['t'](_0x70767c(0x160))})]}),_0x3388ae&&(0x0,_0x30fb45['jsx'])(_0x70767c(0x7a4),{'src':_0x3388ae,'alt':'','className':_0x70767c(0x733)}),(0x0,_0x30fb45[_0x70767c(0x4b8)])('div',{'className':'univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','children':[(0x0,_0x30fb45[_0x70767c(0x6c4)])(_0x70767c(0x161),{'className':_0x70767c(0x67e),'children':_0x305b32['t']('shape-editor-ui.fill.transparency')}),(0x0,_0x30fb45[_0x70767c(0x6c4)])(_0x70767c(0x18d),{'className':_0x70767c(0x6ed),'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x70767c(0x765)],{'className':_0x70767c(0x1fc),'value':_0x492669,'disabled':_0x42d964,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x4bc30e=>_0x4bc30e+'%','parser':_0x5698b3=>(_0x5698b3==null?void 0x0:_0x5698b3[_0x70767c(0x4e5)]('%',''))||'','onChange':_0x12d8c7=>{const _0x23d572=_0x70767c;_0x5dadb5({'imageOpacity':(0x64-Math[_0x23d572(0x206)](0x0,Math[_0x23d572(0x1a8)](0x64,_0x12d8c7==null?0x0:_0x12d8c7)))/0x64}),_0x566828['setContextValue'](_0x2c5933[_0x23d572(0x34c)],!0x1);},'onFocus':()=>_0x566828['setContextValue'](_0x2c5933[_0x70767c(0x34c)],!0x0),'onBlur':()=>_0x566828['setContextValue'](_0x2c5933[_0x70767c(0x34c)],!0x1)})})]}),(0x0,_0x30fb45[_0x70767c(0x6c4)])(_0xa18fa4[_0x70767c(0x6dd)],{'checked':(_0x5eced8=_0x441f7d==null?void 0x0:_0x441f7d[_0x70767c(0x700)])==null?!0x1:_0x5eced8,'disabled':_0x42d964,'onChange':_0x8b704=>{_0x5dadb5({'imageRotateWithShape':_0x8b704});},'children':(0x0,_0x30fb45['jsx'])(_0x70767c(0x161),{'className':_0x70767c(0x10f),'children':_0x305b32['t']('shape-editor-ui.fill.picture.rotateWithShape')})})]});}function _0x2b3654(_0x5b0ec3){const _0x153d94=_0x4e4756;var _0x367a87,_0x28fd32;let {title:_0x584edf,shapeData:_0x4a8416,disabled:_0x157b29,onUpdateShapeData:_0x25dd9f}=_0x5b0ec3,_0x2e6d62=(0x0,_0x100e66[_0x153d94(0x644)])(_0x2c5933[_0x153d94(0x56a)]),[_0x2bcee3,_0xc2fc90]=(0x0,_0x31b8c1[_0x153d94(0x3cf)])(!0x1),{handleOpenChange:_0x2c2bbf,markInternalInteraction:_0x3ac586}=_0x192a89(_0xc2fc90),_0x576238=_0x4a8416['fill'],_0x15b408=_0x54943b(_0x4a8416),_0x4e7422=(_0x367a87=_0x576238==null?void 0x0:_0x576238[_0x153d94(0x2cb)])==null?_0x153d94(0x3f5):_0x367a87,_0x399e3b=_0x253469=>{_0x25dd9f({'oldShapeData':{'fill':_0x576238?{..._0x576238}:void 0x0}},{'fill':_0x253469});},_0x519c99=()=>{const _0x5e6a4d=_0x153d94;let _0x347ed6=_0x24c192(_0x4a8416,_0x4e7422);return{..._0x576238,'fillType':_0x2efdc4[_0x5e6a4d(0x1ab)][_0x5e6a4d(0x751)],'color':_0x4e7422,'gradientType':_0xa68e0f(_0x347ed6[_0x5e6a4d(0x1d0)]),'gradientAngle':_0x347ed6[_0x5e6a4d(0x2f0)],'gradientStops':_0x347ed6[_0x5e6a4d(0x2a6)]['map'](_0x41dc00=>({'position':_0x41dc00[_0x5e6a4d(0x502)]/0x64,'color':_0x41dc00[_0x5e6a4d(0x2cb)],'opacity':_0x41dc00[_0x5e6a4d(0x314)]}))};};return(0x0,_0x30fb45[_0x153d94(0x6c4)])(_0xa18fa4[_0x153d94(0x12b)],{'disabled':_0x157b29,'open':_0x2bcee3,'onOpenChange':_0x2c2bbf,'overlay':(0x0,_0x30fb45[_0x153d94(0x6c4)])('div',{'onPointerDownCapture':_0x37a441=>{_0x3ac586(),_0x27fec8(_0x37a441);},'onMouseDownCapture':_0x2d2a26=>{_0x3ac586(),_0x27fec8(_0x2d2a26);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x1c8050=>_0x1c8050[_0x153d94(0x401)](),'className':_0x153d94(0x5a2),'children':(0x0,_0x30fb45['jsx'])(_0x3e7255,{'compact':!0x0,'disabled':_0x157b29,'value':_0x15b408,'typeValues':_0x1250bf,'color':_0x4e7422,'transparency':Math['round']((0x1-((_0x28fd32=_0x576238==null?void 0x0:_0x576238['opacity'])==null?0x1:_0x28fd32))*0x64),'gradientValue':_0x24c192(_0x4a8416,_0x4e7422),'labels':{'noFill':_0x2e6d62['t'](_0x153d94(0x272)),'solidFill':_0x2e6d62['t'](_0x153d94(0x310)),'gradientFill':_0x2e6d62['t'](_0x153d94(0x279)),'pictureFill':_0x2e6d62['t'](_0x153d94(0x626)),'color':_0x2e6d62['t'](_0x153d94(0x391)),'transparency':_0x2e6d62['t'](_0x153d94(0x67d))},'tabLabels':{'noFill':_0x2e6d62['t'](_0x153d94(0x272)),'solidFill':_0x2e6d62['t'](_0x153d94(0x310)),'gradientFill':_0x2e6d62['t']('shape-editor-ui.fill.gradientFill'),'pictureFill':_0x2e6d62['t'](_0x153d94(0x626))},'renderColorIcon':_0x402413=>(0x0,_0x30fb45['jsx'])(_0x4b3966,{'className':_0x153d94(0x25e),'extend':{'colorChannel1':_0x402413}}),'onChange':_0x4f6170=>{const _0x3b32f1=_0x153d94;if(_0x4f6170===_0x2efdc4['ShapeFillEnum'][_0x3b32f1(0x65a)])_0x399e3b({..._0x576238,'fillType':_0x2efdc4[_0x3b32f1(0x1ab)][_0x3b32f1(0x65a)]});else{if(_0x4f6170===_0x2efdc4[_0x3b32f1(0x1ab)][_0x3b32f1(0x5cc)]){var _0x2640a0;_0x399e3b({..._0x576238,'fillType':_0x2efdc4[_0x3b32f1(0x1ab)][_0x3b32f1(0x5cc)],'color':_0x4e7422,'opacity':(_0x2640a0=_0x576238==null?void 0x0:_0x576238[_0x3b32f1(0x314)])==null?0x1:_0x2640a0});}else{if(_0x4f6170===_0x2efdc4[_0x3b32f1(0x1ab)][_0x3b32f1(0x751)])_0x399e3b(_0x519c99());else{if(_0x4f6170===_0x2efdc4[_0x3b32f1(0x1ab)]['PictureFill']){var _0x23eb1c,_0x215aa0;_0x399e3b({..._0x576238,'fillType':_0x2efdc4['ShapeFillEnum']['PictureFill'],'color':_0x4e7422,'imageOpacity':(_0x23eb1c=_0x576238==null?void 0x0:_0x576238[_0x3b32f1(0x6f9)])==null?0x1:_0x23eb1c,'imageFillMode':(_0x215aa0=_0x576238==null?void 0x0:_0x576238[_0x3b32f1(0x148)])==null?_0x2efdc4[_0x3b32f1(0x3c1)][_0x3b32f1(0x3dc)]:_0x215aa0});}}}}},'onColorChange':_0xd7a50c=>{const _0x5f24d7=_0x153d94;var _0x45226f;_0x399e3b({..._0x576238,'fillType':_0x2efdc4[_0x5f24d7(0x1ab)][_0x5f24d7(0x5cc)],'color':_0xd7a50c,'opacity':(_0x45226f=_0x576238==null?void 0x0:_0x576238[_0x5f24d7(0x314)])==null?0x1:_0x45226f});},'onTransparencyChange':_0x13e4ba=>{const _0x1c1105=_0x153d94;_0x399e3b({..._0x576238,'fillType':_0x2efdc4[_0x1c1105(0x1ab)][_0x1c1105(0x5cc)],'color':_0x4e7422,'opacity':(0x64-Math[_0x1c1105(0x206)](0x0,Math['min'](0x64,_0x13e4ba)))/0x64});},'onGradientChange':_0x2cc156=>{const _0x4ce127=_0x153d94;_0x399e3b({..._0x576238,'fillType':_0x2efdc4[_0x4ce127(0x1ab)][_0x4ce127(0x751)],'color':_0x4e7422,'gradientType':_0xa68e0f(_0x2cc156['type']),'gradientAngle':_0x2cc156[_0x4ce127(0x2f0)],'gradientStops':_0x2cc156[_0x4ce127(0x2a6)][_0x4ce127(0x217)](_0x2ebf6d=>({'position':_0x2ebf6d[_0x4ce127(0x502)]/0x64,'color':_0x2ebf6d[_0x4ce127(0x2cb)],'opacity':_0x2ebf6d[_0x4ce127(0x314)]}))});},'pictureFillEditor':(0x0,_0x30fb45['jsx'])(_0xce78fe,{'shapeData':_0x4a8416,'disabled':_0x157b29,'onUpdateShapeData':_0x25dd9f})})}),'children':(0x0,_0x30fb45[_0x153d94(0x6c4)])(_0x153d94(0x161),{'children':(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x153d94(0x36f)],{'title':_0x584edf,'placement':_0x153d94(0x65e),'children':(0x0,_0x30fb45[_0x153d94(0x4b8)])('button',{'type':_0x153d94(0x233),'disabled':_0x157b29,'className':(0x0,_0xa18fa4[_0x153d94(0x4f8)])(_0x153d94(0x6f3),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x2bcee3}),'children':[(0x0,_0x30fb45[_0x153d94(0x6c4)])(_0x4b3966,{'className':_0x153d94(0x3a0),'extend':{'colorChannel1':_0x15b408===_0x2efdc4[_0x153d94(0x1ab)][_0x153d94(0x65a)]?_0x153d94(0x1e7):_0x4e7422}}),(0x0,_0x30fb45[_0x153d94(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x153d94(0x4f8)])(_0x153d94(0x3c0),{'univer-rotate-180':_0x2bcee3})})]})})})});}function _0x3def30(_0x53742b){const _0x1837a5=_0x4e4756;switch(_0x53742b==null?void 0x0:_0x53742b[_0x1837a5(0x1d0)]){case _0x1837a5(0x539):return _0x2efdc4[_0x1837a5(0x1ab)][_0x1837a5(0x65a)];case _0x1837a5(0x16b):return _0x2efdc4['ShapeFillEnum'][_0x1837a5(0x751)];case _0x1837a5(0x437):return _0x2efdc4[_0x1837a5(0x1ab)][_0x1837a5(0x2ca)];default:return _0x2efdc4['ShapeFillEnum'][_0x1837a5(0x5cc)];}}function _0x2cdeb3(_0x336279,_0x192b98){const _0x33be49=_0x4e4756;var _0x3b7fea,_0x400a36,_0x50b62e,_0x1d1acf,_0x12c184;return{'type':(_0x3b7fea=_0x336279==null||(_0x400a36=_0x336279[_0x33be49(0x16b)])==null?void 0x0:_0x400a36[_0x33be49(0x1d0)])==null?_0x33be49(0x782):_0x3b7fea,'angle':(_0x50b62e=_0x336279==null||(_0x1d1acf=_0x336279[_0x33be49(0x16b)])==null?void 0x0:_0x1d1acf['angle'])==null?0x0:_0x50b62e,'stops':!(_0x336279==null||(_0x12c184=_0x336279['gradient'])==null)&&_0x12c184[_0x33be49(0x2a6)]&&_0x336279['gradient'][_0x33be49(0x2a6)][_0x33be49(0x7cf)]>=0x2?_0x336279[_0x33be49(0x16b)]['stops']['map'](_0x4d68be=>({'color':_0x4d68be[_0x33be49(0x2cb)],'offset':_0x4d68be[_0x33be49(0x502)],'opacity':_0x4d68be['opacity']})):[{'color':_0x192b98,'offset':0x0},{'color':'#8B5CF6','offset':0x64}]};}function _0x1d96c8(_0x1e06ec,_0x174cf3){const _0x279305=_0x4e4756;var _0x5160fb,_0xbf4f82,_0x5dab4a;return(_0x5160fb=_0x1e06ec[_0x279305(0x535)])==null?{'type':_0x279305(0x73a),'color':(_0xbf4f82=(_0x5dab4a=_0x1e06ec['cl'])==null?void 0x0:_0x5dab4a[_0x279305(0x7c8)])==null?_0x174cf3:_0xbf4f82,'opacity':0x1}:_0x5160fb;}function _0x2cc3a3(_0x25c3f9,_0x1fb825){const _0x352207=_0x4e4756;var _0x591f0b,_0x44fdd6,_0x151611;return(_0x591f0b=(_0x44fdd6=_0x25c3f9['color'])==null?(_0x151611=_0x25c3f9[_0x352207(0x16b)])==null||(_0x151611=_0x151611['stops'])==null||(_0x151611=_0x151611[0x0])==null?void 0x0:_0x151611[_0x352207(0x2cb)]:_0x44fdd6)==null?_0x1fb825:_0x591f0b;}function _0x4050d8(_0x10b1fa){const _0x32b43a=_0x4e4756;var _0x1ec98d,_0x5a3534,_0x57c613,_0x451a2c;let {fill:_0x49d8d8,disabled:_0xb6253b,onChange:_0x16cfc4}=_0x10b1fa,_0x4300d1=(0x0,_0x100e66[_0x32b43a(0x644)])(_0x2c5933[_0x32b43a(0x56a)]),_0x564ae3=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x32b43a(0x714)]),_0x9efd3b=(0x0,_0x100e66[_0x32b43a(0x644)])(_0x1d1765[_0x32b43a(0x5a4)]),_0x4f242a=(0x0,_0x31b8c1[_0x32b43a(0x276)])(null),_0x36392=(_0x1ec98d=(_0x5a3534=(_0x57c613=_0x49d8d8[_0x32b43a(0x437)])==null?void 0x0:_0x57c613[_0x32b43a(0x314)])==null?_0x49d8d8[_0x32b43a(0x314)]:_0x5a3534)==null?0x1:_0x1ec98d,_0x5559a9=Math[_0x32b43a(0x65d)]((0x1-_0x36392)*0x64),_0x4d237a=(_0x451a2c=_0x49d8d8['picture'])!=null&&_0x451a2c[_0x32b43a(0x28a)]&&/^(?:data:|https?:)/['test'](_0x49d8d8[_0x32b43a(0x437)][_0x32b43a(0x28a)])?_0x49d8d8[_0x32b43a(0x437)]['source']:void 0x0,_0x5224b8=_0x2ea218=>{const _0x213e28=_0x32b43a;var _0x2ee444,_0x4e2c78;_0x16cfc4({..._0x49d8d8,'type':'picture','picture':{..._0x49d8d8[_0x213e28(0x437)],'mode':(_0x2ee444=(_0x4e2c78=_0x49d8d8[_0x213e28(0x437)])==null?void 0x0:_0x4e2c78[_0x213e28(0x6e4)])==null?_0x213e28(0x13a):_0x2ee444,..._0x2ea218}});};return(0x0,_0x30fb45[_0x32b43a(0x4b8)])('div',{'className':_0x32b43a(0x358),'children':[(0x0,_0x30fb45[_0x32b43a(0x4b8)])(_0x32b43a(0x18d),{'className':_0x32b43a(0x603),'children':[(0x0,_0x30fb45[_0x32b43a(0x6c4)])('span',{'className':_0x32b43a(0x67e),'children':_0x4300d1['t']('shape-editor-ui.fill.picture.source')}),(0x0,_0x30fb45[_0x32b43a(0x6c4)])(_0x32b43a(0x29b),{'ref':_0x4f242a,'type':'file','accept':_0x32b43a(0x705),'className':_0x32b43a(0x5ae),'onChange':async _0x69dd96=>{const _0x18884d=_0x32b43a;var _0x55ff91;let _0x29d1d9=(_0x55ff91=_0x69dd96['target'][_0x18884d(0x1e1)])==null?void 0x0:_0x55ff91[0x0];if(!_0x29d1d9)return;_0x69dd96[_0x18884d(0x1e2)][_0x18884d(0x3da)]='';let _0x448f4e=await _0x9efd3b[_0x18884d(0x7bd)](_0x29d1d9);if(_0x448f4e==null)return;let {imageSourceType:_0x24f22c,source:_0xb4d1c6,base64Cache:_0x5ba30a}=_0x448f4e;_0x5224b8({'source':_0x5ba30a||_0xb4d1c6,'sourceType':_0x24f22c,'opacity':_0x36392});}}),(0x0,_0x30fb45[_0x32b43a(0x6c4)])(_0x32b43a(0x233),{'type':'button','disabled':_0xb6253b,'onClick':()=>{const _0x5074da=_0x32b43a;var _0x4f17c0;return(_0x4f17c0=_0x4f242a['current'])==null?void 0x0:_0x4f17c0[_0x5074da(0x66c)]();},'className':'univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-text-xs\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','children':_0x4300d1['t'](_0x32b43a(0x160))})]}),_0x4d237a&&(0x0,_0x30fb45['jsx'])(_0x32b43a(0x7a4),{'src':_0x4d237a,'alt':'','className':_0x32b43a(0x733)}),(0x0,_0x30fb45['jsxs'])('div',{'className':_0x32b43a(0x603),'children':[(0x0,_0x30fb45[_0x32b43a(0x6c4)])('span',{'className':'univer-shrink-0\x20univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x4300d1['t']('shape-editor-ui.fill.transparency')}),(0x0,_0x30fb45['jsx'])(_0x32b43a(0x18d),{'className':_0x32b43a(0x6ed),'children':(0x0,_0x30fb45[_0x32b43a(0x6c4)])(_0xa18fa4[_0x32b43a(0x765)],{'className':'univer-w-full','value':_0x5559a9,'disabled':_0xb6253b,'min':0x0,'max':0x64,'step':0xa,'formatter':_0xb44e37=>_0xb44e37+'%','parser':_0x97f8dd=>(_0x97f8dd==null?void 0x0:_0x97f8dd['replace']('%',''))||'','onChange':_0x358b41=>{const _0x10f449=_0x32b43a;_0x5224b8({'opacity':(0x64-Math[_0x10f449(0x206)](0x0,Math['min'](0x64,_0x358b41==null?0x0:_0x358b41)))/0x64}),_0x564ae3[_0x10f449(0x6fa)](_0x2c5933[_0x10f449(0x34c)],!0x1);},'onFocus':()=>_0x564ae3['setContextValue'](_0x2c5933[_0x32b43a(0x34c)],!0x0),'onBlur':()=>_0x564ae3[_0x32b43a(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1)})})]})]});}function _0x556b1b(_0x25b355){const _0x32cff2=_0x4e4756;var _0x23e4cf;let {title:_0x55a891,textStyle:_0x7acec7,fallbackColor:_0x5236c1,onChange:_0x2623ff}=_0x25b355,_0x3160b2=(0x0,_0x100e66[_0x32cff2(0x644)])(_0x2c5933[_0x32cff2(0x56a)]),[_0x4bf8a1,_0x5dcdea]=(0x0,_0x31b8c1[_0x32cff2(0x3cf)])(!0x1),{handleOpenChange:_0x1c28a2,markInternalInteraction:_0xa789c6}=_0x192a89(_0x5dcdea),_0xadef5f=_0x1d96c8(_0x7acec7,_0x5236c1),_0x3babc6=_0x3def30(_0xadef5f),_0x340961=_0x2cc3a3(_0xadef5f,_0x5236c1),_0x42f9e1=_0x722a94=>{const _0x2bc31a=_0x32cff2;_0x2623ff({'cl':{'rgb':_0x722a94['type']===_0x2bc31a(0x539)?'rgba(0,\x200,\x200,\x200)':_0x2cc3a3(_0x722a94,_0x5236c1)},'textFill':_0x722a94});},_0xf08c4a=()=>{const _0x1d5806=_0x32cff2;let _0x12744f=_0x2cdeb3(_0xadef5f,_0x340961);return{..._0xadef5f,'type':_0x1d5806(0x16b),'gradient':{'type':_0x12744f['type'],'angle':_0x12744f[_0x1d5806(0x2f0)],'stops':_0x12744f[_0x1d5806(0x2a6)][_0x1d5806(0x217)](_0x37961b=>({'offset':_0x37961b['offset'],'color':_0x37961b['color'],'opacity':_0x37961b['opacity']}))}};};return(0x0,_0x30fb45[_0x32cff2(0x6c4)])(_0x1d401a,{'title':_0x55a891,'open':_0x4bf8a1,'icon':(0x0,_0x30fb45[_0x32cff2(0x6c4)])(_0x44cbce,{'className':_0x32cff2(0x3a0),'extend':{'colorChannel1':_0x340961}}),'onApply':()=>{const _0x3180e1=_0x32cff2;var _0x2462c0;return _0x42f9e1({..._0xadef5f,'type':'solid','color':_0x340961,'opacity':(_0x2462c0=_0xadef5f[_0x3180e1(0x314)])==null?0x1:_0x2462c0});},'onOpenChange':_0x1c28a2,'overlay':(0x0,_0x30fb45[_0x32cff2(0x6c4)])(_0x32cff2(0x18d),{'onPointerDownCapture':_0x31bbd5=>{_0xa789c6(),_0x27fec8(_0x31bbd5);},'onMouseDownCapture':_0x3e4312=>{_0xa789c6(),_0x27fec8(_0x3e4312);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x2681c9=>_0x2681c9[_0x32cff2(0x401)](),'className':_0x32cff2(0x5a2),'children':(0x0,_0x30fb45[_0x32cff2(0x6c4)])(_0x3e7255,{'compact':!0x0,'value':_0x3babc6,'typeValues':_0x1250bf,'color':_0x340961,'transparency':Math[_0x32cff2(0x65d)]((0x1-((_0x23e4cf=_0xadef5f['opacity'])==null?0x1:_0x23e4cf))*0x64),'gradientValue':_0x2cdeb3(_0xadef5f,_0x340961),'labels':{'noFill':_0x3160b2['t']('shape-editor-ui.fill.noFill'),'solidFill':_0x3160b2['t'](_0x32cff2(0x310)),'gradientFill':_0x3160b2['t'](_0x32cff2(0x279)),'pictureFill':_0x3160b2['t']('shape-editor-ui.fill.pictureFill'),'color':_0x3160b2['t'](_0x32cff2(0x391)),'transparency':_0x3160b2['t']('shape-editor-ui.fill.transparency')},'tabLabels':{'noFill':_0x3160b2['t'](_0x32cff2(0x272)),'solidFill':_0x3160b2['t'](_0x32cff2(0x310)),'gradientFill':_0x3160b2['t'](_0x32cff2(0x279)),'pictureFill':_0x3160b2['t'](_0x32cff2(0x626))},'keepColorPickerOpenOnChange':!0x0,'onChange':_0x5545c7=>{const _0x155112=_0x32cff2;if(_0x5545c7===_0x2efdc4[_0x155112(0x1ab)][_0x155112(0x65a)])_0x42f9e1({..._0xadef5f,'type':'none'});else{if(_0x5545c7===_0x2efdc4['ShapeFillEnum'][_0x155112(0x5cc)]){var _0x50df0f;_0x42f9e1({..._0xadef5f,'type':_0x155112(0x73a),'color':_0x340961,'opacity':(_0x50df0f=_0xadef5f[_0x155112(0x314)])==null?0x1:_0x50df0f});}else{if(_0x5545c7===_0x2efdc4['ShapeFillEnum']['GradientFill'])_0x42f9e1(_0xf08c4a());else{if(_0x5545c7===_0x2efdc4[_0x155112(0x1ab)]['PictureFill']){var _0x6e6298,_0xeabcd7,_0x15189d,_0x1ed8ca;_0x42f9e1({..._0xadef5f,'type':'picture','color':_0x340961,'picture':{..._0xadef5f[_0x155112(0x437)],'opacity':(_0x6e6298=(_0xeabcd7=_0xadef5f[_0x155112(0x437)])==null?void 0x0:_0xeabcd7[_0x155112(0x314)])==null?0x1:_0x6e6298,'mode':(_0x15189d=(_0x1ed8ca=_0xadef5f[_0x155112(0x437)])==null?void 0x0:_0x1ed8ca[_0x155112(0x6e4)])==null?_0x155112(0x13a):_0x15189d}});}}}}},'onColorChange':_0x3a1878=>{const _0x281492=_0x32cff2;var _0x4751d9;_0x42f9e1({..._0xadef5f,'type':_0x281492(0x73a),'color':_0x3a1878,'opacity':(_0x4751d9=_0xadef5f[_0x281492(0x314)])==null?0x1:_0x4751d9});},'onTransparencyChange':_0x267af4=>{const _0x592676=_0x32cff2;_0x42f9e1({..._0xadef5f,'type':_0x592676(0x73a),'color':_0x340961,'opacity':(0x64-Math[_0x592676(0x206)](0x0,Math[_0x592676(0x1a8)](0x64,_0x267af4)))/0x64});},'onGradientChange':_0x5132c6=>{const _0x12bc30=_0x32cff2;_0x42f9e1({..._0xadef5f,'type':_0x12bc30(0x16b),'gradient':{'type':_0x5132c6['type'],'angle':_0x5132c6[_0x12bc30(0x2f0)],'stops':_0x5132c6['stops'][_0x12bc30(0x217)](_0x2ee43c=>({'offset':_0x2ee43c[_0x12bc30(0x502)],'color':_0x2ee43c[_0x12bc30(0x2cb)],'opacity':_0x2ee43c[_0x12bc30(0x314)]}))}});},'pictureFillEditor':(0x0,_0x30fb45[_0x32cff2(0x6c4)])(_0x4050d8,{'fill':_0xadef5f,'onChange':_0x42f9e1})})})});}function _0x6cc18e(_0x3d07a4){const _0x2ac4fa=_0x4e4756;let {title:_0x1bdc5e,color:_0x23703b,resetLabel:_0x4e7138,onApply:_0x4616f4,onReset:_0x2a12b6,onChange:_0x2bcae1}=_0x3d07a4,[_0x4dc072,_0x19af2a]=(0x0,_0x31b8c1['useState'])(!0x1),{handleOpenChange:_0xf44f92,markInternalInteraction:_0x255f44}=_0x192a89(_0x19af2a);return(0x0,_0x30fb45[_0x2ac4fa(0x6c4)])(_0x1d401a,{'title':_0x1bdc5e,'open':_0x4dc072,'icon':(0x0,_0x30fb45[_0x2ac4fa(0x6c4)])(_0x20616a,{'className':_0x2ac4fa(0x3a0),'extend':{'colorChannel1':_0x23703b}}),'onApply':_0x4616f4,'onOpenChange':_0xf44f92,'overlay':(0x0,_0x30fb45[_0x2ac4fa(0x4b8)])(_0x2ac4fa(0x18d),{'onPointerDownCapture':_0x45fc83=>{_0x255f44(),_0x27fec8(_0x45fc83);},'onMouseDownCapture':_0x526078=>{_0x255f44(),_0x27fec8(_0x526078);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x129f28=>_0x129f28[_0x2ac4fa(0x401)](),'className':_0x2ac4fa(0x285),'children':[_0x2a12b6&&(0x0,_0x30fb45[_0x2ac4fa(0x6c4)])('button',{'type':_0x2ac4fa(0x233),'onClick':()=>{_0x2a12b6(),_0x19af2a(!0x1);},'className':_0x2ac4fa(0x2a9),'children':_0x4e7138==null?_0x2ac4fa(0x224):_0x4e7138}),(0x0,_0x30fb45[_0x2ac4fa(0x6c4)])(_0xa18fa4[_0x2ac4fa(0x372)],{'value':_0x23703b,'onChange':_0x28e2a5=>{_0x2bcae1(_0x28e2a5),_0x19af2a(!0x1);}})]})});}function _0x515b00(_0x556f87){const _0x4e82c6=_0x4e4756;let {title:_0x266acf,textStyle:_0x4ed3f7,horizontalAlign:_0x55979c,verticalAlign:_0x5e3f6b,horizontalAlignOptions:_0xe06e84,verticalAlignOptions:_0x12566d,onUpdateText:_0x948df7}=_0x556f87,_0x114703=(0x0,_0x100e66[_0x4e82c6(0x644)])(_0x2c5933['LocaleService']),[_0x3be847,_0x2fd690]=(0x0,_0x31b8c1[_0x4e82c6(0x3cf)])(!0x1),{handleOpenChange:_0x27bed0,markInternalInteraction:_0x4e8f07}=_0x192a89(_0x2fd690),_0x36f94d=[{'key':_0x4e82c6(0x338),'title':_0x114703['t'](_0x4e82c6(0x4ec)),'active':_0x4ed3f7[_0x4e82c6(0x55a)],'icon':(0x0,_0x30fb45['jsx'])(_0x2a516b,{}),'onClick':()=>_0x948df7({'textStyle':{'bl':_0x4ed3f7[_0x4e82c6(0x55a)]?_0x2c5933[_0x4e82c6(0x46c)]['FALSE']:_0x2c5933[_0x4e82c6(0x46c)]['TRUE']}})},{'key':_0x4e82c6(0x738),'title':_0x114703['t']('shape-editor-ui.toolbar.italic'),'active':_0x4ed3f7[_0x4e82c6(0x4dd)],'icon':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x457946,{}),'onClick':()=>_0x948df7({'textStyle':{'it':_0x4ed3f7['isItalic']?_0x2c5933[_0x4e82c6(0x46c)][_0x4e82c6(0x113)]:_0x2c5933[_0x4e82c6(0x46c)][_0x4e82c6(0x496)]}})},{'key':'underline','title':_0x114703['t'](_0x4e82c6(0x726)),'active':_0x4ed3f7['isUnderline'],'icon':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0xf856b0,{}),'onClick':()=>_0x948df7({'textStyle':{'ul':{'s':_0x4ed3f7['isUnderline']?_0x2c5933[_0x4e82c6(0x46c)]['FALSE']:_0x2c5933[_0x4e82c6(0x46c)][_0x4e82c6(0x496)]}}})},{'key':_0x4e82c6(0x11c),'title':_0x114703['t'](_0x4e82c6(0x56c)),'active':_0x4ed3f7[_0x4e82c6(0x745)],'icon':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x318e1d,{}),'onClick':()=>_0x948df7({'textStyle':{'st':{'s':_0x4ed3f7[_0x4e82c6(0x745)]?_0x2c5933['BooleanNumber'][_0x4e82c6(0x113)]:_0x2c5933[_0x4e82c6(0x46c)]['TRUE']}}})}],_0x20b483=_0x7b7c49=>(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0xa18fa4[_0x4e82c6(0x36f)],{'title':_0x7b7c49[_0x4e82c6(0x2c5)],'placement':_0x4e82c6(0x5b2),'children':(0x0,_0x30fb45['jsx'])(_0x4e82c6(0x233),{'type':_0x4e82c6(0x233),'onClick':_0x7b7c49[_0x4e82c6(0x424)],'className':(0x0,_0xa18fa4[_0x4e82c6(0x4f8)])(_0x4e82c6(0x5a8),{'univer-border-primary-600\x20univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x7b7c49[_0x4e82c6(0x183)]}),'children':_0x7b7c49['icon']})},String(_0x7b7c49[_0x4e82c6(0x29a)]));return(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0xa18fa4[_0x4e82c6(0x12b)],{'open':_0x3be847,'onOpenChange':_0x27bed0,'overlay':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x4e82c6(0x18d),{'onPointerDownCapture':_0x14f9fc=>{_0x4e8f07(),_0x27fec8(_0x14f9fc);},'onMouseDownCapture':_0x1fd5d0=>{_0x4e8f07(),_0x27fec8(_0x1fd5d0);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x2e2350=>_0x2e2350[_0x4e82c6(0x401)](),'className':_0x4e82c6(0x791),'children':(0x0,_0x30fb45[_0x4e82c6(0x4b8)])('div',{'className':_0x4e82c6(0x271),'children':[(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x4e82c6(0x18d),{'className':_0x4e82c6(0x558),'children':_0x36f94d['map'](_0x20b483)}),(0x0,_0x30fb45['jsx'])('div',{'className':_0x4e82c6(0x282)}),(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x4e82c6(0x18d),{'data-u-comp':_0x4e82c6(0x1c3),'className':_0x4e82c6(0x558),'children':_0xe06e84[_0x4e82c6(0x217)](_0x40da52=>_0x20b483({'key':_0x40da52[_0x4e82c6(0x3da)],'title':_0x40da52[_0x4e82c6(0x6de)],'active':_0x40da52[_0x4e82c6(0x3da)]===_0x55979c,'icon':_0x40da52[_0x4e82c6(0x5af)],'onClick':()=>_0x948df7({'horizontalAlign':_0x40da52['value']})}))}),(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x4e82c6(0x18d),{'data-u-comp':_0x4e82c6(0x216),'className':'univer-flex\x20univer-items-center\x20univer-justify-between','children':_0x12566d[_0x4e82c6(0x217)](_0x5a749a=>_0x20b483({'key':_0x5a749a['value'],'title':_0x5a749a[_0x4e82c6(0x6de)],'active':_0x5a749a[_0x4e82c6(0x3da)]===_0x5e3f6b,'icon':_0x5a749a[_0x4e82c6(0x5af)],'onClick':()=>_0x948df7({'verticalAlign':_0x5a749a[_0x4e82c6(0x3da)]})}))})]})}),'children':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x4e82c6(0x161),{'children':(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0xa18fa4[_0x4e82c6(0x36f)],{'title':_0x266acf,'placement':_0x4e82c6(0x65e),'children':(0x0,_0x30fb45[_0x4e82c6(0x4b8)])(_0x4e82c6(0x233),{'type':_0x4e82c6(0x233),'className':(0x0,_0xa18fa4[_0x4e82c6(0x4f8)])(_0x4e82c6(0x2e6),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x3be847}),'children':[(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x1b4bdf,{'className':'univer-text-base'}),(0x0,_0x30fb45[_0x4e82c6(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x4e82c6(0x4f8)])(_0x4e82c6(0x3c0),{'univer-rotate-180':_0x3be847})})]})})})});}function _0x3e9336(_0x19e28f){const _0xe22e1c=_0x4e4756;var _0x332ca2;let [_0x16ad25,_0x315d41]=(0x0,_0x31b8c1[_0xe22e1c(0x3cf)])(!0x1),_0x1e6c91=(_0x332ca2=_0x19e28f['options'][_0xe22e1c(0x2e8)](_0x5376a0=>_0x5376a0[_0xe22e1c(0x3da)]===_0x19e28f[_0xe22e1c(0x3da)]))==null?_0x19e28f[_0xe22e1c(0x205)][0x0]:_0x332ca2;return _0x1e6c91?(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0xe22e1c(0x12b)],{'open':_0x16ad25,'onOpenChange':_0x315d41,'overlay':(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0xe22e1c(0x18d),{'className':_0xe22e1c(0x56f),'children':_0x19e28f['options'][_0xe22e1c(0x217)](_0x14639a=>(0x0,_0x30fb45[_0xe22e1c(0x4b8)])(_0xe22e1c(0x233),{'type':'button','onClick':()=>{const _0x228531=_0xe22e1c;_0x19e28f[_0x228531(0x6ba)](_0x14639a[_0x228531(0x3da)]),_0x315d41(!0x1);},'className':(0x0,_0xa18fa4[_0xe22e1c(0x4f8)])(_0xe22e1c(0x334),{'univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x14639a[_0xe22e1c(0x3da)]===_0x19e28f[_0xe22e1c(0x3da)]}),'children':[(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0xe22e1c(0x161),{'className':_0xe22e1c(0x786),'children':_0x14639a[_0xe22e1c(0x5af)]}),(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0xe22e1c(0x161),{'className':_0xe22e1c(0x380),'children':_0x14639a[_0xe22e1c(0x6de)]})]},_0x14639a['value']))}),'children':(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0xe22e1c(0x161),{'children':(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0xa18fa4['Tooltip'],{'title':_0x19e28f[_0xe22e1c(0x2c5)],'placement':_0xe22e1c(0x65e),'children':(0x0,_0x30fb45[_0xe22e1c(0x4b8)])(_0xe22e1c(0x233),{'type':_0xe22e1c(0x233),'className':(0x0,_0xa18fa4[_0xe22e1c(0x4f8)])(_0xe22e1c(0x555),{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x16ad25}),'children':[_0x1e6c91[_0xe22e1c(0x5af)],(0x0,_0x30fb45[_0xe22e1c(0x6c4)])(_0x452c38,{'className':'univer-text-xs'})]})})})}):null;}function _0x33b82e(_0x2d7ac7){const _0x518601=_0x4e4756;let {action:_0x2082ba}=_0x2d7ac7,_0x388c1a=_0x2082ba[_0x518601(0x1d0)]===_0x518601(0x551)?_0x36b9:_0x47b447;return(0x0,_0x30fb45['jsx'])(_0x8170f0,{'title':_0x2082ba['label'],'onClick':_0x2082ba[_0x518601(0x424)],'children':(0x0,_0x30fb45[_0x518601(0x6c4)])(_0x388c1a,{})});}function _0xb858e7(_0x3a7b7b){const _0x15cfd1=_0x4e4756;return(0x0,_0x30fb45[_0x15cfd1(0x4b8)])('button',{'type':_0x15cfd1(0x233),'onClick':_0x3a7b7b['onClick'],'className':_0x15cfd1(0x334),'children':[(0x0,_0x30fb45['jsx'])(_0x15cfd1(0x161),{'className':'univer-flex\x20univer-size-4\x20univer-items-center\x20univer-justify-center\x20univer-text-base','children':_0x3a7b7b[_0x15cfd1(0x5af)]}),(0x0,_0x30fb45[_0x15cfd1(0x6c4)])(_0x15cfd1(0x161),{'className':_0x15cfd1(0x380),'children':_0x3a7b7b[_0x15cfd1(0x6de)]})]});}function _0x5b803d(_0x109607){const _0x5938f9=_0x4e4756;let {actions:_0x375ca8}=_0x109607,[_0xec00b8,_0x58de9a]=(0x0,_0x31b8c1[_0x5938f9(0x3cf)])(!0x1),{handleOpenChange:_0x5f0ace,markInternalInteraction:_0x5c07d7}=_0x192a89(_0x58de9a);return(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xa18fa4[_0x5938f9(0x12b)],{'open':_0xec00b8,'onOpenChange':_0x5f0ace,'overlay':(0x0,_0x30fb45['jsxs'])(_0x5938f9(0x18d),{'onPointerDownCapture':_0x1c5ebf=>{_0x5c07d7(),_0x27fec8(_0x1c5ebf);},'onMouseDownCapture':_0x5f6ff3=>{_0x5c07d7(),_0x27fec8(_0x5f6ff3);},'onPointerDown':_0x50579d,'onMouseDown':_0x50579d,'onClick':_0x3642e6=>_0x3642e6[_0x5938f9(0x401)](),'className':_0x5938f9(0x12e),'children':[(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xb858e7,{'label':_0x375ca8[_0x5938f9(0x5e8)],'icon':(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0x433254,{}),'onClick':_0x375ca8[_0x5938f9(0x4ca)]}),(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xb858e7,{'label':_0x375ca8[_0x5938f9(0x591)],'icon':(0x0,_0x30fb45['jsx'])(_0x3df028,{}),'onClick':_0x375ca8[_0x5938f9(0x255)]}),(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0x5938f9(0x18d),{'className':_0x5938f9(0x7d3)}),(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xb858e7,{'label':_0x375ca8[_0x5938f9(0x357)],'icon':(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0x384775,{}),'onClick':_0x375ca8['onBackward']}),(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xb858e7,{'label':_0x375ca8[_0x5938f9(0x75b)],'icon':(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0x93dce4,{}),'onClick':_0x375ca8[_0x5938f9(0x727)]})]}),'children':(0x0,_0x30fb45[_0x5938f9(0x6c4)])('span',{'children':(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0xa18fa4['Tooltip'],{'title':_0x375ca8[_0x5938f9(0x2c5)],'placement':_0x5938f9(0x65e),'children':(0x0,_0x30fb45[_0x5938f9(0x4b8)])(_0x5938f9(0x233),{'type':_0x5938f9(0x233),'className':(0x0,_0xa18fa4['clsx'])(_0x5938f9(0x555),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0xec00b8}),'children':[(0x0,_0x30fb45['jsx'])(_0x3df028,{}),(0x0,_0x30fb45[_0x5938f9(0x6c4)])(_0x452c38,{'className':(0x0,_0xa18fa4[_0x5938f9(0x4f8)])('univer-text-xs\x20univer-text-gray-600\x20univer-transition-transform\x20dark:!univer-text-gray-300',{'univer-rotate-180':_0xec00b8})})]})})})});}function _0x5560f4(_0x40a596){const _0x49c28d=_0x4e4756;var _0x2e20de,_0x15d995,_0x39c066,_0x8c042e,_0x3b64ea,_0xccaf28,_0x15601e,_0x1545cf,_0x52c44c,_0x49f1c8,_0x55cfb0,_0x1fd315;let {shapeData:_0x5e2832,shapeType:_0x3eb8e0,textStyle:_0x1cbd5d,textModel:_0x35049b,wrappingStyle:_0x2c826c,wrappingStyleOptions:_0x2b5974,enableShapeStrokeReset:_0x56d04a=!0x1,enableTextBackgroundReset:_0x45240a=!0x1,deferUntilCollapsedStateLoaded:_0x5c9b5e=!0x1,onUpdateShapeData:_0x16807e,onUpdateText:_0xba1bd5,onUpdateWrappingStyle:_0xe3389,groupAction:_0x512740,layerActions:_0x52f773,onOpenPanel:_0x31c7e4,onDelete:_0x497094}=_0x40a596,_0x2fc4db=(0x0,_0x100e66['useDependency'])(_0x2c5933[_0x49c28d(0x56a)]),_0x1ab454=(0x0,_0x100e66[_0x49c28d(0x644)])(_0x2c5933[_0x49c28d(0x714)]),_0x2ed9b2=(0x0,_0x100e66[_0x49c28d(0x644)])(_0x2c5933['ILocalStorageService']),[_0x4cad2a,_0x530cf8]=(0x0,_0x31b8c1[_0x49c28d(0x3cf)])(!0x1),[_0x12ead6,_0x1b8e4f]=(0x0,_0x31b8c1[_0x49c28d(0x3cf)])(!0x1);(0x0,_0x31b8c1[_0x49c28d(0x76d)])(()=>{const _0x3b320b=_0x49c28d;let _0xa85b9c=!0x1;return _0x2ed9b2[_0x3b320b(0x3f4)](_0x577c27)['then'](_0x4fdc4a=>{!_0xa85b9c&&typeof _0x4fdc4a=='boolean'&&_0x530cf8(_0x4fdc4a);})[_0x3b320b(0x557)](()=>void 0x0)[_0x3b320b(0x21b)](()=>{_0xa85b9c||_0x1b8e4f(!0x0);}),()=>{_0xa85b9c=!0x0;};},[_0x2ed9b2]);let _0x3754fd=_0x572e63=>{const _0x114c3f=_0x49c28d;_0x530cf8(_0x572e63),_0x2ed9b2[_0x114c3f(0x2fe)](_0x577c27,_0x572e63)[_0x114c3f(0x557)](()=>void 0x0);},_0x1e4a26=!!_0x5e2832&&_0x3eb8e0!==void 0x0,_0x4091d8=!!_0x512740||!!_0x52f773,_0x19c259=_0x3eb8e0!==void 0x0&&(0x0,_0x2efdc4['isConnectorShape'])(_0x3eb8e0),_0x1dfb5e=(_0x2e20de=(_0x15d995=_0x1cbd5d['cl'])==null?void 0x0:_0x15d995[_0x49c28d(0x7c8)])==null?_0x49c28d(0x57c):_0x2e20de,_0x3915d6=(_0x39c066=(_0x8c042e=_0x1cbd5d['bg'])==null?void 0x0:_0x8c042e['rgb'])==null?'#ffffff':_0x39c066,_0x36fc41=(_0x3b64ea=_0x1cbd5d['ff'])==null?_0x49c28d(0x47b):_0x3b64ea,_0x2d8f03=(_0xccaf28=_0x1cbd5d['fs'])==null?0xe:_0xccaf28,_0xeec697=_0x1cbd5d['bl']===_0x2c5933['BooleanNumber'][_0x49c28d(0x496)],_0x35ce49=_0x1cbd5d['it']===_0x2c5933[_0x49c28d(0x46c)][_0x49c28d(0x496)],_0x408c08=((_0x15601e=_0x1cbd5d['ul'])==null?void 0x0:_0x15601e['s'])===_0x2c5933['BooleanNumber'][_0x49c28d(0x496)],_0x568509=((_0x1545cf=_0x1cbd5d['st'])==null?void 0x0:_0x1545cf['s'])===_0x2c5933[_0x49c28d(0x46c)][_0x49c28d(0x496)],_0x293725=_0x100e66[_0x49c28d(0x116)][_0x49c28d(0x217)](_0x44f335=>({'label':_0x44f335[_0x49c28d(0x6de)],'value':String(_0x44f335['value'])})),_0x1b34e3=(_0x52c44c=_0x35049b==null?void 0x0:_0x35049b['ha'])==null?_0x2c5933['HorizontalAlign'][_0x49c28d(0x7a8)]:_0x52c44c,_0x4e5865=(_0x49f1c8=_0x35049b==null?void 0x0:_0x35049b['va'])==null?_0x2c5933[_0x49c28d(0x35d)][_0x49c28d(0x1ca)]:_0x49f1c8,_0x576d9d=[{'label':_0x2fc4db['t'](_0x49c28d(0x560)),'value':_0x2c5933[_0x49c28d(0x673)][_0x49c28d(0x7a8)],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x449f46,{})},{'label':_0x2fc4db['t']('shape-editor-ui.toolbar.alignCenter'),'value':_0x2c5933[_0x49c28d(0x673)][_0x49c28d(0x1c8)],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x346995,{})},{'label':_0x2fc4db['t']('shape-editor-ui.toolbar.alignRight'),'value':_0x2c5933['HorizontalAlign'][_0x49c28d(0x273)],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0xbbff2c,{})},{'label':_0x2fc4db['t'](_0x49c28d(0x4c3)),'value':_0x2c5933[_0x49c28d(0x673)][_0x49c28d(0x4a7)],'icon':(0x0,_0x30fb45['jsx'])(_0x35f8a4,{})}],_0x2475c6=[{'label':_0x2fc4db['t'](_0x49c28d(0x68a)),'value':_0x2c5933['VerticalAlign'][_0x49c28d(0x1ca)],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x1db6cf,{})},{'label':_0x2fc4db['t'](_0x49c28d(0x130)),'value':_0x2c5933[_0x49c28d(0x35d)][_0x49c28d(0x554)],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0xdac954,{})},{'label':_0x2fc4db['t']('shape-editor-ui.align.bottom'),'value':_0x2c5933[_0x49c28d(0x35d)]['BOTTOM'],'icon':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x487879,{})}];return!_0x1e4a26&&!_0x4091d8&&!_0x31c7e4&&!_0x497094||_0x5c9b5e&&!_0x12ead6?null:_0x4cad2a?(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x49c28d(0x233),{'type':_0x49c28d(0x233),'data-u-comp':_0x49c28d(0x49b),'aria-label':_0x2fc4db['t'](_0x49c28d(0x12a)),'onMouseDown':_0x50579d,'onClick':()=>_0x3754fd(!0x1),'className':_0x49c28d(0x68c),'children':(0x0,_0x30fb45['jsx'])(_0xd54a61,{'className':_0x49c28d(0xf6)})}):(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x49c28d(0x18d),{'data-u-comp':_0x49c28d(0x13c),'className':'univer-relative\x20univer-inline-flex\x20univer-justify-center','children':[(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x49c28d(0x233),{'type':_0x49c28d(0x233),'aria-label':_0x2fc4db['t'](_0x49c28d(0x4d3)),'onMouseDown':_0x50579d,'onClick':()=>_0x3754fd(!0x0),'className':_0x49c28d(0x43d),'children':(0x0,_0x30fb45['jsx'])(_0xd54a61,{'className':_0x49c28d(0x10f),'style':{'transform':_0x49c28d(0x34b)}})}),(0x0,_0x30fb45[_0x49c28d(0x4b8)])('div',{'onMouseDown':_0x299dd1=>{const _0x4a919a=_0x49c28d;_0x299dd1['stopPropagation'](),_0x5ce7ab(_0x299dd1['target'])||_0x299dd1[_0x4a919a(0x604)]();},'className':(0x0,_0xa18fa4[_0x49c28d(0x4f8)])(_0x49c28d(0x76e),_0xa18fa4[_0x49c28d(0x2be)]),'children':[_0x1e4a26&&(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x30fb45[_0x49c28d(0x13e)],{'children':[(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x5e49e5,{'children':[(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x2b3654,{'title':_0x2fc4db['t'](_0x49c28d(0x105)),'shapeData':_0x5e2832,'disabled':_0x19c259,'onUpdateShapeData':_0x16807e}),(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x262ef6,{'title':_0x2fc4db['t'](_0x49c28d(0x471)),'shapeData':_0x5e2832,'resetLabel':_0x2fc4db['t']('shape-editor-ui.toolbar.resetColor'),'onReset':_0x56d04a?()=>{const _0x38af86=_0x49c28d;_0x16807e({'oldShapeData':{'stroke':_0x5e2832[_0x38af86(0x3f6)]}},{'stroke':{..._0x5e2832['stroke'],'lineStrokeType':_0x2efdc4[_0x38af86(0x678)][_0x38af86(0x24a)]}});}:void 0x0,'onUpdateShapeData':_0x16807e})]}),(0x0,_0x30fb45['jsx'])(_0x173e1f,{}),(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x5e49e5,{'children':[(0x0,_0x30fb45['jsx'])(_0x100e66['FontFamilyDropdown'],{'className':_0x49c28d(0x64e),'inputClassName':_0x49c28d(0x4ea),'value':_0x36fc41,'onChange':_0x4c7d1a=>{const _0x42fb32=_0x49c28d;_0xba1bd5({'textStyle':{'ff':_0x4c7d1a}}),_0x1ab454[_0x42fb32(0x6fa)](_0x2c5933[_0x42fb32(0x34c)],!0x1);}}),(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0xa18fa4['Select'],{'className':_0x49c28d(0x3ce),'value':String(_0x2d8f03),'options':_0x293725,'onChange':_0x1ab94f=>{const _0xb0be3c=_0x49c28d;let _0x54f01d=Number(_0x1ab94f);Number[_0xb0be3c(0x3fa)](_0x54f01d)||_0xba1bd5({'textStyle':{'fs':_0x54f01d}}),_0x1ab454[_0xb0be3c(0x6fa)](_0x2c5933['FOCUSING_PANEL_EDITOR'],!0x1);}}),(0x0,_0x30fb45['jsx'])(_0x515b00,{'title':_0x49c28d(0x6c8),'textStyle':{'isBold':_0xeec697,'isItalic':_0x35ce49,'isUnderline':_0x408c08,'isStrike':_0x568509},'horizontalAlign':_0x1b34e3,'verticalAlign':_0x4e5865,'horizontalAlignOptions':_0x576d9d,'verticalAlignOptions':_0x2475c6,'onUpdateText':_0xba1bd5})]}),(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x173e1f,{}),(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x5e49e5,{'children':[(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x556b1b,{'title':_0x2fc4db['t'](_0x49c28d(0x4d5)),'textStyle':_0x1cbd5d,'fallbackColor':_0x1dfb5e,'onChange':_0x57b308=>_0xba1bd5({'textStyle':_0x57b308})}),(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x6cc18e,{'title':_0x2fc4db['t'](_0x49c28d(0x6f5)),'color':_0x3915d6,'resetLabel':_0x2fc4db['t'](_0x49c28d(0x694)),'onApply':()=>_0xba1bd5({'textStyle':{'bg':{'rgb':_0x3915d6}}}),'onReset':_0x45240a?()=>_0xba1bd5({'textStyle':{'bg':{'rgb':null}}}):void 0x0,'onChange':_0x17c491=>_0xba1bd5({'textStyle':{'bg':{'rgb':_0x17c491}}})})]})]}),_0x1e4a26&&_0x2c826c!==void 0x0&&_0x2b5974&&_0xe3389&&(0x0,_0x30fb45['jsxs'])(_0x30fb45[_0x49c28d(0x13e)],{'children':[(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x173e1f,{}),(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x5e49e5,{'children':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x3e9336,{'title':(_0x55cfb0=(_0x1fd315=_0x2b5974[_0x49c28d(0x2e8)](_0x176ed1=>_0x176ed1['value']===_0x2c826c))==null?void 0x0:_0x1fd315[_0x49c28d(0x6de)])==null?_0x2fc4db['t'](_0x49c28d(0x513)):_0x55cfb0,'value':_0x2c826c,'options':_0x2b5974,'onChange':_0xe3389})})]}),_0x4091d8&&(0x0,_0x30fb45['jsxs'])(_0x30fb45[_0x49c28d(0x13e)],{'children':[(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x173e1f,{}),(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x5e49e5,{'children':[_0x512740&&(0x0,_0x30fb45['jsx'])(_0x33b82e,{'action':_0x512740}),_0x52f773&&(0x0,_0x30fb45['jsx'])(_0x5b803d,{'actions':_0x52f773})]})]}),(_0x31c7e4||_0x497094)&&(0x0,_0x30fb45[_0x49c28d(0x4b8)])(_0x30fb45[_0x49c28d(0x13e)],{'children':[(0x0,_0x30fb45['jsx'])(_0x173e1f,{}),(0x0,_0x30fb45['jsxs'])(_0x5e49e5,{'children':[_0x31c7e4&&(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x8170f0,{'title':_0x2fc4db['t'](_0x49c28d(0x570)),'onClick':()=>{_0x3754fd(!0x0),_0x31c7e4();},'children':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x3f3545,{})}),_0x497094&&(0x0,_0x30fb45['jsx'])(_0x8170f0,{'title':_0x2fc4db['t'](_0x49c28d(0x4d6)),'onClick':_0x497094,'children':(0x0,_0x30fb45[_0x49c28d(0x6c4)])(_0x2473c6,{})})]})]})]})]});}let _0x47b065=function(_0x3ded64){const _0x3d9c89=_0x4e4756;return _0x3ded64['Line']=_0x3d9c89(0x6fc),_0x3ded64[_0x3d9c89(0xef)]=_0x3d9c89(0x711),_0x3ded64[_0x3d9c89(0x65f)]=_0x3d9c89(0x7ce),_0x3ded64['BlockArrow']=_0x3d9c89(0x125),_0x3ded64[_0x3d9c89(0x587)]='equationShape',_0x3ded64['Flowchart']=_0x3d9c89(0x5ab),_0x3ded64['StarAndBanner']=_0x3d9c89(0xf7),_0x3ded64[_0x3d9c89(0x452)]='callout',_0x3ded64[_0x3d9c89(0x1fa)]='other',_0x3ded64;}({}),_0x5bd4d0=[{'group':_0x4e4756(0x6fc),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3c6)],'icon':_0x4e4756(0x2ed),'name':_0x4e4756(0x17e)},{'group':_0x4e4756(0x6fc),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3fc)],'icon':'ShapeStraightConnector1Icon','name':_0x4e4756(0x6ee),'endArrow':!0x0},{'group':_0x4e4756(0x6fc),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3fc)],'icon':_0x4e4756(0x3e9),'name':_0x4e4756(0x77d),'endArrow':!0x0,'startArrow':!0x0},{'group':'line','type':_0x2efdc4[_0x4e4756(0x663)]['BentConnector3'],'icon':_0x4e4756(0x6a5),'name':_0x4e4756(0x575)},{'group':'line','type':_0x2efdc4[_0x4e4756(0x663)]['BentConnector3'],'icon':_0x4e4756(0x616),'name':_0x4e4756(0x58b),'endArrow':!0x0},{'group':'line','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x20b)],'icon':_0x4e4756(0x400),'name':_0x4e4756(0x538),'endArrow':!0x0,'startArrow':!0x0},{'group':_0x4e4756(0x6fc),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x2e3)],'icon':_0x4e4756(0x78b),'name':'shape.type.curved-connector3'},{'group':_0x4e4756(0x6fc),'type':_0x2efdc4['ShapeTypeEnum']['CurvedConnector3'],'icon':_0x4e4756(0x23e),'name':_0x4e4756(0x27c),'endArrow':!0x0},{'group':_0x4e4756(0x6fc),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x2e3)],'icon':_0x4e4756(0x3c5),'name':'shape.type.curved-connector3-arrow2','endArrow':!0x0,'startArrow':!0x0},{'group':_0x4e4756(0x711),'type':_0x2efdc4['ShapeTypeEnum']['Rect'],'icon':_0x4e4756(0x2db),'name':_0x4e4756(0x4bb)},{'group':_0x4e4756(0x711),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x124)],'icon':_0x4e4756(0x598),'name':_0x4e4756(0x4c9)},{'group':_0x4e4756(0x711),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x15e)],'icon':_0x4e4756(0x63d),'name':_0x4e4756(0x44f)},{'group':_0x4e4756(0x711),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6b0)],'icon':_0x4e4756(0x1ef),'name':_0x4e4756(0x460)},{'group':'rectangle','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x725)],'icon':_0x4e4756(0x110),'name':_0x4e4756(0x482)},{'group':_0x4e4756(0x711),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x288)],'icon':_0x4e4756(0x19d),'name':_0x4e4756(0x1b8)},{'group':_0x4e4756(0x711),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x488)],'icon':_0x4e4756(0x717),'name':'shape.type.round1-rect'},{'group':'rectangle','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6f0)],'icon':_0x4e4756(0x7d2),'name':_0x4e4756(0x635)},{'group':_0x4e4756(0x711),'type':_0x2efdc4['ShapeTypeEnum']['Round2DiagRect'],'icon':_0x4e4756(0x473),'name':_0x4e4756(0x581)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5a0)],'icon':_0x4e4756(0x3d2),'name':_0x4e4756(0x51f),'horizontal':!0x0},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['Rect'],'icon':_0x4e4756(0x74d),'name':_0x4e4756(0x736),'vertical':!0x0},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['Ellipse'],'icon':'ShapeEllipseIcon','name':_0x4e4756(0x4ed)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x22a)],'icon':'ShapeTriangleIcon','name':'shape.type.triangle'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['RightTriangle'],'icon':_0x4e4756(0x65c),'name':_0x4e4756(0x3aa)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0xf0)],'icon':_0x4e4756(0x2df),'name':_0x4e4756(0x1cc)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x58f)],'icon':'ShapeTrapezoidIcon','name':'shape.type.trapezoid'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6dc)],'icon':_0x4e4756(0x18e),'name':'shape.type.diamond'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x511)],'icon':'ShapePentagonIcon','name':'shape.type.pentagon'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x21a)],'icon':_0x4e4756(0x2ec),'name':_0x4e4756(0x13d)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x1a4)],'icon':_0x4e4756(0x24e),'name':_0x4e4756(0x2b6)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x621)],'icon':_0x4e4756(0x746),'name':_0x4e4756(0x336)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x59e)],'icon':_0x4e4756(0x163),'name':_0x4e4756(0x79a)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3df)],'icon':'ShapeDodecagonIcon','name':_0x4e4756(0x317)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x4be)],'icon':_0x4e4756(0x45e),'name':_0x4e4756(0x518)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x138)],'icon':_0x4e4756(0x7a7),'name':_0x4e4756(0x44b)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x355)],'icon':_0x4e4756(0x427),'name':'shape.type.teardrop'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['Frame'],'icon':'ShapeFrameIcon','name':_0x4e4756(0x34a)},{'group':'basicShape','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x147)],'icon':_0x4e4756(0x3e1),'name':_0x4e4756(0x327)},{'group':'basicShape','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x712)],'icon':_0x4e4756(0x44d),'name':_0x4e4756(0x6ea)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x79f)],'icon':'ShapeDiagStripeIcon','name':_0x4e4756(0x447)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x139)],'icon':_0x4e4756(0x1f5),'name':'shape.type.plus'},{'group':'basicShape','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x10e)],'icon':_0x4e4756(0x331),'name':_0x4e4756(0x7d0)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['Can'],'icon':'ShapeCanIcon','name':_0x4e4756(0x545)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x312)],'icon':_0x4e4756(0x374),'name':_0x4e4756(0x6eb)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['Bevel'],'icon':'ShapeBevelIcon','name':_0x4e4756(0x489)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)]['Donut'],'icon':'ShapeDonutIcon','name':_0x4e4756(0x7cc)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x40b)],'icon':_0x4e4756(0x1af),'name':_0x4e4756(0x1dd)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)]['BlockArc'],'icon':'ShapeBlockArcIcon','name':'shape.type.block-arc'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x21f)],'icon':'ShapeFolderCornerIcon','name':_0x4e4756(0x71a)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x12c)],'icon':'ShapeSmileyFaceIcon','name':'shape.type.smiley-face'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x54d)],'icon':_0x4e4756(0x306),'name':_0x4e4756(0x168)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x463)],'icon':'ShapeLightningBoltIcon','name':_0x4e4756(0x3cc)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6f7)],'icon':'ShapeSunIcon','name':_0x4e4756(0x47c)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x530)],'icon':_0x4e4756(0x54e),'name':'shape.type.moon'},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1f8)],'icon':_0x4e4756(0x647),'name':'shape.type.cloud'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7d9)],'icon':_0x4e4756(0x7a1),'name':_0x4e4756(0x3f1)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6c2)],'icon':_0x4e4756(0x68f),'name':_0x4e4756(0x2a4)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1a9)],'icon':_0x4e4756(0x6c6),'name':_0x4e4756(0x6fd)},{'group':'basicShape','type':_0x2efdc4['ShapeTypeEnum']['LeftBracket'],'icon':_0x4e4756(0x778),'name':_0x4e4756(0x2a0)},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x434)],'icon':'ShapeRightBracketIcon','name':_0x4e4756(0x39e)},{'group':'basicShape','type':_0x2efdc4[_0x4e4756(0x663)]['LeftBrace'],'icon':_0x4e4756(0x579),'name':'shape.type.left-brace'},{'group':_0x4e4756(0x7ce),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x4da)],'icon':_0x4e4756(0x244),'name':'shape.type.right-brace'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)]['RightArrow'],'icon':'ShapeRightArrowIcon','name':'shape.type.right-arrow'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5f2)],'icon':'ShapeLeftArrowIcon','name':_0x4e4756(0x6ef)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x4f0)],'icon':_0x4e4756(0x368),'name':_0x4e4756(0x38a)},{'group':'blockArrow','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5c6)],'icon':_0x4e4756(0x440),'name':_0x4e4756(0x24b)},{'group':'blockArrow','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5c7)],'icon':_0x4e4756(0x784),'name':_0x4e4756(0x4d4)},{'group':_0x4e4756(0x125),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x29e)],'icon':_0x4e4756(0x798),'name':_0x4e4756(0x6ca)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1a0)],'icon':_0x4e4756(0x5be),'name':_0x4e4756(0x430)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)]['LeftRightUpArrow'],'icon':_0x4e4756(0x59c),'name':'shape.type.left-right-up-arrow'},{'group':_0x4e4756(0x125),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x2e7)],'icon':_0x4e4756(0x126),'name':_0x4e4756(0x193)},{'group':'blockArrow','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x3ad)],'icon':_0x4e4756(0x771),'name':_0x4e4756(0x5d1)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x3ff)],'icon':'ShapeLeftUpArrowIcon','name':'shape.type.left-up-arrow'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)]['BentUpArrow'],'icon':_0x4e4756(0x470),'name':_0x4e4756(0x4d7)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x709)],'icon':_0x4e4756(0x57e),'name':_0x4e4756(0x1ce)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)]['CurvedLeftArrow'],'icon':_0x4e4756(0x2bc),'name':_0x4e4756(0x512)},{'group':'blockArrow','type':_0x2efdc4[_0x4e4756(0x663)]['CurvedUpArrow'],'icon':_0x4e4756(0x529),'name':'shape.type.curved-up-arrow'},{'group':_0x4e4756(0x125),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x1ff)],'icon':'ShapeCurvedDownArrowIcon','name':_0x4e4756(0x55e)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5bd)],'icon':_0x4e4756(0x6ad),'name':'shape.type.striped-right-arrow'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x542)],'icon':_0x4e4756(0x67c),'name':_0x4e4756(0x5e6)},{'group':_0x4e4756(0x125),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x307)],'icon':_0x4e4756(0x71c),'name':_0x4e4756(0x4e3)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x268)],'icon':'ShapeChevronIcon','name':_0x4e4756(0x104)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)]['RightArrowCallout'],'icon':_0x4e4756(0x2bb),'name':_0x4e4756(0x71b)},{'group':_0x4e4756(0x125),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x731)],'icon':_0x4e4756(0x72f),'name':_0x4e4756(0x487)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x30c)],'icon':_0x4e4756(0x629),'name':_0x4e4756(0x1f3)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x256)],'icon':'ShapeUpArrowCalloutIcon','name':_0x4e4756(0x114)},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x221)],'icon':'ShapeLeftRightArrowCalloutIcon','name':'shape.type.left-right-arrow-callout'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x636)],'icon':_0x4e4756(0x1e3),'name':'shape.type.quad-arrow-callout'},{'group':_0x4e4756(0x125),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x2f6)],'icon':_0x4e4756(0x2da),'name':_0x4e4756(0x3e8)},{'group':'equationShape','type':_0x2efdc4['ShapeTypeEnum']['MathPlus'],'icon':_0x4e4756(0x360),'name':_0x4e4756(0x4f4)},{'group':'equationShape','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3ed)],'icon':_0x4e4756(0x438),'name':_0x4e4756(0x43e)},{'group':_0x4e4756(0x3b8),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x637)],'icon':_0x4e4756(0x278),'name':_0x4e4756(0x658)},{'group':_0x4e4756(0x3b8),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x544)],'icon':_0x4e4756(0x79c),'name':_0x4e4756(0x257)},{'group':_0x4e4756(0x3b8),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x134)],'icon':_0x4e4756(0x6d3),'name':_0x4e4756(0x6bb)},{'group':_0x4e4756(0x3b8),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x123)],'icon':_0x4e4756(0x51b),'name':_0x4e4756(0x2bd)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x4f9)],'icon':_0x4e4756(0x1d7),'name':_0x4e4756(0x22b)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x64f)],'icon':_0x4e4756(0x734),'name':'shape.type.flow-chart-alternate-process'},{'group':'flowchart','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x14b)],'icon':_0x4e4756(0x7ab),'name':'shape.type.flow-chart-decision'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x550)],'icon':_0x4e4756(0x175),'name':_0x4e4756(0x41d)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x562)],'icon':_0x4e4756(0x1d1),'name':_0x4e4756(0x129)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7b0)],'icon':_0x4e4756(0x132),'name':_0x4e4756(0x1df)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7d4)],'icon':_0x4e4756(0x5bc),'name':'shape.type.flow-chart-document'},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)]['FlowchartMultiDocument'],'icon':_0x4e4756(0x3d6),'name':_0x4e4756(0x770)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x281)],'icon':_0x4e4756(0x7a5),'name':_0x4e4756(0x15c)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7b6)],'icon':_0x4e4756(0x565),'name':_0x4e4756(0x209)},{'group':'flowchart','type':_0x2efdc4['ShapeTypeEnum']['FlowchartManualInput'],'icon':_0x4e4756(0x2c2),'name':_0x4e4756(0x6e9)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)]['FlowchartManualOperation'],'icon':'ShapeFlowChartManualOperationIcon','name':_0x4e4756(0x318)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x730)],'icon':'ShapeFlowChartConnectorIcon','name':_0x4e4756(0x1f6)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x407)],'icon':_0x4e4756(0x55d),'name':'shape.type.flow-chart-offpage-connector'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x241)],'icon':'ShapeFlowChartPunchedCardIcon','name':_0x4e4756(0x753)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x42f)],'icon':_0x4e4756(0x3fe),'name':_0x4e4756(0x188)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4['ShapeTypeEnum']['FlowchartSummingJunction'],'icon':_0x4e4756(0x5d0),'name':'shape.type.flow-chart-summing-junction'},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x359)],'icon':'ShapeFlowChartOrIcon','name':'shape.type.flow-chart-or'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x6b3)],'icon':'ShapeFlowChartCollateIcon','name':'shape.type.flow-chart-collate'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x199)],'icon':_0x4e4756(0x769),'name':_0x4e4756(0x411)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x7bb)],'icon':'ShapeFlowChartExtractIcon','name':_0x4e4756(0x18c)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6b6)],'icon':_0x4e4756(0x656),'name':_0x4e4756(0x472)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x74a)],'icon':'ShapeFlowChartOnlineStorageIcon','name':_0x4e4756(0x3f8)},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1e6)],'icon':_0x4e4756(0x2d0),'name':_0x4e4756(0x353)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x32d)],'icon':_0x4e4756(0x6d9),'name':'shape.type.flow-chart-magnetic-tape'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)]['FlowchartMagneticDisk'],'icon':'ShapeFlowChartMagneticDiskIcon','name':_0x4e4756(0x501)},{'group':'flowchart','type':_0x2efdc4[_0x4e4756(0x663)]['FlowchartMagneticDrum'],'icon':'ShapeFlowChartMagneticDrumIcon','name':'shape.type.flow-chart-magnetic-drum'},{'group':_0x4e4756(0x5ab),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x24f)],'icon':_0x4e4756(0x1aa),'name':_0x4e4756(0x63a)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7c5)],'icon':_0x4e4756(0x4e9),'name':_0x4e4756(0x454)},{'group':'starAndBanner','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x580)],'icon':_0x4e4756(0x410),'name':'shape.type.irregular-seal2'},{'group':_0x4e4756(0xf7),'type':_0x2efdc4['ShapeTypeEnum']['Star4'],'icon':_0x4e4756(0x2de),'name':_0x4e4756(0x7ae)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x277)],'icon':'ShapeStar5Icon','name':_0x4e4756(0x2fc)},{'group':'starAndBanner','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7ca)],'icon':_0x4e4756(0x42d),'name':_0x4e4756(0x328)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x661)],'icon':_0x4e4756(0x78d),'name':_0x4e4756(0x713)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)]['Star8'],'icon':_0x4e4756(0x510),'name':_0x4e4756(0x2c0)},{'group':'starAndBanner','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3be)],'icon':'ShapeStar10Icon','name':'shape.type.star10'},{'group':_0x4e4756(0xf7),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x4a2)],'icon':_0x4e4756(0x37f),'name':_0x4e4756(0x38d)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x69f)],'icon':'ShapeStar16Icon','name':_0x4e4756(0x1c2)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)]['Star24'],'icon':_0x4e4756(0x383),'name':'shape.type.star24'},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)]['Star32'],'icon':_0x4e4756(0x252),'name':_0x4e4756(0x19b)},{'group':'starAndBanner','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x414)],'icon':_0x4e4756(0x59d),'name':_0x4e4756(0x302)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6c0)],'icon':'ShapeRibbonIcon','name':_0x4e4756(0x60a)},{'group':'starAndBanner','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x226)],'icon':_0x4e4756(0x259),'name':_0x4e4756(0x5ff)},{'group':'starAndBanner','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x27f)],'icon':'ShapeEllipseRibbonIcon','name':_0x4e4756(0x363)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)]['VerticalScroll'],'icon':_0x4e4756(0x62c),'name':_0x4e4756(0x7a3)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)]['HorizontalScroll'],'icon':_0x4e4756(0x5ba),'name':_0x4e4756(0x5f5)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x79e)],'icon':_0x4e4756(0x484),'name':_0x4e4756(0x48c)},{'group':_0x4e4756(0xf7),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x708)],'icon':'ShapeDoubleWaveIcon','name':_0x4e4756(0x40d)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)]['WedgeRectCallout'],'icon':_0x4e4756(0x35b),'name':_0x4e4756(0x21e)},{'group':'callout','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x156)],'icon':_0x4e4756(0x1bc),'name':_0x4e4756(0x2bf)},{'group':'callout','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6e3)],'icon':_0x4e4756(0x47f),'name':'shape.type.wedge-ellipse-callout'},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4['ShapeTypeEnum']['CloudCallout'],'icon':'ShapeCloudCalloutIcon','name':_0x4e4756(0x4a3)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x103)],'icon':_0x4e4756(0x22d),'name':_0x4e4756(0x6a0)},{'group':'callout','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x169)],'icon':_0x4e4756(0x2b7),'name':_0x4e4756(0x72c)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4['ShapeTypeEnum']['BorderCallout3'],'icon':'ShapeBorderCallout3Icon','name':_0x4e4756(0x13f)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x592)],'icon':'ShapeAccentCallout1Icon','name':_0x4e4756(0x3d9)},{'group':'callout','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x536)],'icon':_0x4e4756(0x670),'name':_0x4e4756(0x53f)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)]['AccentCallout3'],'icon':_0x4e4756(0x627),'name':'shape.type.accent-callout3'},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)]['Callout1'],'icon':_0x4e4756(0x749),'name':_0x4e4756(0x63e)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x682)],'icon':'ShapeCallout2Icon','name':'shape.type.callout2'},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x691)],'icon':_0x4e4756(0x756),'name':'shape.type.callout3'},{'group':'callout','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x26b)],'icon':'ShapeAccentBorderCallout1Icon','name':_0x4e4756(0x794)},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x17c)],'icon':_0x4e4756(0x45b),'name':'shape.type.accent-border-callout2'},{'group':_0x4e4756(0x3c2),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x477)],'icon':_0x4e4756(0x394),'name':_0x4e4756(0x775)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x28e)],'icon':_0x4e4756(0x586),'name':_0x4e4756(0x25a)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5e1)],'icon':'ShapeLeftRightCircularArrowIcon','name':_0x4e4756(0x7db)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x7cb)],'icon':'ShapeSwooshArrowIcon','name':_0x4e4756(0x5b9)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum']['LeftRightRibbon'],'icon':'ShapeLeftRightRibbonIcon','name':_0x4e4756(0x47a)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum']['PieWedge'],'icon':_0x4e4756(0x74c),'name':_0x4e4756(0x5d8)},{'group':'other','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x40e)],'icon':_0x4e4756(0x6cc),'name':_0x4e4756(0x176)},{'group':'other','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1dc)],'icon':_0x4e4756(0x5d3),'name':_0x4e4756(0x106)},{'group':'other','type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x75a)],'icon':_0x4e4756(0x620),'name':_0x4e4756(0x242)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)]['CornerTabs'],'icon':_0x4e4756(0x251),'name':_0x4e4756(0x4f5)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x485)],'icon':_0x4e4756(0x6d5),'name':_0x4e4756(0x1de)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x136)],'icon':'ShapeActionButtonForwardNextIcon','name':_0x4e4756(0x5f8)},{'group':'other','type':_0x2efdc4['ShapeTypeEnum']['ActionButtonBeginning'],'icon':'ShapeActionButtonBeginningIcon','name':_0x4e4756(0x39b)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x602)],'icon':'ShapeActionButtonEndIcon','name':_0x4e4756(0x548)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)]['ActionButtonHome'],'icon':_0x4e4756(0x541),'name':_0x4e4756(0x203)},{'group':'other','type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x201)],'icon':_0x4e4756(0x5ea),'name':_0x4e4756(0x17a)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5e7)],'icon':_0x4e4756(0x6a2),'name':_0x4e4756(0x715)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x1b2)],'icon':_0x4e4756(0x707),'name':_0x4e4756(0x6e6)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x645)],'icon':_0x4e4756(0x6d8),'name':_0x4e4756(0x776)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x3ea)],'icon':'ShapeActionButtonSoundIcon','name':_0x4e4756(0x77c)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x340)],'icon':_0x4e4756(0x52b),'name':_0x4e4756(0x643)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum']['ActionButtonBlank'],'icon':'ShapeActionButtonBlankIcon','name':_0x4e4756(0x522)},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x2ee)],'icon':_0x4e4756(0x210),'name':_0x4e4756(0x6df)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x180)],'icon':_0x4e4756(0x4f2),'name':_0x4e4756(0x2c4)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x774)],'icon':_0x4e4756(0x1bd),'name':'shape.type.chart-x'},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum'][_0x4e4756(0x16c)],'icon':_0x4e4756(0x320),'name':_0x4e4756(0x5db)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x537)],'icon':_0x4e4756(0x1ee),'name':_0x4e4756(0x319)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x6e2)],'icon':_0x4e4756(0x561),'name':'shape.type.plaque-tabs'},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x154)],'icon':_0x4e4756(0x1a6),'name':'shape.type.square-tabs'},{'group':_0x4e4756(0x469),'type':_0x2efdc4['ShapeTypeEnum']['UpDownArrowCallout'],'icon':_0x4e4756(0x119),'name':_0x4e4756(0x614)},{'group':_0x4e4756(0x469),'type':_0x2efdc4[_0x4e4756(0x663)][_0x4e4756(0x5c5)],'icon':_0x4e4756(0x6f8),'name':_0x4e4756(0x66e)}];function _0x2ae019(_0x27eb98=_0x5bd4d0,_0x1ea5a0=[]){const _0x107808=_0x4e4756;return _0x27eb98[_0x107808(0x2b4)]((_0x5a7eaa,_0xdd0cb4)=>_0x1ea5a0['includes'](_0xdd0cb4[_0x107808(0x551)])?_0x5a7eaa:(_0x5a7eaa[_0xdd0cb4[_0x107808(0x551)]]||(_0x5a7eaa[_0xdd0cb4['group']]=[]),_0x5a7eaa[_0xdd0cb4[_0x107808(0x551)]][_0x107808(0x3a1)](_0xdd0cb4),_0x5a7eaa),{});}let _0x545deb=_0x4e4756(0x783);function _0x5ae8eb(_0x34d9a6,_0x4661b4){const _0x87e626=_0x4e4756;return _0x34d9a6['t'](_0x545deb+_0x87e626(0x151)+_0x4661b4);}function _0x4a185e(_0x4d60f0,_0x34e291){return _0x4d60f0['t'](_0x545deb+'.'+_0x34e291['name']);}function _0x372084(_0x440309){const _0x378045=_0x4e4756;let {excludeGroups:_0x510530,onShapeClick:_0x46bb4d,options:_0x41a4d3=_0x5bd4d0,variant:_0xae1a82=_0x378045(0x386)}=_0x440309,_0x27e5cc=(0x0,_0x100e66[_0x378045(0x644)])(_0x100e66['IconManager']),_0x4d1a86=(0x0,_0x100e66[_0x378045(0x644)])(_0x2c5933[_0x378045(0x56a)]),_0x354d65=_0x2ae019(_0x41a4d3,_0x510530);return(0x0,_0x30fb45[_0x378045(0x6c4)])('div',{'className':'\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20univer-max-h-[75vh]\x20univer-w-[320px]\x20univer-overflow-y-auto\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+(_0xae1a82===_0x378045(0x3bb)?_0x378045(0x3ec):_0x378045(0x4a8))+'\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','children':Object[_0x378045(0x7c3)](_0x354d65)['map'](([_0x1846f0,_0x43bf61])=>(0x0,_0x30fb45['jsxs'])(_0x378045(0x18d),{'className':_0x378045(0x3c3),'children':[(0x0,_0x30fb45[_0x378045(0x6c4)])(_0x378045(0x18d),{'className':_0x378045(0x54a),'children':_0x5ae8eb(_0x4d1a86,_0x1846f0)}),(0x0,_0x30fb45[_0x378045(0x6c4)])(_0x378045(0x18d),{'className':_0x378045(0x393),'children':_0x43bf61==null?void 0x0:_0x43bf61[_0x378045(0x217)](_0x3149f7=>{const _0x1eccf3=_0x378045;let _0x3fe5f0=_0x27e5cc[_0x1eccf3(0x270)](_0x3149f7[_0x1eccf3(0x5af)]);return(0x0,_0x30fb45['jsx'])(_0x1eccf3(0x233),{'type':'button','title':_0x4a185e(_0x4d1a86,_0x3149f7),'onClick':()=>_0x46bb4d(_0x3149f7),'className':_0x1eccf3(0x377),'children':_0x3fe5f0&&(0x0,_0x30fb45[_0x1eccf3(0x6c4)])(_0x3fe5f0,{'className':'univer-size-full'})},_0x3149f7['name']);})})]},_0x1846f0))});}function _0x5832dd(_0x4099bc){const _0x3549a9=_0x4e4756;return(0x0,_0x30fb45['jsx'])(_0x372084,{'excludeGroups':_0x4099bc['excludeGroups'],'onShapeClick':_0x4099bc['onShapeClick'],'options':_0x4099bc[_0x3549a9(0x205)],'variant':_0x4099bc[_0x3549a9(0x167)]});}function _0x970011(_0x56d02c){const _0x4a86f2=_0x4e4756;let {buttonLabel:_0x33a763,side:_0x169076=_0x4a86f2(0x5fd),..._0x29e3c1}=_0x56d02c,_0x784a5=(0x0,_0x100e66[_0x4a86f2(0x644)])(_0x2c5933[_0x4a86f2(0x56a)]),[_0x5d8916,_0xb0f9b7]=(0x0,_0x31b8c1['useState'])(!0x1);return(0x0,_0x30fb45[_0x4a86f2(0x6c4)])(_0xa18fa4[_0x4a86f2(0x12b)],{'side':_0x169076,'open':_0x5d8916,'onOpenChange':_0xb0f9b7,'overlay':(0x0,_0x30fb45[_0x4a86f2(0x6c4)])(_0x5832dd,{..._0x29e3c1,'onShapeClick':_0x118268=>{const _0x48245b=_0x4a86f2;_0x29e3c1[_0x48245b(0x503)](_0x118268),_0xb0f9b7(!0x1);}}),'children':(0x0,_0x30fb45[_0x4a86f2(0x6c4)])(_0xa18fa4[_0x4a86f2(0x213)],{'children':_0x784a5['t'](_0x33a763)})});}function _0x271618(_0x1431c4){const _0xbfc0f3=_0x4e4756;var _0x23ee8c,_0x571dcb,_0x28e725;let {title:_0x233963,popupDataComponent:_0x3b65f5='doc-paragraph-type-dropdown-popup'}=_0x1431c4,_0xa78091=(0x0,_0x100e66[_0xbfc0f3(0x644)])(_0x2c5933[_0xbfc0f3(0x7d8)]),_0x7c443b=(0x0,_0x100e66[_0xbfc0f3(0x644)])(_0x58cd82[_0xbfc0f3(0x30d)]),_0x10311f=(0x0,_0x100e66[_0xbfc0f3(0x644)])(_0x2c5933[_0xbfc0f3(0x56a)]),_0x19d1f6=(0x0,_0x100e66[_0xbfc0f3(0x644)])(_0x2c5933[_0xbfc0f3(0x1b4)]),[_0x4cf573,_0x38ff8e]=(0x0,_0x31b8c1[_0xbfc0f3(0x3cf)])(!0x1),[_0xa7a28c,_0x161a51]=(0x0,_0x31b8c1['useState'])(_0x2c5933['NamedStyleType'][_0xbfc0f3(0x3b5)]),_0x3c9db1=()=>{const _0x1266ce=_0xbfc0f3;var _0x3e36ce,_0x5b7e51;let _0x20c175=_0x39f712(_0x19d1f6[_0x1266ce(0x1b6)](_0x2c5933['UniverInstanceType']['UNIVER_DOC']),_0x28231b(_0x7c443b));_0x161a51((_0x3e36ce=_0x20c175==null||(_0x5b7e51=_0x20c175[_0x1266ce(0x507)])==null?void 0x0:_0x5b7e51['namedStyleType'])==null?_0x2c5933[_0x1266ce(0x2e4)][_0x1266ce(0x3b5)]:_0x3e36ce);};(0x0,_0x31b8c1[_0xbfc0f3(0x76d)])(()=>{const _0x17a536=_0xbfc0f3;_0x3c9db1();let _0x53af7d=_0xa78091['onCommandExecuted'](_0x36c34b=>{const _0x2a11c6=_0x539c;(_0x36c34b['id']===_0x58cd82['RichTextEditingMutation']['id']||_0x36c34b['id']===_0x58cd82[_0x2a11c6(0x710)]['id']||_0x36c34b['id']===_0xadbe38[_0x2a11c6(0x6bd)]['id']||_0x36c34b['id']===_0xadbe38[_0x2a11c6(0x517)]['id']||_0x36c34b['id']===_0xadbe38[_0x2a11c6(0x3e4)]['id']||_0x36c34b['id']===_0xadbe38[_0x2a11c6(0x4ab)]['id'])&&_0x3c9db1();}),_0x42ad2c=_0x7c443b[_0x17a536(0x728)]['subscribe'](_0x3c9db1);return()=>{const _0x55926e=_0x17a536;_0x53af7d[_0x55926e(0x23d)](),_0x42ad2c[_0x55926e(0x5f6)]();};},[_0xa78091,_0x7c443b,_0x19d1f6]);let _0x410912=(0x0,_0x31b8c1[_0xbfc0f3(0x5d7)])(()=>_0x154f9f(_0x10311f,_0xa78091),[_0xa78091,_0x10311f]),_0x37d3d1=(_0x23ee8c=_0x410912[_0xbfc0f3(0x2e8)](_0x416767=>_0x416767[_0xbfc0f3(0x192)]===_0xa7a28c))==null?_0x410912[0x0]:_0x23ee8c,_0x597edb=_0x3528e9=>{const _0x38ccaa=_0xbfc0f3;var _0x20e41e;let _0x108b9a=_0x19d1f6[_0x38ccaa(0x1b6)](_0x2c5933['UniverInstanceType'][_0x38ccaa(0x197)]),_0x10e205=_0x28231b(_0x7c443b);if((_0x20e41e=_0x1431c4[_0x38ccaa(0x743)])==null||_0x20e41e['call'](_0x1431c4),_0x3528e9[_0x38ccaa(0x192)]!==void 0x0){let _0x298878={'value':_0x3528e9[_0x38ccaa(0x192)]};_0x10e205&&(_0x298878[_0x38ccaa(0x683)]=[_0x10e205]),_0xa78091[_0x38ccaa(0x18f)](_0xadbe38[_0x38ccaa(0x6bd)]['id'],_0x298878);}else{if(_0x3528e9['commandId']===_0xadbe38[_0x38ccaa(0x517)]['id']||_0x3528e9[_0x38ccaa(0x311)]===_0xadbe38[_0x38ccaa(0x3e4)]['id']||_0x3528e9[_0x38ccaa(0x311)]===_0xadbe38[_0x38ccaa(0x4ab)]['id']){let _0x250767=_0x10e205?{'docRange':[_0x10e205]}:void 0x0;_0xa78091['executeCommand'](_0x3528e9['commandId'],_0x250767);}else _0x3528e9[_0x38ccaa(0x311)]&&_0xa78091[_0x38ccaa(0x18f)](_0x3528e9[_0x38ccaa(0x311)],{'unitId':_0x108b9a==null?void 0x0:_0x108b9a[_0x38ccaa(0x634)](),'startOffset':_0x10e205==null?void 0x0:_0x10e205[_0x38ccaa(0x170)],'endOffset':_0x10e205==null?void 0x0:_0x10e205[_0x38ccaa(0x325)]});}_0x38ff8e(!0x1),window[_0x38ccaa(0x76f)](()=>{const _0x42a2ea=_0x38ccaa;var _0x5bc314;_0x3c9db1(),(_0x5bc314=_0x1431c4[_0x42a2ea(0x42b)])==null||_0x5bc314[_0x42a2ea(0x234)](_0x1431c4);});};return(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0xbfc0f3(0x12b)],{'open':_0x4cf573,'onOpenChange':_0x38ff8e,'overlay':(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0xbfc0f3(0x18d),{'className':(0x0,_0xa18fa4[_0xbfc0f3(0x4f8)])(_0xbfc0f3(0xfe),_0x1431c4['className']),'data-u-comp':_0x3b65f5,'onMouseDown':_0x3cdcd5=>_0x3cdcd5[_0xbfc0f3(0x604)](),'children':_0x410912[_0xbfc0f3(0x217)](_0x51713a=>(0x0,_0x30fb45[_0xbfc0f3(0x4b8)])(_0xbfc0f3(0x233),{'type':'button','className':(0x0,_0xa18fa4[_0xbfc0f3(0x4f8)])(_0xbfc0f3(0x334),{'univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x51713a[_0xbfc0f3(0x3da)]===(_0x37d3d1==null?void 0x0:_0x37d3d1[_0xbfc0f3(0x3da)])}),'onClick':()=>_0x597edb(_0x51713a),'onMouseDown':_0x39a12a=>_0x39a12a[_0xbfc0f3(0x604)](),'children':[(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0xbfc0f3(0x161),{'className':_0xbfc0f3(0x786),'children':_0x51713a[_0xbfc0f3(0x5af)]}),(0x0,_0x30fb45['jsx'])(_0xbfc0f3(0x161),{'className':_0xbfc0f3(0x380),'children':_0x51713a[_0xbfc0f3(0x6de)]})]},_0x51713a[_0xbfc0f3(0x3da)]))}),'children':(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0xbfc0f3(0x161),{'children':(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0xa18fa4[_0xbfc0f3(0x36f)],{'title':_0x233963,'placement':_0xbfc0f3(0x65e),'children':(0x0,_0x30fb45[_0xbfc0f3(0x4b8)])(_0xbfc0f3(0x233),{'type':_0xbfc0f3(0x233),'aria-expanded':_0x4cf573,'aria-label':_0x233963,'title':_0x233963,'className':(0x0,_0xa18fa4[_0xbfc0f3(0x4f8)])(_0xbfc0f3(0x177),_0x1431c4['buttonClassName'],{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x4cf573}),'onMouseDown':(_0x571dcb=_0x1431c4['onMouseDown'])==null?_0x3f9dce=>_0x3f9dce[_0xbfc0f3(0x604)]():_0x571dcb,'children':[(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0xbfc0f3(0x161),{'className':_0xbfc0f3(0x786),'children':(_0x28e725=_0x37d3d1==null?void 0x0:_0x37d3d1['icon'])==null?(0x0,_0x30fb45['jsx'])(_0x77dc9f,{}):_0x28e725}),(0x0,_0x30fb45[_0xbfc0f3(0x6c4)])(_0x452c38,{'className':_0xbfc0f3(0x10f)})]})})})});}function _0x154f9f(_0xf97604,_0x4db875){const _0x5e6c17=_0x4e4756;let _0x401b0a=[_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)][_0x5e6c17(0x3b5)],(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0x77dc9f,{}),_0x5e6c17(0x131)),_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)][_0x5e6c17(0x3db)],(0x0,_0x30fb45['jsx'])(_0x4fcc35,{}),_0x5e6c17(0x646)),_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)][_0x5e6c17(0x67f)],(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0x1029bd,{}),_0x5e6c17(0x500)),_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)][_0x5e6c17(0x305)],(0x0,_0x30fb45['jsx'])(_0x41f960,{}),_0x5e6c17(0x474)),_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)]['HEADING_4'],(0x0,_0x30fb45['jsx'])(_0x1c2acc,{}),_0x5e6c17(0x11b)),_0x3b838c(_0xf97604,_0x2c5933[_0x5e6c17(0x2e4)]['HEADING_5'],(0x0,_0x30fb45['jsx'])(_0x1aa049,{}),'shape-editor-ui.textEditor.paragraphType.heading5'),_0x7d9b59(_0xf97604,_0xadbe38[_0x5e6c17(0x517)]['id'],(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0x33e11f,{}),_0x5e6c17(0x254)),_0x7d9b59(_0xf97604,_0xadbe38['BulletListCommand']['id'],(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0xe53487,{}),_0x5e6c17(0x373)),_0x7d9b59(_0xf97604,_0xadbe38[_0x5e6c17(0x4ab)]['id'],(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0x30ddeb,{}),_0x5e6c17(0x48b))],_0x156c99=[_0x7d9b59(_0xf97604,_0x5e6c17(0x354),(0x0,_0x30fb45['jsx'])(_0x5e6c17(0x161),{'className':_0x5e6c17(0x3f3),'children':'\x22'}),_0x5e6c17(0x6ec)),_0x7d9b59(_0xf97604,'docs-code.command.insert',(0x0,_0x30fb45['jsx'])(_0x1fbb57,{}),_0x5e6c17(0x173)),_0x7d9b59(_0xf97604,_0x5e6c17(0x2fb),(0x0,_0x30fb45[_0x5e6c17(0x6c4)])(_0x363138,{}),_0x5e6c17(0x790))][_0x5e6c17(0x590)](_0x3d93fd=>_0x4db875[_0x5e6c17(0x1e4)](_0x3d93fd[_0x5e6c17(0x311)]));return[..._0x401b0a,..._0x156c99];}function _0x3b838c(_0x2ca045,_0x5d75ca,_0x210416,_0x4617df){return{'icon':_0x210416,'label':_0x2ca045['t'](_0x4617df),'namedStyleType':_0x5d75ca,'value':'heading:'+_0x5d75ca};}function _0x7d9b59(_0x2fa89d,_0x5add94,_0x250030,_0x305018){const _0x5688df=_0x4e4756;return{'commandId':_0x5add94,'icon':_0x250030,'label':_0x2fa89d['t'](_0x305018),'value':_0x5688df(0x388)+_0x5add94};}function _0x28231b(_0x49167f){const _0x4f0b14=_0x4e4756;var _0x3acbaa,_0xe6fd31,_0xdb5d84,_0x2cf232;let _0x3fb7af=(_0x3acbaa=_0x49167f[_0x4f0b14(0x50e)])==null?void 0x0:_0x3acbaa[_0x4f0b14(0x234)](_0x49167f);if(_0x3fb7af)return _0x3fb7af;let _0x3211f0=(_0xe6fd31=_0x49167f[_0x4f0b14(0x146)]())==null?[]:_0xe6fd31;return(_0xdb5d84=(_0x2cf232=_0x3211f0['find'](_0x32738f=>_0x32738f[_0x4f0b14(0x212)]))==null?_0x3211f0[0x0]:_0x2cf232)==null?null:_0xdb5d84;}function _0x39f712(_0x493e4b,_0x71d302){const _0x22f702=_0x4e4756;var _0xf5e8b7,_0x2edba4,_0x445131,_0x10b571;let _0xf4864a=_0x493e4b==null||(_0xf5e8b7=_0x493e4b[_0x22f702(0x43b)](_0x71d302==null?void 0x0:_0x71d302[_0x22f702(0x71e)]))==null?void 0x0:_0xf5e8b7[_0x22f702(0x755)](),_0x397dc2=(_0x2edba4=_0xf4864a==null?void 0x0:_0xf4864a[_0x22f702(0x61f)])==null?[]:_0x2edba4,_0x537acc=(_0x445131=_0x71d302==null?void 0x0:_0x71d302['startOffset'])==null?0x0:_0x445131;return(_0x10b571=_0x397dc2[_0x22f702(0x2e8)](_0x5c8402=>_0x5c8402[_0x22f702(0x639)]>=_0x537acc))==null?_0x397dc2[_0x397dc2['length']-0x1]:_0x10b571;}function _0x46f0b8(_0x493000,_0x4d6d15){const _0x2e0531=_0x4e4756;return Math[_0x2e0531(0x568)](_0x493000-_0x4d6d15)<=0.001;}function _0x5f3514(_0xf43564,_0x10e0cf){const _0x2bbae8=_0x4e4756;return _0x46f0b8(_0xf43564[_0x2bbae8(0x5fd)],_0x10e0cf[_0x2bbae8(0x5fd)])&&_0x46f0b8(_0xf43564['top'],_0x10e0cf[_0x2bbae8(0x5b2)])&&_0x46f0b8(_0xf43564[_0x2bbae8(0x56b)],_0x10e0cf[_0x2bbae8(0x56b)])&&_0x46f0b8(_0xf43564[_0x2bbae8(0x157)],_0x10e0cf[_0x2bbae8(0x157)])&&_0x46f0b8(_0xf43564[_0x2bbae8(0x2f0)],_0x10e0cf[_0x2bbae8(0x2f0)])&&_0x46f0b8(_0xf43564[_0x2bbae8(0x76b)],_0x10e0cf[_0x2bbae8(0x76b)])&&_0x46f0b8(_0xf43564[_0x2bbae8(0x1e8)],_0x10e0cf[_0x2bbae8(0x1e8)]);}let _0x50cd40={'left':-0x270f,'top':-0x270f,'width':0x64,'height':0x64,'angle':0x0,'scaleX':0x1,'scaleY':0x1};function _0x58fbaa(_0x4d92d8,_0x481f10,_0x4a7848,_0x4a5afb,_0x3ad3d8){const _0x57c51d=_0x4e4756;let {scaleX:_0x59143e,scaleY:_0x475c14}=_0x4a7848[_0x57c51d(0x186)](),{startColumn:_0x3675c7,startRow:_0x429d0c,xSplit:_0x4a843e,ySplit:_0x42d722}=_0x4a5afb[_0x57c51d(0x6bf)][_0x57c51d(0x415)](),_0x221b47=_0x4a7848[_0x57c51d(0x3a2)](_0x3ad3d8[_0x57c51d(0x690)]),_0x5e7f6f=_0x4a7848[_0x57c51d(0x3a2)](_0x3ad3d8[_0x57c51d(0x69d)]),_0x1a4f1a=_0x4a7848[_0x57c51d(0x3a2)](_0x3ad3d8[_0x57c51d(0x5b2)]),_0x1f9d06=_0x4a7848[_0x57c51d(0x3a2)](_0x3ad3d8[_0x57c51d(0x5fd)]),{rowHeaderWidth:_0x340193,columnHeaderHeight:_0x2216d3}=_0x4a5afb,_0x2ec4c7=_0x4a5afb['rowStartY'](_0x429d0c)+_0x2216d3,_0x12ecbb=_0x4a5afb[_0x57c51d(0x6c5)](_0x3675c7)+_0x340193,_0x89d4a4=_0x4a5afb[_0x57c51d(0x702)](_0x429d0c-_0x42d722)+_0x2216d3,_0x6b3d7f=_0x4a5afb[_0x57c51d(0x6c5)](_0x3675c7-_0x4a843e)+_0x340193,_0x2ed109=[],_0x1db8c2=(_0x34b228,_0x443fea,_0x1d3120)=>{if(!_0x34b228)return null;let {viewportScrollX:_0x563f53,viewportScrollY:_0x8c8253}=_0x34b228,_0x5cd6e0,_0x3d0c5a;return _0x5cd6e0=_0x443fea?(_0x4d92d8-(_0x6b3d7f-_0x340193))*_0x59143e:(_0x4d92d8-_0x563f53)*_0x59143e,_0x3d0c5a=_0x1d3120?(_0x481f10-(_0x89d4a4-_0x2216d3))*_0x475c14:(_0x481f10-_0x8c8253)*_0x475c14,{'domX':_0x5cd6e0,'domY':_0x3d0c5a};},_0x11178b=_0x4d92d8<_0x12ecbb&&_0x4a843e>0x0,_0xf96d91=_0x481f10<_0x2ec4c7&&_0x42d722>0x0,_0x5a9aea=_0x4d92d8>=_0x12ecbb||_0x4a843e===0x0,_0x867207=_0x481f10>=_0x2ec4c7||_0x42d722===0x0;if(_0x11178b&&_0xf96d91&&_0x5e7f6f){let _0x18d97b=_0x1db8c2(_0x5e7f6f,!0x0,!0x0);_0x18d97b&&_0x2ed109[_0x57c51d(0x3a1)](_0x18d97b);}if(_0xf96d91&&_0x5a9aea&&_0x1a4f1a){let _0x42c496=_0x1db8c2(_0x1a4f1a,!0x1,!0x0);_0x42c496&&_0x2ed109[_0x57c51d(0x3a1)](_0x42c496);}if(_0x11178b&&_0x867207&&_0x1f9d06){let _0x77ddd8=_0x1db8c2(_0x1f9d06,!0x0,!0x1);_0x77ddd8&&_0x2ed109[_0x57c51d(0x3a1)](_0x77ddd8);}if(_0x5a9aea&&_0x867207&&_0x221b47){let _0x4a35f2=_0x1db8c2(_0x221b47,!0x1,!0x1);_0x4a35f2&&_0x2ed109[_0x57c51d(0x3a1)](_0x4a35f2);}if(_0x2ed109[_0x57c51d(0x7cf)]===0x0){var _0x370f2b,_0x442638;return{'domX':(_0x4d92d8-((_0x370f2b=_0x221b47==null?void 0x0:_0x221b47[_0x57c51d(0x179)])==null?0x0:_0x370f2b))*_0x59143e,'domY':(_0x481f10-((_0x442638=_0x221b47==null?void 0x0:_0x221b47[_0x57c51d(0x297)])==null?0x0:_0x442638))*_0x475c14};}let _0x1e0032=_0x2ed109[0x0]['domX'],_0x20b01f=_0x2ed109[0x0][_0x57c51d(0x200)];for(let _0x33655f of _0x2ed109)_0x33655f[_0x57c51d(0x556)]>_0x1e0032&&(_0x1e0032=_0x33655f[_0x57c51d(0x556)]),_0x33655f['domY']>_0x20b01f&&(_0x20b01f=_0x33655f[_0x57c51d(0x200)]);return{'domX':_0x1e0032,'domY':_0x20b01f};}function _0x224489(_0x2a0404,_0x1b8535,_0x31ca06,_0x353b15,_0x14a7aa,_0x374d1f,_0x36129e,_0x41cfff){const _0x430c28=_0x4e4756;let {scaleX:_0x199495,scaleY:_0x2c7cef}=_0x374d1f[_0x430c28(0x186)]();if(!_0x41cfff||!_0x36129e[_0x430c28(0x69d)]||!_0x36129e[_0x430c28(0x5b2)]||!_0x36129e[_0x430c28(0x5fd)]){var _0x3cb118,_0x219225;let _0x2cc88f=_0x374d1f[_0x430c28(0x3a2)](_0x36129e[_0x430c28(0x690)]),_0x4ef96d=(_0x3cb118=_0x2cc88f==null?void 0x0:_0x2cc88f[_0x430c28(0x179)])==null?0x0:_0x3cb118,_0x1d2216=(_0x219225=_0x2cc88f==null?void 0x0:_0x2cc88f[_0x430c28(0x297)])==null?0x0:_0x219225;return{'left':(_0x2a0404-_0x4ef96d)*_0x199495,'top':(_0x1b8535-_0x1d2216)*_0x2c7cef,'width':_0x31ca06*_0x199495,'height':_0x353b15*_0x2c7cef,'angle':_0x14a7aa,'scaleX':_0x199495,'scaleY':_0x2c7cef};}let {domX:_0x57e4cd,domY:_0x3aa7d3}=_0x58fbaa(_0x2a0404,_0x1b8535,_0x374d1f,_0x41cfff,_0x36129e);return{'left':_0x57e4cd,'top':_0x3aa7d3,'width':_0x31ca06*_0x199495,'height':_0x353b15*_0x2c7cef,'angle':_0x14a7aa,'scaleX':_0x199495,'scaleY':_0x2c7cef};}function _0x55d844(_0xe0850c){const _0x9201d=_0x4e4756;let {editingParams:_0x2eb1d5,scene:_0x232900,skeleton:_0x2db12d,viewportKeys:_0x4c7e,getShapeTransform:_0x15db6f}=_0xe0850c,[_0x335432,_0xa2fa4b]=(0x0,_0x31b8c1['useState'])(_0x50cd40),_0x5d4fae=(0x0,_0x31b8c1['useRef'])(_0x335432);_0x5d4fae[_0x9201d(0x425)]=_0x335432;let _0x1c61fa=(0x0,_0x31b8c1[_0x9201d(0x797)])(()=>{const _0x1f5d47=_0x9201d;if(!_0x2eb1d5||!_0x232900){_0x5f3514(_0x5d4fae[_0x1f5d47(0x425)],_0x50cd40)||_0xa2fa4b(_0x50cd40);return;}let _0x566353=_0x15db6f();if(!_0x566353){_0x5f3514(_0x5d4fae[_0x1f5d47(0x425)],_0x50cd40)||_0xa2fa4b(_0x50cd40);return;}let {left:_0x12ad6a,top:_0x284552,width:_0x18e278,height:_0x3d1d57,angle:_0x3d9490}=_0x566353;if(!_0x2eb1d5[_0x1f5d47(0x5c1)]){let {scaleX:_0x5e9d50,scaleY:_0x4f4339}=_0x232900['getAncestorScale'](),_0x1b6569={'left':-0x270f,'top':-0x270f,'width':_0x18e278*_0x5e9d50,'height':_0x3d1d57*_0x4f4339,'angle':0x0,'scaleX':_0x5e9d50,'scaleY':_0x4f4339};_0xa2fa4b(_0x36d8fb=>_0x5f3514(_0x36d8fb,_0x1b6569)?_0x36d8fb:_0x1b6569);return;}let _0x4344d2=_0x224489(_0x12ad6a,_0x284552,_0x18e278,_0x3d1d57,_0x3d9490,_0x232900,_0x4c7e,_0x2db12d);_0xa2fa4b(_0x3ffa03=>_0x5f3514(_0x3ffa03,_0x4344d2)?_0x3ffa03:_0x4344d2);},[_0x2eb1d5,_0x232900,_0x2db12d,_0x4c7e,_0x15db6f]);return(0x0,_0x31b8c1[_0x9201d(0x76d)])(()=>{_0x1c61fa();},[_0x2eb1d5,_0x1c61fa]),{'position':_0x335432,'updatePosition':_0x1c61fa};}function _0x3d3de5(_0x4efe95){const _0x15c514=_0x4e4756;var _0xd8d678;let _0x8ea306=(_0xd8d678=_0x4efe95[_0x15c514(0x298)])==null?void 0x0:_0xd8d678[_0x15c514(0x61f)],_0x19e14e,_0xe06af9=!0x1;if(!_0x8ea306)return{'hasParagraphAlign':_0xe06af9,'isMixed':!0x1};for(let _0x28ba35 of _0x8ea306){var _0x31b711;let _0x20264e=(_0x31b711=_0x28ba35[_0x15c514(0x507)])==null?void 0x0:_0x31b711[_0x15c514(0xf4)];if(_0x20264e!==void 0x0){if(!_0xe06af9){_0x19e14e=_0x20264e,_0xe06af9=!0x0;continue;}if(_0x19e14e!==_0x20264e)return{'hasParagraphAlign':!0x0,'isMixed':!0x0};}}return{'horizontalAlign':_0x19e14e,'hasParagraphAlign':_0xe06af9,'isMixed':!0x1};}function _0x49313b(_0x5066e1,_0x45cd78={}){const _0x1adc0a=_0x4e4756;var _0x3be4dd,_0x267734,_0x2b59e1;let _0x3afc1f=(_0x3be4dd=_0x5066e1['documentStyle'])==null?void 0x0:_0x3be4dd['renderConfig'],_0x3c3702=_0x3d3de5(_0x5066e1);return{'horizontalAlign':_0x3c3702['hasParagraphAlign']?_0x3c3702['isMixed']?void 0x0:_0x3c3702[_0x1adc0a(0xf4)]:(_0x267734=_0x3afc1f==null?void 0x0:_0x3afc1f['horizontalAlign'])==null?_0x45cd78[_0x1adc0a(0xf4)]:_0x267734,'verticalAlign':(_0x2b59e1=_0x3afc1f==null?void 0x0:_0x3afc1f[_0x1adc0a(0x41f)])==null?_0x45cd78['verticalAlign']:_0x2b59e1};}function _0x102768(_0x497354,_0x5d72a7){const _0x3e682f=_0x4e4756;var _0x35c12c;let _0x26903f=(_0x35c12c=_0x497354[_0x3e682f(0x4de)])==null?{}:_0x35c12c,_0x50dbd3={..._0x26903f['renderConfig']};if(_0x5d72a7['verticalAlign']!==void 0x0&&(_0x50dbd3['verticalAlign']=_0x5d72a7[_0x3e682f(0x41f)]),_0x5d72a7['horizontalAlign']!==void 0x0){var _0x2383e5;_0x50dbd3[_0x3e682f(0xf4)]=_0x5d72a7[_0x3e682f(0xf4)];let _0x13234a=(_0x2383e5=_0x497354['body'])==null?void 0x0:_0x2383e5[_0x3e682f(0x61f)];if(_0x13234a){for(let _0x278d8b of _0x13234a)_0x278d8b[_0x3e682f(0x507)]={..._0x278d8b[_0x3e682f(0x507)],'horizontalAlign':_0x5d72a7['horizontalAlign']};}}_0x497354[_0x3e682f(0x4de)]={..._0x26903f,'renderConfig':Object[_0x3e682f(0x28b)](_0x50dbd3)['length']>0x0?_0x50dbd3:void 0x0};}function _0x3a666b(_0xdc0c64){const _0x331ecf=_0x4e4756;var _0x1c1dab,_0x31cf73,_0x54fe29,_0x20c165;let _0xc65f0a=(_0x1c1dab=(_0x31cf73=_0xdc0c64[_0x331ecf(0x298)])==null||(_0x31cf73=_0x31cf73[_0x331ecf(0x574)])==null?void 0x0:_0x31cf73[_0x331ecf(0x7cf)])==null?0x0:_0x1c1dab,_0x1e3b9c=(_0x54fe29=_0xdc0c64['body'])==null?void 0x0:_0x54fe29[_0x331ecf(0x421)];if(_0x1e3b9c!=null&&_0x1e3b9c[_0x331ecf(0x7cf)])for(let _0x26e612 of _0x1e3b9c){var _0x94f029;_0x26e612[_0x331ecf(0x687)]=(_0x94f029=_0x26e612[_0x331ecf(0x687)])==null?_0x2c5933[_0x331ecf(0x178)][_0x331ecf(0x1f1)]:_0x94f029;}else _0xdc0c64[_0x331ecf(0x298)]&&(_0xdc0c64[_0x331ecf(0x298)][_0x331ecf(0x421)]=[{'startIndex':Math['max'](0x0,_0xc65f0a-0x1),'gridType':_0x2c5933[_0x331ecf(0x178)][_0x331ecf(0x1f1)]}]);let _0x5e7735=(_0x20c165=_0xdc0c64[_0x331ecf(0x298)])==null?void 0x0:_0x20c165[_0x331ecf(0x61f)];if(_0x5e7735)for(let _0x17b951 of _0x5e7735){var _0x4158f6,_0x5b1a97,_0x271dff,_0x513969,_0x36abb4,_0x557815,_0x79d607,_0x3f9dc7;_0x17b951[_0x331ecf(0x507)]={..._0x17b951[_0x331ecf(0x507)],'lineSpacing':(_0x4158f6=(_0x5b1a97=_0x17b951[_0x331ecf(0x507)])==null?void 0x0:_0x5b1a97[_0x331ecf(0x68d)])==null?0x1:_0x4158f6,'snapToGrid':(_0x271dff=(_0x513969=_0x17b951[_0x331ecf(0x507)])==null?void 0x0:_0x513969[_0x331ecf(0x640)])==null?_0x2c5933[_0x331ecf(0x46c)][_0x331ecf(0x113)]:_0x271dff,'spaceAbove':(_0x36abb4=(_0x557815=_0x17b951[_0x331ecf(0x507)])==null?void 0x0:_0x557815[_0x331ecf(0x4a5)])==null?{'v':0x0}:_0x36abb4,'spaceBelow':(_0x79d607=(_0x3f9dc7=_0x17b951[_0x331ecf(0x507)])==null?void 0x0:_0x3f9dc7[_0x331ecf(0x225)])==null?{'v':0x0}:_0x79d607};}}function _0x4c2c44(_0x2e1e35){const _0xc74d7f=_0x4e4756;let _0x1cd002=_0x2e1e35[_0xc74d7f(0x298)],_0x494675=_0x1cd002==null?void 0x0:_0x1cd002[_0xc74d7f(0x61f)],_0x346ae2=_0x1cd002==null?void 0x0:_0x1cd002[_0xc74d7f(0x574)];if(!_0x1cd002||!(_0x494675!=null&&_0x494675[_0xc74d7f(0x7cf)])||!_0x346ae2)return;let _0x335142=[];for(let _0x56d441=0x0;_0x56d441<_0x346ae2['length'];_0x56d441++)_0x346ae2[_0x56d441]==='\x0d'&&_0x335142[_0xc74d7f(0x3a1)](_0x56d441);_0x335142[_0xc74d7f(0x7cf)]===_0x494675[_0xc74d7f(0x7cf)]&&(_0x1cd002[_0xc74d7f(0x61f)]=_0x494675[_0xc74d7f(0x217)]((_0xc31432,_0x2bccc1)=>({..._0xc31432,'startIndex':_0x335142[_0x2bccc1]})));}function _0x55c737(_0x1861fc,_0x29500e){const _0x1d55e3=_0x4e4756;var _0x45a631,_0x340ed9,_0x412ef3,_0x36676e,_0x246d9f,_0x244140,_0x4a6223,_0x5f0044,_0x3b781f,_0x556235,_0x2f9072;let {isHorizontal:_0x327abe,textRect:_0x5fc9c0}=_0x29500e,_0x3cfb42=_0x327abe?_0x5fc9c0[_0x1d55e3(0x56b)]:_0x5fc9c0[_0x1d55e3(0x157)],_0x4bcbe7=_0x2c5933[_0x1d55e3(0x5e0)]['deepClone'](_0x1861fc),_0x5a658f=(_0x45a631=_0x4bcbe7['documentStyle'])==null?{}:_0x45a631,_0x38103e={..._0x5a658f[_0x1d55e3(0x3d1)],'centerAngle':_0x327abe?0x0:_0x41cf52[_0x1d55e3(0x77f)],'vertexAngle':_0x327abe?0x0:_0x41cf52[_0x1d55e3(0x77f)],'wrapStrategy':(_0x340ed9=(_0x412ef3=_0x29500e[_0x1d55e3(0x4b4)])==null?(_0x36676e=_0x5a658f[_0x1d55e3(0x3d1)])==null?void 0x0:_0x36676e[_0x1d55e3(0x4b4)]:_0x412ef3)==null?_0x2c5933[_0x1d55e3(0x2f9)]['WRAP']:_0x340ed9,'zeroWidthParagraphBreak':(_0x246d9f=(_0x244140=_0x5a658f['renderConfig'])==null?void 0x0:_0x244140[_0x1d55e3(0x3a8)])==null?_0x2c5933['BooleanNumber'][_0x1d55e3(0x496)]:_0x246d9f,'shapeTextOpticalVerticalAlign':_0x327abe?(_0x4a6223=(_0x5f0044=_0x5a658f[_0x1d55e3(0x3d1)])==null?void 0x0:_0x5f0044[_0x1d55e3(0x112)])==null?_0x2c5933['BooleanNumber'][_0x1d55e3(0x496)]:_0x4a6223:_0x2c5933['BooleanNumber'][_0x1d55e3(0x113)]};_0x4bcbe7[_0x1d55e3(0x4de)]={..._0x5a658f,'documentFlavor':_0x2c5933[_0x1d55e3(0x625)][_0x1d55e3(0x35c)],'marginTop':0x0,'marginBottom':0x0,'marginLeft':0x0,'marginRight':0x0,'pageSize':{'width':_0x3cfb42,'height':0x1/0x0},'renderConfig':_0x38103e},_0x4c2c44(_0x4bcbe7),_0x3a666b(_0x4bcbe7);let _0x1f4853=_0x49313b(_0x4bcbe7,_0x29500e);return _0x102768(_0x4bcbe7,{'horizontalAlign':(_0x3b781f=_0x29500e[_0x1d55e3(0xf4)])==null?_0x1f4853[_0x1d55e3(0xf4)]:_0x3b781f,'verticalAlign':(_0x556235=_0x29500e[_0x1d55e3(0x41f)])==null?_0x1f4853[_0x1d55e3(0x41f)]:_0x556235}),(_0x2f9072=_0x4bcbe7[_0x1d55e3(0x4de)])==null||(_0x2f9072=_0x2f9072[_0x1d55e3(0x3d1)])==null||delete _0x2f9072[_0x1d55e3(0xf4)],_0x4bcbe7;}function _0xca9952(_0x389ee7,_0x5373ca={}){const _0x4b249f=_0x4e4756;var _0x4203a3,_0xa2b093,_0x23729d;let _0x226a16=_0x2c5933[_0x4b249f(0x5e0)][_0x4b249f(0x6ae)](_0x389ee7),_0x29d372=(_0x4203a3=_0x226a16[_0x4b249f(0x4de)])==null?{}:_0x4203a3,_0xcb7ec2={..._0x29d372['renderConfig']},_0x4703f0=_0x49313b(_0x226a16,_0x5373ca),_0x41237c=(_0xa2b093=_0x5373ca['horizontalAlign'])==null?_0x4703f0[_0x4b249f(0xf4)]:_0xa2b093,_0x39d7bf=(_0x23729d=_0x5373ca[_0x4b249f(0x41f)])==null?_0x4703f0[_0x4b249f(0x41f)]:_0x23729d;delete _0xcb7ec2[_0x4b249f(0x45a)],delete _0xcb7ec2['vertexAngle'],delete _0xcb7ec2[_0x4b249f(0x4b4)];let _0x239529=_0xcb7ec2[_0x4b249f(0x112)];return(_0x239529===_0x2c5933['BooleanNumber']['TRUE']||_0x239529===!0x0)&&delete _0xcb7ec2['shapeTextOpticalVerticalAlign'],_0x226a16[_0x4b249f(0x4de)]={..._0x29d372,'marginTop':0x0,'marginBottom':0x0,'marginLeft':0x0,'marginRight':0x0,'pageSize':{'width':0x1/0x0,'height':0x1/0x0},'renderConfig':Object[_0x4b249f(0x28b)](_0xcb7ec2)[_0x4b249f(0x7cf)]>0x0?_0xcb7ec2:void 0x0},_0x102768(_0x226a16,{'horizontalAlign':_0x41237c,'verticalAlign':_0x39d7bf}),_0x226a16;}function _0x57b2c0(_0x51a95e,_0x1a5555){const _0x4953d1=_0x4e4756;if(_0x51a95e==null||_0x1a5555==null)return!0x1;let {glyph:_0x39e5d4,..._0x3c92be}=_0x51a95e,{glyph:_0x2cc197,..._0x4e4c61}=_0x1a5555;return(0x0,_0x2c5933[_0x4953d1(0x3f9)])(_0x3c92be,_0x4e4c61);}var _0x1665b1=class extends _0x2c5933[_0x4e4756(0x6d0)]{constructor(_0x11e313,_0x35b006,_0x53f016,_0x364701,_0x4867e9,_0x2f66c9){const _0x805fed=_0x4e4756;super(),this[_0x805fed(0x3c4)]=_0x11e313,this[_0x805fed(0x5f7)]=_0x35b006,this[_0x805fed(0x1cb)]=_0x53f016,this['_componentManager']=_0x364701,this[_0x805fed(0x739)]=_0x4867e9,this['_config']=_0x2f66c9,_0x5753da(this,_0x805fed(0x757),null),this[_0x805fed(0x3c4)][_0x805fed(0x24c)]===this[_0x805fed(0x5cf)]['editorUnitId']&&(this[_0x805fed(0x417)](this[_0x805fed(0x70f)][_0x805fed(0x748)](this[_0x805fed(0x5cf)][_0x805fed(0x737)],this[_0x805fed(0x5cf)]['toolbarComponent'])),this[_0x805fed(0x204)](),this[_0x805fed(0x417)](()=>this[_0x805fed(0x264)]()));}[_0x4e4756(0x204)](){const _0x294d58=_0x4e4756;this[_0x294d58(0x417)](this['_docSelectionRenderService'][_0x294d58(0x1bf)][_0x294d58(0x15d)](()=>{const _0x30fd3c=_0x294d58;this[_0x30fd3c(0x264)]();})),this[_0x294d58(0x417)](this['_docSelectionManagerService'][_0x294d58(0x728)]['subscribe'](_0x489b06=>{const _0x3317fd=_0x294d58;var _0x4dfdf4,_0x327641;let {unitId:_0x390455,textRanges:_0x590e0c}=_0x489b06;if(_0x390455!==this[_0x3317fd(0x3c4)]['unitId'])return;let _0xf4505c=_0x590e0c['find'](_0x7f10ea=>!_0x7f10ea[_0x3317fd(0x515)]);if(!_0xf4505c){this[_0x3317fd(0x264)]();return;}_0xf4505c[_0x3317fd(0x170)]===((_0x4dfdf4=this[_0x3317fd(0x757)])==null?void 0x0:_0x4dfdf4['start'])&&_0xf4505c['endOffset']===((_0x327641=this[_0x3317fd(0x757)])==null?void 0x0:_0x327641[_0x3317fd(0x313)])||(this[_0x3317fd(0x264)](),this[_0x3317fd(0x166)](_0x390455,_0xf4505c));}));}[_0x4e4756(0x264)](){const _0x387ec6=_0x4e4756;var _0x33db98;(_0x33db98=this[_0x387ec6(0x757)])==null||_0x33db98[_0x387ec6(0x5dd)][_0x387ec6(0x23d)](),this[_0x387ec6(0x757)]=null;}[_0x4e4756(0x166)](_0x2314e9,_0x276914){const _0x3ffdbe=_0x4e4756;this[_0x3ffdbe(0x757)]={'disposable':this[_0x3ffdbe(0x1cb)][_0x3ffdbe(0x18a)](_0x276914,{'componentKey':this[_0x3ffdbe(0x5cf)][_0x3ffdbe(0x737)],'direction':_0x276914[_0x3ffdbe(0x5c4)]==='backward'||_0x57b2c0(_0x276914[_0x3ffdbe(0x77a)],_0x276914[_0x3ffdbe(0x31b)])?_0x3ffdbe(0x418):_0x3ffdbe(0x65b),'offset':[0x0,0x4]},_0x2314e9),'start':_0x276914[_0x3ffdbe(0x170)],'end':_0x276914['endOffset']};}};function _0x1ee041(_0x1c251b,_0x33b303){const _0x46eb42=_0x4e4756;return Math[_0x46eb42(0x568)](_0x1c251b[_0x46eb42(0x618)]-_0x33b303['editorLeft'])<=0.001&&Math[_0x46eb42(0x568)](_0x1c251b[_0x46eb42(0x33e)]-_0x33b303['editorTop'])<=0.001&&Math[_0x46eb42(0x568)](_0x1c251b['editorWidth']-_0x33b303['editorWidth'])<=0.001&&Math[_0x46eb42(0x568)](_0x1c251b['editorHeight']-_0x33b303[_0x46eb42(0x4ae)])<=0.001;}function _0x1779c6(_0xe6e618){const _0x13dbd1=_0x4e4756;return _0xe6e618===!0x0||_0xe6e618===_0x2c5933[_0x13dbd1(0x46c)][_0x13dbd1(0x496)];}function _0x1b4163(_0x3cced4){const _0x3b54ec=_0x4e4756;return typeof(_0x3cced4==null?void 0x0:_0x3cced4[_0x3b54ec(0x55c)])==_0x3b54ec(0x6b9)&&_0x3cced4[_0x3b54ec(0x55c)][_0x3b54ec(0x571)]()[_0x3b54ec(0x7cf)]>0x0;}function _0x23cacc(_0x3a7ee9,_0x357f24,_0x2fb71b){const _0x257e2f=_0x4e4756;var _0x2793d4;if(_0x2fb71b===void 0x0||_0x2fb71b===_0x2c5933[_0x257e2f(0x35d)]['UNSPECIFIED'])return 0x0;let _0x53c84e=_0x3a7ee9[_0x257e2f(0x36e)]();if(!(!(_0x53c84e==null||(_0x2793d4=_0x53c84e[_0x257e2f(0x525)])==null)&&_0x2793d4[_0x257e2f(0x7cf)]))return 0x0;let _0x515651=0x1/0x0,_0x4223b8=-0x1/0x0,_0x5dcbb6=0x0;for(let _0x15b2fc of _0x53c84e[_0x257e2f(0x525)]){var _0x278209,_0xf00a4;let _0x26d0b1=(_0x278209=_0x15b2fc[_0x257e2f(0x15a)])==null?0x0:_0x278209;for(let _0x4e3d6b of(_0xf00a4=_0x15b2fc[_0x257e2f(0x293)])==null?[]:_0xf00a4){var _0x2e1ab4,_0x5c0763;let _0x1a819f=(_0x2e1ab4=_0x4e3d6b['top'])==null?0x0:_0x2e1ab4;for(let _0x1e3c91 of(_0x5c0763=_0x4e3d6b[_0x257e2f(0x408)])==null?[]:_0x5c0763){var _0x52e447;for(let _0x4ae747 of(_0x52e447=_0x1e3c91['lines'])==null?[]:_0x52e447){var _0x2885b2,_0x141c0d,_0x292225,_0x229f2c,_0x1bf6eb;let _0x428fd4=_0x5dcbb6+_0x26d0b1+_0x1a819f+((_0x2885b2=_0x4ae747[_0x257e2f(0x5b2)])==null?0x0:_0x2885b2)+((_0x141c0d=_0x4ae747['marginTop'])==null?0x0:_0x141c0d)+((_0x292225=_0x4ae747['paddingTop'])==null?0x0:_0x292225)+((_0x229f2c=_0x4ae747[_0x257e2f(0x504)])==null?0x0:_0x229f2c);for(let _0x46a948 of(_0x1bf6eb=_0x4ae747[_0x257e2f(0x653)])==null?[]:_0x1bf6eb){var _0x47c37d;for(let _0x6b5fa9 of(_0x47c37d=_0x46a948['glyphGroup'])==null?[]:_0x47c37d){var _0x2ec95d,_0x133f28,_0x156cc6,_0x218257;_0x1b4163(_0x6b5fa9)&&(_0x515651=Math['min'](_0x515651,_0x428fd4-((_0x2ec95d=(_0x133f28=_0x6b5fa9[_0x257e2f(0x26a)])==null?void 0x0:_0x133f28[_0x257e2f(0x399)])==null?0x0:_0x2ec95d)),_0x4223b8=Math[_0x257e2f(0x206)](_0x4223b8,_0x428fd4+((_0x156cc6=(_0x218257=_0x6b5fa9['bBox'])==null?void 0x0:_0x218257[_0x257e2f(0x520)])==null?0x0:_0x156cc6)));}}}}}let _0x2c31e8=Number['isFinite'](_0x15b2fc['pageHeight'])?_0x15b2fc['pageHeight']:_0x15b2fc[_0x257e2f(0x157)];_0x5dcbb6+=_0x2c31e8==null?0x0:_0x2c31e8;}return!Number['isFinite'](_0x515651)||!Number['isFinite'](_0x4223b8)?0x0:_0x2fb71b===_0x2c5933[_0x257e2f(0x35d)]['BOTTOM']?_0x357f24-_0x4223b8:_0x2fb71b===_0x2c5933['VerticalAlign'][_0x257e2f(0x554)]?_0x357f24/0x2-(_0x515651+_0x4223b8)/0x2:_0x2fb71b===_0x2c5933[_0x257e2f(0x35d)][_0x257e2f(0x1ca)]?-_0x515651:0x0;}function _0x4efac0(_0x3bdcbd){const _0x333c91=_0x4e4756;let {editorUnitId:_0x70e272,editingParams:_0xe7030a}=_0x3bdcbd;return _0xe7030a?[_0x70e272,_0xe7030a[_0x333c91(0x24c)],_0xe7030a[_0x333c91(0x39f)],_0xe7030a[_0x333c91(0x5bb)],_0xe7030a['shapeKey'],_0xe7030a[_0x333c91(0x5c1)]?_0x333c91(0x5c1):_0x333c91(0x7c2)]['join']('|'):null;}function _0xd90908(_0x53f00c){const _0x1f70af=_0x4e4756;var _0x282bf4,_0x40aa5a;let _0x4a0b73=_0x53f00c;return(_0x4a0b73==null?void 0x0:_0x4a0b73['textWrap'])===_0x1f70af(0x539)?_0x2c5933[_0x1f70af(0x2f9)][_0x1f70af(0x6a3)]:(_0x4a0b73==null?void 0x0:_0x4a0b73[_0x1f70af(0x426)])==='square'||(_0x282bf4=_0x4a0b73==null||(_0x40aa5a=_0x4a0b73['dataModel'])==null||(_0x40aa5a=_0x40aa5a[_0x1f70af(0x14c)])==null||(_0x40aa5a=_0x40aa5a['documentStyle'])==null||(_0x40aa5a=_0x40aa5a[_0x1f70af(0x3d1)])==null?void 0x0:_0x40aa5a[_0x1f70af(0x4b4)])==null?_0x2c5933[_0x1f70af(0x2f9)][_0x1f70af(0x1c9)]:_0x282bf4;}function _0x43c15c(_0x58558c){const _0xaaa871=_0x4e4756;var _0xe4436b;let _0x1c59e2=(_0xe4436b=_0x58558c[_0xaaa871(0x612)])==null?0x1:_0xe4436b;return Math[_0xaaa871(0x568)](_0x58558c[_0xaaa871(0x329)]-_0x58558c[_0xaaa871(0x19f)])>_0x1c59e2||Math[_0xaaa871(0x568)](_0x58558c[_0xaaa871(0x202)]-_0x58558c[_0xaaa871(0x1c4)])>_0x1c59e2;}function _0x3704cb(_0x54af66){const _0x40938a=_0x4e4756;var _0xfc5322,_0xdd5c17;let {adapter:_0x1f0e43,editingParams:_0x386b5e}=_0x54af66;return!_0x1f0e43[_0x40938a(0x706)]||!_0x386b5e?!0x1:(_0xfc5322=(_0xdd5c17=_0x1f0e43[_0x40938a(0x164)])==null?void 0x0:_0xdd5c17[_0x40938a(0x234)](_0x1f0e43,_0x386b5e))==null?!0x0:_0xfc5322;}function _0x1b60ef(_0x1df269){const _0x123b8e=_0x4e4756;return _0x1df269['opticalVerticalAlign']?_0x2c5933[_0x123b8e(0x35d)]['TOP']:_0x1df269[_0x123b8e(0x41f)];}function _0x3a99b4(_0xcee607){const _0x2e5b94=_0x4e4756;let {actualHeight:_0x30abff,opticalVerticalOffset:_0x4c9040,scaleX:_0x3f93b8,scaleY:_0x39ee7d,textRect:_0x17e955,verticalAlign:_0x59c273}=_0xcee607,_0x4eb232=Math[_0x2e5b94(0x206)](0x1,_0x17e955['height']),_0x24f359=Math['max'](_0x4eb232,_0x30abff),_0x532fe5=0x0,_0xe36528=0x0;return _0x4c9040===void 0x0?_0x30abff<=_0x4eb232?_0x59c273===_0x2c5933[_0x2e5b94(0x35d)]['MIDDLE']?_0xe36528=(_0x4eb232-_0x30abff)/0x2:_0x59c273===_0x2c5933[_0x2e5b94(0x35d)][_0x2e5b94(0x404)]&&(_0xe36528=_0x4eb232-_0x30abff):_0x59c273===_0x2c5933[_0x2e5b94(0x35d)][_0x2e5b94(0x554)]?_0x532fe5=(_0x4eb232-_0x30abff)/0x2:_0x59c273===_0x2c5933[_0x2e5b94(0x35d)][_0x2e5b94(0x404)]&&(_0x532fe5=_0x4eb232-_0x30abff):_0x4c9040<0x0?_0x532fe5=_0x4c9040:_0xe36528=_0x4c9040,{'documentMarginTop':_0xe36528,'editorLeft':Math['max'](0x0,_0x17e955[_0x2e5b94(0x5fd)])*_0x3f93b8,'editorTop':(Math[_0x2e5b94(0x206)](0x0,_0x17e955['top'])+_0x532fe5)*_0x39ee7d,'editorWidth':Math[_0x2e5b94(0x206)](0x1,_0x17e955[_0x2e5b94(0x56b)])*_0x3f93b8,'editorHeight':_0x24f359*_0x39ee7d,'pageHeight':_0x24f359};}function _0xa62823(_0x4bd086){const _0x3ddb0a=_0x4e4756;let {allowShrink:_0x45daac=!0x1,hostWidth:_0x203cca,hostHeight:_0x47adcc,textRect:_0x24ec22,contentWidth:_0xb9a738,contentHeight:_0x4d6e94}=_0x4bd086,_0x6e716f=Number[_0x3ddb0a(0x395)](_0x203cca)&&_0x203cca>0x0?_0x203cca:0x1,_0x44c114=Number[_0x3ddb0a(0x395)](_0x47adcc)&&_0x47adcc>0x0?_0x47adcc:0x1,_0x5e3fab=Math[_0x3ddb0a(0x206)](0x0,_0x24ec22['left']),_0x58849f=Math[_0x3ddb0a(0x206)](0x0,_0x24ec22['top']),_0x56fc42=Math['max'](0x1,_0x24ec22[_0x3ddb0a(0x56b)]),_0x43fa74=Math[_0x3ddb0a(0x206)](0x1,_0x24ec22[_0x3ddb0a(0x157)]),_0x390676=Math[_0x3ddb0a(0x206)](0x0,_0x6e716f-_0x5e3fab-_0x56fc42),_0x4dddce=Math[_0x3ddb0a(0x206)](0x0,_0x44c114-_0x58849f-_0x43fa74),_0x156e8c=Math['max'](0x1,_0x45daac?_0xb9a738:Math[_0x3ddb0a(0x206)](_0x56fc42,_0xb9a738)),_0x3f5a71=Math[_0x3ddb0a(0x206)](0x1,_0x45daac?_0x4d6e94:Math['max'](_0x43fa74,_0x4d6e94)),_0x5b5895=Math[_0x3ddb0a(0x120)](_0x5e3fab+_0x156e8c+_0x390676),_0x455c29=Math['ceil'](_0x58849f+_0x3f5a71+_0x4dddce);return{'width':_0x45daac?_0x5b5895:Math['max'](_0x6e716f,_0x5b5895),'height':_0x45daac?_0x455c29:Math[_0x3ddb0a(0x206)](_0x44c114,_0x455c29)};}function _0x32b8b2(_0x23f00f,_0x3269a8,_0x557242,_0x3d02fe){const _0x3cf2b6=_0x4e4756;return{'top':_0x3d02fe===void 0x0?0x0:_0x3269a8,'left':_0x557242===void 0x0?0x0:_0x23f00f,'width':_0x557242==null?_0x23f00f:_0x557242,'height':_0x3d02fe==null?_0x3269a8:_0x3d02fe,'borderColor':_0x3cf2b6(0x1e7),'outlineColor':'transparent','backgroundColor':_0x3cf2b6(0x1e7)};}function _0x382e09(_0x578449,..._0x47ba4e){const _0x3d3c31=_0x4e4756;_0x578449[_0x3d3c31(0x62b)](..._0x47ba4e),_0x578449[_0x3d3c31(0x467)]();}function _0x159502(_0x380f10){const _0x1f7b5e=_0x4e4756;var _0x42c2e1,_0x4976e0;let _0x54de6b=_0x380f10==null||(_0x42c2e1=_0x380f10['engine'])==null||(_0x4976e0=_0x42c2e1[_0x1f7b5e(0x12f)])==null?void 0x0:_0x4976e0[_0x1f7b5e(0x234)](_0x42c2e1);_0x54de6b&&(_0x54de6b['style']['backgroundColor']='transparent');}function _0x38b8f9(_0x39f2ff){const _0x5517e4=_0x4e4756;var _0x2424bc,_0x459149;let _0x524f41=_0x479b56=>{const _0x1553d9=_0x539c;if(!_0x479b56||typeof _0x479b56!=_0x1553d9(0x165))return;let _0x239138=_0x479b56;_0x239138[_0x1553d9(0xf1)]!==void 0x0&&(_0x239138['pageMarginLeft']=0x0),_0x239138[_0x1553d9(0x4ad)]!==void 0x0&&(_0x239138[_0x1553d9(0x4ad)]=0x0);};_0x524f41(_0x39f2ff==null?void 0x0:_0x39f2ff[_0x5517e4(0x71d)]),_0x39f2ff==null||(_0x2424bc=_0x39f2ff[_0x5517e4(0x760)])==null||(_0x459149=_0x2424bc['forEach'])==null||_0x459149[_0x5517e4(0x234)](_0x2424bc,_0x524f41);}function _0x483948(_0x5d7bbf,_0x205ef5){const _0x478973=_0x4e4756;let _0x3bce5a=_0x100e66[_0x478973(0x187)][_0x478973(0x6f2)],_0x1dfe96=_0x100e66[_0x478973(0x187)]['CTRL_COMMAND']|_0x100e66[_0x478973(0x187)]['SHIFT'];return{'keyCodes':[{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x7dc)]},{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x384)]},{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x506)]},{'keyCode':_0x100e66[_0x478973(0x316)]['A'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['B'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['I'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66['KeyCode']['U'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['X'],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)]['COMMA'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x140)],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['L'],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)]['R'],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)]['E'],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)]['J'],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x6be)],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)][_0x478973(0x4a1)],'metaKey':_0x1dfe96},{'keyCode':_0x100e66[_0x478973(0x316)]['Z'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['Y'],'metaKey':_0x3bce5a},{'keyCode':_0x100e66[_0x478973(0x316)]['Z'],'metaKey':_0x1dfe96}],'handler':(_0x3d80c2,_0x1747a9)=>{const _0x4330c7=_0x478973;switch(_0x3d80c2+':'+(_0x1747a9==null?0x0:_0x1747a9)){case _0x100e66[_0x4330c7(0x316)][_0x4330c7(0x7dc)]+':0':_0x5d7bbf['executeCommand'](_0xadbe38[_0x4330c7(0x78c)]['id']);break;case _0x100e66[_0x4330c7(0x316)][_0x4330c7(0x384)]+':0':_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x2a7)]['id']);break;case _0x100e66[_0x4330c7(0x316)][_0x4330c7(0x506)]+':0':_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x228)]['id']);break;case _0x100e66[_0x4330c7(0x316)]['A']+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x4ac)]['id']);break;case _0x100e66['KeyCode']['B']+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38['SetInlineFormatBoldCommand']['id']);break;case _0x100e66['KeyCode']['I']+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38['SetInlineFormatItalicCommand']['id']);break;case _0x100e66[_0x4330c7(0x316)]['U']+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x245)]['id']);break;case _0x100e66['KeyCode']['X']+':'+_0x1dfe96:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x4d9)]['id']);break;case _0x100e66[_0x4330c7(0x316)][_0x4330c7(0x54f)]+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x6b8)]['id']);break;case _0x100e66[_0x4330c7(0x316)][_0x4330c7(0x140)]+':'+_0x3bce5a:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x1d3)]['id']);break;case _0x100e66[_0x4330c7(0x316)]['L']+':'+_0x1dfe96:_0x5d7bbf['executeCommand'](_0xadbe38[_0x4330c7(0x33b)]['id']);break;case _0x100e66['KeyCode']['R']+':'+_0x1dfe96:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x763)]['id']);break;case _0x100e66[_0x4330c7(0x316)]['E']+':'+_0x1dfe96:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x521)]['id']);break;case _0x100e66[_0x4330c7(0x316)]['J']+':'+_0x1dfe96:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38['AlignJustifyCommand']['id']);break;case _0x100e66['KeyCode'][_0x4330c7(0x6be)]+':'+_0x1dfe96:_0x5d7bbf['executeCommand'](_0xadbe38[_0x4330c7(0x517)]['id']);break;case _0x100e66['KeyCode']['Digit8']+':'+_0x1dfe96:_0x5d7bbf[_0x4330c7(0x18f)](_0xadbe38[_0x4330c7(0x3e4)]['id']);break;case _0x100e66[_0x4330c7(0x316)]['Z']+':'+_0x3bce5a:_0x205ef5?_0x205ef5(_0x2c5933[_0x4330c7(0x721)]['id']):_0x5d7bbf[_0x4330c7(0x18f)](_0x2c5933[_0x4330c7(0x721)]['id']);break;case _0x100e66['KeyCode']['Y']+':'+_0x3bce5a:case _0x100e66['KeyCode']['Z']+':'+_0x1dfe96:_0x205ef5?_0x205ef5(_0x2c5933[_0x4330c7(0x3dd)]['id']):_0x5d7bbf[_0x4330c7(0x18f)](_0x2c5933[_0x4330c7(0x3dd)]['id']);break;}}};}let _0x338c95=function(_0x2d57ec){const _0x3c4dbd=_0x4e4756;let {adapter:_0x1f487c,containerWidth:_0x4f8a30,containerHeight:_0x96cb4e,editingParams:_0x3ad6ce,editingService:_0x4d5faa,editorUnitId:_0x4cad9a,scaleX:_0x4c44ff,scaleY:_0x1060e7,verticalAlignCommandId:_0x2b4e62}=_0x2d57ec,_0x5a634d=_0x4c44ff||0x1,_0x3b01a0=_0x1060e7||0x1,_0x231fdb=(0x0,_0x100e66[_0x3c4dbd(0x644)])(_0xadbe38['IEditorService']),_0x5b398f=(0x0,_0x100e66[_0x3c4dbd(0x644)])(_0x41cf52[_0x3c4dbd(0x3e7)]),_0x39fbe3=(0x0,_0x100e66[_0x3c4dbd(0x644)])(_0x2c5933[_0x3c4dbd(0x1b4)]),_0x32e7ab=(0x0,_0x100e66[_0x3c4dbd(0x644)])(_0x2c5933[_0x3c4dbd(0x7d8)]),_0xbfeb74=(0x0,_0x100e66['useObservable'])(_0x4d5faa[_0x3c4dbd(0x4c5)]),_0x21ccb0=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x3e2b26=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x1059b1=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x16f466=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x14fbeb=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x436005=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(null),_0x2ff020=(0x0,_0x31b8c1['useRef'])({'width':0x0,'height':0x0}),_0x13be8c=(0x0,_0x31b8c1['useRef'])(()=>{}),_0x45184e=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(()=>{}),_0x104190=(0x0,_0x31b8c1[_0x3c4dbd(0x276)])(()=>{}),[_0x385248,_0x574c77]=(0x0,_0x31b8c1['useState'])({'editorLeft':0x0,'editorTop':0x0,'editorWidth':_0x4f8a30,'editorHeight':_0x96cb4e}),_0x131321=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])(_0x20f842=>{queueMicrotask(()=>{_0x574c77(_0x13a5d9=>_0x1ee041(_0x13a5d9,_0x20f842)?_0x13a5d9:_0x20f842);});},[]),_0x26471a=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])(()=>_0x39fbe3['getUnit'](_0x4cad9a,_0x2c5933['UniverInstanceType'][_0x3c4dbd(0x197)]),[_0x4cad9a,_0x39fbe3]),_0x33bb77=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])(()=>{const _0xd61174=_0x3c4dbd;var _0x13b5c5;let _0x54bffd=_0x5a634d,_0x2a2d6c=_0x3b01a0;if(!_0x3ad6ce)return{'scaleAdjust':0x1,'renderScaleX':_0x54bffd,'renderScaleY':_0x2a2d6c};let _0x26a647=_0x5b398f[_0xd61174(0x442)](_0x3ad6ce[_0xd61174(0x24c)]),_0x17ed90=_0x26a647==null?void 0x0:_0x26a647[_0xd61174(0x619)]['getAncestorScale'](),_0x61f374=_0x26a647==null?void 0x0:_0x26a647[_0xd61174(0x4bc)][_0xd61174(0x12f)](),_0x2c2146=_0x61f374?Number[_0xd61174(0x1da)](_0x61f374[_0xd61174(0x5b0)][_0xd61174(0x56b)]||''):0x0,_0x537cb0=(_0x13b5c5=_0x61f374==null?void 0x0:_0x61f374[_0xd61174(0x2dd)]()['width'])==null?0x0:_0x13b5c5,_0x3dedcb=_0x2c2146>0x0&&_0x537cb0>0x0?_0x537cb0/_0x2c2146:0x1;return{'scaleAdjust':Number['isFinite'](_0x3dedcb)&&_0x3dedcb>0x0?_0x3dedcb:0x1,'renderScaleX':(_0x17ed90==null?void 0x0:_0x17ed90[_0xd61174(0x76b)])||_0x54bffd,'renderScaleY':(_0x17ed90==null?void 0x0:_0x17ed90['scaleY'])||_0x2a2d6c};},[_0x5a634d,_0x3b01a0,_0x3ad6ce,_0x5b398f]),_0x5d01c5=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])(()=>{const _0x2f2691=_0x3c4dbd;if(!_0x3ad6ce)return{'left':0x0,'top':0x0,'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0};let {unitId:_0x65922d,subUnitId:_0x5968d9,shapeId:_0x13a02d}=_0x3ad6ce,_0x21d594=_0x1f487c[_0x2f2691(0x3ba)](_0x65922d,_0x5968d9,_0x13a02d);if(!_0x21d594)return{'left':0x0,'top':0x0,'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0};let _0x2af820={'left':0x0,'top':0x0,'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0};return _0x21d594['getShapeTextRect'](_0x2af820);},[_0x1f487c,_0x3ad6ce,_0x4f8a30,_0x96cb4e,_0x5a634d,_0x3b01a0]),_0x405da8=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])(()=>{const _0x226b0c=_0x3c4dbd;var _0x3aaeed;if(!_0x3ad6ce)return null;let {unitId:_0x1cd449,subUnitId:_0x401f9c,shapeId:_0x1b721d}=_0x3ad6ce,_0x5353fd=_0x1f487c[_0x226b0c(0x3ba)](_0x1cd449,_0x401f9c,_0x1b721d);if(!_0x5353fd)return null;let _0x38a6f1=_0x5353fd[_0x226b0c(0x28f)]();if(!_0x38a6f1)return null;let _0x35fd3f=(_0x3aaeed=_0x1f487c[_0x226b0c(0x33d)](_0x1cd449,_0x401f9c,_0x1b721d))==null?{'angle':0x0,'flipX':!0x1,'flipY':!0x1}:_0x3aaeed,_0x3aba1e={'left':0x0,'top':0x0,'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0},_0x297558=_0x5353fd['getShapeTextRect'](_0x3aba1e),_0x35eb11,_0x5409aa=_0x2c5933['VerticalAlign'][_0x226b0c(0x1ca)],_0x48f031=_0x2c5933[_0x226b0c(0x673)][_0x226b0c(0x7a8)];if('dataModel'in _0x38a6f1&&_0x38a6f1['dataModel']){var _0x59a0b2,_0x1421b6,_0x4f0417,_0x41bcfc,_0x3e3063,_0x53bdea;let _0x1e7882=_0x38a6f1[_0x226b0c(0x36d)];_0x1e7882!=null&&_0x1e7882[_0x226b0c(0x14c)]&&(_0x35eb11=_0x1e7882[_0x226b0c(0x14c)]),_0x5409aa=(_0x59a0b2=(_0x1421b6=_0x1e7882==null?void 0x0:_0x1e7882['va'])==null?_0x35eb11==null||(_0x4f0417=_0x35eb11['documentStyle'])==null||(_0x4f0417=_0x4f0417[_0x226b0c(0x3d1)])==null?void 0x0:_0x4f0417[_0x226b0c(0x41f)]:_0x1421b6)==null?_0x2c5933[_0x226b0c(0x35d)][_0x226b0c(0x1ca)]:_0x59a0b2,_0x48f031=(_0x41bcfc=(_0x3e3063=_0x1e7882==null?void 0x0:_0x1e7882['ha'])==null?_0x35eb11==null||(_0x53bdea=_0x35eb11[_0x226b0c(0x4de)])==null||(_0x53bdea=_0x53bdea['renderConfig'])==null?void 0x0:_0x53bdea['horizontalAlign']:_0x3e3063)==null?_0x2c5933['HorizontalAlign'][_0x226b0c(0x7a8)]:_0x41bcfc;}return{'doc':_0x35eb11,'verticalAlign':_0x5409aa,'horizontalAlign':_0x48f031,'wrapStrategy':_0xd90908(_0x38a6f1),'textRect':_0x297558,'transform':_0x35fd3f,'isHorizontal':_0x38a6f1[_0x226b0c(0x12d)]};},[_0x1f487c,_0x3ad6ce,_0x4f8a30,_0x96cb4e,_0x5a634d,_0x3b01a0]),_0x456054=(0x0,_0x31b8c1[_0x3c4dbd(0x5d7)])(()=>{const _0x5d9dd3=_0x3c4dbd;let _0x1e707e=_0x405da8();return _0x1e707e!=null&&_0x1e707e[_0x5d9dd3(0x14c)]?_0x55c737(_0x1e707e[_0x5d9dd3(0x14c)],{'isHorizontal':!0x0,'textRect':_0x1e707e[_0x5d9dd3(0x39d)],'verticalAlign':_0x1e707e[_0x5d9dd3(0x41f)],'horizontalAlign':_0x1e707e[_0x5d9dd3(0xf4)],'wrapStrategy':_0x1e707e['wrapStrategy']}):{'id':_0x4cad9a,'body':{'dataStream':'\x0d\x0a','textRuns':[],'paragraphs':[{'startIndex':0x0,'paragraphId':(0x0,_0x2c5933['createParagraphId'])(new Set())}]},'documentStyle':{'pageSize':{'width':_0x4f8a30/_0x5a634d,'height':0x1/0x0}}};},[_0x405da8,_0x4f8a30,_0x5a634d]),_0x330410=(0x0,_0xadbe38[_0x3c4dbd(0x675)])({'editorId':_0x4cad9a,'initialValue':_0x456054,'container':_0x3e2b26,'autoFocus':!0x1,'canvasStyle':{'backgroundColor':_0x3c4dbd(0x1e7)},'isSingle':!0x1});(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>{const _0x337c0e=_0x3c4dbd;if(!_0x330410)return;let _0x175e9d=_0x5b398f[_0x337c0e(0x442)](_0x4cad9a);_0x159502(_0x175e9d),_0x38b8f9(_0x175e9d);},[_0x330410,_0x4cad9a,_0x5b398f]);let _0x4f29ca=(0x0,_0xadbe38[_0x3c4dbd(0x74f)])(_0x4cad9a);(0x0,_0xadbe38[_0x3c4dbd(0x4b3)])(_0x4f29ca,(0x0,_0x31b8c1[_0x3c4dbd(0x5d7)])(()=>_0x483948(_0x32e7ab,_0x1909d2=>{const _0x5bb3bf=_0x3c4dbd;(0x0,_0xadbe38[_0x5bb3bf(0x7d7)])({'commandId':_0x1909d2,'commandService':_0x32e7ab,'editorUnitId':_0x4cad9a,'univerInstanceService':_0x39fbe3});}),[_0x32e7ab,_0x4cad9a,_0x39fbe3]),_0x330410),(0x0,_0xadbe38['useLeftAndRightArrow'])(_0x4f29ca,!0x1,_0x330410),(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>{const _0x442625=_0x3c4dbd;_0x2ff020[_0x442625(0x425)]=_0x3ad6ce?{'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0}:{'width':0x0,'height':0x0};},[_0x4f8a30,_0x96cb4e,_0x5a634d,_0x3b01a0,_0x3ad6ce==null?void 0x0:_0x3ad6ce[_0x3c4dbd(0x5bb)]]);let _0xd20422=(0x0,_0x31b8c1[_0x3c4dbd(0x797)])((_0x55c65a=!0x0)=>{const _0x46d47b=_0x3c4dbd;var _0x729c44,_0x140334,_0x4896ee;if(!_0x330410)return;let _0x44801c=_0x330410['getSelectionRanges']()[_0x46d47b(0x2e8)](_0xef0e86=>_0xef0e86['collapsed']),_0x955f79=((_0x729c44=(_0x140334=_0x330410[_0x46d47b(0x7b3)]()[_0x46d47b(0x298)])==null?void 0x0:_0x140334[_0x46d47b(0x574)][_0x46d47b(0x7cf)])==null?0x2:_0x729c44)-0x2,_0x2b8bdc=(_0x4896ee=_0x44801c==null?void 0x0:_0x44801c['startOffset'])==null?_0x55c65a?_0x955f79:null:_0x4896ee;_0x2b8bdc!==null&&_0x330410[_0x46d47b(0x37e)]([{'startOffset':_0x2b8bdc,'endOffset':_0x2b8bdc}],!0x1);},[_0x330410]);_0x45184e['current']=_0xd20422;let _0xaefd39=(0x0,_0x31b8c1['useCallback'])(()=>{const _0x475238=_0x3c4dbd;_0x14fbeb[_0x475238(0x425)]!==null&&(cancelAnimationFrame(_0x14fbeb[_0x475238(0x425)]),_0x14fbeb[_0x475238(0x425)]=null),_0x436005[_0x475238(0x425)]!==null&&(window['clearTimeout'](_0x436005['current']),_0x436005[_0x475238(0x425)]=null);},[]),_0x28da19=(0x0,_0x31b8c1['useCallback'])(()=>{const _0x47a4bc=_0x3c4dbd;var _0x4e8ddf,_0x48f784,_0x326310,_0x57dcb9,_0x255f0a;if(!_0x330410)return;let _0x28f40b=_0x5b398f[_0x47a4bc(0x442)](_0x4cad9a);_0x38b8f9(_0x28f40b);let _0x3851bf=_0x28f40b==null?void 0x0:_0x28f40b['with'](_0x58cd82[_0x47a4bc(0x4fe)]);if(!_0x3851bf)return;let _0x110f85=_0x3851bf[_0x47a4bc(0x69e)](),_0x22f840=_0x26471a(),{renderScaleX:_0xafc617,renderScaleY:_0x1d7b62,scaleAdjust:_0x425e97}=_0x33bb77(),_0x5058d7=_0x405da8(),_0x4cc7a9=(_0x4e8ddf=_0x5058d7==null?void 0x0:_0x5058d7[_0x47a4bc(0x41f)])==null?_0x2c5933['VerticalAlign']['TOP']:_0x4e8ddf,_0x5d75dc=(_0x48f784=_0x5058d7==null?void 0x0:_0x5058d7[_0x47a4bc(0xf4)])==null?_0x2c5933[_0x47a4bc(0x673)][_0x47a4bc(0x7a8)]:_0x48f784,_0x4d53a3=(_0x326310=_0x5058d7==null?void 0x0:_0x5058d7[_0x47a4bc(0x4b4)])==null?_0x2c5933[_0x47a4bc(0x2f9)][_0x47a4bc(0x1c9)]:_0x326310,_0x35f754=(_0x57dcb9=_0x5d01c5())==null?{'left':0x0,'top':0x0,'width':_0x4f8a30/_0x5a634d,'height':_0x96cb4e/_0x3b01a0}:_0x57dcb9,_0x406346=!0x1;if(_0x22f840){var _0x2402a0;_0x406346=_0x1779c6((_0x2402a0=_0x22f840[_0x47a4bc(0x6af)]()[_0x47a4bc(0x4de)])==null||(_0x2402a0=_0x2402a0[_0x47a4bc(0x3d1)])==null?void 0x0:_0x2402a0[_0x47a4bc(0x112)]),_0x22f840[_0x47a4bc(0x1b5)](Math[_0x47a4bc(0x206)](_0xafc617,_0x1d7b62)),_0x22f840[_0x47a4bc(0x356)]({'marginLeft':0x0,'marginRight':0x0,'marginBottom':0x0,'pageSize':{'width':_0x35f754['width'],'height':0x1/0x0}}),_0x22f840['updateDocumentRenderConfig']({'verticalAlign':_0x1b60ef({'opticalVerticalAlign':_0x406346,'verticalAlign':_0x4cc7a9}),'horizontalAlign':_0x5d75dc,'centerAngle':0x0,'vertexAngle':0x0,'wrapStrategy':_0x4d53a3}),_0x22f840[_0x47a4bc(0x174)]({'t':0x0});}(_0x255f0a=_0x110f85[_0x47a4bc(0x2cf)])==null||_0x255f0a[_0x47a4bc(0x234)](_0x110f85),_0x110f85[_0x47a4bc(0x23f)]();let {actualWidth:_0x29d365,actualHeight:_0x3aff21}=_0x110f85[_0x47a4bc(0x1a2)](),_0x52ff28=_0x3a99b4({'actualHeight':_0x3aff21,'opticalVerticalOffset':_0x406346?_0x23cacc(_0x110f85,_0x35f754['height'],_0x4cc7a9):void 0x0,'scaleX':_0x5a634d,'scaleY':_0x3b01a0,'textRect':_0x35f754,'verticalAlign':_0x4cc7a9}),_0x42028b=_0x4f8a30/_0x5a634d,_0x3b1517=_0x96cb4e/_0x3b01a0,_0x85bdb3=_0xa62823({'hostWidth':_0x42028b,'hostHeight':_0x3b1517,'textRect':_0x35f754,'contentWidth':_0x29d365,'contentHeight':_0x3aff21,'allowShrink':_0x3704cb({'adapter':_0x1f487c,'editingParams':_0x3ad6ce})}),_0x382a03=Math[_0x47a4bc(0x120)](_0x85bdb3[_0x47a4bc(0x56b)]),_0x59513f=Math[_0x47a4bc(0x120)](_0x85bdb3['height']),_0x17f31a=_0x2ff020[_0x47a4bc(0x425)],_0x455928=_0x43c15c({'nextWidth':_0x382a03,'nextHeight':_0x59513f,'baselineWidth':_0x42028b,'baselineHeight':_0x3b1517}),_0x49e368=_0x43c15c({'nextWidth':_0x382a03,'nextHeight':_0x59513f,'baselineWidth':_0x17f31a[_0x47a4bc(0x56b)],'baselineHeight':_0x17f31a['height']}),_0x347857=_0x3ad6ce&&_0x1f487c[_0x47a4bc(0x706)]&&_0x455928&&_0x49e368,_0x5e92d1=_0x43c15c({'nextWidth':_0x42028b,'nextHeight':_0x59513f,'baselineWidth':_0x42028b,'baselineHeight':_0x3b1517}),_0x374e4e=_0x43c15c({'nextWidth':_0x42028b,'nextHeight':_0x59513f,'baselineWidth':_0x42028b,'baselineHeight':_0x17f31a[_0x47a4bc(0x157)]}),_0x2eda00=_0x3ad6ce&&_0x1f487c[_0x47a4bc(0x58e)]&&_0x59513f>_0x3b1517&&_0x59513f>_0x17f31a[_0x47a4bc(0x157)]&&_0x5e92d1&&_0x374e4e;if(_0x347857&&_0x3ad6ce&&_0x1f487c[_0x47a4bc(0x706)]?(_0x2ff020[_0x47a4bc(0x425)]={'width':_0x382a03,'height':_0x59513f},_0x1f487c[_0x47a4bc(0x706)]({'unitId':_0x3ad6ce[_0x47a4bc(0x24c)],'subUnitId':_0x3ad6ce[_0x47a4bc(0x39f)],'shapeId':_0x3ad6ce['shapeId'],'width':_0x382a03,'height':_0x59513f})):_0x2eda00&&_0x3ad6ce&&_0x1f487c[_0x47a4bc(0x58e)]&&(_0x2ff020['current']={'width':_0x42028b,'height':_0x59513f},_0x1f487c[_0x47a4bc(0x58e)]({'unitId':_0x3ad6ce[_0x47a4bc(0x24c)],'subUnitId':_0x3ad6ce[_0x47a4bc(0x39f)],'shapeId':_0x3ad6ce['shapeId'],'height':_0x59513f})),_0x131321({'editorLeft':_0x52ff28['editorLeft'],'editorTop':_0x52ff28[_0x47a4bc(0x33e)],'editorWidth':_0x52ff28['editorWidth'],'editorHeight':_0x52ff28['editorHeight']}),_0x22f840&&(_0x22f840['updateDocumentStyle']({'marginLeft':0x0,'marginRight':0x0,'marginBottom':0x0,'pageSize':{'width':_0x35f754[_0x47a4bc(0x56b)],'height':_0x52ff28[_0x47a4bc(0x4cf)]}}),_0x22f840[_0x47a4bc(0x174)]({'t':_0x52ff28[_0x47a4bc(0x61a)]}),_0x110f85[_0x47a4bc(0x23f)]()),_0x28f40b){let _0xe7dd19=_0x52ff28[_0x47a4bc(0x100)],_0x41ff19=_0x52ff28[_0x47a4bc(0x4ae)];_0x28f40b['scene'][_0x47a4bc(0x766)]({'width':_0xe7dd19*_0x425e97/_0xafc617,'height':_0x41ff19*_0x425e97/_0x1d7b62,'scaleX':_0xafc617*_0x425e97,'scaleY':_0x1d7b62*_0x425e97}),_0x28f40b[_0x47a4bc(0x71d)]&&_0x28f40b[_0x47a4bc(0x71d)][_0x47a4bc(0x2ff)](_0xe7dd19*_0x425e97/_0xafc617,_0x41ff19*_0x425e97/_0x1d7b62);}},[_0x330410,_0x1f487c,_0x3ad6ce,_0x5b398f,_0x26471a,_0x33bb77,_0x405da8,_0x5d01c5,_0x4f8a30,_0x96cb4e,_0x5a634d,_0x3b01a0,_0x131321]);_0x13be8c['current']=_0x28da19;let _0x4489aa=(0x0,_0x31b8c1['useCallback'])((_0x48473f=!0x1)=>{_0xaefd39(),_0x14fbeb['current']=requestAnimationFrame(()=>{const _0x561c55=_0x539c;_0x28da19(),_0x48473f&&_0xd20422(!0x1),_0x14fbeb[_0x561c55(0x425)]=null,_0x436005[_0x561c55(0x425)]=window[_0x561c55(0x475)](()=>{const _0x536fe6=_0x561c55;_0x28da19(),_0x48473f&&_0xd20422(!0x1),_0x436005[_0x536fe6(0x425)]=null;},0x14);});},[_0x28da19,_0xaefd39,_0xd20422]);_0x104190[_0x3c4dbd(0x425)]=_0x4489aa,(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>{const _0x3c8211=_0x3c4dbd;if(!_0x330410||!_0x3ad6ce)return;let {shapeId:_0x12f015,unitId:_0x4f367a}=_0x3ad6ce;if(_0xbfeb74){var _0x712482,_0x17efc7,_0x544ea3,_0x3eb318,_0x5c9a5,_0x524b63,_0x4c390a,_0x237a16,_0x3d0f1d;let _0x48952c=_0x405da8(),_0x47702c=_0x330410[_0x3c8211(0x7b3)](),_0x291ad1=(_0x712482=(_0x17efc7=_0x48952c==null?void 0x0:_0x48952c[_0x3c8211(0x41f)])==null?(_0x544ea3=_0x1059b1[_0x3c8211(0x425)])==null?void 0x0:_0x544ea3['va']:_0x17efc7)==null?_0x2c5933[_0x3c8211(0x35d)][_0x3c8211(0x1ca)]:_0x712482,{horizontalAlign:_0xfdb85,verticalAlign:_0x21bd49}=_0x49313b(_0x47702c,{'verticalAlign':_0x291ad1,'horizontalAlign':(_0x3eb318=(_0x5c9a5=_0x48952c==null?void 0x0:_0x48952c[_0x3c8211(0xf4)])==null?(_0x524b63=_0x1059b1[_0x3c8211(0x425)])==null?void 0x0:_0x524b63['ha']:_0x5c9a5)==null?_0x2c5933[_0x3c8211(0x673)][_0x3c8211(0x7a8)]:_0x3eb318}),_0x67eba1=_0x1779c6((_0x4c390a=_0x47702c[_0x3c8211(0x4de)])==null||(_0x4c390a=_0x4c390a['renderConfig'])==null?void 0x0:_0x4c390a[_0x3c8211(0x112)])?_0x291ad1:_0x21bd49,_0x124f22={'va':_0x67eba1,'ha':_0xfdb85,'doc':_0xca9952(_0x47702c,{'verticalAlign':_0x67eba1,'horizontalAlign':_0xfdb85})};_0x1f487c[_0x3c8211(0x435)]({'unitId':_0x4f367a,'subUnitId':_0x3ad6ce['subUnitId'],'shapeId':_0x12f015,'shapeText':{'isHorizontal':(_0x237a16=_0x48952c==null?void 0x0:_0x48952c[_0x3c8211(0x12d)])==null?!0x0:_0x237a16,'dataModel':_0x124f22},'oldShapeText':{'isHorizontal':(_0x3d0f1d=_0x48952c==null?void 0x0:_0x48952c[_0x3c8211(0x12d)])==null?!0x0:_0x3d0f1d,'dataModel':_0x1059b1[_0x3c8211(0x425)]}});return;}let _0x28d607=_0x405da8();if(_0x28d607!=null&&_0x28d607[_0x3c8211(0x14c)])return _0x1059b1[_0x3c8211(0x425)]={'va':_0x28d607[_0x3c8211(0x41f)],'ha':_0x28d607[_0x3c8211(0xf4)],'doc':_0x2c5933[_0x3c8211(0x5e0)]['deepClone'](_0x28d607['doc'])},_0x382e09(_0x330410,_0x55c737(_0x28d607[_0x3c8211(0x14c)],{'isHorizontal':!0x0,'textRect':_0x28d607['textRect'],'verticalAlign':_0x28d607[_0x3c8211(0x41f)],'horizontalAlign':_0x28d607['horizontalAlign'],'wrapStrategy':_0x28d607[_0x3c8211(0x4b4)]}),null),()=>{const _0xf195d=_0x3c8211;var _0x26fe00,_0x5dfa30,_0xfa57b6,_0x39d1cb,_0x4a0d7b,_0x3f5433,_0x259abe,_0x5a9053,_0xe03343;let _0x3041d2=_0x405da8(),_0x17703f=_0x330410[_0xf195d(0x7b3)](),_0x25c049=(_0x26fe00=(_0x5dfa30=_0x3041d2==null?void 0x0:_0x3041d2['verticalAlign'])==null?(_0xfa57b6=_0x1059b1[_0xf195d(0x425)])==null?void 0x0:_0xfa57b6['va']:_0x5dfa30)==null?_0x2c5933[_0xf195d(0x35d)]['TOP']:_0x26fe00,{horizontalAlign:_0x1b468e,verticalAlign:_0x4246ee}=_0x49313b(_0x17703f,{'verticalAlign':_0x25c049,'horizontalAlign':(_0x39d1cb=(_0x4a0d7b=_0x3041d2==null?void 0x0:_0x3041d2[_0xf195d(0xf4)])==null?(_0x3f5433=_0x1059b1[_0xf195d(0x425)])==null?void 0x0:_0x3f5433['ha']:_0x4a0d7b)==null?_0x2c5933[_0xf195d(0x673)][_0xf195d(0x7a8)]:_0x39d1cb}),_0x5a2197=_0x1779c6((_0x259abe=_0x17703f[_0xf195d(0x4de)])==null||(_0x259abe=_0x259abe[_0xf195d(0x3d1)])==null?void 0x0:_0x259abe[_0xf195d(0x112)])?_0x25c049:_0x4246ee,_0x13ede5={'va':_0x5a2197,'ha':_0x1b468e,'doc':_0xca9952(_0x17703f,{'verticalAlign':_0x5a2197,'horizontalAlign':_0x1b468e})};_0x1f487c[_0xf195d(0x435)]({'unitId':_0x4f367a,'subUnitId':_0x3ad6ce[_0xf195d(0x39f)],'shapeId':_0x12f015,'shapeText':{'isHorizontal':(_0x5a9053=_0x3041d2==null?void 0x0:_0x3041d2['isHorizontal'])==null?!0x0:_0x5a9053,'dataModel':_0x13ede5},'oldShapeText':{'isHorizontal':(_0xe03343=_0x3041d2==null?void 0x0:_0x3041d2[_0xf195d(0x12d)])==null?!0x0:_0xe03343,'dataModel':_0x1059b1[_0xf195d(0x425)]}});};_0x382e09(_0x330410,_0x456054,null);},[_0x330410,_0x3ad6ce,_0xbfeb74]);let _0x2ffa4b=_0x4efac0({'editorUnitId':_0x4cad9a,'editingParams':_0x3ad6ce});(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>{const _0x480755=_0x3c4dbd;if(!(!_0x330410||!_0x2ffa4b))return _0x231fdb['blur'](!0x0),_0x13be8c[_0x480755(0x425)](),_0x16f466[_0x480755(0x425)]=requestAnimationFrame(()=>{const _0x9e8fca=_0x480755;_0x231fdb['focus'](_0x4cad9a),_0x45184e[_0x9e8fca(0x425)](),_0x104190[_0x9e8fca(0x425)](),_0x16f466[_0x9e8fca(0x425)]=null;}),()=>{const _0x59d80e=_0x480755;_0x16f466['current']!==null&&(cancelAnimationFrame(_0x16f466[_0x59d80e(0x425)]),_0x16f466[_0x59d80e(0x425)]=null),_0xaefd39(),_0x231fdb[_0x59d80e(0x265)](!0x0);};},[_0x330410,_0x231fdb,_0x4cad9a,_0x2ffa4b,_0xaefd39]),(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>{const _0xcd8b46=_0x3c4dbd;if(!_0x330410)return;let _0x5ee184=_0x32e7ab[_0xcd8b46(0x63c)](_0xa9385d=>{const _0x3ce020=_0xcd8b46;_0xa9385d['id']===_0x58cd82[_0x3ce020(0x4f7)]['id']&&_0xa9385d[_0x3ce020(0x624)][_0x3ce020(0x24c)]===_0x4cad9a&&_0x3ad6ce&&(_0x3ad6ce[_0x3ce020(0x5c1)]?_0x28da19():_0x4d5faa[_0x3ce020(0x11d)]({..._0x3ad6ce,'visible':!0x0})),_0x2b4e62&&_0xa9385d['id']===_0x2b4e62&&_0x4489aa(!0x0);});return()=>{const _0x124089=_0xcd8b46;_0x5ee184[_0x124089(0x23d)]();};},[_0x330410,_0x28da19,_0x3ad6ce,_0x4489aa,_0x4d5faa,_0x4cad9a,_0x2b4e62]),(0x0,_0x31b8c1[_0x3c4dbd(0x76d)])(()=>(_0x28da19(),_0x4489aa(),()=>{_0xaefd39();}),[_0x28da19,_0x4489aa,_0xaefd39]);let _0xabaf65=(0x0,_0x31b8c1['useMemo'])(()=>_0x32b8b2(_0x385248[_0x3c4dbd(0x618)],_0x385248[_0x3c4dbd(0x33e)],_0x385248[_0x3c4dbd(0x100)],Math[_0x3c4dbd(0x206)](0x1,_0x385248[_0x3c4dbd(0x4ae)])),[_0x385248[_0x3c4dbd(0x4ae)],_0x385248[_0x3c4dbd(0x618)],_0x385248[_0x3c4dbd(0x33e)],_0x385248['editorWidth']]),_0x2922a0=(0x0,_0x31b8c1[_0x3c4dbd(0x5d7)])(()=>{let _0x437ceb=_0x405da8(),_0x3ed476=_0x437ceb==null?void 0x0:_0x437ceb['transform'];return _0x3ed476&&_0x3ed476||{'angle':0x0,'flipX':!0x1,'flipY':!0x1};},[_0x405da8]);return(0x0,_0x30fb45[_0x3c4dbd(0x6c4)])(_0x3c4dbd(0x18d),{'ref':_0x21ccb0,'data-u-comp':_0x3c4dbd(0x58c),'className':_0x3c4dbd(0x5d6),'style':{'transform':_0x3c4dbd(0x1b3)+_0x2922a0[_0x3c4dbd(0x2f0)]+_0x3c4dbd(0x171)+(_0x2922a0[_0x3c4dbd(0x623)]?-0x1:0x1)+')'},'children':(0x0,_0x30fb45['jsx'])(_0x3c4dbd(0x18d),{'ref':_0x3e2b26,'className':_0x3c4dbd(0x67a),'data-u-comp':_0x3c4dbd(0x48f),'style':_0xabaf65,'data-editorid':_0x4cad9a})});};function _0x475f0c(_0x5ef1a4,_0x1a687e){const _0x5a720a=_0x4e4756;return!!(_0x5ef1a4!=null&&_0x5ef1a4[_0x5a720a(0x5c1)])&&!(_0x1a687e['left']===-0x270f&&_0x1a687e[_0x5a720a(0x5b2)]===-0x270f);}function _0x3b9899(_0xc64579){const _0x1157ca=_0x4e4756;if(!_0xc64579||typeof _0xc64579!=_0x1157ca(0x165))return!0x1;let _0x1af0ca=_0xc64579;return typeof _0x1af0ca[_0x1157ca(0x5fd)]==_0x1157ca(0x7b7)&&typeof _0x1af0ca[_0x1157ca(0x5b2)]==_0x1157ca(0x7b7)&&typeof _0x1af0ca[_0x1157ca(0x56b)]==_0x1157ca(0x7b7)&&typeof _0x1af0ca[_0x1157ca(0x157)]==_0x1157ca(0x7b7);}function _0x267ffb(_0x33c030,_0x43edc5){const _0x47d0ee=_0x4e4756;var _0x99c85a,_0x2399b8;let _0x1f9d7a=(_0x99c85a=_0x33c030[_0x47d0ee(0x2b1)](_0x43edc5))==null?(_0x2399b8=_0x33c030[_0x47d0ee(0x6a1)])==null?void 0x0:_0x2399b8[_0x47d0ee(0x234)](_0x33c030,_0x43edc5):_0x99c85a;return _0x3b9899(_0x1f9d7a)?_0x1f9d7a:null;}let _0x55250a=(0x0,_0x31b8c1[_0x4e4756(0x182)])(_0x5fe43c=>{const _0x42dba2=_0x4e4756;let {children:_0x1b93f2,editingParams:_0x2932e4,positionOptions:_0x54ab8b,onPositionUpdate:_0x131350}=_0x5fe43c,_0x4f2f4c=(0x0,_0x31b8c1['useRef'])(null),_0x35e77c=(0x0,_0x100e66[_0x42dba2(0x644)])(_0x41cf52[_0x42dba2(0x3e7)]),_0x5912f8=(0x0,_0x31b8c1[_0x42dba2(0x5d7)])(()=>_0x2932e4?_0x35e77c[_0x42dba2(0x442)](_0x2932e4[_0x42dba2(0x24c)]):null,[_0x2932e4,_0x35e77c]),_0x18dd01=(0x0,_0x31b8c1[_0x42dba2(0x5d7)])(()=>{var _0x32e3fc;return(_0x32e3fc=_0x5912f8==null?void 0x0:_0x5912f8['scene'])==null?null:_0x32e3fc;},[_0x5912f8]),_0x22ce4b=(0x0,_0x31b8c1[_0x42dba2(0x5d7)])(()=>!_0x2932e4||!_0x5912f8||!_0x54ab8b[_0x42dba2(0x69e)]?null:_0x54ab8b[_0x42dba2(0x69e)](_0x5912f8,_0x2932e4),[_0x2932e4,_0x54ab8b,_0x5912f8]),_0x17430b=(0x0,_0x31b8c1[_0x42dba2(0x797)])(()=>{const _0x1d3ec6=_0x42dba2;var _0x26d5b9;if(!_0x2932e4||!_0x18dd01)return null;let _0xd38de2=_0x267ffb(_0x18dd01,_0x2932e4[_0x1d3ec6(0x5ce)]);return _0xd38de2?{'left':_0xd38de2[_0x1d3ec6(0x5fd)],'top':_0xd38de2['top'],'width':_0xd38de2[_0x1d3ec6(0x56b)],'height':_0xd38de2['height'],'angle':(_0x26d5b9=_0xd38de2[_0x1d3ec6(0x2f0)])==null?0x0:_0x26d5b9}:null;},[_0x2932e4,_0x18dd01]),{position:_0x3ee0ac,updatePosition:_0x376b15}=_0x55d844({'editingParams':_0x2932e4,'scene':_0x18dd01,'skeleton':_0x22ce4b,'viewportKeys':_0x54ab8b[_0x42dba2(0x162)],'getShapeTransform':_0x17430b}),_0x17d1ff=(0x0,_0x31b8c1['useCallback'])(()=>{const _0x3cc227=_0x42dba2;let _0xe64952=_0x4f2f4c[_0x3cc227(0x425)];_0xe64952&&(_0xe64952['style']['left']=_0x3ee0ac['left']+'px',_0xe64952[_0x3cc227(0x5b0)][_0x3cc227(0x5b2)]=_0x3ee0ac[_0x3cc227(0x5b2)]+'px',_0xe64952[_0x3cc227(0x5b0)][_0x3cc227(0x56b)]=_0x3ee0ac[_0x3cc227(0x56b)]+'px',_0xe64952[_0x3cc227(0x5b0)]['height']=_0x3ee0ac[_0x3cc227(0x157)]+'px');},[_0x3ee0ac]);return(0x0,_0x31b8c1[_0x42dba2(0x76d)])(()=>{const _0x6cb268=_0x42dba2;_0x17d1ff(),_0x475f0c(_0x2932e4,_0x3ee0ac)&&(_0x131350==null||_0x131350({'width':_0x3ee0ac[_0x6cb268(0x56b)],'height':_0x3ee0ac[_0x6cb268(0x157)],'scaleX':_0x3ee0ac[_0x6cb268(0x76b)],'scaleY':_0x3ee0ac[_0x6cb268(0x1e8)]}));},[_0x2932e4,_0x3ee0ac,_0x17d1ff,_0x131350]),(0x0,_0x31b8c1[_0x42dba2(0x76d)])(()=>{const _0x13e104=_0x42dba2;if(!_0x18dd01)return;let _0x5445f6=_0x18dd01[_0x13e104(0x3a2)](_0x54ab8b['viewportKeys'][_0x13e104(0x690)]);if(!_0x5445f6)return;let _0x3ea5a3=_0x5445f6['onScrollAfter$'][_0x13e104(0x49a)](()=>{_0x376b15();});return()=>{_0x3ea5a3['unsubscribe']();};},[_0x54ab8b['viewportKeys']['main'],_0x18dd01,_0x376b15]),(0x0,_0x31b8c1[_0x42dba2(0x76d)])(()=>{const _0x51e91b=_0x42dba2;if(!_0x2932e4||!_0x18dd01)return;let _0x354a55=_0x267ffb(_0x18dd01,_0x2932e4[_0x51e91b(0x5ce)]);if(_0x354a55!=null&&_0x354a55[_0x51e91b(0x381)]){let _0xd9931a=_0x354a55['onTransformChange$'][_0x51e91b(0x49a)](()=>{_0x376b15();});return()=>{const _0x2249ea=_0x51e91b;_0xd9931a[_0x2249ea(0x5f6)]();};}},[_0x2932e4,_0x18dd01,_0x376b15]),(0x0,_0x30fb45[_0x42dba2(0x6c4)])('div',{'ref':_0x4f2f4c,'data-u-comp':_0x42dba2(0x508),'className':_0x42dba2(0x23a),'style':(0x0,_0x31b8c1['useMemo'])(()=>({'left':_0x3ee0ac[_0x42dba2(0x5fd)],'top':_0x3ee0ac['top'],'width':_0x3ee0ac['width'],'height':_0x3ee0ac[_0x42dba2(0x157)],'pointerEvents':_0x2932e4!=null&&_0x2932e4[_0x42dba2(0x5c1)]?'auto':_0x42dba2(0x539)}),[_0x3ee0ac,_0x2932e4==null?void 0x0:_0x2932e4[_0x42dba2(0x5c1)]]),'children':_0x1b93f2});});function _0x2fd52f(_0x27de30,_0x4d3354){const _0x296759=_0x4e4756;return Math[_0x296759(0x568)](_0x27de30[_0x296759(0x56b)]-_0x4d3354[_0x296759(0x56b)])<=0.001&&Math['abs'](_0x27de30[_0x296759(0x157)]-_0x4d3354[_0x296759(0x157)])<=0.001&&Math[_0x296759(0x568)](_0x27de30[_0x296759(0x76b)]-_0x4d3354[_0x296759(0x76b)])<=0.001&&Math[_0x296759(0x568)](_0x27de30[_0x296759(0x1e8)]-_0x4d3354['scaleY'])<=0.001;}let _0x17fba8=(0x0,_0x31b8c1[_0x4e4756(0x182)])(_0x59e41e=>{const _0x324d9a=_0x4e4756;let {adapter:_0x2be1ad,editorUnitId:_0x428fdd,editingService:_0x265397,positionOptions:_0x26b8f8,verticalAlignCommandId:_0x160720}=_0x59e41e,_0x186e99=(0x0,_0x100e66[_0x324d9a(0x60b)])(_0x265397['editingParams$']),_0x413fc2=_0x4efac0({'editorUnitId':_0x428fdd,'editingParams':_0x186e99}),[_0x3af463,_0x2c4dca]=(0x0,_0x31b8c1[_0x324d9a(0x3cf)])(null),_0x17a736=(0x0,_0x31b8c1[_0x324d9a(0x797)])(_0x573b7a=>{const _0x3f2eae=_0x324d9a;if(!_0x413fc2)return;let _0x5d5941={'width':_0x573b7a[_0x3f2eae(0x56b)],'height':_0x573b7a[_0x3f2eae(0x157)],'scaleX':_0x573b7a[_0x3f2eae(0x76b)],'scaleY':_0x573b7a[_0x3f2eae(0x1e8)]};_0x2c4dca(_0x1d7edc=>(_0x1d7edc==null?void 0x0:_0x1d7edc['sessionKey'])===_0x413fc2&&_0x2fd52f(_0x1d7edc['size'],_0x5d5941)?_0x1d7edc:{'sessionKey':_0x413fc2,'size':_0x5d5941});},[_0x413fc2]);if(!(_0x186e99!=null&&_0x186e99['visible']))return null;let _0x3a7049=(_0x3af463==null?void 0x0:_0x3af463[_0x324d9a(0x549)])===_0x413fc2?_0x3af463[_0x324d9a(0x654)]:null;return(0x0,_0x30fb45[_0x324d9a(0x6c4)])(_0x55250a,{'editingParams':_0x186e99,'positionOptions':_0x26b8f8,'onPositionUpdate':_0x17a736,'children':_0x3a7049?(0x0,_0x30fb45[_0x324d9a(0x6c4)])(_0x338c95,{'adapter':_0x2be1ad,'containerWidth':_0x3a7049['width'],'containerHeight':_0x3a7049[_0x324d9a(0x157)],'editingParams':_0x186e99,'editingService':_0x265397,'editorUnitId':_0x428fdd,'scaleX':_0x3a7049['scaleX'],'scaleY':_0x3a7049[_0x324d9a(0x1e8)],'verticalAlignCommandId':_0x160720}):null});}),_0x125a07=_0x4e4756(0x57c),_0x405705=_0x100e66[_0x4e4756(0x116)][_0x4e4756(0x217)](_0x4f0ac9=>({'label':_0x4f0ac9['label'],'value':String(_0x4f0ac9[_0x4e4756(0x3da)])})),_0x29f243=[_0xadbe38[_0x4e4756(0x73b)]['id'],_0xadbe38['SetInlineFormatTextBackgroundColorCommand']['id'],_0xadbe38[_0x4e4756(0x622)]['id'],_0xadbe38[_0x4e4756(0x5e2)]['id'],_0xadbe38[_0x4e4756(0x494)]['id'],_0xadbe38[_0x4e4756(0x2f3)]['id'],_0xadbe38[_0x4e4756(0x266)]['id'],_0xadbe38[_0x4e4756(0x245)]['id'],_0xadbe38[_0x4e4756(0x4d9)]['id'],_0xadbe38[_0x4e4756(0x6b8)]['id'],_0xadbe38[_0x4e4756(0x1d3)]['id'],_0x58cd82['RichTextEditingMutation']['id'],_0x58cd82[_0x4e4756(0x710)]['id']],_0x1cfa70={'root':_0x4e4756(0x657),'group':'univer-flex\x20univer-h-6\x20univer-items-center\x20univer-gap-0.5\x20univer-px-1','divider':_0x4e4756(0x25b),'button':_0x4e4756(0x2f8),'select':_0x4e4756(0x46a)};function _0x134206(_0x6b3c69){const _0x19cd99=_0x4e4756;return _0x6b3c69 instanceof HTMLElement?!!_0x6b3c69[_0x19cd99(0x566)](_0x19cd99(0x60f)):!0x1;}function _0x267932(_0x44f6d5){const _0x639c7e=_0x4e4756;return!!(_0x44f6d5&&typeof _0x44f6d5==_0x639c7e(0x165)&&_0x44f6d5['s']===_0x2c5933[_0x639c7e(0x46c)][_0x639c7e(0x496)]);}function _0x4e8807(_0x186680){const _0x302ca3=_0x4e4756;return(0x0,_0x30fb45[_0x302ca3(0x6c4)])(_0x302ca3(0x18d),{'className':_0x1cfa70[_0x302ca3(0x551)],'children':_0x186680[_0x302ca3(0x20a)]});}function _0x590633(){const _0x43297d=_0x4e4756;return(0x0,_0x30fb45[_0x43297d(0x6c4)])(_0x43297d(0x161),{'className':_0x1cfa70['divider']});}function _0x17ff63(_0x225dd9){const _0x3fad31=_0x4e4756;return(0x0,_0x30fb45['jsx'])(_0xa18fa4[_0x3fad31(0x36f)],{'title':_0x225dd9[_0x3fad31(0x2c5)],'placement':_0x3fad31(0x65e),'children':(0x0,_0x30fb45[_0x3fad31(0x6c4)])(_0x3fad31(0x233),{'type':_0x3fad31(0x233),'className':(0x0,_0xa18fa4['clsx'])(_0x1cfa70[_0x3fad31(0x233)],{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x225dd9[_0x3fad31(0x183)]}),'onClick':_0x225dd9[_0x3fad31(0x424)],'children':_0x225dd9[_0x3fad31(0x20a)]})});}function _0x566368(){const _0x2a0a8e=_0x4e4756;var _0x40184d,_0x390da9,_0x302682,_0x5cf8fb,_0xde25e8,_0x4664c6;let _0x2620bf=(0x0,_0x100e66[_0x2a0a8e(0x644)])(_0x2c5933[_0x2a0a8e(0x7d8)]),_0x2b8a41=(0x0,_0x100e66[_0x2a0a8e(0x644)])(_0x58cd82['DocSelectionManagerService']),_0x268899=(0x0,_0x100e66[_0x2a0a8e(0x644)])(_0x2c5933[_0x2a0a8e(0x56a)]),_0x20fd7a=(0x0,_0x100e66[_0x2a0a8e(0x644)])(_0x2c5933[_0x2a0a8e(0x1b4)]),[_0x495158,_0x2ddd3f]=(0x0,_0x31b8c1[_0x2a0a8e(0x3cf)])({'cl':{'rgb':_0x125a07}});(0x0,_0x31b8c1[_0x2a0a8e(0x76d)])(()=>{const _0x34a602=_0x2a0a8e;let _0x44a3b0=()=>{const _0x270d4d=_0x539c;var _0x58f8aa,_0x18b252,_0x541178,_0x568e2d,_0x517c57,_0x2dbc35,_0x32c1ef;let _0x27b643=(_0x58f8aa=_0x2b8a41[_0x270d4d(0x146)]())==null?[]:_0x58f8aa,_0x45b248=_0x27b643[_0x270d4d(0x7cf)]>0x0?_0x27b643[_0x270d4d(0x590)](_0x554ea5=>_0x554ea5[_0x270d4d(0x170)]!=null&&_0x554ea5[_0x270d4d(0x325)]!=null):_0x2b8a41[_0x270d4d(0x671)](),_0x397ab7=(_0x18b252=_0x45b248['find'](_0x19c51b=>_0x19c51b[_0x270d4d(0x212)]))==null?_0x45b248[0x0]:_0x18b252;if(!_0x397ab7){_0x2ddd3f({'cl':{'rgb':_0x125a07}});return;}let _0x20245f=_0x20fd7a[_0x270d4d(0x1b6)](_0x2c5933['UniverInstanceType']['UNIVER_DOC']);if(!_0x20245f){_0x2ddd3f({'cl':{'rgb':_0x125a07}});return;}let _0x673430=_0x20245f==null||(_0x541178=_0x20245f[_0x270d4d(0x43b)](_0x397ab7['segmentId']))==null?void 0x0:_0x541178[_0x270d4d(0x755)]();if(!_0x673430){_0x2ddd3f({'cl':{'rgb':_0x125a07}});return;}let _0x426ac5=(_0x568e2d=_0x20245f[_0x270d4d(0x6af)]()[_0x270d4d(0x4de)])==null?void 0x0:_0x568e2d['textStyle'];_0x2ddd3f((0x0,_0xadbe38['getStyleInTextRange'])(_0x673430,_0x397ab7,{..._0x426ac5,'ff':(_0x517c57=_0x426ac5==null?void 0x0:_0x426ac5['ff'])==null?_0x2c5933[_0x270d4d(0x44c)]['ff']:_0x517c57,'fs':(_0x2dbc35=_0x426ac5==null?void 0x0:_0x426ac5['fs'])==null?_0x2c5933[_0x270d4d(0x44c)]['fs']:_0x2dbc35,'cl':(_0x32c1ef=_0x426ac5==null?void 0x0:_0x426ac5['cl'])==null?{'rgb':_0x125a07}:_0x32c1ef}));};_0x44a3b0();let _0x5b2cf0=_0x2620bf[_0x34a602(0x63c)](_0x23e8c7=>{const _0x3e97dd=_0x34a602;_0x29f243[_0x3e97dd(0x420)](_0x23e8c7['id'])&&_0x44a3b0();}),_0x2f996e=_0x2b8a41['textSelection$']['subscribe'](_0x44a3b0);return()=>{const _0x37f0db=_0x34a602;_0x5b2cf0[_0x37f0db(0x23d)](),_0x2f996e[_0x37f0db(0x5f6)]();};},[_0x2620bf,_0x2b8a41,_0x20fd7a]);let _0x4d8cd7=(_0x5a4a86,_0x502012)=>{const _0x507d75=_0x2a0a8e;_0x2620bf[_0x507d75(0x18f)](_0x5a4a86,_0x502012===void 0x0?void 0x0:{'value':_0x502012});},_0x383400=(_0x40184d=_0x495158['ff'])==null?_0x2c5933['DEFAULT_STYLES']['ff']:_0x40184d,_0x51432a=(_0x390da9=_0x495158['fs'])==null?_0x2c5933['DEFAULT_STYLES']['fs']:_0x390da9,_0x4298f9=_0x495158['bl']===_0x2c5933[_0x2a0a8e(0x46c)]['TRUE'],_0x3d8d52=_0x495158['it']===_0x2c5933[_0x2a0a8e(0x46c)][_0x2a0a8e(0x496)],_0x18876e=_0x267932(_0x495158['ul']),_0x5ad72f=_0x267932(_0x495158['st']),_0x1a0489=_0x495158['va']===_0x2c5933['BaselineOffset']['SUBSCRIPT'],_0x50c969=_0x495158['va']===_0x2c5933[_0x2a0a8e(0x6ff)][_0x2a0a8e(0x2b3)],_0x530750=(_0x302682=(_0x5cf8fb=_0x495158['bg'])==null?void 0x0:_0x5cf8fb[_0x2a0a8e(0x7c8)])==null?'#ffffff':_0x302682;return(0x0,_0x30fb45[_0x2a0a8e(0x4b8)])('div',{'onMouseDown':_0x22a583=>{const _0x3f34a3=_0x2a0a8e;_0x22a583[_0x3f34a3(0x401)](),_0x134206(_0x22a583[_0x3f34a3(0x1e2)])||_0x22a583[_0x3f34a3(0x604)]();},'className':(0x0,_0xa18fa4[_0x2a0a8e(0x4f8)])(_0x1cfa70[_0x2a0a8e(0x315)],_0xa18fa4[_0x2a0a8e(0x2be)]),'children':[(0x0,_0x30fb45['jsx'])(_0x4e8807,{'children':(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x271618,{})}),(0x0,_0x30fb45['jsx'])(_0x590633,{}),(0x0,_0x30fb45['jsxs'])(_0x4e8807,{'children':[(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x100e66['FontFamilyDropdown'],{'className':(0x0,_0xa18fa4[_0x2a0a8e(0x4f8)])(_0x1cfa70[_0x2a0a8e(0x412)],_0x2a0a8e(0x597)),'inputClassName':_0x2a0a8e(0x4ea),'value':_0x383400,'onChange':_0x36c0f1=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x5e2)]['id'],_0x36c0f1)}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0xa18fa4[_0x2a0a8e(0x50a)],{'className':(0x0,_0xa18fa4[_0x2a0a8e(0x4f8)])(_0x1cfa70['select'],_0x2a0a8e(0x27b)),'value':String(_0x51432a),'options':_0x405705,'onChange':_0x5ac012=>{let _0x11290b=Number(_0x5ac012);Number['isNaN'](_0x11290b)||_0x4d8cd7(_0xadbe38['SetInlineFormatFontSizeCommand']['id'],_0x11290b);}})]}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x590633,{}),(0x0,_0x30fb45[_0x2a0a8e(0x4b8)])(_0x4e8807,{'children':[(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x17ff63,{'title':_0x268899['t']('shape-editor-ui.toolbar.bold'),'active':_0x4298f9,'onClick':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x2f3)]['id']),'children':(0x0,_0x30fb45['jsx'])(_0x2a516b,{})}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x17ff63,{'title':_0x268899['t'](_0x2a0a8e(0x172)),'active':_0x3d8d52,'onClick':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x266)]['id']),'children':(0x0,_0x30fb45['jsx'])(_0x457946,{})}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x17ff63,{'title':_0x268899['t'](_0x2a0a8e(0x726)),'active':_0x18876e,'onClick':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x245)]['id']),'children':(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0xf856b0,{})}),(0x0,_0x30fb45['jsx'])(_0x17ff63,{'title':_0x268899['t']('shape-editor-ui.toolbar.strikethrough'),'active':_0x5ad72f,'onClick':()=>_0x4d8cd7(_0xadbe38['SetInlineFormatStrikethroughCommand']['id']),'children':(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x318e1d,{})})]}),(0x0,_0x30fb45['jsx'])(_0x590633,{}),(0x0,_0x30fb45[_0x2a0a8e(0x4b8)])(_0x4e8807,{'children':[(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x17ff63,{'title':_0x268899['t'](_0x2a0a8e(0x4e1)),'active':_0x1a0489,'onClick':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x6b8)]['id']),'children':(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0xdd1cc0,{})}),(0x0,_0x30fb45['jsx'])(_0x17ff63,{'title':_0x268899['t']('shape-editor-ui.toolbar.superscript'),'active':_0x50c969,'onClick':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x1d3)]['id']),'children':(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x459d3f,{})})]}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x590633,{}),(0x0,_0x30fb45[_0x2a0a8e(0x4b8)])(_0x4e8807,{'children':[(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x556b1b,{'title':_0x268899['t']('shape-editor-ui.toolbar.textColor'),'textStyle':_0x495158,'fallbackColor':(_0xde25e8=(_0x4664c6=_0x495158['cl'])==null?void 0x0:_0x4664c6['rgb'])==null?_0x125a07:_0xde25e8,'onChange':_0x5a7bdd=>{const _0x138616=_0x2a0a8e;_0x2620bf[_0x138616(0x18f)](_0xadbe38[_0x138616(0x73b)]['id'],{'value':_0x5a7bdd}),_0x2ddd3f(_0x3eb30d=>({..._0x3eb30d,..._0x5a7bdd}));}}),(0x0,_0x30fb45[_0x2a0a8e(0x6c4)])(_0x6cc18e,{'title':_0x268899['t'](_0x2a0a8e(0x6f5)),'color':_0x530750,'resetLabel':_0x268899['t']('shape-editor-ui.toolbar.resetColor'),'onApply':()=>_0x4d8cd7(_0xadbe38[_0x2a0a8e(0x409)]['id'],_0x530750),'onReset':()=>{const _0x3242af=_0x2a0a8e;_0x2620bf[_0x3242af(0x18f)](_0xadbe38[_0x3242af(0x622)]['id']),_0x2ddd3f(_0x458028=>({..._0x458028,'bg':{'rgb':null}}));},'onChange':_0xcf4ad=>{const _0x4b5116=_0x2a0a8e;_0x4d8cd7(_0xadbe38[_0x4b5116(0x409)]['id'],_0xcf4ad),_0x2ddd3f(_0x1bd775=>({..._0x1bd775,'bg':{'rgb':_0xcf4ad}}));}})]})]});}_0x184f0a[_0x4e4756(0x127)]=_0x271618,_0x184f0a[_0x4e4756(0x577)]=_0x3e7255,_0x184f0a['ShapeEditPanel']=_0x512d96,_0x184f0a[_0x4e4756(0x141)]=_0x455297,_0x184f0a[_0x4e4756(0x121)]=_0x5560f4,_0x184f0a[_0x4e4756(0x33a)]=_0x47b065,_0x184f0a[_0x4e4756(0x20c)]=_0x315c39,_0x184f0a[_0x4e4756(0x263)]=_0x18f957,_0x184f0a[_0x4e4756(0x135)]=_0x970011,_0x184f0a[_0x4e4756(0x63b)]=_0x372084,_0x184f0a[_0x4e4756(0x5df)]=_0x5832dd,_0x184f0a[_0x4e4756(0x5e5)]=_0x338c95,_0x184f0a[_0x4e4756(0x2b2)]=_0x17fba8,_0x184f0a[_0x4e4756(0x2ac)]=_0x1665b1,_0x184f0a[_0x4e4756(0x7b5)]=_0x566368,_0x184f0a[_0x4e4756(0x396)]=_0x55250a,_0x184f0a[_0x4e4756(0x155)]=_0x3a29b0,Object['defineProperty'](_0x184f0a,_0x4e4756(0x301),{'enumerable':!0x0,'get':function(){return _0xc53c8a;}}),_0x184f0a[_0x4e4756(0x595)]=_0x159502,_0x184f0a['buildShapeTextDataUpdate']=_0xa5c857,_0x184f0a[_0x4e4756(0x5d9)]=_0x224489,_0x184f0a['createDefaultShapeTextDocument']=_0x3d3ce4,_0x184f0a[_0x4e4756(0x295)]=_0x21b461,_0x184f0a[_0x4e4756(0x43c)]=_0x4a185e,_0x184f0a[_0x4e4756(0x26c)]=_0x32b8b2,_0x184f0a[_0x4e4756(0x681)]=_0x483948,_0x184f0a['getShapeTextModel']=_0x2a9129,_0x184f0a[_0x4e4756(0x31d)]=_0x2ae019,_0x184f0a[_0x4e4756(0x630)]=_0x55c737,_0x184f0a[_0x4e4756(0x51a)]=_0x5bd4d0,_0x184f0a['stripShapeTextDocumentLayout']=_0xca9952,_0x184f0a[_0x4e4756(0x3eb)]=_0x55d844;}));
|
|
1
|
+
function _0x2a1c(){const _0x237c29=['UndoCommand','shape-lightning-bolt-icon','shape-editor-ui.fill.picture.rotateWithShape','ShapeFrameIcon','isBold','_docSelectionRenderService','Star24','BentArrow','shape.type.flow-chart-offline-storage','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-gap-2\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-2\x20univer-text-left\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','QuadArrowCallout','end','ShapeFlowChartMagneticTapeIcon','shape-editor-ui.shapeStyle','isConnectorShape','shape.type.ellipse','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20univer-rounded-xl\x20univer-border\x20univer-border-gray-200\x20univer-bg-white\x20univer-shadow-lg\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','shape.type.curved-left-arrow','UNIVER_DOC','shape-editor-ui.line.dashType.dash','shape.type.callout2','shape-flow-chart-document-icon','Tile','RoundDot','shape-chart-plus-icon','tangentialPressure','content','clearTimeout','M12.9844\x205L19\x205L13.9697\x2010L19\x2015L12.9844\x2015L10\x2020L7.0156\x2015L1\x2015L6.0303\x2010L1\x205L7.0156\x205L10\x200ZM7.9233\x206.6L4.8799\x206.6L8.2998\x2010L4.8799\x2013.4L7.9234\x2013.4L10\x2016.8768L12.0766\x2013.4L15.1201\x2013.4L11.7001\x2010L15.1201\x206.6L12.0766\x206.6L10\x203.1221Z','autoFitType','resolveShapeTextDocumentAlignment','getShapeData','Module','shape.type.octagon','ShapeFlowChartOnlineStorageIcon','transparent','ICommandService','clientY','M2\x208.5L6.4\x204H13.6L18\x208.5V16H2V8.5Z','gradientFill','M8.82985\x201.94185C9.11822\x200.68605\x2010.8819\x200.68605\x2011.1703\x201.94185L11.4309\x203.07644C12.1471\x203.22251\x2012.8251\x203.47598\x2013.4473\x203.81975L14.3676\x203.12044C15.385\x202.34663\x2016.7362\x203.49551\x2016.161\x204.64512L15.6387\x205.68695C16.0832\x206.25141\x2016.4452\x206.8843\x2016.7103\x207.56722L17.8618\x207.63145C19.1323\x207.70113\x2019.4391\x209.46117\x2018.2691\x209.96722L17.2068\x2010.4251C17.1885\x2011.1714\x2017.0591\x2011.8889\x2016.8359\x2012.5635L17.6775\x2013.3615C18.6066\x2014.2424\x2017.7247\x2015.7913\x2016.5073\x2015.4166L15.404\x2015.0764C14.9292\x2015.6206\x2014.3762\x2016.0925\x2013.7619\x2016.4739L13.9016\x2017.6322C14.0544\x2018.9122\x2012.3957\x2019.5235\x2011.7008\x2018.4433L11.0717\x2017.4657C10.722\x2017.5185\x2010.3643\x2017.5466\x2010.0001\x2017.5466V15.1109C10.2421\x2015.1109\x2010.4813\x2015.0918\x2010.7172\x2015.0562L11.6762\x2014.9111L12.506\x2014.3974C12.9153\x2014.1432\x2013.2855\x2013.8282\x2013.6035\x2013.4638L14.2455\x2012.7252L14.5565\x2011.7892C14.7051\x2011.3403\x2014.792\x2010.863\x2014.8042\x2010.3644L14.8277\x209.37258L14.4732\x208.4592C14.2958\x208.00218\x2014.0544\x207.58008\x2013.7596\x207.20568L13.1457\x206.42669L12.2971\x205.95811C11.8833\x205.72954\x2011.4326\x205.56163\x2010.9567\x205.46455L9.9989\x205.26831L9.0423\x205.46455C8.56615\x205.56177\x208.11609\x205.72993\x207.70306\x205.95811L6.85093\x206.42788L6.23941\x207.20568C5.94443\x207.58031\x205.70305\x208.00251\x205.52577\x208.4592L5.17013\x209.37495L5.19478\x2010.3656C5.2071\x2010.8636\x205.29398\x2011.3405\x205.44244\x2011.7892L5.75113\x2012.7228L6.39669\x2013.4638C6.71483\x2013.8284\x207.08386\x2014.1439\x207.49179\x2014.3974L8.3181\x2014.9099L9.28174\x2015.0562C9.51731\x2015.0918\x209.7571\x2015.1109\x2010.0001\x2015.1109V17.5466C9.63551\x2017.5466\x209.27729\x2017.5186\x208.92727\x2017.4657L8.29932\x2018.4433C7.60445\x2019.5235\x205.94567\x2018.9122\x206.09856\x2017.6322L6.23589\x2016.4739C5.62207\x2016.0925\x205.06942\x2015.6204\x204.595\x2015.0764L3.49285\x2015.4166C2.27536\x2015.7914\x201.39241\x2014.2424\x202.32146\x2013.3615L3.16303\x2012.5635C2.94001\x2011.8893\x202.81055\x2011.172\x202.79213\x2010.4263L1.73107\x209.96722C0.560794\x209.46131\x200.867797\x207.70113\x202.13836\x207.63145L3.28862\x207.56722C3.5537\x206.88436\x203.91582\x206.25139\x204.36025\x205.68695L3.83911\x204.64512C3.26373\x203.4954\x204.61511\x202.34634\x205.63258\x203.12044L6.55162\x203.81975C7.17384\x203.47593\x207.85194\x203.22259\x208.56811\x203.07644L8.82985\x201.94185Z','lineSpaceReduction','MathPlus','M1.00018\x2017L2.50018\x209H6.00018','shape-editor-ui.line.dashType.title','M10\x202C12.3755\x202\x2016\x204\x2016\x204V13C16\x2013\x2012.3755\x2011.5\x2010\x2011.5C7.6245\x2011.5\x204\x2013\x204\x2013V4C4\x204\x207.6245\x202\x2010\x202ZM9.99087\x203.16696C9.23117\x203.16696\x208.1813\x203.509\x207\x204C6.6811\x204.1325\x205.7611\x204.47933\x205.5\x204.60143V11C6.667\x2010.5563\x208.6536\x2010\x2010\x2010C11.3464\x2010\x2013.333\x2010.5563\x2014.5\x2011V4.7354C14.2389\x204.6133\x2013.3189\x204.1325\x2013\x204C11.8187\x203.509\x2010.7506\x203.16696\x209.99087\x203.16696Z','section','CurvedDownArrow','shape.type.horizontal-scroll','shape.type.flow-chart-magnetic-disk','ShapeStraightConnector1Icon','vertical-center-icon','ShapeLeftRightUpArrowIcon','ShapePlusIcon','M2\x2016V4H13.6L18\x208V16H2Z','M12\x202C10.2\x202\x209.4\x202.75\x209.4\x204.6V7.3C9.4\x208.55\x208.85\x209.35\x207.6\x209.9C8.85\x2010.45\x209.4\x2011.25\x209.4\x2012.5V15.4C9.4\x2017.25\x2010.2\x2018\x2012\x2018','rgba(0,\x200,\x200,\x200)','ShapeSnip1RectIcon','pages','shape.type.smiley-face','M12.9673\x206.74968C13.0774\x206.59315\x2013.2567\x206.5\x2013.4481\x206.5C13.7726\x206.5\x2014.0357\x206.7631\x2014.0357\x207.08765V11.1275H14.5735C14.8091\x2011.1275\x2015\x2011.3184\x2015\x2011.5539C15\x2011.7895\x2014.8091\x2011.9804\x2014.5735\x2011.9804H14.0357V13.0357C14.0357\x2013.2921\x2013.8278\x2013.5\x2013.5714\x2013.5C13.315\x2013.5\x2013.1071\x2013.2921\x2013.1071\x2013.0357V11.9804H10.7671C10.3435\x2011.9804\x2010\x2011.6369\x2010\x2011.2133C10\x2011.0553\x2010.0487\x2010.9013\x2010.1396\x2010.7721L12.9673\x206.74968ZM13.0804\x207.85294L10.7946\x2011.1275H13.1071V7.85294H13.0804Z','shape-down-arrow-icon-clip','equationShape','SolidLine','M14.8447\x204.8271L17.0254\x202.7588L17.0254\x205.5176L19.9092\x207.4971L17.5\x209.5L20\x2013.1035L15.6836\x2013.1035L19.0381\x2018.6211L12.3301\x2015.1729L12.0566\x2017.9307L8.3057\x2017.2412L4.2813\x2020L4.2813\x2015.8623L0\x2015.8623L2.9394\x2011.7246L0\x208.9658L4.5\x208.5L2.9394\x205.1348L7.6348\x205.5176L7.5\x202L11\x204.5L12.0566\x200ZM5.8812\x2016.9632L7.9455\x2015.5482L10.6351\x2016.0421L10.7378\x2015.0152L10.9699\x2012.6743L13.0615\x2013.7495L14.7206\x2014.5989L12.8391\x2011.5035L16.9433\x2011.5035L15.3492\x209.207L16.4776\x208.2693L17.2598\x207.6172L16.1199\x206.8362L15.5005\x206.4107L14.4744\x207.3849L12.6911\x204.2967L12.0116\x207.1891L9.2217\x205.1962L9.3024\x207.258L5.5447\x206.9517L5.9516\x207.8266L6.8946\x209.8609L4.6654\x2010.0914L3.6472\x2010.1942L5.0519\x2011.5129L3.0993\x2014.2623L5.8812\x2014.2623Z','horizontalAlign','placeholderWidth','ShapeBlockArcIcon','useMemo','defineProperty','M12\x205.5C12\x204.11929\x2010.8807\x203\x209.5\x203H9V0L0\x209L9\x2018V8H9.5V6H7V13.1719L2.82812\x209L7\x204.82812V5H9.5C9.77614\x205\x2010\x205.22386\x2010\x205.5C10\x205.77614\x209.77614\x206\x209.5\x206V8C10.8807\x208\x2012\x206.88071\x2012\x205.5Z','version','align-text-both-icon','ShapeLineInvIcon','ShapeVerticalScrollIcon','active','M9.0001\x2015.5001L9\x204.5L15.5\x2010.5ZM10.5998\x208.1535L10.5998\x2012.2493L13.0201\x2010.3876Z','forwardLabel','startIndex','Radio','rowStartY','imageRotateWithShape','HorizontalAlign','onAfterChange','ShapeQuadArrowCalloutIcon','shape.type.flow-chart-manual-operation','assign','ShapeArcIcon','FlowchartTerminator','setConfig','ShapeFunnelIcon','shape.type.circular-arrow','dataStream','todo-list-double-icon','commitOnEnter','M7.9999\x200.733398C8.33127\x200.733398\x208.5999\x201.00203\x208.5999\x201.3334V4.55137L9.57564\x203.57564C9.80995\x203.34132\x2010.1899\x203.34132\x2010.4242\x203.57564C10.6585\x203.80995\x2010.6585\x204.18985\x2010.4242\x204.42417L8.42417\x206.42417C8.18985\x206.65848\x207.80995\x206.65848\x207.57564\x206.42417L5.57564\x204.42417C5.34132\x204.18985\x205.34132\x203.80995\x205.57564\x203.57564C5.80995\x203.34132\x206.18985\x203.34132\x206.42417\x203.57564L7.3999\x204.55137V1.3334C7.3999\x201.00203\x207.66853\x200.733398\x207.9999\x200.733398Z','default','rgb','M10\x203V17M3\x2010H17','ShapeCubeIcon','shape.type.round2-diag-rect','AlignCenterCommand','UturnArrow','shape-ribbon2-icon','BasicShape','namedStyleType','shape-cloud-icon-clip','shape.type.action-button-sound','CurvedRightArrow','card','M7.57564\x2010.3914C7.80995\x2010.6257\x208.18985\x2010.6257\x208.42417\x2010.3914L10.4242\x208.3914C10.6585\x208.15709\x2010.6585\x207.77719\x2010.4242\x207.54287C10.1899\x207.30856\x209.80995\x207.30856\x209.57564\x207.54287L7.9999\x209.11861L6.42417\x207.54287C6.18985\x207.30856\x205.80995\x207.30856\x205.57564\x207.54287C5.34132\x207.77719\x205.34132\x208.15709\x205.57564\x208.3914L7.57564\x2010.3914Z','M4\x206V4.5H16V12H14','docs-code.command.insert','unitId','univer-pt-2','Flat','ShapeWedgeRoundRectCalloutIcon','shape.type.flow-chart-internal-storage','textRectWidth','ShapeFlowChartMergeIcon','M3.77393\x209.00006H1.9165C1.91653\x2012.8659\x204.82681\x2016.0001\x208.4165\x2016.0001C12.0062\x2016.0001\x2014.9165\x2012.8659\x2014.9165\x209.00006H16.0005L14.021\x206.00006L12.0005\x209.00006H13.0591C13.0591\x2011.7613\x2010.9806\x2013.9991\x208.4165\x2013.9991V12.2374C9.37167\x2012.2374\x2010.2981\x2011.6773\x2010.8325\x2010.7618H8.69092L14.0356\x202.82428L19.2729\x2010.7618H16.5083C15.7478\x2014.679\x2012.5031\x2017.7618\x208.4165\x2017.7618C3.73333\x2017.7618\x200.154823\x2013.7135\x200.154785\x209.00006V7.23834H5.53564V9.00006C5.53568\x2010.9134\x206.94564\x2012.2374\x208.4165\x2012.2374V13.9991C5.85245\x2013.9991\x203.77396\x2011.7613\x203.77393\x209.00006Z','univer-gap-4','RightJustifyingIcon','with','more-down-icon','_registerIcons','shape-left-right-arrow-callout-icon','M1.8\x207V1.8H7L1.8\x207Z','userSpaceOnUse','buttons','M17.0711\x202.9289L2.9289\x2017.0711','@univerjs-pro/shape-editor-ui','tag','ShapeBorderCallout2Icon','visible','sub','mainComponent','TRUE','univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','shape.type.rt-triangle','shape.type.chart-star','backgroundColor','value','Round2DiagRect','ShapeLeftRightArrowIcon','screenX','Cube','IconManager','ShapeParallelogramIcon','DocSelectAllCommand','univer-min-w-[240px]','shape-editor-ui.fill.gradientFill','clearUndoRedoHistory','RightBrace','univer-grid\x20univer-items-center\x20univer-gap-1','file','titleKey','ShapeActionButtonForwardNextIcon','shape-quad-arrow-callout-icon','getAncestorScale','useEffect','ShapeRightBraceIcon','ShapeSnip2SameRectIcon','ShapeLeftRightArrowCalloutIcon','M11.8223\x206C12.4524\x206\x2012.9806\x206.20879\x2013.3884\x206.64835C13.7869\x207.08791\x2013.9907\x207.64835\x2013.9907\x208.34066C13.9907\x209.02198\x2013.7683\x209.63736\x2013.342\x2010.1978C13.0826\x2010.5165\x2012.6285\x2010.9341\x2011.9706\x2011.4615C11.257\x2012.022\x2010.8307\x2012.5165\x2010.6917\x2012.9451H13.4725C13.7638\x2012.9451\x2014\x2013.1812\x2014\x2013.4725C14\x2013.7638\x2013.7638\x2014\x2013.4725\x2014H9.9407C9.66456\x2014\x209.43657\x2013.7752\x209.47159\x2013.5013C9.54522\x2012.9254\x209.7513\x2012.4084\x2010.0986\x2011.9451C10.3396\x2011.6044\x2010.84\x2011.1319\x2011.5906\x2010.5165C12.0354\x2010.1429\x2012.3505\x209.84615\x2012.5358\x209.61538C12.8324\x209.21978\x2012.9899\x208.79121\x2012.9899\x208.32967C12.9899\x207.89011\x2012.888\x207.56044\x2012.6841\x207.34066C12.4802\x207.12088\x2012.1744\x207.01099\x2011.7852\x207.01099C11.3682\x207.01099\x2011.0531\x207.17582\x2010.84\x207.51648C10.6794\x207.75458\x2010.5768\x208.06718\x2010.5252\x208.46257C10.4895\x208.73596\x2010.2685\x208.95604\x209.99282\x208.95604C9.70925\x208.95604\x209.47653\x208.72378\x209.50866\x208.44204C9.58205\x207.79843\x209.78489\x207.26647\x2010.1172\x206.84615C10.5435\x206.27473\x2011.118\x206\x2011.8223\x206Z','ShapeFlowChartDelayIcon','shape.type.chart-x','pageMarginLeft','ColorPicker','univer-flex\x20univer-flex-col\x20univer-gap-2','shape.type.irregular-seal2','0\x200\x2018\x2017','univer-text-xs','isFocusing','shape-accent-callout1-icon','heading:','_configService','shape.type.flow-chart-decision','paint-bucket-double-icon','shape-editor-ui.line.sketchType.title','GradientFill','pageMarginTop','shape-rt-triangle-icon','3190055EZdgfo','M5.8\x205.8H14.2V14.2H5.8z','deferHostSizeUpdateDuringEditing','idSuffix','updateDocumentStyle','executeCommand','button','shape-math-equal-icon','bold-icon','M2\x203.41406V18H16.5859L2\x203.41406Z','shape-ribbon-icon','M13.8\x2013.8H18.2V18.2H13.8z','shape.type.action-button-information','commandId','sketchType','isItalic','[data-u-comp=\x22rect-popup\x22]','flowAxis','startOffset','cancel','SmileyFace','M20\x2011L11.75\x2019.6602V15.9932C9.10474\x2015.8629\x207\x2013.6776\x207\x2011V6.36328C7.00035\x206.20808\x207.17349\x206.11599\x207.30273\x206.20215L8.33594\x206.89062C9.35155\x207.56769\x2010.5335\x207.94807\x2011.75\x207.99414V2.33984L20\x2011ZM9\x2011C9\x2012.6056\x2010.2627\x2013.917\x2011.8486\x2013.9951L13.75\x2014.0889V14.6602L17.2363\x2011L13.75\x207.33887V10.0713L11.6738\x209.99316C10.7566\x209.95838\x209.85452\x209.77558\x209\x209.45801V11Z','M1.8\x203.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H4C2.785\x2016.2\x201.8\x2015.215\x201.8\x2014V3.8Z','M12.5894\x206.5C13.1423\x206.5\x2013.6057\x206.68269\x2013.9634\x207.06731C14.313\x207.45192\x2014.4919\x207.94231\x2014.4919\x208.54808C14.4919\x209.14423\x2014.2967\x209.68269\x2013.9228\x2010.1731C13.6951\x2010.4519\x2013.2967\x2010.8173\x2012.7195\x2011.2788C12.0935\x2011.7692\x2011.7195\x2012.2019\x2011.5976\x2012.5769H14.0385C14.2934\x2012.5769\x2014.5\x2012.7836\x2014.5\x2013.0385C14.5\x2013.2934\x2014.2934\x2013.5\x2014.0385\x2013.5H11.1723C10.801\x2013.5\x2010.4905\x2013.1957\x2010.5657\x2012.8321C10.651\x2012.4201\x2010.8199\x2012.0443\x2011.0772\x2011.7019C11.2886\x2011.4038\x2011.7276\x2010.9904\x2012.3862\x2010.4519C12.7764\x2010.125\x2013.0528\x209.86538\x2013.2154\x209.66346C13.4756\x209.31731\x2013.6138\x208.94231\x2013.6138\x208.53846C13.6138\x208.15385\x2013.5244\x207.86538\x2013.3455\x207.67308C13.1667\x207.48077\x2012.8984\x207.38462\x2012.5569\x207.38462C12.1911\x207.38462\x2011.9146\x207.52885\x2011.7276\x207.82692C11.5869\x208.03503\x2011.4969\x208.3082\x2011.4516\x208.65365C11.4201\x208.89346\x2011.2263\x209.08654\x2010.9844\x209.08654C10.7356\x209.08654\x2010.5314\x208.88275\x2010.5598\x208.63557C10.6243\x208.07296\x2010.8022\x207.6079\x2011.0935\x207.24038C11.4675\x206.74038\x2011.9715\x206.5\x2012.5894\x206.5Z','ShapeFlowChartMagneticDiskIcon','Line','shape-star32-icon','HorizontallyIcon','getSkeleton','path','M4.96372\x202.59116C5.19803\x202.35684\x205.19803\x201.97695\x204.96372\x201.74263C4.7294\x201.50832\x204.3495\x201.50832\x204.11519\x201.74263L2.53945\x203.31837L1.96372\x202.74263C1.7294\x202.50832\x201.3495\x202.50832\x201.11519\x202.74263C0.880874\x202.97695\x200.880874\x203.35684\x201.11519\x203.59116L2.11519\x204.59116C2.3495\x204.82547\x202.7294\x204.82547\x202.96372\x204.59116L4.96372\x202.59116Z','shape-editor-ui.fill.picture.insert','setContextValue','shape-pentagon-icon','FlowChartOfflineStorage','offsetX','underline','descent','ShapeFlowChartAlternateProcessIcon','shape.type.star16','shape-editor-ui.line.sketchType.curved','shape-editor-ui.line.joinType.miter','stops','input','LongDashDot','UniverCore','accent-primary-600\x20univer-h-1.5\x20univer-w-full\x20univer-cursor-pointer\x20univer-appearance-none\x20univer-rounded-full\x20univer-bg-gray-200\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-bg-gray-700\x20[&::-webkit-slider-thumb]:univer-size-3.5\x20[&::-webkit-slider-thumb]:univer-appearance-none\x20[&::-webkit-slider-thumb]:univer-rounded-full\x20[&::-webkit-slider-thumb]:univer-bg-primary-600\x20[&::-webkit-slider-thumb]:univer-shadow-sm','shape-editor-ui.toolbar.expandShapeToolbar','shape-editor-ui.textEditor.paragraphType.normal','align-bottom-icon','getPositionOffset','StrikethroughIcon','LeftRightArrow','borderClassName','getTextRanges','M16\x208.5L16\x204L11\x204L11\x209.5L16\x208.5ZM12.5\x205.5L14.5\x205.5L14.5\x207.5L12.5\x208L12.5\x205.5Z','Teardrop','M2.61816\x202H17.3818L10\x2016.7637L2.61816\x202Z','url(#shape-cloud-icon-clip)','gradientEndColor','ShapeDiagStripeIcon','shape.type.flow-chart-input-output','shape.type.striped-right-arrow','LocaleService','M10\x2019.001L2\x2010.001H6.00098V1.00098L14.001\x201.00098V10.001H18L10\x2019.001Z','_hideFloatMenu','ShapeSnip2DiagRectIcon','RightTriangle','onClick','useObservable','0\x200\x2016\x2016','ShapeFillEditor','tiltY','shape.type.star10','shape-editor-ui.fill.picture.offsetX','univer-text-gray-500','ShapeCloudIcon','frontLabel','shape.type.flow-chart-punched-tape','DeleteIcon','flipY','LeftRightCircularArrow','univer-shadow-none','ShapeMathNotEqualIcon','pointerType','test','M7\x201C7\x204.3137\x204.3137\x207\x201\x207V1H7ZM2.6\x205.0988A4.4\x204.4\x200\x200\x200\x205.0988\x202.6H2.6V5.0988Z','ShapeStripedRightArrowIcon','gradient','startNodePosition','M8.00033\x201.20996C6.43345\x201.20996\x205.23596\x201.88077\x204.64804\x202.94304C4.06338\x203.99943\x204.15123\x205.32084\x204.90099\x206.47062C5.08199\x206.7482\x205.45374\x206.82648\x205.73131\x206.64548C6.00888\x206.46448\x206.08716\x206.09273\x205.90616\x205.81516C5.36418\x204.98402\x205.35768\x204.13897\x205.69797\x203.52412C6.035\x202.91515\x206.78176\x202.40996\x208.00033\x202.40996C9.19423\x202.40996\x2010.0017\x202.93409\x2010.5236\x203.46755C10.7871\x203.73682\x2010.9756\x204.00712\x2011.0974\x204.20903C11.158\x204.30951\x2011.2013\x204.39164\x2011.2284\x204.44625C11.2419\x204.47351\x2011.2514\x204.49377\x2011.2568\x204.50588L11.2621\x204.51771C11.3901\x204.82216\x2011.7407\x204.96686\x2012.046\x204.83992C12.3519\x204.71267\x2012.4968\x204.36149\x2012.3695\x204.05552L11.8231\x204.28278C12.3695\x204.05552\x2012.3697\x204.0558\x2012.3695\x204.05552L12.3691\x204.05437L12.3685\x204.05298L12.367\x204.04953L12.3629\x204.03993L12.3498\x204.01036C12.3388\x203.98619\x2012.3234\x203.95326\x2012.3033\x203.91282C12.2632\x203.83203\x2012.2043\x203.72072\x2012.1249\x203.58908C11.9666\x203.32674\x2011.7235\x202.97805\x2011.3814\x202.62834C10.6921\x201.92381\x209.59192\x201.20996\x208.00033\x201.20996Z','M3.33315\x205.56641C3.00178\x205.56641\x202.73315\x205.83504\x202.73315\x206.16641C2.73315\x206.49778\x203.00178\x206.76641\x203.33315\x206.76641H12.6665C12.9979\x206.76641\x2013.2665\x206.49778\x2013.2665\x206.16641C13.2665\x205.83504\x2012.9979\x205.56641\x2012.6665\x205.56641H3.33315Z','M6.5\x206.97823C6.5\x207.29621\x206.69236\x207.58258\x206.98673\x207.70283L8.38\x208.272V11.752L6.9659\x2012.3477C6.68357\x2012.4667\x206.5\x2012.7432\x206.5\x2013.0496C6.5\x2013.5855\x207.03894\x2013.9538\x207.53828\x2013.7591L13.5175\x2011.4272C14.11\x2011.1961\x2014.5\x2010.6253\x2014.5\x209.98948C14.5\x209.35214\x2014.1082\x208.78037\x2013.5138\x208.55034L7.56524\x206.24825C7.05231\x206.04974\x206.5\x206.42823\x206.5\x206.97823ZM9.7\x2011.284V8.74L13.096\x209.928V10.072L9.7\x2011.284Z','SetParagraphNamedStyleCommand','setZoomRatio','MathMultiply','ShapeLineDashEnum','ShapeLineCapEnum','ShapeActionButtonBackPreviousIcon','ShapeLeftBraceIcon','getBody','univer-flex\x20univer-h-7\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-xs\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','shape-editor-ui.line.dashType.dashDot','strikethrough','Disposable','shape.type.accent-callout2','M6\x202.8V17.2M1.8\x207H18.2','shape-editor-ui.fill.noFill','M9.44444\x2012.3158H10C10.4296\x2012.3158\x2010.7778\x2011.9859\x2010.7778\x2011.5789H12.3333C12.3333\x2012.7998\x2011.2887\x2013.7895\x2010\x2013.7895H9.44444C8.15578\x2013.7895\x207.11111\x2012.7998\x207.11111\x2011.5789V9.63158H7.0549L7.11111\x209.5625V6.94737H5.55556V11.5789H4V5.47368L8.66667\x205.47368V11.5789C8.66667\x2011.9859\x209.01489\x2012.3158\x209.44444\x2012.3158ZM8.66667\x2014.5263H10.7778C12.496\x2014.5263\x2013.8889\x2013.2067\x2013.8889\x2011.5789V7.68421H14.1198L13.3253\x206.53649L12.3333\x207.75329V11.5789H10.7778V9.15789H9.22222L13.4278\x204L17\x209.15789H15.4444V11.5789C15.4444\x2014.0206\x2013.3551\x2016\x2010.7778\x2016H8.66667C6.08934\x2016\x204\x2014.0206\x204\x2011.5789H5.55556C5.55556\x2013.2067\x206.94845\x2014.5263\x208.66667\x2014.5263Z','paddingTop','univer-w-28\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','ShapeAccentBorderCallout3Icon','M3.19888\x205.56299C2.31522\x205.56299\x201.59888\x206.27933\x201.59888\x207.16299V13.163C1.59888\x2014.0466\x202.31522\x2014.763\x203.19888\x2014.763H9.19888C10.0825\x2014.763\x2010.7989\x2014.0466\x2010.7989\x2013.163V7.16299C10.7989\x206.27933\x2010.0825\x205.56299\x209.19888\x205.56299H3.19888ZM2.79888\x207.16299C2.79888\x206.94207\x202.97796\x206.76299\x203.19888\x206.76299H9.19888C9.41979\x206.76299\x209.59888\x206.94207\x209.59888\x207.16299V13.163C9.59888\x2013.3839\x209.41979\x2013.563\x209.19888\x2013.563H3.19888C2.97796\x2013.563\x202.79888\x2013.3839\x202.79888\x2013.163V7.16299Z','fillType','getCurrentLocale','shape.type.flow-chart-extract','editorSurfaceWidth','Hexagon','shape.type.snip-round-rect','dashType','shape-bent-up-arrow-icon','Other','UNIVER_UNKNOWN','shape.type.round1-rect','WRAP','getShapeTextData','maxWidthClassName','shape-star5-icon','ShapeLineJoinEnum','viewportScrollY','some','shape.type.folder-corner','DEFAULT','M6.00013\x203V16','isActive','SHAPE_FLOATING_TOOLBAR_DEFAULT_STROKE_COLOR','ShapeCurvedConnector3Arrow1Icon','shape.type.action-button-movie','M10\x203V17','ShapeNoSmokingIcon','M5.59961\x2013.9463L5.12988\x2013.6523C3.17706\x2012.4297\x202\x2010.5443\x202\x208.5C2\x205.07312\x205.40326\x202\x2010\x202C14.5967\x202\x2018\x205.07312\x2018\x208.5C18\x2011.9269\x2014.5967\x2015\x2010\x2015C9.69917\x2015\x209.40364\x2015.0831\x209.1709\x2015.165C8.92125\x2015.2529\x208.65656\x2015.372\x208.39355\x2015.5029C7.86719\x2015.7649\x207.27855\x2016.1101\x206.71777\x2016.4561C6.33331\x2016.6932\x205.95047\x2016.9379\x205.59961\x2017.1631V13.9463Z','use','FontColorDoubleIcon','react','M7\x204.3H9.6L14.2\x209.8V14.5C14.2\x2015.163\x2013.663\x2015.7\x2013\x2015.7H7C6.337\x2015.7\x205.8\x2015.163\x205.8\x2014.5V5.5C5.8\x204.837\x206.337\x204.3\x207\x204.3Z','SetInlineFormatStrikethroughCommand','@univerjs/docs','!univer-p-1','shape-flow-chart-or-icon','M6.02734\x202H17.7373L13.9727\x2018H2.2627L6.02734\x202Z','transparency','shape.type.wedge-ellipse-callout','shape-wedge-round-rect-callout-icon','DocStateEmitService','shape-snip-round-rect-icon','bodyBehavior','shape-chart-star-icon','ShapeDownArrowIcon','parseFloat','Select','fontScale','colStartX','length','main','HalfFrame','relatedTarget','documentStyle','rectangle','Ribbon2','forwardRef','shape-editor-ui.openPanel','paragraphs','autoFitNoWrap','shape-editor-ui.line.capType.square','buttonClassName','TextTypeIcon','M18\x203V15H14.2881L14.0938\x2015.0859L6.5\x2018.4609V15H2V3H18Z','shape.type.non-isosceles-trapezoid','univer-absolute\x20univer-h-7\x20univer-w-0\x20univer-rotate-45\x20univer-border-l-2\x20univer-border-solid\x20univer-border-red-500','LeftRightUpArrow','shape-star4-icon','shape-block-arc-icon','_injector','univer-min-w-32\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','M1.8\x201.8H18.2V18.2H1.8z','shape.type.irregular-seal1','disposeWithMe','shape-folder-corner-icon_shape-folder-corner-icon-clip-0','type','M9\x202C13.4\x202\x2017\x205.6\x2017\x2010C17\x2011.45\x2016.6\x2012.85\x2015.95\x2014H19V18H9C4.6\x2018\x201\x2014.4\x201\x2010C1\x205.6\x204.6\x202\x209\x202Z','shape.type.diag-stripe','Digit7','oKey','Angular','shape.type.rect-textbox-vertical','shape-editor-ui.fill.picture.align.t','url(#mask0_1_36)','shape.type.right-brace','shape-left-circular-arrow-icon','solid','shape-corner-icon','shape.type.star4','hostRect','onChange','attachPopupToRange','_floatMenu','BentConnector3','ShapeStar8Icon','VERTICAL_ROTATE_ANGLE','isArray','shape-line-inv-icon','then','shape.type.action-button-back-previous','ShapeActionButtonHomeIcon','target','M5.13037\x2012.5475C4.799\x2012.5475\x204.53037\x2012.8161\x204.53037\x2013.1475C4.53037\x2013.4788\x204.799\x2013.7475\x205.13037\x2013.7475H15.1489C15.4803\x2013.7475\x2015.7489\x2013.4788\x2015.7489\x2013.1475C15.7489\x2012.8161\x2015.4803\x2012.5475\x2015.1489\x2012.5475H5.13037Z','M1.8\x202.8H18.2V17.2H1.8z','M8.66518\x2015.56944C6.54997\x2015.46709\x205.5\x2014.24853\x205.5\x2012.16667L5.5\x209.25L5.5\x209.10092L5.5\x209.02855L5.5\x203.8468L1.5\x203.8468L2\x2010.5118C2.2003\x2013.62756\x205.38081\x2016.05556\x208.5918\x2016.05556C8.66075\x2016.05556\x208.59674\x2015.57167\x208.66518\x2015.56944ZM8.5918\x2018C4.32466\x2018\x200.79254\x2014.77386\x200.52637\x2010.63333L0\x202.4444L7\x202.4444L7\x2012.16667C7\x2013.24055\x207.89543\x2014.11111\x209\x2014.11111C10.1046\x2014.11111\x2011.5\x2013.24055\x2011.5\x2012.16667L13\x2012.16667C13\x2013.72842\x2012.0526\x2015.07423\x2010.6865\x2015.69287C12.8423\x2014.92301\x2014.7903\x2012.99938\x2015\x2010.65612L15.2865\x205.4523L15.2969\x205.3611L14.2754\x203.8468L13\x205.4523L13\x2012.16667L11.5\x2012.16667L11.5\x207.3056L9.5\x207.3056L14.4072\x200.5L19\x207.3056L16.957\x207.3056L16.6416\x2010.82416C16.2785\x2014.88383\x2012.7832\x2017.99983\x208.5918\x2018Z','M13.2\x201.8C13.2\x204.562\x2015.438\x206.8\x2018.2\x206.8V13.2C15.438\x2013.2\x2013.2\x2015.438\x2013.2\x2018.2H6.8C6.8\x2015.438\x204.562\x2013.2\x201.8\x2013.2V6.8C4.562\x206.8\x206.8\x204.562\x206.8\x201.8H13.2Z','M8.04993\x206.42969C8.35293\x206.49172\x208.58118\x206.75971\x208.58118\x207.08105C8.581\x207.40229\x208.35289\x207.67047\x208.04993\x207.73242L7.91614\x207.74609H4.73547C4.36833\x207.74609\x204.07063\x207.44816\x204.07043\x207.08105C4.07043\x206.71379\x204.3682\x206.41602\x204.73547\x206.41602H7.91614L8.04993\x206.42969Z','LineInv','M14.5179\x209.48875C14.5179\x209.99175\x2014.1101\x2010.3995\x2013.607\x2010.3995C13.1041\x2010.3995\x2012.6963\x209.99175\x2012.6963\x209.48875C12.6963\x209.1773\x2013.0455\x208.59966\x2013.3114\x208.20487C13.4549\x207.99177\x2013.7591\x207.99177\x2013.9027\x208.20486C14.1687\x208.59965\x2014.5179\x209.1773\x2014.5179\x209.48875Z','stroke','ShapeHexagonIcon','LeftArrowCallout','left-justifying-icon','BorderCallout3','shouldClipShapeTextDocument','FlowchartManualInput','shape-editor-ui.line.solidLine','editorUnitId','univer-flex\x20univer-flex-col\x20univer-gap-3\x20univer-pt-2','566397dTtwTg','shape-bevel-icon','FlowchartMagneticDisk','4\x203','amd','onForward','M5.75\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2015\x2016','WedgeRectCallout','matrix(-1\x200\x200\x20-1\x2020\x2020)','_docSelectionManagerService','KeyCode','ShapeLeftArrowIcon','call','ShapeLineEditor','BACKSPACE','angular','clipPath','ShapeChartXIcon','shape-donut-icon','ShapeUpArrowIcon','shape-editor-ui.toolbar.alignCenter','keys','ShapeFlowChartTerminatorIcon','currentFontSize','M2.06641\x201.9999C2.06641\x201.66853\x202.33504\x201.3999\x202.66641\x201.3999H13.3331C13.6644\x201.3999\x2013.9331\x201.66853\x2013.9331\x201.9999V3.64434C13.9331\x203.97571\x2013.6644\x204.24434\x2013.3331\x204.24434C13.0017\x204.24434\x2012.7331\x203.97571\x2012.7331\x203.64434V2.5999H8.59966V13.3999H10.6665C10.9979\x2013.3999\x2011.2665\x2013.6685\x2011.2665\x2013.9999C11.2665\x2014.3313\x2010.9979\x2014.5999\x2010.6665\x2014.5999L7.99966\x2014.5999L5.33315\x2014.5999C5.00178\x2014.5999\x204.73315\x2014.3313\x204.73315\x2013.9999C4.73315\x2013.6685\x205.00178\x2013.3999\x205.33315\x2013.3999H7.39966V2.5999H3.26641V3.64434C3.26641\x203.97571\x202.99778\x204.24434\x202.66641\x204.24434C2.33504\x204.24434\x202.06641\x203.97571\x202.06641\x203.64434V1.9999Z','subscribeEvent','decorate','M15\x203H18V17H15','shape-hexagon-icon','mouseup','M14\x206H19V14H14V19H6V14H1V6H6V1H14V6ZM7.6\x207.6H2.6V12.4H7.6V17.4H12.4V12.4H17.4V7.6H12.4V2.6H7.6V7.6Z','isRichText','@univerjs-pro/engine-shape','italic','measureDocumentNoWrapTextRangeWidth','univer-w-full\x20univer-min-w-0\x20univer-overflow-hidden','scene','textRect','M4.7061\x2011L3.5\x2011L3.5\x206L5\x206L5\x205L14\x205L14\x206L14.5879\x206L15.2939\x205L16\x205L16\x2013L15.2939\x2013L14.5879\x2012L14\x2012L14\x2015L4.7061\x2015ZM6.306\x2013.4L12.4\x2013.4L12.4\x2010.4L14.4\x2010.4L14.4\x207.6L12.4\x207.6L12.4\x206.6L6.6\x206.6L6.6\x207.6L5.1\x207.6L5.1\x209.4L6.306\x209.4Z','M7.73333\x206.53632C7.8503\x206.42838\x208.00054\x206.36\x208.15971\x206.36C8.47468\x206.36\x208.73001\x206.61533\x208.73001\x206.9303V12.955C8.73001\x2013.256\x208.48601\x2013.5\x208.18501\x2013.5C7.88402\x2013.5\x207.64001\x2013.256\x207.64001\x2012.955V7.67C7.35709\x207.93976\x207.02222\x208.16191\x206.63824\x208.33643C6.32816\x208.47737\x206.00001\x208.23038\x206.00001\x207.88978C6.00001\x207.65483\x206.16132\x207.45293\x206.38069\x207.36882C6.58234\x207.2915\x206.7906\x207.19189\x207.01001\x207.07C7.28651\x206.90103\x207.52762\x206.72615\x207.73333\x206.53632Z','shape-vertical-scroll-icon','auto','white','flatMap','onAfterCommand','M13.7591\x206.66645C13.7591\x206.40387\x2013.5884\x206.1718\x2013.3377\x206.09364C13.087\x206.01549\x2012.8147\x206.10941\x2012.6654\x206.32546L9.67321\x2010.6577C9.60398\x2010.7579\x209.56689\x2010.8769\x209.56689\x2010.9987V11.6731C9.56689\x2012.0045\x209.83552\x2012.2731\x2010.1669\x2012.2731H12.5591V13.3331C12.5591\x2013.6645\x2012.8278\x2013.9331\x2013.1591\x2013.9331C13.4905\x2013.9331\x2013.7591\x2013.6645\x2013.7591\x2013.3331V12.2731H14.1669C14.4983\x2012.2731\x2014.7669\x2012.0045\x2014.7669\x2011.6731C14.7669\x2011.3417\x2014.4983\x2011.0731\x2014.1669\x2011.0731H13.7591V6.66645ZM12.5591\x208.59091V11.0731H10.8447L12.5591\x208.59091Z','shape.type.star7','GradientColorPicker','ShapeBracketPairIcon','function','M19.083\x207H17V16.9688H7V19L1\x2014L7\x209V10.9688H11V7H9.08301L14.083\x201L19.083\x207ZM15.55\x205.55V15.5688H5.75L3.65\x2014L5.75\x2012.43H12.45V5.55L14.083\x203.55L15.55\x205.55Z','shape-star24-icon','shape-block-arc-icon_shape-block-arc-icon-clip-0','isNaN','self','shape-floating-toolbar-menu-panel','shape-math-multiply-icon','shape.type.star6','makeDirty','ShapeBevelIcon','noFill','shape.type.flow-chart-connector','shape-editor-ui.line.beginArrowSize','CLIP','color','shape.type.ellipse-ribbon2','shape.type.straight-connector2','editorLeft','shape.type.accent-callout3','M12.1543\x201.00391C13.7394\x201.08421\x2015\x202.39489\x2015\x204V5.30762C14.5832\x205.14723\x2014.149\x205.02276\x2013.7002\x204.93848V4C13.7002\x203.06112\x2012.9389\x202.2998\x2012\x202.2998H4C3.06112\x202.2998\x202.2998\x203.06112\x202.2998\x204V12C2.2998\x2012.9389\x203.06112\x2013.7002\x204\x2013.7002H4.93848C5.02276\x2014.149\x205.14723\x2014.5832\x205.30762\x2015H4C2.39489\x2015\x201.08421\x2013.7394\x201.00391\x2012.1543L1\x2012V4C1\x202.34315\x202.34315\x201\x204\x201H12L12.1543\x201.00391Z','AccentBorderCallout3','shape.type.swoosh-arrow','shape-no-smoking-icon','M13.5\x207.8L15.2\x206.8','shapeTextOpticalVerticalAlign','QuadArrow','ShapeLeftCircularArrowIcon','231128guqvVl','step','bold','M2.20012\x2013.6905C2.65851\x2013.6905\x203.03012\x2013.3189\x203.03012\x2012.8605C3.03012\x2012.4021\x202.65851\x2012.0305\x202.20012\x2012.0305C1.74172\x2012.0305\x201.37012\x2012.4021\x201.37012\x2012.8605C1.37012\x2013.3189\x201.74172\x2013.6905\x202.20012\x2013.6905Z','M12\x2016L8\x2013H4V7H8L12\x204V16ZM8.5\x208.6H5.6V11.4H8.5L10.4\x2012.825V7.174L8.5\x208.6Z','deg)\x20scaleY(','M3.5\x2013.5C2.49588\x2013.5\x200.5\x2013\x200.5\x2013L2.5\x208.5L0.5\x203.5C0.5\x203.5\x202.42459\x204\x203.42871\x204L3.5\x205.5C3.36588\x205.5\x203.09687\x205.51359\x202.96191\x205.5L3.8291\x208.56543L2.59668\x2011.8027C2.72342\x2011.8404\x202.84589\x2011.8757\x202.96191\x2011.9053C3.29605\x2011.9903\x203.43669\x2011.9999\x203.42871\x2012H4V5.5H3.5L3.42871\x204H5.5V9V13.5H3.5Z','worksheet','BentUpArrow','ShapeRibbonIcon','lines','Star10','shape-notched-right-arrow-icon','M8\x203H12V17H8','shape-editor-ui.toolbar.bold','transform','click','ShapeBentUpArrowIcon','shape-down-arrow-icon','crossAxisLength','M10\x206.00001C10.8571\x206.00001\x2011.5338\x206.21564\x2012.0414\x206.64691C12.4925\x207.03505\x2012.718\x207.52022\x2012.718\x208.09165C12.718\x208.49057\x2012.6278\x208.8248\x2012.4474\x209.09434C12.2444\x209.38545\x2011.9398\x209.60108\x2011.5338\x209.75203V9.78437C11.9173\x209.87062\x2012.2556\x2010.0863\x2012.5263\x2010.4313C12.8421\x2010.7978\x2013\x2011.2183\x2013\x2011.7035C13\x2012.3828\x2012.7406\x2012.9326\x2012.2218\x2013.3639C11.6917\x2013.7844\x2010.9474\x2014\x2010\x2014C9.04135\x2014\x208.29699\x2013.7844\x207.7782\x2013.3639C7.2594\x2012.9326\x207\x2012.3828\x207\x2011.7035C7\x2011.2183\x207.15789\x2010.7978\x207.47368\x2010.4313C7.74436\x2010.0863\x208.07143\x209.87062\x208.46617\x209.78437V9.75203C8.06015\x209.60108\x207.75564\x209.38545\x207.55263\x209.09434C7.37218\x208.8248\x207.28195\x208.49057\x207.28195\x208.09165C7.28195\x207.52022\x207.50752\x207.03505\x207.95865\x206.64691C8.45489\x206.21564\x209.14286\x206.00001\x2010\x206.00001ZM10\x206.93801C9.50376\x206.93801\x209.10902\x207.05661\x208.81579\x207.31537C8.55639\x207.531\x208.43233\x207.81133\x208.43233\x208.13478C8.43233\x208.50135\x208.53383\x208.79246\x208.74812\x209.00809C9.00752\x209.26685\x209.42481\x209.39623\x2010\x209.39623C10.5639\x209.39623\x2010.9812\x209.26685\x2011.2519\x209.00809C11.4549\x208.79246\x2011.5677\x208.50135\x2011.5677\x208.13478C11.5677\x207.81133\x2011.4323\x207.531\x2011.1842\x207.31537C10.891\x207.05661\x2010.4962\x206.93801\x2010\x206.93801ZM10\x2010.2695C9.41353\x2010.2695\x208.96241\x2010.3989\x208.66917\x2010.6793C8.36466\x2010.938\x208.21804\x2011.2722\x208.21804\x2011.7035C8.21804\x2012.1024\x208.36466\x2012.4259\x208.68045\x2012.6739C8.98496\x2012.9218\x209.42481\x2013.0512\x2010\x2013.0512C10.5639\x2013.0512\x2011.015\x2012.9218\x2011.3421\x2012.6739C11.6353\x2012.4259\x2011.782\x2012.1024\x2011.782\x2011.7035C11.782\x2011.2722\x2011.6353\x2010.938\x2011.3421\x2010.69C11.0263\x2010.4097\x2010.5865\x2010.2695\x2010\x2010.2695Z','M8.22957\x205.47839C8.30034\x205.50767\x208.36664\x205.55107\x208.42417\x205.6086L10.4242\x207.6086C10.6585\x207.84291\x2010.6585\x208.22281\x2010.4242\x208.45713C10.1899\x208.69144\x209.80995\x208.69144\x209.57564\x208.45713L8.5999\x207.48139V13.6995C8.5999\x2014.0309\x208.33127\x2014.2995\x207.9999\x2014.2995C7.66853\x2014.2995\x207.3999\x2014.0309\x207.3999\x2013.6995V7.48139L6.42417\x208.45713C6.18985\x208.69144\x205.80995\x208.69144\x205.57564\x208.45713C5.34132\x208.22281\x205.34132\x207.84291\x205.57564\x207.6086L7.57541\x205.60882C7.7522\x205.43203\x208.01209\x205.38841\x208.22957\x205.47839Z','currentColor','shape.type.left-bracket','shape-trapezoid-icon','M7.2857\x206.0029L7.5253\x206.2425L7.5774\x206.2946L7.6296\x206.3468L7.6817\x206.3989L7.7339\x206.4511L7.7861\x206.5033L7.8382\x206.5554L7.8904\x206.6075L7.9425\x206.6597L7.9947\x206.7119L8.0468\x206.764L8.099\x206.8162L8.1511\x206.8683L8.2033\x206.9205L8.2554\x206.9726L8.3076\x207.0248L8.3597\x207.0769L8.4119\x207.1291L8.4641\x207.1812L8.5162\x207.2334L8.5684\x207.2855L8.6205\x207.3377L8.7248\x207.442L8.777\x207.4942L8.8291\x207.5463L8.8813\x207.5985L8.9334\x207.6506L9.0377\x207.7549L9.0899\x207.8071L9.1421\x207.8592L9.1942\x207.9114L9.2464\x207.9635L9.2985\x208.0157L9.3507\x208.0678L9.4028\x208.12L9.455\x208.1722L9.5071\x208.2243L9.5593\x208.2765L9.6114\x208.3286L9.6636\x208.3808L9.7157\x208.4329L9.7679\x208.4851L9.82\x208.5372L9.8722\x208.5894L9.9243\x208.6415L9.9765\x208.6937L10.0287\x208.7458L10.0808\x208.798L10.133\x208.8501L10.1851\x208.9023L10.2373\x208.9544L10.2894\x209.0066L10.3416\x209.0588L10.3937\x209.1109L10.4459\x209.1631L10.498\x209.2152L10.5502\x209.2674L10.6024\x209.3195L10.6545\x209.3717L10.7066\x209.4238L10.7588\x209.476L10.811\x209.5281L10.8631\x209.5803L10.9153\x209.6324L10.9674\x209.6846L11.0196\x209.7368L11.0717\x209.7889L11.1239\x209.841L11.176\x209.8932L11.2282\x209.9454L11.2803\x209.9975L11.3325\x2010.0497L11.3846\x2010.1018L11.4368\x2010.154L11.489\x2010.2061L11.5411\x2010.2583L11.5933\x2010.3104L11.6454\x2010.3626L11.6976\x2010.4147L11.7497\x2010.4669L11.8019\x2010.5191L11.854\x2010.5712L11.9062\x2010.6234L11.9583\x2010.6755L12.0105\x2010.7277L12.0627\x2010.7798L12.1148\x2010.832L12.1669\x2010.8841L12.2191\x2010.9363L12.2713\x2010.9884L12.3234\x2011.0406L12.3756\x2011.0927L12.4277\x2011.1449L12.4799\x2011.197L12.532\x2011.2492L12.5842\x2011.3014L12.6363\x2011.3535L13.3143\x2012.0315L13.3665\x2012.0836L13.4186\x2012.1358L13.4708\x2012.1879L13.523\x2012.2401L13.5751\x2012.2923L13.6272\x2012.3444L13.6794\x2012.3966L13.7316\x2012.4487L13.7837\x2012.5009L13.8359\x2012.553L13.888\x2012.6052L13.9402\x2012.6573L13.9923\x2012.7095L14.0445\x2012.7616L14.0966\x2012.8138L14.4203\x2013.1374L14.4293\x2013.1278L14.4756\x2013.0768L14.5201\x2013.0245L14.5645\x2012.9705L14.6079\x2012.9159L14.6502\x2012.8606L14.6915\x2012.8047L14.7317\x2012.7482L14.7709\x2012.6911L14.8091\x2012.6334L14.8462\x2012.5751L14.8823\x2012.5162L14.9174\x2012.4568L14.9515\x2012.3968L14.9846\x2012.3363L15.0167\x2012.2753L15.0477\x2012.2138L15.0778\x2012.1517L15.1068\x2012.0892L15.1349\x2012.0263L15.1619\x2011.9628L15.188\x2011.8989L15.2131\x2011.8346L15.2372\x2011.7698L15.2603\x2011.7046L15.2824\x2011.6391L15.3035\x2011.5731L15.3236\x2011.5068L15.3428\x2011.4401L15.361\x2011.3731L15.3782\x2011.3057L15.3945\x2011.238L15.4097\x2011.17L15.424\x2011.1017L15.4374\x2011.0332L15.4498\x2010.9643L15.4612\x2010.8952L15.4716\x2010.8259L15.4812\x2010.7564L15.4897\x2010.6866L15.4973\x2010.6166L15.504\x2010.5465L15.5097\x2010.4761L15.5144\x2010.4057L15.5182\x2010.335L15.5211\x2010.2643L15.5231\x2010.1934L15.5241\x2010.1224L15.5242\x2010.0513L15.5233\x209.9802L15.5216\x209.909L15.5189\x209.8377L15.5152\x209.7664L15.5107\x209.6951L15.5052\x209.6238L15.4989\x209.5525L15.4916\x209.4812L15.4834\x209.41L15.4743\x209.3387L15.4643\x209.2676L15.4534\x209.1965L15.4417\x209.1256L15.429\x209.0547L15.4154\x208.984L15.401\x208.9134L15.3856\x208.8429L15.3694\x208.7726L15.3523\x208.7025L15.3343\x208.6325L15.3155\x208.5628L15.2958\x208.4932L15.2752\x208.424L15.2538\x208.3549L15.2315\x208.2861L15.2083\x208.2176L15.1843\x208.1494L15.1595\x208.0815L15.1338\x208.0139L15.1072\x207.9466L15.0798\x207.8796L15.0516\x207.8131L15.0226\x207.7468L14.9927\x207.681L14.962\x207.6156L14.9305\x207.5505L14.8981\x207.486L14.865\x207.4218L14.831\x207.3581L14.7962\x207.2949L14.7606\x207.2321L14.7243\x207.1698L14.6871\x207.108L14.6491\x207.0468L14.6104\x206.9861L14.5708\x206.9259L14.5305\x206.8663L14.4894\x206.8073L14.4475\x206.7488L14.4048\x206.691L14.3614\x206.6338L14.3172\x206.5772L14.2723\x206.5212L14.2266\x206.4659L14.1801\x206.4112L14.1329\x206.3573L14.0849\x206.304L14.0362\x206.2514L13.9868\x206.1996L13.9366\x206.1485L13.8838\x206.0963L13.8301\x206.0448L13.7759\x205.9943L13.7211\x205.9448L13.6656\x205.8963L13.6097\x205.8488L13.5532\x205.8023L13.4962\x205.7568L13.4386\x205.7123L13.3805\x205.6687L13.322\x205.6262L13.263\x205.5847L13.2034\x205.5442L13.1434\x205.5046L13.083\x205.4661L13.0221\x205.4285L12.9608\x205.3919L12.8991\x205.3564L12.8369\x205.3218L12.7744\x205.2882L12.7115\x205.2556L12.6482\x205.224L12.5845\x205.1933L12.5205\x205.1637L12.4561\x205.1351L12.3914\x205.1074L12.3264\x205.0808L12.2611\x205.0551L12.1955\x205.0304L12.1296\x205.0068L12.0634\x204.9841L11.997\x204.9624L11.9303\x204.9417L11.8634\x204.9219L11.7963\x204.9032L11.7289\x204.8855L11.6614\x204.8687L11.5936\x204.853L11.5257\x204.8382L11.4576\x204.8244L11.3894\x204.8116L11.321\x204.7999L11.2524\x204.7891L11.1838\x204.7793L11.115\x204.7704L11.0462\x204.7626L10.9772\x204.7558L10.9082\x204.7499L10.8391\x204.7451L10.77\x204.7412L10.7008\x204.7384L10.6316\x204.7365L10.5624\x204.7356L10.4932\x204.7357L10.4239\x204.7368L10.3547\x204.7389L10.2856\x204.742L10.2165\x204.7461L10.1474\x204.7512L10.0784\x204.7572L10.0094\x204.7643L9.9406\x204.7723L9.8719\x204.7814L9.8033\x204.7914L9.7348\x204.8024L9.6664\x204.8144L9.5982\x204.8274L9.5301\x204.8414L9.4622\x204.8564L9.3945\x204.8724L9.327\x204.8893L9.2597\x204.9073L9.1926\x204.9262L9.1258\x204.9462L9.0591\x204.9671L8.9928\x204.989L8.9267\x205.0119L8.8608\x205.0359L8.7953\x205.0607L8.7301\x205.0866L8.6651\x205.1135L8.6005\x205.1414L8.5362\x205.1702L8.4723\x205.2001L8.4087\x205.2309L8.3455\x205.2628L8.2826\x205.2956L8.2202\x205.3294L8.1581\x205.3642L8.0965\x205.4L8.0352\x205.4368L7.9744\x205.4746L7.9141\x205.5133L7.8542\x205.5531L7.7948\x205.5939L7.7359\x205.6356L7.6774\x205.6784L7.6195\x205.7221L7.562\x205.7668L7.5051\x205.8126L7.4487\x205.8593L7.3929\x205.907L7.3376\x205.9557ZM13.1968\x206.9649L13.241\x207.0115L13.2845\x207.0587L13.3273\x207.1068L13.3693\x207.1556L13.4106\x207.2051L13.4512\x207.2554L13.491\x207.3063L13.53\x207.358L13.5683\x207.4102L13.6059\x207.4632L13.6426\x207.5168L13.6786\x207.571L13.7139\x207.6258L13.7483\x207.6812L13.7819\x207.7372L13.8148\x207.7937L13.8469\x207.8508L13.8781\x207.9083L13.9086\x207.9665L13.9382\x208.0251L13.9671\x208.0842L13.9951\x208.1437L14.0222\x208.2037L14.0486\x208.2641L14.0741\x208.325L14.0987\x208.3863L14.1225\x208.4479L14.1455\x208.5099L14.1676\x208.5723L14.1888\x208.6351L14.2092\x208.6981L14.2287\x208.7615L14.2473\x208.8252L14.265\x208.8891L14.2818\x208.9534L14.2977\x209.0179L14.3127\x209.0826L14.3268\x209.1476L14.34\x209.2127L14.3523\x209.2781L14.3636\x209.3436L14.374\x209.4093L14.3834\x209.4752L14.3919\x209.5412L14.3994\x209.6073L14.406\x209.6735L14.4116\x209.7398L14.4163\x209.8066L14.42\x209.8755L14.4226\x209.944L14.4242\x2010.0122L14.4246\x2010.0801L14.424\x2010.1476L14.4223\x2010.2148L14.4196\x2010.2815L14.4158\x2010.3479L14.411\x2010.4139L14.4051\x2010.4795L14.3981\x2010.5447L14.3902\x2010.6094L14.3812\x2010.6738L14.3713\x2010.7376L14.3603\x2010.801L14.3483\x2010.8639L14.3354\x2010.9264L14.3181\x2011.0029L14.1801\x2011.3416L13.8784\x2011.0399L13.834\x2010.9956L13.7897\x2010.9512L13.5235\x2010.685L13.4791\x2010.6406L13.4347\x2010.5963L13.3904\x2010.5519L13.346\x2010.5076L13.3016\x2010.4632L13.2573\x2010.4188L13.2129\x2010.3745L13.1685\x2010.3301L13.1242\x2010.2857L13.0798\x2010.2414L13.0354\x2010.197L12.9911\x2010.1526L12.9467\x2010.1083L12.9023\x2010.0639L12.858\x2010.0195L12.8136\x209.9752L12.7692\x209.9308L12.7249\x209.8864L12.6805\x209.8421L12.6361\x209.7977L12.5918\x209.7533L12.5474\x209.709L12.503\x209.6646L12.4587\x209.6202L12.4143\x209.5759L12.3699\x209.5315L12.3256\x209.4871L12.2812\x209.4428L12.2368\x209.3984L12.1925\x209.354L12.1481\x209.3097L12.1038\x209.2653L12.0594\x209.2209L12.015\x209.1766L11.9707\x209.1322L11.9263\x209.0878L11.8819\x209.0435L11.8376\x208.9991L11.3051\x208.4667L11.2608\x208.4223L11.2164\x208.378L11.172\x208.3336L11.1277\x208.2892L11.0833\x208.2449L11.0389\x208.2005L10.9946\x208.1561L10.9502\x208.1118L10.9058\x208.0674L10.8615\x208.023L10.8171\x207.9787L10.7727\x207.9343L10.7284\x207.8899L10.684\x207.8456L10.6397\x207.8012L10.5953\x207.7568L10.5509\x207.7125L10.5066\x207.6681L10.4622\x207.6237L10.4178\x207.5794L10.3735\x207.535L10.3291\x207.4906L10.2847\x207.4463L10.2404\x207.4019L10.196\x207.3575L10.1516\x207.3132L10.1072\x207.2688L10.0629\x207.2244L10.0185\x207.1801L9.9741\x207.1357L9.9298\x207.0913L9.8854\x207.047L9.841\x207.0026L9.7967\x206.9582L9.7523\x206.9139L9.7079\x206.8695L9.6636\x206.8251L9.6192\x206.7808L9.4861\x206.6477L9.4417\x206.6033L9.3974\x206.5589L9.353\x206.5146L9.3086\x206.4702L9.2643\x206.4258L9.0075\x206.169L9.3453\x206.0305L9.4131\x206.0083L9.476\x205.9889L9.5391\x205.9707L9.6025\x205.9537L9.6662\x205.9378L9.73\x205.923L9.794\x205.9094L9.8583\x205.8969L9.9227\x205.8856L9.9872\x205.8754L10.0519\x205.8664L10.1167\x205.8585L10.1816\x205.8517L10.2466\x205.8461L10.3117\x205.8416L10.3768\x205.8383L10.4419\x205.8361L10.5071\x205.835L10.5723\x205.8351L10.6375\x205.8364L10.7026\x205.8387L10.7678\x205.8423L10.8328\x205.8469L10.8978\x205.8527L10.9627\x205.8597L11.0275\x205.8678L11.0921\x205.877L11.1567\x205.8874L11.221\x205.8989L11.2852\x205.9115L11.3493\x205.9253L11.4131\x205.9403L11.4767\x205.9563L11.5401\x205.9736L11.6032\x205.9919L11.666\x206.0114L11.7286\x206.0321L11.7908\x206.0539L11.8528\x206.0768L11.9144\x206.1009L11.9756\x206.1261L12.0366\x206.1525L12.0971\x206.18L12.1572\x206.2087L12.2169\x206.2385L12.2761\x206.2694L12.335\x206.3015L12.3933\x206.3347L12.4512\x206.369L12.5086\x206.4045L12.5654\x206.4412L12.6217\x206.4789L12.6775\x206.5179L12.7327\x206.5579L12.7873\x206.5991L12.8413\x206.6415L12.8947\x206.6849L12.9475\x206.7295L12.9996\x206.7753L13.051\x206.8221L13.1018\x206.8701L13.1518\x206.9192ZM6.0029\x207.2148L5.9745\x207.2457L5.9259\x207.3002L5.8782\x207.3553L5.8315\x207.411L5.7858\x207.4671L5.7411\x207.5238L5.6973\x207.581L5.6545\x207.6387L5.6127\x207.6969L5.5719\x207.7555L5.532\x207.8146L5.4931\x207.8742L5.4552\x207.9342L5.4183\x207.9947L5.3823\x208.0555L5.3473\x208.1168L5.3133\x208.1785L5.2803\x208.2405L5.2482\x208.303L5.2171\x208.3657L5.187\x208.4289L5.1578\x208.4924L5.1296\x208.5562L5.1024\x208.6204L5.0762\x208.6848L5.0509\x208.7496L5.0267\x208.8147L5.0033\x208.88L4.981\x208.9456L4.9596\x209.0114L4.9392\x209.0775L4.9198\x209.1438L4.9013\x209.2104L4.8839\x209.2771L4.8674\x209.344L4.8518\x209.4112L4.8373\x209.4785L4.8237\x209.546L4.8111\x209.6136L4.7994\x209.6814L4.7887\x209.7493L4.7791\x209.8173L4.7703\x209.8854L4.7626\x209.9536L4.7558\x2010.0219L4.75\x2010.0903L4.7452\x2010.1588L4.7413\x2010.2273L4.7384\x2010.2958L4.7365\x2010.3644L4.7356\x2010.433L4.7356\x2010.5015L4.7366\x2010.5701L4.7386\x2010.6387L4.7416\x2010.7072L4.7455\x2010.7757L4.7504\x2010.8441L4.7563\x2010.9125L4.7632\x2010.9808L4.771\x2011.049L4.7798\x2011.1171L4.7896\x2011.1852L4.8003\x2011.253L4.812\x2011.3208L4.8247\x2011.3884L4.8384\x2011.4559L4.853\x2011.5232L4.8687\x2011.5903L4.8852\x2011.6572L4.9028\x2011.724L4.9213\x2011.7905L4.9408\x2011.8568L4.9613\x2011.9229L4.9828\x2011.9887L5.0052\x2012.0542L5.0286\x2012.1196L5.0529\x2012.1846L5.0783\x2012.2493L5.1046\x2012.3137L5.1319\x2012.3779L5.1601\x2012.4417L5.1894\x2012.5051L5.2196\x2012.5683L5.2508\x2012.631L5.2829\x2012.6934L5.316\x2012.7555L5.3501\x2012.8171L5.3852\x2012.8783L5.4212\x2012.9392L5.4582\x2012.9996L5.4962\x2013.0596L5.5352\x2013.1191L5.5751\x2013.1782L5.616\x2013.2368L5.6579\x2013.2949L5.7008\x2013.3526L5.7446\x2013.4097L5.7895\x2013.4664L5.8353\x2013.5225L5.882\x2013.5781L5.9298\x2013.6331L5.9785\x2013.6876L6.0282\x2013.7416L6.0789\x2013.7949L6.1306\x2013.8477L6.1819\x2013.8986L6.2336\x2013.9484L6.286\x2013.9975L6.3391\x2014.0457L6.3928\x2014.0931L6.4471\x2014.1397L6.5021\x2014.1855L6.5577\x2014.2305L6.6139\x2014.2746L6.6707\x2014.318L6.728\x2014.3606L6.7859\x2014.4023L6.8444\x2014.4432L6.9034\x2014.4833L6.9629\x2014.5226L7.023\x2014.561L7.0835\x2014.5986L7.1446\x2014.6354L7.2061\x2014.6713L7.2681\x2014.7064L7.3305\x2014.7407L7.3934\x2014.7741L7.4567\x2014.8067L7.5204\x2014.8384L7.5845\x2014.8693L7.649\x2014.8993L7.7139\x2014.9285L7.7791\x2014.9568L7.8447\x2014.9842L7.9106\x2015.0108L7.9769\x2015.0365L8.0434\x2015.0614L8.1103\x2015.0854L8.1774\x2015.1085L8.2449\x2015.1307L8.3125\x2015.1521L8.3804\x2015.1726L8.4486\x2015.1922L8.517\x2015.2109L8.5855\x2015.2287L8.6543\x2015.2456L8.7233\x2015.2617L8.7924\x2015.2768L8.8617\x2015.2911L8.9311\x2015.3044L9.0007\x2015.3169L9.0703\x2015.3285L9.1401\x2015.3391L9.2099\x2015.3489L9.2799\x2015.3577L9.3499\x2015.3656L9.4199\x2015.3726L9.49\x2015.3787L9.5601\x2015.3839L9.6303\x2015.3882L9.7004\x2015.3915L9.7705\x2015.394L9.8405\x2015.3955L9.9106\x2015.396L9.9806\x2015.3957L10.0505\x2015.3944L10.1203\x2015.3922L10.1901\x2015.389L10.2597\x2015.3849L10.3292\x2015.3799L10.3986\x2015.374L10.4679\x2015.3671L10.5369\x2015.3592L10.6058\x2015.3504L10.6746\x2015.3407L10.7431\x2015.33L10.8115\x2015.3184L10.8796\x2015.3058L10.9474\x2015.2923L11.0151\x2015.2778L11.0824\x2015.2624L11.1495\x2015.246L11.2164\x2015.2286L11.2829\x2015.2103L11.3491\x2015.191L11.415\x2015.1708L11.4805\x2015.1496L11.5458\x2015.1274L11.6106\x2015.1043L11.6751\x2015.0802L11.7392\x2015.0551L11.8029\x2015.029L11.8663\x2015.002L11.9292\x2014.974L11.9916\x2014.945L12.0537\x2014.915L12.1152\x2014.8841L12.1763\x2014.8522L12.237\x2014.8192L12.2971\x2014.7853L12.3567\x2014.7504L12.4159\x2014.7145L12.4745\x2014.6777L12.5326\x2014.6398L12.5901\x2014.6009L12.6471\x2014.561L12.7035\x2014.5201L12.7593\x2014.4782L12.8146\x2014.4354L12.8692\x2014.3914L12.9233\x2014.3465L12.9758\x2014.3013L13.0268\x2014.2548L13.0351\x2014.247L13.026\x2014.2378L12.9743\x2014.1861L12.9226\x2014.1345L12.8709\x2014.0828L12.8193\x2014.0311L12.6126\x2013.8244L12.5609\x2013.7728L12.5093\x2013.7211L12.4059\x2013.6178L12.3542\x2013.5661L12.3026\x2013.5144L12.2509\x2013.4627L12.1992\x2013.4111L12.1476\x2013.3594L12.0959\x2013.3077L11.9409\x2013.1527L11.8892\x2013.101L11.8375\x2013.0494L11.7342\x2012.946L11.6825\x2012.8944L11.6308\x2012.8427L11.4758\x2012.6877L11.4242\x2012.636L11.3725\x2012.5843L11.2692\x2012.481L11.2175\x2012.4293L11.1141\x2012.326L11.0625\x2012.2743L11.0108\x2012.2226L10.9591\x2012.171L10.9074\x2012.1193L10.8558\x2012.0676L10.8041\x2012.016L10.7524\x2011.9643L10.7008\x2011.9126L10.6491\x2011.8609L10.5457\x2011.7576L10.4941\x2011.7059L10.4424\x2011.6542L10.3907\x2011.6026L10.3391\x2011.5509L10.2874\x2011.4992L10.2357\x2011.4476L10.184\x2011.3959L10.0807\x2011.2925L10.029\x2011.2409L9.9774\x2011.1892L9.9257\x2011.1375L9.8223\x2011.0342L9.7707\x2010.9825L9.719\x2010.9308L9.564\x2010.7758L9.5123\x2010.7242L9.4606\x2010.6725L9.3573\x2010.5691L9.3056\x2010.5175L9.254\x2010.4658L9.2023\x2010.4141L9.1506\x2010.3625L9.099\x2010.3108L9.0473\x2010.2591L8.9956\x2010.2074L8.8923\x2010.1041L8.8406\x2010.0524L8.7889\x2010.0007L8.7373\x209.9491L8.6856\x209.8974L8.6339\x209.8457L8.5822\x209.7941L8.5306\x209.7424L8.4272\x209.6391L8.3756\x209.5874L8.3239\x209.5357L8.2722\x209.4841L8.1689\x209.3807L8.1172\x209.329L8.0655\x209.2774L8.0139\x209.2257L7.9622\x209.174L7.9105\x209.1223L7.8589\x209.0707L7.8072\x209.019L7.7555\x208.9673L7.7038\x208.9157L7.6522\x208.864L7.6005\x208.8123L7.5488\x208.7606L7.4971\x208.709L7.4455\x208.6573L7.3938\x208.6056L7.3421\x208.554L7.2905\x208.5023L7.2388\x208.4506L7.1871\x208.3989L7.1354\x208.3473L7.0321\x208.2439L6.9804\x208.1923L6.9288\x208.1406L6.8771\x208.0889L6.8254\x208.0372L6.7737\x207.9856L6.6187\x207.8306L6.5671\x207.7789L6.5154\x207.7272L6.4637\x207.6755L6.257\x207.4689L6.2054\x207.4172L6.1537\x207.3655L6.102\x207.3138L6.0503\x207.2622ZM6.8701\x2013.0308L6.8222\x2012.9801L6.7754\x2012.9288L6.7298\x2012.8768L6.6852\x2012.8241L6.6418\x2012.7708L6.5996\x2012.7169L6.5584\x2012.6624L6.5184\x2012.6073L6.4796\x2012.5516L6.4418\x2012.4954L6.4052\x2012.4386L6.3698\x2012.3814L6.3354\x2012.3236L6.3022\x2012.2654L6.2702\x2012.2067L6.2393\x2012.1475L6.2095\x2012.0879L6.1809\x2012.0279L6.1534\x2011.9676L6.127\x2011.9068L6.1018\x2011.8456L6.0777\x2011.7841L6.0547\x2011.7223L6.0329\x2011.6601L6.0123\x2011.5977L5.9928\x2011.535L5.9744\x2011.472L5.9571\x2011.4087L5.941\x2011.3453L5.926\x2011.2816L5.9122\x2011.2177L5.8995\x2011.1536L5.8879\x2011.0893L5.8775\x2011.0249L5.8682\x2010.9603L5.8601\x2010.8957L5.8531\x2010.8309L5.8472\x2010.766L5.8425\x2010.7011L5.8389\x2010.6361L5.8365\x2010.5711L5.8351\x2010.506L5.835\x2010.4409L5.8359\x2010.3758L5.838\x2010.3108L5.8413\x2010.2458L5.8456\x2010.1808L5.8512\x2010.1159L5.8578\x2010.0511L5.8656\x209.9864L5.8745\x209.9218L5.8846\x209.8574L5.8958\x209.7931L5.9082\x209.7289L5.9217\x209.665L5.9363\x209.6012L5.952\x209.5377L5.969\x209.4743L5.987\x209.4113L6.0062\x209.3485L6.0265\x209.286L6.1464\x208.9383L6.4177\x209.1852L6.4653\x209.2328L6.7311\x209.4985L6.7754\x209.5428L6.9525\x209.72L6.9968\x209.7643L7.0854\x209.8529L7.1297\x209.8972L7.174\x209.9415L7.2183\x209.9857L7.2626\x2010.03L7.5283\x2010.2958L7.5726\x2010.3401L7.6612\x2010.4287L7.7055\x2010.4729L7.7498\x2010.5172L7.7941\x2010.5615L7.8827\x2010.6501L7.927\x2010.6944L11.1029\x2013.8703L11.0518\x2014.1283L10.8713\x2014.1753L10.8103\x2014.1901L10.749\x2014.2039L10.6874\x2014.2167L10.6255\x2014.2285L10.5632\x2014.2394L10.5008\x2014.2492L10.438\x2014.2581L10.3751\x2014.266L10.3119\x2014.2729L10.2485\x2014.2789L10.185\x2014.2838L10.1213\x2014.2878L10.0574\x2014.2908L9.9934\x2014.2928L9.9292\x2014.2938L9.865\x2014.2938L9.8007\x2014.2929L9.7363\x2014.2909L9.6718\x2014.288L9.6073\x2014.2841L9.5427\x2014.2793L9.4782\x2014.2734L9.4137\x2014.2665L9.3491\x2014.2587L9.2846\x2014.2499L9.2202\x2014.2401L9.1558\x2014.2293L9.0915\x2014.2175L9.0273\x2014.2048L8.9633\x2014.191L8.8993\x2014.1763L8.8355\x2014.1606L8.7719\x2014.1438L8.7084\x2014.1261L8.6452\x2014.1074L8.5821\x2014.0877L8.5193\x2014.067L8.4567\x2014.0454L8.3944\x2014.0227L8.3323\x2013.999L8.2706\x2013.9743L8.2091\x2013.9487L8.148\x2013.922L8.0872\x2013.8943L8.0268\x2013.8657L7.9667\x2013.836L7.907\x2013.8053L7.8478\x2013.7736L7.789\x2013.741L7.7306\x2013.7073L7.6726\x2013.6726L7.6152\x2013.6369L7.5582\x2013.6002L7.5017\x2013.5624L7.4458\x2013.5237L7.3904\x2013.484L7.3356\x2013.4432L7.2813\x2013.4014L7.2277\x2013.3587L7.1746\x2013.3149L7.1222\x2013.2701L7.0704\x2013.2243L7.0193\x2013.1774L6.9689\x2013.1296L6.9191\x2013.0807Z','RichTextEditingMutation','ShapeFlowChartOrIcon','M15.5426\x2012.4L17.151\x2012.4L15.6873\x209.9999L17.1719\x207.5634L15.5426\x207.5442L15.5426\x204.5287L12.4\x204.5287L12.4\x202.8867L10\x204.3867L7.6\x202.8867L7.6\x204.5287L4.9457\x204.5287L4.9457\x207.6466L3.222\x207.5954L4.9914\x2010.0117L3.1999\x2012.4L4.9457\x2012.4L4.9457\x2015.4713L7.6\x2015.4713L7.6\x2017.112L10\x2015.6132L12.4\x2017.112L12.4\x2015.4713L15.5426\x2015.4713ZM17.1426\x2017.0713L14\x2017.0713L14\x2020L10\x2017.5L6\x2020L6\x2017.0713L3.3457\x2017.0713L3.3457\x2014L0\x2014L3\x2010L0\x205.9033L3.3457\x206L3.3457\x202.9287L6\x202.9287L6\x200L10\x202.5L14\x200L14\x202.9287L17.1426\x202.9287L17.1426\x205.9648L20\x206L17.5605\x2010L20\x2014L17.1426\x2014Z','resolveShapeTextEditorTextRect','M15\x202.75C13.25\x204.45\x2012\x207.2\x2012\x2010C12\x2012.95\x2013.25\x2015.6\x2015\x2017.25','M13.5\x2012.2L15.2\x2013.2','EllipseRibbon','shape-left-right-ribbon-icon','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','DownArrow','FlowchartDocument','code-icon','univer-h-px\x20univer-bg-gray-200\x20dark:!univer-bg-gray-700','shape-border-callout3-icon','M14\x2013L17\x2016L14\x2019','M3.33315\x2012.9004C3.00178\x2012.9004\x202.73315\x2013.169\x202.73315\x2013.5004C2.73315\x2013.8318\x203.00178\x2014.1004\x203.33315\x2014.1004H12.6665C12.9979\x2014.1004\x2013.2665\x2013.8318\x2013.2665\x2013.5004C13.2665\x2013.169\x2012.9979\x2012.9004\x2012.6665\x2012.9004H3.33315Z','ShapeCurvedRightArrowIcon','calculate','ShapeLineIcon','ShapeRightBracketIcon','M10.9913\x2010.8779C11.4971\x2010.8779\x2011.9073\x2011.2882\x2011.9073\x2011.7939C11.9073\x2012.2997\x2011.4971\x2012.71\x2010.9913\x2012.71C10.4857\x2012.7099\x2010.0754\x2012.2996\x2010.0753\x2011.7939C10.0753\x2011.2882\x2010.4857\x2010.878\x2010.9913\x2010.8779Z','setDocumentData','shape.type.action-button-end','FlowchartProcess','FlowchartSummingJunction','defIds','shape-down-arrow-callout-icon','merge','useCallback','shape.type.right-bracket','M13.8\x204.5H12.2V8H13.8V4.5Z','shape-text-document','H4Icon','NotchedRightArrow','shape-editor-ui.fill.solidFill','url(#shape-dodecagon-icon-frame-clip)','shape-gear6-icon','fill','onBack','ShapeIrregularSeal2Icon','shape-editor-ui.toolbar.italic','univer-relative\x20univer-flex\x20univer-h-5\x20univer-w-10\x20univer-items-center\x20univer-justify-center','Callout3','Decagon','Funnel','body','size','onShapeClick','shape.type.border-callout3','ShapeFloatingToolbarMenuPanel','FOCUSING_PANEL_EDITOR','M19.0001\x204V15H9.00013V4H19.0001Z','univer-flex\x20univer-items-center\x20univer-border-b\x20univer-border-gray-200','ShapeActionButtonHelpIcon','M6.14645\x204.64645C6.34171\x204.45118\x206.65829\x204.45118\x206.85355\x204.64645L9.85355\x207.64645C10.0488\x207.84171\x2010.0488\x208.15829\x209.85355\x208.35355L6.85355\x2011.3536C6.65829\x2011.5488\x206.34171\x2011.5488\x206.14645\x2011.3536C5.95118\x2011.1583\x205.95118\x2010.8417\x206.14645\x2010.6464L8.79289\x208L6.14645\x205.35355C5.95118\x205.15829\x205.95118\x204.84171\x206.14645\x204.64645Z','img','shape-bent-connector3-arrow2-icon','shape-left-brace-icon','M2.43056\x2010.33482C2.53291\x2012.45003\x203.75147\x2013.5\x205.83333\x2013.5L8.75\x2013.5L8.89908\x2013.5L8.97145\x2013.5L14.1532\x2013.5L14.1532\x2017.5L7.4882\x2017C4.37244\x2016.7997\x201.94444\x2013.61919\x201.94444\x2010.4082C1.94444\x2010.33925\x202.42833\x2010.40326\x202.43056\x2010.33482ZM0\x2010.4082C0\x2014.67534\x203.22614\x2018.20746\x207.36667\x2018.47363L15.5556\x2019L15.5556\x2012L5.83333\x2012C4.75945\x2012\x203.88889\x2011.10457\x203.88889\x2010C3.88889\x208.8954\x204.75945\x207.5\x205.83333\x207.5L5.83333\x206C4.27158\x206\x202.92577\x206.9474\x202.30713\x208.3135C3.07699\x206.1577\x205.00062\x204.2097\x207.34388\x204L12.5477\x203.7135L12.6389\x203.7031L14.1532\x204.7246L12.5477\x206L5.83333\x206L5.83333\x207.5L10.6944\x207.5L10.6944\x209.5L17.5\x204.5928L10.6944\x200L10.6944\x202.043L7.17584\x202.3584C3.11617\x202.7215\x200.00018\x206.2168\x200\x2010.4082Z','marginBottom','columns','CheckListCommand','ShapeFloatingToolbarMenuItem','shape-star10-icon','TextFillButton','isFinite','1\x203','shape.type.rect-textbox-horizontal','shapeTypeOptions','ShapePlaqueTabsIcon','shape.type.accent-callout1','shape.type.can','univer-gap-3','Round','M5.13037\x202.827C4.799\x202.827\x204.53037\x203.09563\x204.53037\x203.427C4.53037\x203.75837\x204.799\x204.027\x205.13037\x204.027H15.1489C15.4803\x204.027\x2015.7489\x203.75837\x2015.7489\x203.427C15.7489\x203.09563\x2015.4803\x202.827\x2015.1489\x202.827H5.13037Z','reduce','shape-ellipse-ribbon-icon','bBox','univer-flex\x20univer-cursor-pointer\x20univer-items-center\x20univer-gap-1.5\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','MIDDLE','updateDocumentDataMargin','ShapeStar12Icon','getItem','span','linear','evenodd','univer-h-6\x20univer-w-6','getImageSize','univer-box-border\x20univer-flex\x20univer-flex-wrap\x20univer-items-center\x20univer-rounded\x20univer-bg-white\x20univer-px-1\x20univer-py-1\x20univer-shadow-sm\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','shape.type.ellipse-ribbon','imageFillMode','univer-mb-2\x20univer-flex\x20univer-h-7\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-2\x20univer-text-xs\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','isTextBox','ShapeChartStarIcon','ShapeMathMultiplyIcon','FlowchartSort','shape-editor-ui.line.noLine','TOP','50rCfiCV','ShapePieIcon','scrollContainer','M2\x2010H18','textSelection$','Button','M3.03012\x203.14006C3.03012\x203.59845\x202.65851\x203.97006\x202.20012\x203.97006C1.74172\x203.97006\x201.37012\x203.59845\x201.37012\x203.14006C1.37012\x202.68166\x201.74172\x202.31006\x202.20012\x202.31006C2.65851\x202.31006\x203.03012\x202.68166\x203.03012\x203.14006Z','callout','url(#shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right)','shape.type.bent-connector3-arrow1','abd','PaintBucketDoubleIcon','M0.949709\x209.2145C1.14957\x209.02907\x201.33226\x208.85497\x201.49677\x208.69321C1.6914\x208.50496\x201.84244\x208.33306\x201.95136\x208.17747C2.05826\x208.02476\x202.10492\x207.89219\x202.10492\x207.77781C2.10492\x207.65255\x202.07293\x207.57986\x202.02759\x207.53865L2.0245\x207.5357C1.97641\x207.48761\x201.9103\x207.46013\x201.81635\x207.46013C1.71986\x207.46013\x201.6383\x207.47348\x201.5822\x207.51611L1.58034\x207.51749C1.42279\x207.63092\x201.19425\x207.67086\x201.03149\x207.50811L1.02187\x207.49849C0.868433\x207.34505\x200.852261\x207.07998\x201.03819\x206.93364C1.12802\x206.86293\x201.21897\x206.8051\x201.31109\x206.76081C1.48788\x206.67257\x201.69616\x206.63037\x201.93278\x206.63037C2.15191\x206.63037\x202.34929\x206.67491\x202.52246\x206.76665C2.69563\x206.85514\x202.83257\x206.98323\x202.93172\x207.14966C3.03175\x207.31758\x203.08022\x207.51184\x203.08022\x207.72929C3.08022\x207.91104\x203.03028\x208.09333\x202.93429\x208.27521C2.84374\x208.45283\x202.72797\x208.62691\x202.58859\x208.79616C2.51109\x208.88842\x202.43304\x208.97759\x202.35442\x209.06369C2.34919\x209.06941\x202.34388\x209.07573\x202.33892\x209.08228C2.34542\x209.08201\x202.35268\x209.08151\x202.36075\x209.08073C2.46266\x209.07087\x202.54985\x209.06576\x202.62168\x209.06576H2.78662C3.02915\x209.06576\x203.22576\x209.26237\x203.22576\x209.5049C3.22576\x209.74742\x203.02915\x209.94403\x202.78662\x209.94403H1.23472C1.00261\x209.94403\x200.814453\x209.75587\x200.814453\x209.52376C0.814453\x209.40615\x200.86379\x209.29421\x200.949709\x209.2145Z','command:','M10\x2020L3\x2012.5L6.9688\x2012.5L6.9688\x207.5L3\x207.5L10\x200L17\x207.5L13.0312\x207.5L13.0312\x2012.5L17\x2012.5ZM11.4312\x2014.1L11.4312\x205.9L13.3187\x205.9L9.9999\x202.3433L6.6824\x205.9L8.5687\x205.9L8.5687\x2014.1L6.6822\x2014.1L9.9999\x2017.6555L13.319\x2014.1Z','text','offset','glyphGroup','fontFamily','M3\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2017\x2016','dot','shape.type.frame','shape-flow-chart-collate-icon','textFill','shape.type.flow-chart-online-storage','align-top-icon','round','shape.type.star8','ShapePickerPanel','opticalVerticalOffset','M3\x2011L0\x206L6\x206L6\x2016L-1.74846e-06\x2016L3\x2011ZM4.5\x207.5L2.5\x207.5L4.5\x2010.5L4.5\x207.5ZM4.5\x2011.5L2.5\x2014.5L4.5\x2014.5L4.5\x2011.5Z','SetInlineFormatSubscriptCommand','shape.type.right-arrow-callout','CurvedLeftArrow','opacity','dataAttributes','ShapeDonutIcon','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20univer-w-[320px]\x20univer-p-2\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','gradientAngle','getDirection','sup','shape.type.bracket-pair','ShapeStar24Icon','ShapeAccentCallout3Icon','M15\x2013L18\x2016L15\x2019','shape.type.cloud-callout','activeAnObject','setTimeout','focus','ShapeFlowChartMultidocumentIcon','M2\x2016V6.2C2\x204.985\x202.985\x204\x204.2\x204H13.6L18\x208V16H2Z','underline-icon','UniverInstanceType','shape-heart-icon','OrderIcon','shape.type.action-button-home','DoubleWave','shape-action-button-document-icon','IImageIoService','FlowchartPunchedTape','hasOwnProperty','shortcut','getActiveTextRange','shape-heptagon-icon-frame-clip','shape-accent-border-callout2-icon','editingParams$','univer-flex\x20univer-h-6\x20univer-min-w-7\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','AlignTopIcon','ShapeGradientTypeEnum','univer-flex\x20univer-flex-col\x20univer-gap-2\x20univer-border-l-2\x20univer-border-l-gray-200\x20univer-pl-3\x20dark:!univer-border-l-gray-600','ShapeGear9Icon','univer-flex\x20univer-min-w-0\x20univer-flex-col','shape-ribbon2-icon_clip0_2_47','Gear9','shape-action-button-blank-icon','pluginName','shape.type.math-not-equal','ShapeFlowChartPreparationIcon','shape-editor-ui.fill.picture.align.tr','shiftKey','prototype','Snip2SameRect','FlowchartMagneticDrum','shape-action-button-forward-next-icon','textLike','HEADING_5','plain','shape-sun-icon','univer-absolute\x20univer-z-[100]\x20univer-overflow-visible','SetInlineFormatUnderlineCommand','ShapeStar7Icon','VerticalScroll','doc','ShapeMathDivideIcon','ShapeTextAutoFitType','ShapeMathEqualIcon','2870180ZqLxsy','butt','univer-min-w-44\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-1\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','unsubscribe','shape-editor-ui.fill.title','ShapeFlowChartInputOutputIcon','M5\x205L15\x2015M15\x205L5\x2015','Trapezoid','M13.5\x2010H15.5','#ffffff','_initSelectionChange','M10.2\x205.9H14.2','shape-editor-ui.line.sketchType.handDrawn','M10.8505\x203.90157C11.0889\x203.67143\x2011.4688\x203.67815\x2011.6989\x203.91657L14.309\x206.6207C15.3067\x207.65434\x2015.2771\x209.30122\x2014.2428\x2010.2983L11.6836\x2012.7652C11.4451\x2012.9952\x2011.0652\x2012.9883\x2010.8352\x2012.7497C10.6053\x2012.5111\x2010.6122\x2012.1313\x2010.8508\x2011.9013L13.41\x209.43431C13.9669\x208.89745\x2013.9829\x208.01066\x2013.4456\x207.45409L10.8355\x204.74996C10.6054\x204.51154\x2010.6121\x204.1317\x2010.8505\x203.90157Z','toStringTag','shape-editor-ui.fill.picture.source','resolveShapeTextVerticalOffset','M2\x206.4H13.6V18M13.6\x206.4L18\x202M13.6\x206.4V18','shape.type.donut','editorHeight','M2.75\x203H11.6L17.65\x2010L11.6\x2017H2.75L9.15\x2010L2.75\x203Z','_config','getFreeze','width','setEditing','univer-flex-1\x20univer-overflow-auto','shape-up-down-arrow-icon','includes','M8.01281\x201.36643C8.79386\x200.585377\x2010.0602\x200.585378\x2010.8412\x201.36643L12.9223\x203.44752C13.7034\x204.22857\x2013.7034\x205.4949\x2012.9223\x206.27595L9.36445\x209.83383C8.5834\x2010.6149\x207.31707\x2010.6149\x206.53602\x209.83383L4.45493\x207.75273C3.67388\x206.97168\x203.67388\x205.70535\x204.45493\x204.9243L8.01281\x201.36643ZM9.9927\x202.21495C9.68028\x201.90253\x209.17375\x201.90253\x208.86133\x202.21495L5.30346\x205.77283L5.29671\x205.77966L10.839\x206.66224L12.0738\x205.42742C12.3862\x205.115\x2012.3862\x204.60847\x2012.0738\x204.29605L9.9927\x202.21495Z','LightningBolt','ShapeBentArrowIcon','M1\x208H13V15C11.25\x2014.8\x209.6\x2015.25\x208.25\x2016.35L7.6\x2016.85C5.95\x2018.15\x203.65\x2018.25\x201\x2016.75V8Z','lineDashType','shape-editor-ui.fill.pictureFill','shape-editor-ui.shape.group.','PlaqueTabs','ShapeDefaultConfig','shape-editor-ui.align.top','shape-editor-ui.line.sketchType.freehand','LEFT','LeftBrace','normAutofit','shape-flow-chart-terminator-icon','shape-editor-ui.toolbar.typography','univer-w-14','shape-editor-ui.line.arrowType.ovalArrow','univer-flex\x20univer-flex-col\x20univer-gap-1.5','name','M17\x2011L20\x2016L14\x2016L14\x206L20\x206L17\x2011ZM15.5\x2014.5L17.5\x2014.5L15.5\x2011.5L15.5\x2014.5ZM15.5\x2010.5L17.5\x207.5L15.5\x207.5L15.5\x2010.5Z','ALT','M5\x201L2\x204L5\x207','shape-editor-ui.fill.picture.align.r','cornerRadius','resolveShapeTextEditorBehaviorShapeData','title','NORMAL_TEXT','univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-text-xs\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','ShapeUpDownArrowIcon','register','ShapeActionButtonBlankIcon','hasCommand','shape-cube-icon','fillOpacity','componentKey','ShapeRectIcon','M20\x2010L12.5\x2017L12.5\x2013.0312L7.5\x2013.0312L7.5\x2017L0\x2010L7.5\x203L7.5\x206.9688L12.5\x206.9688L12.5\x203ZM14.1\x208.5687L5.9\x208.5687L5.9\x206.6812L2.3433\x2010.0001L5.9\x2013.3176L5.9\x2011.4312L14.1\x2011.4312L14.1\x2013.3179L17.6555\x2010.0001L14.1\x206.681Z','replace','dash','shape-editor-ui.line.arrowType.stealthArrow','trim','ShapeWaveIcon','M19\x204V15H6V4H19Z','M9\x209H11V13H9z','ShapeFlowChartCollateIcon','getUnitId','NoLine','M1.00013\x2017L6.00013\x209','#3B82F6','shape-editor-ui.line.dashType.longDashDot','shape-text-editor-position-wrapper','ShapeHeartIcon','M17\x209L20\x2014L14\x2014L14\x204L20\x204L17\x209ZM15.5\x2012.5L17.5\x2012.5L15.5\x209.5L15.5\x2012.5ZM15.5\x208.5L17.5\x205.5L15.5\x205.5L15.5\x208.5Z','shouldAllowShapeTextEditorHostSizeShrink','BlockArc','M1.8\x2013V18.2H7L1.8\x2013Z','vertexAngle','shape.type.curved-connector3','shape.type.flow-chart-terminator','ShapeActionButtonBeginningIcon','Separator','UpArrowCallout','shape-plaque-tabs-icon','backward','RightArrow','ShapeDownArrowCalloutIcon','shape.type.gear6','UniverProShapeEditorUi','M8.66518\x202.43056C6.54997\x202.53291\x205.5\x203.75147\x205.5\x205.83333V8.75V8.89908V8.97145V14.1532H1.5L2\x207.4882C2.2003\x204.37244\x205.38081\x201.94444\x208.5918\x201.94444C8.66075\x201.94444\x208.59674\x202.42833\x208.66518\x202.43056ZM8.5918\x200C4.32466\x200\x200.79254\x203.22614\x200.52637\x207.36667L0\x2015.5556H7V5.83333C7\x204.75945\x207.89543\x203.88889\x209\x203.88889C10.1046\x203.88889\x2011.5\x204.75945\x2011.5\x205.83333H13C13\x204.27158\x2012.0526\x202.92577\x2010.6865\x202.30713C12.8423\x203.07699\x2014.7903\x205.00062\x2015\x207.34388L15.2865\x2012.5477L15.2969\x2012.6389L14.2754\x2014.1532L13\x2012.5477V5.83333H11.5V10.6944H9.5L14.4072\x2017.5L19\x2010.6944H16.957L16.6416\x207.17584C16.2785\x203.11617\x2012.7832\x200.000175\x208.5918\x200Z','sizeClassName','M1.09985\x203.64443C1.09985\x203.31306\x201.36848\x203.04443\x201.69985\x203.04443H14.2999C14.6312\x203.04443\x2014.8999\x203.31306\x2014.8999\x203.64443C14.8999\x203.9758\x2014.6312\x204.24443\x2014.2999\x204.24443H1.69985C1.36848\x204.24443\x201.09985\x203.9758\x201.09985\x203.64443Z','shape-flow-chart-process-icon','ShapeBackgroundColorDoubleIcon','univer-flex\x20univer-flex-col','CurvedUpArrow','shape-math-not-equal-icon','onStarting','shape.type.pentagon','preventDefault','onMouseDown','jsxs','shape-editor-ui.line.title','shape.type.hexagon','string','altKey','disposable','M11.3536\x206.14645C11.5488\x206.34171\x2011.5488\x206.65829\x2011.3536\x206.85355L8.35355\x209.85355C8.15829\x2010.0488\x207.84171\x2010.0488\x207.64645\x209.85355L4.64645\x206.85355C4.45118\x206.65829\x204.45118\x206.34171\x204.64645\x206.14645C4.84171\x205.95118\x205.15829\x205.95118\x205.35355\x206.14645L8\x208.79289L10.6464\x206.14645C10.8417\x205.95118\x2011.1583\x205.95118\x2011.3536\x206.14645Z','ShapeLeftUpArrowIcon','ShapeChordIcon','shape-editor-ui.shapePosition','shape-star7-icon','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-between\x20univer-gap-8\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-2\x20univer-text-left\x20univer-text-xs\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x20rtl:univer-text-right\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','getDocumentData','maxAutoFitWidth','getDrawingTransform','measurePageWidth','shape-left-arrow-icon','M10.9999\x2015.6341L11\x204.6339L4.5\x2010.634ZM9.4002\x208.2875L9.4002\x2012.3833L6.9799\x2010.5216Z','M14\x204L13\x204L13\x205L15\x205L15\x207L16\x207L16\x205.8037L20\x2010L16\x2014.1963L16\x2013L15\x2013L15\x2015L13\x2015L13\x2016L14\x2016L9.8037\x2020L5.6074\x2016L7\x2016L7\x2015L5\x2015L5\x2013L4\x2013L4\x2014.1963L0\x2010L4\x205.8037L4\x207L5\x207L5\x205L7\x205L7\x204L5.6074\x204L9.8037\x200ZM8.6\x203.3569L8.6\x206.6L6.6\x206.6L6.6\x208.6L3.5445\x208.6L2.2101\x2010L3.5445\x2011.4L6.6\x2011.4L6.6\x2013.4L8.6\x2013.4L8.6\x2016.6429L9.8038\x2017.7911L11.4\x2016.2679L11.4\x2013.4L13.4\x2013.4L13.4\x2011.4L16.4554\x2011.4L17.7912\x2010L16.4554\x208.6L13.4\x208.6L13.4\x206.6L11.4\x206.6L11.4\x203.732L9.8038\x202.2101Z','getSelectionRanges','sectionBreaks','IRenderManagerService','paragraphId','onTransformChange$','M15.5\x203.5H18.5V6.5H15.5z','ellipse','0\x200\x2017\x2017','#000000','EllipseRibbon2','#111827','ShapeFlowChartPunchedCardIcon','ShapeRound2SameRectIcon','gridType','M4\x208V2H16V8H11.4V14.9L10\x2017.3L8.6\x2014.9V8H4ZM13\x2014H14.3301L10\x2020L5.6699\x2014H7V9.6H2.4V0.4H17.6V9.6H13V14Z','pageHeight','52881WgStJj','closest','shape-snip2-diag-rect-icon','shape-left-right-arrow-icon','M10\x201.00098L2\x2010.001H6.00098V19.001H14.001V10.001H18L10\x201.00098ZM10\x203.401L14.4458\x208.401H12.401V17.401H7.60098V8.401H5.55518L10\x203.401Z','Gear6','LeftJustifyingIcon','endArrow','editorTop','leftTop','univer-w-[244px]','ActionButtonSound','sort','SetInlineFormatTextFillCommand','M1.6543\x2013.1665C1.6543\x2012.2828\x202.37064\x2011.5665\x203.2543\x2011.5665H13.5543C14.438\x2011.5665\x2015.1543\x2012.2828\x2015.1543\x2013.1665C15.1543\x2014.0502\x2014.438\x2014.7665\x2013.5543\x2014.7665H3.2543C2.37064\x2014.7665\x201.6543\x2014.0502\x201.6543\x2013.1665ZM3.2543\x2012.7665C3.03338\x2012.7665\x202.8543\x2012.9456\x202.8543\x2013.1665C2.8543\x2013.3874\x203.03338\x2013.5665\x203.2543\x2013.5665H13.5543C13.7752\x2013.5665\x2013.9543\x2013.3874\x2013.9543\x2013.1665C13.9543\x2012.9456\x2013.7752\x2012.7665\x2013.5543\x2012.7665H3.2543Z','ILocalStorageService','univer-text-xl\x20univer-text-gray-500','M19.0002\x204V15H9.00018V4H19.0002Z','M7.9999\x2010.5671C8.33127\x2010.5671\x208.5999\x2010.2985\x208.5999\x209.96714V2.30047C8.5999\x201.9691\x208.33127\x201.70047\x207.9999\x201.70047C7.66853\x201.70047\x207.3999\x201.9691\x207.3999\x202.30047V9.96714C7.3999\x2010.2985\x207.66853\x2010.5671\x207.9999\x2010.5671Z','h2-icon','Heptagon','toString','pointerEvents','shape-teardrop-icon','0\x200\x2017\x2016','resolveShapeTextBodyBehavior','shape-right-brace-icon','resolveShapeTextDocumentRenderLayout','univer-hidden','SetInlineFormatFontFamilyCommand','M2\x206.4L6.4\x202H18V13.6L13.6\x2018H2V6.4Z','shape.type.flow-chart-document','ShapeCurvedDownArrowIcon','univer-pointer-events-none\x20univer-opacity-60','ShapePieWedgeIcon','IContextService','RedoCommand','fontSize','shape-accent-callout2-icon','Medium','OrderListCommand','detail','shape-frame-icon','SetInlineFormatSuperscriptCommand','stopPropagation','Large','div','more-right-icon','getDrawingShapeKeyByDrawingSearch','univer-flex\x20univer-aspect-square\x20univer-cursor-pointer\x20univer-items-center\x20univer-justify-center\x20univer-rounded\x20univer-border-none\x20univer-bg-transparent\x20univer-p-1\x20univer-text-gray-700\x20hover:univer-bg-gray-200\x20dark:!univer-text-gray-200\x20dark:hover:!univer-bg-gray-700','shape.type.up-down-arrow','querySelector','GridType','shape.type.plaque','ShapeCurvedUpArrowIcon','LeftArrow','ShapeLeftBracketIcon','clearActiveDrawingObjects','JUSTIFIED','NoFill','1.0.0-alpha.3','Freehand','shape-editor-ui.line.joinType.bevel','shape.type.quad-arrow-callout','M4\x2011.5L4\x2016L9\x2016L9\x2010.5L4\x2011.5ZM7.5\x2014.5L5.5\x2014.5L5.5\x2012.5L7.5\x2012L7.5\x2014.5Z','_iconManager','shape.type.math-plus','engine','url(#shape-heptagon-icon-frame-clip)','boolean','columnProperties','M7.6091\x206.19862C7.71516\x206.08227\x207.86203\x206.008\x208.01946\x206.008C8.30134\x206.008\x208.52985\x206.2365\x208.52985\x206.51838V13.495C8.52985\x2013.7739\x208.30373\x2014\x208.0248\x2014C7.74588\x2014\x207.51976\x2013.7739\x207.51976\x2013.495V7.44756C7.28541\x207.71253\x207.01259\x207.9357\x206.7032\x208.11706C6.37588\x208.30892\x206\x208.0423\x206\x207.6629C6\x207.41785\x206.16328\x207.20549\x206.38523\x207.10161C6.56197\x207.01889\x206.74438\x206.91442\x206.93595\x206.78822C7.19346\x206.6016\x207.41785\x206.40844\x207.6091\x206.19862Z','actualWidth','contentHeight','BulletListCommand','SetInlineFormatTextBackgroundColorCommand','shape-accent-callout3-icon','VerticalAlign','M6.2721\x201L13.7279\x201L19\x206.2721L19\x2013.7279L13.7279\x2019L6.2721\x2019L1\x2013.7279L1\x206.2721Z','univer-text-base','ShapeAccentCallout2Icon','vertical','M4.53027\x202.54014C4.1989\x202.54014\x203.93027\x202.80877\x203.93027\x203.14014C3.93027\x203.47151\x204.1989\x203.74014\x204.53027\x203.74014H14.5488C14.8802\x203.74014\x2015.1488\x203.47151\x2015.1488\x203.14014C15.1488\x202.80877\x2014.8802\x202.54014\x2014.5488\x202.54014H4.53027Z','Star12','ShapeHeptagonIcon','M2.4334\x202.66689C2.4334\x202.33552\x202.16477\x202.06689\x201.8334\x202.06689C1.50203\x202.06689\x201.2334\x202.33552\x201.2334\x202.66689V13.3336C1.2334\x2013.6649\x201.50203\x2013.9336\x201.8334\x2013.9336C2.16477\x2013.9336\x202.4334\x2013.6649\x202.4334\x2013.3336V8.5999H7.2334V13.3336C7.2334\x2013.6649\x207.50203\x2013.9336\x207.8334\x2013.9336C8.16477\x2013.9336\x208.4334\x2013.6649\x208.4334\x2013.3336V2.66689C8.4334\x202.33552\x208.16477\x202.06689\x207.8334\x202.06689C7.50203\x202.06689\x207.2334\x202.33552\x207.2334\x202.66689V7.3999H2.4334V2.66689Z','baselineWidth','measureDocumentNoWrapTextWidth','reverse','4\x202','univer-max-w-[min(760px,calc(100vw-32px))]','getObjectIncludeInGroup','ResetInlineFormatTextBackgroundColorCommand','univer-flex-1','ShapeUpDownArrowCalloutIcon','HorizontalScroll','8\x202','shapeText','icon','shape-editor-ui.toolbar.underline','join','getShapeTextRect','univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','ShapeRightArrowCalloutIcon','M15\x204L13\x204L13\x207L16\x207L16\x204.8L20\x2010L16\x2015.2L16\x2013L13\x2013L13\x2016L15\x2016L10\x2020L5\x2016L7\x2016L7\x2013L4\x2013L4\x2015.2L0\x2010L4\x204.8L4\x207L7\x207L7\x204L5\x204L10\x200ZM8.6\x203.2547L8.6\x208.6L3.0989\x208.6L2.022\x2010L3.0989\x2011.4L8.6\x2011.4L8.6\x2016.7453L10\x2017.8653L11.4\x2016.7453L11.4\x2011.4L16.9011\x2011.4L17.978\x2010L16.9011\x208.6L11.4\x208.6L11.4\x203.2547L10\x202.1347Z','shape-flow-chart-display-icon','ShapeUturnArrowIcon','horz','shape-flow-chart-multidocument-icon','activateDrawingObject','ShapeTypeEnum','shape-right-arrow-callout-icon','M6.5\x205H8.5C9.0523\x205\x2010.0661\x205.44772\x2010.0661\x206H11.5661C11.5661\x204.34315\x2010.1569\x203.60304\x208.5\x203.60304H6.5C4.84315\x203.60304\x204\x204.34315\x204\x206V10V10.0938V12.7969V15.5H1.5V6H0V17H5.5V6C5.5\x205.44771\x205.94771\x205\x206.5\x205ZM5.5\x201.60304H9.5C11.7091\x201.60304\x2014\x203.79086\x2014\x206V14V14.603L12.8965\x2016.3597L11.5661\x2014.603V10.0201V6H10.0661V13.103H8.06612L12.8965\x2018.603L17.5\x2013.103H15.5V6C15.5\x202.68629\x2012.8137\x200\x209.5\x200H5.5C2.18629\x200\x200\x202.68629\x200\x206H1.5C1.5\x203.79086\x203.29086\x201.60304\x205.5\x201.60304Z','Flowchart','ShapeFillButton','univer-w-[280px]','ShapeChartPlusIcon','M12.667\x205.5176L18\x204.8271L14\x208.9658L20\x2011.2139L14\x2012.4141L18\x2018.6211L10.667\x2015.1729L10\x2020L7.333\x2015.8623L4\x2020L4\x2014.4824L0\x2014.1787L4\x2010.5L0\x206.207L5.333\x206.207L5.333\x200.6895L9.6543\x205.6416L12.667\x200ZM6.933\x207.807L3.677\x207.807L6.2686\x2010.5874L3.793\x2012.8621L5.6\x2012.9996L5.6\x2015.4617L7.4775\x2013.1324L9.0051\x2015.5024L9.3793\x2012.7992L13.6347\x2014.7987L11.3819\x2011.305L14.1861\x2010.7426L11.1541\x209.6078L12.852\x207.8512L13.6495\x207.0029L10.5254\x207.4071L9.9738\x208.4408L6.933\x204.9568Z','ShapeCurvedConnector3Arrow2Icon','univer-text-gray-600\x20univer-transition-transform','Dash','shape-callout1-icon','CTRL_COMMAND','M2\x204H18V13.8C15.6\x2013.45\x2013.05\x2014.05\x2011\x2015.5C8.45\x2017.25\x205.25\x2017.35\x202\x2015.45V4Z','univer-flex\x20univer-flex-col\x20univer-gap-4\x20univer-pt-2','M4\x201H16V15.4194L10\x2018.8481L4\x2015.4194V1Z','shape-flow-chart-alternate-process-icon','push','shape-editor-ui.line.arrowType.arrow','has','shape.type.flow-chart-magnetic-tape','shape-action-button-back-previous-icon','CircularArrow','Checkbox','url(#shape-decagon-icon-frame-clip)','resolveShapeTextNoWrapLayout','M19.0001\x204V15H6.00014V4H19.0001Z','shape-octagon-icon-frame-clip','attrs','url(#shape-block-arc-icon_shape-block-arc-icon-clip-0)','shape-parallelogram-icon','univer-pointer-events-none\x20univer-absolute\x20univer-bottom-full\x20univer-left-0\x20univer-mb-1\x20univer-hidden\x20univer-overflow-hidden\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-shadow-md\x20group-hover:univer-block\x20dark:!univer-border-gray-600\x20dark:!univer-bg-gray-800','ShapeNotchedRightArrowIcon','SetInlineFormatBoldCommand','ChartStar','M4\x204H10V16H16','updateHostHeight','shape.type.dodecagon','get','shape.type.wave','shape-round2-same-rect-icon','shape.type.round-rect','Ribbon','M6.80225\x202H13.1978L16.7534\x2018H3.24658L6.80225\x202Z','shape-home-plate-icon','univer-h-5\x20univer-w-12','LeftRightArrowCallout','shape-corner-tabs-icon','M0\x200H20V20H0z','shape-editor-ui.line.capType.round','shape-non-isosceles-trapezoid-icon','shape-horizontal-scroll-icon','FlowchartPreparation','divider','FlowchartMerge','shape-editor-ui.line.arrowType.openArrow','M15.5\x2013.5H18.5V16.5H15.5z','shape.type.flow-chart-summing-junction','M17\x203H3V20C1.89543\x2020\x201\x2019.1046\x201\x2018V3C1\x201.89543\x201.89543\x201\x203\x201H17C18.1046\x201\x2019\x201.89543\x2019\x203V13L12\x2020H3V18H11.1719L17\x2012.1719V3Z','twist','shape.type.flow-chart-multidocument','abs','shape-arc-icon','nativeEvent','clearSelectedObjects','shape-diamond-icon','url(#shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-left)','shape.type.border-callout1','shape.type.gear9','className','M1.3999\x202.3002C1.3999\x202.63157\x201.66853\x202.9002\x201.9999\x202.9002H13.9999C14.3313\x202.9002\x2014.5999\x202.63157\x2014.5999\x202.3002C14.5999\x201.96882\x2014.3313\x201.7002\x2013.9999\x201.7002H1.9999C1.66853\x201.7002\x201.3999\x201.96882\x201.3999\x202.3002Z','shape-editor-ui.fill.picture.align.l','screenY','M7.82994\x201.40913C7.88746\x201.35161\x207.95376\x201.30821\x208.02453\x201.27893C8.09527\x201.24959\x208.17285\x201.2334\x208.2542\x201.2334C8.33555\x201.2334\x208.41313\x201.24959\x208.48387\x201.27893C8.55464\x201.30821\x208.62094\x201.35161\x208.67846\x201.40913L10.6785\x203.40913C10.9128\x203.64345\x2010.9128\x204.02335\x2010.6785\x204.25766C10.4441\x204.49198\x2010.0642\x204.49198\x209.82994\x204.25766L8.8542\x203.28193V5.8334C8.8542\x206.16477\x208.58557\x206.4334\x208.2542\x206.4334C7.92283\x206.4334\x207.6542\x206.16477\x207.6542\x205.8334V3.28193L6.67846\x204.25766C6.44415\x204.49198\x206.06425\x204.49198\x205.82994\x204.25766C5.59562\x204.02335\x205.59562\x203.64345\x205.82994\x203.40913L7.82994\x201.40913Z','Miter','M1.8\x203.8H18.2V16.2H1.8z','textSelectionInner$','univer-pointer-events-none\x20univer-absolute\x20univer-select-none\x20univer-whitespace-nowrap\x20univer-text-gray-400','saveImage','Arc','M13.1858\x2014C12.8678\x2014\x2012.5814\x2013.8076\x2012.4612\x2013.5133L11.892\x2012.12H8.412L7.81627\x2013.5341C7.69734\x2013.8164\x207.4208\x2014\x207.11444\x2014C6.57847\x2014\x206.21019\x2013.4611\x206.40493\x2012.9617L8.73684\x206.98245C8.96788\x206.39004\x209.53865\x206\x2010.1745\x206C10.8119\x206\x2011.3836\x206.39182\x2011.6137\x206.9862L13.9158\x2012.9348C14.1143\x2013.4477\x2013.7358\x2014\x2013.1858\x2014ZM8.88\x2010.8H11.424L10.236\x207.404H10.092L8.88\x2010.8Z','M3\x206H17M3\x2014H17M13.5\x202L6.5\x2018','shape-wedge-ellipse-callout-icon','Frame','ShapeAccentBorderCallout2Icon','M4\x203H16C17.1046\x203\x2018\x203.89543\x2018\x205V13C18\x2014.1046\x2017.1046\x2015\x2016\x2015H14.2881L14.0938\x2015.0859L6.5\x2018.4609V15H4C2.89543\x2015\x202\x2014.1046\x202\x2013V5C2\x203.89543\x202.89543\x203\x204\x203Z','shape-folder-corner-icon','input,\x20textarea,\x20[contenteditable=\x22true\x22],\x20[role=\x22combobox\x22],\x20[data-u-comp=\x22select\x22],\x20.univer-select','h3-icon','blockArrow','M12.7002\x205.0137L19.0449\x205.0137L14.8457\x209.627L20\x2014.54L15.6416\x2014.54L15.4766\x2020L10\x2014.54L4.5234\x2020L4.8857\x2014.54L0\x2014.54L5.1543\x209.627L0.9551\x205.0137L7.2998\x205.0137L10\x200ZM8.2552\x206.6137L4.5754\x206.6137L7.3902\x209.7058L3.9966\x2012.94L6.595\x2012.94L6.4818\x2014.6444L6.3939\x2015.8745L9.9999\x2012.2797L13.9871\x2016.2561L14.0424\x2014.4918L14.0893\x2012.94L16.0034\x2012.94L12.6098\x209.7058L15.4245\x206.6137L11.7448\x206.6137L10\x203.373Z','shape.type.notched-right-arrow','elementFromPoint','FlowchartCollate','M1.9999\x205.56641C1.66853\x205.56641\x201.3999\x205.83504\x201.3999\x206.16641C1.3999\x206.49778\x201.66853\x206.76641\x201.9999\x206.76641H11.3332C11.6646\x206.76641\x2011.9332\x206.49778\x2011.9332\x206.16641C11.9332\x205.83504\x2011.6646\x205.56641\x2011.3332\x205.56641H1.9999Z','SquareDot','shape-up-arrow-callout-icon','Round2SameRect','lineJoinType','BooleanNumber','Diamond','textStyle','order-icon','isMixed','M5\x203H2V17H5','HEADING_2','M18\x2018H1C1\x208.6112\x208.6112\x201\x2018\x201V18ZM16.4\x202.6833A15.4\x2015.4\x200\x200\x200\x202.6833\x2016.4H16.4V2.6833Z','M13.5\x208C13.5\x207.72386\x2013.2761\x207.5\x2013\x207.5C12.7239\x207.5\x2012.5\x207.72386\x2012.5\x208C12.5\x208.27614\x2012.7239\x208.5\x2013\x208.5V10C11.8954\x2010\x2011\x209.10457\x2011\x208C11\x206.89543\x2011.8954\x206\x2013\x206C14.1046\x206\x2015\x206.89543\x2015\x208C15\x209.10457\x2014.1046\x2010\x2013\x2010V8.5C13.2761\x208.5\x2013.5\x208.27614\x2013.5\x208Z','M10\x203.23633L17.3818\x2018H2.61816L10\x203.23633Z','map','shape-action-button-movie-icon','MetaKeys','M1.8\x2013.5L6.1\x202.5L10.2\x2013.5','UniverProEngineShape','starAndBanner','shape-math-divide-icon','Radial','LongDashDotDot','ShapeWedgeEllipseCalloutIcon','FONT_SIZE_LIST','url(#shape-cloud-callout-icon-clip)','min','opticalVerticalAlign','shapeKey','shape-editor-ui.fill.picture.alignment','shape.type.trapezoid','shape.type.ribbon2','key','shape.type.bent-connector3','M4.53027\x207.4C4.1989\x207.4\x203.93027\x207.66863\x203.93027\x208C3.93027\x208.33137\x204.1989\x208.6\x204.53027\x208.6H14.5488C14.8802\x208.6\x2015.1488\x208.33137\x2015.1488\x208C15.1488\x207.66863\x2014.8802\x207.4\x2014.5488\x207.4H4.53027Z','ShapeStrokePanelContent','dsc','ShapeUpArrowCalloutIcon','shape-curved-right-arrow-icon','updateShapeText','Solid','M7\x202C5.2\x202\x204.4\x202.75\x204.4\x204.6V7.3C4.4\x208.55\x203.85\x209.35\x202.6\x209.9C3.85\x2010.45\x204.4\x2011.25\x204.4\x2012.5V15.4C4.4\x2017.25\x205.2\x2018\x207\x2018','exports','ShapeStar5Icon','UnorderIcon','basicShape','getCurrentUnitOfType','ascent','M16.5\x2013.5C17.5041\x2013.5\x2019.5\x2013\x2019.5\x2013L17.5\x208.5L19.5\x203.5C19.5\x203.5\x2017.5754\x204\x2016.5713\x204L16.5\x205.5C16.6341\x205.5\x2016.9031\x205.51359\x2017.0381\x205.5L16.1709\x208.56543L17.4033\x2011.8027C17.2766\x2011.8404\x2017.1541\x2011.8757\x2017.0381\x2011.9053C16.7039\x2011.9903\x2016.5633\x2011.9999\x2016.5713\x2012H16V5.5H16.5L16.5713\x204H14.5V9V13.5H16.5Z','M5.8\x2014.2V5.8H14.2','ShapeDodecagonIcon','shape.type.left-circular-arrow','shape.type.action-button-document','canva','imageTile','doc.operation.show-hyper-link-edit-popup','ctr','DELETE','PieWedge','H3Icon','shape-wave-icon','AccentBorderCallout2','shape-editor-ui.toolbar.strikethrough','typography-horizontal-align-row','shape-curved-left-arrow-icon','BreakLineCommand','M13\x202H8C5.8\x202\x203.5\x205.6\x203.5\x2010C3.5\x2014.4\x205.8\x2018\x208\x2018H13','univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-3\x20univer-py-1\x20univer-text-sm\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','M11.9156\x205.81614C12.6636\x205.81614\x2013.2906\x206.02514\x2013.7746\x206.46514C14.2476\x206.90514\x2014.4896\x207.46614\x2014.4896\x208.15914C14.4896\x208.84114\x2014.2256\x209.45714\x2013.7196\x2010.0181C13.4116\x2010.3371\x2012.8726\x2010.7551\x2012.0916\x2011.2831C11.2446\x2011.8441\x2010.7386\x2012.3391\x2010.5736\x2012.7681H13.9726C14.2642\x2012.7681\x2014.5006\x2013.0045\x2014.5006\x2013.2961C14.5006\x2013.5877\x2014.2642\x2013.8241\x2013.9726\x2013.8241H9.5886C9.31245\x2013.8241\x209.0838\x2013.599\x209.12511\x2013.3259C9.21238\x2012.7491\x209.45704\x2012.2313\x209.8696\x2011.7671C10.1556\x2011.4261\x2010.7496\x2010.9531\x2011.6406\x2010.3371C12.1686\x209.96314\x2012.5426\x209.66614\x2012.7626\x209.43514C13.1146\x209.03914\x2013.3016\x208.61014\x2013.3016\x208.14814C13.3016\x207.70814\x2013.1806\x207.37814\x2012.9386\x207.15814C12.6966\x206.93814\x2012.3336\x206.82814\x2011.8716\x206.82814C11.3766\x206.82814\x2011.0026\x206.99314\x2010.7496\x207.33414C10.5733\x207.55452\x2010.4559\x207.83867\x2010.3907\x208.19314C10.3317\x208.5143\x2010.0727\x208.77514\x209.74618\x208.77514C9.40855\x208.77514\x209.12958\x208.49744\x209.18359\x208.16417C9.28101\x207.56304\x209.51701\x207.0627\x209.8916\x206.66314C10.3976\x206.09114\x2011.0796\x205.81614\x2011.9156\x205.81614Z','M1.8\x2016.2V3.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H1.8Z','shape-striped-right-arrow-icon','ShapeWedgeRectCalloutIcon','shape-editor-ui.align.middle','ShapeRoundRectIcon','M15.6\x201.8C12.8\x205.9\x2011.8\x206.7\x2011.8\x2010C11.8\x2013.3\x2013.1\x2014.9\x2015.6\x2018.2C10.8\x2018.1\x205.8\x2016.1\x205.8\x2010C5.8\x203.9\x2010.8\x201.9\x2015.6\x201.8Z','shape-action-button-information-icon','shape-action-button-sound-icon','M16\x2012V18H4V12H8.6V5.1L10\x202.7L11.4\x205.1V12H16ZM7\x206H5.6699L10\x200L14.3301\x206H13V10.4H17.6V19.6H2.4V10.4H7V6Z','Can','M8.44922\x202L2\x209.27246V17H18V2H8.44922Z','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','WrapStrategy','shape-chart-x-icon','ShapeMoonIcon','\x0a\x20\x20\x20\x20\x20\x20univer-box-border\x20univer-flex\x20univer-rounded\x20univer-bg-white\x20univer-py-1\x20univer-shadow-sm\x0a\x20\x20\x20\x20\x20\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x0a\x20\x20\x20\x20','ShapeHalfFrameIcon','M4.53027\x2012.2604C4.1989\x2012.2604\x203.93027\x2012.529\x203.93027\x2012.8604C3.93027\x2013.1917\x204.1989\x2013.4604\x204.53027\x2013.4604H14.5488C14.8802\x2013.4604\x2015.1488\x2013.1917\x2015.1488\x2012.8604C15.1488\x2012.529\x2014.8802\x2012.2604\x2014.5488\x2012.2604H4.53027Z','ShapeFlowChartSortIcon','getSnapshot','_componentManager','options','cancelEditing','ShapeNonIsoscelesTrapezoidIcon','onCommandExecuted','endOffset','forEach','ShapeDiamondIcon','Callout','shape-editor-ui.toolbar.subscript','\x0a\x20\x20\x20\x20\x20\x20univer-h-4\x20univer-w-px\x20univer-bg-gray-200\x0a\x20\x20\x20\x20\x20\x20dark:!univer-bg-gray-700\x0a\x20\x20\x20\x20','addEventListener','M16.5\x206.5C17.5041\x206.5\x2019.5\x207\x2019.5\x207L17.5\x2011.5L19.5\x2016.5C19.5\x2016.5\x2017.5754\x2016\x2016.5713\x2016L16.5\x2014.5C16.6341\x2014.5\x2016.9031\x2014.4864\x2017.0381\x2014.5L16.1709\x2011.4346L17.4033\x208.1973C17.2766\x208.1596\x2017.1541\x208.1243\x2017.0381\x208.0947C16.7039\x208.0097\x2016.5633\x208.0001\x2016.5713\x208H16V14.5H16.5L16.5713\x2016H14.5V11V6.5H16.5Z','M5.2\x209H6.8V14.2H9.2V12H10.8V14.2H13.2V9H14.8V15.8H5.2V9Z','M14.3\x204.5H12.7V15.5H14.3V4.5Z','SetInlineFormatItalicCommand','ShapeFlowChartConnectorIcon','M3.6\x203.6L16.4\x2016.4','createParagraphId','ShapeRectTextboxVerticalIcon','M2.11953\x208.5999H7.88935C10.1109\x209.46549\x2010.5895\x2010.7649\x2010.4268\x2011.6869C10.2475\x2012.703\x209.26939\x2013.5898\x208.00009\x2013.5898C6.63323\x2013.5898\x205.77631\x2013.0502\x205.25534\x2012.528C4.99021\x2012.2623\x204.80823\x2011.9965\x204.69365\x2011.7993C4.63659\x2011.7011\x204.59698\x2011.6211\x204.5727\x2011.5686C4.56059\x2011.5424\x204.55236\x2011.5231\x204.54774\x2011.512L4.54352\x2011.5016C4.4267\x2011.193\x204.0823\x2011.0363\x203.77279\x2011.1516C3.46228\x2011.2673\x203.30438\x2011.6129\x203.4201\x2011.9234L3.9649\x2011.7203C3.4201\x2011.9234\x203.41998\x2011.9231\x203.4201\x2011.9234L3.4206\x2011.9247L3.42118\x2011.9263L3.42262\x2011.9301L3.42661\x2011.9403C3.42977\x2011.9484\x203.43394\x2011.9588\x203.43914\x2011.9713C3.44956\x2011.9965\x203.46418\x2012.0304\x203.48334\x2012.0719C3.52161\x2012.1547\x203.57828\x2012.2682\x203.65608\x2012.4021C3.81124\x2012.6692\x204.0534\x2013.0223\x204.40584\x2013.3756C5.12\x2014.0914\x206.27196\x2014.7898\x208.00009\x2014.7898C9.82574\x2014.7898\x2011.3236\x2013.5101\x2011.6085\x2011.8955C11.812\x2010.7422\x2011.3901\x209.55402\x2010.2665\x208.5999H13.8804C14.2117\x208.5999\x2014.4803\x208.33127\x2014.4803\x207.9999C14.4803\x207.66853\x2014.2117\x207.3999\x2013.8804\x207.3999H8.01411C8.0048\x207.39968\x207.99551\x207.39969\x207.98625\x207.3999H2.11953C1.78816\x207.3999\x201.51953\x207.66853\x201.51953\x207.9999C1.51953\x208.33127\x201.78816\x208.5999\x202.11953\x208.5999Z','UniverDesign','76aRHpNx','url(#shape-ribbon2-icon_clip0_2_47)','svg','UniverIcon','subUnitId','ShapeArrowTypeEnum','direction$','ShapeCallout3Icon','shape.type.flow-chart-process','group\x20univer-relative\x20univer-inline-block','ShapeRibbon2Icon','combobox','shape-straight-connector1-icon','ShapeEllipseIcon','#2563EB','stripShapeTextPlainMarker','UNSPECIFIED','ShapeGroupEnum','ceil','M8\x202C9.2853\x202\x2010.457\x202.42475\x2011.3428\x203.12207C11.8615\x202.96265\x2012.419\x202.875\x2013\x202.875C15.7614\x202.875\x2018\x204.83375\x2018\x207.25C18\x207.97779\x2017.7949\x208.66285\x2017.4355\x209.2666C18.9353\x209.84364\x2020\x2011.297\x2020\x2013C20\x2015.2091\x2018.2091\x2017\x2016\x2017C15.5108\x2017\x2015.0426\x2016.9107\x2014.6094\x2016.75C13.8013\x2017.5234\x2012.7069\x2018\x2011.5\x2018C10.4258\x2018\x209.43972\x2017.6232\x208.66602\x2016.9951C7.77055\x2017.627\x206.67928\x2018\x205.5\x2018C2.46243\x2018\x200\x2015.5376\x200\x2012.5C0\x2010.2946\x201.29808\x208.39235\x203.17188\x207.51562C3.05993\x207.15196\x203\x206.76961\x203\x206.375C3\x203.95875\x205.23858\x202\x208\x202Z','ShapeTextFloatMenuRenderControllerBase','ShapeLightningBoltIcon','M15.5\x203.5L15.5\x208L15.5\x2013L4.5\x2013L4.5\x208L4.5\x203.5L15.5\x203.5ZM6\x2011.5L14\x2011.5L14\x205L6\x205L6\x2011.5Z','number','ShapeCornerIcon','M17.083\x206H15V17H0V11H9V6H7.08301L12.083\x200L17.083\x206Z','COMMA','shape-text-editor-content','CurvedConnector3','updateDocumentRenderConfig','4690584OrGtzJ','true','_context','shape-action-button-beginning-icon','M3.5\x203.5L16.5\x2016.5','!univer-h-5','ShapeEditPanel','domY','univer-relative\x20univer-inline-flex\x20univer-justify-center','h1-icon','ShapeHomePlateIcon','Curved','ungroup-icon','MathMinus','ShapeFlowChartSummingJunctionIcon','startArrow','scaleY','shape-star8-icon','shape.type.cube','M13.9229\x203.20605L17.8452\x2010L13.9229\x2016.7939H6.07764L2.15527\x2010L6.07764\x203.20605H13.9229Z','univer-flex\x20univer-items-center\x20univer-justify-between','shape-flow-chart-extract-icon','variant','univer-h-0\x20univer-w-7\x20univer-border-t-2\x20univer-border-solid\x20univer-border-gray-400\x20dark:!univer-border-gray-300','DocumentFlavor','M3\x209L0\x204H6V14H0L3\x209ZM4.5\x205.5H2.5L4.5\x208.5V5.5ZM4.5\x209.5L2.5\x2012.5H4.5V9.5Z','shape-flow-chart-internal-storage-icon','currentLocale$','shape.type.pie','FALSE','divides','NamedStyleType','univer-mx-auto\x20univer-mt-2\x20univer-h-1\x20univer-w-1/2\x20univer-rounded-md','measureDocumentUnbreakableTextWidth','circle','colorChannel1','dataModel','1em','shape-line-icon','ActionButtonEnd','ShapeTeardropIcon','M4\x2010H16','LeftCircularArrow','#4086f4','mode','PictureFill','univer-gap-2','M1\x2010.001L10\x2018.001V14H19V6H10V2.00098L1\x2010.001ZM3.40002\x2010.001L8.4\x205.55651V7.6H17.4V12.4H8.4V14.4455L3.40002\x2010.001Z','M4.66665\x2012.9004C4.33528\x2012.9004\x204.06665\x2013.169\x204.06665\x2013.5004C4.06665\x2013.8318\x204.33528\x2014.1004\x204.66665\x2014.1004H14C14.3314\x2014.1004\x2014.6\x2013.8318\x2014.6\x2013.5004C14.6\x2013.169\x2014.3314\x2012.9004\x2014\x2012.9004H4.66665Z','univer-rounded-lg\x20univer-p-3','0\x200\x2019\x2018','univer-w-full','M10\x202.8V17.2M2.8\x2010H17.2','FlowchartDecision','line','ShapeTriangleIcon','entries','M18.2\x207V1.8H13L18.2\x207Z','allowShrink','M1\x2019L1\x208L8\x201L19\x201ZM2.6\x208.6624L2.6\x2015.1376L15.1376\x202.6L8.6634\x202.6Z','shape-editor-ui.align.bottom','bottom-center','subscribe','ShapeFlowChartMagneticDrumIcon','SHAPE_FLOATING_TOOLBAR_TOP_OFFSET','BOTTOM','35KLNvwc','lineType','center','M4.66665\x205.56641C4.33528\x205.56641\x204.06665\x205.83504\x204.06665\x206.16641C4.06665\x206.49778\x204.33528\x206.76641\x204.66665\x206.76641H14C14.3314\x206.76641\x2014.6\x206.49778\x2014.6\x206.16641C14.6\x205.83504\x2014.3314\x205.56641\x2014\x205.56641H4.66665Z','FlowchartOnlineStorage','ActionButtonInformation','M2\x204H13.6L18\x208V16H6.4L2\x2012.5V4Z','shape-ribbon-icon_clip0_2_47','ImageFillModeEnum','docStateChangeParams$','BaselineOffset','mask','shape-editor-ui.line.dashType.squareDot','ShapeBorderCallout1Icon','M7\x207.935C7\x207.275\x207.231\x206.635\x207.654\x206.128L7.836\x205.91C8.745\x204.819\x2010.374\x204.69\x2011.442\x205.625C12.542\x206.587\x2012.598\x208.281\x2011.564\x209.315L10\x2010.4V12.7','editorWidth','M10\x201.41406L18.4854\x209.89949L10\x2018.3848L1.51465\x209.89949L10\x201.41406Z','pointerdown','ShapeArrowSizeEnum','M10\x2018C7.62453\x2018\x204\x2016\x204\x2016V7C4\x207\x207.62453\x208.5\x2010\x208.5C12.3755\x208.5\x2016\x207\x2016\x207V16C16\x2016\x2012.3755\x2018\x2010\x2018ZM10.0091\x2016.833C10.7688\x2016.833\x2011.8187\x2016.491\x2013\x2016C13.3189\x2015.8675\x2014.2389\x2015.5207\x2014.5\x2015.3986V9C13.333\x209.4437\x2011.3464\x2010\x2010\x2010C8.65361\x2010\x206.66698\x209.4437\x205.5\x209V15.2646C5.76114\x2015.3867\x206.68111\x2015.8675\x207\x2016C8.18134\x2016.491\x209.24939\x2016.833\x2010.0091\x2016.833Z','getTransformer','metaKey','shape-editor-ui.textEditor.paragraphType.callout','DEFAULT_STYLES','spaceAbove','IEditorService','M2\x206H18M2\x2014H18','M20\x2010.001L11\x2018.001L11\x2014L6\x2014L6\x206L11\x206L11\x202.001ZM12.6\x207.6L7.6\x207.6L7.6\x2012.4L12.6\x2012.4L12.6\x2014.4366L17.5904\x2010.001L12.6\x205.5642Z','onFront','shape-smiley-face-icon','shape.type.cloud','direction','SHAPE_FLOATING_TOOLBAR_DEFAULT_TEXT_COLOR','shape-editor-ui.fill.color','ShapeAccentCallout1Icon','shape.type.star32','M6\x203V16','M19\x2010.001L10\x2018.001V14H1V6H10V2.00098L19\x2010.001ZM16.6\x2010.001L11.6\x205.55651V7.6H2.6V12.4H11.6V14.4455L16.6\x2010.001Z','strokeOpacity','DocSelectionManagerService','components','M10\x203C13.866\x203\x2017\x206.13401\x2017\x2010C17\x2013.866\x2013.866\x2017\x2010\x2017H2V3H10Z','baselineHeight','shape.type.flow-chart-offpage-connector','xlink:href','Tooltip','M10.6667\x206.06689C10.3353\x206.06689\x2010.0667\x206.33552\x2010.0667\x206.66689C10.0667\x206.99827\x2010.3353\x207.26689\x2010.6667\x207.26689H12.7732L11.193\x209.29853C11.0524\x209.47942\x2011.027\x209.72465\x2011.1277\x209.93051C11.2283\x2010.1364\x2011.4375\x2010.2669\x2011.6667\x2010.2669C12.2418\x2010.2669\x2012.6786\x2010.4115\x2012.9585\x2010.6354C13.2204\x2010.845\x2013.4\x2011.166\x2013.4\x2011.6669C13.4\x2012.1622\x2013.2254\x2012.3937\x2013.0567\x2012.5202C12.8588\x2012.6686\x2012.5829\x2012.7336\x2012.3333\x2012.7336C11.7271\x2012.7336\x2011.3432\x2012.4858\x2011.1106\x2012.23C10.8877\x2011.9848\x2010.5082\x2011.9667\x2010.2631\x2012.1896C10.0179\x2012.4125\x209.99979\x2012.792\x2010.2227\x2013.0372C10.6568\x2013.5147\x2011.3522\x2013.9336\x2012.3333\x2013.9336C12.7504\x2013.9336\x2013.3078\x2013.8319\x2013.7767\x2013.4802C14.2746\x2013.1068\x2014.6\x2012.5049\x2014.6\x2011.6669C14.6\x2010.8345\x2014.2796\x2010.1555\x2013.7081\x209.69837C13.4342\x209.47923\x2013.117\x209.32231\x2012.7746\x209.21971L14.4736\x207.03526C14.6143\x206.85437\x2014.6397\x206.60914\x2014.539\x206.40328C14.4383\x206.19743\x2014.2291\x206.06689\x2014\x206.06689H10.6667Z','viewportKeys','shape.type.curved-connector3-arrow2','ShapeHorizontalScrollIcon','right','shape-wedge-rect-callout-icon','shape-callout3-icon','Star16','Star4','M1.9999\x201.89941C1.66853\x201.89941\x201.3999\x202.16804\x201.3999\x202.49941C1.3999\x202.83078\x201.66853\x203.09941\x201.9999\x203.09941H13.9999C14.3313\x203.09941\x2014.5999\x202.83078\x2014.5999\x202.49941C14.5999\x202.16804\x2014.3313\x201.89941\x2013.9999\x201.89941H1.9999Z','backwardLabel','ctrlKey','start','square','shape.type.math-divide','M2\x203C6.95\x203\x2010.75\x204.45\x2013.45\x207.2C16.05\x209.85\x2017.4\x2012.55\x2018\x2017','capType','lineStrokeType','shape-funnel-icon','M8.05049\x206.5C8.60971\x206.5\x209.05243\x206.66038\x209.39417\x206.99057C9.72039\x207.32075\x209.89126\x207.77358\x209.89126\x208.34906C9.89126\x209.08491\x209.58058\x209.58491\x208.97476\x209.83019C9.30097\x209.95283\x209.54951\x2010.1415\x209.72039\x2010.3868C9.9068\x2010.6415\x2010\x2010.9717\x2010\x2011.3679C10\x2011.9906\x209.82136\x2012.5\x209.47184\x2012.8962C9.09903\x2013.2925\x208.60971\x2013.5\x208.01942\x2013.5C7.45243\x2013.5\x206.99417\x2013.3208\x206.65243\x2012.9717C6.34428\x2012.6573\x206.14372\x2012.2301\x206.05074\x2011.69C6.00957\x2011.4508\x206.20502\x2011.2453\x206.44767\x2011.2453C6.67451\x2011.2453\x206.85393\x2011.4269\x206.90096\x2011.6488C6.95658\x2011.9113\x207.06111\x2012.1258\x207.21942\x2012.2925C7.42136\x2012.5189\x207.68544\x2012.6321\x208.01165\x2012.6321C8.36893\x2012.6321\x208.65631\x2012.5\x208.87379\x2012.2547C9.06019\x2012.0283\x209.16116\x2011.7547\x209.16116\x2011.4151C9.16116\x2011.0189\x209.06019\x2010.7264\x208.85825\x2010.5377C8.67184\x2010.3491\x208.39223\x2010.2547\x208.02718\x2010.2547H8.01009C7.79647\x2010.2547\x207.6233\x2010.0815\x207.6233\x209.86792C7.6233\x209.6543\x207.79647\x209.48113\x208.01009\x209.48113H8.01942C8.36116\x209.48113\x208.61748\x209.38679\x208.78835\x209.20755C8.95922\x209.0283\x209.05243\x208.76415\x209.05243\x208.42453C9.05243\x208.08491\x208.96699\x207.83019\x208.81165\x207.65094C8.64078\x207.46226\x208.38447\x207.37736\x208.05825\x207.37736C7.72427\x207.37736\x207.46019\x207.48113\x207.27379\x207.68868C7.14954\x207.82701\x207.05635\x208.01145\x206.99882\x208.24199C6.94616\x208.45298\x206.77167\x208.62264\x206.5542\x208.62264C6.31334\x208.62264\x206.11943\x208.41738\x206.16627\x208.18112C6.25771\x207.71991\x206.44189\x207.3465\x206.72233\x207.0566C7.06408\x206.67924\x207.5068\x206.5\x208.05049\x206.5Z','ShapePlaqueIcon','defs','onSavingEditorData$','SHAPE_FLOATING_TOOLBAR_DEFAULT_TEXT_BACKGROUND_COLOR','stretch','ShapeSquareTabsIcon','labelKey','univer-box-border\x20univer-flex\x20univer-flex-col\x20univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','Dropdown','ShapeStrokeColorDoubleIcon','dispose','_docCanvasPopManagerService','ShapeCornerTabsIcon','ShapeFlowChartDocumentIcon','M10.0713\x2018L3\x2011C1.7859\x2010.0868\x201\x208.6356\x201\x207C1\x204.2386\x203.2386\x202\x206\x202C7.6357\x202\x209.0878\x202.7857\x2010\x204C10.9122\x202.7857\x2012.3642\x202\x2014\x202C16.7614\x202\x2019\x204.2386\x2019\x207C19\x208.6358\x2018.2134\x2010.0868\x2016.999\x2010.9991L17\x2011L10.0713\x2018ZM10.0713\x2015.74L4.05\x209.78C3.2\x209.15\x202.7\x208.16\x202.7\x207C2.7\x205.1775\x204.1775\x203.7\x206\x203.7C7.0781\x203.7\x208.0603\x204.2108\x208.6821\x205.0624L10\x206.856L11.3179\x205.0624C11.9397\x204.2108\x2012.9219\x203.7\x2014\x203.7C15.8225\x203.7\x2017.3\x205.1775\x2017.3\x207C17.3\x208.1601\x2016.7989\x209.1506\x2015.9506\x209.7781L10.0713\x2015.74Z','M1.9999\x207.40015C1.66853\x207.40015\x201.3999\x207.66878\x201.3999\x208.00015C1.3999\x208.33152\x201.66853\x208.60015\x201.9999\x208.60015H13.9999C14.3313\x208.60015\x2014.5999\x208.33152\x2014.5999\x208.00015C14.5999\x207.66878\x2014.3313\x207.40015\x2013.9999\x207.40015H1.9999Z','univer-w-12','shape-ellipse-icon','M2\x203H10.6L18.5\x2010L10.6\x2017H2V3Z','SHEET_DOC_SHAPE_FLOATING_TOOLBAR_TOP_OFFSET','none','shape.type.action-button-blank','M1.8\x201.8H6.2V6.2H1.8z','[data-u-comp=\x22shape-stroke-dash-dropdown\x22]','M13.8\x201.8H18.2V6.2H13.8z','shape-floating-toolbar-collapsed','ShapeBentConnector3Arrow2Icon','ariaExpanded','DocSelectionRenderService','gradientStops','select','shape.type.accent-border-callout3','univer-w-4\x20univer-rounded-l-none\x20univer-rounded-r-md\x20univer-border-l\x20univer-border-solid\x20univer-border-gray-200\x20rtl:univer-rounded-l-md\x20rtl:univer-rounded-r-none\x20rtl:univer-border-l-0\x20rtl:univer-border-r\x20dark:!univer-border-gray-700','getSkeletonData','SUBSCRIPT','shape-editor-ui.textEditor.paragraphType.heading5','shape-straight-connector2-icon','PERIOD','MoreRightIcon','horizontalAnchor','shape.type.double-wave','allowHostSizeShrink','shape-flow-chart-summing-junction-icon','shape.type.uturn-arrow','shape-accent-border-callout3-icon','SwooshArrow','3774132zOZuNS','solidFill','SquareTabs','ShapeQuadArrowIcon','documentMarginTop','shape-flow-chart-manual-operation-icon','flowchart','FlowchartConnector','M1.5\x2013.5H4.5V16.5H1.5z','packageName','shape-stroke-dash-dropdown','getActualSize','DocSkeletonManagerService','memo','shape-up-arrow-icon','shape-cloud-callout-icon-clip','toolbarComponent','ShapeFlowChartDisplayIcon','shape-editor-ui.line.dashType.solid','onSelectionStart$','aba','backLabel','ShapeFloatingToolbar','DiamondArrow','shape-editor-ui.toolbar.alignRight','isStrike','params','ShapeRound2DiagRectIcon','Donut','ShapeFlowChartDecisionIcon','nextWidth','shape.type.flow-chart-collate','AccentCallout3','shape-editor-ui.toolbar.superscript','shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-left','ActionButtonMovie','univer-flex\x20univer-h-6\x20univer-min-w-7\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','M2\x204.25C4.45\x203.45\x206.35\x203.75\x208.1\x204.75C9.7\x205.65\x2011.2\x205.65\x2012.85\x204.65C14.5\x203.65\x2016.1\x203.8\x2018\x204.4V15.75C15.95\x2016.45\x2014.15\x2016.1\x2012.55\x2014.85C11.2\x2013.8\x209.55\x2013.8\x208.15\x2014.8C6.55\x2015.9\x204.55\x2016.1\x202\x2015.3V4.25Z','univer-grid-cols-3','univer-h-14\x20univer-w-full\x20univer-rounded\x20univer-object-cover','shape-editor-ui.textEditor.paragraphType.heading2','shape.type.star12','shape-editor-ui.line.endArrowSize','shape-triangle-icon','M4\x204L16\x2016M16\x204L4\x2016','univer-text-sm','segmentId','verticalAlign','React','h4-icon','height','M4.5\x208.5V6.5V4H9V8.5H6.5H4.5ZM7.5\x205.5H6V7H7.5V5.5Z','Segmented','M11.2667\x208.33356C11.2667\x207.67245\x2011.8201\x207.26689\x2012.3333\x207.26689C12.8465\x207.26689\x2013.4\x207.67244\x2013.4\x208.33356C13.4\x208.62807\x2013.2712\x208.94814\x2012.9954\x209.32391C12.7183\x209.70153\x2012.3394\x2010.0744\x2011.9174\x2010.4803L11.8355\x2010.559C11.4524\x2010.9268\x2011.0365\x2011.3263\x2010.7149\x2011.7373C10.3718\x2012.1759\x2010.0667\x2012.7122\x2010.0667\x2013.3336C10.0667\x2013.6649\x2010.3353\x2013.9336\x2010.6667\x2013.9336H14C14.3314\x2013.9336\x2014.6\x2013.6649\x2014.6\x2013.3336C14.6\x2013.0022\x2014.3314\x2012.7336\x2014\x2012.7336H11.4782C11.5286\x2012.6531\x2011.5889\x2012.5676\x2011.6601\x2012.4767C11.9269\x2012.1355\x2012.2843\x2011.792\x2012.6877\x2011.4043L12.7492\x2011.3452C13.1606\x2010.9496\x2013.615\x2010.5079\x2013.9629\x2010.0338C14.3122\x209.55787\x2014.6\x208.98906\x2014.6\x208.33356C14.6\x206.88362\x2013.3757\x206.06689\x2012.3333\x206.06689C11.291\x206.06689\x2010.0667\x206.88361\x2010.0667\x208.33356C10.0667\x208.66493\x2010.3353\x208.93356\x2010.6667\x208.93356C10.998\x208.93356\x2011.2667\x208.66493\x2011.2667\x208.33356Z','getObject','shape.type.action-button-return','shape-flow-chart-magnetic-tape-icon','ShapeSunIcon','_showFloatMenu','ShapeRightArrowIcon','ShapeTrapezoidIcon','Fragment','ActionButtonDocument','M12.7\x2013.5H14.2','url(#shape-folder-corner-icon_shape-folder-corner-icon-clip-0)','BorderCallout1','shape-dodecagon-icon-frame-clip','M2.92894\x202.92891L17.0711\x2017.0711M17.0711\x202.92891L2.92894\x2017.0711','shape-editor-ui.deleteShape','object','resolveShapeTextDocumentPageHeight','shape.type.accent-border-callout2','StraightConnector1','isUnderline','useState','4TkzcEJ','univer.shape-editor-ui.floating-toolbar.collapsed','rect','shape.type.line-inv','OVERFLOW','ShapeActionButtonSoundIcon','shape.type.round2-same-rect','shape-flow-chart-sort-icon','source','M18.2\x2013V18.2H13L18.2\x2013Z','shape-background-color-double-icon','M19.0002\x204V15H6.00018V4H19.0002Z','getOwnPropertyDescriptor','shape.type.left-right-arrow-callout','VerticalCenterIcon','shape-curved-connector3-arrow1-icon','ShapeCurvedConnector3Icon','shape-curved-connector3-arrow2-icon','M2\x203.1C5\x201.15\x208.3\x201.15\x2010.85\x203.25C12.9\x204.9\x2015.4\x205.45\x2018\x204.55V16.65C15.1\x2017.25\x2012.55\x2016.7\x2010.35\x2015.25C7.8\x2013.55\x205.25\x2013.25\x202\x2014V3.1Z','IrregularSeal1','ItalicIcon','top','M16\x205L13\x205L13\x206L19\x206L19\x2014L13\x2014L13\x2015L16\x2015L10\x2020L4\x2015L7\x2015L7\x2014L1\x2014L1\x206L7\x206L7\x205L4\x205L10\x200ZM8.6\x203.2482L8.6\x207.6L2.6\x207.6L2.6\x2012.4L8.6\x2012.4L8.6\x2016.7509L10\x2017.9171L11.4\x2016.7509L11.4\x2012.4L17.4\x2012.4L17.4\x207.6L11.4\x207.6L11.4\x203.2482L10\x202.0819Z','shape-editor-ui.shape.','CloudCallout','Triangle','getDocumentDataModel','FlowchartDisplay','M6.90665\x206.19395C7.03532\x206.07521\x207.20058\x206\x207.37567\x206C7.72213\x206\x208.003\x206.28087\x208.003\x206.62733V13.2545C8.003\x2013.5856\x207.73459\x2013.854\x207.4035\x2013.854C7.07241\x2013.854\x206.804\x2013.5856\x206.804\x2013.2545V7.441C6.49279\x207.73774\x206.12443\x207.9821\x205.70206\x208.17407C5.36097\x208.3291\x205\x208.05742\x205\x207.68276C5\x207.42431\x205.17744\x207.20223\x205.41875\x207.1097C5.64056\x207.02465\x205.86965\x206.91508\x206.111\x206.781C6.41515\x206.59513\x206.68037\x206.40277\x206.90665\x206.19395Z','gradientType','lineSpacing','H1Icon','Small','H2Icon','tiltX','MathNotEqual','renderedContentWidth','ShapeMathMinusIcon','@univerjs/docs-ui','M12\x2014C12\x2013.4477\x2012.4477\x2013\x2013\x2013H18V11H13C11.3431\x2011\x2010\x2012.3431\x2010\x2014V19H12V14Z','shape.type.down-arrow-callout','M15.4713\x2011.7165L17.512\x2010L15.4713\x208.2835L15.4713\x204.5287L11.7166\x204.5287L10\x202.4868L8.2834\x204.5287L4.5287\x204.5287L4.5287\x208.2834L2.4868\x2010L4.5287\x2011.7166L4.5287\x2015.4713L8.2835\x2015.4713L10\x2017.512L11.7165\x2015.4713L15.4713\x2015.4713ZM17.0713\x2017.0713L12.4619\x2017.0713L10\x2020L7.5381\x2017.0713L2.9287\x2017.0713L2.9287\x2012.4619L0\x2010L2.9287\x207.5381L2.9287\x202.9287L7.5381\x202.9287L10\x200L12.4619\x202.9287L17.0713\x202.9287L17.0713\x207.5381L20\x2010L17.0713\x2012.4619Z','GroupIcon','\x0a\x20\x20\x20\x20\x20\x20univer-flex\x20univer-h-6\x20univer-min-w-6\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x0a\x20\x20\x20\x20\x20\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1\x20univer-text-sm\x20univer-text-gray-700\x0a\x20\x20\x20\x20\x20\x20univer-transition-colors\x0a\x20\x20\x20\x20\x20\x20hover:univer-bg-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:!univer-text-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:hover:!univer-bg-gray-700\x0a\x20\x20\x20\x20','shape-editor-ui.fill.picture.align.bl','ShapeEllipseRibbonIcon','Font\x20family','ShapeFlowChartExtractIcon','MathDivide','ShapeFlowChartManualOperationIcon','M3.0999\x202.66689C3.0999\x202.33552\x202.83127\x202.06689\x202.4999\x202.06689C2.16853\x202.06689\x201.8999\x202.33552\x201.8999\x202.66689V13.3336C1.8999\x2013.6649\x202.16853\x2013.9336\x202.4999\x2013.9336C2.83127\x2013.9336\x203.0999\x2013.6649\x203.0999\x2013.3336V8.5999H8.2334V13.3336C8.2334\x2013.6649\x208.50203\x2013.9336\x208.8334\x2013.9336C9.16477\x2013.9336\x209.4334\x2013.6649\x209.4334\x2013.3336V2.66689C9.4334\x202.33552\x209.16477\x202.06689\x208.8334\x202.06689C8.50203\x202.06689\x208.2334\x202.33552\x208.2334\x202.66689V7.3999H3.0999V2.66689Z','0\x200\x2018\x2019','RadioGroup','collapsed','DocParagraphTypeDropdown','blur','shape-up-down-arrow-callout-icon','M6.8981\x207.2334C6.56672\x207.2334\x206.2981\x207.50203\x206.2981\x207.8334C6.2981\x208.16477\x206.56672\x208.4334\x206.8981\x208.4334H14.4605C14.7918\x208.4334\x2015.0605\x208.16477\x2015.0605\x207.8334C15.0605\x207.50203\x2014.7918\x207.2334\x2014.4605\x207.2334H6.8981Z','FlowchartManualOperation','align','Ellipse','univer-w-[168px]','univer-text-primary-600','current','ShapeActionButtonReturnIcon','M6.00018\x203V16','ShapeCanIcon','shape-chevron-icon','\x0a\x20\x20\x20\x20\x20\x20univer-flex\x20univer-h-6\x20univer-items-center\x20univer-justify-center\x20univer-border-none\x20univer-bg-transparent\x0a\x20\x20\x20\x20\x20\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x0a\x20\x20\x20\x20\x20\x20hover:univer-bg-gray-100\x0a\x20\x20\x20\x20\x20\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x0a\x20\x20\x20\x20\x20\x20dark:!univer-text-gray-100\x0a\x20\x20\x20\x20\x20\x20dark:hover:!univer-bg-gray-700\x0a\x20\x20\x20\x20','shape-plus-icon','M6.0001\x2015.3138L6.0001\x203.9999L15\x2010ZM7.5999\x206.9883L7.5999\x2012.5106L11.9926\x209.917Z','shape-text-editor','FlowchartOffPageConnector','shape-plaque-icon','M5.14972\x203.90157C5.38815\x204.1317\x205.39487\x204.51154\x205.16473\x204.74996L2.55461\x207.45409C2.01739\x208.01066\x202.03336\x208.89745\x202.59029\x209.43431L5.14944\x2011.9013C5.38802\x2012.1313\x205.39498\x2012.5111\x205.165\x2012.7497C4.93502\x2012.9883\x204.55519\x2012.9952\x204.31662\x2012.7652L1.75746\x2010.2983C0.723174\x209.30122\x200.693506\x207.65434\x201.69121\x206.6207L4.30133\x203.91657C4.53146\x203.67815\x204.9113\x203.67143\x205.14972\x203.90157Z','ShapeSmileyFaceIcon','M19.8384\x209.06158H17.4858C16.7507\x205.70841\x2013.9647\x203.06158\x2010.4165\x203.06158C6.86834\x203.06158\x204.08235\x205.70841\x203.34717\x209.06158H1.13623L5.51514\x2017L10.2083\x209.06158H8.87158C9.28814\x208.57566\x209.85891\x208.29987\x2010.4165\x208.29987C10.9741\x208.29987\x2011.5449\x208.57566\x2011.9614\x209.06158H10.8113L15.5151\x2017.001L19.8384\x209.06158ZM13.5\x2010.8234L14.3442\x2010.8233C14.3442\x208.45649\x2012.5861\x206.53815\x2010.4165\x206.53815C8.24692\x206.53815\x206.4888\x208.45649\x206.48877\x2010.8233L7.5\x2010.8234L5.51514\x2013.8233L3.99951\x2010.8233H4.9165C4.91653\x207.50975\x207.37908\x204.8233\x2010.4165\x204.8233C13.4539\x204.8233\x2015.9165\x207.50975\x2015.9165\x2010.8233H17.0005L15.5151\x2013.8233L13.5\x2010.8234Z','shape.type.heart','Wave','shape-editor-ui.toolbar.textColor','M4.5\x2016.5V12V7H15.5V12V16.5H4.5ZM14\x208.5H6V15H14V8.5Z','HEADING_4','M2.66641\x2013.4663C2.33504\x2013.4663\x202.06641\x2013.7349\x202.06641\x2014.0663C2.06641\x2014.3977\x202.33504\x2014.6663\x202.66641\x2014.6663H13.3331C13.6644\x2014.6663\x2013.9331\x2014.3977\x2013.9331\x2014.0663C13.9331\x2013.7349\x2013.6644\x2013.4663\x2013.3331\x2013.4663H2.66641Z','shape-editor-ui.config','univer-ml-auto\x20univer-whitespace-nowrap\x20univer-text-xs\x20univer-leading-none\x20univer-text-gray-400\x20rtl:univer-ml-0\x20rtl:univer-mr-auto\x20dark:!univer-text-gray-500','add','ShapeSketchTypeEnum','angle','flowAxisLength','shape.type.corner-tabs','shape-round2-diag-rect-icon','ShapeFlowChartOffpageConnectorIcon','M1.65465\x203.96697V2.9942C1.65465\x202.9188\x201.64353\x202.86563\x201.62465\x202.83387C1.61052\x202.81011\x201.58943\x202.79243\x201.53852\x202.79243H1.44483C1.23836\x202.79243\x201.07099\x202.62506\x201.07099\x202.41859C1.07099\x202.23956\x201.19714\x202.09152\x201.36369\x202.04728C1.4425\x202.02634\x201.51336\x202.00423\x201.57642\x201.98104C1.65529\x201.94986\x201.73286\x201.91381\x201.80913\x201.87285C1.8974\x201.82544\x201.99768\x201.79517\x202.10303\x201.79517C2.41692\x201.79517\x202.67137\x202.04962\x202.67137\x202.36351V4.02047C2.67137\x204.12385\x202.75517\x204.20765\x202.85855\x204.20765C3.0614\x204.20765\x203.22585\x204.3721\x203.22585\x204.57495V4.63332C3.22585\x204.86842\x203.03527\x205.059\x202.80018\x205.059H1.41884C1.1829\x205.059\x200.993164\x204.86511\x200.993164\x204.63087C0.993164\x204.39932\x201.18072\x204.20765\x201.41398\x204.20765C1.5469\x204.20765\x201.65465\x204.09989\x201.65465\x203.96697Z','clientX','univer-text-xs\x20univer-text-gray-600\x20univer-transition-transform\x20dark:!univer-text-gray-300','SHAPE_EDITOR_UI_PLUGIN','univer-grid\x20univer-grid-cols-10\x20univer-gap-1','resetInitialWidth','OvalArrow','AlignBottomIcon','clsx','AlignRightCommand','shape-rect-icon','M12.0922\x206.3746C13.1972\x206.3746\x2013.9126\x206.7853\x2014.2274\x207.61727C14.3407\x207.91664\x2014.0875\x208.20479\x2013.7674\x208.20479C13.5205\x208.20479\x2013.3193\x208.02563\x2013.2035\x207.80758C12.9951\x207.4154\x2012.623\x207.22366\x2012.0825\x207.22366C11.5971\x207.22366\x2011.2184\x207.45008\x2010.9369\x207.91234C10.6553\x208.3463\x2010.5194\x208.88404\x2010.5194\x209.54441C10.5194\x209.57272\x2010.5194\x209.61045\x2010.5291\x209.66706H10.568C10.7621\x209.36517\x2011.0049\x209.14819\x2011.3058\x209.00668C11.5777\x208.86517\x2011.8981\x208.79913\x2012.267\x208.79913C12.9466\x208.79913\x2013.4903\x209.00668\x2013.8981\x209.42177C14.2961\x209.8463\x2014.5485\x2010.5189\x2014.5485\x2011.1792C14.5485\x2011.8491\x2014.3155\x2012.4057\x2013.8592\x2012.8396C13.3932\x2013.2736\x2012.8107\x2013.5\x2012.1311\x2013.5C11.2767\x2013.5\x2010.6359\x2013.1981\x2010.1893\x2012.5943C9.76214\x2012.0189\x209.5\x2011.0916\x209.5\x2010.0633C9.5\x208.96894\x209.7233\x208.08215\x2010.1893\x207.40291C10.6553\x206.71423\x2011.2961\x206.3746\x2012.0922\x206.3746ZM12.0534\x209.62932C11.6165\x209.62932\x2011.2767\x209.7614\x2011.0243\x2010.0255C10.7718\x2010.2897\x2010.6942\x2010.7642\x2010.6942\x2011.2075C10.6942\x2011.6415\x2010.8204\x2011.9906\x2011.0825\x2012.2547C11.335\x2012.5189\x2011.6748\x2012.6509\x2012.0922\x2012.6509C12.5194\x2012.6509\x2012.8592\x2012.5094\x2013.1117\x2012.2358C13.3738\x2011.9528\x2013.5097\x2011.6038\x2013.5097\x2011.1792C13.5097\x2010.7453\x2013.335\x2010.2708\x2013.0825\x2010.0255C12.8301\x209.7614\x2012.4806\x209.62932\x2012.0534\x209.62932Z','M7.46855\x202.83731C7.46855\x202.61639\x207.64764\x202.4373\x207.86855\x202.4373H13.8603C14.0812\x202.4373\x2014.2603\x202.61639\x2014.2603\x202.8373V9.5049C14.2603\x209.72581\x2014.0812\x209.90489\x2013.8603\x209.90489H12.866C12.5346\x209.90489\x2012.266\x2010.1735\x2012.266\x2010.5049C12.266\x2010.8363\x2012.5346\x2011.1049\x2012.866\x2011.1049H13.8603C14.7439\x2011.1049\x2015.4603\x2010.3886\x2015.4603\x209.5049V2.8373C15.4603\x201.95365\x2014.7439\x201.2373\x2013.8603\x201.2373H7.86855C6.9849\x201.2373\x206.26855\x201.95365\x206.26855\x202.83731V3.48688C6.26855\x203.81825\x206.53718\x204.08688\x206.86855\x204.08688C7.19993\x204.08688\x207.46855\x203.81825\x207.46855\x203.48688V2.83731Z','symbol','getUnit','shapeId','M10.6669\x206.40332C10.3355\x206.40332\x2010.0669\x206.67195\x2010.0669\x207.00332V9.34492C10.0669\x209.67629\x2010.3355\x209.94492\x2010.6669\x209.94492C10.7822\x209.94492\x2010.8899\x209.91238\x2010.9814\x209.85599C10.9901\x209.85195\x2011.0027\x209.84632\x2011.0192\x209.83936C11.0764\x209.81533\x2011.1692\x209.78033\x2011.2927\x209.74447C11.5397\x209.67268\x2011.8996\x209.60022\x2012.3336\x209.60022C12.4975\x209.60022\x2012.5978\x209.63412\x2012.6624\x209.67167C12.7263\x209.70877\x2012.79\x209.76953\x2012.8503\x209.87834C12.983\x2010.1181\x2013.0669\x2010.5337\x2013.0669\x2011.1669C13.0669\x2011.8061\x2012.9802\x2012.1936\x2012.8338\x2012.414C12.7252\x2012.5775\x2012.5275\x2012.7336\x2012.0002\x2012.7336C11.6445\x2012.7336\x2011.4936\x2012.622\x2011.4192\x2012.5328C11.3289\x2012.4245\x2011.2669\x2012.2453\x2011.2669\x2012.0028C11.2669\x2011.6714\x2010.9983\x2011.4028\x2010.6669\x2011.4028C10.3355\x2011.4028\x2010.0669\x2011.6714\x2010.0669\x2012.0028C10.0669\x2012.4244\x2010.1716\x2012.9106\x2010.4979\x2013.3016C10.8401\x2013.7118\x2011.356\x2013.9336\x2012.0002\x2013.9336C12.8063\x2013.9336\x2013.4419\x2013.6673\x2013.8334\x2013.0779C14.1869\x2012.5456\x2014.2669\x2011.8497\x2014.2669\x2011.1669C14.2669\x2010.4781\x2014.1841\x209.81027\x2013.9002\x209.29724C13.7521\x209.02964\x2013.545\x208.79662\x2013.2651\x208.63403C12.986\x208.4719\x2012.6697\x208.40022\x2012.3336\x208.40022C11.9239\x208.40022\x2011.5627\x208.44957\x2011.2669\x208.51389V7.60332H13.3336C13.6649\x207.60332\x2013.9336\x207.33469\x2013.9336\x207.00332C13.9336\x206.67195\x2013.6649\x206.40332\x2013.3336\x206.40332H10.6669Z','ShapeFlowChartPredefinedProcessIcon','createShapeTextPlaceholderDocumentData','CodeIcon','shape.type.bevel','shape-square-tabs-icon','shape.type.up-arrow','M2.8\x204.8H17.2V15.2H2.8z','StealthArrow','ShapeCircularArrowIcon','AlignTextBothIcon','url(#shape-folder-corner-icon_shape-folder-corner-icon-clip-1)','\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','M7.58641\x206.33811C7.69108\x206.22386\x207.83569\x206.15094\x207.99065\x206.15094C8.26885\x206.15094\x208.49438\x206.37647\x208.49438\x206.65467V13.3511C8.49438\x2013.6261\x208.27143\x2013.8491\x207.99642\x2013.8491C7.7214\x2013.8491\x207.49845\x2013.6261\x207.49845\x2013.3511V7.56334C7.26654\x207.82427\x206.99641\x208.04389\x206.68997\x208.22217C6.36833\x208.4093\x205.99999\x208.14751\x205.99999\x207.77541C5.99999\x207.53458\x206.16061\x207.32594\x206.37895\x207.22433C6.55349\x207.1431\x206.73362\x207.04047\x206.92282\x206.91644C7.17667\x206.73339\x207.39786\x206.54392\x207.58641\x206.33811Z','custom','\x0a\x20\x20\x20\x20\x20\x20!univer-h-6\x20!univer-min-w-0\x20!univer-rounded-md\x20!univer-border-transparent\x0a\x20\x20\x20\x20\x20\x20!univer-bg-transparent\x20!univer-px-1.5\x0a\x20\x20\x20\x20','shape.type.left-right-arrow','shape-editor-ui.line.transparency','M4.53037\x208.28711C4.53037\x207.95574\x204.799\x207.68711\x205.13037\x207.68711H15.1489C15.4803\x207.68711\x2015.7489\x207.95574\x2015.7489\x208.28711C15.7489\x208.61848\x2015.4803\x208.88711\x2015.1489\x208.88711H5.13037C4.799\x208.88711\x204.53037\x208.61848\x204.53037\x208.28711Z','univer-w-28','M14.4605\x202.56689H6.8981C6.56672\x202.56689\x206.2981\x202.83552\x206.2981\x203.16689C6.2981\x203.49827\x206.56672\x203.76689\x206.8981\x203.76689H14.4605C14.7918\x203.76689\x2015.0605\x203.49827\x2015.0605\x203.16689C15.0605\x202.83552\x2014.7918\x202.56689\x2014.4605\x202.56689Z','shape-flow-chart-connector-icon','deepCompare','catch','RIGHT','random','univer-flex\x20univer-h-8\x20univer-w-8\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800','ShapeMathPlusIcon','createElement','UpArrow','Bevel','TypographyIcon','sections','displayName','shape-floating-toolbar-font-family-menu','substring','M7\x2013L6\x2013L6\x2014.3301L0\x2010L6\x205.6699L6\x207L7\x207L7\x201L13\x201L13\x207L14\x207L14\x205.6699L20\x2010L14\x2014.3301L14\x2013L13\x2013L13\x2019L7\x2019ZM8.6\x208.6L4.6735\x208.6L2.7334\x2010L4.6735\x2011.4L8.6\x2011.4L8.6\x2017.4L11.4\x2017.4L11.4\x2011.4L15.3266\x2011.4L17.2652\x2010L15.3266\x208.6L11.4\x208.6L11.4\x202.6L8.6\x202.6Z','EquationShape','shape.type.triangle','IUniverInstanceService','http://www.w3.org/2000/svg','shape.type.ribbon','ShapeFlowChartPunchedTapeIcon','NonIsoscelesTrapezoid','shape-editor-ui.line.beginArrowType','M2\x206.80176L18\x203.24609V16H2V6.80176Z','M1.3999\x209.8334C1.3999\x209.50203\x201.66853\x209.2334\x201.9999\x209.2334H13.9999C14.3313\x209.2334\x2014.5999\x209.50203\x2014.5999\x209.8334C14.5999\x2010.1648\x2014.3313\x2010.4334\x2013.9999\x2010.4334H1.9999C1.66853\x2010.4334\x201.3999\x2010.1648\x201.3999\x209.8334Z','shape-editor-ui.toolbar.resetColor','getCanvasElement','shape.type.pie-wedge','useLeftAndRightArrow','left','shape-cloud-callout-icon','AccentCallout1','SetInlineFormatFontSizeCommand','Stretch','finally','ShapeCallout2Icon','M10.1007\x203.92188C10.4034\x203.98418\x2010.631\x204.25215\x2010.631\x204.57324C10.6309\x204.8943\x2010.4033\x205.16233\x2010.1007\x205.22461L9.96594\x205.23828H4.73547C4.36824\x205.23828\x204.0705\x204.94046\x204.07043\x204.57324C4.07043\x204.20597\x204.3682\x203.9082\x204.73547\x203.9082H9.96594L10.1007\x203.92188Z','getRenderById','M1.5\x203.5H4.5V6.5H1.5z','onPointerDown','setItem','univer-mb-2\x20univer-text-sm\x20univer-font-medium\x20univer-text-gray-900\x20dark:!univer-text-gray-100','shape.type.quad-arrow','shape.type.decagon','ShapeFlowChartOfflineStorageIcon','M1.8\x2013.8H6.2V18.2H1.8z','univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-2\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900','shape-border-callout2-icon','isHorizontal','group','M11.6427\x206C12.4102\x206\x2013.0041\x206.37736\x2013.4244\x207.14286C13.8081\x207.85445\x2014\x208.80323\x2014\x2010C14\x2011.186\x2013.8081\x2012.1456\x2013.4244\x2012.8571C13.0041\x2013.6119\x2012.4102\x2014\x2011.6427\x2014C10.8752\x2014\x2010.2813\x2013.6119\x209.86097\x2012.8571C9.47722\x2012.1456\x209.28534\x2011.1968\x209.28534\x2010C9.28534\x208.79245\x209.47722\x207.84367\x209.86097\x207.14286C10.2813\x206.37736\x2010.8752\x206\x2011.6427\x206ZM11.6427\x206.99191C11.1036\x206.99191\x2010.729\x207.33693\x2010.5097\x208.03774C10.3452\x208.51213\x2010.2721\x209.16981\x2010.2721\x2010C10.2721\x2010.8194\x2010.3452\x2011.4771\x2010.5097\x2011.9623C10.729\x2012.6523\x2011.1036\x2013.0081\x2011.6427\x2013.0081C12.1726\x2013.0081\x2012.5564\x2012.6523\x2012.7757\x2011.9623C12.931\x2011.4771\x2013.0132\x2010.8194\x2013.0132\x2010C13.0132\x209.16981\x2012.931\x208.51213\x2012.7757\x208.03774C12.5564\x207.33693\x2012.1726\x206.99191\x2011.6427\x206.99191Z','topmost-icon','measuredContentWidth','children','DeleteLeftCommand','ShapeBentConnector3Arrow1Icon','M19\x204V15H9V4H19Z','shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right','M11.5\x206C11.5\x204.34315\x2010.6569\x203.5\x209\x203.5H6C4.34315\x203.5\x203.5\x204.34315\x203.5\x206V15H1.5V6H0V16.5H5V6C5\x205.44771\x205.44771\x205\x206\x205H9C9.5523\x205\x2010\x205.44772\x2010\x206H11.5ZM6\x201.5H9C11.2091\x201.5\x2013.5\x203.79086\x2013.5\x206V9H13.4971L12.5\x2011L11.5\x209V6H10V7H8L12.5\x2014L17\x207H15V6C15\x202.68629\x2012.3137\x200\x209\x200H6C2.68629\x200\x200\x202.68629\x200\x206H1.5C1.5\x203.79086\x203.79086\x201.5\x206\x201.5Z','dispatchEvent','getViewport','shape.type.left-up-arrow','shape-bracket-pair-icon','renderConfig','updateHostSize','textWrap','useEditor','univer-w-24','shape-uturn-arrow-icon','verticalOffset','M1.9999\x205.56641C1.66853\x205.56641\x201.3999\x205.83504\x201.3999\x206.16641C1.3999\x206.49778\x201.66853\x206.76641\x201.9999\x206.76641H13.9999C14.3313\x206.76641\x2014.5999\x206.49778\x2014.5999\x206.16641C14.5999\x205.83504\x2014.3313\x205.56641\x2013.9999\x205.56641H1.9999Z','M16\x2011.5V16H11V10.5L16\x2011.5ZM12.5\x2014.5H14.5V12.5L12.5\x2012V14.5Z','OpenArrow','completeEditing','shape-action-button-home-icon','shape.type.callout1','univer-w-20\x20univer-flex-1','univer-flex\x20univer-flex-col\x20univer-gap-3','other','isShapeTextOpticalVerticalAlignEnabled','files','textRuns','univer-mb-1\x20univer-rounded\x20univer-bg-gray-100\x20univer-px-3\x20univer-py-1.5\x20univer-text-xs\x20univer-font-medium\x20univer-text-gray-700\x20dark:!univer-bg-gray-800\x20dark:!univer-text-gray-200','toPrimitive','ShapeFillEnum','scaleX','univer-shrink-0\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','M11.7902\x205.992C12.7142\x205.992\x2013.4292\x206.377\x2013.9352\x207.158C14.3972\x207.884\x2014.6282\x208.852\x2014.6282\x2010.073C14.6282\x2011.283\x2014.3972\x2012.262\x2013.9352\x2012.988C13.4292\x2013.758\x2012.7142\x2014.154\x2011.7902\x2014.154C10.8662\x2014.154\x2010.1512\x2013.758\x209.64524\x2012.988C9.18324\x2012.262\x208.95224\x2011.294\x208.95224\x2010.073C8.95224\x208.841\x209.18324\x207.873\x209.64524\x207.158C10.1512\x206.377\x2010.8662\x205.992\x2011.7902\x205.992ZM11.7902\x207.004C11.1412\x207.004\x2010.6902\x207.356\x2010.4262\x208.071C10.2282\x208.555\x2010.1402\x209.226\x2010.1402\x2010.073C10.1402\x2010.909\x2010.2282\x2011.58\x2010.4262\x2012.075C10.6902\x2012.779\x2011.1412\x2013.142\x2011.7902\x2013.142C12.4282\x2013.142\x2012.8902\x2012.779\x2013.1542\x2012.075C13.3412\x2011.58\x2013.4402\x2010.909\x2013.4402\x2010.073C13.4402\x209.226\x2013.3412\x208.555\x2013.1542\x208.071C12.8902\x207.356\x2012.4282\x207.004\x2011.7902\x207.004Z','M6.12398\x208.30171C6.35829\x208.0674\x206.73819\x208.0674\x206.97251\x208.30171L8.00007\x209.32928L9.02764\x208.30171C9.26195\x208.0674\x209.64185\x208.0674\x209.87617\x208.30171C10.1105\x208.53603\x2010.1105\x208.91593\x209.87617\x209.15024L8.8486\x2010.1778L9.87617\x2011.2054C10.1105\x2011.4397\x2010.1105\x2011.8196\x209.87617\x2012.0539C9.64185\x2012.2882\x209.26195\x2012.2882\x209.02764\x2012.0539L8.00007\x2011.0263L6.97251\x2012.0539C6.73819\x2012.2882\x206.35829\x2012.2882\x206.12398\x2012.0539C5.88966\x2011.8196\x205.88966\x2011.4397\x206.12398\x2011.2054L7.15154\x2010.1778L6.12398\x209.15024C5.88966\x208.91593\x205.88966\x208.53603\x206.12398\x208.30171Z','font-color-double-icon','shape-editor-ui.line.arrowType.none','hasParagraphAlign','ActionButtonHome','shape.type.half-frame','ActionButtonHelp','paragraphStyle','Octagon','M15.8155\x2010.005C15.8154\x209.39294\x2015.7031\x208.8081\x2015.4991\x208.26375L15.1817\x207.41415L15.5547\x206.66512L14.8291\x206.85262L14.0049\x206.14559C13.3522\x205.58559\x2012.5566\x205.17075\x2011.6729\x204.95907L10.7579\x204.73934L10.3213\x203.91512L9.88579\x204.73934L8.97075\x204.95907C8.07067\x205.1748\x207.26258\x205.59916\x206.60551\x206.17196L5.8018\x206.87313L4.87016\x206.65438L4.90141\x206.70711L5.38872\x207.52743L5.08598\x208.43075C4.91964\x208.92801\x204.82917\x209.45617\x204.82915\x2010.005C4.82915\x2010.508\x204.90665\x2010.995\x205.04887\x2011.4591L5.3184\x2012.3399L4.87114\x2013.0919L5.627\x2012.9151L6.44243\x2013.6876C7.06499\x2014.2768\x207.83828\x2014.7268\x208.70708\x2014.9796L9.08501\x2015.0763L10.0303\x2015.2823L10.3213\x2015.8331L10.6133\x2015.2823L11.5586\x2015.0763C12.5814\x2014.8534\x2013.4892\x2014.3605\x2014.2012\x2013.6866L15.0166\x2012.9151L15.7706\x2013.0919L15.3252\x2012.3419L15.5948\x2011.46C15.7375\x2010.9945\x2015.8155\x2010.5071\x2015.8155\x2010.005ZM10.3272\x2017.628L10.3291\x2017.6309V17.6261L10.3272\x2017.628ZM10.3291\x2017.6309L10.3272\x2017.628L10.3291\x2017.6261V17.6309ZM17.8975\x2010.005C17.8975\x2010.7226\x2017.7869\x2011.4154\x2017.586\x2012.0704L18.6582\x2013.8741C18.7244\x2013.9856\x2018.7692\x2014.0998\x2018.795\x2014.214C18.8338\x2014.3852\x2018.8294\x2014.5561\x2018.7901\x2014.7169C18.6717\x2015.1996\x2018.2362\x2015.5914\x2017.6905\x2015.6261C17.5693\x2015.6338\x2017.4423\x2015.6242\x2017.3125\x2015.5938L15.6329\x2015.1993C14.6472\x2016.1322\x2013.3982\x2016.8062\x2012.002\x2017.1104L11.4073\x2018.2364C11.3808\x2018.2863\x2011.3511\x2018.333\x2011.3194\x2018.377L11.3135\x2018.3858C11.2801\x2018.4314\x2011.2435\x2018.4736\x2011.2051\x2018.5128C11.1959\x2018.5222\x2011.1853\x2018.5301\x2011.1758\x2018.5391C11.1462\x2018.5675\x2011.116\x2018.5945\x2011.084\x2018.6192C11.0664\x2018.6329\x2011.0476\x2018.6447\x2011.0293\x2018.6573C11.0048\x2018.6742\x2010.9807\x2018.6913\x2010.9551\x2018.7061C10.9335\x2018.7187\x2010.911\x2018.7292\x2010.8887\x2018.7403C10.8635\x2018.753\x2010.8385\x2018.7656\x2010.8125\x2018.7764C10.7881\x2018.7866\x2010.7633\x2018.7952\x2010.7383\x2018.8038C10.7146\x2018.812\x2010.6912\x2018.8205\x2010.667\x2018.8272C10.6435\x2018.8338\x2010.6196\x2018.8386\x2010.5957\x2018.8438C10.5672\x2018.85\x2010.5387\x2018.8562\x2010.5098\x2018.8604C10.4861\x2018.8639\x2010.4624\x2018.8661\x2010.4385\x2018.8682C10.4115\x2018.8707\x2010.3846\x2018.8724\x2010.3575\x2018.8731C10.3307\x2018.8739\x2010.3041\x2018.8741\x2010.2774\x2018.8731C10.2535\x2018.8723\x2010.2299\x2018.8704\x2010.2061\x2018.8682C10.1793\x2018.8658\x2010.1526\x2018.8635\x2010.126\x2018.8595C10.0985\x2018.8552\x2010.0712\x2018.8499\x2010.044\x2018.8438C10.0207\x2018.8387\x209.99765\x2018.8327\x209.97465\x2018.8263C9.94926\x2018.8191\x209.92439\x2018.8106\x209.89946\x2018.8018C9.87348\x2018.7927\x209.84768\x2018.7834\x209.82231\x2018.7725C9.79941\x2018.7627\x209.77725\x2018.7515\x209.75493\x2018.7403C9.73205\x2018.7288\x209.70876\x2018.7182\x209.68657\x2018.7052C9.66143\x2018.6905\x209.63746\x2018.6739\x209.61333\x2018.6573C9.59261\x2018.643\x209.57169\x2018.629\x209.5518\x2018.6134C9.52654\x2018.5935\x209.50333\x2018.5711\x209.47954\x2018.5489C9.46509\x2018.5354\x209.44945\x2018.5232\x209.43559\x2018.5089C9.37067\x2018.4419\x209.31451\x2018.3647\x209.26469\x2018.2794C9.2562\x2018.2648\x209.24534\x2018.2515\x209.23735\x2018.2364L8.64165\x2017.1104C7.24555\x2016.8061\x205.99629\x2016.1322\x205.01079\x2015.1993L3.3311\x2015.5938C3.26644\x2015.609\x203.20251\x2015.6188\x203.13969\x2015.6241L2.96489\x2015.6261L2.96391\x2015.6251C2.92981\x2015.6232\x202.89653\x2015.618\x202.86333\x2015.6134C2.83869\x2015.6099\x202.81418\x2015.6075\x202.79008\x2015.6026C2.76112\x2015.5968\x202.73324\x2015.588\x202.70512\x2015.5802C2.67854\x2015.5728\x202.65178\x2015.5668\x202.62602\x2015.5577C2.59652\x2015.5473\x202.56843\x2015.5341\x202.54008\x2015.5216C2.5184\x2015.512\x202.49659\x2015.5031\x202.47563\x2015.4923C2.45153\x2015.4799\x202.42841\x2015.4661\x202.40532\x2015.4522C2.37974\x2015.4368\x202.35437\x2015.4215\x202.33012\x2015.4044C2.30898\x2015.3895\x202.28867\x2015.3737\x202.2686\x2015.3575C2.24748\x2015.3405\x202.22695\x2015.323\x202.20708\x2015.3048C2.18634\x2015.2857\x202.16682\x2015.2656\x202.14751\x2015.2452C2.12938\x2015.2261\x202.11158\x2015.2068\x202.09477\x2015.1866C2.07736\x2015.1657\x202.06089\x2015.1442\x202.04497\x2015.1222C2.0283\x2015.0991\x202.01208\x2015.0759\x201.99711\x2015.0518C1.98479\x2015.032\x201.97308\x2015.0118\x201.96196\x2014.9913C1.94861\x2014.9667\x201.9364\x2014.9416\x201.92485\x2014.9161C1.91394\x2014.892\x201.90381\x2014.8677\x201.89458\x2014.8429C1.885\x2014.8172\x201.8769\x2014.7911\x201.86919\x2014.7647C1.86238\x2014.7414\x201.85593\x2014.7182\x201.85063\x2014.6944C1.84356\x2014.6628\x201.83832\x2014.631\x201.83403\x2014.5987C1.83119\x2014.5773\x201.82779\x2014.5559\x201.82622\x2014.5343C1.82368\x2014.4996\x201.82443\x2014.4649\x201.82524\x2014.4298C1.82568\x2014.4113\x201.82482\x2014.3927\x201.82622\x2014.3741C1.82925\x2014.3334\x201.83603\x2014.293\x201.84379\x2014.252C1.84662\x2014.2372\x201.84813\x2014.222\x201.85161\x2014.2071C1.85979\x2014.172\x201.87197\x2014.1377\x201.88383\x2014.1026C1.90975\x2014.0262\x201.94192\x2013.9489\x201.98637\x2013.8741L3.05766\x2012.0694C2.85701\x2011.4148\x202.74711\x2010.7222\x202.74711\x2010.005C2.74714\x209.22538\x202.87579\x208.47482\x203.11137\x207.77059L1.98637\x205.87606C1.88709\x205.7089\x201.83532\x205.53511\x201.82426\x205.36532C1.81695\x205.25206\x201.82828\x205.14046\x201.85454\x205.03329C1.97261\x204.55029\x202.40824\x204.15875\x202.95415\x204.12411C3.07531\x204.11641\x203.20236\x204.12594\x203.33208\x204.15633L5.23735\x204.60262C6.1464\x203.81014\x207.2568\x203.22813\x208.4854\x202.93368L9.23735\x201.51375C9.68886\x200.660788\x2010.9558\x200.660771\x2011.4073\x201.51375L12.1582\x202.93368C13.3672\x203.22327\x2014.4605\x203.79249\x2015.3614\x204.56551L16.8965\x204.17098C17.5875\x203.99312\x2018.2086\x204.4077\x2018.3829\x204.97762C18.462\x205.23629\x2018.4489\x205.52698\x2018.3086\x205.80868L17.4493\x207.53231C17.7387\x208.30444\x2017.8975\x209.13684\x2017.8975\x2010.005Z','univer-flex\x20univer-h-6\x20univer-items-center\x20univer-gap-0.5\x20univer-px-1','bottom','addImageSourceCache','RightArrowCallout','useKeyboardEvent','M4\x202H16L10\x2010L16\x2018H4L10\x2010L4\x202Z','picture','ShapeStar10Icon','vert','viewportHeight','univer-leading-none','shape-star12-icon','ShapeFloatingToolbarDropdownTrigger','h5-icon','shape.type.left-right-ribbon','shape.type.snip2-diag-rect','shape.type.curved-right-arrow','style','ShapeRtTriangleIcon','#9ca3af','0\x200\x2020\x2020','position','M4\x208.5V4H9V9.5L4\x208.5ZM7.5\x205.5H5.5V7.5L7.5\x208V5.5Z','ShapeFolderCornerIcon','ShapeLineTypeEnum','docs-quote.command.insert','pictureFill','shape.type.curved-down-arrow','jsx','[data-u-comp=\x22shape-text-editor-content\x22]','shape-flow-chart-predefined-process-icon','shape.type.left-arrow-callout','shape.type.star24','asc','M3\x206H4.6V14H3V6Z','univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-2\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:hover:!univer-bg-gray-800','M1\x204.5C1\x202.567\x205.0294\x201\x2010\x201C14.9706\x201\x2019\x202.567\x2019\x204.5L14.454\x2015.4104C13.7046\x2017.209\x2011.9474\x2018.4\x2010\x2018.4C8.0526\x2018.4\x206.2954\x2017.209\x205.546\x2015.4104L1\x204.5Z','Star8','ActionButtonBlank','M9.80385\x201.40005H11.9997C12.3311\x201.40005\x2012.5997\x201.66868\x2012.5997\x202.00005C12.5997\x202.33143\x2012.3311\x202.60005\x2011.9997\x202.60005H10.1185L7.12251\x2013.4001H9.33324C9.66461\x2013.4001\x209.93324\x2013.6687\x209.93324\x2014.0001C9.93324\x2014.3314\x209.66461\x2014.6001\x209.33324\x2014.6001H6.34785C6.33847\x2014.6003\x206.32905\x2014.6003\x206.31962\x2014.6001H3.9999C3.66853\x2014.6001\x203.3999\x2014.3314\x203.3999\x2014.0001C3.3999\x2013.6687\x203.66853\x2013.4001\x203.9999\x2013.4001H5.87719L8.87322\x202.60005H6.66641C6.33504\x202.60005\x206.06641\x202.33143\x206.06641\x202.00005C6.06641\x201.66868\x206.33504\x201.40005\x206.66641\x201.40005H9.52916C9.61698\x201.37929\x209.71064\x201.3781\x209.80385\x201.40005Z','ShapeActionButtonInformationIcon','viewportScrollX','pointerup','commit','Parallelogram','ShapeStar16Icon','ShapeIrregularSeal1Icon','url(#shape-octagon-icon-frame-clip)','max','mask0_1_36','doc-paragraph-type-dropdown-popup','SetTextSelectionsOperation','ShapeGear6Icon','M2.5999\x202.66689C2.5999\x202.33552\x202.33127\x202.06689\x201.9999\x202.06689C1.66853\x202.06689\x201.3999\x202.33552\x201.3999\x202.66689V13.3336C1.3999\x2013.6649\x201.66853\x2013.9336\x201.9999\x2013.9336C2.33127\x2013.9336\x202.5999\x2013.6649\x202.5999\x2013.3336V8.5999H7.3999V13.3336C7.3999\x2013.6649\x207.66853\x2013.9336\x207.9999\x2013.9336C8.33127\x2013.9336\x208.5999\x2013.6649\x208.5999\x2013.3336V2.66689C8.5999\x202.33552\x208.33127\x202.06689\x207.9999\x202.06689C7.66853\x202.06689\x207.3999\x202.33552\x207.3999\x202.66689V7.3999H2.5999V2.66689Z','SolidFill','ShapeFloatingToolbarContent','TypographyPanelButton','naturalCrossSize','ShapeBracePairIcon','M9.92206\x202.45064C9.98634\x202.12556\x209.77492\x201.80992\x209.44984\x201.74564C9.12477\x201.68136\x208.80913\x201.89278\x208.74485\x202.21785L6.41152\x2014.0179C6.34724\x2014.3429\x206.55865\x2014.6586\x206.88373\x2014.7228C7.20881\x2014.7871\x207.52444\x2014.5757\x207.58872\x2014.2506L9.92206\x202.45064Z','shape-editor-ui.fill.picture.align.tl','domX','getShapeModel','shape-half-frame-icon','transformByState','createSectionId','ShapeChevronIcon','removeEventListener','@univerjs/engine-render','Linear','offsetY','InputNumber','shape-editor-ui.fill.picture.tileAsTexture','shapeModel','UniverUi','shape.type.border-callout2','M1.8\x2018.2V1.8H18.2L12.6\x207.4H7.4V12.6L1.8\x2018.2Z','ShapeIcon','disabled','shape.type.math-minus','iterator','onBackward','FlowchartMagneticTape','univer-w-20','ENTER','shape-editor-ui.fill.picture.align.b','ShapeStar32Icon','shape.type.parallelogram','label','shape-moon-icon','univer-mb-2','find','useDependency','M10\x201.8V10H18.2C18.2\x2014.529\x2014.529\x2018.2\x2010\x2018.2C5.471\x2018.2\x201.8\x2014.529\x201.8\x2010C1.8\x205.471\x205.471\x201.8\x2010\x201.8Z','shape-flow-chart-merge-icon','NoSmoking','AccentCallout2','ShapeLeftRightCircularArrowIcon','StarAndBanner','shape-dodecagon-icon','M1.00014\x2017L6.00014\x209','M1\x2013C4.3137\x2013\x207\x2015.6863\x207\x2019H1V13ZM2.6\x2017.4H5.0988A4.4\x204.4\x200\x200\x200\x202.6\x2014.9012V17.4Z','shape-octagon-icon','diamond','ShapeSnipRoundRectIcon','shape.type.wedge-round-rect-callout','M10.5031\x200.926758C11.9748\x200.926758\x2013.1679\x202.12013\x2013.1681\x203.5918V6.41602C13.1679\x206.78314\x2012.8702\x207.08105\x2012.5031\x207.08105C12.1361\x207.08084\x2011.8382\x206.783\x2011.838\x206.41602V3.5918C11.8378\x202.85467\x2011.2402\x202.25684\x2010.5031\x202.25684H4.0929C3.35572\x202.25684\x202.75813\x202.85467\x202.75793\x203.5918V12.085C2.75818\x2012.8221\x203.35574\x2013.4199\x204.0929\x2013.4199H6.18958L6.32434\x2013.4326C6.62712\x2013.4947\x206.85444\x2013.7639\x206.85461\x2014.085C6.8544\x2014.406\x206.62705\x2014.6742\x206.32434\x2014.7363L6.18958\x2014.75H4.0929C2.62121\x2014.75\x201.4281\x2013.5566\x201.42786\x2012.085V3.5918C1.42806\x202.12013\x202.62118\x200.926758\x204.0929\x200.926758H10.5031Z','8\x202\x201\x202','univer-w-auto','wrapStrategy','SHIFT','univerjs-icon\x20univerjs-icon-','#8B5CF6','Inject','shape-editor-ui.line.joinType.round','M5.7\x204.5H7.3V15.5H5.7V4.5Z','univer-w-7\x20univer-rounded-l-md\x20univer-rounded-r-none\x20rtl:univer-rounded-l-none\x20rtl:univer-rounded-r-md','ShapeBorderCallout3Icon','shape-editor-ui.fill.transparency','univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','ShapeLeftArrowCalloutIcon','shape.type.flow-chart-predefined-process','actions','M12\x203H8V17H12','shape-rect-textbox-vertical-icon','shape-round1-rect-icon','getInitialShapeFillType','shape-right-arrow-icon','LongDash','FlowchartDelay','textRanges','M14.4854\x204L18.771\x2010L14.4854\x2016H5.51465L1.229\x2010L5.51465\x204H14.4854Z','M13\x201C13\x204.3137\x2015.6863\x207\x2019\x207V1H13ZM17.4\x205.0988A4.4\x204.4\x200\x200\x201\x2014.9012\x202.6H17.4V5.0988Z','shape-editor-ui.fill.picture.align.ctr','M12.3606\x207.2578L20\x207.2578L13.8197\x2011.7432L16.1803\x2019L10\x2014.5146L3.8197\x2019L6.1803\x2011.7432L0\x207.2578L7.6394\x207.2578L10\x200ZM8.8767\x208.9584L5.2405\x208.9584L8.1824\x2011.093L7.0591\x2014.545L9.9999\x2012.4127L12.9394\x2014.545L11.8175\x2011.0931L14.7595\x208.9584L11.1232\x208.9584L10\x205.5051Z','shape.type.flow-chart-delay','url(#shape-down-arrow-icon-clip)','getBoundingClientRect','M6\x202.8V17.2M14\x202.8V17.2','ShapeOctagonIcon','shape.type.arc','Rect','prepareShapeTextDocumentData','ShapeCallout1Icon','shape-curved-down-arrow-icon','M15.5\x2011.5L15.5\x2013.5L15.5\x2016L11\x2016L11\x2011.5L13.5\x2011.5L15.5\x2011.5ZM12.5\x2014.5L14\x2014.5L14\x2013L12.5\x2013L12.5\x2014.5Z','marginTop','8\x202\x201\x202\x201\x202','contains','ShapeBentConnector3Icon','ShapeLeftRightRibbonIcon','@@toPrimitive\x20must\x20return\x20a\x20primitive\x20value.','RightBracket','Star32','shape-bent-connector3-arrow1-icon','ShapeFlowChartInternalStorageIcon','M2.87279\x205.8999C1.80504\x205.8999\x200.939453\x206.76549\x200.939453\x207.83324C0.939453\x208.90099\x201.80504\x209.76657\x202.87279\x209.76657C3.94054\x209.76657\x204.80612\x208.90099\x204.80612\x207.83324C4.80612\x206.76549\x203.94054\x205.8999\x202.87279\x205.8999ZM2.13945\x207.83324C2.13945\x207.42823\x202.46778\x207.0999\x202.87279\x207.0999C3.2778\x207.0999\x203.60612\x207.42823\x203.60612\x207.83324C3.60612\x208.23824\x203.2778\x208.56657\x202.87279\x208.56657C2.46778\x208.56657\x202.13945\x208.23824\x202.13945\x207.83324Z','SpAutoFit','monospace','shape-editor-ui.toolbar.textBackgroundColor','sessionKey','DocSettingIcon','LeftUpArrow','paddingBottom','SUPERSCRIPT','univer-w-[260px]','FillStyleTabsEditor','univer-flex\x20univer-size-4\x20univer-items-center\x20univer-justify-center','centerAngle','M2\x204.5C5\x205.35\x208\x204.95\x2010.5\x203.3C12.75\x201.8\x2015.25\x201.35\x2018\x202V13.8C15.3\x2013.25\x2012.85\x2013.95\x2011\x2015.5C8.35\x2017.4\x205.35\x2017.35\x202\x2015.3V4.5Z','M2\x207V12C2\x2014.2\x205.6\x2016.5\x2010\x2016.5C14.4\x2016.5\x2018\x2014.2\x2018\x2012V7','univer-flex\x20univer-h-6\x20univer-min-w-9\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','shouldAutoFitShapeTextEditorNoWrap','ShapeStar6Icon','M6\x2018.5L1\x2015V9H6','widthBuffer','shape-curved-connector3-icon','filter','M2.20012\x208.82992C2.65851\x208.82992\x203.03012\x208.45832\x203.03012\x207.99992C3.03012\x207.54153\x202.65851\x207.16992\x202.20012\x207.16992C1.74172\x207.16992\x201.37012\x207.54153\x201.37012\x207.99992C1.37012\x208.45832\x201.74172\x208.82992\x202.20012\x208.82992Z','shape-flow-chart-offline-storage-icon','univer-text-xl','ShapeAccentBorderCallout1Icon','M9\x2011.5L9\x2013.5L9\x2016L4.5\x2016L4.5\x2011.5L7\x2011.5L9\x2011.5ZM6\x2014.5L7.5\x2014.5L7.5\x2013L6\x2013L6\x2014.5Z','shape-flow-chart-magnetic-disk-icon','imageOpacity','univer-px-4\x20univer-pb-2.5\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','DashDot','M8.6\x202H10C14.4\x202\x2018\x205.6\x2018\x2010C18\x2014.4\x2014.4\x2018\x2010\x2018H8.6L2.25\x2010L8.6\x202Z','useRef','M12.4\x2016.4H16.4V12.4','fillImageSource','CENTER','ShapeActionButtonEndIcon','univer-flex\x20univer-items-center\x20univer-justify-center\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-p-0\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-40\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700','shape-heptagon-icon','pointercancel','shape-editor-ui.textWrap.inline','ActionButtonBeginning','univer-flex\x20univer-items-center\x20univer-gap-3','shape-flow-chart-input-output-icon','M10\x201.6L16.8\x2010L10\x2018.4L3.2\x2010L10\x201.6Z','shape.type.line','M18\x2011.5508L12.6367\x2011.5508L15.0908\x2019L12.667\x2019L2\x208.5L2\x206.5L7\x206.5L4\x201L12.5\x201ZM9.6953\x208.1L3.875\x208.1L12.6669\x2016.7542L10.4241\x209.9508L15.3617\x209.9508L11.5297\x202.6L6.6953\x202.6Z','setSelectionRanges','shape-decagon-icon','-univer-rotate-90\x20univer-text-xs','react/jsx-runtime','render','Arrow','group-icon','univer-shrink-0\x20univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','UniverDocs','shape-editor-ui.line.sketchType.none','univer-block\x20univer-w-full','LeftRightRibbon','ShapeDoubleWaveIcon','getSelfOrHeaderFooterModel','shape-stroke-color-double-icon','univer-text-sm\x20univer-font-medium\x20univer-text-gray-800\x20dark:!univer-text-gray-100','shape-editor-ui.line.width','None','M8\x201C9.2853\x201\x2010.457\x201.42475\x2011.3428\x202.12207C11.8615\x201.96265\x2012.419\x201.875\x2013\x201.875C15.7614\x201.875\x2018\x203.83375\x2018\x206.25C18\x206.96644\x2017.801\x207.64142\x2017.4521\x208.23828C18.9433\x208.74691\x2020\x2010.0153\x2020\x2011.5C20\x2013.433\x2018.2091\x2015\x2016\x2015C15.2712\x2015\x2014.5885\x2014.8283\x2014\x2014.5303C13.4115\x2014.8283\x2012.7288\x2015\x2012\x2015C10.4354\x2015\x209.0812\x2014.2137\x208.42383\x2013.0684C7.72298\x2014.226\x206.45206\x2015\x205\x2015C2.79086\x2015\x201\x2013.2091\x201\x2011C1\x209.31993\x202.03608\x207.88253\x203.50391\x207.29004C3.18147\x206.71156\x203\x206.06192\x203\x205.375C3\x202.95875\x205.23858\x201\x208\x201Z'];_0x2a1c=function(){return _0x237c29;};return _0x2a1c();}function _0x4293(_0xf59a2d,_0x4f7003){_0xf59a2d=_0xf59a2d-0x139;const _0x2a1c44=_0x2a1c();let _0x4293ae=_0x2a1c44[_0xf59a2d];return _0x4293ae;}(function(_0x8d5691,_0x104be9){const _0x3647a0=_0x4293,_0x51930c=_0x8d5691();while(!![]){try{const _0x2b3ecd=-parseInt(_0x3647a0(0x205))/0x1+parseInt(_0x3647a0(0x4fa))/0x2*(-parseInt(_0x3647a0(0x3be))/0x3)+parseInt(_0x3647a0(0x615))/0x4*(-parseInt(_0x3647a0(0x32e))/0x5)+parseInt(_0x3647a0(0x5ca))/0x6+parseInt(_0x3647a0(0x55a))/0x7*(-parseInt(_0x3647a0(0x252))/0x8)+parseInt(_0x3647a0(0x518))/0x9+-parseInt(_0x3647a0(0x2ce))/0xa*(-parseInt(_0x3647a0(0x88e))/0xb);if(_0x2b3ecd===_0x104be9)break;else _0x51930c['push'](_0x51930c['shift']());}catch(_0x21591d){_0x51930c['push'](_0x51930c['shift']());}}}(_0x2a1c,0x9d985),function(_0x2a35f,_0x34f5fe){const _0x550771=_0x4293;typeof exports=='object'&&typeof module<'u'?_0x34f5fe(exports,require('@univerjs/design'),require('react'),require('react/jsx-runtime'),require('@univerjs/core'),require('@univerjs/ui'),require('@univerjs/drawing'),require('@univerjs-pro/engine-shape'),require('@univerjs/engine-render'),require('@univerjs/docs'),require('@univerjs/docs-ui')):typeof define==_0x550771(0x236)&&define[_0x550771(0x209)]?define([_0x550771(0x4b5),'@univerjs/design',_0x550771(0x1ac),_0x550771(0x7c7),'@univerjs/core','@univerjs/ui','@univerjs/drawing',_0x550771(0x225),_0x550771(0x73d),_0x550771(0x1af),_0x550771(0x63b)],_0x34f5fe):(_0x2a35f=typeof globalThis<'u'?globalThis:_0x2a35f||self,_0x34f5fe(_0x2a35f[_0x550771(0x38e)]={},_0x2a35f[_0x550771(0x4f9)],_0x2a35f[_0x550771(0x5fa)],_0x2a35f[_0x550771(0x5fa)],_0x2a35f[_0x550771(0x14a)],_0x2a35f[_0x550771(0x743)],_0x2a35f['UniverDrawing'],_0x2a35f[_0x550771(0x49d)],_0x2a35f['UniverEngineRender'],_0x2a35f[_0x550771(0x7cc)],_0x2a35f['UniverDocsUi']));}(this,function(_0x680801,_0x3f5bc5,_0x55b95c,_0x43e701,_0x2cafcd,_0x26fc1b,_0x293e90,_0x21428d,_0x482181,_0x425583,_0x3bd019){const _0x57b2d2=_0x4293;Object[_0x57b2d2(0x81c)](_0x680801,Symbol[_0x57b2d2(0x33c)],{'value':_0x57b2d2(0x7f7)});function _0x2ff816({ref:_0x3d0b3b,..._0x38a23f}){const _0x5426d6=_0x57b2d2;let {icon:_0x35f87f,id:_0xf3458e,className:_0x1ac48c,extend:_0x4c6bf3,..._0x1eab4e}=_0x38a23f,_0x3f110d=(_0x5426d6(0x768)+_0xf3458e+'\x20'+(_0x1ac48c||''))[_0x5426d6(0x373)](),_0x2cd158=(0x0,_0x55b95c[_0x5426d6(0x7b5)])('_'+_0x447811());return _0x554aec(_0x35f87f,''+_0xf3458e,{'defIds':_0x35f87f[_0x5426d6(0x285)],'idSuffix':_0x2cd158['current']},{'ref':_0x3d0b3b,'className':_0x3f110d,..._0x1eab4e},_0x4c6bf3);}function _0x554aec(_0x21576b,_0x56210a,_0x429ffe,_0x1665f8,_0x3a11e9){const _0x4a90f6=_0x57b2d2;return(0x0,_0x55b95c[_0x4a90f6(0x69d)])(_0x21576b[_0x4a90f6(0x85b)],{'key':_0x56210a,..._0x5eb7e9(_0x21576b,_0x429ffe,_0x3a11e9),..._0x1665f8},(_0xd7b319(_0x21576b,_0x429ffe)[_0x4a90f6(0x6cc)]||[])[_0x4a90f6(0x499)]((_0x38f7d7,_0x32c6a5)=>_0x554aec(_0x38f7d7,_0x56210a+'-'+_0x21576b[_0x4a90f6(0x85b)]+'-'+_0x32c6a5,_0x429ffe,void 0x0,_0x3a11e9)));}function _0x5eb7e9(_0x33ec15,_0x1f22bf,_0x231378){const _0x128c84=_0x57b2d2;let _0x89ca29={..._0x33ec15[_0x128c84(0x448)]};_0x231378!=null&&_0x231378[_0x128c84(0x53b)]&&_0x89ca29[_0x128c84(0x291)]===_0x128c84(0x53b)&&(_0x89ca29[_0x128c84(0x291)]=_0x231378[_0x128c84(0x53b)]),_0x231378!=null&&_0x231378[_0x128c84(0x53b)]&&_0x89ca29[_0x128c84(0x1fb)]==='colorChannel1'&&(_0x89ca29[_0x128c84(0x1fb)]=_0x231378[_0x128c84(0x53b)]),_0x33ec15[_0x128c84(0x85b)]===_0x128c84(0x565)&&_0x89ca29['id']&&(_0x89ca29['id']+=_0x1f22bf[_0x128c84(0x891)]),Object[_0x128c84(0x550)](_0x89ca29)['forEach'](([_0x34e26a,_0x591227])=>{const _0x4c70dc=_0x128c84;_0x34e26a===_0x4c70dc(0x565)&&typeof _0x591227==_0x4c70dc(0x39e)&&(_0x89ca29[_0x34e26a]=_0x591227[_0x4c70dc(0x370)](/url\(#(.*)\)/,'url(#$1'+_0x1f22bf['idSuffix']+')'));});let {defIds:_0x555660}=_0x1f22bf;return!_0x555660||_0x555660[_0x128c84(0x1bf)]===0x0?_0x89ca29:(_0x33ec15[_0x128c84(0x85b)]===_0x128c84(0x1aa)&&_0x89ca29[_0x128c84(0x586)]&&(_0x89ca29[_0x128c84(0x586)]+=_0x1f22bf['idSuffix']),Object[_0x128c84(0x550)](_0x89ca29)[_0x128c84(0x4ea)](([_0x4f10b1,_0x4c4c91])=>{const _0x46368a=_0x128c84;typeof _0x4c4c91=='string'&&(_0x89ca29[_0x4f10b1]=_0x4c4c91[_0x46368a(0x370)](/url\(#(.*)\)/,'url(#$1'+_0x1f22bf[_0x46368a(0x891)]+')'));}),_0x89ca29);}function _0xd7b319(_0x40a70d,_0x10f2ff){const _0x18a123=_0x57b2d2;var _0x112f87;let {defIds:_0x15a787}=_0x10f2ff;return!_0x15a787||_0x15a787[_0x18a123(0x1bf)]===0x0?_0x40a70d:_0x40a70d['tag']===_0x18a123(0x59d)&&(_0x112f87=_0x40a70d['children'])!=null&&_0x112f87[_0x18a123(0x1bf)]?{..._0x40a70d,'children':_0x40a70d['children'][_0x18a123(0x499)](_0x4e2620=>typeof _0x4e2620['attrs']['id']=='string'&&_0x15a787&&_0x15a787['includes'](_0x4e2620[_0x18a123(0x448)]['id'])?{..._0x4e2620,'attrs':{..._0x4e2620[_0x18a123(0x448)],'id':_0x4e2620['attrs']['id']+_0x10f2ff[_0x18a123(0x891)]}}:_0x4e2620)}:_0x40a70d;}function _0x447811(){const _0x35a5d1=_0x57b2d2;return Math[_0x35a5d1(0x69a)]()[_0x35a5d1(0x3d3)](0x24)[_0x35a5d1(0x6a4)](0x2,0x8);}_0x2ff816[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4fd);let _0x32bffa={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M1.3999\x2013.6999C1.3999\x2013.3685\x201.66853\x2013.0999\x201.9999\x2013.0999H13.9999C14.3313\x2013.0999\x2014.5999\x2013.3685\x2014.5999\x2013.6999C14.5999\x2014.0312\x2014.3313\x2014.2999\x2013.9999\x2014.2999H1.9999C1.66853\x2014.2999\x201.3999\x2014.0312\x201.3999\x2013.6999Z','fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x845),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3d0),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}}]},_0x39e6e4=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x235f56,_0x4f5c0c){const _0xac3f53=_0x57b2d2;return(0x0,_0x55b95c[_0xac3f53(0x69d)])(_0x2ff816,Object[_0xac3f53(0x82d)]({},_0x235f56,{'id':_0xac3f53(0x14e),'ref':_0x4f5c0c,'icon':_0x32bffa}));});_0x39e6e4['displayName']=_0x57b2d2(0x678);let _0x1b9b1d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x591)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x6dd)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6af)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M1.9999\x2012.9004C1.66853\x2012.9004\x201.3999\x2013.169\x201.3999\x2013.5004C1.3999\x2013.8318\x201.66853\x2014.1004\x201.9999\x2014.1004H13.9999C14.3313\x2014.1004\x2014.5999\x2013.8318\x2014.5999\x2013.5004C14.5999\x2013.169\x2014.3313\x2012.9004\x2013.9999\x2012.9004H1.9999Z'}}]},_0x48f6e0=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x574383,_0x49ebf7){const _0x1ec223=_0x57b2d2;return(0x0,_0x55b95c[_0x1ec223(0x69d)])(_0x2ff816,Object[_0x1ec223(0x82d)]({},_0x574383,{'id':_0x1ec223(0x81f),'ref':_0x49ebf7,'icon':_0x1b9b1d}));});_0x48f6e0[_0x57b2d2(0x6a2)]=_0x57b2d2(0x68b);let _0x11c354={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x472)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x267)}}]},_0x342d1e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x93f929,_0x3f0d23){const _0x53424b=_0x57b2d2;return(0x0,_0x55b95c[_0x53424b(0x69d)])(_0x2ff816,Object[_0x53424b(0x82d)]({},_0x93f929,{'id':_0x53424b(0x2e7),'ref':_0x3f0d23,'icon':_0x11c354}));});_0x342d1e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x311);let _0x5d3dea={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M4.65791\x201.30005C3.77355\x201.30005\x203.05664\x202.01696\x203.05664\x202.90132V12.8588C3.05664\x2013.8755\x203.88086\x2014.6998\x204.89759\x2014.6998H9.1016C11.2233\x2014.6998\x2012.9433\x2012.9798\x2012.9433\x2010.8581C12.9433\x209.13925\x2011.8145\x207.68407\x2010.2578\x207.1934C10.8806\x206.56856\x2011.2655\x205.70659\x2011.2655\x204.75472C11.2655\x202.84676\x209.71883\x201.30005\x207.81087\x201.30005H4.65791ZM4.25664\x202.90132C4.25664\x202.6797\x204.4363\x202.50005\x204.65791\x202.50005H7.81087C9.05609\x202.50005\x2010.0655\x203.5095\x2010.0655\x204.75472C10.0655\x205.99993\x209.05609\x207.00938\x207.81087\x207.00938H4.25664V2.90132ZM4.25664\x2012.8588V8.21636H9.1016C10.5606\x208.21636\x2011.7433\x209.39909\x2011.7433\x2010.8581C11.7433\x2012.317\x2010.5606\x2013.4998\x209.1016\x2013.4998H4.89759C4.5436\x2013.4998\x204.25664\x2013.2128\x204.25664\x2012.8588Z','fillRule':'evenodd','clipRule':_0x57b2d2(0x2c1)}}]},_0x3eece8=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2421d2,_0x4854b1){const _0x294a75=_0x57b2d2;return(0x0,_0x55b95c[_0x294a75(0x69d)])(_0x2ff816,Object['assign']({},_0x2421d2,{'id':_0x294a75(0x896),'ref':_0x4854b1,'icon':_0x5d3dea}));});_0x3eece8[_0x57b2d2(0x6a2)]='BoldIcon';let _0x474d6d={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x734)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x65f)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x33b)}}]},_0x48f1f8=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x10d117,_0x137ebd){const _0x534c26=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x534c26(0x82d)]({},_0x10d117,{'id':_0x534c26(0x277),'ref':_0x137ebd,'icon':_0x474d6d}));});_0x48f1f8['displayName']=_0x57b2d2(0x684);let _0x333506={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M5.3313\x201.4667C5.3313\x201.13533\x205.59993\x200.866699\x205.9313\x200.866699H10.069C10.4004\x200.866699\x2010.669\x201.13533\x2010.669\x201.4667C10.669\x201.79807\x2010.4004\x202.0667\x2010.069\x202.0667H5.9313C5.59993\x202.0667\x205.3313\x201.79807\x205.3313\x201.4667Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x391)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6ef)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M4.75332\x205.22217C3.86966\x205.22217\x203.15332\x205.93851\x203.15332\x206.82217V12.5331C3.15332\x2013.9691\x204.31738\x2015.1332\x205.75332\x2015.1332H10.2465C11.6825\x2015.1332\x2012.8465\x2013.9691\x2012.8465\x2012.5331V6.82217C12.8465\x205.93851\x2012.1302\x205.22217\x2011.2465\x205.22217H4.75332ZM4.35332\x206.82217C4.35332\x206.60125\x204.53241\x206.42217\x204.75332\x206.42217H11.2465C11.4674\x206.42217\x2011.6465\x206.60125\x2011.6465\x206.82217V12.5331C11.6465\x2013.3063\x2011.0197\x2013.9332\x2010.2465\x2013.9332H5.75332C4.98012\x2013.9332\x204.35332\x2013.3063\x204.35332\x2012.5331V6.82217Z','fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}}]},_0x2214dc=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x15932c,_0x507342){const _0x5ba1ac=_0x57b2d2;return(0x0,_0x55b95c[_0x5ba1ac(0x69d)])(_0x2ff816,Object[_0x5ba1ac(0x82d)]({},_0x15932c,{'id':'delete-icon','ref':_0x507342,'icon':_0x333506}));});_0x2214dc['displayName']=_0x57b2d2(0x16c);let _0x36ebbe={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x280)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M11.9572\x208.51465C12.5471\x208.51471\x2013.0936\x208.82742\x2013.3927\x209.33594L14.3419\x2010.9502C14.6291\x2011.4386\x2014.6479\x2012.037\x2014.3966\x2012.5391L14.3419\x2012.6377L13.3927\x2014.252C13.0936\x2014.7605\x2012.5471\x2015.0732\x2011.9572\x2015.0732H10.0255C9.50941\x2015.0731\x209.02688\x2014.8339\x208.71399\x2014.4336L8.59094\x2014.252L7.64075\x2012.6377C7.33466\x2012.1169\x207.33466\x2011.471\x207.64075\x2010.9502L8.59094\x209.33594L8.71399\x209.1543C9.02688\x208.75387\x209.50935\x208.51477\x2010.0255\x208.51465H11.9572ZM10.0255\x209.84473C9.93678\x209.84483\x209.85287\x209.87988\x209.79114\x209.94043L9.73743\x2010.0098L8.78723\x2011.624C8.72565\x2011.7288\x208.72564\x2011.8591\x208.78723\x2011.9639L9.73743\x2013.5781L9.79114\x2013.6475C9.85286\x2013.7079\x209.93684\x2013.7431\x2010.0255\x2013.7432H11.9572C12.0757\x2013.7431\x2012.186\x2013.6803\x2012.2462\x2013.5781L13.1954\x2011.9639L13.2306\x2011.8809C13.2536\x2011.7953\x2013.2415\x2011.7025\x2013.1954\x2011.624L12.2462\x2010.0098C12.186\x209.90756\x2012.0758\x209.84479\x2011.9572\x209.84473H10.0255Z','fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x763)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x1f8)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6bb)}}]},_0x241e58=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2ce718,_0x39c868){const _0x55e700=_0x57b2d2;return(0x0,_0x55b95c[_0x55e700(0x69d)])(_0x2ff816,Object['assign']({},_0x2ce718,{'id':'doc-setting-icon','ref':_0x39c868,'icon':_0x36ebbe}));});_0x241e58['displayName']=_0x57b2d2(0x79a);let _0x236029={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2017\x2016','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M7.38125\x201.16211C6.49759\x201.16211\x205.78125\x201.87845\x205.78125\x202.76211V5.6377H2.87783C1.99418\x205.6377\x201.27783\x206.35404\x201.27783\x207.2377V13.2377C1.27783\x2014.1214\x201.99418\x2014.8377\x202.87783\x2014.8377H8.87783C9.76149\x2014.8377\x2010.4778\x2014.1214\x2010.4778\x2013.2377V10.3621H13.3813C14.2649\x2010.3621\x2014.9813\x209.64577\x2014.9813\x208.76211V2.76211C14.9813\x201.87845\x2014.2649\x201.16211\x2013.3813\x201.16211H7.38125ZM10.4778\x209.16211H13.3813C13.6022\x209.16211\x2013.7812\x208.98302\x2013.7812\x208.76211V2.76211C13.7812\x202.5412\x2013.6022\x202.36211\x2013.3813\x202.36211H7.38125C7.16034\x202.36211\x206.98125\x202.5412\x206.98125\x202.76211V5.6377H8.87783C9.76149\x205.6377\x2010.4778\x206.35404\x2010.4778\x207.2377V9.16211ZM6.98125\x206.8377H8.87783C9.09875\x206.8377\x209.27783\x207.01678\x209.27783\x207.2377V9.16211H7.38125C7.16034\x209.16211\x206.98125\x208.98302\x206.98125\x208.76211V6.8377ZM5.78125\x206.8377V8.76211C5.78125\x209.64577\x206.49759\x2010.3621\x207.38125\x2010.3621H9.27783V13.2377C9.27783\x2013.4586\x209.09875\x2013.6377\x208.87783\x2013.6377H2.87783C2.65692\x2013.6377\x202.47783\x2013.4586\x202.47783\x2013.2377V7.2377C2.47783\x207.01678\x202.65692\x206.8377\x202.87783\x206.8377H5.78125Z','fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}}]},_0x491ad7=(0x0,_0x55b95c['forwardRef'])(function(_0x138cd3,_0x53db09){const _0x157d7d=_0x57b2d2;return(0x0,_0x55b95c[_0x157d7d(0x69d)])(_0x2ff816,Object[_0x157d7d(0x82d)]({},_0x138cd3,{'id':_0x157d7d(0x7ca),'ref':_0x53db09,'icon':_0x236029}));});_0x491ad7[_0x57b2d2(0x6a2)]=_0x57b2d2(0x63f);let _0x40052e={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x647)}},{'tag':'path','attrs':{'fill':'currentColor','d':'M14.0999\x206.33879C14.0999\x206.09377\x2013.9509\x205.87336\x2013.7236\x205.78203C13.4962\x205.6907\x2013.2362\x205.74679\x2013.0667\x205.92373L11.4753\x207.58486C11.2461\x207.82415\x2011.2542\x208.20396\x2011.4935\x208.43319C11.7328\x208.66243\x2012.1126\x208.65427\x2012.3419\x208.41499L12.8999\x207.83245V13.3333C12.8999\x2013.6646\x2013.1686\x2013.9333\x2013.4999\x2013.9333C13.8313\x2013.9333\x2014.0999\x2013.6646\x2014.0999\x2013.3333V6.33879Z'}}]},_0x282f31=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x53c319,_0x57ff1f){const _0x52b78c=_0x57b2d2;return(0x0,_0x55b95c[_0x52b78c(0x69d)])(_0x2ff816,Object[_0x52b78c(0x82d)]({},_0x53c319,{'id':_0x52b78c(0x521),'ref':_0x57ff1f,'icon':_0x40052e}));});_0x282f31['displayName']=_0x57b2d2(0x634);let _0x4fd350={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x72e)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x5ff)}}]},_0x4c0fe0=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1ab98f,_0x15de28){const _0x27af2c=_0x57b2d2;return(0x0,_0x55b95c[_0x27af2c(0x69d)])(_0x2ff816,Object['assign']({},_0x1ab98f,{'id':_0x27af2c(0x3d1),'ref':_0x15de28,'icon':_0x4fd350}));});_0x4c0fe0['displayName']=_0x57b2d2(0x636);let _0x127fde={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x72e)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x588)}}]},_0x591e7d=(0x0,_0x55b95c['forwardRef'])(function(_0x15332d,_0x1b282a){const _0x25adca=_0x57b2d2;return(0x0,_0x55b95c[_0x25adca(0x69d)])(_0x2ff816,Object[_0x25adca(0x82d)]({},_0x15332d,{'id':_0x25adca(0x484),'ref':_0x1b282a,'icon':_0x127fde}));});_0x591e7d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4c6);let _0x42e851={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2016\x2016','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x413)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x232),'fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}}]},_0x2027e1=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x16d165,_0x45caf6){const _0xb74087=_0x57b2d2;return(0x0,_0x55b95c[_0xb74087(0x69d)])(_0x2ff816,Object[_0xb74087(0x82d)]({},_0x16d165,{'id':_0xb74087(0x5fb),'ref':_0x45caf6,'icon':_0x42e851}));});_0x2027e1[_0x57b2d2(0x6a2)]=_0x57b2d2(0x28c);let _0xedf752={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M2.5999\x202.66689C2.5999\x202.33552\x202.33127\x202.06689\x201.9999\x202.06689C1.66853\x202.06689\x201.3999\x202.33552\x201.3999\x202.66689V13.3336C1.3999\x2013.6649\x201.66853\x2013.9336\x201.9999\x2013.9336C2.33127\x2013.9336\x202.5999\x2013.6649\x202.5999\x2013.3336V8.5999H7.3999V13.3336C7.3999\x2013.6649\x207.66853\x2013.9336\x207.9999\x2013.9336C8.33127\x2013.9336\x208.5999\x2013.6649\x208.5999\x2013.3336V2.66689C8.5999\x202.33552\x208.33127\x202.06689\x207.9999\x202.06689C7.66853\x202.06689\x207.3999\x202.33552\x207.3999\x202.66689V7.3999H2.5999V2.66689Z'}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x681)}}]},_0xe0e9ac=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1aa003,_0x55798b){const _0x1491bc=_0x57b2d2;return(0x0,_0x55b95c[_0x1491bc(0x69d)])(_0x2ff816,Object['assign']({},_0x1aa003,{'id':_0x1491bc(0x706),'ref':_0x55798b,'icon':_0xedf752}));});_0xe0e9ac['displayName']='H5Icon';let _0x177a5a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x591)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x178)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6af)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x27b)}}]},_0x1409e4=(0x0,_0x55b95c['forwardRef'])(function(_0x1e17b2,_0xe8ffda){return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x1e17b2,{'id':'horizontally-icon','ref':_0xe8ffda,'icon':_0x177a5a}));});_0x1409e4[_0x57b2d2(0x6a2)]=_0x57b2d2(0x8a9);let _0x830cf7={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x720)}}]},_0xc2160d=(0x0,_0x55b95c['forwardRef'])(function(_0x421fed,_0x1fe2d3){const _0x3e364d=_0x57b2d2;return(0x0,_0x55b95c[_0x3e364d(0x69d)])(_0x2ff816,Object['assign']({},_0x421fed,{'id':'italic-icon','ref':_0x1fe2d3,'icon':_0x830cf7}));});_0xc2160d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x629);let _0x4ccd49={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2016\x2016','width':'1em','height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x591)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x48a)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M1.3999\x209.8334C1.3999\x209.50203\x201.66853\x209.2334\x201.9999\x209.2334H13.9999C14.3313\x209.2334\x2014.5999\x209.50203\x2014.5999\x209.8334C14.5999\x2010.1648\x2014.3313\x2010.4334\x2013.9999\x2010.4334H1.9999C1.66853\x2010.4334\x201.3999\x2010.1648\x201.3999\x209.8334Z'}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M1.9999\x2012.9004C1.66853\x2012.9004\x201.3999\x2013.169\x201.3999\x2013.5004C1.3999\x2013.8318\x201.66853\x2014.1004\x201.9999\x2014.1004H11.3332C11.6646\x2014.1004\x2011.9332\x2013.8318\x2011.9332\x2013.5004C11.9332\x2013.169\x2011.6646\x2012.9004\x2011.3332\x2012.9004H1.9999Z'}}]},_0x2bc30a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xaca862,_0x54dda4){const _0x4446ef=_0x57b2d2;return(0x0,_0x55b95c[_0x4446ef(0x69d)])(_0x2ff816,Object[_0x4446ef(0x82d)]({},_0xaca862,{'id':_0x4446ef(0x1fe),'ref':_0x54dda4,'icon':_0x4ccd49}));});_0x2bc30a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3c4);let _0x3d4e53={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3a1),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}}]},_0x3329e2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x427ca9,_0x2062d7){const _0x555e0d=_0x57b2d2;return(0x0,_0x55b95c[_0x555e0d(0x69d)])(_0x2ff816,Object[_0x555e0d(0x82d)]({},_0x427ca9,{'id':_0x555e0d(0x853),'ref':_0x2062d7,'icon':_0x3d4e53}));});_0x3329e2['displayName']='MoreDownIcon';let _0xf00051={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x2a2),'fillRule':'evenodd','clipRule':'evenodd'}}]},_0x3bbfa4=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x479a68,_0x5e91e6){const _0x4060e8=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x4060e8(0x82d)]({},_0x479a68,{'id':_0x4060e8(0x3ed),'ref':_0x5e91e6,'icon':_0xf00051}));});_0x3bbfa4[_0x57b2d2(0x6a2)]=_0x57b2d2(0x5c2);let _0x558dbc={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2017\x2016','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x671)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x2da)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M1.2579\x2014.674C1.45109\x2014.7553\x201.67487\x2014.7946\x201.92711\x2014.7946C2.1451\x2014.7946\x202.34841\x2014.7599\x202.53619\x2014.6895L2.53746\x2014.689C2.7264\x2014.6148\x202.88145\x2014.5071\x202.99952\x2014.3647L3.00018\x2014.3639C3.12167\x2014.2138\x203.18089\x2014.0326\x203.18089\x2013.8252C3.18089\x2013.6181\x203.12169\x2013.4411\x202.99737\x2013.3022C2.91596\x2013.2112\x202.81864\x2013.1388\x202.70642\x2013.0846C2.80611\x2013.023\x202.88805\x2012.9505\x202.95017\x2012.8661C3.04138\x2012.7422\x203.08609\x2012.5977\x203.08609\x2012.4365C3.08609\x2012.1403\x202.97594\x2011.9041\x202.7521\x2011.7404C2.53645\x2011.5772\x202.25212\x2011.5002\x201.90815\x2011.5002C1.7136\x2011.5002\x201.52963\x2011.5372\x201.35712\x2011.6115C1.28512\x2011.6418\x201.21426\x2011.6776\x201.14456\x2011.7188C0.938688\x2011.8404\x200.928034\x2012.1099\x201.06649\x2012.2774C1.21291\x2012.4544\x201.46028\x2012.4561\x201.63989\x2012.363C1.70891\x2012.3286\x201.78521\x2012.3109\x201.87023\x2012.3109C1.96356\x2012.3109\x202.01717\x2012.3317\x202.04691\x2012.3578C2.07449\x2012.3821\x202.09529\x2012.4231\x202.09529\x2012.4981C2.09529\x2012.5709\x202.0658\x2012.6284\x201.99667\x2012.6764C1.96042\x2012.6999\x201.8978\x2012.7216\x201.80025\x2012.7355C1.61051\x2012.7625\x201.44118\x2012.9145\x201.44118\x2013.1237C1.44118\x2013.3319\x201.60937\x2013.4885\x201.80489\x2013.5068C1.87785\x2013.5136\x201.93575\x2013.5234\x201.97985\x2013.5355C2.07997\x2013.562\x202.12905\x2013.596\x202.14927\x2013.6246C2.17519\x2013.6614\x202.19008\x2013.7078\x202.19008\x2013.7684C2.19008\x2013.8334\x202.16583\x2013.8754\x202.1142\x2013.9064C2.05357\x2013.9428\x201.96521\x2013.965\x201.84179\x2013.965C1.749\x2013.965\x201.6547\x2013.9433\x201.55817\x2013.8981C1.363\x2013.7983\x201.08846\x2013.8083\x200.942801\x2014.01L0.936366\x2014.0189C0.827321\x2014.1699\x200.821861\x2014.401\x200.994678\x2014.5262C1.07406\x2014.5836\x201.16225\x2014.633\x201.2579\x2014.674Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x2b6)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x693)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x1f4)}}]},_0x2d0120=(0x0,_0x55b95c['forwardRef'])(function(_0x4b47a3,_0x38fa8c){const _0x21c743=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x21c743(0x82d)]({},_0x4b47a3,{'id':_0x21c743(0x492),'ref':_0x38fa8c,'icon':_0x558dbc}));});_0x2d0120[_0x57b2d2(0x6a2)]=_0x57b2d2(0x304);let _0x228193={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x591)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x55d)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x6af)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x548)}}]},_0x53d550=(0x0,_0x55b95c['forwardRef'])(function(_0x29b65c,_0xc04167){const _0x5a28f1=_0x57b2d2;return(0x0,_0x55b95c[_0x5a28f1(0x69d)])(_0x2ff816,Object[_0x5a28f1(0x82d)]({},_0x29b65c,{'id':'right-justifying-icon','ref':_0xc04167,'icon':_0x228193}));});_0x53d550[_0x57b2d2(0x6a2)]=_0x57b2d2(0x851);let _0x421567={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M19.0001\x204V15H9.00013V4H19.0001Z','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1a2),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x37a),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x57322e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1bdeb8,_0x203e07){const _0x19a8db=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x19a8db(0x82d)]({},_0x1bdeb8,{'id':'shape-accent-border-callout1-icon','ref':_0x203e07,'icon':_0x421567}));});_0x57322e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x7ae);let _0x2594f8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x3cf),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x656),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.00018\x2017L2.50018\x209H6.00018','strokeLinecap':'round','strokeWidth':1.6}}]},_0xb1e980=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x37f53b,_0x1d4e97){const _0x376443=_0x57b2d2;return(0x0,_0x55b95c[_0x376443(0x69d)])(_0x2ff816,Object[_0x376443(0x82d)]({},_0x37f53b,{'id':_0x376443(0x30e),'ref':_0x1d4e97,'icon':_0x2594f8}));});_0xb1e980[_0x57b2d2(0x6a2)]=_0x57b2d2(0x480);let _0x4c99de={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M19\x204V15H9V4H19Z','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x57e),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7a7),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xf109d5=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x792124,_0x4ad8f4){const _0x2d9112=_0x57b2d2;return(0x0,_0x55b95c[_0x2d9112(0x69d)])(_0x2ff816,Object['assign']({},_0x792124,{'id':_0x2d9112(0x5c8),'ref':_0x4ad8f4,'icon':_0x4c99de}));});_0xf109d5[_0x57b2d2(0x6a2)]=_0x57b2d2(0x18c);let _0x1d3428={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x29f),'strokeDasharray':_0x57b2d2(0x208),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M6.00013\x203V16','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.00013\x2017L6.00013\x209','strokeLinecap':'round','strokeWidth':1.6}}]},_0x3bb1d4=(0x0,_0x55b95c['forwardRef'])(function(_0x42729,_0x4e8052){const _0x411fd4=_0x57b2d2;return(0x0,_0x55b95c[_0x411fd4(0x69d)])(_0x2ff816,Object[_0x411fd4(0x82d)]({},_0x42729,{'id':_0x411fd4(0x885),'ref':_0x4e8052,'icon':_0x1d3428}));});_0x3bb1d4['displayName']=_0x57b2d2(0x57c);let _0x193545={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x3cf),'strokeDasharray':_0x57b2d2(0x208),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M6.00018\x203V16','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x802),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xfd8ce5=(0x0,_0x55b95c['forwardRef'])(function(_0x5ebdf9,_0x41240e){const _0x1781a4=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x1781a4(0x82d)]({},_0x5ebdf9,{'id':_0x1781a4(0x3e4),'ref':_0x41240e,'icon':_0x193545}));});_0xfd8ce5[_0x57b2d2(0x6a2)]='ShapeAccentCallout2Icon';let _0x4890c4={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x6cf),'strokeDasharray':'4\x203','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x57e),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M6\x2018.5L1\x2015V9H6','strokeLinecap':'round','strokeWidth':1.6}}]},_0x24360f=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1a0fb7,_0x1202e0){const _0x15598c=_0x57b2d2;return(0x0,_0x55b95c[_0x15598c(0x69d)])(_0x2ff816,Object[_0x15598c(0x82d)]({},_0x1a0fb7,{'id':_0x15598c(0x40a),'ref':_0x1202e0,'icon':_0x4890c4}));});_0x24360f['displayName']=_0x57b2d2(0x2f9);let _0xf5aec9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M13.9999\x2015.4058L13.9999\x204.0918L5\x2010.092ZM12.4001\x207.0803L12.4001\x2012.6026L8.0074\x2010.009Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x884f8f=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x593a2c,_0xe9d19a){const _0x1720dc=_0x57b2d2;return(0x0,_0x55b95c[_0x1720dc(0x69d)])(_0x2ff816,Object[_0x1720dc(0x82d)]({},_0x593a2c,{'id':_0x1720dc(0x441),'ref':_0xe9d19a,'icon':_0xf5aec9}));});_0x884f8f['displayName']='ShapeActionButtonBackPreviousIcon';let _0x56da96={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3ac),'fillRule':_0x57b2d2(0x2c1)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4f2)}}]},_0x22e82c=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x28af8d,_0x2b5e27){const _0x5469df=_0x57b2d2;return(0x0,_0x55b95c[_0x5469df(0x69d)])(_0x2ff816,Object[_0x5469df(0x82d)]({},_0x28af8d,{'id':_0x5469df(0x51b),'ref':_0x2b5e27,'icon':_0x56da96}));});_0x22e82c[_0x57b2d2(0x6a2)]=_0x57b2d2(0x386);let _0x4fd944={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}}]},_0x4d457d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xbfcca4,_0xe209fc){const _0x163143=_0x57b2d2;return(0x0,_0x55b95c[_0x163143(0x69d)])(_0x2ff816,Object[_0x163143(0x82d)]({},_0xbfcca4,{'id':_0x163143(0x318),'ref':_0xe209fc,'icon':_0x4fd944}));});_0x4d457d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x369);let _0x481408={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1ad),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M9.2\x204.6V8C9.2\x209.105\x2010.095\x2010\x2011.2\x2010H14','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x5bbfc4=(0x0,_0x55b95c['forwardRef'])(function(_0x5f5d50,_0x402105){const _0x56db20=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x56db20(0x82d)]({},_0x5f5d50,{'id':_0x56db20(0x307),'ref':_0x402105,'icon':_0x481408}));});_0x5bbfc4[_0x57b2d2(0x6a2)]='ShapeActionButtonDocumentIcon';let _0x175589={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x823),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x76c)}}]},_0x3207da=(0x0,_0x55b95c['forwardRef'])(function(_0x3c86e8,_0x252172){const _0x3b4dac=_0x57b2d2;return(0x0,_0x55b95c[_0x3b4dac(0x69d)])(_0x2ff816,Object[_0x3b4dac(0x82d)]({},_0x3c86e8,{'id':'shape-action-button-end-icon','ref':_0x252172,'icon':_0x175589}));});_0x3207da[_0x57b2d2(0x6a2)]=_0x57b2d2(0x7b9);let _0x34ecc1={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x65b),'fillRule':_0x57b2d2(0x2c1)}}]},_0x4b08b8=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x46ac47,_0x190607){const _0x5905a0=_0x57b2d2;return(0x0,_0x55b95c[_0x5905a0(0x69d)])(_0x2ff816,Object[_0x5905a0(0x82d)]({},_0x46ac47,{'id':_0x5905a0(0x321),'ref':_0x190607,'icon':_0x34ecc1}));});_0x4b08b8['displayName']=_0x57b2d2(0x874);let _0x321442={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x568),'strokeLinecap':'round','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':'circle','attrs':{'cx':0xa,'cy':0xf,'r':0.8,'fill':_0x57b2d2(0x268)}}]},_0x5df64e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3251aa,_0x13ecbc){const _0x3c7a2e=_0x57b2d2;return(0x0,_0x55b95c[_0x3c7a2e(0x69d)])(_0x2ff816,Object[_0x3c7a2e(0x82d)]({},_0x3251aa,{'id':'shape-action-button-help-icon','ref':_0x13ecbc,'icon':_0x321442}));});_0x5df64e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2a1);let _0x15e82b={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M16.043\x2010.75C16.4884\x2010.75\x2016.7114\x2010.2115\x2016.3965\x209.89652L10.1251\x203.6251L3.85367\x209.89653C3.53868\x2010.2115\x203.76177\x2010.75\x204.20722\x2010.75L16.043\x2010.75ZM6.8634\x209.1495L10.1251\x205.8878L13.3868\x209.1495L6.8634\x209.1495Z','fillRule':'evenodd'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4f1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x28a)}}]},_0x51513c=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1f2a8d,_0x121f95){const _0x3e6be8=_0x57b2d2;return(0x0,_0x55b95c[_0x3e6be8(0x69d)])(_0x2ff816,Object['assign']({},_0x1f2a8d,{'id':_0x3e6be8(0x6e1),'ref':_0x121f95,'icon':_0x15e82b}));});_0x51513c['displayName']=_0x57b2d2(0x1f2);let _0x1f774c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.8\x201.8H18.2V18.2H1.8z','strokeWidth':1.6}},{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':5.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}},{'tag':'circle','attrs':{'cx':0xa,'cy':7.5,'r':0x1,'fill':_0x57b2d2(0x268)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x376)}}]},_0x4e1d34=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5312fc,_0x5e71e5){const _0x4524ef=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x4524ef(0x82d)]({},_0x5312fc,{'id':_0x4524ef(0x4d6),'ref':_0x5e71e5,'icon':_0x1f774c}));});_0x4e1d34[_0x57b2d2(0x6a2)]='ShapeActionButtonInformationIcon';let _0x2ef3c6={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x22b),'fillRule':_0x57b2d2(0x2c1)}}]},_0xd0289b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5125b4,_0x112c2d){const _0x1995cd=_0x57b2d2;return(0x0,_0x55b95c[_0x1995cd(0x69d)])(_0x2ff816,Object[_0x1995cd(0x82d)]({},_0x5125b4,{'id':_0x1995cd(0x49a),'ref':_0x112c2d,'icon':_0x2ef3c6}));});_0xd0289b['displayName']='ShapeActionButtonMovieIcon';let _0x3a6e3f={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x189)}}]},_0x4ff8a0=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x121e96,_0x2d263d){const _0xf588a0=_0x57b2d2;return(0x0,_0x55b95c[_0xf588a0(0x69d)])(_0x2ff816,Object[_0xf588a0(0x82d)]({},_0x121e96,{'id':'shape-action-button-return-icon','ref':_0x2d263d,'icon':_0x3a6e3f}));});_0x4ff8a0['displayName']=_0x57b2d2(0x655);let _0x310da4={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x256),'fillRule':'evenodd'}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x24e),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x336),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x271),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x56602=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x47ea82,_0x4cdf2e){const _0x1fb81c=_0x57b2d2;return(0x0,_0x55b95c[_0x1fb81c(0x69d)])(_0x2ff816,Object['assign']({},_0x47ea82,{'id':_0x1fb81c(0x4d7),'ref':_0x4cdf2e,'icon':_0x310da4}));});_0x56602[_0x57b2d2(0x6a2)]=_0x57b2d2(0x61a);let _0x27d546={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x597),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x340acc=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x518dd9,_0x7d3893){const _0x4568ac=_0x57b2d2;return(0x0,_0x55b95c[_0x4568ac(0x69d)])(_0x2ff816,Object[_0x4568ac(0x82d)]({},_0x518dd9,{'id':_0x4568ac(0x46a),'ref':_0x7d3893,'icon':_0x27d546}));});_0x340acc['displayName']=_0x57b2d2(0x82e);let _0x1028e7={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M7\x206H12V4.60156L15.3936\x206.71289L12\x209.125V8H8C6.34315\x208\x205\x209.34315\x205\x2011V17H3V10L1\x2010V19H7V11C7\x2010.4477\x207.44771\x2010\x208\x2010H10V13.001L19\x206.60156L10\x201.00098L10\x204H7C3.68629\x204\x201\x206.68629\x201\x2010L3\x2010C3\x207.79086\x204.79086\x206\x207\x206Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x1b360f=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x43f16d,_0x12441c){const _0x20b759=_0x57b2d2;return(0x0,_0x55b95c[_0x20b759(0x69d)])(_0x2ff816,Object[_0x20b759(0x82d)]({},_0x43f16d,{'id':'shape-bent-arrow-icon','ref':_0x12441c,'icon':_0x1028e7}));});_0x1b360f['displayName']=_0x57b2d2(0x34c);let _0x3a3d07={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M4\x204H10V16H18','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M15\x2013L18\x2016L15\x2019','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x491e31=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x385bf1,_0x23fe94){const _0x51b3b9=_0x57b2d2;return(0x0,_0x55b95c[_0x51b3b9(0x69d)])(_0x2ff816,Object[_0x51b3b9(0x82d)]({},_0x385bf1,{'id':_0x51b3b9(0x793),'ref':_0x23fe94,'icon':_0x3a3d07}));});_0x491e31[_0x57b2d2(0x6a2)]=_0x57b2d2(0x6ce);let _0xae4ff0={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M2\x204H10V16H18','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x360),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x2fa),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xeee8dc=(0x0,_0x55b95c['forwardRef'])(function(_0x543b18,_0x410868){const _0x2915e3=_0x57b2d2;return(0x0,_0x55b95c[_0x2915e3(0x69d)])(_0x2ff816,Object[_0x2915e3(0x82d)]({},_0x543b18,{'id':_0x2915e3(0x2a4),'ref':_0x410868,'icon':_0xae4ff0}));});_0xeee8dc[_0x57b2d2(0x6a2)]='ShapeBentConnector3Arrow2Icon';let _0x3b3cf5={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x44f),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x4fcff2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x25f30a,_0x416fbb){return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x25f30a,{'id':'shape-bent-connector3-icon','ref':_0x416fbb,'icon':_0x3b3cf5}));});_0x4fcff2[_0x57b2d2(0x6a2)]=_0x57b2d2(0x78e);let _0x2c6613={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x882),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x565),'attrs':{'id':_0x57b2d2(0x72a),'width':0x12,'height':0x11,'x':0x0,'y':0x0,'maskUnits':_0x57b2d2(0x857)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x22f),'d':_0x57b2d2(0x513)}}]},{'tag':'g','attrs':{'mask':_0x57b2d2(0x1e1)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':'M17.083\x206V8H21.3531L18.6194\x204.71963L17.083\x206ZM15\x206V4H13.5V6H15ZM15\x2017V19H17V17H15ZM0\x2017H-2V19H0V17ZM0\x2011V9H-2V11H0ZM9\x2011V12.5H10.5V11H9ZM9\x206H10.5V4H9V6ZM7.08301\x206L5.54657\x204.71963L2.81292\x208H7.08301V6ZM12.083\x202.38419e-07L13.6195\x20-1.28037L12.083\x20-3.1241L10.5466\x20-1.28037L12.083\x202.38419e-07ZM17.083\x206V4H15V6V8H17.083V6ZM15\x206H13.5V17H15H17V6H15ZM15\x2017V15.5H0V17V19H15V17ZM0\x2017H1.5V14V12.5L1.41699\x2011H0H-2V17H0ZM0\x2011V12.5H9V11V9H0V11ZM9\x2011H10.5V8.5V6H9H7V11H9ZM9\x206V4H7.08301V6V8H9V6ZM7.08301\x206L8.33913\x207L13.3391\x201L12.083\x202.38419e-07L10.5466\x20-1.28037L5.54657\x204.71963L7.08301\x206ZM12.083\x202.38419e-07L10.6217\x201L16.0322\x207L17.083\x206L18.6194\x204.71963L13.6195\x20-1.28037L12.083\x202.38419e-07Z'}}]}]},_0x34cbbd=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3807a9,_0x48388a){const _0x1b09ee=_0x57b2d2;return(0x0,_0x55b95c[_0x1b09ee(0x69d)])(_0x2ff816,Object[_0x1b09ee(0x82d)]({},_0x3807a9,{'id':_0x1b09ee(0x195),'ref':_0x48388a,'icon':_0x2c6613}));});_0x34cbbd[_0x57b2d2(0x6a2)]=_0x57b2d2(0x263);let _0x4aaa07={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x88f),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.8\x201.8L5.8\x205.8M18.2\x201.8L14.2\x205.8M18.2\x2018.2L14.2\x2014.2M1.8\x2018.2L5.8\x2014.2','strokeWidth':1.6}}]},_0x451829=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x11dbe4,_0x4a8bf1){const _0x41a7ba=_0x57b2d2;return(0x0,_0x55b95c[_0x41a7ba(0x69d)])(_0x2ff816,Object[_0x41a7ba(0x82d)]({},_0x11dbe4,{'id':_0x41a7ba(0x206),'ref':_0x4a8bf1,'icon':_0x4aaa07}));});_0x451829[_0x57b2d2(0x6a2)]=_0x57b2d2(0x240);let _0x2d0be7={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'defs','attrs':{},'children':[{'tag':'clipPath','attrs':{'id':_0x57b2d2(0x239)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':'M10\x204C14.9706\x204\x2019\x208.47715\x2019\x2014H13C13\x2012.067\x2011.6569\x2010.5\x2010\x2010.5C8.34315\x2010.5\x207\x2012.067\x207\x2014H1C1\x208.47715\x205.02944\x204\x2010\x204ZM10\x206C6.82909\x206\x204.23467\x208.78741\x203.37402\x2012H5.5C6.27164\x2010.0381\x207.94982\x208.44434\x2010\x208.44434C12.0502\x208.44434\x2013.8944\x2010.0381\x2014.666\x2012H16.792C15.9313\x208.78741\x2013.1709\x206\x2010\x206Z'}}]}]},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M10\x204C14.9706\x204\x2019\x208.47715\x2019\x2014H13C13\x2012.067\x2011.6569\x2010.5\x2010\x2010.5C8.34315\x2010.5\x207\x2012.067\x207\x2014H1C1\x208.47715\x205.02944\x204\x2010\x204ZM10\x206C6.82909\x206\x204.23467\x208.78741\x203.37402\x2012H5.5C6.27164\x2010.0381\x207.94982\x208.44434\x2010\x208.44434C12.0502\x208.44434\x2013.8944\x2010.0381\x2014.666\x2012H16.792C15.9313\x208.78741\x2013.1709\x206\x2010\x206Z','strokeWidth':3.2,'clipPath':_0x57b2d2(0x449)}}],'defIds':[_0x57b2d2(0x239)]},_0x1891e5=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x58cd7a,_0x5d5cf2){const _0x84fdc9=_0x57b2d2;return(0x0,_0x55b95c[_0x84fdc9(0x69d)])(_0x2ff816,Object[_0x84fdc9(0x82d)]({},_0x58cd7a,{'id':_0x84fdc9(0x1d2),'ref':_0x5d5cf2,'icon':_0x2d0be7}));});_0x1891e5[_0x57b2d2(0x6a2)]=_0x57b2d2(0x81a);let _0x3eb21f={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x446),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x75d),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x4b5d82=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5306cb,_0x492f41){const _0x1a51c1=_0x57b2d2;return(0x0,_0x55b95c[_0x1a51c1(0x69d)])(_0x2ff816,Object['assign']({},_0x5306cb,{'id':'shape-border-callout1-icon','ref':_0x492f41,'icon':_0x3eb21f}));});_0x4b5d82[_0x57b2d2(0x6a2)]=_0x57b2d2(0x567);let _0x5b5d29={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x620),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x802),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x286c04=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1caa0e,_0x2b8d0f){const _0x102210=_0x57b2d2;return(0x0,_0x55b95c[_0x102210(0x69d)])(_0x2ff816,Object[_0x102210(0x82d)]({},_0x1caa0e,{'id':_0x102210(0x6c6),'ref':_0x2b8d0f,'icon':_0x5b5d29}));});_0x286c04[_0x57b2d2(0x6a2)]=_0x57b2d2(0x85c);let _0x1d99ae={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x375),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7a7),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x56c6b9=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x6b369,_0xd8bf52){const _0x2c9962=_0x57b2d2;return(0x0,_0x55b95c[_0x2c9962(0x69d)])(_0x2ff816,Object[_0x2c9962(0x82d)]({},_0x6b369,{'id':_0x2c9962(0x279),'ref':_0xd8bf52,'icon':_0x1d99ae}));});_0x56c6b9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x76e);let _0x4ddbd0={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x4b4),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M13\x202C14.8\x202\x2015.6\x202.75\x2015.6\x204.6V7.3C15.6\x208.55\x2016.15\x209.35\x2017.4\x209.9C16.15\x2010.45\x2015.6\x2011.25\x2015.6\x2012.5V15.4C15.6\x2017.25\x2014.8\x2018\x2013\x2018','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x13959a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4c887e,_0xe6ec9d){const _0x481e76=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x481e76(0x82d)]({},_0x4c887e,{'id':'shape-brace-pair-icon','ref':_0xe6ec9d,'icon':_0x4ddbd0}));});_0x13959a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x733);let _0x53536c={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x494),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x220),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x169662=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x309a02,_0x405be1){const _0x5e9d15=_0x57b2d2;return(0x0,_0x55b95c[_0x5e9d15(0x69d)])(_0x2ff816,Object[_0x5e9d15(0x82d)]({},_0x309a02,{'id':_0x5e9d15(0x6d5),'ref':_0x405be1,'icon':_0x53536c}));});_0x169662[_0x57b2d2(0x6a2)]=_0x57b2d2(0x235);let _0x4a844b={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M19.0001\x204V15H6.00014V4H19.0001Z','strokeDasharray':_0x57b2d2(0x208),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.00014\x2017L6.00014\x209','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x25476e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1b706f,_0x277bf6){const _0x179fa0=_0x57b2d2;return(0x0,_0x55b95c[_0x179fa0(0x69d)])(_0x2ff816,Object[_0x179fa0(0x82d)]({},_0x1b706f,{'id':_0x179fa0(0x437),'ref':_0x277bf6,'icon':_0x4a844b}));});_0x25476e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x788);let _0xca6dea={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x620),'strokeDasharray':_0x57b2d2(0x208),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.00018\x2017L2.50018\x209H6.00018','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x1ef5cc=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x350b76,_0x3e212c){const _0x59027d=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x59027d(0x82d)]({},_0x350b76,{'id':'shape-callout2-icon','ref':_0x3e212c,'icon':_0xca6dea}));});_0x1ef5cc['displayName']=_0x57b2d2(0x6ba);let _0x2c867b={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M19\x204V15H6V4H19Z','strokeDasharray':_0x57b2d2(0x208),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7a7),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x36bf9b=(0x0,_0x55b95c['forwardRef'])(function(_0xf3f064,_0x30a88a){const _0x404dc7=_0x57b2d2;return(0x0,_0x55b95c[_0x404dc7(0x69d)])(_0x2ff816,Object['assign']({},_0xf3f064,{'id':_0x404dc7(0x58e),'ref':_0x30a88a,'icon':_0x2c867b}));});_0x36bf9b[_0x57b2d2(0x6a2)]=_0x57b2d2(0x501);let _0x5e6ae3={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x3b4),'attrs':{'cx':0xa,'cy':0x5,'stroke':'currentColor','rx':0x8,'ry':0x4,'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M2\x205V14C2\x2016.2\x205.6\x2018.5\x2010\x2018.5C14.4\x2018.5\x2018\x2016.2\x2018\x2014V5','strokeWidth':1.6}}]},_0x305246=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x59b3d5,_0x14c3fa){const _0x4bf3f4=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x4bf3f4(0x82d)]({},_0x59b3d5,{'id':'shape-can-icon','ref':_0x14c3fa,'icon':_0x5e6ae3}));});_0x305246[_0x57b2d2(0x6a2)]=_0x57b2d2(0x657);let _0x2cc4f8={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x839),'strokeWidth':1.6}}]},_0x385ff1=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x55aecc,_0x3afa63){const _0x137000=_0x57b2d2;return(0x0,_0x55b95c[_0x137000(0x69d)])(_0x2ff816,Object[_0x137000(0x82d)]({},_0x55aecc,{'id':_0x137000(0x7ef),'ref':_0x3afa63,'icon':_0x2cc4f8}));});_0x385ff1[_0x57b2d2(0x6a2)]=_0x57b2d2(0x432);let _0x5da6ac={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M2.9289\x202.9289L17.0711\x2017.0711','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x859),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1a7),'strokeWidth':1.6}}]},_0x454ef9=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xe3fee,_0x4ed8bc){const _0x2518de=_0x57b2d2;return(0x0,_0x55b95c[_0x2518de(0x69d)])(_0x2ff816,Object['assign']({},_0xe3fee,{'id':_0x2518de(0x1b9),'ref':_0x4ed8bc,'icon':_0x5da6ac}));});_0x454ef9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2c9);let _0x1d6130={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x60d),'strokeWidth':1.6}}]},_0x4458fb=(0x0,_0x55b95c['forwardRef'])(function(_0x419430,_0x4b27a9){const _0x49341c=_0x57b2d2;return(0x0,_0x55b95c[_0x49341c(0x69d)])(_0x2ff816,Object[_0x49341c(0x82d)]({},_0x419430,{'id':_0x49341c(0x4dd),'ref':_0x4b27a9,'icon':_0x1d6130}));});_0x4458fb['displayName']=_0x57b2d2(0x216);let _0x1ebacd={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x342),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x3aca2f=(0x0,_0x55b95c['forwardRef'])(function(_0x1acf46,_0x2e157b){const _0x31842a=_0x57b2d2;return(0x0,_0x55b95c[_0x31842a(0x69d)])(_0x2ff816,Object[_0x31842a(0x82d)]({},_0x1acf46,{'id':_0x31842a(0x658),'ref':_0x2e157b,'icon':_0x1ebacd}));});_0x3aca2f['displayName']=_0x57b2d2(0x73b);let _0x421682={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M18.2\x2010C18.2\x2014.5287\x2014.5287\x2018.2\x2010\x2018.2C5.4713\x2018.2\x201.8\x2014.5287\x201.8\x2010C1.8\x205.4713\x205.4713\x201.8\x2010\x201.8L18.2\x2010Z','strokeWidth':1.6}}]},_0xbb37c0=(0x0,_0x55b95c['forwardRef'])(function(_0x440323,_0xfc6385){const _0x29dd87=_0x57b2d2;return(0x0,_0x55b95c[_0x29dd87(0x69d)])(_0x2ff816,Object[_0x29dd87(0x82d)]({},_0x440323,{'id':'shape-chord-icon','ref':_0xfc6385,'icon':_0x421682}));});_0xbb37c0['displayName']=_0x57b2d2(0x3a3);let _0x5f5c2a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2018\x2019','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x42e)}}]},_0x2633f5=(0x0,_0x55b95c['forwardRef'])(function(_0x38fed3,_0x50ceaf){const _0x593f8f=_0x57b2d2;return(0x0,_0x55b95c[_0x593f8f(0x69d)])(_0x2ff816,Object['assign']({},_0x38fed3,{'id':'shape-circular-arrow-icon','ref':_0x50ceaf,'icon':_0x5f5c2a}));});_0x2633f5[_0x57b2d2(0x6a2)]=_0x57b2d2(0x68a);let _0x5bb289={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0x8,'cy':0x11,'r':0x2,'fill':_0x57b2d2(0x268)}},{'tag':'circle','attrs':{'cx':0x4,'cy':0x13,'r':0x1,'fill':_0x57b2d2(0x268)}},{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x5d9)},'children':[{'tag':'path','attrs':{'d':_0x57b2d2(0x7d6)}}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7d6),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x4a4)}}]},_0x2524f5=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x42105a,_0x1f0858){const _0x557b43=_0x57b2d2;return(0x0,_0x55b95c[_0x557b43(0x69d)])(_0x2ff816,Object[_0x557b43(0x82d)]({},_0x42105a,{'id':_0x557b43(0x6b5),'ref':_0x1f0858,'icon':_0x5bb289}));});_0x2524f5[_0x57b2d2(0x6a2)]='ShapeCloudCalloutIcon';let _0x4fa863={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x841)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x50d)}}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M8\x202C9.2853\x202\x2010.457\x202.42475\x2011.3428\x203.12207C11.8615\x202.96265\x2012.419\x202.875\x2013\x202.875C15.7614\x202.875\x2018\x204.83375\x2018\x207.25C18\x207.97779\x2017.7949\x208.66285\x2017.4355\x209.2666C18.9353\x209.84364\x2020\x2011.297\x2020\x2013C20\x2015.2091\x2018.2091\x2017\x2016\x2017C15.5108\x2017\x2015.0426\x2016.9107\x2014.6094\x2016.75C13.8013\x2017.5234\x2012.7069\x2018\x2011.5\x2018C10.4258\x2018\x209.43972\x2017.6232\x208.66602\x2016.9951C7.77055\x2017.627\x206.67928\x2018\x205.5\x2018C2.46243\x2018\x200\x2015.5376\x200\x2012.5C0\x2010.2946\x201.29808\x208.39235\x203.17188\x207.51562C3.05993\x207.15196\x203\x206.76961\x203\x206.375C3\x203.95875\x205.23858\x202\x208\x202Z','strokeWidth':3.2,'clipPath':_0x57b2d2(0x157)}}]},_0x25f2e5=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x57d61c,_0x28ce0c){const _0x204bfc=_0x57b2d2;return(0x0,_0x55b95c[_0x204bfc(0x69d)])(_0x2ff816,Object[_0x204bfc(0x82d)]({},_0x57d61c,{'id':'shape-cloud-icon','ref':_0x28ce0c,'icon':_0x4fa863}));});_0x25f2e5[_0x57b2d2(0x6a2)]='ShapeCloudIcon';let _0x31b1c2={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M9.2\x201.8H1.8V18.2H18.2V10.8H9.2V1.8Z','strokeWidth':1.6}}]},_0x4430c9=(0x0,_0x55b95c['forwardRef'])(function(_0x44e8e7,_0x337fea){const _0x2ac856=_0x57b2d2;return(0x0,_0x55b95c[_0x2ac856(0x69d)])(_0x2ff816,Object[_0x2ac856(0x82d)]({},_0x44e8e7,{'id':_0x2ac856(0x1e5),'ref':_0x337fea,'icon':_0x31b1c2}));});_0x4430c9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x512);let _0x242513={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x856),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x382),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x551),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x61e),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x533729=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x34c45c,_0xb103a4){const _0x1fec81=_0x57b2d2;return(0x0,_0x55b95c[_0x1fec81(0x69d)])(_0x2ff816,Object['assign']({},_0x34c45c,{'id':_0x1fec81(0x45b),'ref':_0xb103a4,'icon':_0x242513}));});_0x533729['displayName']=_0x57b2d2(0x5a8);let _0x7f4c6e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x3dc),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x33f),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x329f27=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xfb624a,_0x24c9a7){const _0x1aa120=_0x57b2d2;return(0x0,_0x55b95c[_0x1aa120(0x69d)])(_0x2ff816,Object[_0x1aa120(0x82d)]({},_0xfb624a,{'id':_0x1aa120(0x36b),'ref':_0x24c9a7,'icon':_0x7f4c6e}));});_0x329f27[_0x57b2d2(0x6a2)]='ShapeCubeIcon';let _0x401469={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M5.75\x204C12.5\x204\x2015\x205.1\x2015\x207.2C15\x209.7\x2011.3\x209.6\x207.1\x2010.95C5.5\x2011.45\x205\x2012.25\x205\x2012.9C5\x2015.1\x208\x2016\x2017\x2016','strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M14\x2013L17\x2016L14\x2019','strokeLinecap':'round','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xb07b63=(0x0,_0x55b95c['forwardRef'])(function(_0x29b18d,_0x502956){const _0x5428fa=_0x57b2d2;return(0x0,_0x55b95c[_0x5428fa(0x69d)])(_0x2ff816,Object['assign']({},_0x29b18d,{'id':_0x5428fa(0x624),'ref':_0x502956,'icon':_0x401469}));});_0xb07b63[_0x57b2d2(0x6a2)]=_0x57b2d2(0x1a5);let _0x25b60b={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x2e1),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M6\x201L3\x204L6\x207','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x27a),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x103e5b=(0x0,_0x55b95c['forwardRef'])(function(_0x3f68d1,_0x4379dc){const _0x4fa32f=_0x57b2d2;return(0x0,_0x55b95c[_0x4fa32f(0x69d)])(_0x2ff816,Object['assign']({},_0x3f68d1,{'id':_0x4fa32f(0x626),'ref':_0x4379dc,'icon':_0x25b60b}));});_0x103e5b[_0x57b2d2(0x6a2)]=_0x57b2d2(0x434);let _0xd304f5={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x20b),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x5f1a68=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x26a116,_0x5ecaab){const _0x1f4820=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x26a116,{'id':_0x1f4820(0x7a9),'ref':_0x5ecaab,'icon':_0xd304f5}));});_0x5f1a68[_0x57b2d2(0x6a2)]=_0x57b2d2(0x625);let _0x227d94={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x54a),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x38f)}}]},_0xbb8441=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x416654,_0x4a0e2d){const _0x54fc55=_0x57b2d2;return(0x0,_0x55b95c[_0x54fc55(0x69d)])(_0x2ff816,Object[_0x54fc55(0x82d)]({},_0x416654,{'id':_0x54fc55(0x789),'ref':_0x4a0e2d,'icon':_0x227d94}));});_0xbb8441[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3de);let _0x3d3e57={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x648),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M15.56944\x208.66518C15.46709\x206.54997\x2014.24853\x205.5\x2012.16667\x205.5L9.25\x205.5L9.10092\x205.5L9.02855\x205.5L3.8468\x205.5L3.8468\x201.5L10.5118\x202C13.62756\x202.2003\x2016.05556\x205.38081\x2016.05556\x208.5918C16.05556\x208.66075\x2015.57167\x208.59674\x2015.56944\x208.66518ZM18\x208.5918C18\x204.32466\x2014.77386\x200.79254\x2010.63333\x200.52637L2.4444\x200L2.4444\x207L12.16667\x207C13.24055\x207\x2014.11111\x207.89543\x2014.11111\x209C14.11111\x2010.1046\x2013.24055\x2011.5\x2012.16667\x2011.5L12.16667\x2013C13.72842\x2013\x2015.07423\x2012.0526\x2015.69287\x2010.6865C14.92301\x2012.8423\x2012.99938\x2014.7903\x2010.65612\x2015L5.4523\x2015.2865L5.3611\x2015.2969L3.8468\x2014.2754L5.4523\x2013L12.16667\x2013L12.16667\x2011.5L7.3056\x2011.5L7.3056\x209.5L0.5\x2014.4072L7.3056\x2019L7.3056\x2016.957L10.82416\x2016.6416C14.88383\x2016.2785\x2017.99983\x2012.7832\x2018\x208.5918Z'}}]},_0x242845=(0x0,_0x55b95c['forwardRef'])(function(_0x3775d7,_0x532ea9){const _0x2c6e49=_0x57b2d2;return(0x0,_0x55b95c[_0x2c6e49(0x69d)])(_0x2ff816,Object['assign']({},_0x3775d7,{'id':_0x2c6e49(0x4cb),'ref':_0x532ea9,'icon':_0x3d3e57}));});_0x242845['displayName']='ShapeCurvedLeftArrowIcon';let _0x3f239e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x648),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x2a6)}}]},_0x1f2ba3=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x38e1cf,_0x4035d2){const _0x25d2e2=_0x57b2d2;return(0x0,_0x55b95c[_0x25d2e2(0x69d)])(_0x2ff816,Object[_0x25d2e2(0x82d)]({},_0x38e1cf,{'id':_0x25d2e2(0x4b1),'ref':_0x4035d2,'icon':_0x3f239e}));});_0x1f2ba3[_0x57b2d2(0x6a2)]=_0x57b2d2(0x27c);let _0x109b83={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x54a),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x1f6)}}]},_0x25e591=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x372836,_0x2d2606){const _0x223341=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x223341(0x82d)]({},_0x372836,{'id':'shape-curved-up-arrow-icon','ref':_0x2d2606,'icon':_0x109b83}));});_0x25e591[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3f4);let _0x457edb={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'clipPath','attrs':{'id':'shape-decagon-icon-frame-clip'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x40c)}}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x40c),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x444)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6ee)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M6.90365\x206.33995C7.03232\x206.22121\x207.19758\x206.146\x207.37267\x206.146C7.71913\x206.146\x208\x206.42686\x208\x206.77333V13.4005C8\x2013.7316\x207.73159\x2014\x207.4005\x2014C7.06941\x2014\x206.801\x2013.7316\x206.801\x2013.4005V7.587C6.48979\x207.88374\x206.12143\x208.12809\x205.69906\x208.32007C5.35797\x208.4751\x204.997\x208.20342\x204.997\x207.82875C4.997\x207.5703\x205.17444\x207.34822\x205.41575\x207.2557C5.63756\x207.17064\x205.86665\x207.06108\x206.108\x206.927C6.41215\x206.74113\x206.67737\x206.54877\x206.90365\x206.33995Z'}}]},_0xfcf8a2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x140503,_0x424072){const _0x49faf8=_0x57b2d2;return(0x0,_0x55b95c[_0x49faf8(0x69d)])(_0x2ff816,Object[_0x49faf8(0x82d)]({},_0x140503,{'id':_0x49faf8(0x7c5),'ref':_0x424072,'icon':_0x457edb}));});_0xfcf8a2['displayName']='ShapeDecagonIcon';let _0x27abc9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x553),'fillRule':_0x57b2d2(0x2c1)}}]},_0x1c1d67=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x540284,_0xb44161){const _0x122be7=_0x57b2d2;return(0x0,_0x55b95c[_0x122be7(0x69d)])(_0x2ff816,Object[_0x122be7(0x82d)]({},_0x540284,{'id':'shape-diag-stripe-icon','ref':_0xb44161,'icon':_0x27abc9}));});_0x1c1d67[_0x57b2d2(0x6a2)]=_0x57b2d2(0x159);let _0x430c0e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x56a),'strokeWidth':1.6}}]},_0x4f469f=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2ccef4,_0xc9dfd3){const _0x50636b=_0x57b2d2;return(0x0,_0x55b95c[_0x50636b(0x69d)])(_0x2ff816,Object[_0x50636b(0x82d)]({},_0x2ccef4,{'id':_0x50636b(0x46d),'ref':_0xc9dfd3,'icon':_0x430c0e}));});_0x4f469f[_0x57b2d2(0x6a2)]='ShapeDiamondIcon';let _0x738193={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x60c)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x40c)}}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x40c),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x28f)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4cf)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x631)}}]},_0x106544=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1c14c0,_0x4c4238){const _0xd2e8d5=_0x57b2d2;return(0x0,_0x55b95c[_0xd2e8d5(0x69d)])(_0x2ff816,Object[_0xd2e8d5(0x82d)]({},_0x1c14c0,{'id':_0xd2e8d5(0x75c),'ref':_0x4c4238,'icon':_0x738193}));});_0x106544[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4bd);let _0x5da347={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':4.2,'stroke':'currentColor','strokeWidth':1.6}}]},_0x41b24e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4be1c9,_0x2af66b){const _0x226f97=_0x57b2d2;return(0x0,_0x55b95c[_0x226f97(0x69d)])(_0x2ff816,Object[_0x226f97(0x82d)]({},_0x4be1c9,{'id':_0x226f97(0x217),'ref':_0x2af66b,'icon':_0x5da347}));});_0x41b24e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2f2);let _0x744214={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5ef),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x14a990=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1574e1,_0x375d73){const _0xe7397d=_0x57b2d2;return(0x0,_0x55b95c[_0xe7397d(0x69d)])(_0x2ff816,Object[_0xe7397d(0x82d)]({},_0x1574e1,{'id':'shape-double-wave-icon','ref':_0x375d73,'icon':_0x744214}));});_0x14a990[_0x57b2d2(0x6a2)]=_0x57b2d2(0x7d0);let _0x4f68bc={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3bc),'fillRule':_0x57b2d2(0x2c1)}}]},_0x1323fd=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4524d2,_0x14f441){const _0x4beb09=_0x57b2d2;return(0x0,_0x55b95c[_0x4beb09(0x69d)])(_0x2ff816,Object[_0x4beb09(0x82d)]({},_0x4524d2,{'id':_0x4beb09(0x286),'ref':_0x14f441,'icon':_0x4f68bc}));});_0x1323fd[_0x57b2d2(0x6a2)]=_0x57b2d2(0x38c);let _0x3a6c9f={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x814)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x15d)}}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x15d),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x781)}}]},_0x222a51=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x275578,_0x5e0419){const _0x36bce7=_0x57b2d2;return(0x0,_0x55b95c[_0x36bce7(0x69d)])(_0x2ff816,Object[_0x36bce7(0x82d)]({},_0x275578,{'id':_0x36bce7(0x264),'ref':_0x5e0419,'icon':_0x3a6c9f}));});_0x222a51[_0x57b2d2(0x6a2)]='ShapeDownArrowIcon';let _0x4350f7={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'ellipse','attrs':{'cx':0xa,'cy':0xa,'stroke':_0x57b2d2(0x268),'rx':8.2,'ry':6.2,'strokeWidth':1.6}}]},_0x27af9a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x239ff6,_0x33d2f0){const _0x351b38=_0x57b2d2;return(0x0,_0x55b95c[_0x351b38(0x69d)])(_0x2ff816,Object['assign']({},_0x239ff6,{'id':_0x351b38(0x5ad),'ref':_0x33d2f0,'icon':_0x4350f7}));});_0x27af9a[_0x57b2d2(0x6a2)]='ShapeEllipseIcon';let _0x34f125={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x56d)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x70f),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x154),'fillRule':'evenodd','clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x258)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4bb)}}]},_0x358d7c=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x11d983,_0x37d680){const _0x3ae7ec=_0x57b2d2;return(0x0,_0x55b95c[_0x3ae7ec(0x69d)])(_0x2ff816,Object[_0x3ae7ec(0x82d)]({},_0x11d983,{'id':_0x3ae7ec(0x2b8),'ref':_0x37d680,'icon':_0x34f125}));});_0x358d7c[_0x57b2d2(0x6a2)]=_0x57b2d2(0x642);let _0x20f551={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x804)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6de),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3fe),'fillRule':'evenodd','clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4f0)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M3.5\x206.5C2.49588\x206.5\x200.5\x207\x200.5\x207L2.5\x2011.5L0.5\x2016.5C0.5\x2016.5\x202.42459\x2016\x203.42871\x2016L3.5\x2014.5C3.36588\x2014.5\x203.09687\x2014.4864\x202.96191\x2014.5L3.8291\x2011.4346L2.59668\x208.1973C2.72342\x208.1596\x202.84589\x208.1243\x202.96191\x208.0947C3.29605\x208.0097\x203.43669\x208.0001\x203.42871\x208H4V14.5H3.5L3.42871\x2016H5.5V11V6.5H3.5Z'}}]},_0x56d698=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x30738b,_0x2b86c2){const _0x3baa5f=_0x57b2d2;return(0x0,_0x55b95c[_0x3baa5f(0x69d)])(_0x2ff816,Object[_0x3baa5f(0x82d)]({},_0x30738b,{'id':'shape-ellipse-ribbon2-icon','ref':_0x2b86c2,'icon':_0x20f551}));});_0x56d698[_0x57b2d2(0x6a2)]='ShapeEllipseRibbon2Icon';let _0x477a8c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'rect','attrs':{'width':16.4,'height':12.4,'x':1.8,'y':3.8,'stroke':'currentColor','rx':2.2,'strokeWidth':1.6}}]},_0x138eaf=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1df43d,_0x40aa85){const _0x28547c=_0x57b2d2;return(0x0,_0x55b95c[_0x28547c(0x69d)])(_0x2ff816,Object[_0x28547c(0x82d)]({},_0x1df43d,{'id':_0x28547c(0x43c),'ref':_0x40aa85,'icon':_0x477a8c}));});_0x138eaf[_0x57b2d2(0x6a2)]='ShapeFlowChartAlternateProcessIcon';let _0x4df6aa={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x6fe),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x1be692=(0x0,_0x55b95c['forwardRef'])(function(_0x58c497,_0x325635){const _0xd0ca7c=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0xd0ca7c(0x82d)]({},_0x58c497,{'id':_0xd0ca7c(0x2e4),'ref':_0x325635,'icon':_0x4df6aa}));});_0x1be692[_0x57b2d2(0x6a2)]=_0x57b2d2(0x377);let _0x565b2e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':'currentColor','strokeWidth':1.6}}]},_0x5d3b35=(0x0,_0x55b95c['forwardRef'])(function(_0x2ff528,_0x493e64){const _0x2f2153=_0x57b2d2;return(0x0,_0x55b95c[_0x2f2153(0x69d)])(_0x2ff816,Object[_0x2f2153(0x82d)]({},_0x2ff528,{'id':_0x2f2153(0x696),'ref':_0x493e64,'icon':_0x565b2e}));});_0x5d3b35[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4f4);let _0x55e20a={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M10\x203.28027L18.3994\x2010L10\x2016.7197L1.6001\x2010L10\x203.28027Z','strokeWidth':1.6}}]},_0x2e4085=(0x0,_0x55b95c['forwardRef'])(function(_0x5e1bd,_0x164a9d){const _0x3622cf=_0x57b2d2;return(0x0,_0x55b95c[_0x3622cf(0x69d)])(_0x2ff816,Object[_0x3622cf(0x82d)]({},_0x5e1bd,{'id':'shape-flow-chart-decision-icon','ref':_0x164a9d,'icon':_0x55e20a}));});_0x2e4085[_0x57b2d2(0x6a2)]=_0x57b2d2(0x5e7);let _0x573471={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x583),'strokeWidth':1.6}}]},_0x51c5e9=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x114d75,_0x2b01b2){const _0x591592=_0x57b2d2;return(0x0,_0x55b95c[_0x591592(0x69d)])(_0x2ff816,Object['assign']({},_0x114d75,{'id':'shape-flow-chart-delay-icon','ref':_0x2b01b2,'icon':_0x573471}));});_0x51c5e9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x87c);let _0x146d7c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7b4),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x3f7edc=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x37cbb5,_0xc9ec46){const _0x51703c=_0x57b2d2;return(0x0,_0x55b95c[_0x51703c(0x69d)])(_0x2ff816,Object[_0x51703c(0x82d)]({},_0x37cbb5,{'id':_0x51703c(0x427),'ref':_0xc9ec46,'icon':_0x146d7c}));});_0x3f7edc[_0x57b2d2(0x6a2)]=_0x57b2d2(0x5db);let _0x210170={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x439),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x222903=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1bf825,_0x29d4c1){const _0x3d4aba=_0x57b2d2;return(0x0,_0x55b95c[_0x3d4aba(0x69d)])(_0x2ff816,Object[_0x3d4aba(0x82d)]({},_0x1bf825,{'id':_0x3d4aba(0x7ec),'ref':_0x29d4c1,'icon':_0x210170}));});_0x222903['displayName']=_0x57b2d2(0x5a9);let _0x5b0055={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x498),'strokeWidth':1.6}}]},_0x57479d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x39adaf,_0x424168){const _0x2b5463=_0x57b2d2;return(0x0,_0x55b95c[_0x2b5463(0x69d)])(_0x2ff816,Object[_0x2b5463(0x82d)]({},_0x39adaf,{'id':_0x2b5463(0x52d),'ref':_0x424168,'icon':_0x5b0055}));});_0x57479d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x644);let _0xc2e932={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1b2),'strokeWidth':1.6}}]},_0x4bb6da=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x354863,_0x12bf45){const _0x330e87=_0x57b2d2;return(0x0,_0x55b95c[_0x330e87(0x69d)])(_0x2ff816,Object['assign']({},_0x354863,{'id':_0x330e87(0x7c0),'ref':_0x12bf45,'icon':_0xc2e932}));});_0x4bb6da[_0x57b2d2(0x6a2)]='ShapeFlowChartInputOutputIcon';let _0x564e86={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1f5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x187),'strokeWidth':1.6}}]},_0x1df02a=(0x0,_0x55b95c['forwardRef'])(function(_0x19380a,_0xd5c4c3){const _0x36598a=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x36598a(0x82d)]({},_0x19380a,{'id':_0x36598a(0x532),'ref':_0xd5c4c3,'icon':_0x564e86}));});_0x1df02a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x794);let _0x312e7d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x3b4),'attrs':{'cx':0xa,'cy':0x7,'stroke':'currentColor','rx':0x8,'ry':0x4,'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x7a3),'strokeWidth':1.6}}]},_0x3f90ca=(0x0,_0x55b95c['forwardRef'])(function(_0x2de512,_0x518d7d){const _0x3fc9e0=_0x57b2d2;return(0x0,_0x55b95c[_0x3fc9e0(0x69d)])(_0x2ff816,Object[_0x3fc9e0(0x82d)]({},_0x2de512,{'id':_0x3fc9e0(0x7b0),'ref':_0x518d7d,'icon':_0x312e7d}));});_0x3f90ca[_0x57b2d2(0x6a2)]=_0x57b2d2(0x8a6);let _0x1c1ab9={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x3b4),'attrs':{'cx':0xd,'cy':0xa,'stroke':_0x57b2d2(0x268),'rx':0x4,'ry':0x8,'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x4cd),'strokeWidth':1.6}}]},_0x5e008e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4a1fc0,_0xf264f4){const _0x142d6a=_0x57b2d2;return(0x0,_0x55b95c[_0x142d6a(0x69d)])(_0x2ff816,Object['assign']({},_0x4a1fc0,{'id':'shape-flow-chart-magnetic-drum-icon','ref':_0xf264f4,'icon':_0x1c1ab9}));});_0x5e008e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x557);let _0x1dd9c9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1da),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x565c63=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2fae70,_0x2a8ab9){const _0x50723d=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x50723d(0x82d)]({},_0x2fae70,{'id':_0x50723d(0x602),'ref':_0x2a8ab9,'icon':_0x1dd9c9}));});_0x565c63['displayName']=_0x57b2d2(0x7e3);let _0x5dfa88={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x6ae),'strokeWidth':1.6}}]},_0x5f23c2=(0x0,_0x55b95c['forwardRef'])(function(_0x1e440f,_0x14add){const _0x35fcdf=_0x57b2d2;return(0x0,_0x55b95c[_0x35fcdf(0x69d)])(_0x2ff816,Object['assign']({},_0x1e440f,{'id':'shape-flow-chart-manual-input-icon','ref':_0x14add,'icon':_0x5dfa88}));});_0x5f23c2[_0x57b2d2(0x6a2)]='ShapeFlowChartManualInputIcon';let _0x487356={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.41943\x204H18.5806L14.2949\x2016H5.70508L1.41943\x204Z','strokeWidth':1.6}}]},_0xe6c681=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5ce65b,_0x42723e){const _0x1884fd=_0x57b2d2;return(0x0,_0x55b95c[_0x1884fd(0x69d)])(_0x2ff816,Object[_0x1884fd(0x82d)]({},_0x5ce65b,{'id':_0x1884fd(0x5cf),'ref':_0x42723e,'icon':_0x487356}));});_0xe6c681['displayName']=_0x57b2d2(0x646);let _0x3f71c4={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M2.61816\x202H17.3818L10\x2016.7637L2.61816\x202Z','strokeWidth':1.6}}]},_0x32222a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x84b2f,_0x4d8de2){const _0x4598f0=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x4598f0(0x82d)]({},_0x84b2f,{'id':_0x4598f0(0x757),'ref':_0x4d8de2,'icon':_0x3f71c4}));});_0x32222a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x84e);let _0x50fa5c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x846),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M7\x203V1.5H19V9H17','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x34d),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x5b63d6=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x52558b,_0x4379b6){const _0x333c6d=_0x57b2d2;return(0x0,_0x55b95c[_0x333c6d(0x69d)])(_0x2ff816,Object[_0x333c6d(0x82d)]({},_0x52558b,{'id':_0x333c6d(0x42a),'ref':_0x4379b6,'icon':_0x50fa5c}));});_0x5b63d6[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2ff);let _0x5b692c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x156),'strokeWidth':1.6}}]},_0x2dfa68=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xdbb73a,_0x29b105){const _0x4ca05a=_0x57b2d2;return(0x0,_0x55b95c[_0x4ca05a(0x69d)])(_0x2ff816,Object[_0x4ca05a(0x82d)]({},_0xdbb73a,{'id':_0x4ca05a(0x7ac),'ref':_0x29b105,'icon':_0x5b692c}));});_0x2dfa68[_0x57b2d2(0x6a2)]=_0x57b2d2(0x6c3);let _0x140231={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x43b),'strokeWidth':1.6}}]},_0x8e55a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5e35f2,_0x5d4f69){const _0x514781=_0x57b2d2;return(0x0,_0x55b95c[_0x514781(0x69d)])(_0x2ff816,Object['assign']({},_0x5e35f2,{'id':'shape-flow-chart-offpage-connector-icon','ref':_0x5d4f69,'icon':_0x140231}));});_0x8e55a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x670);let _0xf8ed8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x270),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M15\x202H7C4.2\x202\x202\x205.6\x202\x2010C2\x2014.4\x204.2\x2018\x207\x2018H15','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x2c45b7=(0x0,_0x55b95c['forwardRef'])(function(_0x4d4f8c,_0x32409e){const _0x1f9352=_0x57b2d2;return(0x0,_0x55b95c[_0x1f9352(0x69d)])(_0x2ff816,Object[_0x1f9352(0x82d)]({},_0x4d4f8c,{'id':'shape-flow-chart-online-storage-icon','ref':_0x32409e,'icon':_0xf8ed8}));});_0x2c45b7['displayName']=_0x57b2d2(0x7f9);let _0xc6f996={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x54c),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x26c1dd=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x372935,_0x4c4d29){const _0x4fb989=_0x57b2d2;return(0x0,_0x55b95c[_0x4fb989(0x69d)])(_0x2ff816,Object['assign']({},_0x372935,{'id':_0x4fb989(0x1b1),'ref':_0x4c4d29,'icon':_0xc6f996}));});_0x26c1dd[_0x57b2d2(0x6a2)]=_0x57b2d2(0x26d);let _0x2b4f75={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1f5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x783),'strokeWidth':1.6}}]},_0xe62392=(0x0,_0x55b95c['forwardRef'])(function(_0x474b74,_0x487827){const _0x58b98a=_0x57b2d2;return(0x0,_0x55b95c[_0x58b98a(0x69d)])(_0x2ff816,Object[_0x58b98a(0x82d)]({},_0x474b74,{'id':_0x58b98a(0x717),'ref':_0x487827,'icon':_0x2b4f75}));});_0xe62392['displayName']=_0x57b2d2(0x682);let _0x2f4f32={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x77c),'strokeWidth':1.6}}]},_0x4c6c60=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x93fd52,_0x207493){const _0x2b0b3c=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x2b0b3c(0x82d)]({},_0x93fd52,{'id':'shape-flow-chart-preparation-icon','ref':_0x207493,'icon':_0x2f4f32}));});_0x4c6c60['displayName']=_0x57b2d2(0x31b);let _0x27fd0a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x477),'strokeWidth':1.6}}]},_0x22f9b9=(0x0,_0x55b95c['forwardRef'])(function(_0x580034,_0x424e00){const _0x80103e=_0x57b2d2;return(0x0,_0x55b95c[_0x80103e(0x69d)])(_0x2ff816,Object['assign']({},_0x580034,{'id':_0x80103e(0x392),'ref':_0x424e00,'icon':_0x27fd0a}));});_0x22f9b9[_0x57b2d2(0x6a2)]='ShapeFlowChartProcessIcon';let _0x401d0d={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x4da),'strokeWidth':1.6}}]},_0x581baf=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x33a3dc,_0x35aa5a){const _0x1e7969=_0x57b2d2;return(0x0,_0x55b95c[_0x1e7969(0x69d)])(_0x2ff816,Object[_0x1e7969(0x82d)]({},_0x33a3dc,{'id':'shape-flow-chart-punched-card-icon','ref':_0x35aa5a,'icon':_0x401d0d}));});_0x581baf[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3b9);let _0x54da23={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x7a2),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x10425b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x11ea4e,_0x4d2f06){const _0x3628fc=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x3628fc(0x82d)]({},_0x11ea4e,{'id':'shape-flow-chart-punched-tape-icon','ref':_0x4d2f06,'icon':_0x54da23}));});_0x10425b[_0x57b2d2(0x6a2)]='ShapeFlowChartPunchedTapeIcon';let _0x2370f3={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x7c1),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x541),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x2def74=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x432ec0,_0x2632ea){const _0x119687=_0x57b2d2;return(0x0,_0x55b95c[_0x119687(0x69d)])(_0x2ff816,Object['assign']({},_0x432ec0,{'id':_0x119687(0x61c),'ref':_0x2632ea,'icon':_0x2370f3}));});_0x2def74[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4e2);let _0xe76492={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'circle','attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':'currentColor','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x334),'strokeLinecap':'round','strokeWidth':1.6}}]},_0x14b204=(0x0,_0x55b95c['forwardRef'])(function(_0x48a4f8,_0x5ec3c5){const _0x821633=_0x57b2d2;return(0x0,_0x55b95c[_0x821633(0x69d)])(_0x2ff816,Object[_0x821633(0x82d)]({},_0x48a4f8,{'id':_0x821633(0x5c6),'ref':_0x5ec3c5,'icon':_0xe76492}));});_0x14b204[_0x57b2d2(0x6a2)]=_0x57b2d2(0x526);let _0x21c2eb={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x617),'attrs':{'width':18.4,'height':12.4,'x':0.8,'y':3.8,'stroke':_0x57b2d2(0x268),'rx':6.2,'strokeWidth':1.6}}]},_0x2892c7=(0x0,_0x55b95c['forwardRef'])(function(_0x7d51be,_0x6dd019){const _0x4b89a0=_0x57b2d2;return(0x0,_0x55b95c[_0x4b89a0(0x69d)])(_0x2ff816,Object[_0x4b89a0(0x82d)]({},_0x7d51be,{'id':_0x4b89a0(0x358),'ref':_0x6dd019,'icon':_0x21c2eb}));});_0x2892c7['displayName']=_0x57b2d2(0x21b);let _0x1ce6a1={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x59d),'attrs':{},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':'shape-folder-corner-icon_shape-folder-corner-icon-clip-0'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x466)}}]},{'tag':_0x57b2d2(0x215),'attrs':{'id':'shape-folder-corner-icon_shape-folder-corner-icon-clip-1'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':'M12\x2014C12\x2013.4477\x2012.4477\x2013\x2013\x2013H18V11H13C11.3431\x2011\x2010\x2012.3431\x2010\x2014V19H12V14Z'}}]}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x466),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x60a)}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x63c),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x68c)}}],'defIds':[_0x57b2d2(0x1d8),'shape-folder-corner-icon_shape-folder-corner-icon-clip-1']},_0x451f69=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x253e51,_0x278796){const _0x16167b=_0x57b2d2;return(0x0,_0x55b95c[_0x16167b(0x69d)])(_0x2ff816,Object[_0x16167b(0x82d)]({},_0x253e51,{'id':_0x16167b(0x482),'ref':_0x278796,'icon':_0x1ce6a1}));});_0x451f69[_0x57b2d2(0x6a2)]='ShapeFolderCornerIcon';let _0x16f112={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1d5),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M5.8\x205.8H14.2V14.2H5.8z','strokeWidth':1.6}}]},_0x51b623=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x7e416a,_0x2677a6){const _0x53afb2=_0x57b2d2;return(0x0,_0x55b95c[_0x53afb2(0x69d)])(_0x2ff816,Object[_0x53afb2(0x82d)]({},_0x7e416a,{'id':_0x53afb2(0x3e8),'ref':_0x2677a6,'icon':_0x16f112}));});_0x51b623['displayName']=_0x57b2d2(0x7da);let _0x10bb8f={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x71d),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x3b4),'attrs':{'cx':0xa,'cy':5.5,'stroke':_0x57b2d2(0x268),'rx':5.2,'ry':1.7,'strokeWidth':1.6}}]},_0x3a5d41=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x51f20e,_0x50138){const _0x5b82dd=_0x57b2d2;return(0x0,_0x55b95c[_0x5b82dd(0x69d)])(_0x2ff816,Object[_0x5b82dd(0x82d)]({},_0x51f20e,{'id':_0x5b82dd(0x59a),'ref':_0x50138,'icon':_0x10bb8f}));});_0x3a5d41[_0x57b2d2(0x6a2)]=_0x57b2d2(0x831);let _0x338357={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6f8)}}]},_0x316c69=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x53c0ca,_0x47c347){const _0x2ced05=_0x57b2d2;return(0x0,_0x55b95c[_0x2ced05(0x69d)])(_0x2ff816,Object[_0x2ced05(0x82d)]({},_0x53c0ca,{'id':_0x2ced05(0x290),'ref':_0x47c347,'icon':_0x338357}));});_0x316c69[_0x57b2d2(0x6a2)]=_0x57b2d2(0x72d);let _0x286634={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x7ff)}}]},_0xb7e285=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x557d1d,_0xb51923){const _0x453002=_0x57b2d2;return(0x0,_0x55b95c[_0x453002(0x69d)])(_0x2ff816,Object[_0x453002(0x82d)]({},_0x557d1d,{'id':'shape-gear9-icon','ref':_0xb51923,'icon':_0x286634}));});_0xb7e285[_0x57b2d2(0x6a2)]='ShapeGear9Icon';let _0x1ca2c4={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x745),'strokeLinejoin':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x4bc),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x1ca340=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x6e5354,_0x32623b){const _0xb58f34=_0x57b2d2;return(0x0,_0x55b95c[_0xb58f34(0x69d)])(_0x2ff816,Object['assign']({},_0x6e5354,{'id':_0xb58f34(0x738),'ref':_0x32623b,'icon':_0x1ca2c4}));});_0x1ca340['displayName']=_0x57b2d2(0x4e0);let _0x38f03e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x5aa),'fillRule':_0x57b2d2(0x2c1)}}]},_0x472e95=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x26c3a6,_0xefee94){const _0x39d93d=_0x57b2d2;return(0x0,_0x55b95c[_0x39d93d(0x69d)])(_0x2ff816,Object[_0x39d93d(0x82d)]({},_0x26c3a6,{'id':_0x39d93d(0x303),'ref':_0xefee94,'icon':_0x38f03e}));});_0x472e95[_0x57b2d2(0x6a2)]='ShapeHeartIcon';let _0x4f8af3={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x30d)},'children':[{'tag':'path','attrs':{'d':'M6.2721\x201L13.7279\x201L19\x206.2721L19\x2013.7279L13.7279\x2019L6.2721\x2019L1\x2013.7279L1\x206.2721Z'}}]},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x40c),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x402)}},{'tag':'path','attrs':{'fill':'currentColor','d':'M7.25625\x206.594C7.25625\x206.26594\x207.5222\x206\x207.85025\x206H12.1322C12.6204\x206\x2013.0163\x206.39582\x2013.0163\x206.8841C13.0163\x206.99764\x2012.9944\x207.11011\x2012.9518\x207.21538L10.1416\x2014.1688C10.0441\x2014.4101\x209.80992\x2014.568\x209.54973\x2014.568C9.09318\x2014.568\x208.78423\x2014.1027\x208.96143\x2013.6819L11.6963\x207.188H7.85025C7.5222\x207.188\x207.25625\x206.92206\x207.25625\x206.594Z'}}]},_0x54232a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x163d96,_0x4e5929){const _0x1ee8db=_0x57b2d2;return(0x0,_0x55b95c[_0x1ee8db(0x69d)])(_0x2ff816,Object['assign']({},_0x163d96,{'id':_0x1ee8db(0x7bb),'ref':_0x4e5929,'icon':_0x4f8af3}));});_0x54232a['displayName']='ShapeHeptagonIcon';let _0x2fd203={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x52b),'strokeWidth':1.6}}]},_0x4b215d=(0x0,_0x55b95c['forwardRef'])(function(_0x10ddc7,_0x3df5b5){const _0x36e44f=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x10ddc7,{'id':_0x36e44f(0x221),'ref':_0x3df5b5,'icon':_0x2fd203}));});_0x4b215d['displayName']=_0x57b2d2(0x1fc);let _0x3cc90d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5ae),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xc708da=(0x0,_0x55b95c['forwardRef'])(function(_0x1193b2,_0x52fc73){const _0x287049=_0x57b2d2;return(0x0,_0x55b95c[_0x287049(0x69d)])(_0x2ff816,Object[_0x287049(0x82d)]({},_0x1193b2,{'id':_0x287049(0x458),'ref':_0x52fc73,'icon':_0x3cc90d}));});_0xc708da[_0x57b2d2(0x6a2)]=_0x57b2d2(0x522);let _0x20f6c1={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':'M1.2\x2015.7942L1.2789\x2015.7998L11.7697\x2015.7998L12.2\x2015.8752L12.2\x2018.3153L12.2846\x2018.4518L12.4934\x2018.585L12.742\x2018.7269L12.9957\x2018.8556L13.254\x2018.9711L13.5163\x2019.0734L13.7823\x2019.1626L14.0513\x2019.2386L14.323\x2019.3014L14.5967\x2019.351L14.8721\x2019.3875L15.1486\x2019.4108L15.4258\x2019.4209L15.703\x2019.4178L15.98\x2019.4016L16.256\x2019.3722L16.5307\x2019.3296L16.8035\x2019.2738L17.074\x2019.2049L17.3417\x2019.1228L17.606\x2019.0275L17.8665\x2018.919L18.1227\x2018.7974L18.3741\x2018.6626L18.6203\x2018.5146L18.785\x2018.4041L18.8\x2018.2285L18.8\x204.2735L18.7921\x204.1998L8.157\x204.1998L7.8\x204.0378L7.8\x202.2069L7.7345\x202.0679L7.5368\x201.9486L7.2861\x201.8131L7.0305\x201.6901L6.7705\x201.5799L6.5065\x201.4823L6.2391\x201.3974L5.9686\x201.3253L5.6956\x201.2659L5.4205\x201.2193L5.1438\x201.1855L4.8659\x201.1646L4.5873\x201.1566L4.3084\x201.1615L4.0298\x201.1793L3.7519\x201.2101L3.4752\x201.2539L3.2\x201.3107L2.927\x201.3805L2.6565\x201.4634L2.389\x201.5595L2.125\x201.6687L1.8627\x201.7921L1.6044\x201.9212L1.3458\x202.0505L1.2\x202.1271ZM7.2807\x2014.1998L6.4825\x2014.1258L7.2209\x2013.7466L7.345\x2013.679L7.4679\x2013.6082L7.5895\x2013.5341L7.7096\x2013.4567L7.7861\x2013.4048L7.8\x2013.3761L7.8\x205.9711L8.0097\x205.7998L16.964\x205.7998L17.2\x205.9424L17.2\x2014.1998ZM14.0162\x2017.0342L14.0995\x2017.0042L14.1832\x2016.9759L14.2673\x2016.9493L14.3518\x2016.9244L14.4367\x2016.9013L14.5218\x2016.8799L14.6072\x2016.8603L14.6929\x2016.8424L14.7788\x2016.8262L14.8649\x2016.8117L14.9513\x2016.7989L15.0377\x2016.7879L15.1243\x2016.7786L15.211\x2016.7709L15.2978\x2016.7651L15.3846\x2016.7609L15.4714\x2016.7584L15.5583\x2016.7576L15.6451\x2016.7586L15.7319\x2016.7613L15.8186\x2016.7656L15.9052\x2016.7717L15.9916\x2016.7794L16.0779\x2016.7889L16.164\x2016.8001L16.25\x2016.8129L16.3357\x2016.8275L16.4211\x2016.8437L16.5062\x2016.8617L16.5911\x2016.8813L16.6756\x2016.9026L16.7597\x2016.9256L16.8435\x2016.9503L16.9268\x2016.9767L17.04\x2017.015L17.2\x2017.1399L17.2\x2017.4405L17.0133\x2017.5407L16.9194\x2017.5754L16.836\x2017.6041L16.7523\x2017.6311L16.6681\x2017.6563L16.5835\x2017.6797L16.4986\x2017.7013L16.4133\x2017.7211L16.3278\x2017.7391L16.2419\x2017.7553L16.1558\x2017.7698L16.0695\x2017.7824L15.983\x2017.7933L15.8964\x2017.8023L15.8096\x2017.8096L15.7227\x2017.8151L15.6358\x2017.8188L15.5487\x2017.8207L15.4617\x2017.8208L15.3747\x2017.8191L15.2877\x2017.8156L15.2009\x2017.8103L15.1141\x2017.8033L15.0274\x2017.7944L14.9409\x2017.7838L14.8545\x2017.7714L14.7684\x2017.7572L14.6825\x2017.7412L14.5969\x2017.7234L14.5116\x2017.7038L14.4267\x2017.6824L14.342\x2017.6592L14.2578\x2017.6342L14.174\x2017.6075L14.0906\x2017.5789L14.0078\x2017.5486L13.7879\x2017.4629L13.8182\x2017.1101ZM2.819\x2012.1084L3.0218\x2012.0334L3.118\x2012.0043L3.2124\x2011.9867L3.2974\x2011.972L3.3824\x2011.9582L3.4676\x2011.9455L3.5529\x2011.9339L3.6383\x2011.9232L3.7238\x2011.9136L3.8094\x2011.905L3.895\x2011.8974L3.9807\x2011.8909L4.0665\x2011.8854L4.1523\x2011.8809L4.2381\x2011.8774L4.324\x2011.8749L4.4099\x2011.8735L4.4957\x2011.8731L4.5816\x2011.8737L4.6675\x2011.8753L4.7533\x2011.8779L4.8391\x2011.8816L4.9249\x2011.8862L5.0107\x2011.8919L5.0963\x2011.8986L5.1819\x2011.9063L5.2675\x2011.915L5.3529\x2011.9247L5.4383\x2011.9354L5.5235\x2011.9471L5.6087\x2011.9598L5.6937\x2011.9735L5.7786\x2011.9883L5.8634\x2012.004L5.948\x2012.0208L6.1704\x2012.0675L6.2133\x2012.3997L6.0381\x2012.5313L5.9298\x2012.5716L5.8462\x2012.6007L5.7622\x2012.628L5.6778\x2012.6535L5.593\x2012.6772L5.5078\x2012.699L5.4222\x2012.7191L5.3364\x2012.7374L5.2503\x2012.7538L5.1639\x2012.7685L5.0773\x2012.7813L4.9905\x2012.7924L4.9036\x2012.8016L4.8165\x2012.8091L4.7293\x2012.8147L4.642\x2012.8186L4.5547\x2012.8206L4.4674\x2012.8208L4.38\x2012.8192L4.2927\x2012.8159L4.2055\x2012.8107L4.1184\x2012.8037L4.0314\x2012.7949L3.9446\x2012.7843L3.8579\x2012.7719L3.7715\x2012.7577L3.6853\x2012.7417L3.5994\x2012.7239L3.5138\x2012.7043L3.4285\x2012.6829L3.3436\x2012.6596L3.259\x2012.6346L3.1749\x2012.6078L3.0912\x2012.5791L3.0081\x2012.5487L2.7875\x2012.4627ZM2.8\x203.9905L2.8\x203.31L2.8323\x203.1045L3.0217\x203.0322L3.1052\x203.0022L3.1891\x202.9739L3.2734\x202.9474L3.3581\x202.9227L3.4431\x202.8997L3.5284\x202.8784L3.614\x202.8588L3.6998\x202.841L3.7859\x202.8249L3.8722\x202.8105L3.9587\x202.7979L4.0453\x202.787L4.132\x202.7778L4.2189\x202.7703L4.3058\x202.7646L4.3928\x202.7606L4.4798\x202.7583L4.5668\x202.7577L4.6538\x202.7588L4.7407\x202.7616L4.8275\x202.7662L4.9142\x202.7724L5.0008\x202.7804L5.0873\x202.79L5.1735\x202.8014L5.2596\x202.8145L5.3454\x202.8292L5.4309\x202.8457L5.5162\x202.8639L5.6011\x202.8837L5.6858\x202.9053L5.77\x202.9286L5.8539\x202.9535L5.9373\x202.9801L6.0675\x203.0246L6.2\x203.1714L6.2\x203.9686L6.2\x204.1998L6.2\x2010.0971L6.1165\x2010.3624L5.8563\x2010.3028L5.7771\x2010.2858L5.6978\x2010.2698L5.6183\x2010.255L5.5386\x2010.2411L5.4588\x2010.2284L5.3789\x2010.2168L5.2988\x2010.2062L5.2186\x2010.1967L5.1384\x2010.1882L5.058\x2010.1809L4.9775\x2010.1746L4.897\x2010.1694L4.8164\x2010.1653L4.7357\x2010.1622L4.655\x2010.1603L4.5743\x2010.1594L4.4936\x2010.1596L4.4128\x2010.1609L4.3321\x2010.1633L4.2514\x2010.1667L4.1707\x2010.1713L4.0901\x2010.1769L4.0095\x2010.1836L3.9289\x2010.1915L3.8484\x2010.2004L3.7681\x2010.2104L3.6878\x2010.2215L3.6076\x2010.2337L3.5275\x2010.247L3.4475\x2010.2613L3.3677\x2010.2768L3.2881\x2010.2934L3.2085\x2010.3111L3.1292\x2010.3299L2.8\x2010.4125L2.8\x204.1784Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x379977=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3e855c,_0xba1938){const _0x564df9=_0x57b2d2;return(0x0,_0x55b95c[_0x564df9(0x69d)])(_0x2ff816,Object[_0x564df9(0x82d)]({},_0x3e855c,{'id':_0x564df9(0x45f),'ref':_0xba1938,'icon':_0x20f6c1}));});_0x379977[_0x57b2d2(0x6a2)]=_0x57b2d2(0x58b);let _0x18edf9={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x24a)}},{'tag':_0x57b2d2(0x53a),'attrs':{'cx':12.5,'cy':12.5,'r':5.85,'stroke':_0x57b2d2(0x268),'strokeWidth':1.3}}]},_0x5d3504=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3929aa,_0x8e227c){const _0x2a930d=_0x57b2d2;return(0x0,_0x55b95c[_0x2a930d(0x69d)])(_0x2ff816,Object['assign']({},_0x3929aa,{'id':'shape-icon','ref':_0x8e227c,'icon':_0x18edf9}));});_0x5d3504[_0x57b2d2(0x6a2)]=_0x57b2d2(0x746);let _0x35a1f5={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x433),'fillRule':_0x57b2d2(0x2c1)}}]},_0x13f083=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x47a58c,_0x390b80){const _0x3c0dfd=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x3c0dfd(0x82d)]({},_0x47a58c,{'id':'shape-irregular-seal1-icon','ref':_0x390b80,'icon':_0x35a1f5}));});_0x13f083[_0x57b2d2(0x6a2)]=_0x57b2d2(0x727);let _0x4a720d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x817),'fillRule':_0x57b2d2(0x2c1)}}]},_0x32dec8=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x26c904,_0x17ede8){const _0x221fb3=_0x57b2d2;return(0x0,_0x55b95c[_0x221fb3(0x69d)])(_0x2ff816,Object['assign']({},_0x26c904,{'id':'shape-irregular-seal2-icon','ref':_0x17ede8,'icon':_0x4a720d}));});_0x32dec8[_0x57b2d2(0x6a2)]=_0x57b2d2(0x293);let _0x26c31a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M12\x2016H18V4H12V8.6H5.1L2.7\x2010L5.1\x2011.4H12V16ZM6\x2013V14.3301L0\x2010L6\x205.6699V7H10.4V2.4H19.6V17.6H10.4V13H6Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x270dc6=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xcc99d4,_0xfb9871){const _0x23043d=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x23043d(0x82d)]({},_0xcc99d4,{'id':'shape-left-arrow-callout-icon','ref':_0xfb9871,'icon':_0x26c31a}));});_0x270dc6['displayName']='ShapeLeftArrowCalloutIcon';let _0x409cad={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x547),'fillRule':_0x57b2d2(0x2c1)}}]},_0x4767a8=(0x0,_0x55b95c['forwardRef'])(function(_0x10a812,_0xccbbd7){const _0x47e557=_0x57b2d2;return(0x0,_0x55b95c[_0x47e557(0x69d)])(_0x2ff816,Object[_0x47e557(0x82d)]({},_0x10a812,{'id':_0x47e557(0x3ab),'ref':_0xccbbd7,'icon':_0x409cad}));});_0x4767a8[_0x57b2d2(0x6a2)]=_0x57b2d2(0x210);let _0x3f6f1d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x80e),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x146077=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xf3dada,_0x5c7987){const _0x24115e=_0x57b2d2;return(0x0,_0x55b95c[_0x24115e(0x69d)])(_0x2ff816,Object[_0x24115e(0x82d)]({},_0xf3dada,{'id':_0x24115e(0x2a5),'ref':_0x5c7987,'icon':_0x3f6f1d}));});_0x146077[_0x57b2d2(0x6a2)]=_0x57b2d2(0x180);let _0x17010c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x774),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x5ebf9f=(0x0,_0x55b95c['forwardRef'])(function(_0x563f9f,_0x52db9d){const _0x3dd593=_0x57b2d2;return(0x0,_0x55b95c[_0x3dd593(0x69d)])(_0x2ff816,Object['assign']({},_0x563f9f,{'id':'shape-left-bracket-icon','ref':_0x52db9d,'icon':_0x17010c}));});_0x5ebf9f[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3f6);let _0x3db3e2={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x84f),'fillRule':_0x57b2d2(0x2c1)}}]},_0x574fd9=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x307d5e,_0x6bd22b){const _0x1ff6b1=_0x57b2d2;return(0x0,_0x55b95c[_0x1ff6b1(0x69d)])(_0x2ff816,Object[_0x1ff6b1(0x82d)]({},_0x307d5e,{'id':_0x1ff6b1(0x1e3),'ref':_0x6bd22b,'icon':_0x3db3e2}));});_0x574fd9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x251);let _0x3b78de={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6a5),'fillRule':_0x57b2d2(0x2c1)}}]},_0x23497e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4acd66,_0x2926d2){const _0x310a5a=_0x57b2d2;return(0x0,_0x55b95c[_0x310a5a(0x69d)])(_0x2ff816,Object[_0x310a5a(0x82d)]({},_0x4acd66,{'id':_0x310a5a(0x855),'ref':_0x2926d2,'icon':_0x3b78de}));});_0x23497e['displayName']=_0x57b2d2(0x87a);let _0x58e690={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x36f),'fillRule':_0x57b2d2(0x2c1)}}]},_0x3b93f0=(0x0,_0x55b95c['forwardRef'])(function(_0x190eeb,_0x4e7cd6){const _0x5425b9=_0x57b2d2;return(0x0,_0x55b95c[_0x5425b9(0x69d)])(_0x2ff816,Object[_0x5425b9(0x82d)]({},_0x190eeb,{'id':_0x5425b9(0x3c1),'ref':_0x4e7cd6,'icon':_0x58e690}));});_0x3b93f0[_0x57b2d2(0x6a2)]='ShapeLeftRightArrowIcon';let _0x307273={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x661),'fillRule':_0x57b2d2(0x2c1)}}]},_0x25466b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x25caa3,_0xdb66b){const _0x29b5fe=_0x57b2d2;return(0x0,_0x55b95c[_0x29b5fe(0x69d)])(_0x2ff816,Object[_0x29b5fe(0x82d)]({},_0x25caa3,{'id':'shape-left-right-circular-arrow-icon','ref':_0xdb66b,'icon':_0x307273}));});_0x25466b[_0x57b2d2(0x6a2)]='ShapeLeftRightCircularArrowIcon';let _0x4c6885={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x59d),'attrs':{},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':'shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-left'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x81d)}}]},{'tag':_0x57b2d2(0x215),'attrs':{'id':'shape-left-right-ribbon-icon_shape-left-right-ribbon-icon-clip-right'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x8a3)}}]}]},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x81d),'strokeWidth':3.2,'clipPath':_0x57b2d2(0x46e)}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M20\x2011L11.75\x2019.6602V15.9932C9.10474\x2015.8629\x207\x2013.6776\x207\x2011V6.36328C7.00035\x206.20808\x207.17349\x206.11599\x207.30273\x206.20215L8.33594\x206.89062C9.35155\x207.56769\x2010.5335\x207.94807\x2011.75\x207.99414V2.33984L20\x2011ZM9\x2011C9\x2012.6056\x2010.2627\x2013.917\x2011.8486\x2013.9951L13.75\x2014.0889V14.6602L17.2363\x2011L13.75\x207.33887V10.0713L11.6738\x209.99316C10.7566\x209.95838\x209.85452\x209.77558\x209\x209.45801V11Z','strokeWidth':3.2,'clipPath':_0x57b2d2(0x2d6)}}],'defIds':[_0x57b2d2(0x5ec),_0x57b2d2(0x6d0)]},_0x4d85f6=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1e2f07,_0x18f61e){const _0x119a18=_0x57b2d2;return(0x0,_0x55b95c[_0x119a18(0x69d)])(_0x2ff816,Object[_0x119a18(0x82d)]({},_0x1e2f07,{'id':_0x119a18(0x273),'ref':_0x18f61e,'icon':_0x4c6885}));});_0x4d85f6[_0x57b2d2(0x6a2)]=_0x57b2d2(0x78f);let _0x4df7c0={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M15.083\x207L13\x207L13\x2010.9688L14\x2010.9688L14\x209L20\x2014L14\x2019L14\x2016.9688L6\x2016.9688L6\x2019L0\x2014L6\x209L6\x2010.9688L7\x2010.9688L7\x207L5.083\x207L10.083\x201ZM8.6\x2012.5688L4.2166\x2012.5688L2.498\x2014L4.1414\x2015.3688L15.8588\x2015.3688L17.5007\x2014L15.7835\x2012.5688L11.4\x2012.5688L11.4\x205.0788L10.083\x203.4982L8.6\x205.278Z','fillRule':'evenodd'}}]},_0x298ce7=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x15a358,_0x52df45){const _0x197ccd=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x197ccd(0x82d)]({},_0x15a358,{'id':'shape-left-right-up-arrow-icon','ref':_0x52df45,'icon':_0x4df7c0}));});_0x298ce7[_0x57b2d2(0x6a2)]='ShapeLeftRightUpArrowIcon';let _0x1df70b={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x237),'fillRule':_0x57b2d2(0x2c1)}}]},_0x5edb09=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x32baaa,_0x145dcd){const _0x5e9a29=_0x57b2d2;return(0x0,_0x55b95c[_0x5e9a29(0x69d)])(_0x2ff816,Object[_0x5e9a29(0x82d)]({},_0x32baaa,{'id':'shape-left-up-arrow-icon','ref':_0x145dcd,'icon':_0x1df70b}));});_0x5edb09[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3a2);let _0x38f85a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x7c3),'fillRule':_0x57b2d2(0x2c1)}}]},_0x239026=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2040b6,_0x34d79f){const _0x41fb38=_0x57b2d2;return(0x0,_0x55b95c[_0x41fb38(0x69d)])(_0x2ff816,Object['assign']({},_0x2040b6,{'id':_0x41fb38(0x7d8),'ref':_0x34d79f,'icon':_0x38f85a}));});_0x239026[_0x57b2d2(0x6a2)]=_0x57b2d2(0x50f);let _0x1dd706={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x51c),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0xa66aa5=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x8b1435,_0x150ea5){const _0x2becb3=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x8b1435,{'id':_0x2becb3(0x53e),'ref':_0x150ea5,'icon':_0x1dd706}));});_0xa66aa5[_0x57b2d2(0x6a2)]='ShapeLineIcon';let _0x34e9ce={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M16.5\x203.5L3.5\x2016.5','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x5013bd=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3244f8,_0x2b7194){const _0x5d45b9=_0x57b2d2;return(0x0,_0x55b95c[_0x5d45b9(0x69d)])(_0x2ff816,Object[_0x5d45b9(0x82d)]({},_0x3244f8,{'id':_0x5d45b9(0x1ef),'ref':_0x2b7194,'icon':_0x34e9ce}));});_0x5013bd['displayName']=_0x57b2d2(0x820);let _0x3953a8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0x3,'r':2.2,'stroke':'currentColor','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M2\x2010H18','strokeLinecap':_0x57b2d2(0x595),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0x11,'r':2.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}}]},_0x157912=(0x0,_0x55b95c['forwardRef'])(function(_0xcb26b5,_0x4b6c99){const _0x2ec8bf=_0x57b2d2;return(0x0,_0x55b95c[_0x2ec8bf(0x69d)])(_0x2ff816,Object[_0x2ec8bf(0x82d)]({},_0xcb26b5,{'id':_0x2ec8bf(0x49f),'ref':_0x4b6c99,'icon':_0x3953a8}));});_0x157912[_0x57b2d2(0x6a2)]=_0x57b2d2(0x32b);let _0x471cef={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x574),'strokeLinecap':_0x57b2d2(0x595),'strokeWidth':1.6}}]},_0x4859b8=(0x0,_0x55b95c['forwardRef'])(function(_0x2497ea,_0x18b74e){const _0xf0b21e=_0x57b2d2;return(0x0,_0x55b95c[_0xf0b21e(0x69d)])(_0x2ff816,Object[_0xf0b21e(0x82d)]({},_0x2497ea,{'id':_0xf0b21e(0x895),'ref':_0x18b74e,'icon':_0x471cef}));});_0x4859b8[_0x57b2d2(0x6a2)]=_0x57b2d2(0x32d);let _0x1b37d9={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x2d1),'strokeLinecap':_0x57b2d2(0x595),'strokeWidth':1.6}}]},_0x3fc6f1=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4ad811,_0x22c275){const _0x55584d=_0x57b2d2;return(0x0,_0x55b95c[_0x55584d(0x69d)])(_0x2ff816,Object[_0x55584d(0x82d)]({},_0x4ad811,{'id':'shape-math-minus-icon','ref':_0x22c275,'icon':_0x1b37d9}));});_0x3fc6f1[_0x57b2d2(0x6a2)]=_0x57b2d2(0x63a);let _0x33cb38={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5f6),'strokeLinecap':_0x57b2d2(0x595),'strokeWidth':1.6}}]},_0x2631fb=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x37f5bf,_0x1c8ffc){const _0xeb4675=_0x57b2d2;return(0x0,_0x55b95c[_0xeb4675(0x69d)])(_0x2ff816,Object[_0xeb4675(0x82d)]({},_0x37f5bf,{'id':_0xeb4675(0x23d),'ref':_0x1c8ffc,'icon':_0x33cb38}));});_0x2631fb[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2ca);let _0x5bccac={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x47d),'strokeLinecap':'square','strokeWidth':1.6}}]},_0x4e9f63=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5acf10,_0x2c46e6){const _0x2eb5ff=_0x57b2d2;return(0x0,_0x55b95c[_0x2eb5ff(0x69d)])(_0x2ff816,Object[_0x2eb5ff(0x82d)]({},_0x5acf10,{'id':_0x2eb5ff(0x396),'ref':_0x2c46e6,'icon':_0x5bccac}));});_0x4e9f63['displayName']=_0x57b2d2(0x170);let _0x178acb={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x223)}}]},_0xebc4a2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x22d570,_0x2fddce){return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x22d570,{'id':'shape-math-plus-icon','ref':_0x2fddce,'icon':_0x178acb}));});_0xebc4a2[_0x57b2d2(0x6a2)]=_0x57b2d2(0x69c);let _0x583076={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x4d5),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x12eda4=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2428cf,_0x24497e){const _0x84616c=_0x57b2d2;return(0x0,_0x55b95c[_0x84616c(0x69d)])(_0x2ff816,Object['assign']({},_0x2428cf,{'id':_0x84616c(0x752),'ref':_0x24497e,'icon':_0x583076}));});_0x12eda4['displayName']=_0x57b2d2(0x4de);let _0x41aea8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x26b),'fillRule':_0x57b2d2(0x2c1)}}]},_0x3618c8=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4546e8,_0x2e58bb){const _0x3a4394=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x3a4394(0x82d)]({},_0x4546e8,{'id':_0x3a4394(0x24d),'ref':_0x2e58bb,'icon':_0x41aea8}));});_0x3618c8['displayName']=_0x57b2d2(0x1a8);let _0x114807={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x457),'strokeWidth':1.6}}]},_0x187d78=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x582df0,_0xd91043){const _0x1c1970=_0x57b2d2;return(0x0,_0x55b95c[_0x1c1970(0x69d)])(_0x2ff816,Object[_0x1c1970(0x82d)]({},_0x582df0,{'id':_0x1c1970(0x45e),'ref':_0xd91043,'icon':_0x114807}));});_0x187d78['displayName']=_0x57b2d2(0x4e7);let _0x73a9f8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M18.699\x2010.001L10.2\x2017.5556L10.2\x2013.8L1.4\x2013.8L4.25\x2010L1.4\x206.2L10.2\x206.2L10.2\x202.4463ZM16.2906\x2010.001L11.8\x2013.9927L11.8\x2012.2L4.6\x2012.2L6.25\x2010L4.6\x207.8L11.8\x207.8L11.8\x206.0093Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x59a7b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4b860f,_0x59af51){const _0x258c7a=_0x57b2d2;return(0x0,_0x55b95c[_0x258c7a(0x69d)])(_0x2ff816,Object[_0x258c7a(0x82d)]({},_0x4b860f,{'id':_0x258c7a(0x25e),'ref':_0x59af51,'icon':_0x73a9f8}));});_0x59a7b[_0x57b2d2(0x6a2)]=_0x57b2d2(0x44c);let _0x4f0c8a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x447)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x40c)}}]},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M6.2721\x201L13.7279\x201L19\x206.2721L19\x2013.7279L13.7279\x2019L6.2721\x2019L1\x2013.7279L1\x206.2721Z','strokeWidth':3.2,'clipPath':_0x57b2d2(0x728)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M10.192\x205.096C11.104\x205.096\x2011.824\x205.336\x2012.364\x205.816C12.844\x206.248\x2013.084\x206.788\x2013.084\x207.424C13.084\x207.868\x2012.988\x208.24\x2012.796\x208.54C12.58\x208.864\x2012.256\x209.104\x2011.824\x209.272V9.308C12.232\x209.404\x2012.592\x209.644\x2012.88\x2010.028C13.216\x2010.436\x2013.384\x2010.904\x2013.384\x2011.444C13.384\x2012.2\x2013.108\x2012.812\x2012.556\x2013.292C11.992\x2013.76\x2011.2\x2014\x2010.192\x2014C9.172\x2014\x208.38\x2013.76\x207.828\x2013.292C7.276\x2012.812\x207\x2012.2\x207\x2011.444C7\x2010.904\x207.168\x2010.436\x207.504\x2010.028C7.792\x209.644\x208.14\x209.404\x208.56\x209.308V9.272C8.128\x209.104\x207.804\x208.864\x207.588\x208.54C7.396\x208.24\x207.3\x207.868\x207.3\x207.424C7.3\x206.788\x207.54\x206.248\x208.02\x205.816C8.548\x205.336\x209.28\x205.096\x2010.192\x205.096ZM10.192\x206.14C9.664\x206.14\x209.244\x206.272\x208.932\x206.56C8.656\x206.8\x208.524\x207.112\x208.524\x207.472C8.524\x207.88\x208.632\x208.204\x208.86\x208.444C9.136\x208.732\x209.58\x208.876\x2010.192\x208.876C10.792\x208.876\x2011.236\x208.732\x2011.524\x208.444C11.74\x208.204\x2011.86\x207.88\x2011.86\x207.472C11.86\x207.112\x2011.716\x206.8\x2011.452\x206.56C11.14\x206.272\x2010.72\x206.14\x2010.192\x206.14ZM10.192\x209.848C9.568\x209.848\x209.088\x209.992\x208.776\x2010.304C8.452\x2010.592\x208.296\x2010.964\x208.296\x2011.444C8.296\x2011.888\x208.452\x2012.248\x208.788\x2012.524C9.112\x2012.8\x209.58\x2012.944\x2010.192\x2012.944C10.792\x2012.944\x2011.272\x2012.8\x2011.62\x2012.524C11.932\x2012.248\x2012.088\x2011.888\x2012.088\x2011.444C12.088\x2010.964\x2011.932\x2010.592\x2011.62\x2010.316C11.284\x2010.004\x2010.816\x209.848\x2010.192\x209.848Z'}}]},_0x34756a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x485851,_0x1ed310){const _0x51f9b9=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x51f9b9(0x82d)]({},_0x485851,{'id':_0x51f9b9(0x75f),'ref':_0x1ed310,'icon':_0x4f0c8a}));});_0x34756a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x784);let _0x2a289e={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1b2),'strokeWidth':1.6}}]},_0x2799e7=(0x0,_0x55b95c['forwardRef'])(function(_0x3c0810,_0x40377d){const _0x4deb0a=_0x57b2d2;return(0x0,_0x55b95c[_0x4deb0a(0x69d)])(_0x2ff816,Object[_0x4deb0a(0x82d)]({},_0x3c0810,{'id':_0x4deb0a(0x44a),'ref':_0x40377d,'icon':_0x2a289e}));});_0x2799e7[_0x57b2d2(0x6a2)]='ShapeParallelogramIcon';let _0x49abb1={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M10\x203.23584L17.3838\x208.60059L14.5635\x2017.2812H5.43652L2.61572\x208.60059L10\x203.23584Z','strokeWidth':1.6}}]},_0x48962e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xcad880,_0x382cae){const _0x4b1838=_0x57b2d2;return(0x0,_0x55b95c[_0x4b1838(0x69d)])(_0x2ff816,Object['assign']({},_0xcad880,{'id':_0x4b1838(0x13e),'ref':_0x382cae,'icon':_0x49abb1}));});_0x48962e[_0x57b2d2(0x6a2)]='ShapePentagonIcon';let _0xf46d1c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x756),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x946d64=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4bb50a,_0x3849dd){const _0x1aca6d=_0x57b2d2;return(0x0,_0x55b95c[_0x1aca6d(0x69d)])(_0x2ff816,Object['assign']({},_0x4bb50a,{'id':'shape-pie-icon','ref':_0x3849dd,'icon':_0xf46d1c}));});_0x946d64[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2cf);let _0x4a01dc={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x496),'fillRule':_0x57b2d2(0x2c1)}}]},_0x26c8a2=(0x0,_0x55b95c['forwardRef'])(function(_0x343e05,_0x12e4cd){const _0x27e81c=_0x57b2d2;return(0x0,_0x55b95c[_0x27e81c(0x69d)])(_0x2ff816,Object[_0x27e81c(0x82d)]({},_0x343e05,{'id':'shape-pie-wedge-icon','ref':_0x12e4cd,'icon':_0x4a01dc}));});_0x26c8a2[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3e0);let _0xfed7c5={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x1f7),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x24498e=(0x0,_0x55b95c['forwardRef'])(function(_0x21209d,_0x458baf){const _0x5f5573=_0x57b2d2;return(0x0,_0x55b95c[_0x5f5573(0x69d)])(_0x2ff816,Object[_0x5f5573(0x82d)]({},_0x21209d,{'id':_0x5f5573(0x65e),'ref':_0x458baf,'icon':_0xfed7c5}));});_0x24498e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x59c);let _0x16f8c9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x173),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x75e),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x77d),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M19\x2013C15.6863\x2013\x2013\x2015.6863\x2013\x2019H19V13ZM17.4\x2017.4H14.9012A4.4\x204.4\x200\x200\x201\x2017.4\x2014.9012V17.4Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x25fddf=(0x0,_0x55b95c['forwardRef'])(function(_0x9c1277,_0x2a978d){const _0x3a60bf=_0x57b2d2;return(0x0,_0x55b95c[_0x3a60bf(0x69d)])(_0x2ff816,Object[_0x3a60bf(0x82d)]({},_0x9c1277,{'id':_0x3a60bf(0x389),'ref':_0x2a978d,'icon':_0x16f8c9}));});_0x25fddf[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2b1);let _0xc4606={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x223)}}]},_0x36cf1d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x464b0a,_0x37a0d8){const _0x394f80=_0x57b2d2;return(0x0,_0x55b95c[_0x394f80(0x69d)])(_0x2ff816,Object[_0x394f80(0x82d)]({},_0x464b0a,{'id':_0x394f80(0x65a),'ref':_0x37a0d8,'icon':_0xc4606}));});_0x36cf1d['displayName']=_0x57b2d2(0x80c);let _0x4e3c95={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3ad),'fillRule':_0x57b2d2(0x2c1)}}]},_0x2a0ae1=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x290c9a,_0x31e677){const _0xa39730=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x290c9a,{'id':_0xa39730(0x875),'ref':_0x31e677,'icon':_0x4e3c95}));});_0x2a0ae1[_0x57b2d2(0x6a2)]='ShapeQuadArrowCalloutIcon';let _0x3da530={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x426),'fillRule':_0x57b2d2(0x2c1)}}]},_0x2ca17a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4117c9,_0x5ca1dd){const _0x1b5ce2=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x1b5ce2(0x82d)]({},_0x4117c9,{'id':'shape-quad-arrow-icon','ref':_0x5ca1dd,'icon':_0x3da530}));});_0x2ca17a['displayName']=_0x57b2d2(0x5cd);let _0x16d16b={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':'M1.8\x203.8H18.2V16.2H1.8z','strokeWidth':1.6}}]},_0x561d92=(0x0,_0x55b95c['forwardRef'])(function(_0x54f5d1,_0x35f4b5){const _0x10efa9=_0x57b2d2;return(0x0,_0x55b95c[_0x10efa9(0x69d)])(_0x2ff816,Object[_0x10efa9(0x82d)]({},_0x54f5d1,{'id':_0x10efa9(0x67b),'ref':_0x35f4b5,'icon':_0x16d16b}));});_0x561d92[_0x57b2d2(0x6a2)]=_0x57b2d2(0x36e);let _0x2bcfb5={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x688),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x22f),'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x6bd),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x22f),'stroke':'currentColor','d':_0x57b2d2(0x3b3),'strokeWidth':1.2}},{'tag':'path','attrs':{'fill':'white','stroke':_0x57b2d2(0x268),'d':'M15.5\x2013.5H18.5V16.5H15.5z','strokeWidth':1.2}},{'tag':'path','attrs':{'fill':'white','stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5d2),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x47c)}}]},_0x3cb705=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x267d87,_0x533885){const _0x46e9ee=_0x57b2d2;return(0x0,_0x55b95c[_0x46e9ee(0x69d)])(_0x2ff816,Object[_0x46e9ee(0x82d)]({},_0x267d87,{'id':'shape-rect-textbox-horizontal-icon','ref':_0x533885,'icon':_0x2bcfb5}));});_0x3cb705['displayName']='ShapeRectTextboxHorizontalIcon';let _0x476ef9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x688),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x22f),'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x6bd),'strokeWidth':1.2}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x22f),'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x3b3),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x22f),'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x464),'strokeWidth':1.2}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x22f),'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5d2),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x179)}}]},_0x2de94a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x560523,_0x4fdb0c){const _0x2d3cc2=_0x57b2d2;return(0x0,_0x55b95c[_0x2d3cc2(0x69d)])(_0x2ff816,Object[_0x2d3cc2(0x82d)]({},_0x560523,{'id':_0x2d3cc2(0x775),'ref':_0x4fdb0c,'icon':_0x476ef9}));});_0x2de94a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4f7);let _0x17b313={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'g','attrs':{'fill':_0x57b2d2(0x268),'clipPath':'url(#shape-ribbon-icon_clip0_2_47)'},'children':[{'tag':'path','attrs':{'d':_0x57b2d2(0x665)}},{'tag':'path','attrs':{'d':_0x57b2d2(0x5fd)}},{'tag':_0x57b2d2(0x13a),'attrs':{'d':'M11\x208.5V6.5V4H15.5V8.5H13H11ZM14\x205.5H12.5V7H14V5.5Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x531)}},{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x37f)}}]},{'tag':_0x57b2d2(0x59d),'attrs':{},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x561)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x22f),'d':_0x57b2d2(0x45c)}}]}]}],'defIds':[_0x57b2d2(0x561)]},_0x76da0b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5138ca,_0x11acfe){const _0x5c42d5=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x5c42d5(0x82d)]({},_0x5138ca,{'id':_0x5c42d5(0x898),'ref':_0x11acfe,'icon':_0x17b313}));});_0x76da0b['displayName']=_0x57b2d2(0x25b);let _0x20ffc8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'g','attrs':{'fill':'currentColor','clipPath':_0x57b2d2(0x4fb)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x510)}},{'tag':'path','attrs':{'d':_0x57b2d2(0x78a)}},{'tag':'path','attrs':{'d':_0x57b2d2(0x7af)}},{'tag':'path','attrs':{'d':_0x57b2d2(0x35e)}},{'tag':_0x57b2d2(0x13a),'attrs':{'d':_0x57b2d2(0x2ec)}}]},{'tag':_0x57b2d2(0x59d),'attrs':{},'children':[{'tag':_0x57b2d2(0x215),'attrs':{'id':_0x57b2d2(0x316)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x22f),'d':'M0\x200H20V20H0z','transform':_0x57b2d2(0x20d)}}]}]}],'defIds':['shape-ribbon2-icon_clip0_2_47']},_0x23390=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x32d899,_0x100d96){const _0x1d7038=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x1d7038(0x82d)]({},_0x32d899,{'id':_0x1d7038(0x83e),'ref':_0x100d96,'icon':_0x20ffc8}));});_0x23390[_0x57b2d2(0x6a2)]=_0x57b2d2(0x504);let _0x4e7708={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M8\x204H2V16H8V11.4H14.9L17.3\x2010L14.9\x208.6H8V4ZM14\x207V5.6699L20\x2010L14\x2014.3301V13H9.6V17.6H0.4V2.4H9.6V7H14Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x473328=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x343217,_0x1dfe29){const _0x15805a=_0x57b2d2;return(0x0,_0x55b95c[_0x15805a(0x69d)])(_0x2ff816,Object['assign']({},_0x343217,{'id':_0x15805a(0x42d),'ref':_0x1dfe29,'icon':_0x4e7708}));});_0x473328['displayName']=_0x57b2d2(0x425);let _0x2f9ec3={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x57f),'fillRule':'evenodd'}}]},_0x5cc7db=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4576a2,_0x4c6a4a){const _0x2d6f47=_0x57b2d2;return(0x0,_0x55b95c[_0x2d6f47(0x69d)])(_0x2ff816,Object[_0x2d6f47(0x82d)]({},_0x4576a2,{'id':_0x2d6f47(0x778),'ref':_0x4c6a4a,'icon':_0x2f9ec3}));});_0x5cc7db[_0x57b2d2(0x6a2)]=_0x57b2d2(0x605);let _0x4edaa7={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M8\x202C9.8\x202\x2010.6\x202.75\x2010.6\x204.6V7.3C10.6\x208.55\x2011.15\x209.35\x2012.4\x209.9C11.15\x2010.45\x2010.6\x2011.25\x2010.6\x2012.5V15.4C10.6\x2017.25\x209.8\x2018\x208\x2018','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x313212=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x45e463,_0x409266){const _0x3b9309=_0x57b2d2;return(0x0,_0x55b95c[_0x3b9309(0x69d)])(_0x2ff816,Object[_0x3b9309(0x82d)]({},_0x45e463,{'id':_0x3b9309(0x3d8),'ref':_0x409266,'icon':_0x4edaa7}));});_0x313212['displayName']=_0x57b2d2(0x878);let _0x16ad63={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x25f),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x591e62=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1119a6,_0x234448){const _0x3834a2=_0x57b2d2;return(0x0,_0x55b95c[_0x3834a2(0x69d)])(_0x2ff816,Object[_0x3834a2(0x82d)]({},_0x1119a6,{'id':'shape-right-bracket-icon','ref':_0x234448,'icon':_0x16ad63}));});_0x591e62['displayName']=_0x57b2d2(0x27f);let _0x2be619={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x617),'attrs':{'width':16.4,'height':12.4,'x':1.8,'y':3.8,'stroke':_0x57b2d2(0x268),'rx':2.2,'strokeWidth':1.6}}]},_0x3a3078=(0x0,_0x55b95c['forwardRef'])(function(_0x4f7b90,_0x575174){const _0x2b0454=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x2b0454(0x82d)]({},_0x4f7b90,{'id':'shape-round-rect-icon','ref':_0x575174,'icon':_0x2be619}));});_0x3a3078['displayName']=_0x57b2d2(0x4d4);let _0x275426={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x4d0),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x403d2d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2368d6,_0x1e9050){const _0xc9a287=_0x57b2d2;return(0x0,_0x55b95c[_0xc9a287(0x69d)])(_0x2ff816,Object[_0xc9a287(0x82d)]({},_0x2368d6,{'id':_0xc9a287(0x776),'ref':_0x1e9050,'icon':_0x275426}));});_0x403d2d[_0x57b2d2(0x6a2)]='ShapeRound1RectIcon';let _0x3107d8={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x8a4),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x7e1b58=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x2b29ad,_0x2debd5){const _0x3c0282=_0x57b2d2;return(0x0,_0x55b95c[_0x3c0282(0x69d)])(_0x2ff816,Object['assign']({},_0x2b29ad,{'id':_0x3c0282(0x66f),'ref':_0x2debd5,'icon':_0x3107d8}));});_0x7e1b58['displayName']=_0x57b2d2(0x5e5);let _0x1d9f99={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M1.8\x2016.2V6C1.8\x204.785\x202.785\x203.8\x204\x203.8H16C17.215\x203.8\x2018.2\x204.785\x2018.2\x206V16.2H1.8Z','strokeLinejoin':'round','strokeWidth':1.6}}]},_0x466ba3=(0x0,_0x55b95c['forwardRef'])(function(_0xf270fd,_0x4422fc){const _0x2cc167=_0x57b2d2;return(0x0,_0x55b95c[_0x2cc167(0x69d)])(_0x2ff816,Object[_0x2cc167(0x82d)]({},_0xf270fd,{'id':_0x2cc167(0x454),'ref':_0x4422fc,'icon':_0x1d9f99}));});_0x466ba3[_0x57b2d2(0x6a2)]=_0x57b2d2(0x3ba);let _0x121a46={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':'currentColor','d':_0x57b2d2(0x897),'strokeWidth':1.6}}]},_0xcee207=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x51b3cf,_0x3dfdfa){const _0x526cf9=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x526cf9(0x82d)]({},_0x51b3cf,{'id':_0x526cf9(0x88d),'ref':_0x3dfdfa,'icon':_0x121a46}));});_0xcee207['displayName']=_0x57b2d2(0x70b);let _0x2fad4a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':8.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M7.5\x208C7.5\x207.72386\x207.27614\x207.5\x207\x207.5C6.72386\x207.5\x206.5\x207.72386\x206.5\x208C6.5\x208.27614\x206.72386\x208.5\x207\x208.5V10C5.89543\x2010\x205\x209.10457\x205\x208C5\x206.89543\x205.89543\x206\x207\x206C8.10457\x206\x209\x206.89543\x209\x208C9\x209.10457\x208.10457\x2010\x207\x2010V8.5C7.27614\x208.5\x207.5\x208.27614\x207.5\x208Z'}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x497)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M12.7881\x2012.2627C12.9191\x2011.8697\x2013.3443\x2011.6571\x2013.7373\x2011.7881C14.1303\x2011.9191\x2014.3429\x2012.3443\x2014.2119\x2012.7373C13.8704\x2013.7617\x2013.0365\x2014.3867\x2012.248\x2014.7451C11.4567\x2015.1048\x2010.5998\x2015.25\x2010\x2015.25C9.4002\x2015.25\x208.54332\x2015.1048\x207.75195\x2014.7451C6.96347\x2014.3867\x206.12956\x2013.7617\x205.78808\x2012.7373C5.6571\x2012.3443\x205.86974\x2011.9191\x206.26269\x2011.7881C6.65565\x2011.6571\x207.08093\x2011.8697\x207.21191\x2012.2627C7.37041\x2012.7382\x207.78659\x2013.1133\x208.37304\x2013.3799C8.95661\x2013.6451\x209.59984\x2013.75\x2010\x2013.75C10.4002\x2013.75\x2011.0434\x2013.6451\x2011.627\x2013.3799C12.2134\x2013.1133\x2012.6296\x2012.7382\x2012.7881\x2012.2627Z'}}]},_0x3ed9c4=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x41baed,_0x2fbb5e){const _0x3938ce=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x3938ce(0x82d)]({},_0x41baed,{'id':_0x3938ce(0x577),'ref':_0x2fbb5e,'icon':_0x2fad4a}));});_0x3ed9c4[_0x57b2d2(0x6a2)]=_0x57b2d2(0x660);let _0x5e3462={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x300),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x13294a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5e8068,_0x24df54){const _0x4e78ad=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x4e78ad(0x82d)]({},_0x5e8068,{'id':_0x4e78ad(0x1b7),'ref':_0x24df54,'icon':_0x5e3462}));});_0x13294a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x761);let _0x450145={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x80d),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x5648e3=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xa51efc,_0x2b3e15){const _0x121099=_0x57b2d2;return(0x0,_0x55b95c[_0x121099(0x69d)])(_0x2ff816,Object[_0x121099(0x82d)]({},_0xa51efc,{'id':'shape-snip1-rect-icon','ref':_0x2b3e15,'icon':_0x450145}));});_0x5648e3[_0x57b2d2(0x6a2)]=_0x57b2d2(0x810);let _0x116a07={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x560),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x1c06e0=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x218f77,_0x16e464){const _0x487b21=_0x57b2d2;return(0x0,_0x55b95c[_0x487b21(0x69d)])(_0x2ff816,Object[_0x487b21(0x82d)]({},_0x218f77,{'id':_0x487b21(0x3c0),'ref':_0x16e464,'icon':_0x116a07}));});_0x1c06e0['displayName']='ShapeSnip2DiagRectIcon';let _0x4f34e3={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x7fd),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x955a7d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4a8188,_0x5e5a6f){const _0x13bf96=_0x57b2d2;return(0x0,_0x55b95c[_0x13bf96(0x69d)])(_0x2ff816,Object[_0x13bf96(0x82d)]({},_0x4a8188,{'id':'shape-snip2-same-rect-icon','ref':_0x5e5a6f,'icon':_0x4f34e3}));});_0x955a7d['displayName']=_0x57b2d2(0x879);let _0x213da2={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5b2),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x6c4),'strokeWidth':1.6}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x5b4),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x899),'strokeWidth':1.6}}]},_0x56d4aa=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x585ab4,_0x46c8e3){const _0x10be1e=_0x57b2d2;return(0x0,_0x55b95c[_0x10be1e(0x69d)])(_0x2ff816,Object['assign']({},_0x585ab4,{'id':_0x10be1e(0x686),'ref':_0x46c8e3,'icon':_0x213da2}));});_0x56d4aa[_0x57b2d2(0x6a2)]=_0x57b2d2(0x5a1);let _0x571dcc={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M15.5426\x2012.4L17.151\x2012.4L15.6873\x209.9999L17.1719\x207.5634L15.5426\x207.5442L15.5426\x204.5287L11.8884\x204.5287L10.243\x202.5235L8.5997\x204.5287L4.9457\x204.5287L4.9457\x207.6466L3.222\x207.5954L4.9914\x2010.0117L3.1999\x2012.4L4.9457\x2012.4L4.9457\x2015.4713L8.5998\x2015.4713L10.243\x2017.4753L11.8883\x2015.4713L15.5426\x2015.4713ZM17.1426\x2017.0713L12.6455\x2017.0713L10.2441\x2020L7.8418\x2017.0713L3.3457\x2017.0713L3.3457\x2014L0\x2014L3\x2010L0\x205.9033L3.3457\x206L3.3457\x202.9287L7.8418\x202.9287L10.2441\x200L12.6455\x202.9287L17.1426\x202.9287L17.1426\x205.9648L20\x206L17.5605\x2010L20\x2014L17.1426\x2014Z','fillRule':_0x57b2d2(0x2c1)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x6c9)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x68e)}}]},_0x499d60=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x55dc19,_0x45774a){const _0xd251c1=_0x57b2d2;return(0x0,_0x55b95c[_0xd251c1(0x69d)])(_0x2ff816,Object[_0xd251c1(0x82d)]({},_0x55dc19,{'id':_0xd251c1(0x2ab),'ref':_0x45774a,'icon':_0x571dcc}));});_0x499d60['displayName']=_0x57b2d2(0x700);let _0x22a268={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M15.5426\x2012.4L17.151\x2012.4L15.6873\x209.9999L17.1719\x207.5634L15.5426\x207.5442L15.5426\x204.5287L12.4\x204.5287L12.4\x202.8867L10\x204.3867L7.6\x202.8867L7.6\x204.5287L4.9457\x204.5287L4.9457\x207.6466L3.222\x207.5954L4.9914\x2010.0117L3.1999\x2012.4L4.9457\x2012.4L4.9457\x2015.4713L7.6\x2015.4713L7.6\x2017.112L10\x2015.6132L12.4\x2017.112L12.4\x2015.4713L15.5426\x2015.4713ZM17.1426\x2017.0713L14\x2017.0713L14\x2020L10\x2017.5L6\x2020L6\x2017.0713L3.3457\x2017.0713L3.3457\x2014L0\x2014L3\x2010L0\x205.9033L3.3457\x206L3.3457\x202.9287L6\x202.9287L6\x200L10\x202.5L14\x200L14\x202.9287L17.1426\x202.9287L17.1426\x205.9648L20\x206L17.5605\x2010L20\x2014L17.1426\x2014Z','fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x87b)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x405)}}]},_0x32b61a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xd60bb4,_0x38b8d8){const _0x8d5910=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x8d5910(0x82d)]({},_0xd60bb4,{'id':_0x8d5910(0x704),'ref':_0x38b8d8,'icon':_0x22a268}));});_0x32b61a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2bd);let _0x5d0558={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x26e),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x67c)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x22c)}}]},_0x19af30=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x23267e,_0x1ca21a){const _0x46afdc=_0x57b2d2;return(0x0,_0x55b95c[_0x46afdc(0x69d)])(_0x2ff816,Object[_0x46afdc(0x82d)]({},_0x23267e,{'id':'shape-star16-icon','ref':_0x1ca21a,'icon':_0x5d0558}));});_0x19af30[_0x57b2d2(0x6a2)]='ShapeStar16Icon';let _0x485abf={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x26e),'fillRule':'evenodd'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x813)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M7.95546\x206.5C8.5083\x206.5\x208.97172\x206.68269\x209.32944\x207.06731C9.67903\x207.45192\x209.8579\x207.94231\x209.8579\x208.54808C9.8579\x209.14423\x209.66277\x209.68269\x209.28879\x2010.1731C9.06115\x2010.4519\x208.66277\x2010.8173\x208.08554\x2011.2788C7.45952\x2011.7692\x207.08554\x2012.2019\x206.96359\x2012.5769H9.40449C9.65939\x2012.5769\x209.86603\x2012.7836\x209.86603\x2013.0385C9.86603\x2013.2934\x209.65939\x2013.5\x209.40449\x2013.5H6.53829C6.16701\x2013.5\x205.85654\x2013.1957\x205.93176\x2012.8321C6.017\x2012.4201\x206.18595\x2012.0443\x206.44326\x2011.7019C6.65464\x2011.4038\x207.09367\x2010.9904\x207.7522\x2010.4519C8.14245\x2010.125\x208.41887\x209.86538\x208.58147\x209.66346C8.84164\x209.31731\x208.97985\x208.94231\x208.97985\x208.53846C8.97985\x208.15385\x208.89042\x207.86538\x208.71155\x207.67308C8.53269\x207.48077\x208.2644\x207.38462\x207.92294\x207.38462C7.55708\x207.38462\x207.28066\x207.52885\x207.09367\x207.82692C6.9529\x208.03503\x206.86291\x208.3082\x206.81759\x208.65365C6.78613\x208.89346\x206.59231\x209.08654\x206.35043\x209.08654C6.10164\x209.08654\x205.89745\x208.88275\x205.92578\x208.63557C5.99029\x208.07296\x206.1682\x207.6079\x206.45952\x207.24038C6.83351\x206.74038\x207.33757\x206.5\x207.95546\x206.5Z'}}]},_0x1fb960=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x410cf2,_0x31f409){const _0x39512e=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x410cf2,{'id':_0x39512e(0x238),'ref':_0x31f409,'icon':_0x485abf}));});_0x1fb960[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2f8);let _0xe42346={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x26e),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x8a5)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x59b)}}]},_0x37808f=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4f77d1,_0x529a4f){const _0x1e1df9=_0x57b2d2;return(0x0,_0x55b95c[_0x1e1df9(0x69d)])(_0x2ff816,Object['assign']({},_0x4f77d1,{'id':_0x1e1df9(0x8a8),'ref':_0x529a4f,'icon':_0xe42346}));});_0x37808f[_0x57b2d2(0x6a2)]=_0x57b2d2(0x74f);let _0x320c41={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M12.7012\x207.2988L20\x2010L12.7012\x2012.7012L10\x2020L7.2988\x2012.7012L0\x2010L7.2988\x207.2988L10\x200ZM8.5442\x208.5442L4.6102\x2010L8.5442\x2011.4558L10\x2015.3885L11.4558\x2011.4558L15.3885\x2010L11.4558\x208.5442L10\x204.6102Z','fillRule':'evenodd'}}]},_0x57a058=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3b0f94,_0x4ee817){const _0x3ed2c4=_0x57b2d2;return(0x0,_0x55b95c[_0x3ed2c4(0x69d)])(_0x2ff816,Object[_0x3ed2c4(0x82d)]({},_0x3b0f94,{'id':_0x3ed2c4(0x1d1),'ref':_0x4ee817,'icon':_0x320c41}));});_0x57a058['displayName']='ShapeStar4Icon';let _0x1c7e98={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x77f),'fillRule':_0x57b2d2(0x2c1)}}]},_0x574655=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5933c5,_0x3ada7b){const _0x4ee864=_0x57b2d2;return(0x0,_0x55b95c[_0x4ee864(0x69d)])(_0x2ff816,Object[_0x4ee864(0x82d)]({},_0x5933c5,{'id':_0x4ee864(0x19c),'ref':_0x3ada7b,'icon':_0x1c7e98}));});_0x574655['displayName']=_0x57b2d2(0x4b6);let _0x593e52={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x7f3),'fillRule':_0x57b2d2(0x2c1)}}]},_0x8900e9=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x62272e,_0x4c7ef2){const _0x1bf000=_0x57b2d2;return(0x0,_0x55b95c[_0x1bf000(0x69d)])(_0x2ff816,Object[_0x1bf000(0x82d)]({},_0x62272e,{'id':'shape-star6-icon','ref':_0x4c7ef2,'icon':_0x593e52}));});_0x8900e9[_0x57b2d2(0x6a2)]=_0x57b2d2(0x7a6);let _0x3d203c={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x486),'fillRule':_0x57b2d2(0x2c1)}}]},_0x34304d=(0x0,_0x55b95c['forwardRef'])(function(_0x545178,_0x16ac6f){const _0x12e941=_0x57b2d2;return(0x0,_0x55b95c[_0x12e941(0x69d)])(_0x2ff816,Object[_0x12e941(0x82d)]({},_0x545178,{'id':_0x12e941(0x3a5),'ref':_0x16ac6f,'icon':_0x3d203c}));});_0x34304d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x328);let _0x1fd741={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x63e),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x266)}}]},_0x385bf2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x47040a,_0xd5991f){const _0x5ace76=_0x57b2d2;return(0x0,_0x55b95c[_0x5ace76(0x69d)])(_0x2ff816,Object[_0x5ace76(0x82d)]({},_0x47040a,{'id':_0x5ace76(0x529),'ref':_0xd5991f,'icon':_0x1fd741}));});_0x385bf2[_0x57b2d2(0x6a2)]=_0x57b2d2(0x1ec);let _0x2128b6={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x4f5),'strokeLinecap':'round','strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':_0x57b2d2(0x7b6),'strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x364700=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x10e538,_0xc0a606){const _0x16442c=_0x57b2d2;return(0x0,_0x55b95c[_0x16442c(0x69d)])(_0x2ff816,Object[_0x16442c(0x82d)]({},_0x10e538,{'id':_0x16442c(0x506),'ref':_0xc0a606,'icon':_0x2128b6}));});_0x364700[_0x57b2d2(0x6a2)]=_0x57b2d2(0x809);let _0x128cab={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M3.6\x203.6L16.4\x2016.4','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M7.6\x203.6H3.6V7.6','strokeLinecap':_0x57b2d2(0x2e8),'strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M12.4\x2016.4H16.4V12.4','strokeLinecap':'round','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.6}}]},_0x323a95=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x23a24d,_0xbca46c){const _0x244c21=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x244c21(0x82d)]({},_0x23a24d,{'id':_0x244c21(0x5c0),'ref':_0xbca46c,'icon':_0x128cab}));});_0x323a95[_0x57b2d2(0x6a2)]='ShapeStraightConnector2Icon';let _0x5c318d={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x575),'fillRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x71b)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':'M0\x206H1.6V14H0V6Z'}}]},_0x4d2989=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x296e62,_0x2a4526){const _0x61c094=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x61c094(0x82d)]({},_0x296e62,{'id':_0x61c094(0x4d1),'ref':_0x2a4526,'icon':_0x5c318d}));});_0x4d2989[_0x57b2d2(0x6a2)]=_0x57b2d2(0x174);let _0x56fd57={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M10.2812\x2018.834C10.1222\x2019.0115\x209.84452\x2019.0116\x209.68555\x2018.834L7.67969\x2016.5928C8.40137\x2016.8443\x209.17597\x2016.9834\x209.9834\x2016.9834C10.7907\x2016.9834\x2011.5655\x2016.8442\x2012.2871\x2016.5928L10.2812\x2018.834ZM3.67969\x2013.0303C4.36642\x2014.4487\x205.51827\x2015.5991\x206.93652\x2016.2861L3.93652\x2016.4531C3.69851\x2016.4663\x203.50149\x2016.2693\x203.51465\x2016.0312L3.67969\x2013.0303ZM16.4531\x2016.0312C16.4663\x2016.2693\x2016.2693\x2016.4663\x2016.0312\x2016.4531L13.0303\x2016.2861C14.4486\x2015.5993\x2015.5993\x2014.4486\x2016.2861\x2013.0303L16.4531\x2016.0312ZM18.834\x209.68555C19.0116\x209.84452\x2019.0115\x2010.1222\x2018.834\x2010.2812L16.5928\x2012.2871C16.8442\x2011.5655\x2016.9834\x2010.7907\x2016.9834\x209.9834C16.9834\x209.17597\x2016.8443\x208.40137\x2016.5928\x207.67969L18.834\x209.68555ZM3.37305\x207.68066C3.12179\x208.40196\x202.98343\x209.17648\x202.9834\x209.9834C2.9834\x2010.7902\x203.12188\x2011.5649\x203.37305\x2012.2861L1.13281\x2010.2812C0.955646\x2010.1222\x200.955437\x209.84443\x201.13281\x209.68555L3.37305\x207.68066ZM6.93652\x203.67969C5.51815\x204.36655\x204.36655\x205.51815\x203.67969\x206.93652L3.51465\x203.93652C3.50149\x203.69851\x203.69851\x203.50149\x203.93652\x203.51465L6.93652\x203.67969ZM16.0312\x203.51465C16.2693\x203.50149\x2016.4663\x203.69851\x2016.4531\x203.93652L16.2861\x206.93652C15.5991\x205.51827\x2014.4487\x204.36642\x2013.0303\x203.67969L16.0312\x203.51465ZM9.68555\x201.13281C9.84443\x200.955437\x2010.1222\x200.955646\x2010.2812\x201.13281L12.2861\x203.37305C11.5649\x203.12188\x2010.7902\x202.9834\x209.9834\x202.9834C9.17648\x202.98343\x208.40196\x203.12179\x207.68066\x203.37305L9.68555\x201.13281Z'}},{'tag':_0x57b2d2(0x53a),'attrs':{'cx':0xa,'cy':0xa,'r':5.2,'stroke':_0x57b2d2(0x268),'strokeWidth':1.6}}]},_0x3fa01e=(0x0,_0x55b95c['forwardRef'])(function(_0x588720,_0x5e09e0){const _0xfe3514=_0x57b2d2;return(0x0,_0x55b95c[_0xfe3514(0x69d)])(_0x2ff816,Object[_0xfe3514(0x82d)]({},_0x588720,{'id':_0xfe3514(0x325),'ref':_0x5e09e0,'icon':_0x56fd57}));});_0x3fa01e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x603);let _0x5f20ef={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M11.5\x202.27343C11.5\x201.24876\x2012.7775\x200.780388\x2013.4394\x201.56249L18.7109\x207.79198C19.048\x208.19051\x2019.0586\x208.77111\x2018.7363\x209.18163L13.4648\x2015.8906C12.8194\x2016.7118\x2011.5001\x2016.2555\x2011.5\x2015.2109V12.0801C10.2932\x2012.6861\x208.53247\x2013.6553\x207.12499\x2014.7812C5.04388\x2016.4461\x203.0166\x2018.7421\x202.49999\x2019.5C1.87407\x2020.4183\x201.5\x2019.5\x201.5\x2018.5C1.5\x2014.5789\x202.1361\x2010.9175\x205.35937\x208.23144C6.70905\x207.1067\x208.22438\x206.33098\x209.48534\x205.82616C10.255\x205.51805\x2010.9583\x205.29907\x2011.5\x205.16503V2.27343ZM13.5\x205.90038C13.4998\x206.49587\x2013.0419\x206.94381\x2012.5088\x207.00097C12.2607\x207.02756\x2011.3765\x207.22305\x2010.2285\x207.68261C9.09728\x208.13549\x207.78298\x208.8166\x206.64062\x209.76855C4.80955\x2011.2944\x203.97212\x2013.1621\x203.5\x2015.5C4.19492\x2014.7294\x204.9181\x2013.9843\x205.87499\x2013.2187C8.1897\x2011.367\x2011.2787\x209.94815\x2011.956\x209.64648L12.0986\x209.59374C12.8115\x209.38166\x2013.4998\x209.94054\x2013.5\x2010.6514V12.6084L16.709\x208.52343L13.5\x204.72948V5.90038Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x5f3214=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x492363,_0x2bb5a2){const _0x448cb7=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x448cb7(0x82d)]({},_0x492363,{'id':'shape-swoosh-arrow-icon','ref':_0x2bb5a2,'icon':_0x5f20ef}));});_0x5f3214[_0x57b2d2(0x6a2)]='ShapeSwooshArrowIcon';let _0x5e1197={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M18.2\x2010V1.8H10C5.471\x201.8\x201.8\x205.471\x201.8\x2010C1.8\x2014.529\x205.471\x2018.2\x2010\x2018.2C14.529\x2018.2\x2018.2\x2014.529\x2018.2\x2010Z','strokeLinejoin':'round','strokeWidth':1.6}}]},_0x3232cf=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x44de6c,_0x48190d){const _0x5bf8f7=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x44de6c,{'id':_0x5bf8f7(0x3d5),'ref':_0x48190d,'icon':_0x5e1197}));});_0x3232cf[_0x57b2d2(0x6a2)]=_0x57b2d2(0x540);let _0x276ba3={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M6.80225\x202H13.1978L16.7534\x2018H3.24658L6.80225\x202Z','strokeWidth':1.6}}]},_0x4b05e7=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1d3b24,_0x378713){const _0x1640c6=_0x57b2d2;return(0x0,_0x55b95c[_0x1640c6(0x69d)])(_0x2ff816,Object['assign']({},_0x1d3b24,{'id':_0x1640c6(0x26a),'ref':_0x378713,'icon':_0x276ba3}));});_0x4b05e7['displayName']=_0x57b2d2(0x606);let _0x28b615={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':'M10\x203.23633L17.3818\x2018H2.61816L10\x203.23633Z','strokeWidth':1.6}}]},_0x48c25b=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0xb6f34e,_0x1908fc){const _0x39be53=_0x57b2d2;return(0x0,_0x55b95c[_0x39be53(0x69d)])(_0x2ff816,Object[_0x39be53(0x82d)]({},_0xb6f34e,{'id':_0x39be53(0x5f5),'ref':_0x1908fc,'icon':_0x28b615}));});_0x48c25b[_0x57b2d2(0x6a2)]=_0x57b2d2(0x54f);let _0xfb55a6={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4d8),'fillRule':'evenodd'}}]},_0x1b0e28=(0x0,_0x55b95c['forwardRef'])(function(_0x2c68b9,_0x8876ca){const _0x4fc3ff=_0x57b2d2;return(0x0,_0x55b95c[_0x4fc3ff(0x69d)])(_0x2ff816,Object['assign']({},_0x2c68b9,{'id':_0x4fc3ff(0x48c),'ref':_0x8876ca,'icon':_0xfb55a6}));});_0x1b0e28[_0x57b2d2(0x6a2)]='ShapeUpArrowCalloutIcon';let _0x131883={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3c2),'fillRule':_0x57b2d2(0x2c1)}}]},_0xca6c75=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x9cb4ef,_0x1a1337){const _0x2e098b=_0x57b2d2;return(0x0,_0x55b95c[_0x2e098b(0x69d)])(_0x2ff816,Object[_0x2e098b(0x82d)]({},_0x9cb4ef,{'id':_0x2e098b(0x5d8),'ref':_0x1a1337,'icon':_0x131883}));});_0xca6c75['displayName']=_0x57b2d2(0x218);let _0x55f8d6={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x62b),'fillRule':'evenodd'}}]},_0x58a346=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3eb24a,_0x16f767){const _0x4e4806=_0x57b2d2;return(0x0,_0x55b95c[_0x4e4806(0x69d)])(_0x2ff816,Object[_0x4e4806(0x82d)]({},_0x3eb24a,{'id':_0x4e4806(0x64d),'ref':_0x16f767,'icon':_0x55f8d6}));});_0x58a346[_0x57b2d2(0x6a2)]=_0x57b2d2(0x41c);let _0x11db6a={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x2dc),'fillRule':_0x57b2d2(0x2c1)}}]},_0x31a701=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x3a6487,_0x48a4cc){const _0x53352d=_0x57b2d2;return(0x0,_0x55b95c[_0x53352d(0x69d)])(_0x2ff816,Object[_0x53352d(0x82d)]({},_0x3a6487,{'id':_0x53352d(0x348),'ref':_0x48a4cc,'icon':_0x11db6a}));});_0x31a701[_0x57b2d2(0x6a2)]='ShapeUpDownArrowIcon';let _0xe7dbd1={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x3b5),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x6d1)}}]},_0x49c6b2=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x20b7eb,_0x244eee){const _0x12abe0=_0x57b2d2;return(0x0,_0x55b95c[_0x12abe0(0x69d)])(_0x2ff816,Object[_0x12abe0(0x82d)]({},_0x20b7eb,{'id':_0x12abe0(0x6db),'ref':_0x244eee,'icon':_0xe7dbd1}));});_0x49c6b2[_0x57b2d2(0x6a2)]=_0x57b2d2(0x428);let _0x27302e={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M4.2058\x201.2L4.2002\x201.2788L4.2002\x2011.7697L4.1247\x2012.2L1.6847\x2012.2L1.5482\x2012.2846L1.415\x2012.4934L1.2731\x2012.742L1.1444\x2012.9957L1.0289\x2013.254L0.9265\x2013.5163L0.8374\x2013.7823L0.7614\x2014.0513L0.6986\x2014.323L0.6489\x2014.5967L0.6125\x2014.8721L0.5892\x2015.1486L0.5791\x2015.4258L0.5821\x2015.703L0.5984\x2015.9799L0.6278\x2016.256L0.6704\x2016.5307L0.7261\x2016.8035L0.7951\x2017.074L0.8772\x2017.3417L0.9724\x2017.606L1.0809\x2017.8665L1.2025\x2018.1227L1.3374\x2018.3741L1.4854\x2018.6203L1.5959\x2018.785L1.7715\x2018.8L15.7265\x2018.8L15.8002\x2018.7921L15.8002\x208.157L15.9622\x207.8L17.7931\x207.8L17.9321\x207.7346L18.0514\x207.5369L18.187\x207.2861L18.3099\x207.0305L18.4201\x206.7705L18.5177\x206.5066L18.6026\x206.2391L18.6747\x205.9687L18.7341\x205.6956L18.7807\x205.4205L18.8145\x205.1438L18.8354\x204.8659L18.8434\x204.5873L18.8385\x204.3084L18.8207\x204.0298L18.7899\x203.7519L18.7462\x203.4752L18.6894\x203.2L18.6195\x202.927L18.5366\x202.6565L18.4405\x202.389L18.3313\x202.125L18.2079\x201.8627L18.0788\x201.6044L17.9495\x201.3458L17.8729\x201.2ZM15.8216\x202.8L16.0095\x202.8L16.69\x202.8L16.8955\x202.8323L16.9678\x203.0217L16.9978\x203.1052L17.0261\x203.1891L17.0526\x203.2734L17.0773\x203.3581L17.1003\x203.4431L17.1216\x203.5284L17.1412\x203.614L17.159\x203.6998L17.1751\x203.7859L17.1895\x203.8722L17.2021\x203.9587L17.213\x204.0453L17.2222\x204.132L17.2297\x204.2189L17.2354\x204.3058L17.2394\x204.3928L17.2417\x204.4798L17.2423\x204.5668L17.2412\x204.6537L17.2384\x204.7406L17.2338\x204.8275L17.2276\x204.9142L17.2196\x205.0008L17.21\x205.0872L17.1986\x205.1735L17.1855\x205.2595L17.1708\x205.3454L17.1543\x205.4309L17.1361\x205.5162L17.1162\x205.6011L17.0947\x205.6857L17.0714\x205.77L17.0465\x205.8538L17.0199\x205.9373L16.9754\x206.0674L16.8287\x206.2L16.0314\x206.2L15.8002\x206.2L9.9029\x206.2L9.6376\x206.1165L9.6972\x205.8563L9.7142\x205.7771L9.7302\x205.6978L9.745\x205.6183L9.7588\x205.5386L9.7716\x205.4588L9.7832\x205.3789L9.7938\x205.2988L9.8033\x205.2186L9.8118\x205.1384L9.8191\x205.058L9.8254\x204.9775L9.8306\x204.897L9.8347\x204.8164L9.8378\x204.7357L9.8397\x204.655L9.8406\x204.5743L9.8404\x204.4936L9.8391\x204.4128L9.8367\x204.3321L9.8333\x204.2514L9.8287\x204.1707L9.8231\x204.0901L9.8163\x204.0095L9.8085\x203.9289L9.7996\x203.8484L9.7896\x203.7681L9.7785\x203.6878L9.7663\x203.6076L9.753\x203.5275L9.7387\x203.4475L9.7232\x203.3677L9.7066\x203.2881L9.6889\x203.2085L9.6701\x203.1292L9.5875\x202.8ZM5.8002\x207.2807L5.8743\x206.4829L6.2533\x207.2209L6.321\x207.3451L6.3919\x207.468L6.466\x207.5895L6.5433\x207.7097L6.5951\x207.7861L6.6239\x207.8L14.029\x207.8L14.2002\x208.0097L14.2002\x2016.9641L14.0575\x2017.2L5.8002\x2017.2ZM7.8916\x202.819L7.9666\x203.0218L7.9957\x203.118L8.0132\x203.2124L8.028\x203.2974L8.0417\x203.3825L8.0544\x203.4676L8.0661\x203.553L8.0768\x203.6384L8.0864\x203.7238L8.095\x203.8094L8.1026\x203.8951L8.1091\x203.9808L8.1146\x204.0665L8.1191\x204.1523L8.1226\x204.2381L8.125\x204.324L8.1265\x204.4099L8.1269\x204.4957L8.1263\x204.5816L8.1247\x204.6675L8.1221\x204.7533L8.1184\x204.8391L8.1138\x204.9249L8.1081\x205.0106L8.1014\x205.0963L8.0937\x205.1819L8.085\x205.2675L8.0753\x205.3529L8.0646\x205.4383L8.0529\x205.5235L8.0401\x205.6087L8.0264\x205.6937L8.0117\x205.7786L7.9959\x205.8634L7.9792\x205.948L7.9325\x206.1703L7.6002\x206.2133L7.4686\x206.038L7.4284\x205.9298L7.3993\x205.8462L7.372\x205.7622L7.3465\x205.6778L7.3228\x205.5929L7.301\x205.5077L7.2809\x205.4222L7.2626\x205.3364L7.2462\x205.2502L7.2315\x205.1639L7.2187\x205.0773L7.2076\x204.9905L7.1984\x204.9035L7.1909\x204.8164L7.1853\x204.7292L7.1815\x204.642L7.1794\x204.5547L7.1792\x204.4673L7.1808\x204.38L7.1842\x204.2927L7.1893\x204.2055L7.1963\x204.1184L7.2051\x204.0314L7.2157\x203.9446L7.2281\x203.8579L7.2423\x203.7715L7.2583\x203.6853L7.2761\x203.5994L7.2957\x203.5138L7.3171\x203.4285L7.3404\x203.3436L7.3654\x203.259L7.3922\x203.1749L7.4209\x203.0912L7.4513\x203.0081L7.5373\x202.7875ZM2.9658\x2014.0162L2.9958\x2014.0995L3.0241\x2014.1832L3.0507\x2014.2674L3.0755\x2014.3519L3.0986\x2014.4367L3.12\x2014.5218L3.1397\x2014.6072L3.1576\x2014.6929L3.1738\x2014.7788L3.1883\x2014.865L3.2011\x2014.9513L3.2121\x2015.0377L3.2214\x2015.1243L3.229\x2015.211L3.2349\x2015.2978L3.2391\x2015.3846L3.2416\x2015.4714L3.2423\x2015.5583L3.2414\x2015.6451L3.2387\x2015.7319L3.2344\x2015.8186L3.2283\x2015.9052L3.2205\x2015.9916L3.2111\x2016.0779L3.1999\x2016.1641L3.187\x2016.25L3.1725\x2016.3357L3.1562\x2016.4211L3.1383\x2016.5062L3.1187\x2016.5911L3.0974\x2016.6756L3.0743\x2016.7597L3.0497\x2016.8435L3.0233\x2016.9268L2.985\x2017.04L2.8601\x2017.2L2.5595\x2017.2L2.4593\x2017.0133L2.4246\x2016.9193L2.3959\x2016.836L2.3689\x2016.7523L2.3437\x2016.6681L2.3203\x2016.5835L2.2987\x2016.4986L2.2789\x2016.4133L2.2609\x2016.3278L2.2447\x2016.2419L2.2302\x2016.1558L2.2176\x2016.0695L2.2067\x2015.983L2.1977\x2015.8964L2.1904\x2015.8096L2.1849\x2015.7227L2.1813\x2015.6357L2.1794\x2015.5487L2.1792\x2015.4617L2.1809\x2015.3747L2.1844\x2015.2877L2.1897\x2015.2008L2.1967\x2015.114L2.2056\x2015.0274L2.2162\x2014.9409L2.2286\x2014.8545L2.2428\x2014.7684L2.2589\x2014.6825L2.2767\x2014.5969L2.2962\x2014.5116L2.3176\x2014.4267L2.3408\x2014.342L2.3658\x2014.2578L2.3925\x2014.174L2.4211\x2014.0906L2.4514\x2014.0078L2.5371\x2013.7879L2.8899\x2013.8183Z','fillRule':_0x57b2d2(0x2c1)}}]},_0x3714f6=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x47afe9,_0x185eab){const _0x22a3f2=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x22a3f2(0x82d)]({},_0x47afe9,{'id':_0x22a3f2(0x22d),'ref':_0x185eab,'icon':_0x27302e}));});_0x3714f6[_0x57b2d2(0x6a2)]=_0x57b2d2(0x821);let _0x1eb1ec={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2020\x2020','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x627),'strokeLinejoin':'round','strokeWidth':1.6}}]},_0x48c5ce=(0x0,_0x55b95c['forwardRef'])(function(_0x5dbec8,_0x192edb){const _0xfbb9cd=_0x57b2d2;return(0x0,_0x55b95c[_0xfbb9cd(0x69d)])(_0x2ff816,Object[_0xfbb9cd(0x82d)]({},_0x5dbec8,{'id':_0xfbb9cd(0x4c7),'ref':_0x192edb,'icon':_0x1eb1ec}));});_0x48c5ce[_0x57b2d2(0x6a2)]=_0x57b2d2(0x374);let _0x40e3b4={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1a9),'strokeWidth':1.6}}]},_0x5a619d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x18e4b3,_0x5f2df8){const _0x14c177=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x14c177(0x82d)]({},_0x18e4b3,{'id':_0x14c177(0x47e),'ref':_0x5f2df8,'icon':_0x40e3b4}));});_0x5a619d[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4a2);let _0x2857d9={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x1cd),'strokeWidth':1.6}}]},_0x34fa45=(0x0,_0x55b95c['forwardRef'])(function(_0x5880c9,_0x354df1){const _0x457530=_0x57b2d2;return(0x0,_0x55b95c[_0x457530(0x69d)])(_0x2ff816,Object[_0x457530(0x82d)]({},_0x5880c9,{'id':_0x457530(0x58d),'ref':_0x354df1,'icon':_0x2857d9}));});_0x34fa45['displayName']='ShapeWedgeRectCalloutIcon';let _0x5166d0={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x70d),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x481),'strokeWidth':1.6}}]},_0x5ba824=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5cc218,_0x29392f){const _0x19f71e=_0x57b2d2;return(0x0,_0x55b95c[_0x19f71e(0x69d)])(_0x2ff816,Object[_0x19f71e(0x82d)]({},_0x5cc218,{'id':_0x19f71e(0x1b5),'ref':_0x29392f,'icon':_0x5166d0}));});_0x5ba824[_0x57b2d2(0x6a2)]=_0x57b2d2(0x84b);let _0x5a5436={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x163),'width':'1em','height':'1em'},'children':[{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x177)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x4f8)}}]},_0x580161=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x512c8d,_0x36dae6){const _0x5e1ade=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x5e1ade(0x82d)]({},_0x512c8d,{'id':'strikethrough-icon','ref':_0x36dae6,'icon':_0x5a5436}));});_0x580161[_0x57b2d2(0x6a2)]=_0x57b2d2(0x150);let _0x2abedd={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':_0x57b2d2(0x21d)}}]},_0x571c5e=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x331283,_0x42917f){const _0x1736f5=_0x57b2d2;return(0x0,_0x55b95c[_0x1736f5(0x69d)])(_0x2ff816,Object[_0x1736f5(0x82d)]({},_0x331283,{'id':'text-type-icon','ref':_0x42917f,'icon':_0x2abedd}));});_0x571c5e[_0x57b2d2(0x6a2)]=_0x57b2d2(0x1cc);let _0x34f804={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x3d6),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x475)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':'currentColor','d':'M1.50439\x209C1.50439\x208.11634\x202.22074\x207.4\x203.10439\x207.4H13.4044C14.288\x207.4\x2015.0044\x208.11634\x2015.0044\x209C15.0044\x209.88366\x2014.2881\x2010.6\x2013.4044\x2010.6H3.1044C2.22074\x2010.6\x201.50439\x209.88366\x201.50439\x209ZM3.10439\x208.6C2.88348\x208.6\x202.70439\x208.77909\x202.70439\x209C2.70439\x209.22091\x202.88348\x209.4\x203.1044\x209.4H13.4044C13.6253\x209.4\x2013.8044\x209.22091\x2013.8044\x209C13.8044\x208.77909\x2013.6253\x208.6\x2013.4044\x208.6H3.10439Z','fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x3cc),'fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}}]},_0x50af4d=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x134010,_0x331106){const _0x439514=_0x57b2d2;return(0x0,_0x55b95c[_0x439514(0x69d)])(_0x2ff816,Object[_0x439514(0x82d)]({},_0x134010,{'id':_0x439514(0x6ca),'ref':_0x331106,'icon':_0x34f804}));});_0x50af4d[_0x57b2d2(0x6a2)]='TopmostIcon';let _0x5f4f78={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':'0\x200\x2016\x2016','width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x49c),'strokeLinecap':'round','strokeLinejoin':_0x57b2d2(0x2e8),'strokeWidth':1.35}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':'currentColor','d':'M3.7\x209.4H8.2','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.35}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M8.8\x202.1H14.2','strokeLinecap':'round','strokeWidth':1.2}},{'tag':'path','attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x339),'strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':'M11.5\x209.7H14.2','strokeLinecap':_0x57b2d2(0x2e8),'strokeWidth':1.2}},{'tag':_0x57b2d2(0x13a),'attrs':{'stroke':_0x57b2d2(0x268),'d':_0x57b2d2(0x609),'strokeLinecap':'round','strokeWidth':1.2}}]},_0x103e8a=(0x0,_0x55b95c['forwardRef'])(function(_0x541271,_0x57d48e){const _0x14d1ed=_0x57b2d2;return(0x0,_0x55b95c[_0x14d1ed(0x69d)])(_0x2ff816,Object[_0x14d1ed(0x82d)]({},_0x541271,{'id':'typography-icon','ref':_0x57d48e,'icon':_0x5f4f78}));});_0x103e8a['displayName']=_0x57b2d2(0x6a0);let _0x5ac729={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M4.46416\x202.03237C4.46416\x201.701\x204.19553\x201.43237\x203.86416\x201.43237C3.53279\x201.43237\x203.26416\x201.701\x203.26416\x202.03237V7.33338C3.26416\x2010.0313\x205.35834\x2012.2667\x207.9999\x2012.2667C10.6415\x2012.2667\x2012.7356\x2010.0313\x2012.7356\x207.33338V2.03237C12.7356\x201.701\x2012.467\x201.43237\x2012.1356\x201.43237C11.8043\x201.43237\x2011.5356\x201.701\x2011.5356\x202.03237V7.33338C11.5356\x209.42194\x209.92656\x2011.0667\x207.9999\x2011.0667C6.07325\x2011.0667\x204.46416\x209.42194\x204.46416\x207.33338V2.03237Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x667)}}]},_0x99aa5b=(0x0,_0x55b95c['forwardRef'])(function(_0x499e8c,_0x4b2a46){const _0x35fa94=_0x57b2d2;return(0x0,_0x55b95c[_0x35fa94(0x69d)])(_0x2ff816,Object[_0x35fa94(0x82d)]({},_0x499e8c,{'id':_0x35fa94(0x301),'ref':_0x4b2a46,'icon':_0x5ac729}));});_0x99aa5b[_0x57b2d2(0x6a2)]='UnderlineIcon';let _0x31b63f={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':'http://www.w3.org/2000/svg','fill':'none','viewBox':_0x57b2d2(0x3d6),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x67d)}},{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x18d),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}}]},_0x370439=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x96431a,_0x138af4){const _0x6cbe54=_0x57b2d2;return(0x0,_0x55b95c[_0x6cbe54(0x69d)])(_0x2ff816,Object[_0x6cbe54(0x82d)]({},_0x96431a,{'id':_0x6cbe54(0x524),'ref':_0x138af4,'icon':_0x31b63f}));});_0x370439['displayName']='UngroupIcon';let _0x5710bb={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2017\x2016','width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x2d4)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x410)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x7ab)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4ad)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x255)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x4e1)}}]},_0x3a11b1=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4a9c29,_0x3c6e5d){const _0x293845=_0x57b2d2;return(0x0,_0x55b95c[_0x293845(0x69d)])(_0x2ff816,Object['assign']({},_0x4a9c29,{'id':'unorder-icon','ref':_0x3c6e5d,'icon':_0x5710bb}));});_0x3a11b1[_0x57b2d2(0x6a2)]=_0x57b2d2(0x4b7);let _0x4647bc={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':'path','attrs':{'fill':'currentColor','d':_0x57b2d2(0x836)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M5.57564\x2011.5756L7.57564\x209.57564C7.80995\x209.34132\x208.18985\x209.34132\x208.42417\x209.57564L10.4242\x2011.5756C10.6585\x2011.81\x2010.6585\x2012.1899\x2010.4242\x2012.4242C10.1899\x2012.6585\x209.80995\x2012.6585\x209.57564\x2012.4242L8.5999\x2011.4484V14.6665C8.5999\x2014.9979\x208.33127\x2015.2665\x207.9999\x2015.2665C7.66853\x2015.2665\x207.3999\x2014.9979\x207.3999\x2014.6665V11.4484L6.42417\x2012.4242C6.18985\x2012.6585\x205.80995\x2012.6585\x205.57564\x2012.4242C5.34132\x2012.1899\x205.34132\x2011.81\x205.57564\x2011.5756Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x5ab)}}]},_0x2f2d49=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1877d4,_0x1d47df){const _0x3736ce=_0x57b2d2;return(0x0,_0x55b95c[_0x3736ce(0x69d)])(_0x2ff816,Object[_0x3736ce(0x82d)]({},_0x1877d4,{'id':_0x3736ce(0x80a),'ref':_0x1d47df,'icon':_0x4647bc}));});_0x2f2d49['displayName']=_0x57b2d2(0x623);let _0x3815a4={'tag':_0x57b2d2(0x4fc),'attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':'none','viewBox':'0\x200\x2017\x2016','width':'1em','height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x53b),'d':'M1.98682\x2013.4992C1.98682\x2012.5603\x202.74793\x2011.7992\x203.68682\x2011.7992H14.2868C15.2257\x2011.7992\x2015.9868\x2012.5603\x2015.9868\x2013.4992V13.4992C15.9868\x2014.4381\x2015.2257\x2015.1992\x2014.2868\x2015.1992H3.68682C2.74793\x2015.1992\x201.98682\x2014.4381\x201.98682\x2013.4992V13.4992Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M10.3014\x201.70389C9.85268\x200.479568\x208.12109\x200.479557\x207.67238\x201.70389L4.72235\x209.75326C4.60832\x2010.0644\x204.76811\x2010.4091\x205.07924\x2010.5231C5.39038\x2010.6371\x205.73504\x2010.4773\x205.84907\x2010.1662L6.99975\x207.02646C7.03588\x207.03324\x207.07314\x207.03679\x207.11123\x207.03679H10.9778L12.1247\x2010.1662C12.2387\x2010.4773\x2012.5834\x2010.6371\x2012.8945\x2010.5231C13.2057\x2010.4091\x2013.3654\x2010.0644\x2013.2514\x209.75326L10.3014\x201.70389ZM10.538\x205.83679L9.17467\x202.11682C9.11057\x201.94192\x208.8632\x201.94192\x208.7991\x202.11682L7.43576\x205.83679H10.538Z','fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}}]},_0x56045a=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x321c34,_0x3203da){const _0x950239=_0x57b2d2;return(0x0,_0x55b95c[_0x950239(0x69d)])(_0x2ff816,Object['assign']({},_0x321c34,{'id':_0x950239(0x6f0),'ref':_0x3203da,'icon':_0x3815a4}));});_0x56045a[_0x57b2d2(0x6a2)]=_0x57b2d2(0x1ab);let _0xc739a6={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x3d6),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x34a),'fillRule':'evenodd','clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x1fa)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x53b),'d':'M1.98682\x2013.4992C1.98682\x2012.5603\x202.74793\x2011.7992\x203.68682\x2011.7992H14.2868C15.2257\x2011.7992\x2015.9868\x2012.5603\x2015.9868\x2013.4992V13.4992C15.9868\x2014.4381\x2015.2257\x2015.1992\x2014.2868\x2015.1992H3.68682C2.74793\x2015.1992\x201.98682\x2014.4381\x201.98682\x2013.4992V13.4992Z'}}]},_0x5033fd=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x4c2186,_0x5dae29){const _0x5ac850=_0x57b2d2;return(0x0,_0x55b95c[_0x5ac850(0x69d)])(_0x2ff816,Object[_0x5ac850(0x82d)]({},_0x4c2186,{'id':_0x5ac850(0x889),'ref':_0x5dae29,'icon':_0xc739a6}));});_0x5033fd[_0x57b2d2(0x6a2)]=_0x57b2d2(0x2d9);let _0x1cfc5b={'tag':'svg','attrs':{'xmlns':'http://www.w3.org/2000/svg','viewBox':'0\x200\x2016\x2016','width':_0x57b2d2(0x53d),'height':'1em'},'children':[{'tag':'circle','attrs':{'cx':0x8,'cy':0x8,'r':5.4,'fill':_0x57b2d2(0x53b),'stroke':_0x57b2d2(0x268),'strokeWidth':1.2}}]},_0x53fc79=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x1dc433,_0x3d123e){const _0x186e87=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object[_0x186e87(0x82d)]({},_0x1dc433,{'id':_0x186e87(0x61f),'ref':_0x3d123e,'icon':_0x1cfc5b}));});_0x53fc79['displayName']=_0x57b2d2(0x393);let _0x55c4ec={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'viewBox':_0x57b2d2(0x163),'width':_0x57b2d2(0x53d),'height':_0x57b2d2(0x53d)},'children':[{'tag':'circle','attrs':{'cx':0x8,'cy':0x8,'r':5.1,'fill':_0x57b2d2(0x5b0),'stroke':'colorChannel1','strokeWidth':1.8}}]},_0x2a8eae=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x336a3a,_0x5beeda){const _0x9bd341=_0x57b2d2;return(0x0,_0x55b95c['createElement'])(_0x2ff816,Object['assign']({},_0x336a3a,{'id':_0x9bd341(0x7d2),'ref':_0x5beeda,'icon':_0x55c4ec}));});_0x2a8eae[_0x57b2d2(0x6a2)]=_0x57b2d2(0x5a5);let _0x381b93={'tag':'svg','attrs':{'xmlns':_0x57b2d2(0x6a9),'fill':_0x57b2d2(0x5b0),'viewBox':_0x57b2d2(0x163),'width':'1em','height':'1em'},'children':[{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x13b)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x695)}},{'tag':'path','attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x64e)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M6.2981\x2012.4999C6.2981\x2012.1685\x206.56672\x2011.8999\x206.8981\x2011.8999H14.4605C14.7918\x2011.8999\x2015.0605\x2012.1685\x2015.0605\x2012.4999C15.0605\x2012.8313\x2014.7918\x2013.0999\x2014.4605\x2013.0999H6.8981C6.56672\x2013.0999\x206.2981\x2012.8313\x206.2981\x2012.4999Z'}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':_0x57b2d2(0x795),'fillRule':_0x57b2d2(0x2c1),'clipRule':_0x57b2d2(0x2c1)}},{'tag':_0x57b2d2(0x13a),'attrs':{'fill':_0x57b2d2(0x268),'d':'M0.939453\x2012.5002C0.939453\x2011.4325\x201.80504\x2010.5669\x202.87279\x2010.5669C3.94054\x2010.5669\x204.80612\x2011.4325\x204.80612\x2012.5002C4.80612\x2013.568\x203.94054\x2014.4336\x202.87279\x2014.4336C1.80504\x2014.4336\x200.939453\x2013.568\x200.939453\x2012.5002ZM2.87279\x2011.7669C2.46778\x2011.7669\x202.13945\x2012.0952\x202.13945\x2012.5002C2.13945\x2012.9052\x202.46778\x2013.2336\x202.87279\x2013.2336C3.2778\x2013.2336\x203.60612\x2012.9052\x203.60612\x2012.5002C3.60612\x2012.0952\x203.2778\x2011.7669\x202.87279\x2011.7669Z','fillRule':_0x57b2d2(0x2c1),'clipRule':'evenodd'}}]},_0x2c7bd3=(0x0,_0x55b95c[_0x57b2d2(0x1c6)])(function(_0x5942e5,_0x235e43){const _0x1aa41a=_0x57b2d2;return(0x0,_0x55b95c[_0x1aa41a(0x69d)])(_0x2ff816,Object[_0x1aa41a(0x82d)]({},_0x5942e5,{'id':_0x1aa41a(0x834),'ref':_0x235e43,'icon':_0x381b93}));});_0x2c7bd3[_0x57b2d2(0x6a2)]='TodoListDoubleIcon';let _0x20a1bd={'none':_0x57b2d2(0x5b0),'solid':_0x57b2d2(0x1e4),'gradient':_0x57b2d2(0x175),'picture':_0x57b2d2(0x6ff)},_0x4266df={'type':_0x57b2d2(0x2c0),'angle':0x0,'stops':[{'color':_0x57b2d2(0x337),'offset':0x0},{'color':_0x57b2d2(0x3b6),'offset':0x64}]};function _0x3b7064(_0x9fcca5){const _0x30c14e=_0x57b2d2;var _0x3741b9,_0x421802,_0x1de6f0,_0x534c6d,_0x2e3017;let {className:_0x3b26d4,compact:_0x48216f=!0x0,disabled:_0x18c84f=!0x1,direction:_0x3e25c9,value:_0x6178a4,typeValues:_0x318d89=_0x20a1bd,color:_0x4b29a3=_0x30c14e(0x337),transparency:_0x5205e7=0x0,gradientValue:_0x17ec42=_0x4266df,labels:_0xc036d9,tabLabels:_0x1f7c3b,noFillEditor:_0x13d339,pictureFillEditor:_0x2ad2c6,renderColorIcon:_0x4bb67f,keepColorPickerOpenOnChange:_0x12337b=!0x1,onChange:_0x3e3206,onColorChange:_0x574b80,onTransparencyChange:_0x42b9f7,onGradientChange:_0x48d34a}=_0x9fcca5,[_0x332112,_0xd43268]=(0x0,_0x55b95c['useState'])(!0x1),_0xc7fbea=[{'label':(_0x3741b9=_0x1f7c3b==null?void 0x0:_0x1f7c3b[_0x30c14e(0x241)])==null?_0xc036d9[_0x30c14e(0x241)]:_0x3741b9,'value':_0x318d89[_0x30c14e(0x5b0)]},{'label':(_0x421802=_0x1f7c3b==null?void 0x0:_0x1f7c3b['solidFill'])==null?_0xc036d9[_0x30c14e(0x5cb)]:_0x421802,'value':_0x318d89[_0x30c14e(0x1e4)]},{'label':(_0x1de6f0=_0x1f7c3b==null?void 0x0:_0x1f7c3b[_0x30c14e(0x7fe)])==null?_0xc036d9[_0x30c14e(0x7fe)]:_0x1de6f0,'value':_0x318d89[_0x30c14e(0x175)]},{'label':(_0x534c6d=_0x1f7c3b==null?void 0x0:_0x1f7c3b[_0x30c14e(0x713)])==null?_0xc036d9[_0x30c14e(0x713)]:_0x534c6d,'value':_0x318d89[_0x30c14e(0x6ff)]}];return(0x0,_0x43e701[_0x30c14e(0x39b)])('div',{'dir':_0x3e25c9,'className':(0x0,_0x3f5bc5[_0x30c14e(0x679)])(_0x30c14e(0x315),_0x48216f?_0x30c14e(0x2b4):_0x30c14e(0x850),_0x3b26d4),'children':[(0x0,_0x43e701[_0x30c14e(0x715)])(_0x3f5bc5[_0x30c14e(0x5fe)],{'className':(0x0,_0x3f5bc5['clsx'])(_0x30c14e(0x228),_0x48216f&&_0x30c14e(0x883),_0x18c84f&&_0x30c14e(0x3df)),'items':_0xc7fbea,'value':_0x6178a4,'onChange':_0xb0b144=>{_0x18c84f||_0x3e3206==null||_0x3e3206(_0xb0b144);}}),_0x6178a4===_0x318d89[_0x30c14e(0x5b0)]&&_0x13d339,_0x6178a4===_0x318d89[_0x30c14e(0x1e4)]&&(0x0,_0x43e701[_0x30c14e(0x39b)])(_0x30c14e(0x3ec),{'className':(0x0,_0x3f5bc5['clsx'])(_0x30c14e(0x394),_0x48216f?_0x30c14e(0x546):_0x30c14e(0x2b4)),'children':[(0x0,_0x43e701[_0x30c14e(0x39b)])('div',{'className':'univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','children':[(0x0,_0x43e701[_0x30c14e(0x715)])(_0x30c14e(0x2bf),{'className':'univer-shrink-0\x20univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0xc036d9['color']}),(0x0,_0x43e701[_0x30c14e(0x715)])(_0x3f5bc5[_0x30c14e(0x5a4)],{'disabled':_0x18c84f,'overlay':(0x0,_0x43e701['jsx'])(_0x30c14e(0x3ec),{'className':_0x30c14e(0x549),'dir':_0x3e25c9,'children':(0x0,_0x43e701[_0x30c14e(0x715)])(_0x3f5bc5['ColorPicker'],{'value':_0x4b29a3,'onChange':_0x21af99=>{_0x574b80==null||_0x574b80(_0x21af99),_0x12337b||_0xd43268(!0x1);}})}),'open':_0x332112,'onOpenChange':_0xd43268,'children':(0x0,_0x43e701['jsxs'])('a',{'className':'univer-flex\x20univer-cursor-pointer\x20univer-items-center\x20univer-gap-1.5\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','children':[(_0x2e3017=_0x4bb67f==null?void 0x0:_0x4bb67f(_0x4b29a3))==null?(0x0,_0x43e701[_0x30c14e(0x715)])(_0x5033fd,{'className':_0x30c14e(0x3ce),'extend':{'colorChannel1':_0x4b29a3}}):_0x2e3017,(0x0,_0x43e701[_0x30c14e(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x30c14e(0x679)])(_0x30c14e(0x435),{'univer-rotate-180':_0x332112})})]})})]}),(0x0,_0x43e701['jsxs'])('div',{'className':_0x30c14e(0x861),'children':[(0x0,_0x43e701[_0x30c14e(0x715)])(_0x30c14e(0x2bf),{'className':_0x30c14e(0x7cb),'children':_0xc036d9[_0x30c14e(0x1b3)]}),(0x0,_0x43e701[_0x30c14e(0x715)])(_0x30c14e(0x3ec),{'className':_0x30c14e(0x74c),'children':(0x0,_0x43e701[_0x30c14e(0x715)])(_0x3f5bc5['InputNumber'],{'className':_0x30c14e(0x54b),'value':_0x5205e7,'disabled':_0x18c84f,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x438445=>_0x438445+'%','parser':_0x547aff=>(_0x547aff==null?void 0x0:_0x547aff[_0x30c14e(0x370)]('%',''))||'','onChange':_0x10068f=>_0x42b9f7==null?void 0x0:_0x42b9f7(_0x10068f==null?0x0:_0x10068f)})})]})]}),_0x6178a4===_0x318d89['gradient']&&(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x30c14e(0x234)],{'className':_0x30c14e(0x16f),'compact':_0x48216f,'value':_0x17ec42,'onChange':_0x48d34a}),_0x6178a4===_0x318d89['picture']&&_0x2ad2c6]});}var _0x4b2070=_0x57b2d2(0x85a),_0x587148=_0x57b2d2(0x3fa);let _0x2395d4={};function _0x27b5f4(_0xbf825a,_0x1d971c){return function(_0x51fd83,_0x3d2f82){_0x1d971c(_0x51fd83,_0x3d2f82,_0xbf825a);};}function _0x3b7d19(_0x17738d,_0x1b4541,_0x204053,_0x2a7b39){const _0x3e355d=_0x57b2d2;var _0x2ae570=arguments[_0x3e355d(0x1bf)],_0x154536=_0x2ae570<0x3?_0x1b4541:_0x2a7b39===null?_0x2a7b39=Object[_0x3e355d(0x621)](_0x1b4541,_0x204053):_0x2a7b39,_0x189706;if(typeof Reflect==_0x3e355d(0x60f)&&typeof Reflect[_0x3e355d(0x21f)]==_0x3e355d(0x236))_0x154536=Reflect[_0x3e355d(0x21f)](_0x17738d,_0x1b4541,_0x204053,_0x2a7b39);else{for(var _0x4aafd0=_0x17738d['length']-0x1;_0x4aafd0>=0x0;_0x4aafd0--)(_0x189706=_0x17738d[_0x4aafd0])&&(_0x154536=(_0x2ae570<0x3?_0x189706(_0x154536):_0x2ae570>0x3?_0x189706(_0x1b4541,_0x204053,_0x154536):_0x189706(_0x1b4541,_0x204053))||_0x154536);}return _0x2ae570>0x3&&_0x154536&&Object[_0x3e355d(0x81c)](_0x1b4541,_0x204053,_0x154536),_0x154536;}let _0x3d2d6b={'ShapeAccentBorderCallout1Icon':_0x57322e,'ShapeAccentBorderCallout2Icon':_0xb1e980,'ShapeAccentBorderCallout3Icon':_0xf109d5,'ShapeAccentCallout1Icon':_0x3bb1d4,'ShapeAccentCallout2Icon':_0xfd8ce5,'ShapeAccentCallout3Icon':_0x24360f,'ShapeActionButtonBackPreviousIcon':_0x884f8f,'ShapeActionButtonBeginningIcon':_0x22e82c,'ShapeActionButtonBlankIcon':_0x4d457d,'ShapeActionButtonDocumentIcon':_0x5bbfc4,'ShapeActionButtonEndIcon':_0x3207da,'ShapeActionButtonForwardNextIcon':_0x4b08b8,'ShapeActionButtonHelpIcon':_0x5df64e,'ShapeActionButtonHomeIcon':_0x51513c,'ShapeActionButtonInformationIcon':_0x4e1d34,'ShapeActionButtonMovieIcon':_0xd0289b,'ShapeActionButtonReturnIcon':_0x4ff8a0,'ShapeActionButtonSoundIcon':_0x56602,'ShapeArcIcon':_0x340acc,'ShapeBentArrowIcon':_0x1b360f,'ShapeBentConnector3Arrow1Icon':_0x491e31,'ShapeBentConnector3Arrow2Icon':_0xeee8dc,'ShapeBentConnector3Icon':_0x4fcff2,'ShapeBentUpArrowIcon':_0x34cbbd,'ShapeBevelIcon':_0x451829,'ShapeBlockArcIcon':_0x1891e5,'ShapeBorderCallout1Icon':_0x4b5d82,'ShapeBorderCallout2Icon':_0x286c04,'ShapeBorderCallout3Icon':_0x56c6b9,'ShapeBracePairIcon':_0x13959a,'ShapeBracketPairIcon':_0x169662,'ShapeCallout1Icon':_0x25476e,'ShapeCallout2Icon':_0x1ef5cc,'ShapeCallout3Icon':_0x36bf9b,'ShapeCanIcon':_0x305246,'ShapeChartPlusIcon':_0x385ff1,'ShapeChartStarIcon':_0x454ef9,'ShapeChartXIcon':_0x4458fb,'ShapeChevronIcon':_0x3aca2f,'ShapeChordIcon':_0xbb37c0,'ShapeCircularArrowIcon':_0x2633f5,'ShapeCloudCalloutIcon':_0x2524f5,'ShapeCloudIcon':_0x25f2e5,'ShapeCornerIcon':_0x4430c9,'ShapeCornerTabsIcon':_0x533729,'ShapeCubeIcon':_0x329f27,'ShapeCurvedConnector3Arrow1Icon':_0xb07b63,'ShapeCurvedConnector3Arrow2Icon':_0x103e5b,'ShapeCurvedConnector3Icon':_0x5f1a68,'ShapeCurvedDownArrowIcon':_0xbb8441,'ShapeCurvedLeftArrowIcon':_0x242845,'ShapeCurvedRightArrowIcon':_0x1f2ba3,'ShapeCurvedUpArrowIcon':_0x25e591,'ShapeDecagonIcon':_0xfcf8a2,'ShapeDiagStripeIcon':_0x1c1d67,'ShapeDiamondIcon':_0x4f469f,'ShapeDodecagonIcon':_0x106544,'ShapeDonutIcon':_0x41b24e,'ShapeDoubleWaveIcon':_0x14a990,'ShapeDownArrowCalloutIcon':_0x1323fd,'ShapeDownArrowIcon':_0x222a51,'ShapeEllipseIcon':_0x27af9a,'ShapeEllipseRibbon2Icon':_0x56d698,'ShapeEllipseRibbonIcon':_0x358d7c,'ShapeFlowChartAlternateProcessIcon':_0x138eaf,'ShapeFlowChartCollateIcon':_0x1be692,'ShapeFlowChartConnectorIcon':_0x5d3b35,'ShapeFlowChartDecisionIcon':_0x2e4085,'ShapeFlowChartDelayIcon':_0x51c5e9,'ShapeFlowChartDisplayIcon':_0x3f7edc,'ShapeFlowChartDocumentIcon':_0x222903,'ShapeFlowChartExtractIcon':_0x57479d,'ShapeFlowChartInputOutputIcon':_0x4bb6da,'ShapeFlowChartInternalStorageIcon':_0x1df02a,'ShapeFlowChartMagneticDiskIcon':_0x3f90ca,'ShapeFlowChartMagneticDrumIcon':_0x5e008e,'ShapeFlowChartMagneticTapeIcon':_0x565c63,'ShapeFlowChartManualInputIcon':_0x5f23c2,'ShapeFlowChartManualOperationIcon':_0xe6c681,'ShapeFlowChartMergeIcon':_0x32222a,'ShapeFlowChartMultidocumentIcon':_0x5b63d6,'ShapeFlowChartOfflineStorageIcon':_0x2dfa68,'ShapeFlowChartOffpageConnectorIcon':_0x8e55a,'ShapeFlowChartOnlineStorageIcon':_0x2c45b7,'ShapeFlowChartOrIcon':_0x26c1dd,'ShapeFlowChartPredefinedProcessIcon':_0xe62392,'ShapeFlowChartPreparationIcon':_0x4c6c60,'ShapeFlowChartProcessIcon':_0x22f9b9,'ShapeFlowChartPunchedCardIcon':_0x581baf,'ShapeFlowChartPunchedTapeIcon':_0x10425b,'ShapeFlowChartSortIcon':_0x2def74,'ShapeFlowChartSummingJunctionIcon':_0x14b204,'ShapeFlowChartTerminatorIcon':_0x2892c7,'ShapeFolderCornerIcon':_0x451f69,'ShapeFrameIcon':_0x51b623,'ShapeFunnelIcon':_0x3a5d41,'ShapeGear6Icon':_0x316c69,'ShapeGear9Icon':_0xb7e285,'ShapeHalfFrameIcon':_0x1ca340,'ShapeHeartIcon':_0x472e95,'ShapeHeptagonIcon':_0x54232a,'ShapeHexagonIcon':_0x4b215d,'ShapeHomePlateIcon':_0xc708da,'ShapeHorizontalScrollIcon':_0x379977,'ShapeIcon':_0x5d3504,'ShapeIrregularSeal1Icon':_0x13f083,'ShapeIrregularSeal2Icon':_0x32dec8,'ShapeLeftArrowCalloutIcon':_0x270dc6,'ShapeLeftArrowIcon':_0x4767a8,'ShapeLeftBraceIcon':_0x146077,'ShapeLeftBracketIcon':_0x5ebf9f,'ShapeLeftCircularArrowIcon':_0x574fd9,'ShapeLeftRightArrowCalloutIcon':_0x23497e,'ShapeLeftRightArrowIcon':_0x3b93f0,'ShapeLeftRightCircularArrowIcon':_0x25466b,'ShapeLeftRightRibbonIcon':_0x4d85f6,'ShapeLeftRightUpArrowIcon':_0x298ce7,'ShapeLeftUpArrowIcon':_0x5edb09,'ShapeLightningBoltIcon':_0x239026,'ShapeLineIcon':_0xa66aa5,'ShapeLineInvIcon':_0x5013bd,'ShapeMathDivideIcon':_0x157912,'ShapeMathEqualIcon':_0x4859b8,'ShapeMathMinusIcon':_0x3fc6f1,'ShapeMathMultiplyIcon':_0x2631fb,'ShapeMathNotEqualIcon':_0x4e9f63,'ShapeMathPlusIcon':_0xebc4a2,'ShapeMoonIcon':_0x12eda4,'ShapeNoSmokingIcon':_0x3618c8,'ShapeNonIsoscelesTrapezoidIcon':_0x187d78,'ShapeNotchedRightArrowIcon':_0x59a7b,'ShapeOctagonIcon':_0x34756a,'ShapeParallelogramIcon':_0x2799e7,'ShapePentagonIcon':_0x48962e,'ShapePieIcon':_0x946d64,'ShapePieWedgeIcon':_0x26c8a2,'ShapePlaqueIcon':_0x24498e,'ShapePlaqueTabsIcon':_0x25fddf,'ShapePlusIcon':_0x36cf1d,'ShapeQuadArrowCalloutIcon':_0x2a0ae1,'ShapeQuadArrowIcon':_0x2ca17a,'ShapeRectIcon':_0x561d92,'ShapeRectTextboxHorizontalIcon':_0x3cb705,'ShapeRectTextboxVerticalIcon':_0x2de94a,'ShapeRibbon2Icon':_0x23390,'ShapeRibbonIcon':_0x76da0b,'ShapeRightArrowCalloutIcon':_0x473328,'ShapeRightArrowIcon':_0x5cc7db,'ShapeRightBraceIcon':_0x313212,'ShapeRightBracketIcon':_0x591e62,'ShapeRound1RectIcon':_0x403d2d,'ShapeRound2DiagRectIcon':_0x7e1b58,'ShapeRound2SameRectIcon':_0x466ba3,'ShapeRoundRectIcon':_0x3a3078,'ShapeRtTriangleIcon':_0xcee207,'ShapeSmileyFaceIcon':_0x3ed9c4,'ShapeSnip1RectIcon':_0x5648e3,'ShapeSnip2DiagRectIcon':_0x1c06e0,'ShapeSnip2SameRectIcon':_0x955a7d,'ShapeSnipRoundRectIcon':_0x13294a,'ShapeSquareTabsIcon':_0x56d4aa,'ShapeStar10Icon':_0x499d60,'ShapeStar12Icon':_0x32b61a,'ShapeStar16Icon':_0x19af30,'ShapeStar24Icon':_0x1fb960,'ShapeStar32Icon':_0x37808f,'ShapeStar4Icon':_0x57a058,'ShapeStar5Icon':_0x574655,'ShapeStar6Icon':_0x8900e9,'ShapeStar7Icon':_0x34304d,'ShapeStar8Icon':_0x385bf2,'ShapeStraightConnector1Icon':_0x364700,'ShapeStraightConnector2Icon':_0x323a95,'ShapeStripedRightArrowIcon':_0x4d2989,'ShapeSunIcon':_0x3fa01e,'ShapeSwooshArrowIcon':_0x5f3214,'ShapeTeardropIcon':_0x3232cf,'ShapeTrapezoidIcon':_0x4b05e7,'ShapeTriangleIcon':_0x48c25b,'ShapeUpArrowCalloutIcon':_0x1b0e28,'ShapeUpArrowIcon':_0xca6c75,'ShapeUpDownArrowCalloutIcon':_0x58a346,'ShapeUpDownArrowIcon':_0x31a701,'ShapeUturnArrowIcon':_0x49c6b2,'ShapeVerticalScrollIcon':_0x3714f6,'ShapeWaveIcon':_0x48c5ce,'ShapeWedgeEllipseCalloutIcon':_0x5a619d,'ShapeWedgeRectCalloutIcon':_0x34fa45,'ShapeWedgeRoundRectCalloutIcon':_0x5ba824},_0x1d48a0=class extends _0x2cafcd[_0x57b2d2(0x185)]{constructor(_0x1ef14e){const _0x52726b=_0x57b2d2;super(),this['_iconManager']=_0x1ef14e,this[_0x52726b(0x854)]();}['_registerIcons'](){const _0x25c6b7=_0x57b2d2;this[_0x25c6b7(0x1d7)](this[_0x25c6b7(0x3ff)][_0x25c6b7(0x368)](_0x3d2d6b));}};_0x1d48a0=_0x3b7d19([_0x27b5f4(0x0,(0x0,_0x2cafcd['Inject'])(_0x26fc1b[_0x57b2d2(0x86a)]))],_0x1d48a0);function _0x472c52(_0x13a91e){'@babel/helpers - typeof';const _0x5eb6c3=_0x57b2d2;return _0x472c52=typeof Symbol=='function'&&typeof Symbol[_0x5eb6c3(0x749)]=='symbol'?function(_0x20af1e){return typeof _0x20af1e;}:function(_0x1eb681){const _0x5c02f5=_0x5eb6c3;return _0x1eb681&&typeof Symbol==_0x5c02f5(0x236)&&_0x1eb681['constructor']===Symbol&&_0x1eb681!==Symbol[_0x5c02f5(0x31e)]?'symbol':typeof _0x1eb681;},_0x472c52(_0x13a91e);}function _0x1f000a(_0x4d056f,_0x49baf0){const _0x359029=_0x57b2d2;if(_0x472c52(_0x4d056f)!='object'||!_0x4d056f)return _0x4d056f;var _0x38e986=_0x4d056f[Symbol[_0x359029(0x6ea)]];if(_0x38e986!==void 0x0){var _0x4a0744=_0x38e986[_0x359029(0x211)](_0x4d056f,_0x49baf0||_0x359029(0x837));if(_0x472c52(_0x4a0744)!=_0x359029(0x60f))return _0x4a0744;throw TypeError(_0x359029(0x790));}return(_0x49baf0===_0x359029(0x39e)?String:Number)(_0x4d056f);}function _0x35fbfa(_0x161f48){const _0x3aadab=_0x57b2d2;var _0xcf65ec=_0x1f000a(_0x161f48,_0x3aadab(0x39e));return _0x472c52(_0xcf65ec)==_0x3aadab(0x67e)?_0xcf65ec:_0xcf65ec+'';}function _0x181eb9(_0x138659,_0x513dc2,_0x4ba7ce){return(_0x513dc2=_0x35fbfa(_0x513dc2))in _0x138659?Object['defineProperty'](_0x138659,_0x513dc2,{'value':_0x4ba7ce,'enumerable':!0x0,'configurable':!0x0,'writable':!0x0}):_0x138659[_0x513dc2]=_0x4ba7ce,_0x138659;}let _0x161fb0=class extends _0x2cafcd['Plugin']{constructor(_0x1d9a51=_0x2395d4,_0x52b983,_0x312f3f){const _0x374789=_0x57b2d2;super(),this[_0x374789(0x343)]=_0x1d9a51,this[_0x374789(0x1d3)]=_0x52b983,this[_0x374789(0x887)]=_0x312f3f;let {..._0x143ddb}=(0x0,_0x2cafcd[_0x374789(0x287)])({},_0x2395d4,this[_0x374789(0x343)]);this[_0x374789(0x887)][_0x374789(0x830)](_0x374789(0x668),_0x143ddb);}[_0x57b2d2(0x397)](){const _0x3fe6b5=_0x57b2d2;this['_injector'][_0x3fe6b5(0x66a)]([_0x1d48a0]),this[_0x3fe6b5(0x1d3)][_0x3fe6b5(0x452)](_0x1d48a0);}};_0x181eb9(_0x161fb0,_0x57b2d2(0x1d9),_0x2cafcd['UniverInstanceType'][_0x57b2d2(0x197)]),_0x181eb9(_0x161fb0,_0x57b2d2(0x319),_0x57b2d2(0x674)),_0x181eb9(_0x161fb0,_0x57b2d2(0x5d3),_0x4b2070),_0x181eb9(_0x161fb0,_0x57b2d2(0x81e),_0x587148),_0x161fb0=_0x3b7d19([_0x27b5f4(0x1,(0x0,_0x2cafcd[_0x57b2d2(0x76a)])(_0x2cafcd['Injector'])),_0x27b5f4(0x2,_0x2cafcd['IConfigService'])],_0x161fb0);function _0x561cd2(_0x488c16){const _0x26e20d=_0x57b2d2;return!!_0x488c16&&typeof _0x488c16=='object'&&typeof _0x488c16[_0x26e20d(0x1dd)]==_0x26e20d(0x39e);}function _0x556634(_0x290bc9,_0x3008ec){const _0x4a88be=_0x57b2d2;var _0x42f2d6,_0x4d2bb9,_0x2cf8b5,_0xd588f0,_0xa66a08,_0x1cc9b7,_0x3a80b5;let _0x28ad91=(_0x42f2d6=_0x290bc9['getRenderById'](_0x3008ec[_0x4a88be(0x848)]))==null?void 0x0:_0x42f2d6[_0x4a88be(0x229)];if(!_0x28ad91)return!0x1;let _0x338b92=(0x0,_0x293e90[_0x4a88be(0x3ee)])(_0x3008ec),_0xab256b=(_0x4d2bb9=(_0x2cf8b5=_0x28ad91[_0x4a88be(0x419)])==null?void 0x0:_0x2cf8b5['call'](_0x28ad91,_0x338b92))==null?(_0xd588f0=_0x28ad91[_0x4a88be(0x600)])==null?void 0x0:_0xd588f0[_0x4a88be(0x211)](_0x28ad91,_0x338b92):_0x4d2bb9;return _0x561cd2(_0xab256b)?((_0xa66a08=_0x28ad91['getTransformerByCreate'])==null||(_0x3a80b5=(_0x1cc9b7=_0xa66a08['call'](_0x28ad91))[_0x4a88be(0x2fc)])==null||_0x3a80b5['call'](_0x1cc9b7,_0xab256b),!0x0):!0x1;}function _0x552899(_0x573ce3,_0x216c08){const _0x3ec7b6=_0x57b2d2;var _0x1e76d3,_0xce4873;let _0x53ab57=(_0x1e76d3=_0x573ce3[_0x3ec7b6(0x6bc)](_0x216c08))==null||(_0x1e76d3=_0x1e76d3[_0x3ec7b6(0x229)])==null||(_0xce4873=_0x1e76d3[_0x3ec7b6(0x56e)])==null?void 0x0:_0xce4873[_0x3ec7b6(0x211)](_0x1e76d3);return _0x53ab57!=null&&_0x53ab57[_0x3ec7b6(0x46c)]?(_0x53ab57[_0x3ec7b6(0x46c)](),!0x0):!0x1;}let _0x4d5d0f={'borderEnabled':!0x0,'borderStroke':_0x57b2d2(0x543),'borderStrokeWidth':0x1,'borderSpacing':0x2,'anchorFill':_0x57b2d2(0x337),'anchorStroke':'#4086f4','anchorStrokeWidth':1.5,'anchorSize':0x8,'anchorCornerRadius':0x2,'anchorStyle':_0x57b2d2(0x4c0),'rotateEnabled':!0x0,'rotateSize':0x12,'rotateCornerRadius':0x9,'rotateAnchorOffset':0x1c,'rotateAnchorPosition':'bottom','rotateLineEnabled':!0x1,'rotateFill':_0x57b2d2(0x337),'rotateStroke':'#4086f4','rotateStrokeWidth':0x1,'rotateIconEnabled':!0x0,'rotateIconStroke':_0x57b2d2(0x543),'rotateIconStrokeWidth':1.25,'resizeEnabled':!0x0,'keepRatio':!0x1,'moveBoundaryEnabled':!0x1};function _0x42a348(_0x2cfd2d){const _0x64a54d=_0x57b2d2;var _0x2e0dbb,_0x46f371,_0x4dd59b,_0x310185,_0x4a08ca,_0x1e17b1,_0x46b293,_0xe8ab24,_0x53c3dc,_0xe90b3f,_0x1a0728,_0x2ea823,_0x41a52a;let {shapeData:_0x413625,disableShapeOption:_0x39a615,onUpdateShapeData:_0x1ebc0f,onUpdateShapeFillImage:_0x4cf577}=_0x2cfd2d,_0x1e206c=(0x0,_0x26fc1b[_0x64a54d(0x755)])(_0x2cafcd['LocaleService']),_0x51039b=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd[_0x64a54d(0x3e1)]),_0x5c8496=(0x0,_0x26fc1b[_0x64a54d(0x755)])(_0x2cafcd[_0x64a54d(0x308)]),_0x4801c7=(0x0,_0x55b95c[_0x64a54d(0x7b5)])(null),_0x52a3a2=_0x413625[_0x64a54d(0x291)],_0x22c3f7=!!(_0x52a3a2!=null&&_0x52a3a2[_0x64a54d(0x7b7)]),[_0x201589,_0x4bcbf8]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0x2e0dbb=_0x52a3a2==null?void 0x0:_0x52a3a2[_0x64a54d(0x7b1)])==null?0x1:_0x2e0dbb),[_0x10903a,_0x38893e]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0x46f371=_0x52a3a2==null?void 0x0:_0x52a3a2['imageFillMode'])==null?_0x21428d[_0x64a54d(0x562)]['Stretch']:_0x46f371),[_0x460809,_0x533259]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0x4dd59b=_0x52a3a2==null?void 0x0:_0x52a3a2[_0x64a54d(0x828)])==null?!0x1:_0x4dd59b),[_0x5875b2,_0x1107dd]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0x310185=_0x52a3a2==null||(_0x4a08ca=_0x52a3a2[_0x64a54d(0x4c1)])==null?void 0x0:_0x4a08ca[_0x64a54d(0x140)])==null?0x0:_0x310185),[_0x3a511c,_0x2e991d]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0x1e17b1=_0x52a3a2==null||(_0x46b293=_0x52a3a2[_0x64a54d(0x4c1)])==null?void 0x0:_0x46b293[_0x64a54d(0x73f)])==null?0x0:_0x1e17b1),[_0x1d00a8,_0x4d9b7c]=(0x0,_0x55b95c['useState'])((_0xe8ab24=_0x52a3a2==null||(_0x53c3dc=_0x52a3a2['imageTile'])==null?void 0x0:_0x53c3dc[_0x64a54d(0x6ec)])==null?0x1:_0xe8ab24),[_0x3804ce,_0x5396eb]=(0x0,_0x55b95c[_0x64a54d(0x614)])((_0xe90b3f=_0x52a3a2==null||(_0x1a0728=_0x52a3a2[_0x64a54d(0x4c1)])==null?void 0x0:_0x1a0728['scaleY'])==null?0x1:_0xe90b3f),[_0x159526,_0x16678d]=(0x0,_0x55b95c['useState'])((_0x2ea823=_0x52a3a2==null||(_0x41a52a=_0x52a3a2[_0x64a54d(0x4c1)])==null?void 0x0:_0x41a52a['alignment'])==null?'tl':_0x2ea823),_0x32bb93=_0x10903a===_0x21428d['ImageFillModeEnum'][_0x64a54d(0x7ed)],_0x5138c6=Math[_0x64a54d(0x2e8)]((0x1-_0x201589)*0x64),_0x214d15=Math['round'](_0x1d00a8*0x64),_0x310ea8=Math[_0x64a54d(0x2e8)](_0x3804ce*0x64),_0xfd3cfc=[{'label':_0x1e206c['t'](_0x64a54d(0x735)),'value':'tl'},{'label':_0x1e206c['t'](_0x64a54d(0x1e0)),'value':'t'},{'label':_0x1e206c['t'](_0x64a54d(0x31c)),'value':'tr'},{'label':_0x1e206c['t'](_0x64a54d(0x473)),'value':'l'},{'label':_0x1e206c['t'](_0x64a54d(0x77e)),'value':_0x64a54d(0x4c3)},{'label':_0x1e206c['t'](_0x64a54d(0x361)),'value':'r'},{'label':_0x1e206c['t'](_0x64a54d(0x641)),'value':'bl'},{'label':_0x1e206c['t'](_0x64a54d(0x74e)),'value':'b'},{'label':_0x1e206c['t']('shape-editor-ui.fill.picture.align.br'),'value':'br'}],_0xcb487a=_0x4fd748=>{_0x1ebc0f({'oldShapeData':{'fill':_0x52a3a2?{..._0x52a3a2}:void 0x0}},{'fill':{..._0x52a3a2,..._0x4fd748}});},_0x32b96c=_0x12363e=>{const _0x1195a6=_0x64a54d;_0xcb487a({'imageTile':{..._0x52a3a2==null?void 0x0:_0x52a3a2[_0x1195a6(0x4c1)],..._0x12363e}});},_0x800c6b=()=>{const _0x29107a=_0x64a54d;var _0x5ddc24;return(_0x5ddc24=_0x4801c7[_0x29107a(0x654)])==null?void 0x0:_0x5ddc24['click']();},_0x1887b3=async _0x2d2b4d=>{const _0x68fb94=_0x64a54d;var _0x3d0990;let _0x4fad8e=(_0x3d0990=_0x2d2b4d['target']['files'])==null?void 0x0:_0x3d0990[0x0];if(!_0x4fad8e)return;_0x2d2b4d[_0x68fb94(0x1f3)][_0x68fb94(0x865)]='';let _0x48bb6f=await _0x5c8496[_0x68fb94(0x47a)](_0x4fad8e);if(_0x48bb6f==null)return;let {imageSourceType:_0x475eb3,source:_0x29ff03,base64Cache:_0xd80b8d}=_0x48bb6f,{image:_0x3e8220}=await(0x0,_0x293e90['getImageSize'])(_0xd80b8d||'');_0x5c8496[_0x68fb94(0x6fb)](_0x29ff03,_0x475eb3,_0x3e8220),_0x1ebc0f({'oldShapeData':{'fill':_0x52a3a2?{..._0x52a3a2}:void 0x0}},{'fill':{..._0x52a3a2,'fillType':_0x21428d[_0x68fb94(0x6eb)][_0x68fb94(0x545)],'fillImageSource':_0x29ff03,'fillImageSourceType':_0x475eb3}}),_0x4cf577==null||_0x4cf577(_0x3e8220);},_0x588636=_0x64a54d(0x6ed),_0x28faa6='univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3';return(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x204),'children':[(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x880),'children':[(0x0,_0x43e701['jsx'])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t'](_0x64a54d(0x33d))}),(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x3ec),{'className':'univer-flex\x20univer-items-center\x20univer-gap-2','children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x148),{'ref':_0x4801c7,'type':'file','accept':'image/*','className':_0x64a54d(0x3da),'onChange':_0x1887b3}),(0x0,_0x43e701['jsxs'])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x503),'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x894),{'type':_0x64a54d(0x894),'disabled':_0x39a615,'className':_0x64a54d(0x4ce),'onClick':_0x800c6b,'children':(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x2bf),{'children':[_0x1e206c['t'](_0x64a54d(0x13c)),'\x20']})}),_0x22c3f7&&(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x44b),'children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2a3),{'src':_0x52a3a2==null?void 0x0:_0x52a3a2[_0x64a54d(0x7b7)],'alt':'','className':'univer-block\x20univer-h-[100px]\x20univer-w-[100px]\x20univer-object-cover'})})]})]})]}),(0x0,_0x43e701['jsxs'])(_0x64a54d(0x3ec),{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t'](_0x64a54d(0x76f))}),(0x0,_0x43e701[_0x64a54d(0x715)])('div',{'className':'univer-w-20','children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x64a54d(0x740)],{'className':_0x64a54d(0x54b),'value':_0x5138c6,'disabled':_0x39a615,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x5354c0=>_0x5354c0+'%','parser':_0x17b5c7=>(_0x17b5c7==null?void 0x0:_0x17b5c7[_0x64a54d(0x370)]('%',''))||'','onChange':_0xa5573b=>{const _0x26e43c=_0x64a54d;let _0x5f6f7f=(0x64-Math[_0x26e43c(0x729)](0x0,Math[_0x26e43c(0x4a5)](0x64,_0xa5573b==null?0x0:_0xa5573b)))/0x64;_0x4bcbf8(_0x5f6f7f),_0xcb487a({'imageOpacity':_0x5f6f7f}),_0x51039b[_0x26e43c(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1);},'onFocus':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd[_0x64a54d(0x29e)],!0x0),'onBlur':()=>_0x51039b['setContextValue'](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1)})})]}),(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x64a54d(0x443)],{'checked':_0x32bb93,'disabled':_0x39a615,'onChange':_0x106569=>{const _0x4cd5c9=_0x64a54d;let _0x182c3c=_0x106569?_0x21428d[_0x4cd5c9(0x562)]['Tile']:_0x21428d[_0x4cd5c9(0x562)]['Stretch'];_0x38893e(_0x182c3c),_0xcb487a({'imageFillMode':_0x182c3c});},'children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':'univer-text-sm','children':_0x1e206c['t'](_0x64a54d(0x741))})}),_0x32bb93&&(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x313),'children':[(0x0,_0x43e701[_0x64a54d(0x39b)])('div',{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t'](_0x64a54d(0x167))}),(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x74c),'children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x3f5bc5[_0x64a54d(0x740)],{'className':_0x64a54d(0x54b),'value':_0x5875b2,'disabled':_0x39a615,'step':0x1,'onChange':_0x32d56f=>{_0x32b96c({'offsetX':_0x32d56f==null?0x0:_0x32d56f}),_0x1107dd(_0x32d56f==null?0x0:_0x32d56f);},'onFocus':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd[_0x64a54d(0x29e)],!0x0),'onBlur':()=>_0x51039b['setContextValue'](_0x2cafcd[_0x64a54d(0x29e)],!0x1)})})]}),(0x0,_0x43e701[_0x64a54d(0x39b)])('div',{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t']('shape-editor-ui.fill.picture.offsetY')}),(0x0,_0x43e701['jsx'])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x74c),'children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x3f5bc5['InputNumber'],{'className':_0x64a54d(0x54b),'value':_0x3a511c,'disabled':_0x39a615,'step':0x1,'onChange':_0x1f2d86=>{_0x32b96c({'offsetY':_0x1f2d86==null?0x0:_0x1f2d86}),_0x2e991d(_0x1f2d86==null?0x0:_0x1f2d86);},'onFocus':()=>_0x51039b['setContextValue'](_0x2cafcd[_0x64a54d(0x29e)],!0x0),'onBlur':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1)})})]}),(0x0,_0x43e701[_0x64a54d(0x39b)])('div',{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])('span',{'className':_0x588636,'children':_0x1e206c['t']('shape-editor-ui.fill.picture.scaleX')}),(0x0,_0x43e701['jsx'])('div',{'className':_0x64a54d(0x74c),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x64a54d(0x740)],{'className':_0x64a54d(0x54b),'value':_0x214d15,'disabled':_0x39a615,'min':0x1,'max':0x3e8,'step':0xa,'formatter':_0x55cba5=>_0x55cba5+'%','parser':_0xea9771=>(_0xea9771==null?void 0x0:_0xea9771['replace']('%',''))||'','onChange':_0x407c00=>{const _0x5c651f=_0x64a54d;let _0x3d5d02=Math[_0x5c651f(0x729)](0.01,(_0x407c00==null?0x64:_0x407c00)/0x64);_0x4d9b7c(_0x3d5d02),_0x32b96c({'scaleX':_0x3d5d02}),_0x51039b['setContextValue'](_0x2cafcd[_0x5c651f(0x29e)],!0x1);},'onFocus':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x0),'onBlur':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd[_0x64a54d(0x29e)],!0x1)})})]}),(0x0,_0x43e701[_0x64a54d(0x39b)])(_0x64a54d(0x3ec),{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t']('shape-editor-ui.fill.picture.scaleY')}),(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x3ec),{'className':_0x64a54d(0x74c),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5['InputNumber'],{'className':'univer-w-full','value':_0x310ea8,'disabled':_0x39a615,'min':0x1,'max':0x3e8,'step':0xa,'formatter':_0x2881b3=>_0x2881b3+'%','parser':_0x4e55ac=>(_0x4e55ac==null?void 0x0:_0x4e55ac['replace']('%',''))||'','onChange':_0x24b386=>{const _0x1b2344=_0x64a54d;let _0x3659a3=Math['max'](0.01,(_0x24b386==null?0x64:_0x24b386)/0x64);_0x5396eb(_0x3659a3),_0x32b96c({'scaleY':_0x3659a3}),_0x51039b[_0x1b2344(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1);},'onFocus':()=>_0x51039b[_0x64a54d(0x13d)](_0x2cafcd[_0x64a54d(0x29e)],!0x0),'onBlur':()=>_0x51039b['setContextValue'](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1)})})]}),(0x0,_0x43e701[_0x64a54d(0x39b)])('div',{'className':_0x28faa6,'children':[(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':_0x588636,'children':_0x1e206c['t'](_0x64a54d(0x4a8))}),(0x0,_0x43e701[_0x64a54d(0x715)])('div',{'className':'univer-w-28','children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x3f5bc5[_0x64a54d(0x1bc)],{'className':'univer-w-full','value':_0x159526,'options':_0xfd3cfc,'disabled':_0x39a615,'onChange':_0x577740=>{_0x16678d(_0x577740),_0x32b96c({'alignment':_0x577740});}})})]})]}),(0x0,_0x43e701[_0x64a54d(0x715)])(_0x3f5bc5[_0x64a54d(0x443)],{'checked':_0x460809,'disabled':_0x39a615,'onChange':_0x2e3c76=>{_0x533259(_0x2e3c76),_0xcb487a({'imageRotateWithShape':_0x2e3c76});},'children':(0x0,_0x43e701[_0x64a54d(0x715)])(_0x64a54d(0x2bf),{'className':'univer-text-sm','children':_0x1e206c['t'](_0x64a54d(0x7d9))})})]});}function _0x112c5a(_0x33f6f5){const _0x3f7389=_0x57b2d2;var _0x195a7f,_0x2c23af;return(_0x195a7f=(_0x2c23af=_0x33f6f5[_0x3f7389(0x291)])==null?void 0x0:_0x2c23af['fillType'])==null?_0x21428d[_0x3f7389(0x352)][_0x3f7389(0x18e)]:_0x195a7f;}function _0x35d0e5(_0x5900bd){const _0x12fc01=_0x57b2d2;var _0x55e439,_0x5ab0f9,_0x201e71,_0x29af0e;let _0x185c38=(0x0,_0x26fc1b[_0x12fc01(0x755)])(_0x2cafcd[_0x12fc01(0x15c)]),_0x589c40=(0x0,_0x26fc1b[_0x12fc01(0x755)])(_0x2cafcd[_0x12fc01(0x3e1)]),{shapeData:_0x2aca6a,isLineShape:_0x28d4fa,shapeId:_0x1de5a7,disableShapeOption:_0x1d1d57,onUpdateShapeData:_0x4be137,onUpdateShapeFillImage:_0x294785}=_0x5900bd,[_0x3ae4f7,_0xccf998]=(0x0,_0x55b95c[_0x12fc01(0x614)])(_0x112c5a(_0x2aca6a)),[_0x463426,_0x51fc5b]=(0x0,_0x55b95c[_0x12fc01(0x614)])((_0x55e439=(_0x5ab0f9=_0x2aca6a[_0x12fc01(0x291)])==null?void 0x0:_0x5ab0f9[_0x12fc01(0x245)])==null?_0x21428d[_0x12fc01(0x352)][_0x12fc01(0x291)]:_0x55e439),[_0x356672,_0x2bb87]=(0x0,_0x55b95c['useState'])((_0x201e71=(_0x29af0e=_0x2aca6a[_0x12fc01(0x291)])==null?void 0x0:_0x29af0e['opacity'])==null?_0x21428d[_0x12fc01(0x352)][_0x12fc01(0x36c)]:_0x201e71),[_0x2739ed,_0x623740]=(0x0,_0x55b95c[_0x12fc01(0x614)])(!0x1);if(_0x28d4fa)return null;let _0x1dc859=0x64-_0x356672*0x64;return(0x0,_0x43e701[_0x12fc01(0x39b)])(_0x12fc01(0x3ec),{'className':_0x12fc01(0x6e4),'children':[(0x0,_0x43e701[_0x12fc01(0x39b)])(_0x3f5bc5['RadioGroup'],{'value':_0x3ae4f7,'disabled':_0x1d1d57,'onChange':_0x3d6e3b=>{const _0x3a379e=_0x12fc01;var _0x9dbb6f;_0x4be137({'oldShapeData':{'fill':{'fillType':(_0x9dbb6f=_0x2aca6a['fill'])==null?void 0x0:_0x9dbb6f[_0x3a379e(0x18e)]}}},{'fill':{'fillType':_0x3d6e3b}}),_0xccf998(_0x3d6e3b);},'direction':_0x12fc01(0x40f),'children':[(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3f5bc5[_0x12fc01(0x826)],{'value':_0x21428d['ShapeFillEnum'][_0x12fc01(0x3f9)],'children':(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x2bf),{'className':_0x12fc01(0x5f7),'children':_0x185c38['t'](_0x12fc01(0x188))})}),(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3f5bc5[_0x12fc01(0x826)],{'value':_0x21428d['ShapeFillEnum'][_0x12fc01(0x72f)],'children':(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x2bf),{'className':_0x12fc01(0x5f7),'children':_0x185c38['t'](_0x12fc01(0x28e))})}),(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3f5bc5[_0x12fc01(0x826)],{'value':_0x21428d[_0x12fc01(0x6eb)][_0x12fc01(0x88b)],'children':(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x2bf),{'className':_0x12fc01(0x5f7),'children':_0x185c38['t'](_0x12fc01(0x86e))})}),(0x0,_0x43e701['jsx'])(_0x3f5bc5['Radio'],{'value':_0x21428d['ShapeFillEnum'][_0x12fc01(0x545)],'children':(0x0,_0x43e701['jsx'])(_0x12fc01(0x2bf),{'className':_0x12fc01(0x5f7),'children':_0x185c38['t'](_0x12fc01(0x34f))})})]}),_0x3ae4f7===_0x21428d[_0x12fc01(0x6eb)]['SolidFill']&&(0x0,_0x43e701[_0x12fc01(0x39b)])('div',{'className':_0x12fc01(0x43a),'children':[(0x0,_0x43e701[_0x12fc01(0x39b)])(_0x12fc01(0x3ec),{'className':_0x12fc01(0x52c),'children':[(0x0,_0x43e701['jsx'])(_0x12fc01(0x2bf),{'className':_0x12fc01(0x770),'children':_0x185c38['t']('shape-editor-ui.fill.color')}),(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3f5bc5[_0x12fc01(0x5a4)],{'disabled':_0x1d1d57,'overlay':(0x0,_0x43e701['jsx'])(_0x12fc01(0x3ec),{'className':_0x12fc01(0x549),'children':(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3f5bc5[_0x12fc01(0x87f)],{'value':_0x463426,'onChange':_0x3a0ae1=>{const _0x3e01bb=_0x12fc01;var _0x282fff;_0x4be137({'oldShapeData':{'fill':{'color':(_0x282fff=_0x2aca6a[_0x3e01bb(0x291)])==null?void 0x0:_0x282fff['color']}}},{'fill':{'color':_0x3a0ae1}}),_0x51fc5b(_0x3a0ae1),_0x623740(!0x1);}})}),'open':_0x2739ed,'onOpenChange':_0x623740,'children':(0x0,_0x43e701['jsxs'])('a',{'className':_0x12fc01(0x2ba),'children':[(0x0,_0x43e701[_0x12fc01(0x715)])(_0x53fc79,{'className':_0x12fc01(0x3ce),'extend':{'colorChannel1':_0x463426}}),(0x0,_0x43e701[_0x12fc01(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x12fc01(0x679)])('univer-text-gray-600\x20univer-transition-transform',{'univer-rotate-180':_0x2739ed})})]})})]}),(0x0,_0x43e701[_0x12fc01(0x39b)])('div',{'className':'univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','children':[(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x2bf),{'className':'univer-shrink-0\x20univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x185c38['t'](_0x12fc01(0x76f))}),(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x3ec),{'className':_0x12fc01(0x7bf),'children':(0x0,_0x43e701[_0x12fc01(0x715)])(_0x12fc01(0x3ec),{'className':'univer-w-20','children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x12fc01(0x740)],{'className':_0x12fc01(0x54b),'value':_0x1dc859,'disabled':_0x1d1d57,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x1ea25a=>_0x1ea25a+'%','parser':_0x29458e=>(_0x29458e==null?void 0x0:_0x29458e[_0x12fc01(0x370)]('%',''))||'','onChange':_0x34bcd7=>{const _0x664f5a=_0x12fc01;let _0x2ec33e=(0x64-Math[_0x664f5a(0x729)](0x0,Math[_0x664f5a(0x4a5)](0x64,_0x34bcd7==null?0x0:_0x34bcd7)))/0x64;_0x2bb87(_0x2ec33e),_0x4be137({'oldShapeData':{'fill':{..._0x2aca6a[_0x664f5a(0x291)],'fillType':_0x3ae4f7}}},{'fill':{..._0x2aca6a[_0x664f5a(0x291)],'fillType':_0x3ae4f7,'opacity':_0x2ec33e}}),_0x589c40[_0x664f5a(0x13d)](_0x2cafcd[_0x664f5a(0x29e)],!0x1);},'onFocus':()=>_0x589c40[_0x12fc01(0x13d)](_0x2cafcd[_0x12fc01(0x29e)],!0x0),'onBlur':()=>{const _0x41d1c0=_0x12fc01;_0x589c40[_0x41d1c0(0x13d)](_0x2cafcd[_0x41d1c0(0x29e)],!0x1);}})})})]})]}),_0x3ae4f7===_0x21428d[_0x12fc01(0x6eb)][_0x12fc01(0x88b)]&&(0x0,_0x43e701[_0x12fc01(0x715)])(_0xeca915,{'shapeData':_0x2aca6a,'disableShapeOption':_0x1d1d57,'onUpdate':_0xd8538=>{const _0x5c78a1=_0x12fc01;_0x4be137({'oldShapeData':{'fill':{..._0x2aca6a['fill']}}},{'fill':{..._0x2aca6a[_0x5c78a1(0x291)],..._0xd8538}});}}),_0x3ae4f7===_0x21428d[_0x12fc01(0x6eb)]['PictureFill']&&(0x0,_0x43e701['jsx'])(_0x42a348,{'shapeId':_0x1de5a7,'shapeData':_0x2aca6a,'disableShapeOption':_0x1d1d57,'onUpdateShapeData':_0x4be137,'onUpdateShapeFillImage':_0x294785})]});}function _0x521378(_0x168305){const _0x150816=_0x57b2d2;switch(_0x168305){case _0x21428d['ShapeGradientTypeEnum'][_0x150816(0x73e)]:return'linear';case _0x21428d[_0x150816(0x312)][_0x150816(0x4a0)]:return'radial';case _0x21428d['ShapeGradientTypeEnum'][_0x150816(0x1de)]:return'angular';case _0x21428d['ShapeGradientTypeEnum'][_0x150816(0x490)]:return _0x150816(0x760);default:return _0x150816(0x2c0);}}function _0x5cdf02(_0x43f63a){const _0x8215b7=_0x57b2d2;switch(_0x43f63a){case _0x8215b7(0x2c0):return _0x21428d['ShapeGradientTypeEnum'][_0x8215b7(0x73e)];case'radial':return _0x21428d['ShapeGradientTypeEnum']['Radial'];case _0x8215b7(0x214):return _0x21428d['ShapeGradientTypeEnum']['Angular'];case _0x8215b7(0x760):return _0x21428d['ShapeGradientTypeEnum'][_0x8215b7(0x490)];default:return _0x21428d[_0x8215b7(0x312)]['Linear'];}}function _0xeca915(_0x838ef2){const _0x202be3=_0x57b2d2;let {shapeData:_0x3e704c,disableShapeOption:_0xa4f8a7,onUpdate:_0x14f3be}=_0x838ef2,_0x3c28b2=(0x0,_0x55b95c[_0x202be3(0x81b)])(()=>{const _0x41498b=_0x202be3;var _0x47d795,_0x1a501f;let _0x22ca1d=_0x3e704c[_0x41498b(0x291)];return{'type':_0x521378((_0x47d795=_0x22ca1d==null?void 0x0:_0x22ca1d[_0x41498b(0x632)])==null?_0x21428d[_0x41498b(0x352)]['gradientType']:_0x47d795),'angle':(_0x1a501f=_0x22ca1d==null?void 0x0:_0x22ca1d[_0x41498b(0x2f4)])==null?_0x21428d[_0x41498b(0x352)][_0x41498b(0x2f4)]:_0x1a501f,'stops':_0x22ca1d!=null&&_0x22ca1d[_0x41498b(0x5b9)]&&_0x22ca1d[_0x41498b(0x5b9)][_0x41498b(0x1bf)]>=0x2?_0x22ca1d['gradientStops'][_0x41498b(0x499)](_0x335a4b=>({'color':_0x335a4b[_0x41498b(0x245)],'offset':_0x335a4b[_0x41498b(0x70e)]*0x64,'opacity':_0x335a4b[_0x41498b(0x2f0)]})):[{'color':(_0x22ca1d==null?void 0x0:_0x22ca1d[_0x41498b(0x245)])||_0x21428d[_0x41498b(0x352)][_0x41498b(0x291)],'offset':0x0},{'color':_0x21428d[_0x41498b(0x352)][_0x41498b(0x158)],'offset':0x64}]};},[_0x3e704c[_0x202be3(0x291)]]);return(0x0,_0x43e701['jsx'])(_0x202be3(0x3ec),{'className':_0x202be3(0x849),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x202be3(0x234)],{'value':_0x3c28b2,'onChange':_0x37b162=>{const _0x1d13a7=_0x202be3;let _0x27ca02=_0x5cdf02(_0x37b162[_0x1d13a7(0x1d9)]),_0x5a3818=_0x37b162['angle'];_0x14f3be({'gradientType':_0x27ca02,'gradientAngle':_0x5a3818,'gradientStops':_0x37b162[_0x1d13a7(0x147)][_0x1d13a7(0x499)](_0x626e84=>({'color':_0x626e84[_0x1d13a7(0x245)],'position':_0x626e84['offset']/0x64,'opacity':_0x626e84[_0x1d13a7(0x2f0)]}))});}})});}function _0x1a2c7b(_0x589a55){const _0x4685b0=_0x57b2d2;var _0x21a915,_0x10196f,_0x51afad,_0x497e7a,_0x1c32b9,_0x41339a,_0x54c541,_0x4a3098,_0x13eb32,_0x19cf1b,_0x567ba0,_0x1552b5,_0x4569ce,_0x678558,_0x4f7986,_0x3b0c37,_0x4c59e4;let _0x85feca=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd[_0x4685b0(0x15c)]),_0x59f43e=(0x0,_0x26fc1b[_0x4685b0(0x755)])(_0x2cafcd['IContextService']),{shapeData:_0xa495d1,isLineShape:_0x3a951e,disableShapeOption:_0x2891f6,onUpdateShapeData:_0x4d0af3,onUpdateLineShapeData:_0x2d388f}=_0x589a55,_0x1806cd=_0xa495d1[_0x4685b0(0x1fb)],[_0x1928e1,_0x2505a2]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x21a915=_0x1806cd==null?void 0x0:_0x1806cd['lineStrokeType'])==null?_0x21428d[_0x4685b0(0x352)][_0x4685b0(0x55b)]:_0x21a915),[_0x5c06ff,_0x5cb606]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x10196f=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x245)])==null?_0x21428d[_0x4685b0(0x352)][_0x4685b0(0x1fb)]:_0x10196f),[_0x128af0,_0x2af9c2]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x51afad=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x2f0)])==null?_0x21428d['ShapeDefaultConfig'][_0x4685b0(0x580)]:_0x51afad),[_0x364fca,_0x2133e0]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x497e7a=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x345)])==null?_0x21428d[_0x4685b0(0x352)]['strokeWidth']:_0x497e7a),[_0x50bff4,_0x38451b]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x1c32b9=_0x1806cd==null?void 0x0:_0x1806cd['cornerRadius'])==null?_0x21428d[_0x4685b0(0x352)][_0x4685b0(0x362)]:_0x1c32b9),[_0x78604d,_0x34e442]=(0x0,_0x55b95c['useState'])((_0x41339a=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x194)])==null?_0x21428d[_0x4685b0(0x352)][_0x4685b0(0x34e)]:_0x41339a),[_0x2aece8,_0x422491]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x54c541=_0x1806cd==null?void 0x0:_0x1806cd['capType'])==null?_0x21428d[_0x4685b0(0x352)]['lineCapType']:_0x54c541),[_0x358f8b,_0x5d0fa4]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x4a3098=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x48e)])==null?_0x21428d[_0x4685b0(0x352)][_0x4685b0(0x48e)]:_0x4a3098),[_0x591b8,_0x4eb107]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x13eb32=_0x1806cd==null?void 0x0:_0x1806cd[_0x4685b0(0x89c)])==null?_0x21428d['ShapeDefaultConfig'][_0x4685b0(0x89c)]:_0x13eb32),_0x32889d=_0xa495d1,[_0x6a7958,_0x4e4791]=(0x0,_0x55b95c['useState'])((_0x19cf1b=(_0x567ba0=_0x32889d['ln'])==null||(_0x567ba0=_0x567ba0['startArrow'])==null?void 0x0:_0x567ba0[_0x4685b0(0x1d9)])==null?_0x21428d[_0x4685b0(0x4ff)][_0x4685b0(0x7d5)]:_0x19cf1b),[_0x2f9f4d,_0x6633b6]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x1552b5=(_0x4569ce=_0x32889d['ln'])==null||(_0x4569ce=_0x4569ce[_0x4685b0(0x527)])==null?void 0x0:_0x4569ce[_0x4685b0(0x29a)])==null?_0x21428d['ShapeArrowSizeEnum'][_0x4685b0(0x3e5)]:_0x1552b5),[_0x15f88d,_0xdae4d2]=(0x0,_0x55b95c['useState'])((_0x678558=(_0x4f7986=_0x32889d['ln'])==null||(_0x4f7986=_0x4f7986['endArrow'])==null?void 0x0:_0x4f7986[_0x4685b0(0x1d9)])==null?_0x21428d['ShapeArrowTypeEnum'][_0x4685b0(0x7d5)]:_0x678558),[_0x196178,_0x23a13b]=(0x0,_0x55b95c[_0x4685b0(0x614)])((_0x3b0c37=(_0x4c59e4=_0x32889d['ln'])==null||(_0x4c59e4=_0x4c59e4[_0x4685b0(0x3c5)])==null?void 0x0:_0x4c59e4['size'])==null?_0x21428d['ShapeArrowSizeEnum'][_0x4685b0(0x3e5)]:_0x3b0c37),[_0x334ba6,_0x7ed4de]=(0x0,_0x55b95c[_0x4685b0(0x614)])(!0x1),_0x1f9745=0x64-_0x128af0*0x64,_0x503b12=[{'label':_0x85feca['t'](_0x4685b0(0x5dc)),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x4b3)])},{'label':_0x85feca['t']('shape-editor-ui.line.dashType.roundDot'),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x7ee)])},{'label':_0x85feca['t'](_0x4685b0(0x566)),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x48b)])},{'label':_0x85feca['t'](_0x4685b0(0x7ea)),'value':String(_0x21428d['ShapeLineDashEnum'][_0x4685b0(0x436)])},{'label':_0x85feca['t'](_0x4685b0(0x183)),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x7b3)])},{'label':_0x85feca['t']('shape-editor-ui.line.dashType.longDash'),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x779)])},{'label':_0x85feca['t'](_0x4685b0(0x37c)),'value':String(_0x21428d['ShapeLineDashEnum'][_0x4685b0(0x149)])},{'label':_0x85feca['t']('shape-editor-ui.line.dashType.longDashDotDot'),'value':String(_0x21428d[_0x4685b0(0x17d)][_0x4685b0(0x4a1)])}],_0x24bd49=[{'label':_0x85feca['t']('shape-editor-ui.line.capType.flat'),'value':String(_0x21428d[_0x4685b0(0x17e)][_0x4685b0(0x84a)])},{'label':_0x85feca['t'](_0x4685b0(0x45d)),'value':String(_0x21428d[_0x4685b0(0x17e)]['Round'])},{'label':_0x85feca['t'](_0x4685b0(0x1ca)),'value':String(_0x21428d[_0x4685b0(0x17e)]['Square'])}],_0x5ada62=[{'label':_0x85feca['t'](_0x4685b0(0x7cd)),'value':String(_0x21428d[_0x4685b0(0x66b)][_0x4685b0(0x7d5)])},{'label':_0x85feca['t'](_0x4685b0(0x145)),'value':String(_0x21428d['ShapeSketchTypeEnum'][_0x4685b0(0x523)])},{'label':_0x85feca['t'](_0x4685b0(0x354)),'value':String(_0x21428d[_0x4685b0(0x66b)][_0x4685b0(0x3fb)])},{'label':_0x85feca['t'](_0x4685b0(0x33a)),'value':String(_0x21428d[_0x4685b0(0x66b)]['HandDrawn'])}],_0x132a34=[{'label':_0x85feca['t'](_0x4685b0(0x146)),'value':String(_0x21428d[_0x4685b0(0x19d)][_0x4685b0(0x476)])},{'label':_0x85feca['t'](_0x4685b0(0x76b)),'value':String(_0x21428d[_0x4685b0(0x19d)][_0x4685b0(0x2b5)])},{'label':_0x85feca['t'](_0x4685b0(0x3fc)),'value':String(_0x21428d[_0x4685b0(0x19d)][_0x4685b0(0x69f)])}],_0x85751c=[{'label':_0x85feca['t'](_0x4685b0(0x6f1)),'value':String(_0x21428d['ShapeArrowTypeEnum'][_0x4685b0(0x7d5)])},{'label':_0x85feca['t'](_0x4685b0(0x43e)),'value':String(_0x21428d['ShapeArrowTypeEnum'][_0x4685b0(0x7c9)])},{'label':_0x85feca['t'](_0x4685b0(0x463)),'value':String(_0x21428d['ShapeArrowTypeEnum'][_0x4685b0(0x6df)])},{'label':_0x85feca['t'](_0x4685b0(0x372)),'value':String(_0x21428d[_0x4685b0(0x4ff)][_0x4685b0(0x689)])},{'label':_0x85feca['t']('shape-editor-ui.line.arrowType.diamondArrow'),'value':String(_0x21428d[_0x4685b0(0x4ff)][_0x4685b0(0x5e1)])},{'label':_0x85feca['t'](_0x4685b0(0x35b)),'value':String(_0x21428d[_0x4685b0(0x4ff)][_0x4685b0(0x677)])}],_0x1b046d=[{'label':_0x85feca['t']('shape-editor-ui.line.arrowSize.small'),'value':String(_0x21428d['ShapeArrowSizeEnum'][_0x4685b0(0x635)])},{'label':_0x85feca['t']('shape-editor-ui.line.arrowSize.medium'),'value':String(_0x21428d[_0x4685b0(0x56c)]['Medium'])},{'label':_0x85feca['t']('shape-editor-ui.line.arrowSize.large'),'value':String(_0x21428d[_0x4685b0(0x56c)][_0x4685b0(0x3eb)])}];return(0x0,_0x43e701['jsxs'])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x6e4),'children':[(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x3f5bc5[_0x4685b0(0x649)],{'value':String(_0x1928e1),'disabled':_0x2891f6,'onChange':_0x23608b=>{const _0x47fff7=_0x4685b0;var _0x38e73e;_0x2505a2(Number(_0x23608b)),_0x4d0af3({'oldShapeData':{'stroke':{'lineStrokeType':(_0x38e73e=_0xa495d1[_0x47fff7(0x1fb)])==null?void 0x0:_0x38e73e[_0x47fff7(0x599)]}}},{'stroke':{'lineStrokeType':Number(_0x23608b)}});},'direction':_0x4685b0(0x40f),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x826)],{'value':String(_0x21428d[_0x4685b0(0x711)][_0x4685b0(0x379)]),'children':(0x0,_0x43e701['jsx'])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x5f7),'children':_0x85feca['t'](_0x4685b0(0x2cc))})}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x826)],{'value':String(_0x21428d['ShapeLineTypeEnum'][_0x4685b0(0x816)]),'children':(0x0,_0x43e701[_0x4685b0(0x715)])('span',{'className':_0x4685b0(0x5f7),'children':_0x85feca['t'](_0x4685b0(0x202))})})]}),_0x1928e1!==_0x21428d[_0x4685b0(0x711)][_0x4685b0(0x379)]&&(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x43a),'children':[(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t']('shape-editor-ui.line.color')}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5['Dropdown'],{'disabled':_0x2891f6,'overlay':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x549),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5['ColorPicker'],{'value':_0x5c06ff,'onChange':_0x56d9e6=>{const _0x449f49=_0x4685b0;var _0x18d7f5;_0x4d0af3({'oldShapeData':{'stroke':{'color':(_0x18d7f5=_0xa495d1['stroke'])==null?void 0x0:_0x18d7f5[_0x449f49(0x245)]}}},{'stroke':{'color':_0x56d9e6}}),_0x5cb606(_0x56d9e6),_0x7ed4de(!0x1);}})}),'open':_0x334ba6,'onOpenChange':_0x7ed4de,'children':(0x0,_0x43e701[_0x4685b0(0x39b)])('a',{'className':'univer-flex\x20univer-cursor-pointer\x20univer-items-center\x20univer-gap-1.5\x20univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-100\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x2a8eae,{'className':'univer-text-xl\x20univer-text-gray-500','extend':{'colorChannel1':_0x5c06ff}}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x4685b0(0x679)])(_0x4685b0(0x435),{'univer-rotate-180':_0x334ba6})})]})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])('div',{'className':_0x4685b0(0x861),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])('span',{'className':_0x4685b0(0x6ed),'children':_0x85feca['t'](_0x4685b0(0x692))}),(0x0,_0x43e701[_0x4685b0(0x715)])('div',{'className':_0x4685b0(0x861),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x6e3),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x740)],{'className':'univer-w-full','value':_0x1f9745,'disabled':_0x2891f6,'min':0x0,'max':0x64,'formatter':_0x441ba8=>_0x441ba8+'%','parser':_0x11febe=>(_0x11febe==null?void 0x0:_0x11febe[_0x4685b0(0x370)]('%',''))||'','onChange':_0x303d56=>{const _0x301b0f=_0x4685b0;var _0x7c6efc;let _0x252142=(0x64-Math[_0x301b0f(0x729)](0x0,Math[_0x301b0f(0x4a5)](0x64,_0x303d56==null?0x0:_0x303d56)))/0x64;_0x2af9c2(_0x252142),_0x4d0af3({'oldShapeData':{'stroke':{'opacity':(_0x7c6efc=_0xa495d1[_0x301b0f(0x1fb)])==null?void 0x0:_0x7c6efc[_0x301b0f(0x2f0)]}}},{'stroke':{'opacity':_0x252142}}),_0x59f43e[_0x301b0f(0x13d)](_0x2cafcd[_0x301b0f(0x29e)],!0x1);},'onFocus':()=>_0x59f43e[_0x4685b0(0x13d)](_0x2cafcd[_0x4685b0(0x29e)],!0x0),'onBlur':_0x1e0788=>{const _0x412ca2=_0x4685b0;_0x59f43e[_0x412ca2(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x1);}})})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':'univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','children':[(0x0,_0x43e701[_0x4685b0(0x715)])('span',{'className':_0x4685b0(0x770),'children':_0x85feca['t'](_0x4685b0(0x7d4))}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':'univer-w-20','children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x740)],{'className':_0x4685b0(0x54b),'disabled':_0x2891f6,'value':_0x364fca,'min':0.25,'max':0x64,'step':0.25,'onChange':_0x41c947=>{const _0x9aedae=_0x4685b0;if(!Number['isNaN'](_0x41c947)&&_0x41c947!==null){var _0x1091cd;_0x4d0af3({'oldShapeData':{'stroke':{'width':(_0x1091cd=_0xa495d1[_0x9aedae(0x1fb)])==null?void 0x0:_0x1091cd[_0x9aedae(0x345)]}}},{'stroke':{'width':_0x41c947}});}_0x59f43e[_0x9aedae(0x13d)](_0x2cafcd[_0x9aedae(0x29e)],!0x1);},'onFocus':()=>_0x59f43e[_0x4685b0(0x13d)](_0x2cafcd[_0x4685b0(0x29e)],!0x0),'onBlur':_0x391c16=>{const _0x18e15e=_0x4685b0;_0x59f43e['setContextValue'](_0x2cafcd[_0x18e15e(0x29e)],!0x1);}})})]}),_0x3a951e&&(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x861),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':'univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x85feca['t']('shape-editor-ui.line.cornerRadius')}),(0x0,_0x43e701['jsx'])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x74c),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x740)],{'className':_0x4685b0(0x54b),'disabled':_0x2891f6,'value':_0x50bff4,'min':0x0,'step':0x1,'onChange':_0x346025=>{const _0x4050e3=_0x4685b0;var _0x44a264;let _0x1364a2=Math[_0x4050e3(0x729)](0x0,_0x346025==null?0x0:_0x346025);_0x38451b(_0x1364a2),_0x4d0af3({'oldShapeData':{'stroke':{'cornerRadius':(_0x44a264=_0xa495d1[_0x4050e3(0x1fb)])==null?void 0x0:_0x44a264[_0x4050e3(0x362)]}}},{'stroke':{'cornerRadius':_0x1364a2}}),_0x59f43e['setContextValue'](_0x2cafcd[_0x4050e3(0x29e)],!0x1);},'onFocus':()=>_0x59f43e[_0x4685b0(0x13d)](_0x2cafcd[_0x4685b0(0x29e)],!0x0),'onBlur':()=>{const _0x1a00df=_0x4685b0;_0x59f43e[_0x1a00df(0x13d)](_0x2cafcd[_0x1a00df(0x29e)],!0x1);}})})]}),(0x0,_0x43e701['jsxs'])('div',{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':'univer-text-sm\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x85feca['t'](_0x4685b0(0x803))}),(0x0,_0x43e701['jsx'])('div',{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x1bc)],{'className':_0x4685b0(0x54b),'value':String(_0x78604d),'options':_0x503b12,'disabled':_0x2891f6,'onChange':_0x3ecdd4=>{const _0x1c5083=_0x4685b0;var _0x519770;_0x34e442(Number(_0x3ecdd4)),_0x4d0af3({'oldShapeData':{'stroke':{'dashType':(_0x519770=_0xa495d1[_0x1c5083(0x1fb)])==null?void 0x0:_0x519770['dashType']}}},{'stroke':{'dashType':Number(_0x3ecdd4)}});}})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t']('shape-editor-ui.line.capType.title')}),(0x0,_0x43e701['jsx'])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5['Select'],{'className':_0x4685b0(0x54b),'value':String(_0x2aece8),'options':_0x24bd49,'disabled':_0x2891f6,'onChange':_0x52bfa0=>{const _0x48260a=_0x4685b0;var _0x4e76ca;_0x422491(Number(_0x52bfa0)),_0x4d0af3({'oldShapeData':{'stroke':{'capType':(_0x4e76ca=_0xa495d1[_0x48260a(0x1fb)])==null?void 0x0:_0x4e76ca[_0x48260a(0x598)]}}},{'stroke':{'capType':Number(_0x52bfa0)}});}})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])('div',{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])('span',{'className':_0x4685b0(0x770),'children':_0x85feca['t']('shape-editor-ui.line.joinType.title')}),(0x0,_0x43e701[_0x4685b0(0x715)])('div',{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x4685b0(0x1bc)],{'className':_0x4685b0(0x54b),'value':String(_0x358f8b),'options':_0x132a34,'disabled':_0x2891f6,'onChange':_0x2415dc=>{var _0x1389d5;_0x5d0fa4(Number(_0x2415dc)),_0x4d0af3({'oldShapeData':{'stroke':{'lineJoinType':(_0x1389d5=_0xa495d1['stroke'])==null?void 0x0:_0x1389d5['lineJoinType']}}},{'stroke':{'lineJoinType':Number(_0x2415dc)}});}})})]}),!_0x3a951e&&(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701['jsx'])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t'](_0x4685b0(0x88a))}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x4685b0(0x1bc)],{'className':_0x4685b0(0x54b),'value':String(_0x591b8),'options':_0x5ada62,'disabled':_0x2891f6,'onChange':_0x495ea1=>{const _0x203f8f=_0x4685b0;var _0x4b32b5;_0x4eb107(Number(_0x495ea1)),_0x4d0af3({'oldShapeData':{'stroke':{'sketchType':(_0x4b32b5=_0xa495d1[_0x203f8f(0x1fb)])==null?void 0x0:_0x4b32b5[_0x203f8f(0x89c)]}}},{'stroke':{'sketchType':Number(_0x495ea1)}});}})})]}),_0x3a951e&&(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x43e701[_0x4685b0(0x607)],{'children':[(0x0,_0x43e701['jsxs'])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701['jsx'])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t'](_0x4685b0(0x6ad))}),(0x0,_0x43e701[_0x4685b0(0x715)])('div',{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5[_0x4685b0(0x1bc)],{'className':_0x4685b0(0x54b),'value':String(_0x6a7958),'options':_0x85751c,'onChange':_0x519216=>{const _0x5c5059=_0x4685b0;var _0x46101c;_0x4e4791(Number(_0x519216));let _0x5c9afc={'ln':{'startArrow':{'type':(_0x46101c=_0xa495d1['ln'])==null||(_0x46101c=_0x46101c[_0x5c5059(0x527)])==null?void 0x0:_0x46101c[_0x5c5059(0x1d9)]}}};_0x2d388f==null||_0x2d388f({'oldShapeData':_0x5c9afc},{'ln':{'startArrow':{'type':Number(_0x519216)}}});}})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t'](_0x4685b0(0x243))}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':'univer-w-28','children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5['Select'],{'className':_0x4685b0(0x54b),'value':String(_0x2f9f4d),'options':_0x1b046d,'onChange':_0x3be245=>{const _0x3b8442=_0x4685b0;var _0x3aabe5;_0x6633b6(Number(_0x3be245));let _0x1d5a0f={'ln':{'startArrow':{'size':(_0x3aabe5=_0xa495d1['ln'])==null||(_0x3aabe5=_0x3aabe5['startArrow'])==null?void 0x0:_0x3aabe5[_0x3b8442(0x29a)]}}};_0x2d388f==null||_0x2d388f({'oldShapeData':_0x1d5a0f},{'ln':{'startArrow':{'size':Number(_0x3be245)}}});}})})]}),(0x0,_0x43e701[_0x4685b0(0x39b)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701['jsx'])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t']('shape-editor-ui.line.endArrowType')}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':'univer-w-28','children':(0x0,_0x43e701[_0x4685b0(0x715)])(_0x3f5bc5['Select'],{'className':_0x4685b0(0x54b),'value':String(_0x15f88d),'options':_0x85751c,'onChange':_0x402d3f=>{const _0x49f419=_0x4685b0;var _0x4cba88;_0xdae4d2(Number(_0x402d3f));let _0x26ab72={'ln':{'endArrow':{'type':(_0x4cba88=_0xa495d1['ln'])==null||(_0x4cba88=_0x4cba88[_0x49f419(0x3c5)])==null?void 0x0:_0x4cba88[_0x49f419(0x1d9)]}}};_0x2d388f==null||_0x2d388f({'oldShapeData':_0x26ab72},{'ln':{'endArrow':{'type':Number(_0x402d3f)}}});}})})]}),(0x0,_0x43e701['jsxs'])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x52c),'children':[(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x2bf),{'className':_0x4685b0(0x770),'children':_0x85feca['t'](_0x4685b0(0x5f4))}),(0x0,_0x43e701[_0x4685b0(0x715)])(_0x4685b0(0x3ec),{'className':_0x4685b0(0x694),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x4685b0(0x1bc)],{'className':_0x4685b0(0x54b),'value':String(_0x196178),'options':_0x1b046d,'onChange':_0x1f9edc=>{const _0x33cae2=_0x4685b0;var _0x17ecf1;_0x23a13b(Number(_0x1f9edc));let _0x4fb204={'ln':{'endArrow':{'size':(_0x17ecf1=_0xa495d1['ln'])==null||(_0x17ecf1=_0x17ecf1[_0x33cae2(0x3c5)])==null?void 0x0:_0x17ecf1[_0x33cae2(0x29a)]}}};_0x2d388f==null||_0x2d388f({'oldShapeData':_0x4fb204},{'ln':{'endArrow':{'size':Number(_0x1f9edc)}}});}})})]})]})]})]});}function _0x4c57c8(_0x519564){const _0x4426dd=_0x57b2d2;let {shapeData:_0x1dd410,shapeId:_0x4fbc0e,shapeType:_0x4c0c76,disableShapeOption:_0x3c9ff5,positionEditor:_0x47dd16,onUpdateShapeData:_0x40335d,onUpdateLineShapeData:_0x22c011,onUpdateShapeFillImage:_0x47d852}=_0x519564,_0x4bc9a3=(0x0,_0x26fc1b[_0x4426dd(0x755)])(_0x2cafcd['LocaleService']),_0x3034a8=(0x0,_0x21428d[_0x4426dd(0x7e5)])(_0x4c0c76),[_0x4b0b15,_0x36b9cf]=(0x0,_0x55b95c[_0x4426dd(0x614)])(0x0),_0x3c6058=[{'label':(0x0,_0x43e701[_0x4426dd(0x715)])('div',{'children':_0x4bc9a3['t'](_0x4426dd(0x332))}),'children':(0x0,_0x43e701['jsx'])('section',{'className':_0x4426dd(0x7b2),'children':(0x0,_0x43e701[_0x4426dd(0x715)])(_0x35d0e5,{'shapeId':_0x4fbc0e,'shapeData':_0x1dd410,'isLineShape':_0x3034a8,'disableShapeOption':_0x3c9ff5,'onUpdateShapeData':_0x40335d,'onUpdateShapeFillImage':_0x47d852})})},{'label':(0x0,_0x43e701[_0x4426dd(0x715)])(_0x4426dd(0x3ec),{'children':_0x4bc9a3['t'](_0x4426dd(0x39c))}),'children':(0x0,_0x43e701[_0x4426dd(0x715)])(_0x4426dd(0x805),{'className':_0x4426dd(0x7b2),'children':(0x0,_0x43e701[_0x4426dd(0x715)])(_0x1a2c7b,{'shapeId':_0x4fbc0e,'shapeData':_0x1dd410,'isLineShape':_0x3034a8,'disableShapeOption':_0x3c9ff5,'onUpdateShapeData':_0x40335d,'onUpdateLineShapeData':_0x22c011})})}];return(0x0,_0x43e701[_0x4426dd(0x39b)])(_0x4426dd(0x3ec),{'className':'univer-size-full','children':[(0x0,_0x43e701[_0x4426dd(0x39b)])('div',{'className':_0x4426dd(0x2a0),'children':[(0x0,_0x43e701[_0x4426dd(0x39b)])(_0x4426dd(0x3ec),{'className':(0x0,_0x3f5bc5['clsx'])('univer-mr-5\x20univer-cursor-default\x20univer-py-4\x20univer-text-center\x20univer-text-sm\x20univer-font-semibold',_0x4b0b15===0x0?_0x4426dd(0x653):_0x4426dd(0x168)),'onClick':()=>_0x36b9cf(0x0),'children':[_0x4bc9a3['t'](_0x4426dd(0x7e4)),(0x0,_0x43e701[_0x4426dd(0x715)])('div',{'className':(0x0,_0x3f5bc5['clsx'])(_0x4426dd(0x538),{'univer-bg-primary-600':_0x4b0b15===0x0,'univer-bg-transparent':_0x4b0b15!==0x0})})]}),(0x0,_0x43e701[_0x4426dd(0x39b)])(_0x4426dd(0x3ec),{'className':(0x0,_0x3f5bc5[_0x4426dd(0x679)])('univer-mr-5\x20univer-cursor-default\x20univer-py-4\x20univer-text-center\x20univer-text-sm\x20univer-font-semibold',{'univer-text-primary-600':_0x4b0b15===0x1,'univer-text-gray-500':_0x4b0b15!==0x1}),'onClick':()=>_0x36b9cf(0x1),'children':[_0x4bc9a3['t'](_0x4426dd(0x3a4)),(0x0,_0x43e701[_0x4426dd(0x715)])('div',{'className':(0x0,_0x3f5bc5['clsx'])('univer-mx-auto\x20univer-mt-2\x20univer-h-1\x20univer-w-1/2\x20univer-rounded-md\x20univer-bg-primary-600',{'univer-bg-primary-600':_0x4b0b15===0x1,'univer-bg-transparent':_0x4b0b15!==0x1})})]})]}),(0x0,_0x43e701[_0x4426dd(0x715)])(_0x4426dd(0x3ec),{'className':_0x4426dd(0x347),'children':_0x4b0b15===0x0?(0x0,_0x43e701[_0x4426dd(0x715)])(_0x3f5bc5['Accordion'],{'items':_0x3c6058}):_0x47dd16})]});}function _0x1b0fcf(_0x43c029,_0x40ff8b){typeof(_0x43c029==null?void 0x0:_0x43c029['fs'])=='number'&&Number['isFinite'](_0x43c029['fs'])&&(_0x43c029['fs']*=_0x40ff8b);}function _0x394aec(_0x46935c,_0x191c31){const _0x486a6c=_0x57b2d2;if(!_0x191c31)return;let _0xe22ca3=_0x191c31[_0x486a6c(0x7f4)]===_0x486a6c(0x357)&&typeof _0x191c31['fontScale']==_0x486a6c(0x511)&&Number['isFinite'](_0x191c31[_0x486a6c(0x1bd)])&&_0x191c31[_0x486a6c(0x1bd)]>0x0?_0x191c31[_0x486a6c(0x1bd)]/0x186a0:0x1;if(_0xe22ca3!==0x1){var _0xdc85ea,_0x1369e9,_0xbb9c48,_0x2f8990;_0x46935c[_0x486a6c(0x1c3)]&&(_0x46935c[_0x486a6c(0x1c3)]={..._0x46935c[_0x486a6c(0x1c3)],'textStyle':_0x254b6e(_0x46935c[_0x486a6c(0x1c3)][_0x486a6c(0x491)])}),(_0xdc85ea=_0x46935c['body'])!=null&&_0xdc85ea[_0x486a6c(0x6e8)]&&(_0x46935c[_0x486a6c(0x299)]['textRuns']=_0x46935c[_0x486a6c(0x299)][_0x486a6c(0x6e8)]['map'](_0x1fe2a6=>({..._0x1fe2a6,'ts':_0x254b6e(_0x1fe2a6['ts'])}))),_0x1b0fcf((_0x1369e9=_0x46935c['documentStyle'])==null?void 0x0:_0x1369e9['textStyle'],_0xe22ca3),(_0xbb9c48=_0x46935c[_0x486a6c(0x299)])==null||(_0xbb9c48=_0xbb9c48['textRuns'])==null||_0xbb9c48['forEach'](_0x197ab3=>_0x1b0fcf(_0x197ab3['ts'],_0xe22ca3)),(_0x2f8990=_0x46935c[_0x486a6c(0x299)])==null||(_0x2f8990=_0x2f8990[_0x486a6c(0x1c8)])==null||_0x2f8990[_0x486a6c(0x4ea)](_0x9c5749=>{const _0x3a0e09=_0x486a6c;var _0x5cee8a;_0x1b0fcf((_0x5cee8a=_0x9c5749[_0x3a0e09(0x6f6)])==null?void 0x0:_0x5cee8a[_0x3a0e09(0x491)],_0xe22ca3);});}let _0x53d171=_0x191c31[_0x486a6c(0x7f4)]===_0x486a6c(0x357)&&typeof _0x191c31[_0x486a6c(0x800)]=='number'&&Number[_0x486a6c(0x2ad)](_0x191c31['lineSpaceReduction'])&&_0x191c31['lineSpaceReduction']<0x186a0?Math[_0x486a6c(0x729)](0x0,_0x191c31[_0x486a6c(0x800)])/0x186a0:0x0;if(_0x53d171>0x0){var _0x3380a2;(_0x3380a2=_0x46935c['body'])==null||(_0x3380a2=_0x3380a2['paragraphs'])==null||_0x3380a2[_0x486a6c(0x4ea)](_0x5ab8a1=>{const _0x2daa39=_0x486a6c;var _0x439645;_0x5ab8a1['paragraphStyle']!=null||(_0x5ab8a1[_0x2daa39(0x6f6)]={}),_0x5ab8a1[_0x2daa39(0x6f6)][_0x2daa39(0x633)]=((_0x439645=_0x5ab8a1['paragraphStyle'][_0x2daa39(0x633)])==null?0x1:_0x439645)*(0x1-_0x53d171);});}}function _0xa407a5(_0x3c4386,_0x55399a){const _0x10e7e2=_0x57b2d2;if((_0x55399a==null?void 0x0:_0x55399a[_0x10e7e2(0x7f4)])!==_0x10e7e2(0x357))return;let _0x5f0432=typeof _0x55399a[_0x10e7e2(0x1bd)]==_0x10e7e2(0x511)&&Number[_0x10e7e2(0x2ad)](_0x55399a[_0x10e7e2(0x1bd)])&&_0x55399a[_0x10e7e2(0x1bd)]>0x0?_0x55399a[_0x10e7e2(0x1bd)]/0x186a0:0x1;if(_0x5f0432!==0x1){var _0x27ff9f,_0x9b3ac7,_0x1e2eb6;_0x1b0fcf((_0x27ff9f=_0x3c4386[_0x10e7e2(0x1c3)])==null?void 0x0:_0x27ff9f['textStyle'],0x1/_0x5f0432),(_0x9b3ac7=_0x3c4386[_0x10e7e2(0x299)])==null||(_0x9b3ac7=_0x9b3ac7[_0x10e7e2(0x6e8)])==null||_0x9b3ac7[_0x10e7e2(0x4ea)](_0x231409=>_0x1b0fcf(_0x231409['ts'],0x1/_0x5f0432)),(_0x1e2eb6=_0x3c4386[_0x10e7e2(0x299)])==null||(_0x1e2eb6=_0x1e2eb6['paragraphs'])==null||_0x1e2eb6[_0x10e7e2(0x4ea)](_0x4a2792=>{var _0x58d88a;_0x1b0fcf((_0x58d88a=_0x4a2792['paragraphStyle'])==null?void 0x0:_0x58d88a['textStyle'],0x1/_0x5f0432);});}let _0x22b356=0x1-(typeof _0x55399a['lineSpaceReduction']==_0x10e7e2(0x511)&&Number['isFinite'](_0x55399a[_0x10e7e2(0x800)])&&_0x55399a[_0x10e7e2(0x800)]<0x186a0?Math['max'](0x0,_0x55399a[_0x10e7e2(0x800)])/0x186a0:0x0);if(_0x22b356>0x0&&_0x22b356!==0x1){var _0x3184e3;(_0x3184e3=_0x3c4386[_0x10e7e2(0x299)])==null||(_0x3184e3=_0x3184e3[_0x10e7e2(0x1c8)])==null||_0x3184e3[_0x10e7e2(0x4ea)](_0x238cac=>{const _0x130d15=_0x10e7e2;var _0x1f85d4;let _0x13a298=(_0x1f85d4=_0x238cac['paragraphStyle'])==null?void 0x0:_0x1f85d4['lineSpacing'];typeof _0x13a298==_0x130d15(0x511)&&Number[_0x130d15(0x2ad)](_0x13a298)&&(_0x238cac[_0x130d15(0x6f6)][_0x130d15(0x633)]=_0x13a298/_0x22b356);});}}function _0x39b5de(_0x5d9b0b,_0x4fde3f='shape-text-document'){const _0xd82825=_0x57b2d2;var _0x5cc6de;let _0xfeafbf=((_0x5cc6de=_0x5d9b0b[_0xd82825(0x2dd)])==null?'':_0x5cc6de)[_0xd82825(0x370)](/\r\n/g,'\x0a')[_0xd82825(0x370)](/\r/g,'\x0a')['split']('\x0a'),_0x3d63b0=_0xfeafbf[_0xd82825(0x422)]('\x0d')+'\x0d\x0a',_0x2963f2=Math[_0xd82825(0x729)](0x0,_0x3d63b0[_0xd82825(0x1bf)]-0x2),_0x1a7a9e=new Set(),_0x1e6eee=_0x3ca430(_0x5d9b0b),_0x1433b8=_0xb795f(_0x5d9b0b),_0x5ac9bd=_0x38ba7a(_0x5d9b0b),_0x5f50d7=0x0;return{'id':_0x4fde3f,'body':{'dataStream':_0x3d63b0,'paragraphs':_0xfeafbf[_0xd82825(0x499)](_0x12279c=>{const _0x1c9655=_0xd82825;let _0x5e1ead=_0x5f50d7+_0x12279c[_0x1c9655(0x1bf)];return _0x5f50d7+=_0x12279c[_0x1c9655(0x1bf)]+0x1,{'startIndex':_0x5e1ead,'paragraphId':(0x0,_0x2cafcd[_0x1c9655(0x4f6)])(_0x1a7a9e),'paragraphStyle':{'horizontalAlign':_0x1433b8,'textStyle':_0x1e6eee}};}),'textRuns':[{'st':0x0,'ed':Math[_0xd82825(0x729)](0x1,_0x2963f2),'ts':_0x1e6eee}]},'documentStyle':{'marginBottom':0x0,'marginLeft':0x0,'marginRight':0x0,'marginTop':0x0,'textStyle':_0x1e6eee,'renderConfig':{'horizontalAlign':_0x1433b8,'verticalAlign':_0x5ac9bd}}};}function _0x3ca430(_0x3c97eb){const _0x418786=_0x57b2d2;return{..._0x3c97eb[_0x418786(0x2e0)]?{'ff':_0x3c97eb[_0x418786(0x2e0)]}:{},..._0x3c97eb['fontSize']===void 0x0?{}:{'fs':_0x3c97eb['fontSize']},..._0x3c97eb[_0x418786(0x245)]?{'cl':{'rgb':_0x3c97eb[_0x418786(0x245)]}}:{},..._0x3c97eb[_0x418786(0x254)]===void 0x0?{}:{'bl':_0x3c97eb[_0x418786(0x254)]?_0x2cafcd[_0x418786(0x48f)][_0x418786(0x860)]:_0x2cafcd['BooleanNumber'][_0x418786(0x535)]},..._0x3c97eb[_0x418786(0x226)]===void 0x0?{}:{'it':_0x3c97eb['italic']?_0x2cafcd[_0x418786(0x48f)][_0x418786(0x860)]:_0x2cafcd['BooleanNumber'][_0x418786(0x535)]},..._0x3c97eb[_0x418786(0x141)]===void 0x0?{}:{'ul':{'s':_0x3c97eb[_0x418786(0x141)]?_0x2cafcd[_0x418786(0x48f)][_0x418786(0x860)]:_0x2cafcd['BooleanNumber'][_0x418786(0x535)]}}};}function _0xb795f(_0x50d507){const _0x4d5dc9=_0x57b2d2;let _0x237d9d=_0x50d507[_0x4d5dc9(0x818)];return _0x237d9d===_0x4d5dc9(0x55c)?_0x2cafcd['HorizontalAlign']['CENTER']:_0x237d9d===_0x4d5dc9(0x58c)?_0x2cafcd[_0x4d5dc9(0x829)]['RIGHT']:_0x2cafcd[_0x4d5dc9(0x829)][_0x4d5dc9(0x355)];}function _0x38ba7a(_0x16904d){const _0x3a4e15=_0x57b2d2;let _0x57af6f=_0x16904d[_0x3a4e15(0x5f9)];return _0x57af6f==='middle'?_0x2cafcd[_0x3a4e15(0x40b)][_0x3a4e15(0x2bb)]:_0x57af6f===_0x3a4e15(0x6fa)?_0x2cafcd['VerticalAlign']['BOTTOM']:_0x2cafcd['VerticalAlign'][_0x3a4e15(0x2cd)];}function _0x556952(_0x47790f){const _0x56c366=_0x57b2d2;var _0x587ad9;let _0xd0c289=(_0x587ad9=_0x47790f[_0x56c366(0x299)])==null?void 0x0:_0x587ad9[_0x56c366(0x1c8)],_0x260339,_0x21d029=!0x1;if(!_0xd0c289)return{'hasParagraphAlign':_0x21d029,'isMixed':!0x1};for(let _0x11f8aa of _0xd0c289){var _0x3f54c5;let _0x25aadf=(_0x3f54c5=_0x11f8aa[_0x56c366(0x6f6)])==null?void 0x0:_0x3f54c5[_0x56c366(0x818)];if(_0x25aadf!==void 0x0){if(!_0x21d029){_0x260339=_0x25aadf,_0x21d029=!0x0;continue;}if(_0x260339!==_0x25aadf)return{'hasParagraphAlign':!0x0,'isMixed':!0x0};}}return{'horizontalAlign':_0x260339,'hasParagraphAlign':_0x21d029,'isMixed':!0x1};}function _0x44406c(_0x32f4fc,_0x2877da={}){const _0x315071=_0x57b2d2;var _0x1e6a1c,_0x5dede7,_0x571fcc;let _0xdb340=(_0x1e6a1c=_0x32f4fc[_0x315071(0x1c3)])==null?void 0x0:_0x1e6a1c['renderConfig'],_0x31ffc4=_0x556952(_0x32f4fc);return{'horizontalAlign':_0x31ffc4[_0x315071(0x6f2)]?_0x31ffc4[_0x315071(0x493)]?void 0x0:_0x31ffc4['horizontalAlign']:(_0x5dede7=_0xdb340==null?void 0x0:_0xdb340[_0x315071(0x818)])==null?_0x2877da[_0x315071(0x818)]:_0x5dede7,'verticalAlign':(_0x571fcc=_0xdb340==null?void 0x0:_0xdb340['verticalAlign'])==null?_0x2877da[_0x315071(0x5f9)]:_0x571fcc};}function _0x584e1f(_0x8e047f,_0x41329d){const _0x15794b=_0x57b2d2;var _0x257c75;let _0x337a29=(_0x257c75=_0x8e047f['documentStyle'])==null?{}:_0x257c75,_0x48a672={..._0x337a29[_0x15794b(0x6d6)]};if(_0x41329d[_0x15794b(0x5f9)]!==void 0x0&&(_0x48a672['verticalAlign']=_0x41329d['verticalAlign']),_0x41329d['horizontalAlign']!==void 0x0){var _0x2a72b5;_0x48a672[_0x15794b(0x818)]=_0x41329d[_0x15794b(0x818)];let _0x289501=(_0x2a72b5=_0x8e047f[_0x15794b(0x299)])==null?void 0x0:_0x2a72b5[_0x15794b(0x1c8)];if(_0x289501){for(let _0x2ba896 of _0x289501)_0x2ba896['paragraphStyle']={..._0x2ba896[_0x15794b(0x6f6)],'horizontalAlign':_0x41329d[_0x15794b(0x818)]};}}_0x8e047f[_0x15794b(0x1c3)]={..._0x337a29,'renderConfig':Object[_0x15794b(0x21a)](_0x48a672)[_0x15794b(0x1bf)]>0x0?_0x48a672:void 0x0};}function _0x36a57b(_0x2fc1e7){const _0x319241=_0x57b2d2;var _0x5a6439,_0x1ad5f5,_0x52d134,_0x3deecf;let _0x28c4d5=(_0x5a6439=(_0x1ad5f5=_0x2fc1e7[_0x319241(0x299)])==null||(_0x1ad5f5=_0x1ad5f5[_0x319241(0x833)])==null?void 0x0:_0x1ad5f5[_0x319241(0x1bf)])==null?0x0:_0x5a6439,_0x522a0e=(_0x52d134=_0x2fc1e7['body'])==null?void 0x0:_0x52d134['sectionBreaks'];if(_0x522a0e!=null&&_0x522a0e[_0x319241(0x1bf)])for(let _0x35e22d of _0x522a0e){var _0x4dda94;_0x35e22d['gridType']=(_0x4dda94=_0x35e22d[_0x319241(0x3bb)])==null?_0x2cafcd[_0x319241(0x3f2)]['DEFAULT']:_0x4dda94;}else _0x2fc1e7[_0x319241(0x299)]&&(_0x2fc1e7[_0x319241(0x299)][_0x319241(0x3af)]=[{'sectionId':(0x0,_0x2cafcd[_0x319241(0x73a)])(new Set()),'startIndex':Math[_0x319241(0x729)](0x0,_0x28c4d5-0x1),'gridType':_0x2cafcd[_0x319241(0x3f2)][_0x319241(0x1a1)]}]);let _0x154f72=(_0x3deecf=_0x2fc1e7['body'])==null?void 0x0:_0x3deecf[_0x319241(0x1c8)];if(_0x154f72)for(let _0x5e265f of _0x154f72){var _0x4d80bd,_0x4066c3,_0x123640,_0x294596,_0x2a38e2,_0x33667a,_0x1dc178,_0x29feb8;_0x5e265f[_0x319241(0x6f6)]={..._0x5e265f[_0x319241(0x6f6)],'lineSpacing':(_0x4d80bd=(_0x4066c3=_0x5e265f[_0x319241(0x6f6)])==null?void 0x0:_0x4066c3['lineSpacing'])==null?0x1:_0x4d80bd,'snapToGrid':(_0x123640=(_0x294596=_0x5e265f[_0x319241(0x6f6)])==null?void 0x0:_0x294596['snapToGrid'])==null?_0x2cafcd[_0x319241(0x48f)][_0x319241(0x535)]:_0x123640,'spaceAbove':(_0x2a38e2=(_0x33667a=_0x5e265f[_0x319241(0x6f6)])==null?void 0x0:_0x33667a[_0x319241(0x572)])==null?{'v':0x0}:_0x2a38e2,'spaceBelow':(_0x1dc178=(_0x29feb8=_0x5e265f[_0x319241(0x6f6)])==null?void 0x0:_0x29feb8['spaceBelow'])==null?{'v':0x0}:_0x1dc178};}}function _0x1873cd(_0x22286d,_0x346e38,_0x2d096d=new Set()){const _0x33ef0c=_0x57b2d2;var _0x290775;let _0x187320=(_0x290775=_0x22286d['body'])==null?void 0x0:_0x290775[_0x33ef0c(0x3af)];if(!(!(_0x187320!=null&&_0x187320[_0x33ef0c(0x1bf)])||!_0x346e38))for(let _0x573340 of _0x187320){let _0x41ff47={..._0x346e38,..._0x573340[_0x33ef0c(0x6d6)]},_0x32ab85=_0x346e38;for(let _0x5ee069 of _0x2d096d)Object[_0x33ef0c(0x31e)][_0x33ef0c(0x30a)]['call'](_0x32ab85,_0x5ee069)&&(_0x41ff47[_0x5ee069]=_0x32ab85[_0x5ee069]);_0x573340['renderConfig']={..._0x41ff47};}}function _0xa4ab74(_0x1fc395){const _0x3d0453=_0x57b2d2;var _0x4c8b9b;let _0x3010d5=(_0x4c8b9b=_0x1fc395[_0x3d0453(0x299)])==null?void 0x0:_0x4c8b9b[_0x3d0453(0x3af)];if(_0x3010d5!=null&&_0x3010d5[_0x3d0453(0x1bf)])for(let _0x57d83 of _0x3010d5){if(!_0x57d83[_0x3d0453(0x6d6)])continue;let _0x1b0498={..._0x57d83[_0x3d0453(0x6d6)]};delete _0x1b0498[_0x3d0453(0x7a1)],delete _0x1b0498['vertexAngle'],delete _0x1b0498[_0x3d0453(0x766)],delete _0x1b0498['horizontalAlign'],delete _0x1b0498['verticalAlign'],delete _0x1b0498['shapeTextOpticalVerticalAlign'],_0x57d83[_0x3d0453(0x6d6)]=Object['keys'](_0x1b0498)[_0x3d0453(0x1bf)]>0x0?_0x1b0498:void 0x0;}}function _0x157a85(_0x14f457){const _0x444b57=_0x57b2d2;var _0x20f256;let _0x11c273=_0x14f457[_0x444b57(0x299)],_0x2bc8ab=_0x11c273==null?void 0x0:_0x11c273[_0x444b57(0x1c8)],_0x359f84=_0x11c273==null?void 0x0:_0x11c273[_0x444b57(0x833)];if(!_0x11c273||!_0x359f84)return;let _0x5e7711=[];for(let _0xfc8431=0x0;_0xfc8431<_0x359f84[_0x444b57(0x1bf)];_0xfc8431++)_0x359f84[_0xfc8431]==='\x0d'&&_0x5e7711[_0x444b57(0x43d)](_0xfc8431);if(!_0x5e7711[_0x444b57(0x1bf)])return;let _0x5cdf42=new Set((_0x20f256=_0x2bc8ab==null?void 0x0:_0x2bc8ab[_0x444b57(0x499)](_0x212e50=>_0x212e50[_0x444b57(0x3b1)])[_0x444b57(0x7aa)](Boolean))==null?[]:_0x20f256),_0x510883=new Set(),_0x9402fb=_0x5e7711[_0x444b57(0x499)](_0x276a70=>{const _0x27f86a=_0x444b57;var _0x1f6400;let _0xc2d61d=(_0x1f6400=_0x2bc8ab==null?void 0x0:_0x2bc8ab['findIndex']((_0x418ad2,_0x183054)=>!_0x510883['has'](_0x183054)&&_0x418ad2[_0x27f86a(0x825)]===_0x276a70))==null?-0x1:_0x1f6400;if(!(_0xc2d61d<0x0))return _0x510883[_0x27f86a(0x66a)](_0xc2d61d),_0x2bc8ab==null?void 0x0:_0x2bc8ab[_0xc2d61d];}),_0x2e8d52=0x0;_0x11c273[_0x444b57(0x1c8)]=_0x9402fb['map']((_0x36041c,_0x348b53)=>{const _0x55cfe5=_0x444b57;var _0x2a9ffc,_0x24ae11;let _0x4346c3=_0x36041c;for(;!_0x4346c3&&_0x2e8d52<((_0x2a9ffc=_0x2bc8ab==null?void 0x0:_0x2bc8ab['length'])==null?0x0:_0x2a9ffc);){let _0x37acdd=_0x2e8d52++;_0x510883[_0x55cfe5(0x43f)](_0x37acdd)||(_0x510883['add'](_0x37acdd),_0x4346c3=_0x2bc8ab==null?void 0x0:_0x2bc8ab[_0x37acdd]);}return{..._0x4346c3,'startIndex':_0x5e7711[_0x348b53],'paragraphId':(_0x24ae11=_0x4346c3==null?void 0x0:_0x4346c3[_0x55cfe5(0x3b1)])==null?(0x0,_0x2cafcd[_0x55cfe5(0x4f6)])(_0x5cdf42):_0x24ae11};});}function _0x33580d(_0x1ae5a0,_0x543029){const _0x18bb4b=_0x57b2d2;var _0x2c3555,_0x2e6995,_0x1e66b5,_0x59cae4,_0x2bca7c,_0x111a9f,_0x599bd2,_0x1caed4,_0x503245;let {isHorizontal:_0x34b369,textRect:_0x56d68c}=_0x543029,_0x27f4b7=_0x34b369?_0x56d68c[_0x18bb4b(0x345)]:_0x56d68c[_0x18bb4b(0x5fc)],_0x4ef6c7=_0x1cac3d(_0x1ae5a0,_0x34b369?_0x56d68c[_0x18bb4b(0x5fc)]:_0x56d68c[_0x18bb4b(0x345)]),_0x247c61=_0x50c764(_0x1ae5a0);_0x394aec(_0x247c61,_0x543029[_0x18bb4b(0x1b8)]);let _0x3f2c4f=(_0x2c3555=_0x247c61[_0x18bb4b(0x1c3)])==null?{}:_0x2c3555,_0x4565d1={..._0x3f2c4f[_0x18bb4b(0x6d6)],'wrapStrategy':(_0x2e6995=(_0x1e66b5=_0x543029[_0x18bb4b(0x766)])==null?(_0x59cae4=_0x3f2c4f['renderConfig'])==null?void 0x0:_0x59cae4[_0x18bb4b(0x766)]:_0x1e66b5)==null?_0x2cafcd[_0x18bb4b(0x4dc)]['WRAP']:_0x2e6995,'zeroWidthParagraphBreak':(_0x2bca7c=(_0x111a9f=_0x3f2c4f[_0x18bb4b(0x6d6)])==null?void 0x0:_0x111a9f['zeroWidthParagraphBreak'])==null?_0x2cafcd[_0x18bb4b(0x48f)][_0x18bb4b(0x860)]:_0x2bca7c,'shapeTextOpticalVerticalAlign':_0x34b369?_0x2cafcd[_0x18bb4b(0x48f)][_0x18bb4b(0x535)]:_0x2cafcd[_0x18bb4b(0x48f)][_0x18bb4b(0x860)]};_0x34b369?(delete _0x4565d1[_0x18bb4b(0x7a1)],delete _0x4565d1['vertexAngle']):(_0x4565d1[_0x18bb4b(0x7a1)]=_0x482181[_0x18bb4b(0x1ed)],_0x4565d1['vertexAngle']=_0x482181['VERTICAL_ROTATE_ANGLE']),_0x247c61[_0x18bb4b(0x1c3)]={..._0x3f2c4f,'documentFlavor':_0x2cafcd[_0x18bb4b(0x530)]['UNSPECIFIED'],'marginTop':0x0,'marginBottom':0x0,'marginLeft':0x0,'marginRight':0x0,'pageSize':{'width':_0x27f4b7,'height':_0x4ef6c7},'renderConfig':_0x4565d1},_0x157a85(_0x247c61),_0x36a57b(_0x247c61);let _0x510a5a=_0x44406c(_0x247c61,_0x543029);return _0x584e1f(_0x247c61,{'horizontalAlign':_0x510a5a[_0x18bb4b(0x818)],'verticalAlign':(_0x599bd2=_0x543029[_0x18bb4b(0x5f9)])==null?_0x510a5a[_0x18bb4b(0x5f9)]:_0x599bd2}),(_0x1caed4=_0x247c61[_0x18bb4b(0x1c3)])==null||(_0x1caed4=_0x1caed4[_0x18bb4b(0x6d6)])==null||delete _0x1caed4[_0x18bb4b(0x818)],_0x1873cd(_0x247c61,(_0x503245=_0x247c61['documentStyle'])==null?void 0x0:_0x503245['renderConfig'],new Set(['shapeTextOpticalVerticalAlign','verticalAlign',_0x18bb4b(0x766)])),_0x247c61;}function _0x1cac3d(_0x30ceb6,_0x25e28c){const _0x58cc6a=_0x57b2d2;var _0x243aa2,_0x14836c;return(_0x243aa2=(_0x14836c=_0x30ceb6[_0x58cc6a(0x299)])==null||(_0x14836c=_0x14836c[_0x58cc6a(0x3af)])==null?void 0x0:_0x14836c[_0x58cc6a(0x19f)](_0x243ca8=>{const _0x3b3afc=_0x58cc6a;var _0x1c034d,_0xd06603;return((_0x1c034d=(_0xd06603=_0x243ca8[_0x3b3afc(0x404)])==null?void 0x0:_0xd06603[_0x3b3afc(0x1bf)])==null?0x0:_0x1c034d)>0x1;}))!=null&&_0x243aa2?Math[_0x58cc6a(0x729)](0x1,_0x25e28c):0x1/0x0;}function _0x4173d7(_0x451a53,_0x6a87f6={}){const _0x9a27e7=_0x57b2d2;var _0x42158c,_0x23bd00,_0x32e24b;let _0x31b750=_0x50c764(_0x451a53);_0xa407a5(_0x31b750,_0x6a87f6[_0x9a27e7(0x1b8)]);let _0x5b84dc=(_0x42158c=_0x31b750[_0x9a27e7(0x1c3)])==null?{}:_0x42158c,_0x59a2c6={..._0x5b84dc[_0x9a27e7(0x6d6)]},_0x52cfcf=_0x44406c(_0x31b750,_0x6a87f6),_0x4cffb1=(_0x23bd00=_0x6a87f6[_0x9a27e7(0x818)])==null?_0x52cfcf['horizontalAlign']:_0x23bd00,_0x4c9a3c=(_0x32e24b=_0x6a87f6[_0x9a27e7(0x5f9)])==null?_0x52cfcf['verticalAlign']:_0x32e24b;delete _0x59a2c6[_0x9a27e7(0x7a1)],delete _0x59a2c6[_0x9a27e7(0x383)],delete _0x59a2c6[_0x9a27e7(0x766)];let _0xd6fee8=_0x59a2c6[_0x9a27e7(0x24f)];return(_0xd6fee8===_0x2cafcd['BooleanNumber'][_0x9a27e7(0x860)]||_0xd6fee8===!0x0||_0xd6fee8===_0x2cafcd[_0x9a27e7(0x48f)][_0x9a27e7(0x535)]||_0xd6fee8===!0x1)&&delete _0x59a2c6[_0x9a27e7(0x24f)],_0x31b750[_0x9a27e7(0x1c3)]={..._0x5b84dc,'marginTop':0x0,'marginBottom':0x0,'marginLeft':0x0,'marginRight':0x0,'pageSize':{'width':0x1/0x0,'height':0x1/0x0},'renderConfig':Object['keys'](_0x59a2c6)[_0x9a27e7(0x1bf)]>0x0?_0x59a2c6:void 0x0},_0x584e1f(_0x31b750,{'horizontalAlign':_0x4cffb1,'verticalAlign':_0x4c9a3c}),_0xa4ab74(_0x31b750),_0x31b750;}function _0x50c764(_0x27b96c){const _0xdc41e4=_0x57b2d2;var _0x100053,_0x589d7c;return{..._0x27b96c,'body':_0x27b96c[_0xdc41e4(0x299)]?{..._0x27b96c[_0xdc41e4(0x299)],'paragraphs':(_0x100053=_0x27b96c['body'][_0xdc41e4(0x1c8)])==null?void 0x0:_0x100053[_0xdc41e4(0x499)](_0x2ede3b=>({..._0x2ede3b,'paragraphStyle':_0x254b6e(_0x2ede3b['paragraphStyle'])})),'sectionBreaks':(_0x589d7c=_0x27b96c[_0xdc41e4(0x299)][_0xdc41e4(0x3af)])==null?void 0x0:_0x589d7c['map'](_0x5521ed=>({..._0x5521ed,'renderConfig':_0x254b6e(_0x5521ed['renderConfig'])}))}:_0x27b96c[_0xdc41e4(0x299)],'documentStyle':_0x27b96c['documentStyle']?{..._0x27b96c[_0xdc41e4(0x1c3)],'renderConfig':_0x254b6e(_0x27b96c[_0xdc41e4(0x1c3)][_0xdc41e4(0x6d6)])}:_0x27b96c[_0xdc41e4(0x1c3)]};}function _0x254b6e(_0x2007a3){const _0x15f4c5=_0x57b2d2;return Array[_0x15f4c5(0x1ee)](_0x2007a3)?_0x2007a3[_0x15f4c5(0x499)](_0x41b953=>_0x254b6e(_0x41b953)):!_0x2007a3||typeof _0x2007a3!=_0x15f4c5(0x60f)?_0x2007a3:Object['fromEntries'](Object[_0x15f4c5(0x550)](_0x2007a3)['map'](([_0x4954f9,_0x24a96e])=>[_0x4954f9,_0x254b6e(_0x24a96e)]));}function _0x18cbac(_0x301b39){const _0x104de1=_0x57b2d2;var _0x267999,_0x229971,_0x38c43f;if(!(_0x301b39!=null&&_0x301b39[_0x104de1(0x32a)]))return null;let _0x46de8d=(_0x267999=_0x301b39['doc']['documentStyle'])==null?void 0x0:_0x267999[_0x104de1(0x6d6)];return{..._0x301b39,'ha':(_0x229971=_0x301b39['ha'])==null?_0x46de8d==null?void 0x0:_0x46de8d[_0x104de1(0x818)]:_0x229971,'va':(_0x38c43f=_0x301b39['va'])==null?_0x46de8d==null?void 0x0:_0x46de8d[_0x104de1(0x5f9)]:_0x38c43f,'doc':_0x301b39['doc']};}function _0x32c64c(_0x5a0e10){let {isRichText:_0xe8ba28,..._0x4bcef5}=_0x5a0e10==null?{}:_0x5a0e10;return _0x4bcef5;}function _0x32513c(_0x3895a0){const _0x170c88=_0x57b2d2;return _0x3895a0[_0x170c88(0x370)](/\r\n/g,'\x0a')[_0x170c88(0x370)](/\r/g,'\x0a');}function _0x4150dd(_0x380043){const _0x31400a=_0x57b2d2;if(_0x380043&&_0x31400a(0x2dd)in _0x380043&&typeof _0x380043[_0x31400a(0x2dd)]=='string')return _0x380043['text'];}function _0x341d50(_0x532333){const _0x24e793=_0x57b2d2;if(!_0x532333||!(_0x24e793(0x224)in _0x532333)||_0x532333[_0x24e793(0x224)]!==!0x1)return;let _0x40441a=_0x532333;return{..._0x532333[_0x24e793(0x2e0)]?{'ff':_0x532333[_0x24e793(0x2e0)]}:{},..._0x532333['fontSize']===void 0x0?{}:{'fs':_0x532333[_0x24e793(0x3e3)]},..._0x532333['color']?{'cl':{'rgb':_0x532333['color']}}:{},..._0x532333[_0x24e793(0x254)]===void 0x0?{}:{'bl':_0x532333[_0x24e793(0x254)]?_0x2cafcd[_0x24e793(0x48f)]['TRUE']:_0x2cafcd[_0x24e793(0x48f)][_0x24e793(0x535)]},..._0x532333[_0x24e793(0x226)]===void 0x0?{}:{'it':_0x532333[_0x24e793(0x226)]?_0x2cafcd[_0x24e793(0x48f)]['TRUE']:_0x2cafcd[_0x24e793(0x48f)][_0x24e793(0x535)]},..._0x532333['underline']===void 0x0?{}:{'ul':{'s':_0x532333['underline']?_0x2cafcd['BooleanNumber']['TRUE']:_0x2cafcd['BooleanNumber']['FALSE']}},..._0x40441a[_0x24e793(0x184)]===void 0x0?{}:{'st':{'s':_0x40441a[_0x24e793(0x184)]?_0x2cafcd[_0x24e793(0x48f)][_0x24e793(0x860)]:_0x2cafcd['BooleanNumber']['FALSE']}},..._0x40441a[_0x24e793(0x2e5)]===void 0x0?{}:{'textFill':_0x40441a[_0x24e793(0x2e5)]}};}function _0x571c69(_0x1f4f25,_0x1d2a05=_0x2cafcd[_0x57b2d2(0x829)][_0x57b2d2(0x355)],_0x557172=''){const _0x5029c3=_0x57b2d2;let _0x46d474=_0x32513c(_0x557172)['split']('\x0a'),_0x312b9d=_0x46d474[_0x5029c3(0x422)]('\x0d')+'\x0d\x0a',_0x1a32b8=Math[_0x5029c3(0x729)](0x0,_0x312b9d[_0x5029c3(0x1bf)]-0x2),_0x1342fe=new Set(),_0x1f1664=0x0,_0x46cb9d=_0x46d474['map'](_0x46722b=>{const _0x4ad724=_0x5029c3;let _0x214c43={'startIndex':_0x1f1664+_0x46722b[_0x4ad724(0x1bf)],'paragraphId':(0x0,_0x2cafcd['createParagraphId'])(_0x1342fe),'paragraphStyle':{'horizontalAlign':_0x1d2a05}};return _0x1f1664+=_0x46722b[_0x4ad724(0x1bf)]+0x1,_0x214c43;});return{'id':'shape-text','body':{'dataStream':_0x312b9d,'textRuns':_0x1f4f25?[{'st':0x0,'ed':Math[_0x5029c3(0x729)](0x1,_0x1a32b8),'ts':{..._0x1f4f25}}]:[],'paragraphs':_0x46cb9d},'documentStyle':{'textStyle':_0x1f4f25?{..._0x1f4f25}:void 0x0}};}function _0x2602b7(_0x5d718d,_0x1ae29d){const _0x450d79=_0x57b2d2;var _0x5d544e,_0x11f732,_0x11a48d;let _0x52be72=_0x5d718d[_0x450d79(0x41f)],_0x37e5c0=_0x18cbac(_0x52be72&&'dataModel'in _0x52be72?_0x52be72['dataModel']:void 0x0),_0x302b6f=(_0x5d544e=(_0x11f732=_0x1ae29d[_0x450d79(0x818)])==null?_0x37e5c0==null?void 0x0:_0x37e5c0['ha']:_0x11f732)==null?_0x2cafcd[_0x450d79(0x829)][_0x450d79(0x355)]:_0x5d544e,_0x75c003={..._0x341d50(_0x52be72),..._0x1ae29d[_0x450d79(0x491)]},_0xfbf0c8=Object[_0x450d79(0x21a)](_0x75c003)[_0x450d79(0x1bf)]>0x0;if(_0x37e5c0!=null&&_0x37e5c0['doc']){var _0x4d3059,_0x472fef;return{'va':(_0x4d3059=_0x37e5c0['va'])==null?_0x2cafcd['VerticalAlign'][_0x450d79(0x2cd)]:_0x4d3059,'ha':(_0x472fef=_0x37e5c0['ha'])==null?_0x2cafcd[_0x450d79(0x829)][_0x450d79(0x355)]:_0x472fef,'doc':_0x50c764(_0x37e5c0[_0x450d79(0x32a)])};}return{'va':_0x2cafcd[_0x450d79(0x40b)]['TOP'],'ha':_0x302b6f,'doc':_0x571c69(_0xfbf0c8?_0x75c003:void 0x0,_0x302b6f,(_0x11a48d=_0x4150dd(_0x52be72))==null?'':_0x11a48d)};}function _0x400403(_0x18fbe9,_0x2f9ada){const _0x11cf13=_0x57b2d2;var _0xeb00ec,_0x4005c8,_0x280dba,_0x59c836,_0x598e2b;let _0x43913f=_0x18fbe9[_0x11cf13(0x41f)],_0x3cd589=_0x32c64c(_0x43913f),_0x1c0428=_0x43913f&&_0x11cf13(0x53c)in _0x43913f&&_0x43913f[_0x11cf13(0x53c)]&&typeof _0x43913f[_0x11cf13(0x53c)]==_0x11cf13(0x60f)?_0x43913f['dataModel']:{},_0x32970e=_0x4150dd(_0x43913f),_0x26b321=_0x2602b7(_0x18fbe9,_0x2f9ada),_0x4d5255=(_0xeb00ec=_0x2f9ada[_0x11cf13(0x818)])==null?_0x26b321['ha']:_0xeb00ec,_0x3e9bdb=(_0x4005c8=_0x2f9ada[_0x11cf13(0x5f9)])==null?_0x26b321['va']:_0x4005c8,_0x52e9ec=_0x26b321[_0x11cf13(0x32a)];if(_0x52e9ec[_0x11cf13(0x1c3)]={..._0x52e9ec[_0x11cf13(0x1c3)],'renderConfig':{...(_0x280dba=_0x52e9ec[_0x11cf13(0x1c3)])==null?void 0x0:_0x280dba[_0x11cf13(0x6d6)],'horizontalAlign':_0x4d5255,'verticalAlign':_0x3e9bdb}},_0x2f9ada[_0x11cf13(0x491)]){var _0x1ed301,_0x1bb8a0;_0x52e9ec[_0x11cf13(0x1c3)]={..._0x52e9ec[_0x11cf13(0x1c3)],'textStyle':{...(_0x1ed301=_0x52e9ec[_0x11cf13(0x1c3)])==null?void 0x0:_0x1ed301[_0x11cf13(0x491)],..._0x2f9ada['textStyle']}};let _0x36ae86=(_0x1bb8a0=_0x52e9ec[_0x11cf13(0x299)])==null?void 0x0:_0x1bb8a0[_0x11cf13(0x6e8)];if(_0x36ae86){for(let _0x33b36e of _0x36ae86)_0x33b36e['ts']={..._0x33b36e['ts'],..._0x2f9ada[_0x11cf13(0x491)]};}}let _0x2afa8f=(_0x59c836=_0x52e9ec[_0x11cf13(0x299)])==null?void 0x0:_0x59c836['paragraphs'];if(_0x2afa8f){for(let _0x553682 of _0x2afa8f)_0x553682['paragraphStyle']={..._0x553682['paragraphStyle'],'horizontalAlign':_0x4d5255};}return{'shapeText':{..._0x3cd589,'isHorizontal':(_0x598e2b=_0x43913f==null?void 0x0:_0x43913f['isHorizontal'])==null?!0x0:_0x598e2b,..._0x32970e===void 0x0?{}:{'text':_0x32970e},'dataModel':{..._0x1c0428,'va':_0x3e9bdb,'ha':_0x4d5255,'doc':_0x52e9ec}}};}let _0x3fbd87=_0x57b2d2(0x37b),_0x472d0a=_0x57b2d2(0x508),_0x28d47e=_0x57b2d2(0x3b8),_0x561de7=_0x57b2d2(0x337),_0x394d34=_0x57b2d2(0x616),_0x2f4fe6={'none':_0x21428d[_0x57b2d2(0x6eb)][_0x57b2d2(0x3f9)],'solid':_0x21428d['ShapeFillEnum'][_0x57b2d2(0x72f)],'gradient':_0x21428d[_0x57b2d2(0x6eb)][_0x57b2d2(0x88b)],'picture':_0x21428d['ShapeFillEnum'][_0x57b2d2(0x545)]};function _0x2638be(_0x3ba400){const _0x4cfe0d=_0x57b2d2;return _0x3ba400 instanceof HTMLElement?!!_0x3ba400[_0x4cfe0d(0x3bf)](_0x4cfe0d(0x483)):!0x1;}function _0x500ede(_0x13c676){const _0x128366=_0x57b2d2;_0x2638be(_0x13c676[_0x128366(0x1f3)])||_0x13c676[_0x128366(0x399)]();}function _0x1a705d(_0x45e85d){const _0x3247f8=_0x57b2d2;_0x45e85d[_0x3247f8(0x3ea)](),_0x500ede(_0x45e85d);}function _0x12f33d(_0x5f440b){const _0x33adfd=_0x57b2d2;let _0x2a97bb=(0x0,_0x55b95c[_0x33adfd(0x7b5)])(!0x1),_0x507f64=(0x0,_0x55b95c[_0x33adfd(0x7b5)])(null);return{'handleOpenChange':_0x28b4d7=>{const _0x5c9561=_0x33adfd;!_0x28b4d7&&_0x2a97bb[_0x5c9561(0x654)]||_0x5f440b(_0x28b4d7);},'markInternalInteraction':()=>{const _0x35aedc=_0x33adfd;_0x2a97bb[_0x35aedc(0x654)]=!0x0,_0x507f64[_0x35aedc(0x654)]&&clearTimeout(_0x507f64[_0x35aedc(0x654)]),_0x507f64['current']=setTimeout(()=>{const _0x6aac25=_0x35aedc;_0x2a97bb[_0x6aac25(0x654)]=!0x1,_0x507f64[_0x6aac25(0x654)]=null;},0x1f4);}};}function _0x3f5933(_0x1d01eb){const _0x4f7dce=_0x57b2d2;return(0x0,_0x43e701['jsx'])(_0x4f7dce(0x2bf),{'className':(0x0,_0x3f5bc5[_0x4f7dce(0x679)])('univer-flex\x20univer-size-5\x20univer-shrink-0\x20univer-items-center\x20univer-justify-center\x20univer-leading-none',_0x1d01eb['className']),'children':_0x1d01eb['children']});}function _0x5c6172(_0x553743){const _0x3d8d8d=_0x57b2d2;return(0x0,_0x43e701[_0x3d8d8d(0x715)])(_0x3d8d8d(0x3ec),{'className':'univer-flex\x20univer-h-7\x20univer-items-center\x20univer-gap-1\x20univer-px-1','children':_0x553743['children']});}function _0x24519e(_0x4db599){const _0x31d4e0=_0x57b2d2;var _0x1a2fa9;return(0x0,_0x43e701['jsx'])(_0x31d4e0(0x3ec),{..._0x4db599[_0x31d4e0(0x2f1)],'onMouseDown':_0x4e3092=>{const _0x1f081d=_0x31d4e0;if(_0x4db599['onMouseDown']){_0x4db599[_0x1f081d(0x39a)](_0x4e3092);return;}_0x4e3092['stopPropagation'](),_0x2638be(_0x4e3092[_0x1f081d(0x1f3)])||_0x4e3092[_0x1f081d(0x399)]();},'className':(0x0,_0x3f5bc5[_0x31d4e0(0x679)])(_0x31d4e0(0x2c4),_0x3f5bc5[_0x31d4e0(0x152)],(_0x1a2fa9=_0x4db599[_0x31d4e0(0x19b)])==null?_0x31d4e0(0x418):_0x1a2fa9,_0x4db599[_0x31d4e0(0x471)]),'children':_0x4db599[_0x31d4e0(0x6cc)]});}function _0x2f01fb(_0x1aec37){const _0x5f29ec=_0x57b2d2;var _0x59a6fc,_0x2794c1;let _0x3f8dd0=(0x0,_0x26fc1b[_0x5f29ec(0x755)])(_0x2cafcd['LocaleService']),_0x264acf=_0x1aec37[_0x5f29ec(0x873)]?_0x3f8dd0['t'](_0x1aec37[_0x5f29ec(0x873)]):(_0x59a6fc=_0x1aec37[_0x5f29ec(0x364)])==null?'':_0x59a6fc;return(0x0,_0x43e701[_0x5f29ec(0x715)])(_0x3f5bc5['Tooltip'],{'title':_0x264acf,'placement':_0x5f29ec(0x6fa),'children':(0x0,_0x43e701[_0x5f29ec(0x715)])(_0x5f29ec(0x894),{'type':_0x5f29ec(0x894),'aria-label':_0x264acf,'aria-expanded':_0x1aec37[_0x5f29ec(0x5b7)],'disabled':_0x1aec37['disabled'],'onClick':_0x1aec37[_0x5f29ec(0x161)],'onMouseDown':_0x1aec37['onMouseDown'],'onPointerDown':_0x1aec37['onPointerDown'],'className':(0x0,_0x3f5bc5['clsx'])(_0x5f29ec(0x7ba),(_0x2794c1=_0x1aec37[_0x5f29ec(0x390)])==null?_0x5f29ec(0x2c2):_0x2794c1,_0x1aec37[_0x5f29ec(0x471)],{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x1aec37[_0x5f29ec(0x822)]}),'children':_0x1aec37[_0x5f29ec(0x6cc)]})});}function _0x31e04e(_0x204a9b){const _0x202bfc=_0x57b2d2;var _0x623912;return(0x0,_0x43e701[_0x202bfc(0x39b)])(_0x2f01fb,{'title':_0x204a9b[_0x202bfc(0x364)],'titleKey':_0x204a9b[_0x202bfc(0x873)],'active':_0x204a9b['active'],'ariaExpanded':_0x204a9b[_0x202bfc(0x822)],'className':_0x204a9b[_0x202bfc(0x471)],'sizeClassName':(_0x623912=_0x204a9b[_0x202bfc(0x390)])==null?'univer-h-6\x20univer-min-w-9\x20univer-w-auto\x20univer-gap-1\x20univer-px-1.5':_0x623912,'onMouseDown':_0x204a9b[_0x202bfc(0x39a)],'onPointerDown':_0x204a9b[_0x202bfc(0x6be)],'children':[_0x204a9b['icon'],(0x0,_0x43e701['jsx'])(_0x3329e2,{'className':_0x202bfc(0x883)})]});}function _0x4a74b6(_0x1622c3){const _0x53bbbc=_0x57b2d2;let _0x2b330a=_0x26fc1b['FONT_SIZE_LIST'][_0x53bbbc(0x499)](_0x1fc46b=>({'label':_0x1fc46b['label'],'value':String(_0x1fc46b[_0x53bbbc(0x865)])}));return(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x53bbbc(0x1bc)],{'className':(0x0,_0x3f5bc5[_0x53bbbc(0x679)])('!univer-h-6\x20univer-w-14\x20!univer-min-w-0\x20!univer-rounded-md\x20!univer-px-1.5',_0x1622c3[_0x53bbbc(0x471)]),'value':String(_0x1622c3[_0x53bbbc(0x865)]),'options':_0x2b330a,'onChange':_0x39bf46=>{const _0x32ace7=_0x53bbbc;var _0x2d2c68;let _0x232b9c=Number(_0x39bf46);Number[_0x32ace7(0x23a)](_0x232b9c)||_0x1622c3[_0x32ace7(0x1e8)](_0x232b9c),(_0x2d2c68=_0x1622c3[_0x32ace7(0x82a)])==null||_0x2d2c68[_0x32ace7(0x211)](_0x1622c3);}});}function _0x1a69a3(_0x365959){const _0x520b03=_0x57b2d2;let {title:_0xda736d,open:_0x49079e,disabled:_0x5d6626,icon:_0xca68c2,overlay:_0x51198c,popoverClassName:_0x3a9ab3,onApply:_0x29684a,onOpenChange:_0x5742ce}=_0x365959,_0x2f82f2=_0x520b03(0x659);return(0x0,_0x43e701[_0x520b03(0x39b)])(_0x520b03(0x3ec),{'className':'univer-flex\x20univer-h-6\x20univer-items-center','children':[(0x0,_0x43e701[_0x520b03(0x715)])(_0x3f5bc5[_0x520b03(0x587)],{'title':_0xda736d,'placement':'bottom','children':(0x0,_0x43e701[_0x520b03(0x715)])(_0x520b03(0x894),{'type':_0x520b03(0x894),'aria-label':_0xda736d,'disabled':_0x5d6626,'onClick':_0x29684a,'className':(0x0,_0x3f5bc5['clsx'])(_0x2f82f2,_0x520b03(0x76d),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x49079e}),'children':_0xca68c2})}),(0x0,_0x43e701[_0x520b03(0x715)])(_0x3f5bc5['Dropdown'],{'disabled':_0x5d6626,'open':_0x49079e,'className':_0x3a9ab3,'onOpenChange':_0x5742ce,'overlay':_0x51198c,'children':(0x0,_0x43e701['jsx'])(_0x520b03(0x2bf),{'children':(0x0,_0x43e701[_0x520b03(0x715)])(_0x3f5bc5[_0x520b03(0x587)],{'title':_0xda736d,'placement':_0x520b03(0x6fa),'children':(0x0,_0x43e701['jsx'])('button',{'type':_0x520b03(0x894),'aria-label':_0xda736d,'disabled':_0x5d6626,'className':(0x0,_0x3f5bc5[_0x520b03(0x679)])(_0x2f82f2,_0x520b03(0x5bc),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x49079e}),'children':(0x0,_0x43e701[_0x520b03(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x520b03(0x679)])(_0x520b03(0x673),{'univer-rotate-180':_0x49079e})})})})})})]});}function _0x6c3714(_0x1c1de9){const _0x28001d=_0x57b2d2;switch(_0x1c1de9){case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x7ee)]:case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x48b)]:return _0x28001d(0x2ae);case _0x21428d[_0x28001d(0x17d)]['Dash']:return _0x28001d(0x417);case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x7b3)]:return'4\x202\x201\x202';case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x779)]:return _0x28001d(0x41e);case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x149)]:return _0x28001d(0x764);case _0x21428d[_0x28001d(0x17d)][_0x28001d(0x4a1)]:return _0x28001d(0x78c);case _0x21428d[_0x28001d(0x17d)]['Solid']:default:return;}}function _0x2e5808(_0x8418b){const _0x77fe1a=_0x57b2d2;let {lineStrokeType:_0x2959ad,dashType:_0xde4a33,color:_0x1c33a3=_0x77fe1a(0x268),width:_0x506c5d=0x2,className:_0x3b06a3}=_0x8418b;return _0x2959ad===_0x21428d[_0x77fe1a(0x711)][_0x77fe1a(0x379)]?(0x0,_0x43e701[_0x77fe1a(0x39b)])(_0x77fe1a(0x2bf),{'className':(0x0,_0x3f5bc5[_0x77fe1a(0x679)])(_0x77fe1a(0x295),_0x3b06a3),'children':[(0x0,_0x43e701['jsx'])(_0x77fe1a(0x2bf),{'className':_0x77fe1a(0x52f)}),(0x0,_0x43e701['jsx'])(_0x77fe1a(0x2bf),{'className':_0x77fe1a(0x1cf)})]}):(0x0,_0x43e701[_0x77fe1a(0x715)])(_0x77fe1a(0x4fc),{'className':(0x0,_0x3f5bc5[_0x77fe1a(0x679)])(_0x77fe1a(0x459),_0x3b06a3),'viewBox':'0\x200\x2048\x2020','aria-hidden':_0x77fe1a(0x519),'children':(0x0,_0x43e701[_0x77fe1a(0x715)])(_0x77fe1a(0x54e),{'x1':'4','y1':'10','x2':'44','y2':'10','stroke':_0x1c33a3,'strokeWidth':Math[_0x77fe1a(0x729)](0x1,Math[_0x77fe1a(0x4a5)](0x4,_0x506c5d)),'strokeDasharray':_0x6c3714(_0xde4a33),'strokeLinecap':_0xde4a33===_0x21428d[_0x77fe1a(0x17d)][_0x77fe1a(0x7ee)]?_0x77fe1a(0x2e8):_0x77fe1a(0x32f)})});}function _0x1f7d23(_0x20f0ba){const _0x5537a0=_0x57b2d2;return(0x0,_0x43e701[_0x5537a0(0x715)])(_0x5537a0(0x2bf),{'className':'univer-flex\x20univer-h-5\x20univer-items-center\x20univer-justify-center','children':(0x0,_0x43e701[_0x5537a0(0x715)])(_0x2e5808,{'dashType':_0x20f0ba['dashType'],'color':_0x20f0ba[_0x5537a0(0x245)],'width':_0x20f0ba['width']})});}let _0xfa27b0=[_0x57b2d2(0x5b0),_0x57b2d2(0x1e4),_0x57b2d2(0x371)],_0x3e86ff={'min':0x1,'max':0xa,'step':0x1};function _0x342c75(_0x4d6c56){const _0x24f43a=_0x57b2d2;let {labelKey:_0x5c7535,value:_0x2df7e2,min:_0x636098,max:_0x214416,step:_0x59e75b,disabled:_0x2a36cb,suffix:_0x1543e6='',onChange:_0x1a0da2}=_0x4d6c56;return(0x0,_0x43e701[_0x24f43a(0x39b)])('div',{'className':_0x24f43a(0x35c),'children':[(0x0,_0x43e701['jsxs'])(_0x24f43a(0x3ec),{'className':_0x24f43a(0x861),'children':[(0x0,_0x43e701[_0x24f43a(0x715)])(_0x24f43a(0x2bf),{'className':'univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':(0x0,_0x26fc1b[_0x24f43a(0x755)])(_0x2cafcd[_0x24f43a(0x15c)])['t'](_0x5c7535)}),(0x0,_0x43e701['jsxs'])('span',{'className':'univer-text-xs\x20univer-text-gray-500\x20dark:!univer-text-gray-300','children':[_0x2df7e2,_0x1543e6]})]}),(0x0,_0x43e701['jsx'])('input',{'type':'range','min':_0x636098,'max':_0x214416,'step':_0x59e75b,'value':_0x2df7e2,'disabled':_0x2a36cb,'onChange':_0x1c12d1=>_0x1a0da2(Number(_0x1c12d1['target'][_0x24f43a(0x865)])),'className':_0x24f43a(0x14b)})]});}function _0x43c6b9(_0x511ae9){const _0x2e7035=_0x57b2d2;var _0x193618,_0xeb85bc,_0x54fbd2,_0x344931,_0xc33169;let {titleKey:_0x109f07,shapeData:_0x691bf8,disabled:_0x1ca30b,resetLabelKey:_0x4e698a=_0x2e7035(0x6b0),modeOptions:_0x3f1aef=_0xfa27b0,showDashDropdown:_0x359793=!0x0,fallbackColor:_0x426adf=_0x472d0a,widthRange:_0x12e86d=_0x3e86ff,onReset:_0x54ac9e,onRequestClose:_0x25f7d2,onUpdateShapeData:_0x2f4ea0}=_0x511ae9,_0xc41a47=(0x0,_0x26fc1b[_0x2e7035(0x755)])(_0x2cafcd[_0x2e7035(0x15c)]),_0x4e4d2a=_0xc41a47['t'](_0x109f07),_0x39b28a=(0x0,_0x26fc1b[_0x2e7035(0x162)])(_0xc41a47[_0x2e7035(0x500)],_0xc41a47[_0x2e7035(0x2f5)]()),[_0x393cf5,_0x314dc3]=(0x0,_0x55b95c[_0x2e7035(0x614)])(!0x1),_0x198289=_0x691bf8[_0x2e7035(0x1fb)],_0x19fffb=(_0x193618=_0x198289==null?void 0x0:_0x198289['color'])==null?_0x426adf:_0x193618,_0x2370c5=Math['max'](_0x12e86d['min'],Math[_0x2e7035(0x4a5)](_0x12e86d[_0x2e7035(0x729)],Math[_0x2e7035(0x2e8)]((_0xeb85bc=_0x198289==null?void 0x0:_0x198289[_0x2e7035(0x345)])==null?_0x21428d[_0x2e7035(0x352)]['strokeWidth']:_0xeb85bc))),_0x11a854=Math['round']((0x1-((_0x54fbd2=_0x198289==null?void 0x0:_0x198289[_0x2e7035(0x2f0)])==null?_0x21428d[_0x2e7035(0x352)][_0x2e7035(0x580)]:_0x54fbd2))*0x64),_0x27ac8d=(_0x344931=_0x198289==null?void 0x0:_0x198289[_0x2e7035(0x194)])==null?_0x21428d[_0x2e7035(0x352)][_0x2e7035(0x34e)]:_0x344931,_0x3d9662=(_0xc33169=_0x198289==null?void 0x0:_0x198289[_0x2e7035(0x599)])==null?_0x21428d[_0x2e7035(0x352)][_0x2e7035(0x55b)]:_0xc33169,_0x171659=_0x3d9662!==_0x21428d[_0x2e7035(0x711)]['NoLine']&&_0x27ac8d!==_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x4b3)]&&_0x27ac8d!==_0x21428d['ShapeLineDashEnum'][_0x2e7035(0x436)],_0x243d69=_0x3d9662===_0x21428d[_0x2e7035(0x711)][_0x2e7035(0x379)]?'none':_0x27ac8d===_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x4b3)]?_0x2e7035(0x1e4):_0x27ac8d===_0x21428d['ShapeLineDashEnum'][_0x2e7035(0x7ee)]||_0x27ac8d===_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x48b)]?_0x2e7035(0x2e2):_0x27ac8d===_0x21428d['ShapeLineDashEnum']['Dash']?_0x2e7035(0x371):_0x2e7035(0x68f),_0x41f06=[{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x4b3)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)]['Solid'])},{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x7ee)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)]['RoundDot'])},{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x48b)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x48b)])},{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)]['Dash'],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d['ShapeLineDashEnum'][_0x2e7035(0x436)])},{'label':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x7b3)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x7b3)])},{'label':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x779)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)]['LongDash'])},{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x149)],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x149)])},{'label':(0x0,_0x43e701['jsx'])(_0x1f7d23,{'dashType':_0x21428d['ShapeLineDashEnum']['LongDashDotDot'],'color':_0x19fffb,'width':_0x2370c5}),'value':String(_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x4a1)])}],_0x25b941={'none':_0xc41a47['t'](_0x2e7035(0x2cc)),'solid':_0xc41a47['t'](_0x2e7035(0x202)),'dash':_0xc41a47['t']('shape-editor-ui.line.dashType.dash'),'dot':_0xc41a47['t']('shape-editor-ui.line.dashType.roundDot')};(0x0,_0x55b95c[_0x2e7035(0x877)])(()=>{_0x3d9662===_0x21428d['ShapeLineTypeEnum']['NoLine']&&_0x314dc3(!0x1);},[_0x3d9662]);let _0x12676c=_0xc560e2=>{const _0x4433ac=_0x2e7035;_0x2f4ea0({'oldShapeData':{'stroke':_0x691bf8[_0x4433ac(0x1fb)]}},{'stroke':_0xc560e2});},_0x433bbe=_0x24b120=>{const _0x1b7164=_0x2e7035;var _0x51985a;_0x12676c({..._0x198289,'lineStrokeType':_0x3d9662,'color':_0x19fffb,'width':_0x2370c5,'opacity':(_0x51985a=_0x198289==null?void 0x0:_0x198289[_0x1b7164(0x2f0)])==null?_0x21428d[_0x1b7164(0x352)][_0x1b7164(0x580)]:_0x51985a,'dashType':_0x27ac8d,..._0x24b120});},_0x4c4a26=_0x14e37d=>{const _0x559718=_0x2e7035;if(_0x14e37d===_0x559718(0x5b0)){_0x433bbe({'lineStrokeType':_0x21428d[_0x559718(0x711)][_0x559718(0x379)]});return;}_0x433bbe({'lineStrokeType':_0x21428d[_0x559718(0x711)][_0x559718(0x816)],'dashType':_0x14e37d===_0x559718(0x1e4)?_0x21428d[_0x559718(0x17d)][_0x559718(0x4b3)]:_0x14e37d===_0x559718(0x2e2)?_0x21428d[_0x559718(0x17d)][_0x559718(0x7ee)]:_0x21428d[_0x559718(0x17d)][_0x559718(0x436)]});};return(0x0,_0x43e701['jsx'])(_0x2e7035(0x3ec),{'dir':_0x39b28a,'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x3d92b4=>{const _0x108044=_0x2e7035;_0x3d92b4[_0x108044(0x3ea)](),(!(_0x3d92b4[_0x108044(0x1f3)]instanceof HTMLElement)||!_0x3d92b4[_0x108044(0x1f3)][_0x108044(0x3bf)](_0x108044(0x5b3)))&&_0x314dc3(!0x1);},'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])(_0x2e7035(0x431),_0x2e7035(0x424)),'children':(0x0,_0x43e701[_0x2e7035(0x39b)])(_0x2e7035(0x3ec),{'className':_0x2e7035(0x6e4),'children':[(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e7035(0x2bf),{'className':_0x2e7035(0x7d3),'children':_0x4e4d2a}),(0x0,_0x43e701[_0x2e7035(0x39b)])(_0x2e7035(0x3ec),{'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])(_0x2e7035(0x871),_0x359793&&_0x3f1aef[_0x2e7035(0x349)](_0x2e7035(0x371))?'univer-grid-cols-[repeat(3,minmax(0,1fr))_76px]':_0x2e7035(0x5f0)),'children':[_0x3f1aef['map'](_0x3216bc=>(0x0,_0x43e701['jsx'])(_0x3f5bc5['Tooltip'],{'title':_0x25b941[_0x3216bc],'placement':'top','children':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e7035(0x894),{'type':_0x2e7035(0x894),'disabled':_0x1ca30b,'aria-label':_0x25b941[_0x3216bc],'onClick':()=>_0x4c4a26(_0x3216bc),'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])(_0x2e7035(0x274),{'univer-border-primary-600\x20univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0x243d69===_0x3216bc}),'children':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e5808,{'lineStrokeType':_0x3216bc==='none'?_0x21428d['ShapeLineTypeEnum'][_0x2e7035(0x379)]:_0x21428d[_0x2e7035(0x711)][_0x2e7035(0x816)],'dashType':_0x3216bc===_0x2e7035(0x371)?_0x21428d[_0x2e7035(0x17d)][_0x2e7035(0x436)]:_0x3216bc===_0x2e7035(0x2e2)?_0x21428d[_0x2e7035(0x17d)]['RoundDot']:_0x21428d['ShapeLineDashEnum'][_0x2e7035(0x4b3)],'color':_0x3216bc==='none'?void 0x0:_0x19fffb,'width':_0x3216bc===_0x2e7035(0x5b0)?0x2:_0x2370c5})})},_0x3216bc)),_0x359793&&_0x3f1aef[_0x2e7035(0x349)]('dash')&&(0x0,_0x43e701[_0x2e7035(0x715)])(_0x3f5bc5[_0x2e7035(0x5a4)],{'disabled':_0x1ca30b||_0x3d9662===_0x21428d[_0x2e7035(0x711)][_0x2e7035(0x379)],'open':_0x393cf5,'onOpenChange':_0x314dc3,'overlay':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e7035(0x3ec),{'dir':_0x39b28a,'data-u-comp':_0x2e7035(0x5d4),'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x596587=>_0x596587[_0x2e7035(0x3ea)](),'className':_0x2e7035(0x18b),'children':_0x41f06[_0x2e7035(0x499)](_0x14b473=>(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e7035(0x894),{'type':'button','onClick':()=>{const _0x4d78f0=_0x2e7035;let _0x4d2812=Number(_0x14b473[_0x4d78f0(0x865)]);_0x433bbe({'lineStrokeType':_0x21428d[_0x4d78f0(0x711)][_0x4d78f0(0x816)],'dashType':_0x4d2812}),_0x314dc3(!0x1);},'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])(_0x2e7035(0x71c),{'univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0x14b473[_0x2e7035(0x865)]===String(_0x27ac8d)}),'children':_0x14b473[_0x2e7035(0x751)]},_0x14b473[_0x2e7035(0x865)]))}),'children':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e7035(0x2bf),{'className':'univer-block\x20univer-w-full','data-u-comp':_0x2e7035(0x5d4),'children':(0x0,_0x43e701[_0x2e7035(0x715)])(_0x3f5bc5[_0x2e7035(0x587)],{'title':_0xc41a47['t'](_0x2e7035(0x7ea)),'placement':_0x2e7035(0x62a),'children':(0x0,_0x43e701[_0x2e7035(0x39b)])('button',{'type':_0x2e7035(0x894),'role':_0x2e7035(0x505),'aria-expanded':_0x393cf5,'disabled':_0x1ca30b||_0x3d9662===_0x21428d[_0x2e7035(0x711)][_0x2e7035(0x379)],'onClick':_0x6d02e7=>{const _0x560c12=_0x2e7035;_0x6d02e7[_0x560c12(0x3ea)](),_0x314dc3(_0x3c132f=>!_0x3c132f);},'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])('univer-flex\x20univer-h-8\x20univer-w-full\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-px-1\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-border-primary-600\x20hover:univer-bg-gray-50\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-800',{'univer-border-primary-600\x20univer-bg-primary-50\x20dark:!univer-bg-gray-800':_0x171659}),'children':[(0x0,_0x43e701[_0x2e7035(0x715)])(_0x2e5808,{'dashType':_0x21428d[_0x2e7035(0x17d)]['LongDashDot'],'color':_0x19fffb,'width':_0x2370c5,'className':_0x2e7035(0x5ac)}),(0x0,_0x43e701['jsx'])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x2e7035(0x679)])(_0x2e7035(0x673),{'univer-rotate-180':_0x393cf5})})]})})})})]}),(0x0,_0x43e701[_0x2e7035(0x715)])(_0x342c75,{'labelKey':_0x2e7035(0x7d4),'value':_0x2370c5,'min':_0x12e86d[_0x2e7035(0x4a5)],'max':_0x12e86d[_0x2e7035(0x729)],'step':_0x12e86d[_0x2e7035(0x253)],'disabled':_0x1ca30b||_0x3d9662===_0x21428d[_0x2e7035(0x711)]['NoLine'],'onChange':_0x13a9e9=>{const _0x25d1fa=_0x2e7035;_0x433bbe({'lineStrokeType':_0x21428d[_0x25d1fa(0x711)]['SolidLine'],'width':_0x13a9e9});}}),(0x0,_0x43e701['jsx'])(_0x2e7035(0x3ec),{'className':_0x2e7035(0x278)}),_0x54ac9e&&(0x0,_0x43e701[_0x2e7035(0x715)])('button',{'type':_0x2e7035(0x894),'disabled':_0x1ca30b,'onClick':()=>{_0x54ac9e(),_0x25f7d2==null||_0x25f7d2();},'className':_0x2e7035(0x182),'children':_0xc41a47['t'](_0x4e698a)}),(0x0,_0x43e701[_0x2e7035(0x715)])(_0x3f5bc5['ColorPicker'],{'value':_0x19fffb,'onChange':_0x4eeb55=>{const _0x3395ce=_0x2e7035;_0x433bbe({'lineStrokeType':_0x21428d[_0x3395ce(0x711)][_0x3395ce(0x816)],'color':_0x4eeb55});}}),(0x0,_0x43e701[_0x2e7035(0x715)])(_0x342c75,{'labelKey':'shape-editor-ui.line.transparency','value':_0x11a854,'min':0x0,'max':0x64,'step':0x5,'suffix':'%','disabled':_0x1ca30b||_0x3d9662===_0x21428d[_0x2e7035(0x711)][_0x2e7035(0x379)],'onChange':_0x2d8038=>{const _0x45fe5f=_0x2e7035;_0x433bbe({'opacity':(0x64-Math[_0x45fe5f(0x729)](0x0,Math['min'](0x64,_0x2d8038)))/0x64});}})]})});}function _0x1edc0d(_0x20e341){const _0x5d0891=_0x57b2d2;var _0x583493;let {titleKey:_0x11398c,shapeData:_0x19a779,disabled:_0x5998ca,resetLabelKey:_0x5e4dd2,fallbackColor:_0x90dd1b=_0x472d0a,onReset:_0x5c03a9,onUpdateShapeData:_0x3afb61}=_0x20e341,_0x57cdf2=(0x0,_0x26fc1b[_0x5d0891(0x755)])(_0x2cafcd[_0x5d0891(0x15c)])['t'](_0x11398c),[_0x46c092,_0x1744cd]=(0x0,_0x55b95c[_0x5d0891(0x614)])(!0x1),{handleOpenChange:_0x185668,markInternalInteraction:_0x58b5b7}=_0x12f33d(_0x1744cd),_0x435e15=_0x19a779[_0x5d0891(0x1fb)],_0x564a42=(_0x583493=_0x435e15==null?void 0x0:_0x435e15[_0x5d0891(0x245)])==null?_0x90dd1b:_0x583493;return(0x0,_0x43e701[_0x5d0891(0x715)])(_0x3f5bc5[_0x5d0891(0x5a4)],{'disabled':_0x5998ca,'open':_0x46c092,'onOpenChange':_0x185668,'overlay':(0x0,_0x43e701['jsx'])(_0x5d0891(0x3ec),{'onPointerDownCapture':_0x3f324d=>{_0x58b5b7(),_0x500ede(_0x3f324d);},'onMouseDownCapture':_0xa11d4c=>{_0x58b5b7(),_0x500ede(_0xa11d4c);},'children':(0x0,_0x43e701[_0x5d0891(0x715)])(_0x43c6b9,{'titleKey':_0x11398c,'shapeData':_0x19a779,'disabled':_0x5998ca,'resetLabelKey':_0x5e4dd2,'fallbackColor':_0x90dd1b,'onReset':_0x5c03a9,'onRequestClose':()=>_0x1744cd(!0x1),'onUpdateShapeData':_0x3afb61})}),'children':(0x0,_0x43e701[_0x5d0891(0x715)])(_0x5d0891(0x2bf),{'children':(0x0,_0x43e701[_0x5d0891(0x715)])(_0x3f5bc5[_0x5d0891(0x587)],{'title':_0x57cdf2,'placement':_0x5d0891(0x6fa),'children':(0x0,_0x43e701[_0x5d0891(0x39b)])('button',{'type':'button','aria-label':_0x57cdf2,'disabled':_0x5998ca,'className':(0x0,_0x3f5bc5[_0x5d0891(0x679)])(_0x5d0891(0x310),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x46c092}),'children':[(0x0,_0x43e701['jsx'])(_0x2a8eae,{'className':'univer-text-xl','extend':{'colorChannel1':_0x564a42}}),(0x0,_0x43e701[_0x5d0891(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x5d0891(0x679)])('univer-text-xs\x20univer-text-gray-600\x20univer-transition-transform\x20dark:!univer-text-gray-300',{'univer-rotate-180':_0x46c092})})]})})})});}function _0x3defc9(_0x41732c){const _0x1550a9=_0x57b2d2;var _0x2fe096,_0x25d454;return(_0x2fe096=(_0x25d454=_0x41732c['fill'])==null?void 0x0:_0x25d454[_0x1550a9(0x18e)])==null?_0x21428d[_0x1550a9(0x352)]['fillType']:_0x2fe096;}function _0x1d9363(_0x1bb5a5){const _0x1c6140=_0x57b2d2;switch(_0x1bb5a5){case _0x21428d['ShapeGradientTypeEnum']['Radial']:return'radial';case _0x21428d[_0x1c6140(0x312)][_0x1c6140(0x1de)]:return _0x1c6140(0x214);case _0x21428d['ShapeGradientTypeEnum'][_0x1c6140(0x490)]:return _0x1c6140(0x760);case _0x21428d[_0x1c6140(0x312)][_0x1c6140(0x73e)]:default:return'linear';}}function _0x2d4c96(_0x2ae3f7){const _0x483d72=_0x57b2d2;switch(_0x2ae3f7){case'radial':return _0x21428d['ShapeGradientTypeEnum']['Radial'];case _0x483d72(0x214):return _0x21428d[_0x483d72(0x312)]['Angular'];case _0x483d72(0x760):return _0x21428d[_0x483d72(0x312)][_0x483d72(0x490)];default:return _0x21428d[_0x483d72(0x312)]['Linear'];}}function _0x59988c(_0x70a05b,_0x37b091,_0x2d0d75){const _0x223f3a=_0x57b2d2;var _0x164e20,_0x590f98;let _0x51f6a8=_0x70a05b['fill'];return{'type':_0x1d9363((_0x164e20=_0x51f6a8==null?void 0x0:_0x51f6a8[_0x223f3a(0x632)])==null?_0x21428d[_0x223f3a(0x352)][_0x223f3a(0x632)]:_0x164e20),'angle':(_0x590f98=_0x51f6a8==null?void 0x0:_0x51f6a8['gradientAngle'])==null?_0x21428d[_0x223f3a(0x352)]['gradientAngle']:_0x590f98,'stops':_0x51f6a8!=null&&_0x51f6a8[_0x223f3a(0x5b9)]&&_0x51f6a8[_0x223f3a(0x5b9)][_0x223f3a(0x1bf)]>=0x2?_0x51f6a8[_0x223f3a(0x5b9)][_0x223f3a(0x499)](_0x2e1ee3=>({'color':_0x2e1ee3['color'],'offset':_0x2e1ee3['position']*0x64,'opacity':_0x2e1ee3[_0x223f3a(0x2f0)]})):[{'color':_0x37b091,'offset':0x0},{'color':_0x2d0d75,'offset':0x64}]};}function _0x575e43(_0x7367ea){const _0x91f503=_0x57b2d2;var _0x2d6baf,_0x54c133,_0x56639f;let {shapeData:_0x2bcc62,disabled:_0x441181,onUpdateShapeData:_0x2cf2cf}=_0x7367ea,_0x167a89=(0x0,_0x26fc1b[_0x91f503(0x755)])(_0x2cafcd[_0x91f503(0x15c)]),_0x52354d=(0x0,_0x26fc1b[_0x91f503(0x755)])(_0x2cafcd[_0x91f503(0x3e1)]),_0xa24d74=(0x0,_0x26fc1b[_0x91f503(0x755)])(_0x2cafcd['IImageIoService']),_0x586b60=(0x0,_0x55b95c[_0x91f503(0x7b5)])(null),_0x5857b0=_0x2bcc62[_0x91f503(0x291)],_0x25c027=(_0x2d6baf=(_0x54c133=_0x5857b0==null?void 0x0:_0x5857b0[_0x91f503(0x7b1)])==null?_0x5857b0==null?void 0x0:_0x5857b0[_0x91f503(0x2f0)]:_0x54c133)==null?0x1:_0x2d6baf,_0x56fe39=Math[_0x91f503(0x2e8)]((0x1-_0x25c027)*0x64),_0x2276f5=_0x5857b0!=null&&_0x5857b0[_0x91f503(0x7b7)]&&/^(?:data:|https?:)/[_0x91f503(0x172)](_0x5857b0['fillImageSource'])?_0x5857b0[_0x91f503(0x7b7)]:void 0x0,_0x1430f3=_0x8a9931=>{const _0x360f0a=_0x91f503;var _0x340e27;_0x2cf2cf({'oldShapeData':{'fill':_0x5857b0?{..._0x5857b0}:void 0x0}},{'fill':{..._0x5857b0,'fillType':_0x21428d[_0x360f0a(0x6eb)][_0x360f0a(0x545)],'imageFillMode':(_0x340e27=_0x5857b0==null?void 0x0:_0x5857b0['imageFillMode'])==null?_0x21428d[_0x360f0a(0x562)][_0x360f0a(0x6b8)]:_0x340e27,..._0x8a9931}});};return(0x0,_0x43e701[_0x91f503(0x39b)])(_0x91f503(0x3ec),{'className':'univer-flex\x20univer-flex-col\x20univer-gap-2','children':[(0x0,_0x43e701[_0x91f503(0x39b)])('div',{'className':'univer-flex\x20univer-items-center\x20univer-justify-between\x20univer-gap-3','children':[(0x0,_0x43e701[_0x91f503(0x715)])(_0x91f503(0x2bf),{'className':'univer-shrink-0\x20univer-text-xs\x20univer-text-gray-600\x20dark:!univer-text-gray-200','children':_0x167a89['t']('shape-editor-ui.fill.picture.source')}),(0x0,_0x43e701[_0x91f503(0x715)])(_0x91f503(0x148),{'ref':_0x586b60,'type':_0x91f503(0x872),'accept':'image/*','className':'univer-hidden','onChange':async _0x5490be=>{const _0x2e8329=_0x91f503;var _0x3a0b6c;let _0x161678=(_0x3a0b6c=_0x5490be[_0x2e8329(0x1f3)][_0x2e8329(0x6e7)])==null?void 0x0:_0x3a0b6c[0x0];if(!_0x161678)return;_0x5490be[_0x2e8329(0x1f3)]['value']='';let _0x316b97=await _0xa24d74[_0x2e8329(0x47a)](_0x161678);if(_0x316b97==null)return;let {imageSourceType:_0x56eeba,source:_0x59a421,base64Cache:_0x405032}=_0x316b97,{image:_0x120391}=await(0x0,_0x293e90[_0x2e8329(0x2c3)])(_0x405032||'');_0xa24d74[_0x2e8329(0x6fb)](_0x59a421,_0x56eeba,_0x120391),_0x1430f3({'fillImageSource':_0x59a421,'fillImageSourceType':_0x56eeba,'imageOpacity':_0x25c027});}}),(0x0,_0x43e701[_0x91f503(0x715)])('button',{'type':'button','disabled':_0x441181,'onClick':()=>{const _0x112bd6=_0x91f503;var _0x126b15;return(_0x126b15=_0x586b60['current'])==null?void 0x0:_0x126b15[_0x112bd6(0x262)]();},'className':'univer-rounded\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-px-2\x20univer-py-1\x20univer-text-xs\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20disabled:univer-cursor-not-allowed\x20disabled:univer-opacity-50\x20dark:!univer-border-gray-600\x20dark:hover:!univer-bg-gray-700','children':_0x167a89['t'](_0x91f503(0x13c))})]}),_0x2276f5&&(0x0,_0x43e701['jsx'])(_0x91f503(0x2a3),{'src':_0x2276f5,'alt':'','className':_0x91f503(0x5f1)}),(0x0,_0x43e701['jsxs'])('div',{'className':_0x91f503(0x861),'children':[(0x0,_0x43e701[_0x91f503(0x715)])('span',{'className':_0x91f503(0x7cb),'children':_0x167a89['t']('shape-editor-ui.fill.transparency')}),(0x0,_0x43e701[_0x91f503(0x715)])(_0x91f503(0x3ec),{'className':'univer-w-20','children':(0x0,_0x43e701[_0x91f503(0x715)])(_0x3f5bc5[_0x91f503(0x740)],{'className':_0x91f503(0x54b),'value':_0x56fe39,'disabled':_0x441181,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x36552a=>_0x36552a+'%','parser':_0xb8dea7=>(_0xb8dea7==null?void 0x0:_0xb8dea7[_0x91f503(0x370)]('%',''))||'','onChange':_0x194c21=>{const _0x416e84=_0x91f503;_0x1430f3({'imageOpacity':(0x64-Math['max'](0x0,Math[_0x416e84(0x4a5)](0x64,_0x194c21==null?0x0:_0x194c21)))/0x64}),_0x52354d[_0x416e84(0x13d)](_0x2cafcd[_0x416e84(0x29e)],!0x1);},'onFocus':()=>_0x52354d['setContextValue'](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x0),'onBlur':()=>_0x52354d[_0x91f503(0x13d)](_0x2cafcd[_0x91f503(0x29e)],!0x1)})})]}),(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x91f503(0x443)],{'checked':(_0x56639f=_0x5857b0==null?void 0x0:_0x5857b0[_0x91f503(0x828)])==null?!0x1:_0x56639f,'disabled':_0x441181,'onChange':_0x5bc194=>{_0x1430f3({'imageRotateWithShape':_0x5bc194});},'children':(0x0,_0x43e701[_0x91f503(0x715)])(_0x91f503(0x2bf),{'className':_0x91f503(0x883),'children':_0x167a89['t'](_0x91f503(0x7d9))})})]});}function _0x4b8bcf(_0x16a22c){const _0x595842=_0x57b2d2;var _0xd741eb,_0xc13cd8;let {titleKey:_0x36147b,shapeData:_0x448e84,disabled:_0xe58597,fallbackColor:_0x368847=_0x3fbd87,fallbackGradientEndColor:_0x259b19=_0x595842(0x3b6),onUpdateShapeData:_0x170b80}=_0x16a22c,_0xa5562d=(0x0,_0x26fc1b[_0x595842(0x755)])(_0x2cafcd[_0x595842(0x15c)]),_0x24ffbd=_0xa5562d['t'](_0x36147b),[_0x354833,_0x543c47]=(0x0,_0x55b95c[_0x595842(0x614)])(!0x1),{handleOpenChange:_0x2b03f5,markInternalInteraction:_0xd9aba9}=_0x12f33d(_0x543c47),_0x29a35b=_0x448e84[_0x595842(0x291)],_0xce1f40=_0x3defc9(_0x448e84),_0x4ff5f6=(_0xd741eb=_0x29a35b==null?void 0x0:_0x29a35b[_0x595842(0x245)])==null?_0x368847:_0xd741eb,_0x1f671d=_0x209b9d=>{_0x170b80({'oldShapeData':{'fill':_0x29a35b?{..._0x29a35b}:void 0x0}},{'fill':_0x209b9d});},_0x26dff3=()=>{const _0x132ea9=_0x595842;let _0x5ec97f=_0x59988c(_0x448e84,_0x4ff5f6,_0x259b19);return{..._0x29a35b,'fillType':_0x21428d['ShapeFillEnum'][_0x132ea9(0x88b)],'color':_0x4ff5f6,'gradientType':_0x2d4c96(_0x5ec97f[_0x132ea9(0x1d9)]),'gradientAngle':_0x5ec97f[_0x132ea9(0x66c)],'gradientStops':_0x5ec97f[_0x132ea9(0x147)][_0x132ea9(0x499)](_0x27c703=>({'position':_0x27c703[_0x132ea9(0x2de)]/0x64,'color':_0x27c703[_0x132ea9(0x245)],'opacity':_0x27c703[_0x132ea9(0x2f0)]}))};};return(0x0,_0x43e701[_0x595842(0x715)])(_0x3f5bc5['Dropdown'],{'disabled':_0xe58597,'open':_0x354833,'onOpenChange':_0x2b03f5,'overlay':(0x0,_0x43e701[_0x595842(0x715)])(_0x595842(0x3ec),{'onPointerDownCapture':_0x55225b=>{_0xd9aba9(),_0x500ede(_0x55225b);},'onMouseDownCapture':_0x554c4f=>{_0xd9aba9(),_0x500ede(_0x554c4f);},'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x54b16a=>_0x54b16a[_0x595842(0x3ea)](),'className':(0x0,_0x3f5bc5[_0x595842(0x679)])(_0x595842(0x79e),'univer-rounded-lg\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-3\x20univer-shadow-lg\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900'),'children':(0x0,_0x43e701['jsx'])(_0x3b7064,{'compact':!0x0,'disabled':_0xe58597,'direction':_0xa5562d[_0x595842(0x2f5)](),'value':_0xce1f40,'typeValues':_0x2f4fe6,'color':_0x4ff5f6,'transparency':Math[_0x595842(0x2e8)]((0x1-((_0xc13cd8=_0x29a35b==null?void 0x0:_0x29a35b['opacity'])==null?0x1:_0xc13cd8))*0x64),'gradientValue':_0x59988c(_0x448e84,_0x4ff5f6,_0x259b19),'labels':{'noFill':_0xa5562d['t'](_0x595842(0x188)),'solidFill':_0xa5562d['t'](_0x595842(0x28e)),'gradientFill':_0xa5562d['t']('shape-editor-ui.fill.gradientFill'),'pictureFill':_0xa5562d['t'](_0x595842(0x34f)),'color':_0xa5562d['t'](_0x595842(0x57b)),'transparency':_0xa5562d['t'](_0x595842(0x76f))},'tabLabels':{'noFill':_0xa5562d['t'](_0x595842(0x188)),'solidFill':_0xa5562d['t']('shape-editor-ui.fill.solidFill'),'gradientFill':_0xa5562d['t'](_0x595842(0x86e)),'pictureFill':_0xa5562d['t'](_0x595842(0x34f))},'renderColorIcon':_0x3b33cb=>(0x0,_0x43e701[_0x595842(0x715)])(_0x53fc79,{'className':_0x595842(0x3ce),'extend':{'colorChannel1':_0x3b33cb}}),'onChange':_0x1c8ecf=>{const _0x211e7f=_0x595842;if(_0x1c8ecf===_0x21428d[_0x211e7f(0x6eb)][_0x211e7f(0x3f9)])_0x1f671d({..._0x29a35b,'fillType':_0x21428d[_0x211e7f(0x6eb)]['NoFill']});else{if(_0x1c8ecf===_0x21428d['ShapeFillEnum'][_0x211e7f(0x72f)]){var _0x124bcf;_0x1f671d({..._0x29a35b,'fillType':_0x21428d[_0x211e7f(0x6eb)]['SolidFill'],'color':_0x4ff5f6,'opacity':(_0x124bcf=_0x29a35b==null?void 0x0:_0x29a35b[_0x211e7f(0x2f0)])==null?0x1:_0x124bcf});}else{if(_0x1c8ecf===_0x21428d[_0x211e7f(0x6eb)]['GradientFill'])_0x1f671d(_0x26dff3());else{if(_0x1c8ecf===_0x21428d[_0x211e7f(0x6eb)][_0x211e7f(0x545)]){var _0x39d2f9,_0x24205c;_0x1f671d({..._0x29a35b,'fillType':_0x21428d[_0x211e7f(0x6eb)]['PictureFill'],'color':_0x4ff5f6,'imageOpacity':(_0x39d2f9=_0x29a35b==null?void 0x0:_0x29a35b[_0x211e7f(0x7b1)])==null?0x1:_0x39d2f9,'imageFillMode':(_0x24205c=_0x29a35b==null?void 0x0:_0x29a35b[_0x211e7f(0x2c6)])==null?_0x21428d['ImageFillModeEnum'][_0x211e7f(0x6b8)]:_0x24205c});}}}}},'onColorChange':_0x523eb7=>{const _0x3bdde0=_0x595842;var _0x55d88f;_0x1f671d({..._0x29a35b,'fillType':_0x21428d[_0x3bdde0(0x6eb)][_0x3bdde0(0x72f)],'color':_0x523eb7,'opacity':(_0x55d88f=_0x29a35b==null?void 0x0:_0x29a35b[_0x3bdde0(0x2f0)])==null?0x1:_0x55d88f});},'onTransparencyChange':_0x11f47c=>{const _0xf558cf=_0x595842;_0x1f671d({..._0x29a35b,'fillType':_0x21428d['ShapeFillEnum']['SolidFill'],'color':_0x4ff5f6,'opacity':(0x64-Math[_0xf558cf(0x729)](0x0,Math[_0xf558cf(0x4a5)](0x64,_0x11f47c)))/0x64});},'onGradientChange':_0x28d9bf=>{const _0x141fa5=_0x595842;_0x1f671d({..._0x29a35b,'fillType':_0x21428d[_0x141fa5(0x6eb)][_0x141fa5(0x88b)],'color':_0x4ff5f6,'gradientType':_0x2d4c96(_0x28d9bf['type']),'gradientAngle':_0x28d9bf[_0x141fa5(0x66c)],'gradientStops':_0x28d9bf['stops'][_0x141fa5(0x499)](_0x429f42=>({'position':_0x429f42[_0x141fa5(0x2de)]/0x64,'color':_0x429f42[_0x141fa5(0x245)],'opacity':_0x429f42[_0x141fa5(0x2f0)]}))});},'pictureFillEditor':(0x0,_0x43e701['jsx'])(_0x575e43,{'shapeData':_0x448e84,'disabled':_0xe58597,'onUpdateShapeData':_0x170b80})})}),'children':(0x0,_0x43e701['jsx'])('span',{'children':(0x0,_0x43e701[_0x595842(0x715)])(_0x3f5bc5[_0x595842(0x587)],{'title':_0x24ffbd,'placement':_0x595842(0x6fa),'children':(0x0,_0x43e701[_0x595842(0x39b)])(_0x595842(0x894),{'type':_0x595842(0x894),'disabled':_0xe58597,'className':(0x0,_0x3f5bc5['clsx'])(_0x595842(0x310),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x354833}),'children':[(0x0,_0x43e701[_0x595842(0x715)])(_0x53fc79,{'className':_0x595842(0x7ad),'extend':{'colorChannel1':_0xce1f40===_0x21428d['ShapeFillEnum'][_0x595842(0x3f9)]?'transparent':_0x4ff5f6}}),(0x0,_0x43e701[_0x595842(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x595842(0x679)])(_0x595842(0x673),{'univer-rotate-180':_0x354833})})]})})})});}function _0x4e260f(_0x46fc5c){const _0x3156e8=_0x57b2d2;switch(_0x46fc5c==null?void 0x0:_0x46fc5c[_0x3156e8(0x1d9)]){case _0x3156e8(0x5b0):return _0x21428d[_0x3156e8(0x6eb)]['NoFill'];case _0x3156e8(0x175):return _0x21428d[_0x3156e8(0x6eb)][_0x3156e8(0x88b)];case _0x3156e8(0x6ff):return _0x21428d[_0x3156e8(0x6eb)]['PictureFill'];default:return _0x21428d[_0x3156e8(0x6eb)][_0x3156e8(0x72f)];}}function _0x34c53a(_0x3ee6ff,_0x4db1f7){const _0x522249=_0x57b2d2;var _0x3a1525,_0x5287b5,_0x559673,_0x58ad26,_0x1548ee;return{'type':(_0x3a1525=_0x3ee6ff==null||(_0x5287b5=_0x3ee6ff[_0x522249(0x175)])==null?void 0x0:_0x5287b5[_0x522249(0x1d9)])==null?'linear':_0x3a1525,'angle':(_0x559673=_0x3ee6ff==null||(_0x58ad26=_0x3ee6ff[_0x522249(0x175)])==null?void 0x0:_0x58ad26['angle'])==null?0x0:_0x559673,'stops':!(_0x3ee6ff==null||(_0x1548ee=_0x3ee6ff[_0x522249(0x175)])==null)&&_0x1548ee['stops']&&_0x3ee6ff[_0x522249(0x175)][_0x522249(0x147)][_0x522249(0x1bf)]>=0x2?_0x3ee6ff[_0x522249(0x175)]['stops'][_0x522249(0x499)](_0x26ccde=>({'color':_0x26ccde[_0x522249(0x245)],'offset':_0x26ccde[_0x522249(0x2de)],'opacity':_0x26ccde['opacity']})):[{'color':_0x4db1f7,'offset':0x0},{'color':_0x522249(0x769),'offset':0x64}]};}function _0x1d214f(_0x38683c,_0xb39cf4){const _0x185a40=_0x57b2d2;var _0x43c6d5,_0x491953,_0x3670f3;return(_0x43c6d5=_0x38683c['textFill'])==null?{'type':_0x185a40(0x1e4),'color':(_0x491953=(_0x3670f3=_0x38683c['cl'])==null?void 0x0:_0x3670f3[_0x185a40(0x838)])==null?_0xb39cf4:_0x491953,'opacity':0x1}:_0x43c6d5;}function _0x466491(_0x51d8a1,_0x53a77a){const _0x1b4086=_0x57b2d2;var _0x51ad66,_0x49240f,_0x224806;return(_0x51ad66=(_0x49240f=_0x51d8a1[_0x1b4086(0x245)])==null?(_0x224806=_0x51d8a1[_0x1b4086(0x175)])==null||(_0x224806=_0x224806['stops'])==null||(_0x224806=_0x224806[0x0])==null?void 0x0:_0x224806['color']:_0x49240f)==null?_0x53a77a:_0x51ad66;}function _0x4f1357(_0x404e22){const _0x3ee1e5=_0x57b2d2;var _0x444feb,_0x1ca43b,_0x190703,_0x1aa914;let {fill:_0x43ff29,disabled:_0x3c983d,onChange:_0x34275f}=_0x404e22,_0x307c01=(0x0,_0x26fc1b[_0x3ee1e5(0x755)])(_0x2cafcd[_0x3ee1e5(0x15c)]),_0x2ba1eb=(0x0,_0x26fc1b[_0x3ee1e5(0x755)])(_0x2cafcd['IContextService']),_0x556bdd=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd['IImageIoService']),_0x2984b0=(0x0,_0x55b95c[_0x3ee1e5(0x7b5)])(null),_0x35bc12=(_0x444feb=(_0x1ca43b=(_0x190703=_0x43ff29[_0x3ee1e5(0x6ff)])==null?void 0x0:_0x190703['opacity'])==null?_0x43ff29[_0x3ee1e5(0x2f0)]:_0x1ca43b)==null?0x1:_0x444feb,_0x2286d9=Math['round']((0x1-_0x35bc12)*0x64),_0x452b8a=(_0x1aa914=_0x43ff29['picture'])!=null&&_0x1aa914[_0x3ee1e5(0x61d)]&&/^(?:data:|https?:)/[_0x3ee1e5(0x172)](_0x43ff29[_0x3ee1e5(0x6ff)][_0x3ee1e5(0x61d)])?_0x43ff29[_0x3ee1e5(0x6ff)][_0x3ee1e5(0x61d)]:void 0x0,_0xa9904=_0x19f3f9=>{const _0x20b923=_0x3ee1e5;var _0xb35d1c,_0x2dac16;_0x34275f({..._0x43ff29,'type':_0x20b923(0x6ff),'picture':{..._0x43ff29['picture'],'mode':(_0xb35d1c=(_0x2dac16=_0x43ff29[_0x20b923(0x6ff)])==null?void 0x0:_0x2dac16[_0x20b923(0x544)])==null?_0x20b923(0x5a0):_0xb35d1c,..._0x19f3f9}});};return(0x0,_0x43e701[_0x3ee1e5(0x39b)])(_0x3ee1e5(0x3ec),{'className':_0x3ee1e5(0x880),'children':[(0x0,_0x43e701[_0x3ee1e5(0x39b)])(_0x3ee1e5(0x3ec),{'className':_0x3ee1e5(0x861),'children':[(0x0,_0x43e701[_0x3ee1e5(0x715)])(_0x3ee1e5(0x2bf),{'className':_0x3ee1e5(0x7cb),'children':_0x307c01['t'](_0x3ee1e5(0x33d))}),(0x0,_0x43e701[_0x3ee1e5(0x715)])(_0x3ee1e5(0x148),{'ref':_0x2984b0,'type':'file','accept':'image/*','className':'univer-hidden','onChange':async _0x73dd43=>{const _0xadec3a=_0x3ee1e5;var _0x5682b0;let _0xb8963b=(_0x5682b0=_0x73dd43[_0xadec3a(0x1f3)]['files'])==null?void 0x0:_0x5682b0[0x0];if(!_0xb8963b)return;_0x73dd43[_0xadec3a(0x1f3)][_0xadec3a(0x865)]='';let _0x43c96f=await _0x556bdd[_0xadec3a(0x47a)](_0xb8963b);if(_0x43c96f==null)return;let {imageSourceType:_0x412e61,source:_0x584707,base64Cache:_0x5977fa}=_0x43c96f;_0xa9904({'source':_0x5977fa||_0x584707,'sourceType':_0x412e61,'opacity':_0x35bc12});}}),(0x0,_0x43e701['jsx'])(_0x3ee1e5(0x894),{'type':_0x3ee1e5(0x894),'disabled':_0x3c983d,'onClick':()=>{const _0x3e4b99=_0x3ee1e5;var _0x4320dc;return(_0x4320dc=_0x2984b0[_0x3e4b99(0x654)])==null?void 0x0:_0x4320dc[_0x3e4b99(0x262)]();},'className':_0x3ee1e5(0x366),'children':_0x307c01['t']('shape-editor-ui.fill.picture.insert')})]}),_0x452b8a&&(0x0,_0x43e701[_0x3ee1e5(0x715)])(_0x3ee1e5(0x2a3),{'src':_0x452b8a,'alt':'','className':_0x3ee1e5(0x5f1)}),(0x0,_0x43e701[_0x3ee1e5(0x39b)])(_0x3ee1e5(0x3ec),{'className':_0x3ee1e5(0x861),'children':[(0x0,_0x43e701[_0x3ee1e5(0x715)])('span',{'className':_0x3ee1e5(0x7cb),'children':_0x307c01['t'](_0x3ee1e5(0x76f))}),(0x0,_0x43e701[_0x3ee1e5(0x715)])(_0x3ee1e5(0x3ec),{'className':_0x3ee1e5(0x74c),'children':(0x0,_0x43e701[_0x3ee1e5(0x715)])(_0x3f5bc5['InputNumber'],{'className':_0x3ee1e5(0x54b),'value':_0x2286d9,'disabled':_0x3c983d,'min':0x0,'max':0x64,'step':0xa,'formatter':_0x31390c=>_0x31390c+'%','parser':_0x34fa27=>(_0x34fa27==null?void 0x0:_0x34fa27[_0x3ee1e5(0x370)]('%',''))||'','onChange':_0x3d76ca=>{const _0x146d32=_0x3ee1e5;_0xa9904({'opacity':(0x64-Math[_0x146d32(0x729)](0x0,Math[_0x146d32(0x4a5)](0x64,_0x3d76ca==null?0x0:_0x3d76ca)))/0x64}),_0x2ba1eb[_0x146d32(0x13d)](_0x2cafcd[_0x146d32(0x29e)],!0x1);},'onFocus':()=>_0x2ba1eb[_0x3ee1e5(0x13d)](_0x2cafcd['FOCUSING_PANEL_EDITOR'],!0x0),'onBlur':()=>_0x2ba1eb[_0x3ee1e5(0x13d)](_0x2cafcd[_0x3ee1e5(0x29e)],!0x1)})})]})]});}function _0x48afe6(_0x18ef0c){const _0x4d0fe0=_0x57b2d2;var _0x55442d;let {titleKey:_0x87e87c,textStyle:_0x401753,fallbackColor:_0x3b132a,onChange:_0x297c91}=_0x18ef0c,_0x5d6cbf=(0x0,_0x26fc1b[_0x4d0fe0(0x755)])(_0x2cafcd['LocaleService']),_0x5d32f4=_0x5d6cbf['t'](_0x87e87c),[_0x1ab17d,_0xdbce4]=(0x0,_0x55b95c['useState'])(!0x1),{handleOpenChange:_0x208562,markInternalInteraction:_0x2c5e17}=_0x12f33d(_0xdbce4),_0x57a706=_0x1d214f(_0x401753,_0x3b132a),_0x327bb3=_0x4e260f(_0x57a706),_0x35c2b6=_0x466491(_0x57a706,_0x3b132a),_0x5c522f=_0x46687d=>{const _0x45c5ca=_0x4d0fe0;_0x297c91({'cl':{'rgb':_0x46687d[_0x45c5ca(0x1d9)]===_0x45c5ca(0x5b0)?_0x45c5ca(0x80f):_0x466491(_0x46687d,_0x3b132a)},'textFill':_0x46687d});},_0x287220=()=>{const _0x2a5799=_0x4d0fe0;let _0x1c2ae0=_0x34c53a(_0x57a706,_0x35c2b6);return{..._0x57a706,'type':'gradient','gradient':{'type':_0x1c2ae0[_0x2a5799(0x1d9)],'angle':_0x1c2ae0['angle'],'stops':_0x1c2ae0['stops'][_0x2a5799(0x499)](_0x25271a=>({'offset':_0x25271a[_0x2a5799(0x2de)],'color':_0x25271a[_0x2a5799(0x245)],'opacity':_0x25271a[_0x2a5799(0x2f0)]}))}};};return(0x0,_0x43e701['jsx'])(_0x1a69a3,{'title':_0x5d32f4,'open':_0x1ab17d,'icon':(0x0,_0x43e701['jsx'])(_0x56045a,{'className':_0x4d0fe0(0x7ad),'extend':{'colorChannel1':_0x35c2b6}}),'onApply':()=>{const _0x5ad323=_0x4d0fe0;var _0x3c9aec;return _0x5c522f({..._0x57a706,'type':'solid','color':_0x35c2b6,'opacity':(_0x3c9aec=_0x57a706[_0x5ad323(0x2f0)])==null?0x1:_0x3c9aec});},'onOpenChange':_0x208562,'overlay':(0x0,_0x43e701['jsx'])(_0x4d0fe0(0x3ec),{'onPointerDownCapture':_0x4306b2=>{_0x2c5e17(),_0x500ede(_0x4306b2);},'onMouseDownCapture':_0x9c680b=>{_0x2c5e17(),_0x500ede(_0x9c680b);},'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x580683=>_0x580683[_0x4d0fe0(0x3ea)](),'className':(0x0,_0x3f5bc5['clsx'])(_0x4d0fe0(0x79e),_0x4d0fe0(0x424)),'children':(0x0,_0x43e701[_0x4d0fe0(0x715)])(_0x3b7064,{'compact':!0x0,'direction':_0x5d6cbf[_0x4d0fe0(0x2f5)](),'value':_0x327bb3,'typeValues':_0x2f4fe6,'color':_0x35c2b6,'transparency':Math['round']((0x1-((_0x55442d=_0x57a706[_0x4d0fe0(0x2f0)])==null?0x1:_0x55442d))*0x64),'gradientValue':_0x34c53a(_0x57a706,_0x35c2b6),'labels':{'noFill':_0x5d6cbf['t']('shape-editor-ui.fill.noFill'),'solidFill':_0x5d6cbf['t']('shape-editor-ui.fill.solidFill'),'gradientFill':_0x5d6cbf['t'](_0x4d0fe0(0x86e)),'pictureFill':_0x5d6cbf['t']('shape-editor-ui.fill.pictureFill'),'color':_0x5d6cbf['t']('shape-editor-ui.fill.color'),'transparency':_0x5d6cbf['t'](_0x4d0fe0(0x76f))},'tabLabels':{'noFill':_0x5d6cbf['t'](_0x4d0fe0(0x188)),'solidFill':_0x5d6cbf['t'](_0x4d0fe0(0x28e)),'gradientFill':_0x5d6cbf['t']('shape-editor-ui.fill.gradientFill'),'pictureFill':_0x5d6cbf['t'](_0x4d0fe0(0x34f))},'keepColorPickerOpenOnChange':!0x0,'onChange':_0x31a2e2=>{const _0x2013db=_0x4d0fe0;if(_0x31a2e2===_0x21428d['ShapeFillEnum'][_0x2013db(0x3f9)])_0x5c522f({..._0x57a706,'type':_0x2013db(0x5b0)});else{if(_0x31a2e2===_0x21428d[_0x2013db(0x6eb)][_0x2013db(0x72f)]){var _0x55d232;_0x5c522f({..._0x57a706,'type':_0x2013db(0x1e4),'color':_0x35c2b6,'opacity':(_0x55d232=_0x57a706[_0x2013db(0x2f0)])==null?0x1:_0x55d232});}else{if(_0x31a2e2===_0x21428d[_0x2013db(0x6eb)][_0x2013db(0x88b)])_0x5c522f(_0x287220());else{if(_0x31a2e2===_0x21428d[_0x2013db(0x6eb)][_0x2013db(0x545)]){var _0x3fc70b,_0x3b48ca,_0xe2c225,_0x5254e7;_0x5c522f({..._0x57a706,'type':'picture','color':_0x35c2b6,'picture':{..._0x57a706[_0x2013db(0x6ff)],'opacity':(_0x3fc70b=(_0x3b48ca=_0x57a706[_0x2013db(0x6ff)])==null?void 0x0:_0x3b48ca[_0x2013db(0x2f0)])==null?0x1:_0x3fc70b,'mode':(_0xe2c225=(_0x5254e7=_0x57a706[_0x2013db(0x6ff)])==null?void 0x0:_0x5254e7[_0x2013db(0x544)])==null?_0x2013db(0x5a0):_0xe2c225}});}}}}},'onColorChange':_0x58749c=>{var _0x26369c;_0x5c522f({..._0x57a706,'type':'solid','color':_0x58749c,'opacity':(_0x26369c=_0x57a706['opacity'])==null?0x1:_0x26369c});},'onTransparencyChange':_0x5945db=>{const _0x496530=_0x4d0fe0;_0x5c522f({..._0x57a706,'type':_0x496530(0x1e4),'color':_0x35c2b6,'opacity':(0x64-Math[_0x496530(0x729)](0x0,Math['min'](0x64,_0x5945db)))/0x64});},'onGradientChange':_0x323d47=>{const _0x5c3bd0=_0x4d0fe0;_0x5c522f({..._0x57a706,'type':_0x5c3bd0(0x175),'gradient':{'type':_0x323d47[_0x5c3bd0(0x1d9)],'angle':_0x323d47[_0x5c3bd0(0x66c)],'stops':_0x323d47[_0x5c3bd0(0x147)][_0x5c3bd0(0x499)](_0x210623=>({'offset':_0x210623[_0x5c3bd0(0x2de)],'color':_0x210623[_0x5c3bd0(0x245)],'opacity':_0x210623['opacity']}))}});},'pictureFillEditor':(0x0,_0x43e701[_0x4d0fe0(0x715)])(_0x4f1357,{'fill':_0x57a706,'onChange':_0x5c522f})})})});}function _0x58cd07(_0x3b60c0){const _0x53ebc9=_0x57b2d2;let {titleKey:_0x452652,color:_0x5211b9,onApply:_0xeb8e6c,onReset:_0x2a62a6,onChange:_0x95cffb}=_0x3b60c0,_0x200d81=(0x0,_0x26fc1b[_0x53ebc9(0x755)])(_0x2cafcd[_0x53ebc9(0x15c)]),_0x3847ed=_0x200d81['t'](_0x452652),[_0x3eb761,_0x486ac0]=(0x0,_0x55b95c[_0x53ebc9(0x614)])(!0x1),{handleOpenChange:_0x1ad61d,markInternalInteraction:_0x4bce5f}=_0x12f33d(_0x486ac0);return(0x0,_0x43e701[_0x53ebc9(0x715)])(_0x1a69a3,{'title':_0x3847ed,'open':_0x3eb761,'icon':(0x0,_0x43e701[_0x53ebc9(0x715)])(_0x5033fd,{'className':_0x53ebc9(0x7ad),'extend':{'colorChannel1':_0x5211b9}}),'onApply':_0xeb8e6c,'onOpenChange':_0x1ad61d,'popoverClassName':'univer-rounded-lg\x20univer-p-3\x20!univer-shadow-none','overlay':(0x0,_0x43e701[_0x53ebc9(0x39b)])(_0x53ebc9(0x3ec),{'onPointerDownCapture':_0x1cf39a=>{_0x4bce5f(),_0x500ede(_0x1cf39a);},'onMouseDownCapture':_0x44da88=>{_0x4bce5f(),_0x500ede(_0x44da88);},'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x1c7668=>_0x1c7668['stopPropagation'](),'className':_0x53ebc9(0x3c8),'children':[_0x2a62a6&&(0x0,_0x43e701['jsx'])('button',{'type':_0x53ebc9(0x894),'onClick':()=>{_0x2a62a6(),_0x486ac0(!0x1);},'className':_0x53ebc9(0x2c7),'children':_0x200d81['t'](_0x53ebc9(0x6b0))}),(0x0,_0x43e701[_0x53ebc9(0x715)])(_0x3f5bc5[_0x53ebc9(0x87f)],{'value':_0x5211b9,'onChange':_0xdc414f=>{_0x95cffb(_0xdc414f),_0x486ac0(!0x1);}})]})});}function _0x571029(_0x4ca55d){const _0x4ff0f2=_0x57b2d2;let {titleKey:_0x3c2842,textStyle:_0x2a71ac,horizontalAlign:_0x44f4ff,verticalAlign:_0x170d1b,horizontalAlignOptions:_0x46621e,verticalAlignOptions:_0x46ff74,onUpdateText:_0x45ded5}=_0x4ca55d,_0x3dd9d7=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd[_0x4ff0f2(0x15c)]),_0x121424=_0x3dd9d7['t'](_0x3c2842),[_0x11b5a9,_0xd2469e]=(0x0,_0x55b95c['useState'])(!0x1),{handleOpenChange:_0x3756bf,markInternalInteraction:_0x399465}=_0x12f33d(_0xd2469e),_0x2f868b=[{'key':_0x4ff0f2(0x254),'title':_0x3dd9d7['t'](_0x4ff0f2(0x260)),'active':_0x2a71ac[_0x4ff0f2(0x7db)],'icon':(0x0,_0x43e701['jsx'])(_0x3eece8,{}),'onClick':()=>_0x45ded5({'textStyle':{'bl':_0x2a71ac[_0x4ff0f2(0x7db)]?_0x2cafcd[_0x4ff0f2(0x48f)]['FALSE']:_0x2cafcd[_0x4ff0f2(0x48f)][_0x4ff0f2(0x860)]}})},{'key':_0x4ff0f2(0x226),'title':_0x3dd9d7['t'](_0x4ff0f2(0x294)),'active':_0x2a71ac['isItalic'],'icon':(0x0,_0x43e701['jsx'])(_0xc2160d,{}),'onClick':()=>_0x45ded5({'textStyle':{'it':_0x2a71ac[_0x4ff0f2(0x89d)]?_0x2cafcd[_0x4ff0f2(0x48f)]['FALSE']:_0x2cafcd[_0x4ff0f2(0x48f)]['TRUE']}})},{'key':_0x4ff0f2(0x141),'title':_0x3dd9d7['t'](_0x4ff0f2(0x421)),'active':_0x2a71ac[_0x4ff0f2(0x613)],'icon':(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x99aa5b,{}),'onClick':()=>_0x45ded5({'textStyle':{'ul':{'s':_0x2a71ac[_0x4ff0f2(0x613)]?_0x2cafcd[_0x4ff0f2(0x48f)]['FALSE']:_0x2cafcd[_0x4ff0f2(0x48f)][_0x4ff0f2(0x860)]}}})},{'key':_0x4ff0f2(0x184),'title':_0x3dd9d7['t']('shape-editor-ui.toolbar.strikethrough'),'active':_0x2a71ac[_0x4ff0f2(0x5e3)],'icon':(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x580161,{}),'onClick':()=>_0x45ded5({'textStyle':{'st':{'s':_0x2a71ac[_0x4ff0f2(0x5e3)]?_0x2cafcd[_0x4ff0f2(0x48f)]['FALSE']:_0x2cafcd['BooleanNumber'][_0x4ff0f2(0x860)]}}})}],_0x328711=_0x39316c=>(0x0,_0x43e701['jsx'])(_0x3f5bc5['Tooltip'],{'title':_0x39316c[_0x4ff0f2(0x364)],'placement':_0x4ff0f2(0x62a),'children':(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x4ff0f2(0x894),{'type':_0x4ff0f2(0x894),'aria-label':_0x39316c[_0x4ff0f2(0x364)],'onClick':_0x39316c[_0x4ff0f2(0x161)],'className':(0x0,_0x3f5bc5[_0x4ff0f2(0x679)])(_0x4ff0f2(0x69b),{'univer-border-primary-600\x20univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x39316c[_0x4ff0f2(0x822)]}),'children':_0x39316c[_0x4ff0f2(0x420)]})},String(_0x39316c['key']));return(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x3f5bc5[_0x4ff0f2(0x5a4)],{'open':_0x11b5a9,'onOpenChange':_0x3756bf,'overlay':(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x4ff0f2(0x3ec),{'onPointerDownCapture':_0x39c244=>{_0x399465(),_0x500ede(_0x39c244);},'onMouseDownCapture':_0x176e6d=>{_0x399465(),_0x500ede(_0x176e6d);},'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x50b624=>_0x50b624[_0x4ff0f2(0x3ea)](),'className':(0x0,_0x3f5bc5[_0x4ff0f2(0x679)])(_0x4ff0f2(0x652),_0x4ff0f2(0x6c5)),'children':(0x0,_0x43e701[_0x4ff0f2(0x39b)])(_0x4ff0f2(0x3ec),{'className':_0x4ff0f2(0x35c),'children':[(0x0,_0x43e701[_0x4ff0f2(0x715)])('div',{'className':_0x4ff0f2(0x52c),'children':_0x2f868b[_0x4ff0f2(0x499)](_0x328711)}),(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x4ff0f2(0x3ec),{'className':_0x4ff0f2(0x278)}),(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x4ff0f2(0x3ec),{'data-u-comp':_0x4ff0f2(0x4ca),'className':_0x4ff0f2(0x52c),'children':_0x46621e[_0x4ff0f2(0x499)](_0x818cc6=>_0x328711({'key':_0x818cc6['value'],'title':_0x818cc6[_0x4ff0f2(0x751)],'active':_0x818cc6['value']===_0x44f4ff,'icon':_0x818cc6[_0x4ff0f2(0x420)],'onClick':()=>_0x45ded5({'horizontalAlign':_0x818cc6['value']})}))}),(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x4ff0f2(0x3ec),{'data-u-comp':'typography-vertical-align-row','className':_0x4ff0f2(0x52c),'children':_0x46ff74[_0x4ff0f2(0x499)](_0x9d4248=>_0x328711({'key':_0x9d4248[_0x4ff0f2(0x865)],'title':_0x9d4248['label'],'active':_0x9d4248[_0x4ff0f2(0x865)]===_0x170d1b,'icon':_0x9d4248[_0x4ff0f2(0x420)],'onClick':()=>_0x45ded5({'verticalAlign':_0x9d4248[_0x4ff0f2(0x865)]})}))})]})}),'children':(0x0,_0x43e701['jsx'])(_0x4ff0f2(0x2bf),{'children':(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x3f5bc5[_0x4ff0f2(0x587)],{'title':_0x121424,'placement':_0x4ff0f2(0x6fa),'children':(0x0,_0x43e701[_0x4ff0f2(0x39b)])(_0x4ff0f2(0x894),{'type':_0x4ff0f2(0x894),'aria-label':_0x121424,'className':(0x0,_0x3f5bc5[_0x4ff0f2(0x679)])(_0x4ff0f2(0x5ee),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x11b5a9}),'children':[(0x0,_0x43e701[_0x4ff0f2(0x715)])(_0x103e8a,{'className':_0x4ff0f2(0x40d)}),(0x0,_0x43e701['jsx'])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0x4ff0f2(0x679)])(_0x4ff0f2(0x673),{'univer-rotate-180':_0x11b5a9})})]})})})});}function _0x7a37e8(_0x561d02){const _0x67d917=_0x57b2d2;var _0x533681;let _0x4e4648=(0x0,_0x26fc1b[_0x67d917(0x755)])(_0x2cafcd['LocaleService']),_0x386680=(0x0,_0x26fc1b['useObservable'])(_0x4e4648[_0x67d917(0x500)],_0x4e4648[_0x67d917(0x2f5)]()),_0x4aff8b=_0x561d02[_0x67d917(0x873)]?_0x4e4648['t'](_0x561d02['titleKey']):_0x561d02['title'];return(0x0,_0x43e701[_0x67d917(0x39b)])('div',{'dir':_0x386680,'data-u-comp':_0x67d917(0x23c),'onPointerDownCapture':_0x500ede,'onMouseDownCapture':_0x500ede,'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x462033=>_0x462033['stopPropagation'](),'className':(0x0,_0x3f5bc5[_0x67d917(0x679)])(_0x67d917(0x5a3),(_0x533681=_0x561d02['minWidthClassName'])==null?_0x67d917(0x86d):_0x533681,_0x561d02[_0x67d917(0x471)]),'children':[_0x4aff8b&&(0x0,_0x43e701[_0x67d917(0x715)])('div',{'className':_0x67d917(0x6c0),'children':_0x4aff8b}),_0x561d02['children']]});}function _0x4fd9d2(_0x2ab357){const _0x537d41=_0x57b2d2;var _0x4406fd;let _0x36d400=(0x0,_0x26fc1b[_0x537d41(0x755)])(_0x2cafcd[_0x537d41(0x15c)]),_0x5e34a1=_0x2ab357[_0x537d41(0x5a2)]?_0x36d400['t'](_0x2ab357[_0x537d41(0x5a2)]):(_0x4406fd=_0x2ab357[_0x537d41(0x751)])==null?'':_0x4406fd;return(0x0,_0x43e701[_0x537d41(0x715)])(_0x3f5bc5['Tooltip'],{'title':_0x5e34a1,'placement':_0x537d41(0x6fa),'children':(0x0,_0x43e701[_0x537d41(0x715)])(_0x537d41(0x2bf),{'className':_0x537d41(0x7ce),'children':(0x0,_0x43e701[_0x537d41(0x39b)])('button',{'type':'button','aria-label':_0x5e34a1,'disabled':_0x2ab357[_0x537d41(0x747)],'onClick':_0x1e7e56=>{const _0x56130d=_0x537d41;_0x1e7e56[_0x56130d(0x3ea)](),_0x2ab357['onClick']();},'className':_0x537d41(0x3a6),'children':[(0x0,_0x43e701[_0x537d41(0x715)])('span',{'className':_0x537d41(0x703),'children':_0x5e34a1}),_0x2ab357[_0x537d41(0x30b)]&&(0x0,_0x43e701['jsx'])(_0x537d41(0x2bf),{'className':_0x537d41(0x669),'children':_0x2ab357[_0x537d41(0x30b)]})]})})});}function _0x390dea(_0x2fe11b){const _0x1f555e=_0x57b2d2;var _0xcf0ece;let [_0x4633de,_0x2c7d0c]=(0x0,_0x55b95c[_0x1f555e(0x614)])(!0x1),_0x4300ab=(_0xcf0ece=_0x2fe11b[_0x1f555e(0x4e5)]['find'](_0x29d2a2=>_0x29d2a2[_0x1f555e(0x865)]===_0x2fe11b['value']))==null?_0x2fe11b['options'][0x0]:_0xcf0ece;return _0x4300ab?(0x0,_0x43e701[_0x1f555e(0x715)])(_0x3f5bc5['Dropdown'],{'open':_0x4633de,'onOpenChange':_0x2c7d0c,'overlay':(0x0,_0x43e701['jsx'])('div',{'className':_0x1f555e(0x1d4),'children':_0x2fe11b['options'][_0x1f555e(0x499)](_0x36ced7=>(0x0,_0x43e701['jsxs'])(_0x1f555e(0x894),{'type':_0x1f555e(0x894),'aria-label':_0x36ced7['label'],'onClick':()=>{const _0x146ccd=_0x1f555e;_0x2fe11b[_0x146ccd(0x1e8)](_0x36ced7['value']),_0x2c7d0c(!0x1);},'className':(0x0,_0x3f5bc5[_0x1f555e(0x679)])(_0x1f555e(0x7e0),{'univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x36ced7[_0x1f555e(0x865)]===_0x2fe11b[_0x1f555e(0x865)]}),'children':[(0x0,_0x43e701[_0x1f555e(0x715)])(_0x1f555e(0x2bf),{'className':'univer-flex\x20univer-size-4\x20univer-items-center\x20univer-justify-center','children':_0x36ced7['icon']}),(0x0,_0x43e701[_0x1f555e(0x715)])(_0x1f555e(0x2bf),{'className':_0x1f555e(0x41b),'children':_0x36ced7['label']})]},_0x36ced7[_0x1f555e(0x865)]))}),'children':(0x0,_0x43e701[_0x1f555e(0x715)])(_0x1f555e(0x2bf),{'children':(0x0,_0x43e701[_0x1f555e(0x715)])(_0x31e04e,{'title':_0x2fe11b['title'],'icon':_0x4300ab[_0x1f555e(0x420)],'active':_0x4633de})})}):null;}function _0x2f3a3d(_0x27ec7d){const _0x26c1b6=_0x57b2d2;let {action:_0x3710d2}=_0x27ec7d,_0x2f66e4=_0x3710d2['type']===_0x26c1b6(0x6c8)?_0x491ad7:_0x370439;return(0x0,_0x43e701[_0x26c1b6(0x715)])(_0x2f01fb,{'title':_0x3710d2[_0x26c1b6(0x751)],'onClick':_0x3710d2[_0x26c1b6(0x161)],'children':(0x0,_0x43e701['jsx'])(_0x2f66e4,{})});}function _0x3ee82d(_0x425de6){const _0xa90a5d=_0x57b2d2;let {actions:_0x4535d7}=_0x425de6,[_0x4326c0,_0x2f16fc]=(0x0,_0x55b95c[_0xa90a5d(0x614)])(!0x1),{handleOpenChange:_0x5aa4b9,markInternalInteraction:_0x49dae7}=_0x12f33d(_0x2f16fc);return(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x3f5bc5[_0xa90a5d(0x5a4)],{'open':_0x4326c0,'onOpenChange':_0x5aa4b9,'overlay':(0x0,_0x43e701[_0xa90a5d(0x715)])(_0xa90a5d(0x3ec),{'onPointerDownCapture':_0xb3f6b4=>{_0x49dae7(),_0x500ede(_0xb3f6b4);},'onMouseDownCapture':_0x1c7c3c=>{_0x49dae7(),_0x500ede(_0x1c7c3c);},'onPointerDown':_0x1a705d,'onMouseDown':_0x1a705d,'onClick':_0x3f0157=>_0x3f0157['stopPropagation'](),'className':'univer-w-40','children':(0x0,_0x43e701[_0xa90a5d(0x39b)])(_0x7a37e8,{'className':_0xa90a5d(0x1b0),'minWidthClassName':'univer-min-w-40','children':[(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x4fd9d2,{'label':_0x4535d7[_0xa90a5d(0x16a)],'onClick':()=>{const _0x1d4297=_0xa90a5d;_0x4535d7[_0x1d4297(0x576)](),_0x2f16fc(!0x1);}}),(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x4fd9d2,{'label':_0x4535d7[_0xa90a5d(0x824)],'onClick':_0x4535d7[_0xa90a5d(0x20a)]}),(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x4fd9d2,{'label':_0x4535d7[_0xa90a5d(0x592)],'onClick':_0x4535d7[_0xa90a5d(0x74a)]}),(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x4fd9d2,{'label':_0x4535d7[_0xa90a5d(0x5df)],'onClick':()=>{const _0x1f21e7=_0xa90a5d;_0x4535d7[_0x1f21e7(0x292)](),_0x2f16fc(!0x1);}})]})}),'children':(0x0,_0x43e701['jsx'])(_0xa90a5d(0x2bf),{'children':(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x3f5bc5[_0xa90a5d(0x587)],{'title':_0x4535d7[_0xa90a5d(0x364)],'placement':_0xa90a5d(0x6fa),'children':(0x0,_0x43e701[_0xa90a5d(0x39b)])(_0xa90a5d(0x894),{'type':_0xa90a5d(0x894),'aria-label':_0x4535d7['title'],'className':(0x0,_0x3f5bc5[_0xa90a5d(0x679)])(_0xa90a5d(0x7a4),{'univer-bg-gray-100\x20dark:!univer-bg-gray-700':_0x4326c0}),'children':[(0x0,_0x43e701['jsx'])(_0x50af4d,{}),(0x0,_0x43e701[_0xa90a5d(0x715)])(_0x3329e2,{'className':(0x0,_0x3f5bc5[_0xa90a5d(0x679)])(_0xa90a5d(0x673),{'univer-rotate-180':_0x4326c0})})]})})})});}function _0x38669c(_0x355b0e){const _0x23b0c3=_0x57b2d2;var _0x1110a4,_0x212a2b,_0x594c7c,_0x180118,_0x3331d2,_0x1868a4,_0x5e3142,_0x5c238a,_0x22a893,_0x27db64,_0x299d20,_0x2379f5;let {shapeData:_0x211513,shapeType:_0x1f26d5,textStyle:_0x4abc9f,textModel:_0x2c4a13,wrappingStyle:_0x4bb3f8,wrappingStyleOptions:_0x620c6d,enableShapeStrokeReset:_0x1f5d3d=!0x1,enableTextBackgroundReset:_0x562a40=!0x1,enableTextControls:_0x1c2831=!0x0,deferUntilCollapsedStateLoaded:_0x42d636=!0x1,defaultFillColor:_0x87bbf3=_0x3fbd87,defaultGradientEndColor:_0x3b722d=_0x23b0c3(0x3b6),defaultStrokeColor:_0x4d489e=_0x472d0a,onUpdateShapeData:_0x1d873d,onUpdateText:_0x5d84a1,onUpdateWrappingStyle:_0x413d57,groupAction:_0x450067,layerActions:_0x14e14f,extensionGroups:_0x182e54,onOpenPanel:_0x309310,onDelete:_0x467fcd}=_0x355b0e,_0x4f1297=(0x0,_0x26fc1b[_0x23b0c3(0x755)])(_0x2cafcd[_0x23b0c3(0x15c)]),_0x13fb7f=(0x0,_0x26fc1b[_0x23b0c3(0x162)])(_0x4f1297[_0x23b0c3(0x500)],_0x4f1297['getDirection']()),_0x38929c=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd[_0x23b0c3(0x3e1)]),_0x202a9b=(0x0,_0x26fc1b[_0x23b0c3(0x755)])(_0x2cafcd[_0x23b0c3(0x3cd)]),[_0x5298db,_0x30ec92]=(0x0,_0x55b95c[_0x23b0c3(0x614)])(!0x1),[_0x81e0ab,_0x58e92c]=(0x0,_0x55b95c[_0x23b0c3(0x614)])(!0x1);(0x0,_0x55b95c[_0x23b0c3(0x877)])(()=>{const _0x57c196=_0x23b0c3;let _0x4af2b1=!0x1;return _0x202a9b[_0x57c196(0x2be)](_0x394d34)[_0x57c196(0x1f0)](_0x491b0b=>{const _0x242587=_0x57c196;!_0x4af2b1&&typeof _0x491b0b==_0x242587(0x403)&&_0x30ec92(_0x491b0b);})['catch'](()=>void 0x0)[_0x57c196(0x6b9)](()=>{_0x4af2b1||_0x58e92c(!0x0);}),()=>{_0x4af2b1=!0x0;};},[_0x202a9b]);let _0x3c572b=_0x1e4938=>{const _0x20e05f=_0x23b0c3;_0x30ec92(_0x1e4938),_0x202a9b[_0x20e05f(0x6bf)](_0x394d34,_0x1e4938)[_0x20e05f(0x698)](()=>void 0x0);},_0x5d8107=!!_0x211513&&_0x1f26d5!==void 0x0,_0x44c0bd=_0x5d8107&&_0x1c2831,_0x1cb7db=!!_0x450067||!!_0x14e14f,_0x7de24b=(_0x182e54==null?[]:_0x182e54)[_0x23b0c3(0x7aa)](_0x1fb1a4=>_0x1fb1a4[_0x23b0c3(0x85d)]!==!0x1)[_0x23b0c3(0x499)](_0x3a5428=>({..._0x3a5428,'actions':_0x3a5428[_0x23b0c3(0x773)]['filter'](_0x2e8c0c=>_0x2e8c0c[_0x23b0c3(0x85d)]!==!0x1)}))[_0x23b0c3(0x7aa)](_0x3b2848=>_0x3b2848[_0x23b0c3(0x773)][_0x23b0c3(0x1bf)]>0x0),_0x18b330=_0x7de24b[_0x23b0c3(0x1bf)]>0x0,_0x599d11=_0x1f26d5!==void 0x0&&(0x0,_0x21428d['isConnectorShape'])(_0x1f26d5),_0xc6ea95=(_0x1110a4=(_0x212a2b=_0x4abc9f['cl'])==null?void 0x0:_0x212a2b['rgb'])==null?_0x28d47e:_0x1110a4,_0x212e55=(_0x594c7c=(_0x180118=_0x4abc9f['bg'])==null?void 0x0:_0x180118[_0x23b0c3(0x838)])==null?_0x561de7:_0x594c7c,_0x176c4e=(_0x3331d2=_0x4abc9f['ff'])==null?_0x23b0c3(0x797):_0x3331d2,_0x5ac1ba=(_0x1868a4=_0x4abc9f['fs'])==null?0xe:_0x1868a4,_0x42d888=_0x4abc9f['bl']===_0x2cafcd[_0x23b0c3(0x48f)][_0x23b0c3(0x860)],_0x5bab35=_0x4abc9f['it']===_0x2cafcd[_0x23b0c3(0x48f)]['TRUE'],_0x48a18a=((_0x5e3142=_0x4abc9f['ul'])==null?void 0x0:_0x5e3142['s'])===_0x2cafcd[_0x23b0c3(0x48f)][_0x23b0c3(0x860)],_0x840439=((_0x5c238a=_0x4abc9f['st'])==null?void 0x0:_0x5c238a['s'])===_0x2cafcd[_0x23b0c3(0x48f)][_0x23b0c3(0x860)],_0x585f68=(_0x22a893=_0x2c4a13==null?void 0x0:_0x2c4a13['ha'])==null?_0x2cafcd[_0x23b0c3(0x829)][_0x23b0c3(0x355)]:_0x22a893,_0x3e38af=(_0x27db64=_0x2c4a13==null?void 0x0:_0x2c4a13['va'])==null?_0x2cafcd[_0x23b0c3(0x40b)][_0x23b0c3(0x2cd)]:_0x27db64,_0x5e5047=[{'label':_0x4f1297['t']('shape-editor-ui.toolbar.alignLeft'),'value':_0x2cafcd[_0x23b0c3(0x829)][_0x23b0c3(0x355)],'icon':(0x0,_0x43e701['jsx'])(_0x2bc30a,{})},{'label':_0x4f1297['t'](_0x23b0c3(0x219)),'value':_0x2cafcd[_0x23b0c3(0x829)][_0x23b0c3(0x7b8)],'icon':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x1409e4,{})},{'label':_0x4f1297['t'](_0x23b0c3(0x5e2)),'value':_0x2cafcd[_0x23b0c3(0x829)][_0x23b0c3(0x699)],'icon':(0x0,_0x43e701['jsx'])(_0x53d550,{})},{'label':_0x4f1297['t']('shape-editor-ui.toolbar.alignJustify'),'value':_0x2cafcd[_0x23b0c3(0x829)][_0x23b0c3(0x3f8)],'icon':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x48f6e0,{})}],_0x1cf348=[{'label':_0x4f1297['t'](_0x23b0c3(0x353)),'value':_0x2cafcd[_0x23b0c3(0x40b)][_0x23b0c3(0x2cd)],'icon':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x342d1e,{})},{'label':_0x4f1297['t'](_0x23b0c3(0x4d3)),'value':_0x2cafcd[_0x23b0c3(0x40b)]['MIDDLE'],'icon':(0x0,_0x43e701['jsx'])(_0x2f2d49,{})},{'label':_0x4f1297['t'](_0x23b0c3(0x554)),'value':_0x2cafcd[_0x23b0c3(0x40b)][_0x23b0c3(0x559)],'icon':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x39e6e4,{})}];return!_0x5d8107&&!_0x1cb7db&&!_0x18b330&&!_0x309310&&!_0x467fcd||_0x42d636&&!_0x81e0ab?null:_0x5298db?(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x23b0c3(0x894),{'type':_0x23b0c3(0x894),'dir':_0x13fb7f,'style':{'direction':_0x13fb7f},'data-u-comp':_0x23b0c3(0x5b5),'aria-label':_0x4f1297['t'](_0x23b0c3(0x14c)),'onMouseDown':_0x1a705d,'onClick':()=>_0x3c572b(!0x1),'className':'univer-flex\x20univer-h-4\x20univer-w-14\x20-univer-translate-y-1\x20univer-items-center\x20univer-justify-center\x20univer-rounded-full\x20univer-border\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-[10px]\x20univer-text-gray-500\x20univer-shadow-sm\x20univer-transition-colors\x20hover:univer-border-gray-300\x20hover:univer-bg-gray-50\x20hover:univer-text-gray-700\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-300\x20dark:hover:!univer-bg-gray-800','children':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3bbfa4,{'className':_0x23b0c3(0x7c6)})}):(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x23b0c3(0x3ec),{'data-u-comp':'shape-floating-toolbar','dir':_0x13fb7f,'style':{'direction':_0x13fb7f},'className':_0x23b0c3(0x520),'children':[(0x0,_0x43e701[_0x23b0c3(0x715)])('button',{'type':_0x23b0c3(0x894),'aria-label':_0x4f1297['t']('shape-editor-ui.toolbar.collapseShapeToolbar'),'onMouseDown':_0x1a705d,'onClick':()=>_0x3c572b(!0x0),'className':'univer-absolute\x20-univer-top-3\x20univer-left-1/2\x20univer-z-10\x20univer-flex\x20univer-h-3\x20univer-w-16\x20-univer-translate-x-1/2\x20univer-items-center\x20univer-justify-center\x20univer-rounded-t-md\x20univer-border\x20univer-border-b-0\x20univer-border-solid\x20univer-border-gray-200\x20univer-bg-white\x20univer-p-0\x20univer-text-[10px]\x20univer-text-gray-500\x20univer-shadow-sm\x20univer-transition-colors\x20hover:univer-bg-gray-50\x20hover:univer-text-gray-700\x20dark:!univer-border-gray-700\x20dark:!univer-bg-gray-900\x20dark:!univer-text-gray-300\x20dark:hover:!univer-bg-gray-800','children':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3bbfa4,{'className':'univer--rotate-90\x20univer-text-xs'})}),(0x0,_0x43e701['jsxs'])(_0x24519e,{'children':[_0x5d8107&&(0x0,_0x43e701['jsxs'])(_0x43e701['Fragment'],{'children':[(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x5c6172,{'children':[(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x4b8bcf,{'titleKey':_0x23b0c3(0x332),'shapeData':_0x211513,'disabled':_0x599d11,'fallbackColor':_0x87bbf3,'fallbackGradientEndColor':_0x3b722d,'onUpdateShapeData':_0x1d873d}),(0x0,_0x43e701['jsx'])(_0x1edc0d,{'titleKey':_0x23b0c3(0x39c),'shapeData':_0x211513,'fallbackColor':_0x4d489e,'onReset':_0x1f5d3d?()=>{const _0x21a9a0=_0x23b0c3;_0x1d873d({'oldShapeData':{'stroke':_0x211513[_0x21a9a0(0x1fb)]}},{'stroke':{..._0x211513['stroke'],'lineStrokeType':_0x21428d[_0x21a9a0(0x711)][_0x21a9a0(0x379)]}});}:void 0x0,'onUpdateShapeData':_0x1d873d})]}),_0x5d8107&&_0x44c0bd&&(0x0,_0x43e701['jsxs'])(_0x43e701[_0x23b0c3(0x607)],{'children':[(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x23b0c3(0x387)],{'orientation':_0x23b0c3(0x40f),'className':_0x23b0c3(0x51d)}),(0x0,_0x43e701['jsxs'])(_0x5c6172,{'children':[(0x0,_0x43e701['jsx'])(_0x26fc1b['FontFamilyDropdown'],{'className':_0x23b0c3(0x6da),'inputClassName':_0x23b0c3(0x54b),'popupDataComponent':_0x23b0c3(0x6a3),'title':_0x176c4e,'value':_0x176c4e,'onChange':_0x2a7f3b=>_0x5d84a1({'textStyle':{'ff':_0x2a7f3b}}),'onMouseDown':_0x1a705d,'onPointerDown':_0x1a705d}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x4a74b6,{'value':String(_0x5ac1ba),'onChange':_0xf851bc=>{_0x5d84a1({'textStyle':{'fs':_0xf851bc}});},'onAfterChange':()=>{const _0x376894=_0x23b0c3;_0x38929c[_0x376894(0x13d)](_0x2cafcd[_0x376894(0x29e)],!0x1);}}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x571029,{'titleKey':_0x23b0c3(0x359),'textStyle':{'isBold':_0x42d888,'isItalic':_0x5bab35,'isUnderline':_0x48a18a,'isStrike':_0x840439},'horizontalAlign':_0x585f68,'verticalAlign':_0x3e38af,'horizontalAlignOptions':_0x5e5047,'verticalAlignOptions':_0x1cf348,'onUpdateText':_0x5d84a1})]}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3f5bc5[_0x23b0c3(0x387)],{'orientation':_0x23b0c3(0x40f),'className':_0x23b0c3(0x51d)}),(0x0,_0x43e701['jsxs'])(_0x5c6172,{'children':[(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x48afe6,{'titleKey':_0x23b0c3(0x664),'textStyle':_0x4abc9f,'fallbackColor':_0xc6ea95,'onChange':_0x38b6f9=>_0x5d84a1({'textStyle':_0x38b6f9})}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x58cd07,{'titleKey':_0x23b0c3(0x798),'color':_0x212e55,'onApply':()=>_0x5d84a1({'textStyle':{'bg':{'rgb':_0x212e55}}}),'onReset':_0x562a40?()=>_0x5d84a1({'textStyle':{'bg':{'rgb':null}}}):void 0x0,'onChange':_0x2def92=>_0x5d84a1({'textStyle':{'bg':{'rgb':_0x2def92}}})})]})]})]}),_0x5d8107&&_0x4bb3f8!==void 0x0&&_0x620c6d&&_0x413d57&&(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x43e701['Fragment'],{'children':[(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x23b0c3(0x387)],{'orientation':_0x23b0c3(0x40f),'className':_0x23b0c3(0x51d)}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x5c6172,{'children':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x390dea,{'title':(_0x299d20=(_0x2379f5=_0x620c6d['find'](_0x24c90a=>_0x24c90a[_0x23b0c3(0x865)]===_0x4bb3f8))==null?void 0x0:_0x2379f5[_0x23b0c3(0x751)])==null?_0x4f1297['t'](_0x23b0c3(0x7bd)):_0x299d20,'value':_0x4bb3f8,'options':_0x620c6d,'onChange':_0x413d57})})]}),_0x1cb7db&&(0x0,_0x43e701['jsxs'])(_0x43e701['Fragment'],{'children':[(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3f5bc5[_0x23b0c3(0x387)],{'orientation':_0x23b0c3(0x40f),'className':'!univer-h-5'}),(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x5c6172,{'children':[_0x450067&&(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x2f3a3d,{'action':_0x450067}),_0x14e14f&&(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3ee82d,{'actions':_0x14e14f})]})]}),(_0x309310||_0x467fcd)&&(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x43e701[_0x23b0c3(0x607)],{'children':[(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x23b0c3(0x387)],{'orientation':_0x23b0c3(0x40f),'className':_0x23b0c3(0x51d)}),(0x0,_0x43e701['jsxs'])(_0x5c6172,{'children':[_0x309310&&(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x2f01fb,{'titleKey':_0x23b0c3(0x1c7),'onClick':()=>{_0x309310();},'children':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x241e58,{})}),_0x467fcd&&(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x2f01fb,{'titleKey':_0x23b0c3(0x60e),'onClick':_0x467fcd,'children':(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x2214dc,{})})]})]}),_0x7de24b[_0x23b0c3(0x499)](_0x1b7ce4=>(0x0,_0x43e701[_0x23b0c3(0x39b)])(_0x55b95c[_0x23b0c3(0x607)],{'children':[(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x3f5bc5['Separator'],{'orientation':_0x23b0c3(0x40f),'className':_0x23b0c3(0x51d)}),(0x0,_0x43e701[_0x23b0c3(0x715)])(_0x5c6172,{'children':_0x1b7ce4[_0x23b0c3(0x773)][_0x23b0c3(0x499)](_0x14eddb=>{const _0x2d15b2=_0x23b0c3;var _0x2b961d;return(0x0,_0x43e701[_0x2d15b2(0x715)])(_0x55b95c[_0x2d15b2(0x607)],{'children':(_0x2b961d=_0x14eddb[_0x2d15b2(0x7c8)])==null?(0x0,_0x43e701[_0x2d15b2(0x715)])(_0x2f01fb,{'title':_0x14eddb[_0x2d15b2(0x751)],'active':_0x14eddb[_0x2d15b2(0x822)],'disabled':_0x14eddb['disabled'],'onClick':_0x14eddb[_0x2d15b2(0x161)],'children':_0x14eddb[_0x2d15b2(0x420)]}):_0x2b961d},_0x14eddb[_0x2d15b2(0x4ab)]);})})]},_0x1b7ce4['key']))]})]});}let _0x296811=function(_0x583477){const _0xf588b2=_0x57b2d2;return _0x583477[_0xf588b2(0x8a7)]=_0xf588b2(0x54e),_0x583477['Rectangle']=_0xf588b2(0x1c4),_0x583477[_0xf588b2(0x83f)]=_0xf588b2(0x4b8),_0x583477['BlockArrow']='blockArrow',_0x583477[_0xf588b2(0x6a6)]='equationShape',_0x583477[_0xf588b2(0x42f)]=_0xf588b2(0x5d0),_0x583477[_0xf588b2(0x75b)]='starAndBanner',_0x583477[_0xf588b2(0x4ec)]=_0xf588b2(0x2d5),_0x583477[_0xf588b2(0x196)]=_0xf588b2(0x6e5),_0x583477;}({}),_0x5ee2f3=[{'group':_0x57b2d2(0x54e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x8a7)],'icon':_0x57b2d2(0x27e),'name':_0x57b2d2(0x7c2)},{'group':'line','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x612)],'icon':_0x57b2d2(0x809),'name':'shape.type.straight-connector1','endArrow':!0x0},{'group':_0x57b2d2(0x54e),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x612)],'icon':'ShapeStraightConnector2Icon','name':_0x57b2d2(0x247),'endArrow':!0x0,'startArrow':!0x0},{'group':_0x57b2d2(0x54e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x1eb)],'icon':_0x57b2d2(0x78e),'name':_0x57b2d2(0x4ac)},{'group':_0x57b2d2(0x54e),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x1eb)],'icon':_0x57b2d2(0x6ce),'name':_0x57b2d2(0x2d7),'endArrow':!0x0},{'group':_0x57b2d2(0x54e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x1eb)],'icon':_0x57b2d2(0x5b6),'name':'shape.type.bent-connector3-arrow2','endArrow':!0x0,'startArrow':!0x0},{'group':_0x57b2d2(0x54e),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x516)],'icon':_0x57b2d2(0x625),'name':_0x57b2d2(0x384)},{'group':_0x57b2d2(0x54e),'type':_0x21428d[_0x57b2d2(0x42c)]['CurvedConnector3'],'icon':'ShapeCurvedConnector3Arrow1Icon','name':'shape.type.curved-connector3-arrow1','endArrow':!0x0},{'group':_0x57b2d2(0x54e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x516)],'icon':_0x57b2d2(0x434),'name':_0x57b2d2(0x58a),'endArrow':!0x0,'startArrow':!0x0},{'group':_0x57b2d2(0x1c4),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x786)],'icon':'ShapeRectIcon','name':'shape.type.rect'},{'group':'rectangle','type':_0x21428d[_0x57b2d2(0x42c)]['RoundRect'],'icon':'ShapeRoundRectIcon','name':_0x57b2d2(0x455)},{'group':'rectangle','type':_0x21428d['ShapeTypeEnum']['Snip1Rect'],'icon':_0x57b2d2(0x810),'name':'shape.type.snip1-rect'},{'group':_0x57b2d2(0x1c4),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x31f)],'icon':_0x57b2d2(0x879),'name':'shape.type.snip2-same-rect'},{'group':'rectangle','type':_0x21428d[_0x57b2d2(0x42c)]['Snip2DiagRect'],'icon':_0x57b2d2(0x15f),'name':_0x57b2d2(0x708)},{'group':_0x57b2d2(0x1c4),'type':_0x21428d[_0x57b2d2(0x42c)]['SnipRoundRect'],'icon':'ShapeSnipRoundRectIcon','name':_0x57b2d2(0x193)},{'group':'rectangle','type':_0x21428d[_0x57b2d2(0x42c)]['Round1Rect'],'icon':'ShapeRound1RectIcon','name':_0x57b2d2(0x198)},{'group':_0x57b2d2(0x1c4),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x48d)],'icon':_0x57b2d2(0x3ba),'name':_0x57b2d2(0x61b)},{'group':_0x57b2d2(0x1c4),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x866)],'icon':_0x57b2d2(0x5e5),'name':_0x57b2d2(0x83b)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x786)],'icon':'ShapeRectTextboxHorizontalIcon','name':_0x57b2d2(0x2af),'horizontal':!0x0},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x786)],'icon':_0x57b2d2(0x4f7),'name':_0x57b2d2(0x1df),'vertical':!0x0},{'group':'basicShape','type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x651)],'icon':_0x57b2d2(0x507),'name':_0x57b2d2(0x7e6)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x62e)],'icon':_0x57b2d2(0x54f),'name':_0x57b2d2(0x6a7)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x160)],'icon':_0x57b2d2(0x70b),'name':_0x57b2d2(0x862)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x725)],'icon':_0x57b2d2(0x86b),'name':_0x57b2d2(0x750)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x335)],'icon':_0x57b2d2(0x606),'name':_0x57b2d2(0x4a9)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x490)],'icon':_0x57b2d2(0x4eb),'name':'shape.type.diamond'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Pentagon'],'icon':'ShapePentagonIcon','name':_0x57b2d2(0x398)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x192)],'icon':_0x57b2d2(0x1fc),'name':_0x57b2d2(0x39d)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x3d2)],'icon':_0x57b2d2(0x412),'name':'shape.type.heptagon'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6f7)],'icon':_0x57b2d2(0x784),'name':_0x57b2d2(0x7f8)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x297)],'icon':'ShapeDecagonIcon','name':_0x57b2d2(0x6c2)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Dodecagon'],'icon':_0x57b2d2(0x4bd),'name':_0x57b2d2(0x451)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d['ShapeTypeEnum']['Pie'],'icon':_0x57b2d2(0x2cf),'name':_0x57b2d2(0x534)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Chord'],'icon':_0x57b2d2(0x3a3),'name':'shape.type.chord'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x155)],'icon':_0x57b2d2(0x540),'name':'shape.type.teardrop'},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x47f)],'icon':_0x57b2d2(0x7da),'name':_0x57b2d2(0x2e3)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x1c1)],'icon':_0x57b2d2(0x4e0),'name':_0x57b2d2(0x6f4)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Corner'],'icon':_0x57b2d2(0x512),'name':'shape.type.corner'},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)]['DiagStripe'],'icon':'ShapeDiagStripeIcon','name':_0x57b2d2(0x1db)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d['ShapeTypeEnum']['Plus'],'icon':_0x57b2d2(0x80c),'name':'shape.type.plus'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d['ShapeTypeEnum']['Plaque'],'icon':'ShapePlaqueIcon','name':_0x57b2d2(0x3f3)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x4d9)],'icon':_0x57b2d2(0x657),'name':_0x57b2d2(0x2b3)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x869)],'icon':_0x57b2d2(0x83a),'name':_0x57b2d2(0x52a)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x69f)],'icon':'ShapeBevelIcon','name':_0x57b2d2(0x685)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x5e6)],'icon':_0x57b2d2(0x2f2),'name':_0x57b2d2(0x340)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x758)],'icon':'ShapeNoSmokingIcon','name':'shape.type.no-smoking'},{'group':'basicShape','type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x381)],'icon':_0x57b2d2(0x81a),'name':'shape.type.block-arc'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['FoldedCorner'],'icon':_0x57b2d2(0x710),'name':_0x57b2d2(0x1a0)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x8a2)],'icon':_0x57b2d2(0x660),'name':_0x57b2d2(0x812)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Heart'],'icon':_0x57b2d2(0x37e),'name':_0x57b2d2(0x662)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x34b)],'icon':_0x57b2d2(0x50f),'name':'shape.type.lightning-bolt'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Sun'],'icon':_0x57b2d2(0x603),'name':'shape.type.sun'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Moon'],'icon':_0x57b2d2(0x4de),'name':'shape.type.moon'},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['Cloud'],'icon':_0x57b2d2(0x169),'name':_0x57b2d2(0x578)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x47b)],'icon':_0x57b2d2(0x82e),'name':_0x57b2d2(0x785)},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)]['BracketPair'],'icon':_0x57b2d2(0x235),'name':_0x57b2d2(0x2f7)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)]['BracePair'],'icon':_0x57b2d2(0x733),'name':'shape.type.brace-pair'},{'group':'basicShape','type':_0x21428d['ShapeTypeEnum']['LeftBracket'],'icon':_0x57b2d2(0x3f6),'name':_0x57b2d2(0x269)},{'group':_0x57b2d2(0x4b8),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x791)],'icon':_0x57b2d2(0x27f),'name':_0x57b2d2(0x289)},{'group':'basicShape','type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x356)],'icon':_0x57b2d2(0x180),'name':'shape.type.left-brace'},{'group':'basicShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x870)],'icon':_0x57b2d2(0x878),'name':_0x57b2d2(0x1e2)},{'group':'blockArrow','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x38b)],'icon':_0x57b2d2(0x605),'name':'shape.type.right-arrow'},{'group':'blockArrow','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x3f5)],'icon':'ShapeLeftArrowIcon','name':'shape.type.left-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x69e)],'icon':_0x57b2d2(0x218),'name':_0x57b2d2(0x687)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x275)],'icon':_0x57b2d2(0x1ba),'name':'shape.type.down-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x151)],'icon':_0x57b2d2(0x867),'name':_0x57b2d2(0x691)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)]['UpDownArrow'],'icon':_0x57b2d2(0x367),'name':_0x57b2d2(0x3f0)},{'group':_0x57b2d2(0x485),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x250)],'icon':'ShapeQuadArrowIcon','name':_0x57b2d2(0x6c1)},{'group':_0x57b2d2(0x485),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x1d0)],'icon':_0x57b2d2(0x80b),'name':'shape.type.left-right-up-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x7de)],'icon':'ShapeBentArrowIcon','name':'shape.type.bent-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x83d)],'icon':_0x57b2d2(0x428),'name':_0x57b2d2(0x5c7)},{'group':'blockArrow','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x79b)],'icon':_0x57b2d2(0x3a2),'name':_0x57b2d2(0x6d4)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x25a)],'icon':'ShapeBentUpArrowIcon','name':'shape.type.bent-up-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x843)],'icon':_0x57b2d2(0x27c),'name':_0x57b2d2(0x709)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x2ef)],'icon':'ShapeCurvedLeftArrowIcon','name':_0x57b2d2(0x7e8)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x395)],'icon':_0x57b2d2(0x3f4),'name':'shape.type.curved-up-arrow'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x806)],'icon':_0x57b2d2(0x3de),'name':_0x57b2d2(0x714)},{'group':'blockArrow','type':_0x21428d[_0x57b2d2(0x42c)]['StripedRightArrow'],'icon':_0x57b2d2(0x174),'name':_0x57b2d2(0x15b)},{'group':'blockArrow','type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x28d)],'icon':'ShapeNotchedRightArrowIcon','name':_0x57b2d2(0x487)},{'group':_0x57b2d2(0x485),'type':_0x21428d['ShapeTypeEnum']['HomePlate'],'icon':_0x57b2d2(0x522),'name':'shape.type.home-plate'},{'group':_0x57b2d2(0x485),'type':_0x21428d['ShapeTypeEnum']['Chevron'],'icon':_0x57b2d2(0x73b),'name':'shape.type.chevron'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6fc)],'icon':_0x57b2d2(0x425),'name':_0x57b2d2(0x2ee)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)]['DownArrowCallout'],'icon':_0x57b2d2(0x38c),'name':_0x57b2d2(0x63d)},{'group':_0x57b2d2(0x485),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x1fd)],'icon':_0x57b2d2(0x771),'name':_0x57b2d2(0x718)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x388)],'icon':_0x57b2d2(0x4b0),'name':'shape.type.up-arrow-callout'},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x45a)],'icon':_0x57b2d2(0x87a),'name':_0x57b2d2(0x622)},{'group':_0x57b2d2(0x485),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x7e1)],'icon':_0x57b2d2(0x82b),'name':_0x57b2d2(0x3fd)},{'group':'blockArrow','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x442)],'icon':_0x57b2d2(0x68a),'name':_0x57b2d2(0x832)},{'group':_0x57b2d2(0x815),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x801)],'icon':'ShapeMathPlusIcon','name':_0x57b2d2(0x400)},{'group':'equationShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x525)],'icon':_0x57b2d2(0x63a),'name':_0x57b2d2(0x748)},{'group':'equationShape','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x17c)],'icon':_0x57b2d2(0x2ca),'name':'shape.type.math-multiply'},{'group':_0x57b2d2(0x815),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x645)],'icon':_0x57b2d2(0x32b),'name':_0x57b2d2(0x596)},{'group':_0x57b2d2(0x815),'type':_0x21428d[_0x57b2d2(0x42c)]['MathEqual'],'icon':'ShapeMathEqualIcon','name':'shape.type.math-equal'},{'group':_0x57b2d2(0x815),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x638)],'icon':_0x57b2d2(0x170),'name':_0x57b2d2(0x31a)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x283)],'icon':'ShapeFlowChartProcessIcon','name':_0x57b2d2(0x502)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)]['FlowchartAlternateProcess'],'icon':_0x57b2d2(0x143),'name':'shape.type.flow-chart-alternate-process'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x54d)],'icon':_0x57b2d2(0x5e7),'name':_0x57b2d2(0x888)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d['ShapeTypeEnum']['FlowChartInputOutput'],'icon':_0x57b2d2(0x333),'name':_0x57b2d2(0x15a)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)]['FlowchartPredefinedProcess'],'icon':'ShapeFlowChartPredefinedProcessIcon','name':_0x57b2d2(0x772)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d['ShapeTypeEnum']['FlowchartInternalStorage'],'icon':_0x57b2d2(0x794),'name':_0x57b2d2(0x84c)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x276)],'icon':'ShapeFlowChartDocumentIcon','name':_0x57b2d2(0x3dd)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)]['FlowchartMultiDocument'],'icon':_0x57b2d2(0x2ff),'name':_0x57b2d2(0x468)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x82f)],'icon':_0x57b2d2(0x21b),'name':_0x57b2d2(0x385)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x460)],'icon':'ShapeFlowChartPreparationIcon','name':'shape.type.flow-chart-preparation'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x201)],'icon':'ShapeFlowChartManualInputIcon','name':'shape.type.flow-chart-manual-input'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x64f)],'icon':_0x57b2d2(0x646),'name':_0x57b2d2(0x82c)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x5d1)],'icon':_0x57b2d2(0x4f4),'name':_0x57b2d2(0x242)},{'group':'flowchart','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x65d)],'icon':'ShapeFlowChartOffpageConnectorIcon','name':_0x57b2d2(0x585)},{'group':'flowchart','type':_0x21428d['ShapeTypeEnum']['FlowchartPunchedCard'],'icon':'ShapeFlowChartPunchedCardIcon','name':'shape.type.flow-chart-punched-card'},{'group':'flowchart','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x309)],'icon':_0x57b2d2(0x6ab),'name':_0x57b2d2(0x16b)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x284)],'icon':'ShapeFlowChartSummingJunctionIcon','name':_0x57b2d2(0x465)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)]['FlowchartOr'],'icon':_0x57b2d2(0x26d),'name':'shape.type.flow-chart-or'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x489)],'icon':_0x57b2d2(0x377),'name':_0x57b2d2(0x5e9)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x2cb)],'icon':_0x57b2d2(0x4e2),'name':'shape.type.flow-chart-sort'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)]['FlowchartExtract'],'icon':_0x57b2d2(0x644),'name':_0x57b2d2(0x190)},{'group':'flowchart','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x462)],'icon':_0x57b2d2(0x84e),'name':'shape.type.flow-chart-merge'},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x55e)],'icon':_0x57b2d2(0x7f9),'name':_0x57b2d2(0x2e6)},{'group':'flowchart','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x77a)],'icon':'ShapeFlowChartDelayIcon','name':_0x57b2d2(0x780)},{'group':'flowchart','type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x74b)],'icon':_0x57b2d2(0x7e3),'name':_0x57b2d2(0x440)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x207)],'icon':_0x57b2d2(0x8a6),'name':_0x57b2d2(0x808)},{'group':_0x57b2d2(0x5d0),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x320)],'icon':_0x57b2d2(0x557),'name':'shape.type.flow-chart-magnetic-drum'},{'group':'flowchart','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x630)],'icon':_0x57b2d2(0x5db),'name':'shape.type.flow-chart-display'},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x628)],'icon':_0x57b2d2(0x727),'name':_0x57b2d2(0x1d6)},{'group':_0x57b2d2(0x49e),'type':_0x21428d['ShapeTypeEnum']['IrregularSeal2'],'icon':_0x57b2d2(0x293),'name':_0x57b2d2(0x881)},{'group':'starAndBanner','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x590)],'icon':'ShapeStar4Icon','name':_0x57b2d2(0x1e6)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)]['Star5'],'icon':_0x57b2d2(0x4b6),'name':'shape.type.star5'},{'group':_0x57b2d2(0x49e),'type':_0x21428d['ShapeTypeEnum']['Star6'],'icon':_0x57b2d2(0x7a6),'name':_0x57b2d2(0x23e)},{'group':_0x57b2d2(0x49e),'type':_0x21428d['ShapeTypeEnum']['Star7'],'icon':_0x57b2d2(0x328),'name':_0x57b2d2(0x233)},{'group':'starAndBanner','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x71e)],'icon':'ShapeStar8Icon','name':_0x57b2d2(0x2e9)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x25d)],'icon':_0x57b2d2(0x700),'name':_0x57b2d2(0x166)},{'group':_0x57b2d2(0x49e),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x411)],'icon':_0x57b2d2(0x2bd),'name':_0x57b2d2(0x5f3)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x58f)],'icon':_0x57b2d2(0x726),'name':_0x57b2d2(0x144)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x7dd)],'icon':_0x57b2d2(0x2f8),'name':_0x57b2d2(0x719)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x792)],'icon':_0x57b2d2(0x74f),'name':_0x57b2d2(0x57d)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x1c5)],'icon':_0x57b2d2(0x504),'name':_0x57b2d2(0x4aa)},{'group':'starAndBanner','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x456)],'icon':_0x57b2d2(0x25b),'name':_0x57b2d2(0x6aa)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x3b7)],'icon':'ShapeEllipseRibbon2Icon','name':_0x57b2d2(0x246)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x272)],'icon':_0x57b2d2(0x642),'name':_0x57b2d2(0x2c5)},{'group':'starAndBanner','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x329)],'icon':_0x57b2d2(0x821),'name':'shape.type.vertical-scroll'},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x41d)],'icon':_0x57b2d2(0x58b),'name':_0x57b2d2(0x807)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x663)],'icon':_0x57b2d2(0x374),'name':_0x57b2d2(0x453)},{'group':_0x57b2d2(0x49e),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x306)],'icon':_0x57b2d2(0x7d0),'name':_0x57b2d2(0x5c4)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x20c)],'icon':_0x57b2d2(0x4d2),'name':'shape.type.wedge-rect-callout'},{'group':'callout','type':_0x21428d[_0x57b2d2(0x42c)]['WedgeRoundRectCallout'],'icon':_0x57b2d2(0x84b),'name':_0x57b2d2(0x762)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)]['WedgeEllipseCallout'],'icon':_0x57b2d2(0x4a2),'name':_0x57b2d2(0x1b4)},{'group':'callout','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x62d)],'icon':'ShapeCloudCalloutIcon','name':_0x57b2d2(0x2fb)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x60b)],'icon':_0x57b2d2(0x567),'name':_0x57b2d2(0x46f)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)]['BorderCallout2'],'icon':_0x57b2d2(0x85c),'name':_0x57b2d2(0x744)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x1ff)],'icon':_0x57b2d2(0x76e),'name':_0x57b2d2(0x29c)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6b6)],'icon':_0x57b2d2(0x57c),'name':_0x57b2d2(0x2b2)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x759)],'icon':_0x57b2d2(0x40e),'name':_0x57b2d2(0x186)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x5ea)],'icon':_0x57b2d2(0x2f9),'name':_0x57b2d2(0x249)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)]['Callout1'],'icon':'ShapeCallout1Icon','name':_0x57b2d2(0x6e2)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)]['Callout2'],'icon':_0x57b2d2(0x6ba),'name':_0x57b2d2(0x7eb)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x296)],'icon':_0x57b2d2(0x501),'name':'shape.type.callout3'},{'group':'callout','type':_0x21428d['ShapeTypeEnum']['AccentBorderCallout1'],'icon':_0x57b2d2(0x7ae),'name':'shape.type.accent-border-callout1'},{'group':'callout','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x4c8)],'icon':_0x57b2d2(0x480),'name':_0x57b2d2(0x611)},{'group':_0x57b2d2(0x2d5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x24b)],'icon':_0x57b2d2(0x18c),'name':_0x57b2d2(0x5bb)},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x542)],'icon':_0x57b2d2(0x251),'name':_0x57b2d2(0x4be)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x16e)],'icon':_0x57b2d2(0x75a),'name':'shape.type.left-right-circular-arrow'},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x5c9)],'icon':'ShapeSwooshArrowIcon','name':_0x57b2d2(0x24c)},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x7cf)],'icon':'ShapeLeftRightRibbonIcon','name':_0x57b2d2(0x707)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x4c5)],'icon':_0x57b2d2(0x3e0),'name':_0x57b2d2(0x6b2)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x298)],'icon':_0x57b2d2(0x831),'name':'shape.type.funnel'},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x3c3)],'icon':_0x57b2d2(0x72d),'name':_0x57b2d2(0x38d)},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x317)],'icon':_0x57b2d2(0x314),'name':_0x57b2d2(0x470)},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)]['CornerTabs'],'icon':_0x57b2d2(0x5a8),'name':_0x57b2d2(0x66e)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum']['ActionButtonBackPrevious'],'icon':_0x57b2d2(0x17f),'name':_0x57b2d2(0x1f1)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum']['ActionButtonForwardNext'],'icon':'ShapeActionButtonForwardNextIcon','name':'shape.type.action-button-forward-next'},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x7be)],'icon':'ShapeActionButtonBeginningIcon','name':'shape.type.action-button-beginning'},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x53f)],'icon':_0x57b2d2(0x7b9),'name':_0x57b2d2(0x282)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6f3)],'icon':_0x57b2d2(0x1f2),'name':_0x57b2d2(0x305)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x55f)],'icon':_0x57b2d2(0x721),'name':_0x57b2d2(0x89a)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum']['ActionButtonReturn'],'icon':_0x57b2d2(0x655),'name':_0x57b2d2(0x601)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x5ed)],'icon':'ShapeActionButtonMovieIcon','name':_0x57b2d2(0x1a6)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x608)],'icon':'ShapeActionButtonDocumentIcon','name':_0x57b2d2(0x4bf)},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x3c9)],'icon':_0x57b2d2(0x61a),'name':_0x57b2d2(0x842)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6f5)],'icon':_0x57b2d2(0x2a1),'name':'shape.type.action-button-help'},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x71f)],'icon':_0x57b2d2(0x369),'name':_0x57b2d2(0x5b1)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)]['ChartPlus'],'icon':_0x57b2d2(0x432),'name':'shape.type.chart-plus'},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x44e)],'icon':_0x57b2d2(0x2c9),'name':_0x57b2d2(0x863)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)]['ChartX'],'icon':_0x57b2d2(0x216),'name':_0x57b2d2(0x87d)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x13f)],'icon':_0x57b2d2(0x6c3),'name':_0x57b2d2(0x7df)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d['ShapeTypeEnum'][_0x57b2d2(0x1f9)],'icon':_0x57b2d2(0x820),'name':_0x57b2d2(0x618)},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x351)],'icon':_0x57b2d2(0x2b1),'name':'shape.type.plaque-tabs'},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x5cc)],'icon':_0x57b2d2(0x5a1),'name':'shape.type.square-tabs'},{'group':_0x57b2d2(0x6e5),'type':_0x21428d[_0x57b2d2(0x42c)]['UpDownArrowCallout'],'icon':_0x57b2d2(0x41c),'name':'shape.type.up-down-arrow-callout'},{'group':'other','type':_0x21428d[_0x57b2d2(0x42c)][_0x57b2d2(0x6ac)],'icon':_0x57b2d2(0x4e7),'name':_0x57b2d2(0x1ce)}];function _0x5cf3b9(_0x1bb278=_0x5ee2f3,_0x1ff5c1=[]){const _0x1fdaa7=_0x57b2d2;return _0x1bb278[_0x1fdaa7(0x2b7)]((_0x5aa182,_0x150fbe)=>_0x1ff5c1[_0x1fdaa7(0x349)](_0x150fbe['group'])?_0x5aa182:(_0x5aa182[_0x150fbe['group']]||(_0x5aa182[_0x150fbe[_0x1fdaa7(0x6c8)]]=[]),_0x5aa182[_0x150fbe[_0x1fdaa7(0x6c8)]][_0x1fdaa7(0x43d)](_0x150fbe),_0x5aa182),{});}function _0x276a02(_0x2ec96b){const _0x442009=_0x57b2d2;let {excludeGroups:_0x35125e,onShapeClick:_0x542ebf,options:_0x4c7089=_0x5ee2f3,scrollContainer:_0x54d109=_0x442009(0x23b),variant:_0xe3b71e=_0x442009(0x324)}=_0x2ec96b,_0x285f04=(0x0,_0x26fc1b['useDependency'])(_0x26fc1b[_0x442009(0x86a)]),_0xb68eea=(0x0,_0x26fc1b[_0x442009(0x755)])(_0x2cafcd[_0x442009(0x15c)]),_0x14ed29=_0x5cf3b9(_0x4c7089,_0x35125e);return(0x0,_0x43e701[_0x442009(0x715)])(_0x442009(0x3ec),{'className':_0x442009(0x2f3)+(_0x54d109===_0x442009(0x23b)?'univer-max-h-[75vh]\x20univer-overflow-y-auto':'')+_0x442009(0x68d)+(_0xe3b71e===_0x442009(0x844)?_0x442009(0x7e7):'')+_0x442009(0x4db),'children':Object[_0x442009(0x550)](_0x14ed29)[_0x442009(0x499)](([_0x5b5926,_0x2fe749])=>(0x0,_0x43e701['jsxs'])(_0x442009(0x3ec),{'className':_0x442009(0x753),'children':[(0x0,_0x43e701[_0x442009(0x715)])(_0x442009(0x3ec),{'className':_0x442009(0x6e9),'children':_0xb68eea['t'](_0x442009(0x350)+_0x5b5926)}),(0x0,_0x43e701[_0x442009(0x715)])(_0x442009(0x3ec),{'className':_0x442009(0x675),'children':_0x2fe749==null?void 0x0:_0x2fe749[_0x442009(0x499)](_0x57d744=>{const _0x4e7bc4=_0x442009;let _0x44e0d4=_0x285f04[_0x4e7bc4(0x452)](_0x57d744[_0x4e7bc4(0x420)]);return(0x0,_0x43e701[_0x4e7bc4(0x715)])(_0x4e7bc4(0x894),{'type':_0x4e7bc4(0x894),'title':_0xb68eea['t'](_0x4e7bc4(0x62c)+_0x57d744[_0x4e7bc4(0x35d)]),'onClick':()=>_0x542ebf(_0x57d744),'className':_0x4e7bc4(0x3ef),'children':_0x44e0d4&&(0x0,_0x43e701[_0x4e7bc4(0x715)])(_0x44e0d4,{'className':'univer-size-full'})},_0x57d744[_0x4e7bc4(0x35d)]);})})]},_0x5b5926))});}function _0x202702(_0x22f3f7){const _0x41f658=_0x57b2d2;return(0x0,_0x43e701[_0x41f658(0x715)])(_0x276a02,{'excludeGroups':_0x22f3f7['excludeGroups'],'onShapeClick':_0x22f3f7[_0x41f658(0x29b)],'options':_0x22f3f7[_0x41f658(0x4e5)],'scrollContainer':_0x22f3f7[_0x41f658(0x2d0)],'variant':_0x22f3f7[_0x41f658(0x52e)]});}function _0x1622eb(_0x4f4f38){const _0x5ae470=_0x57b2d2;let {buttonLabel:_0x3c91e5,side:_0x18d109='left',..._0x31001b}=_0x4f4f38,_0x14eac9=(0x0,_0x26fc1b[_0x5ae470(0x755)])(_0x2cafcd[_0x5ae470(0x15c)]),[_0x33daa3,_0x5d0462]=(0x0,_0x55b95c['useState'])(!0x1);return(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x5ae470(0x5a4)],{'side':_0x18d109,'open':_0x33daa3,'onOpenChange':_0x5d0462,'overlay':(0x0,_0x43e701['jsx'])(_0x202702,{..._0x31001b,'onShapeClick':_0x5d9f39=>{_0x31001b['onShapeClick'](_0x5d9f39),_0x5d0462(!0x1);}}),'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5[_0x5ae470(0x2d3)],{'children':_0x14eac9['t'](_0x3c91e5)})});}let _0xc3d1d0=_0x57b2d2(0x712);function _0x3ddfac(_0x182347){const _0x4a142c=_0x57b2d2;var _0x22bae1,_0x4680fe,_0x2d7b39;let {title:_0x571a09,popupDataComponent:_0x121be5=_0x4a142c(0x72b)}=_0x182347,_0x2f9e64=(0x0,_0x26fc1b[_0x4a142c(0x755)])(_0x2cafcd[_0x4a142c(0x7fb)]),_0x57370d=(0x0,_0x26fc1b['useDependency'])(_0x425583['DocSelectionManagerService']),_0x57a3b6=(0x0,_0x26fc1b[_0x4a142c(0x755)])(_0x2cafcd['LocaleService']),_0x2bc379=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd[_0x4a142c(0x6a8)]),[_0x59249c,_0x5b50f4]=(0x0,_0x55b95c[_0x4a142c(0x614)])(!0x1),[_0x543831,_0x452e6e]=(0x0,_0x55b95c[_0x4a142c(0x614)])(_0x2cafcd[_0x4a142c(0x537)][_0x4a142c(0x365)]),_0x53dce4=()=>{const _0x20ada3=_0x4a142c;var _0x3f34d6,_0x2c74a0;let _0x1a388b=_0x25d584(_0x2bc379[_0x20ada3(0x4b9)](_0x2cafcd[_0x20ada3(0x302)][_0x20ada3(0x7e9)]),_0x1e8db3(_0x57370d));_0x452e6e((_0x3f34d6=_0x1a388b==null||(_0x2c74a0=_0x1a388b[_0x20ada3(0x6f6)])==null?void 0x0:_0x2c74a0[_0x20ada3(0x840)])==null?_0x2cafcd[_0x20ada3(0x537)][_0x20ada3(0x365)]:_0x3f34d6);};(0x0,_0x55b95c[_0x4a142c(0x877)])(()=>{const _0x1af486=_0x4a142c;_0x53dce4();let _0x5eb4e2=_0x2f9e64['onCommandExecuted'](_0xd62ae=>{const _0x369f55=_0x4293;(_0xd62ae['id']===_0x425583[_0x369f55(0x26c)]['id']||_0xd62ae['id']===_0x425583[_0x369f55(0x72c)]['id']||_0xd62ae['id']===_0x3bd019[_0x369f55(0x17a)]['id']||_0xd62ae['id']===_0x3bd019[_0x369f55(0x3e6)]['id']||_0xd62ae['id']===_0x3bd019['BulletListCommand']['id']||_0xd62ae['id']===_0x3bd019[_0x369f55(0x2a9)]['id'])&&_0x53dce4();}),_0x367570=_0x57370d[_0x1af486(0x2d2)]['subscribe'](_0x53dce4);return()=>{_0x5eb4e2['dispose'](),_0x367570['unsubscribe']();};},[_0x2f9e64,_0x57370d,_0x2bc379]);let _0x1eca6b=(0x0,_0x55b95c[_0x4a142c(0x81b)])(()=>_0xa36b97(_0x2f9e64)['map'](_0x576b20=>({..._0x576b20,'label':_0x57a3b6['t'](_0x576b20[_0x4a142c(0x751)])})),[_0x2f9e64,_0x57a3b6]),_0x1494e7=(_0x22bae1=_0x1eca6b[_0x4a142c(0x754)](_0x52cec6=>_0x52cec6[_0x4a142c(0x840)]===_0x543831))==null?_0x1eca6b[0x0]:_0x22bae1,_0x595dd4=_0x1d782d=>{const _0x22dc20=_0x4a142c;var _0x1a9ac0;let _0x1f04e2=_0x2bc379[_0x22dc20(0x4b9)](_0x2cafcd['UniverInstanceType'][_0x22dc20(0x7e9)]),_0xc71435=_0x1e8db3(_0x57370d);if((_0x1a9ac0=_0x182347['onBeforeCommand'])==null||_0x1a9ac0['call'](_0x182347),_0x1d782d[_0x22dc20(0x840)]!==void 0x0){let _0x160277={'value':_0x1d782d[_0x22dc20(0x840)]};_0xc71435&&(_0x160277[_0x22dc20(0x77b)]=[_0xc71435]),_0x2f9e64[_0x22dc20(0x893)](_0x3bd019['SetParagraphNamedStyleCommand']['id'],_0x160277);}else{if(_0x1d782d['commandId']===_0x3bd019[_0x22dc20(0x3e6)]['id']||_0x1d782d['commandId']===_0x3bd019[_0x22dc20(0x408)]['id']||_0x1d782d[_0x22dc20(0x89b)]===_0x3bd019['CheckListCommand']['id']){let _0x16509a=_0xc71435?{'docRange':[_0xc71435]}:void 0x0;_0x2f9e64[_0x22dc20(0x893)](_0x1d782d[_0x22dc20(0x89b)],_0x16509a);}else _0x1d782d['commandId']&&_0x2f9e64[_0x22dc20(0x893)](_0x1d782d[_0x22dc20(0x89b)],{'unitId':_0x1f04e2==null?void 0x0:_0x1f04e2[_0x22dc20(0x378)](),'startOffset':_0xc71435==null?void 0x0:_0xc71435['startOffset'],'endOffset':_0xc71435==null?void 0x0:_0xc71435[_0x22dc20(0x4e9)]});}_0x5b50f4(!0x1),window['requestAnimationFrame'](()=>{const _0x4c9be3=_0x22dc20;var _0x265dd6;_0x53dce4(),(_0x265dd6=_0x182347[_0x4c9be3(0x231)])==null||_0x265dd6[_0x4c9be3(0x211)](_0x182347);});};return(0x0,_0x43e701[_0x4a142c(0x715)])(_0x3f5bc5[_0x4a142c(0x5a4)],{'open':_0x59249c,'onOpenChange':_0x5b50f4,'overlay':(0x0,_0x43e701[_0x4a142c(0x715)])('div',{'className':(0x0,_0x3f5bc5['clsx'])(_0x4a142c(0x330),_0x182347[_0x4a142c(0x471)]),'data-u-comp':_0x121be5,'onMouseDown':_0x4d7b29=>_0x4d7b29[_0x4a142c(0x399)](),'children':_0x1eca6b[_0x4a142c(0x499)](_0x76e9b7=>(0x0,_0x43e701[_0x4a142c(0x39b)])(_0x4a142c(0x894),{'type':_0x4a142c(0x894),'className':(0x0,_0x3f5bc5['clsx'])(_0x4a142c(0x7e0),{'univer-bg-primary-50\x20univer-text-primary-600\x20dark:!univer-bg-gray-800\x20dark:!univer-text-primary-300':_0x76e9b7[_0x4a142c(0x865)]===(_0x1494e7==null?void 0x0:_0x1494e7['value'])}),'onClick':()=>_0x595dd4(_0x76e9b7),'onMouseDown':_0xc4b465=>_0xc4b465[_0x4a142c(0x399)](),'children':[(0x0,_0x43e701[_0x4a142c(0x715)])(_0x4a142c(0x2bf),{'className':'univer-flex\x20univer-size-4\x20univer-items-center\x20univer-justify-center','children':_0x76e9b7[_0x4a142c(0x420)]}),(0x0,_0x43e701['jsx'])(_0x4a142c(0x2bf),{'className':_0x4a142c(0x41b),'children':_0x76e9b7[_0x4a142c(0x751)]})]},_0x76e9b7[_0x4a142c(0x865)]))}),'children':(0x0,_0x43e701[_0x4a142c(0x715)])(_0x4a142c(0x2bf),{'children':(0x0,_0x43e701['jsx'])(_0x3f5bc5['Tooltip'],{'title':_0x571a09,'placement':_0x4a142c(0x6fa),'children':(0x0,_0x43e701[_0x4a142c(0x39b)])(_0x4a142c(0x894),{'type':'button','aria-expanded':_0x59249c,'aria-label':_0x571a09,'title':_0x571a09,'className':(0x0,_0x3f5bc5['clsx'])('univer-flex\x20univer-h-7\x20univer-min-w-9\x20univer-items-center\x20univer-justify-center\x20univer-gap-1\x20univer-rounded-md\x20univer-border-none\x20univer-bg-transparent\x20univer-px-1.5\x20univer-text-sm\x20univer-text-gray-700\x20univer-transition-colors\x20hover:univer-bg-gray-100\x20dark:!univer-text-gray-100\x20dark:hover:!univer-bg-gray-700',_0x182347[_0x4a142c(0x1cb)],{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x59249c}),'onMouseDown':(_0x4680fe=_0x182347[_0x4a142c(0x39a)])==null?_0x2ced98=>_0x2ced98['preventDefault']():_0x4680fe,'children':[(0x0,_0x43e701['jsx'])(_0x4a142c(0x2bf),{'className':_0x4a142c(0x7a0),'children':(_0x2d7b39=_0x1494e7==null?void 0x0:_0x1494e7['icon'])==null?(0x0,_0x43e701[_0x4a142c(0x715)])(_0x571c5e,{}):_0x2d7b39}),(0x0,_0x43e701[_0x4a142c(0x715)])(_0x3329e2,{'className':_0x4a142c(0x883)})]})})})});}function _0xa36b97(_0x3a0d5d){const _0x4795d3=_0x57b2d2;let _0x4d37fe=[_0x1dba86(_0x2cafcd[_0x4795d3(0x537)]['NORMAL_TEXT'],(0x0,_0x43e701['jsx'])(_0x571c5e,{}),_0x4795d3(0x14d)),_0x1dba86(_0x2cafcd['NamedStyleType']['HEADING_1'],(0x0,_0x43e701['jsx'])(_0x282f31,{}),'shape-editor-ui.textEditor.paragraphType.heading1'),_0x1dba86(_0x2cafcd[_0x4795d3(0x537)][_0x4795d3(0x495)],(0x0,_0x43e701[_0x4795d3(0x715)])(_0x4c0fe0,{}),_0x4795d3(0x5f2)),_0x1dba86(_0x2cafcd[_0x4795d3(0x537)]['HEADING_3'],(0x0,_0x43e701['jsx'])(_0x591e7d,{}),'shape-editor-ui.textEditor.paragraphType.heading3'),_0x1dba86(_0x2cafcd[_0x4795d3(0x537)][_0x4795d3(0x666)],(0x0,_0x43e701[_0x4795d3(0x715)])(_0x2027e1,{}),'shape-editor-ui.textEditor.paragraphType.heading4'),_0x1dba86(_0x2cafcd[_0x4795d3(0x537)][_0x4795d3(0x323)],(0x0,_0x43e701[_0x4795d3(0x715)])(_0xe0e9ac,{}),_0x4795d3(0x5bf)),_0x1332d8(_0x3bd019[_0x4795d3(0x3e6)]['id'],(0x0,_0x43e701[_0x4795d3(0x715)])(_0x2d0120,{}),'shape-editor-ui.textEditor.paragraphType.orderedList'),_0x1332d8(_0x3bd019[_0x4795d3(0x408)]['id'],(0x0,_0x43e701['jsx'])(_0x3a11b1,{}),'shape-editor-ui.textEditor.paragraphType.bulletList'),_0x1332d8(_0x3bd019[_0x4795d3(0x2a9)]['id'],(0x0,_0x43e701['jsx'])(_0x2c7bd3,{}),'shape-editor-ui.textEditor.paragraphType.checkList')],_0x1fc513=[_0x1332d8(_0xc3d1d0,(0x0,_0x43e701[_0x4795d3(0x715)])(_0x4795d3(0x2bf),{'className':_0x4795d3(0x40d),'children':'\x22'}),'shape-editor-ui.textEditor.paragraphType.quote'),_0x1332d8(_0x4795d3(0x847),(0x0,_0x43e701[_0x4795d3(0x715)])(_0x48f1f8,{}),'shape-editor-ui.textEditor.paragraphType.code'),_0x1332d8('docs-callout.command.insert',(0x0,_0x43e701[_0x4795d3(0x715)])(_0x25476e,{}),_0x4795d3(0x570))]['filter'](_0x202eb4=>_0x3a0d5d[_0x4795d3(0x36a)](_0x202eb4[_0x4795d3(0x89b)]));return[..._0x4d37fe,..._0x1fc513];}function _0x1dba86(_0x59c43c,_0x1523f7,_0x64e92e){const _0x1abe8a=_0x57b2d2;return{'icon':_0x1523f7,'label':_0x64e92e,'namedStyleType':_0x59c43c,'value':_0x1abe8a(0x886)+_0x59c43c};}function _0x1332d8(_0x27ab97,_0x3eebea,_0x3be3fb){const _0x293f83=_0x57b2d2;return{'commandId':_0x27ab97,'icon':_0x3eebea,'label':_0x3be3fb,'value':_0x293f83(0x2db)+_0x27ab97};}function _0x1e8db3(_0x234f16){const _0xdae57=_0x57b2d2;var _0x4c7456,_0x533eb3,_0x3a9984,_0x17c42c;let _0x41f7e4=(_0x4c7456=_0x234f16['getActiveTextRange'])==null?void 0x0:_0x4c7456[_0xdae57(0x211)](_0x234f16);if(_0x41f7e4)return _0x41f7e4;let _0x11592b=(_0x533eb3=_0x234f16[_0xdae57(0x153)]())==null?[]:_0x533eb3;return(_0x3a9984=(_0x17c42c=_0x11592b['find'](_0x5b88ef=>_0x5b88ef[_0xdae57(0x1a3)]))==null?_0x11592b[0x0]:_0x17c42c)==null?null:_0x3a9984;}function _0x25d584(_0x17e985,_0x22ca71){const _0x57df78=_0x57b2d2;var _0x1e2f82,_0x448cfd,_0x17a664,_0x3f7a05;let _0x3a69e2=_0x17e985==null||(_0x1e2f82=_0x17e985[_0x57df78(0x7d1)](_0x22ca71==null?void 0x0:_0x22ca71[_0x57df78(0x5f8)]))==null?void 0x0:_0x1e2f82['getBody'](),_0x379819=(_0x448cfd=_0x3a69e2==null?void 0x0:_0x3a69e2[_0x57df78(0x1c8)])==null?[]:_0x448cfd,_0xf9a2ef=(_0x17a664=_0x22ca71==null?void 0x0:_0x22ca71[_0x57df78(0x8a0)])==null?0x0:_0x17a664;return(_0x3f7a05=_0x379819[_0x57df78(0x754)](_0x17a335=>_0x17a335[_0x57df78(0x825)]>=_0xf9a2ef))==null?_0x379819[_0x379819[_0x57df78(0x1bf)]-0x1]:_0x3f7a05;}function _0x7c5ae9(){const _0x193171=_0x57b2d2;return{'id':_0x193171(0x28b),'body':{'dataStream':'\x0d\x0a','paragraphs':[{'startIndex':0x0,'paragraphId':(0x0,_0x2cafcd['createParagraphId'])(new Set())}],'textRuns':[]},'documentStyle':{}};}function _0x1ed8d8(_0x516617){const _0x2171cf=_0x57b2d2;var _0x3a9736,_0x2e31de;return{'fill':(_0x3a9736=_0x516617[_0x2171cf(0x291)])==null?{'fillType':_0x21428d['ShapeFillEnum']['NoFill']}:_0x3a9736,'isTextBox':!0x0,'shapeText':{'isHorizontal':_0x516617[_0x2171cf(0x6c7)],'textDirection':_0x516617[_0x2171cf(0x6c7)]?_0x2171cf(0x429):_0x2171cf(0x701),'text':'','autoFitType':_0x21428d[_0x2171cf(0x32c)]['SpAutoFit'],'textWrap':_0x2171cf(0x5b0),'dataModel':{'ha':_0x2cafcd[_0x2171cf(0x829)][_0x2171cf(0x355)],'va':_0x2cafcd[_0x2171cf(0x40b)][_0x2171cf(0x2cd)],'doc':_0x7c5ae9()}},'stroke':(_0x2e31de=_0x516617['stroke'])==null?{'lineStrokeType':_0x21428d[_0x2171cf(0x711)][_0x2171cf(0x379)]}:_0x2e31de};}function _0x26adf5(_0x2e35fc,_0x44c57a){return _0x2e35fc?{..._0x2e35fc,'shapeText':_0x44c57a}:{'shapeText':_0x44c57a};}function _0x4b018c(_0x425205){const _0xe043ca=_0x57b2d2;var _0x539ccf;if(!_0x425205||!('dataModel'in _0x425205))return;let _0x35e28=_0x425205[_0xe043ca(0x53c)];if(!_0x35e28||typeof _0x35e28!=_0xe043ca(0x60f)||!('doc'in _0x35e28))return;let _0x11f9f6=_0x35e28['doc'];if(_0x557259(_0x11f9f6))return(_0x539ccf=_0x11f9f6[_0xe043ca(0x1c3)])==null||(_0x539ccf=_0x539ccf[_0xe043ca(0x6d6)])==null?void 0x0:_0x539ccf[_0xe043ca(0x766)];}function _0x557259(_0x5b6340){return typeof _0x5b6340=='object'&&!!_0x5b6340&&'id'in _0x5b6340;}function _0x30a71b(_0x4f2c44,_0x1a7897=_0x2cafcd[_0x57b2d2(0x4dc)][_0x57b2d2(0x199)]){const _0x1fbd77=_0x57b2d2;var _0x14ec44;let _0x1ee655=_0x4f2c44[_0x1fbd77(0x41f)];return(_0x1ee655==null?void 0x0:_0x1ee655['textWrap'])===_0x1fbd77(0x5b0)?_0x2cafcd[_0x1fbd77(0x4dc)][_0x1fbd77(0x244)]:(_0x1ee655==null?void 0x0:_0x1ee655[_0x1fbd77(0x6d8)])===_0x1fbd77(0x595)?_0x2cafcd[_0x1fbd77(0x4dc)][_0x1fbd77(0x199)]:(_0x14ec44=_0x4b018c(_0x1ee655))==null?_0x1a7897:_0x14ec44;}function _0x5401d6(_0x2d7e49,_0x752145){const _0x1cc1ec=_0x57b2d2;return(0x0,_0x21428d[_0x1cc1ec(0x3d7)])(_0x2d7e49)['textWrap']===_0x1cc1ec(0x5b0)?!0x1:(_0x752145==null?_0x30a71b(_0x2d7e49):_0x752145)!==_0x2cafcd[_0x1cc1ec(0x4dc)][_0x1cc1ec(0x619)];}function _0x4decc8(_0x33c48e){const _0x216f13=_0x57b2d2;let _0x91fd8a=(0x0,_0x21428d['resolveShapeTextBodyBehavior'])(_0x33c48e);return _0x91fd8a[_0x216f13(0x7f4)]===_0x21428d[_0x216f13(0x32c)][_0x216f13(0x796)]&&_0x91fd8a[_0x216f13(0x6d8)]===_0x216f13(0x5b0);}function _0x4817a3(_0x5c4db4){const _0x3335d9=_0x57b2d2;var _0x2139d6;return((_0x2139d6=_0x5c4db4['shapeText'])==null?void 0x0:_0x2139d6[_0x3335d9(0x6c7)])===!0x1?_0x3335d9(0x5fc):'width';}function _0x406f9d(_0x3a9dd6,_0x3d595d={}){const _0x265116=_0x57b2d2;return _0x3d595d[_0x265116(0x322)]===!0x0?!0x0:_0x3a9dd6?(0x0,_0x21428d[_0x265116(0x3d7)])(_0x3a9dd6)[_0x265116(0x2c8)]:!0x1;}function _0x582e74(_0x1392de,_0x2f78ce){const _0x2f3025=_0x57b2d2;if(_0x1392de==null||_0x2f78ce==null)return!0x1;let {glyph:_0x142abb,..._0x1c7f83}=_0x1392de,{glyph:_0x4bfc65,..._0x33e1f1}=_0x2f78ce;return(0x0,_0x2cafcd[_0x2f3025(0x697)])(_0x1c7f83,_0x33e1f1);}var _0x13b104=class extends _0x2cafcd[_0x57b2d2(0x185)]{constructor(_0x4d4c95,_0x2f74cc,_0x21deb0,_0x1d0069,_0x59261a,_0x55bfb3){const _0x586caa=_0x57b2d2;super(),this['_context']=_0x4d4c95,this[_0x586caa(0x20e)]=_0x2f74cc,this[_0x586caa(0x5a7)]=_0x21deb0,this[_0x586caa(0x4e4)]=_0x1d0069,this[_0x586caa(0x7dc)]=_0x59261a,this['_config']=_0x55bfb3,_0x181eb9(this,'_floatMenu',null),this[_0x586caa(0x51a)][_0x586caa(0x848)]===this[_0x586caa(0x343)][_0x586caa(0x203)]&&(this[_0x586caa(0x1d7)](this[_0x586caa(0x4e4)]['register'](this[_0x586caa(0x343)]['componentKey'],this[_0x586caa(0x343)][_0x586caa(0x5da)])),this[_0x586caa(0x338)](),this[_0x586caa(0x1d7)](()=>this[_0x586caa(0x15e)]()));}[_0x57b2d2(0x338)](){const _0x54e94f=_0x57b2d2;this[_0x54e94f(0x1d7)](this[_0x54e94f(0x7dc)][_0x54e94f(0x5dd)][_0x54e94f(0x556)](()=>{const _0x4a2f53=_0x54e94f;this[_0x4a2f53(0x15e)]();})),this['disposeWithMe'](this[_0x54e94f(0x20e)][_0x54e94f(0x2d2)][_0x54e94f(0x556)](_0x32e696=>{const _0x285f68=_0x54e94f;var _0x46af41,_0x1a81db;let {unitId:_0x1d00b3,textRanges:_0x556567}=_0x32e696;if(_0x1d00b3!==this[_0x285f68(0x51a)]['unitId'])return;let _0x3d9f2d=_0x556567['find'](_0x4cff52=>!_0x4cff52[_0x285f68(0x64a)]);if(!_0x3d9f2d){this['_hideFloatMenu']();return;}_0x3d9f2d[_0x285f68(0x8a0)]===((_0x46af41=this[_0x285f68(0x1ea)])==null?void 0x0:_0x46af41[_0x285f68(0x594)])&&_0x3d9f2d[_0x285f68(0x4e9)]===((_0x1a81db=this[_0x285f68(0x1ea)])==null?void 0x0:_0x1a81db[_0x285f68(0x7e2)])||(this[_0x285f68(0x15e)](),this[_0x285f68(0x604)](_0x1d00b3,_0x3d9f2d));}));}[_0x57b2d2(0x15e)](){const _0x299806=_0x57b2d2;var _0x4ce039;(_0x4ce039=this[_0x299806(0x1ea)])==null||_0x4ce039[_0x299806(0x3a0)][_0x299806(0x5a6)](),this[_0x299806(0x1ea)]=null;}[_0x57b2d2(0x604)](_0x43f627,_0x18afa7){const _0x508b58=_0x57b2d2;this['_floatMenu']={'disposable':this['_docCanvasPopManagerService'][_0x508b58(0x1e9)](_0x18afa7,{'componentKey':this[_0x508b58(0x343)][_0x508b58(0x36d)],'direction':_0x18afa7[_0x508b58(0x579)]===_0x508b58(0x38a)||_0x582e74(_0x18afa7[_0x508b58(0x176)],_0x18afa7['endNodePosition'])?'top-center':_0x508b58(0x555),'offset':[0x0,0x4]},_0x43f627),'start':_0x18afa7['startOffset'],'end':_0x18afa7[_0x508b58(0x4e9)]};}};function _0x46b867(_0x505511){const _0x49aba8=_0x57b2d2;return Number[_0x49aba8(0x2ad)](_0x505511)&&_0x505511>0x0?_0x505511:0x0;}function _0x23e314(_0x19db57){const _0x4b6e5c=_0x57b2d2;return _0x19db57===!0x0||_0x19db57===_0x2cafcd[_0x4b6e5c(0x48f)][_0x4b6e5c(0x860)];}function _0x1a95fa(_0x169020){const _0x50cc7e=_0x57b2d2;return typeof(_0x169020==null?void 0x0:_0x169020[_0x50cc7e(0x7f1)])==_0x50cc7e(0x39e)&&_0x169020[_0x50cc7e(0x7f1)]['trim']()[_0x50cc7e(0x1bf)]>0x0;}function _0x273e8d(_0x334d6e,_0x5dfcaa){const _0x911eb2=_0x57b2d2;var _0x5a247c,_0x5d3ac7,_0x29d353,_0x166899,_0xcc658f,_0x344361;let _0xdac036=_0x334d6e==null?void 0x0:_0x334d6e[_0x911eb2(0x2b9)],_0x3fe363=(_0x5a247c=(_0x5d3ac7=(_0x29d353=_0xdac036==null?void 0x0:_0xdac036[_0x911eb2(0x5de)])==null?_0xdac036==null?void 0x0:_0xdac036['ba']:_0x29d353)==null?_0x5dfcaa[_0x911eb2(0x71a)]:_0x5d3ac7)==null?0x0:_0x5a247c,_0x39fb21=(_0x166899=(_0xcc658f=(_0x344361=_0xdac036==null?void 0x0:_0xdac036[_0x911eb2(0x2d8)])==null?_0xdac036==null?void 0x0:_0xdac036['bd']:_0x344361)==null?_0x5dfcaa[_0x911eb2(0x4af)]:_0xcc658f)==null?0x0:_0x166899;return _0x3fe363===0x0&&_0x39fb21===0x0?null:{'ascent':_0x3fe363,'descent':_0x39fb21};}function _0x31cc82(_0x450178){const _0x45ef06=_0x57b2d2;let _0x336ed6=_0x46b867(_0x450178[_0x45ef06(0x702)])-_0x46b867(_0x450178['contentHeight']);return _0x450178['verticalAlign']===_0x2cafcd[_0x45ef06(0x40b)]['MIDDLE']?_0x336ed6/0x2:_0x450178[_0x45ef06(0x5f9)]===_0x2cafcd[_0x45ef06(0x40b)][_0x45ef06(0x559)]?_0x336ed6:0x0;}function _0x385aad(_0x2847b4){const _0x4da3a3=_0x57b2d2;let _0x507848=_0x46b867(_0x2847b4[_0x4da3a3(0x702)]),_0x35670a=Math['max'](_0x507848,_0x46b867(_0x2847b4[_0x4da3a3(0x407)])),_0x33a0a2=_0x2847b4[_0x4da3a3(0x6dc)],_0x50c5ff=_0x2847b4[_0x4da3a3(0x2eb)],_0xe16af8=Number[_0x4da3a3(0x2ad)](_0x33a0a2)?_0x33a0a2:_0x31cc82(_0x2847b4),_0x1e5b2b=Math[_0x4da3a3(0x4a5)](0x0,_0xe16af8),_0x2543c6=_0x1e5b2b+(Number['isFinite'](_0x50c5ff)?_0x50c5ff:0x0),_0x5dddc3=_0x2543c6<0x0?_0x2543c6:0x0;return{'clipHeight':_0x35670a-_0x5dddc3,'clipTop':_0x5dddc3,'contentHeight':_0x35670a,'contentVerticalOffset':_0x1e5b2b,'marginTop':Math[_0x4da3a3(0x729)](0x0,_0xe16af8),'verticalOffset':_0xe16af8};}function _0x456b03(_0x4d534f,_0x45309b=0x1){const _0x1c023f=_0x57b2d2;var _0x40a1e5;let _0x5288da=_0x4d534f[_0x1c023f(0x5bd)](),_0x5d863e=0x1/0x0,_0x372702=-0x1/0x0,_0x399110=0x0;for(let _0x36bf7b of(_0x40a1e5=_0x5288da==null?void 0x0:_0x5288da[_0x1c023f(0x811)])==null?[]:_0x40a1e5){var _0x3b6dbb,_0x41ecc4,_0x5e8741;let _0x2318b5=(_0x3b6dbb=_0x36bf7b['marginTop'])==null?0x0:_0x3b6dbb;for(let _0x4648e2 of(_0x41ecc4=_0x36bf7b['sections'])==null?[]:_0x41ecc4){var _0x4586d5,_0x452195;let _0x3e0ae9=(_0x4586d5=_0x4648e2[_0x1c023f(0x62a)])==null?0x0:_0x4586d5;for(let _0xdb80d2 of(_0x452195=_0x4648e2['columns'])==null?[]:_0x452195){var _0x577797;for(let _0x28fb2d of(_0x577797=_0xdb80d2[_0x1c023f(0x25c)])==null?[]:_0x577797){var _0x449680,_0x814d59,_0x10f7f4,_0x1f97e1,_0x512308,_0x1f9a6b,_0x257976,_0x4c2bf5,_0xc3c9a7,_0x1509ea;let _0x2a62a2=_0x399110+_0x2318b5+_0x3e0ae9+((_0x449680=_0x28fb2d[_0x1c023f(0x62a)])==null?0x0:_0x449680),_0x4bcedd=((_0x814d59=_0x28fb2d[_0x1c023f(0x78b)])==null?0x0:_0x814d59)+((_0x10f7f4=_0x28fb2d[_0x1c023f(0x18a)])==null?0x0:_0x10f7f4)+((_0x1f97e1=_0x28fb2d[_0x1c023f(0x407)])==null?((_0x512308=_0x28fb2d['asc'])==null?0x0:_0x512308)+((_0x1f9a6b=_0x28fb2d[_0x1c023f(0x4af)])==null?0x0:_0x1f9a6b):_0x1f97e1)+((_0x257976=_0x28fb2d[_0x1c023f(0x79c)])==null?0x0:_0x257976)+((_0x4c2bf5=_0x28fb2d[_0x1c023f(0x2a7)])==null?0x0:_0x4c2bf5),_0x4eef58=Math[_0x1c023f(0x729)](0x0,...((_0xc3c9a7=_0x28fb2d[_0x1c023f(0x536)])==null?[]:_0xc3c9a7)[_0x1c023f(0x230)](_0x49fba5=>{const _0x562737=_0x1c023f;var _0x71e5ce;return(_0x71e5ce=_0x49fba5[_0x562737(0x2df)])==null?[]:_0x71e5ce;})['map'](_0x447ff2=>{const _0x4763b2=_0x1c023f;let _0x3c155d=_0x273e8d(_0x447ff2,_0x28fb2d);return _0x3c155d?_0x3c155d[_0x4763b2(0x4ba)]+_0x3c155d[_0x4763b2(0x142)]:0x0;})),_0x23fbb8=Math['max']((_0x1509ea=_0x28fb2d['lineHeight'])==null?0x0:_0x1509ea,_0x4bcedd,_0x4eef58);_0x23fbb8>0x0&&(_0x5d863e=Math[_0x1c023f(0x4a5)](_0x5d863e,_0x2a62a2),_0x372702=Math['max'](_0x372702,_0x2a62a2+_0x23fbb8));}}}_0x399110+=(_0x5e8741=_0x36bf7b[_0x1c023f(0x5fc)])==null?0x0:_0x5e8741;}let _0x266248=_0x372702-_0x5d863e;return Number[_0x1c023f(0x2ad)](_0x266248)&&_0x266248>0x0?_0x266248:Math[_0x1c023f(0x729)](0x1,_0x45309b);}function _0x44b17c(_0x5d6724,_0x3453e0,_0x30d250){const _0x764c05=_0x57b2d2;var _0x16c585;if(_0x30d250===void 0x0||_0x30d250===_0x2cafcd[_0x764c05(0x40b)][_0x764c05(0x50a)])return 0x0;let _0x1b2753=_0x5d6724[_0x764c05(0x5bd)]();if(!(!(_0x1b2753==null||(_0x16c585=_0x1b2753[_0x764c05(0x811)])==null)&&_0x16c585[_0x764c05(0x1bf)]))return 0x0;let _0x126baf=0x1/0x0,_0x12513f=-0x1/0x0,_0x8aa2b4=0x0;for(let _0x48b9ef of _0x1b2753[_0x764c05(0x811)]){var _0x2e902d,_0x41548d;let _0x5f4471=(_0x2e902d=_0x48b9ef[_0x764c05(0x78b)])==null?0x0:_0x2e902d;for(let _0xa20f1 of(_0x41548d=_0x48b9ef[_0x764c05(0x6a1)])==null?[]:_0x41548d){var _0x1c2332,_0x579b7e;let _0xa46da=(_0x1c2332=_0xa20f1[_0x764c05(0x62a)])==null?0x0:_0x1c2332;for(let _0x3a0f33 of(_0x579b7e=_0xa20f1[_0x764c05(0x2a8)])==null?[]:_0x579b7e){var _0x1413c9;for(let _0x403cba of(_0x1413c9=_0x3a0f33['lines'])==null?[]:_0x1413c9){var _0x1dff23,_0x4d7e7b,_0x4fc599,_0x2816c9,_0x5ca27a;let _0x41d906=_0x8aa2b4+_0x5f4471+_0xa46da+((_0x1dff23=_0x403cba[_0x764c05(0x62a)])==null?0x0:_0x1dff23)+((_0x4d7e7b=_0x403cba[_0x764c05(0x78b)])==null?0x0:_0x4d7e7b)+((_0x4fc599=_0x403cba['paddingTop'])==null?0x0:_0x4fc599)+((_0x2816c9=_0x403cba[_0x764c05(0x71a)])==null?0x0:_0x2816c9);for(let _0x552e83 of(_0x5ca27a=_0x403cba[_0x764c05(0x536)])==null?[]:_0x5ca27a){var _0x428b45;for(let _0x551658 of(_0x428b45=_0x552e83['glyphGroup'])==null?[]:_0x428b45){if(!_0x1a95fa(_0x551658))continue;let _0x49f410=_0x273e8d(_0x551658,_0x403cba);_0x49f410&&(_0x126baf=Math[_0x764c05(0x4a5)](_0x126baf,_0x41d906-_0x49f410[_0x764c05(0x4ba)]),_0x12513f=Math[_0x764c05(0x729)](_0x12513f,_0x41d906+_0x49f410[_0x764c05(0x142)]));}}}}}let _0x539cbf=Number[_0x764c05(0x2ad)](_0x48b9ef[_0x764c05(0x3bd)])?_0x48b9ef[_0x764c05(0x3bd)]:_0x48b9ef[_0x764c05(0x5fc)];_0x8aa2b4+=_0x539cbf==null?0x0:_0x539cbf;}return!Number[_0x764c05(0x2ad)](_0x126baf)||!Number[_0x764c05(0x2ad)](_0x12513f)?0x0:_0x30d250===_0x2cafcd[_0x764c05(0x40b)][_0x764c05(0x559)]?_0x3453e0-_0x12513f:_0x30d250===_0x2cafcd[_0x764c05(0x40b)]['MIDDLE']?_0x3453e0/0x2-(_0x126baf+_0x12513f)/0x2:_0x30d250===_0x2cafcd[_0x764c05(0x40b)][_0x764c05(0x2cd)]?-_0x126baf:0x0;}function _0x1eadde(_0x4e0a06){const _0x353d81=_0x57b2d2;return _0x4e0a06===_0x2cafcd[_0x353d81(0x829)]['CENTER'];}function _0x521f65(_0x275636){const _0x22e2a2=_0x57b2d2;return _0x275636===_0x2cafcd[_0x22e2a2(0x829)]['RIGHT'];}function _0x362dbf(_0x3f8693,_0x4b671f){const _0x19244e=_0x57b2d2;var _0x4946ee,_0x290c1d,_0x431fb6,_0x25c154;if(!_0x3f8693)return{'align':_0x4b671f,'width':0x0};let _0x39d6a6=(_0x4946ee=(_0x290c1d=_0x3f8693[_0x19244e(0x299)])==null?void 0x0:_0x290c1d[_0x19244e(0x833)])==null?'':_0x4946ee,_0x2be625=(_0x431fb6=(_0x25c154=_0x3f8693['body'])==null?void 0x0:_0x25c154[_0x19244e(0x1c8)])==null?[]:_0x431fb6;if(_0x2be625['length']===0x0)return{'align':_0x4b671f,'width':(0x0,_0x482181[_0x19244e(0x415)])(_0x3f8693)};let _0xebbac1=0x0,_0x3a2cfb={'align':_0x4b671f,'width':0x0};return _0x2be625[_0x19244e(0x4ea)](_0x240171=>{const _0x4d220b=_0x19244e;var _0x1e842a;let _0x4ffef0=Math['max'](_0xebbac1,Math[_0x4d220b(0x4a5)](_0x39d6a6['length'],(_0x1e842a=_0x240171[_0x4d220b(0x825)])==null?_0xebbac1:_0x1e842a)),_0x1fc48f=(0x0,_0x482181[_0x4d220b(0x227)])(_0x3f8693,_0xebbac1,_0x4ffef0);if(_0x1fc48f>_0x3a2cfb['width']){var _0x3e04bd,_0x3b84b8;_0x3a2cfb={'align':(_0x3e04bd=(_0x3b84b8=_0x240171['paragraphStyle'])==null?void 0x0:_0x3b84b8[_0x4d220b(0x818)])==null?_0x4b671f:_0x3e04bd,'width':_0x1fc48f};}_0xebbac1=Math[_0x4d220b(0x4a5)](_0x39d6a6[_0x4d220b(0x1bf)],_0x4ffef0+0x1);}),_0x3a2cfb;}function _0x2805fc(_0x3b3d7d,_0x248e40,_0x2b2e27){const _0x13e132=_0x57b2d2;var _0x6739c,_0xa9e41b;if(_0x248e40!==void 0x0)return _0x2b2e27==null?_0x248e40:_0x2b2e27;let _0x28f562=((_0x6739c=_0x3b3d7d==null||(_0xa9e41b=_0x3b3d7d[_0x13e132(0x299)])==null?void 0x0:_0xa9e41b[_0x13e132(0x1c8)])==null?[]:_0x6739c)[_0x13e132(0x499)](_0x59bcbe=>{const _0x4f5056=_0x13e132;var _0x27852e;return(_0x27852e=_0x59bcbe[_0x4f5056(0x6f6)])==null?void 0x0:_0x27852e[_0x4f5056(0x818)];})[_0x13e132(0x7aa)](_0x4e3e2e=>_0x4e3e2e!==void 0x0);return _0x28f562[_0x13e132(0x349)](_0x2cafcd[_0x13e132(0x829)][_0x13e132(0x7b8)])?_0x2cafcd[_0x13e132(0x829)]['CENTER']:_0x28f562[_0x13e132(0x349)](_0x2cafcd[_0x13e132(0x829)][_0x13e132(0x699)])?_0x2cafcd[_0x13e132(0x829)][_0x13e132(0x699)]:_0x2cafcd['HorizontalAlign'][_0x13e132(0x355)];}function _0x436bc5(_0x3ae0ff){const _0x5e11a1=_0x57b2d2;var _0x557d0a;let {documentData:_0x31df2b,horizontalAlign:_0x19119c,horizontalAnchor:_0x41a6e8,isHorizontal:_0x3783b6,textRect:_0x1f0c42,textWrap:_0x1d8721}=_0x3ae0ff;if(_0x3783b6===!0x1||_0x1f0c42['width']<=0x0)return{'contentWidth':_0x1f0c42[_0x5e11a1(0x345)],'measureAsNoWrap':!0x1,'textRect':_0x1f0c42};let _0x3e35bd=Number['isFinite'](_0x3ae0ff[_0x5e11a1(0x7a8)])?Math[_0x5e11a1(0x729)](0x0,(_0x557d0a=_0x3ae0ff[_0x5e11a1(0x7a8)])==null?0x0:_0x557d0a):0x0,_0x663344=_0x362dbf(_0x31df2b,_0x19119c),_0x577f84=_0x663344[_0x5e11a1(0x345)]+_0x3e35bd;if(_0x41a6e8===_0x5e11a1(0x55c)&&_0x577f84>0x0&&_0x577f84<_0x1f0c42['width'])return{'contentWidth':_0x577f84,'measureAsNoWrap':_0x1d8721==='none','textRect':{..._0x1f0c42,'left':_0x1f0c42[_0x5e11a1(0x6b4)]+(_0x1f0c42['width']-_0x577f84)/0x2,'width':_0x577f84}};let _0x2b4f46=_0x1d8721===_0x5e11a1(0x5b0),_0x3b803e=(_0x2b4f46?_0x577f84-_0x3e35bd:(0x0,_0x482181[_0x5e11a1(0x539)])(_0x31df2b))+_0x3e35bd,_0x31194c=Math[_0x5e11a1(0x729)](_0x1f0c42['width'],_0x3b803e);if(_0x31194c===_0x1f0c42['width'])return{'contentWidth':_0x31194c,'measureAsNoWrap':_0x2b4f46,'textRect':_0x1f0c42};let _0x1cbe62=_0x31194c-_0x1f0c42['width'],_0xa2c4b1=_0x2b4f46?_0x2805fc(_0x31df2b,_0x19119c,_0x663344[_0x5e11a1(0x650)]):_0x19119c,_0xd47c75=_0x521f65(_0xa2c4b1)?_0x1f0c42[_0x5e11a1(0x6b4)]-_0x1cbe62:_0x1eadde(_0xa2c4b1)?_0x1f0c42[_0x5e11a1(0x6b4)]-_0x1cbe62/0x2:_0x1f0c42[_0x5e11a1(0x6b4)];return{'contentWidth':_0x31194c,'measureAsNoWrap':_0x2b4f46,'textRect':{..._0x1f0c42,'left':_0xd47c75,'width':_0x31194c}};}function _0x4ff123(_0x453e55){const _0x13d0ce=_0x57b2d2;var _0x29d1d5,_0x571a51;return((_0x29d1d5=_0x453e55==null||(_0x571a51=_0x453e55[_0x13d0ce(0x299)])==null?void 0x0:_0x571a51[_0x13d0ce(0x833)])==null?'':_0x29d1d5)[_0x13d0ce(0x370)](/[\r\n]/g,'')['length']===0x0;}function _0x387299(_0x4f29c5){const _0x509047=_0x57b2d2;var _0x2c8935,_0x3f9d52;let {documentData:_0x12de15,isTextBox:_0x3dd1e1,placeholder:_0x4b8bfe,text:_0x267998=''}=_0x4f29c5;if(!_0x3dd1e1||!_0x4b8bfe||_0x267998['length']>0x0||!_0x4ff123(_0x12de15))return;let _0x19f652=_0x12de15==null||(_0x2c8935=_0x12de15[_0x509047(0x1c3)])==null?void 0x0:_0x2c8935[_0x509047(0x491)];return{..._0x12de15,'id':(_0x3f9d52=_0x12de15==null?void 0x0:_0x12de15['id'])==null?'shape-text-placeholder':_0x3f9d52,'body':{'dataStream':_0x4b8bfe+'\x0d\x0a','paragraphs':[{'startIndex':_0x4b8bfe[_0x509047(0x1bf)],'paragraphId':(0x0,_0x2cafcd[_0x509047(0x4f6)])(new Set())}],'textRuns':[{'st':0x0,'ed':_0x4b8bfe[_0x509047(0x1bf)],'ts':{..._0x19f652,'cl':{'rgb':_0x509047(0x70c)}}}]},'documentStyle':{..._0x12de15==null?void 0x0:_0x12de15[_0x509047(0x1c3)]}};}let _0x3a9b8e=0.001;function _0x3252af(_0x544876,_0x52861e,_0x2ab08d,_0x13a8d4){const _0x130b9a=_0x57b2d2;return Math[_0x130b9a(0x469)](_0x2ab08d-_0x544876)>_0x3a9b8e?_0x544876+_0x52861e-_0x13a8d4:_0x544876;}function _0x43bc7c(_0x4c6b5c){const _0x58b5d7=_0x57b2d2;let {initialRect:_0x5dc41e,requestedRect:_0x4725f9,shapeData:_0x187043}=_0x4c6b5c,_0xd61b51=_0x187043['shapeText'];if(_0x187043[_0x58b5d7(0x2c8)]!==!0x0||!_0xd61b51)return null;let _0x14955e=_0xd61b51[_0x58b5d7(0x6c7)]!==!0x1,_0x2c5be9=Math[_0x58b5d7(0x469)]((_0x14955e?_0x4725f9['width']:_0x4725f9[_0x58b5d7(0x5fc)])-(_0x14955e?_0x5dc41e[_0x58b5d7(0x345)]:_0x5dc41e[_0x58b5d7(0x5fc)]))>_0x3a9b8e,_0x2a662b=Math[_0x58b5d7(0x469)]((_0x14955e?_0x4725f9[_0x58b5d7(0x5fc)]:_0x4725f9[_0x58b5d7(0x345)])-(_0x14955e?_0x5dc41e[_0x58b5d7(0x5fc)]:_0x5dc41e[_0x58b5d7(0x345)]))>_0x3a9b8e;if(!_0x2c5be9&&!_0x2a662b)return null;let _0x40c266=_0x14955e?_0x5dc41e['height']:_0x5dc41e[_0x58b5d7(0x345)],_0xcc3545=Number['isFinite'](_0x4c6b5c['naturalCrossSize'])&&_0x4c6b5c[_0x58b5d7(0x732)]>0x0?_0x4c6b5c[_0x58b5d7(0x732)]:_0x40c266;return{'rect':_0x14955e?{'left':_0x2c5be9?_0x4725f9[_0x58b5d7(0x6b4)]:_0x5dc41e[_0x58b5d7(0x6b4)],'top':_0x3252af(_0x5dc41e[_0x58b5d7(0x62a)],_0x5dc41e[_0x58b5d7(0x5fc)],_0x4725f9[_0x58b5d7(0x62a)],_0xcc3545),'width':_0x2c5be9?_0x4725f9[_0x58b5d7(0x345)]:_0x5dc41e[_0x58b5d7(0x345)],'height':_0xcc3545}:{'left':_0x3252af(_0x5dc41e[_0x58b5d7(0x6b4)],_0x5dc41e[_0x58b5d7(0x345)],_0x4725f9[_0x58b5d7(0x6b4)],_0xcc3545),'top':_0x2c5be9?_0x4725f9[_0x58b5d7(0x62a)]:_0x5dc41e[_0x58b5d7(0x62a)],'width':_0xcc3545,'height':_0x2c5be9?_0x4725f9['height']:_0x5dc41e[_0x58b5d7(0x5fc)]},'shapeData':_0x2c5be9?{..._0x187043,'shapeText':{..._0xd61b51,'autoFitType':_0x21428d[_0x58b5d7(0x32c)][_0x58b5d7(0x796)],'textWrap':'square'}}:_0x187043};}function _0x48356e(_0x49a266,_0x492a64){const _0x1efb3c=_0x57b2d2;return Math[_0x1efb3c(0x729)](Number['isFinite'](_0x49a266)?Math[_0x1efb3c(0x729)](0x1,_0x49a266):0x1,Number[_0x1efb3c(0x2ad)](_0x492a64)?Math[_0x1efb3c(0x729)](0x1,_0x492a64):0x1);}function _0x1f7230(_0x2dc508){const _0x4cc878=_0x57b2d2;try{var _0x32d7ed;let _0x411eab=_0x2dc508==null||(_0x32d7ed=_0x2dc508['getAbsolutePosition']())==null?void 0x0:_0x32d7ed[_0x4cc878(0x5fc)];return Number['isFinite'](_0x411eab)?_0x411eab:void 0x0;}catch{return;}}function _0x44a9d4(_0x25497f,_0x4d6047){const _0x44126e=_0x57b2d2;var _0x404cb1,_0x368efd;return Math[_0x44126e(0x469)](_0x25497f[_0x44126e(0x5ce)]-_0x4d6047['documentMarginTop'])<=0.001&&Math[_0x44126e(0x469)](_0x25497f['editorLeft']-_0x4d6047['editorLeft'])<=0.001&&Math['abs'](_0x25497f['editorTop']-_0x4d6047[_0x44126e(0x3c6)])<=0.001&&Math[_0x44126e(0x469)](_0x25497f['editorWidth']-_0x4d6047[_0x44126e(0x569)])<=0.001&&Math[_0x44126e(0x469)](_0x25497f[_0x44126e(0x341)]-_0x4d6047[_0x44126e(0x341)])<=0.001&&Math[_0x44126e(0x469)](((_0x404cb1=_0x25497f[_0x44126e(0x191)])==null?_0x25497f['editorWidth']:_0x404cb1)-((_0x368efd=_0x4d6047[_0x44126e(0x191)])==null?_0x4d6047[_0x44126e(0x569)]:_0x368efd))<=0.001;}function _0x72b847(_0x51d9c3,_0xd28f19){const _0x56ce17=_0x57b2d2;return _0x51d9c3&&!!(_0xd28f19!=null&&_0xd28f19[_0x56ce17(0x1bf)]);}function _0x3199c3(_0x112f9c){const _0x1cef89=_0x57b2d2;var _0x2b6dd0;let _0x255287=(0x0,_0x26fc1b['useDependency'])(_0x482181[_0x1cef89(0x3b0)])[_0x1cef89(0x6bc)](_0x112f9c),_0x1fb5d8=_0x255287==null?void 0x0:_0x255287[_0x1cef89(0x852)](_0x3bd019[_0x1cef89(0x5b8)]),_0x1177e9=(0x0,_0x26fc1b[_0x1cef89(0x162)])(_0x1fb5d8==null?void 0x0:_0x1fb5d8[_0x1cef89(0x478)]);return _0x72b847((_0x2b6dd0=_0x1fb5d8==null?void 0x0:_0x1fb5d8[_0x1cef89(0x884)])==null?!0x1:_0x2b6dd0,_0x1177e9==null?void 0x0:_0x1177e9[_0x1cef89(0x77b)]);}let _0x30eaf3=0xfa0;function _0x41cbcd(_0x14f623,_0x2cbf9e){const _0x2cb67a=_0x57b2d2;var _0x1907e6,_0x3a8185;let _0x5a1519=_0x26fc1b[_0x2cb67a(0x4a3)][_0x2cb67a(0x499)](_0xc24784=>Number(_0xc24784[_0x2cb67a(0x865)]))[_0x2cb67a(0x7aa)](_0x520b69=>Number[_0x2cb67a(0x2ad)](_0x520b69)&&_0x520b69>0x0)[_0x2cb67a(0x3ca)]((_0x4189f0,_0x5da23a)=>_0x4189f0-_0x5da23a),_0x19935f=Number['isFinite'](_0x14f623)?_0x14f623:0xe;if(_0x2cbf9e>0x0){var _0x40c637,_0x2f5e39;return(_0x40c637=(_0x2f5e39=_0x5a1519['find'](_0x3bfe63=>_0x3bfe63>_0x19935f))==null?_0x5a1519[_0x5a1519['length']-0x1]:_0x2f5e39)==null?_0x19935f:_0x40c637;}return(_0x1907e6=(_0x3a8185=[..._0x5a1519][_0x2cb67a(0x416)]()[_0x2cb67a(0x754)](_0x209862=>_0x209862<_0x19935f))==null?_0x5a1519[0x0]:_0x3a8185)==null?_0x19935f:_0x1907e6;}function _0x3c6ded(_0x394cbb){const _0x2cb648=_0x57b2d2;let {editorUnitId:_0xea126,editingParams:_0x12cdc2}=_0x394cbb;return _0x12cdc2?[_0xea126,_0x12cdc2['unitId'],_0x12cdc2[_0x2cb648(0x4fe)],_0x12cdc2[_0x2cb648(0x680)],_0x12cdc2[_0x2cb648(0x4a7)]][_0x2cb648(0x422)]('|'):null;}function _0x16a7ee(_0xb0fdd8,_0x48d266){const _0x567f2c=_0x57b2d2;return _0xb0fdd8?_0xb0fdd8 instanceof Node&&_0x48d266!=null&&_0x48d266['contains'](_0xb0fdd8)?!0x1:_0xb0fdd8 instanceof Element?!_0xb0fdd8[_0x567f2c(0x3bf)](_0x567f2c(0x89e)):!0x0:!0x0;}function _0x5f117a(_0x2e6bf5){const _0x1eeb40=_0x57b2d2;return _0x2e6bf5[_0x1eeb40(0x742)][_0x1eeb40(0x423)](_0x2e6bf5[_0x1eeb40(0x1e7)]);}function _0x324761(_0x5a39d4){const _0x137461=_0x57b2d2;var _0x49e1af,_0x3eeda3;let _0x167f01=_0x32c64c(_0x5a39d4[_0x137461(0x41f)]);return{..._0x167f01,'isHorizontal':(_0x49e1af=(_0x3eeda3=_0x5a39d4['isHorizontal'])==null?_0x167f01[_0x137461(0x6c7)]:_0x3eeda3)==null?!0x0:_0x49e1af,'dataModel':_0x5a39d4[_0x137461(0x53c)]};}function _0x396db3(_0x38b606,_0x29a743){const _0x1b94f7=_0x57b2d2;return{'id':_0x38b606,'body':{'dataStream':'\x0d\x0a','textRuns':[],'paragraphs':[{'startIndex':0x0,'paragraphId':(0x0,_0x2cafcd[_0x1b94f7(0x4f6)])(new Set())}]},'documentStyle':{'pageSize':{'width':_0x29a743,'height':0x1/0x0}}};}function _0x71376b(_0x4bd7b2){const _0x2310f0=_0x57b2d2;let _0x284be4=Number[_0x2310f0(0x2ad)](_0x4bd7b2[_0x2310f0(0x819)])?Math[_0x2310f0(0x729)](0x0,_0x4bd7b2['placeholderWidth']):0x0,_0x10fbcc=Math[_0x2310f0(0x729)](0x78,Math[_0x2310f0(0x50c)](_0x284be4+0x10));return _0x4bd7b2[_0x2310f0(0x6c7)]?{'width':_0x10fbcc,'height':0x28}:{'width':0x28,'height':_0x10fbcc};}function _0x38f98f(_0x544442,_0x28030e){const _0x2256f7=_0x57b2d2;return(0x0,_0x482181[_0x2256f7(0x415)])({..._0x544442,'body':{'dataStream':_0x28030e+'\x0d\x0a','paragraphs':[{'startIndex':_0x28030e[_0x2256f7(0x1bf)],'paragraphId':(0x0,_0x2cafcd[_0x2256f7(0x4f6)])(new Set())}],'textRuns':[]}});}function _0xd4bfb3(_0xcd2a6e){const _0x1a5b89=_0x57b2d2;let _0x32a3fb=Number[_0x1a5b89(0x2ad)](_0xcd2a6e['textRectWidth'])&&_0xcd2a6e[_0x1a5b89(0x84d)]>0x0?_0xcd2a6e[_0x1a5b89(0x84d)]:0x1;if(!_0xcd2a6e[_0x1a5b89(0x1c9)])return _0x32a3fb;let _0x4a73d1=_0xcd2a6e[_0x1a5b89(0x3a8)];return Math[_0x1a5b89(0x729)](_0x32a3fb,Number[_0x1a5b89(0x2ad)](_0x4a73d1)&&_0x4a73d1!==void 0x0&&_0x4a73d1>0x0?Math['max'](_0x4a73d1,_0x30eaf3):_0x30eaf3);}function _0x229cd6(_0x3b3f18){return(0x0,_0x482181['measureDocumentNoWrapTextWidth'])(_0x3b3f18);}function _0x3d8056(_0x4a6878){const _0x21e63a=_0x57b2d2;let _0x2aa7cf=Number[_0x21e63a(0x2ad)](_0x4a6878['textRectWidth'])&&_0x4a6878[_0x21e63a(0x84d)]>0x0?_0x4a6878[_0x21e63a(0x84d)]:0x1;if(!_0x4a6878[_0x21e63a(0x1c9)])return _0x2aa7cf;let _0x2055a1=Number[_0x21e63a(0x2ad)](_0x4a6878['actualWidth'])&&_0x4a6878[_0x21e63a(0x406)]>0x0?_0x4a6878[_0x21e63a(0x406)]:0x0,_0x680a7d=Number[_0x21e63a(0x2ad)](_0x4a6878[_0x21e63a(0x6cb)])&&_0x4a6878[_0x21e63a(0x6cb)]!==void 0x0&&_0x4a6878['measuredContentWidth']>0x0?_0x4a6878[_0x21e63a(0x6cb)]:void 0x0,_0x35ca12=_0x2055a1+0x2;return Math[_0x21e63a(0x729)](_0x2aa7cf,_0x680a7d==null?_0x35ca12:_0x680a7d);}function _0x3b3adb(_0x2f972c){const _0x1cd956=_0x57b2d2;if(!_0x2f972c[_0x1cd956(0x1c9)])return _0x2f972c['renderedContentWidth'];let _0x4b24e8=Number[_0x1cd956(0x2ad)](_0x2f972c[_0x1cd956(0x6cb)])&&_0x2f972c['measuredContentWidth']!==void 0x0&&_0x2f972c[_0x1cd956(0x6cb)]>0x0?_0x2f972c['measuredContentWidth']:void 0x0;return _0x2f972c[_0x1cd956(0x552)]&&_0x4b24e8!==void 0x0?_0x4b24e8:_0x2f972c[_0x1cd956(0x639)];}function _0x32f2ef(_0x3510ee){const _0x372461=_0x57b2d2;let _0x297e16=Number[_0x372461(0x2ad)](_0x3510ee['textRectWidth'])&&_0x3510ee['textRectWidth']>0x0?_0x3510ee[_0x372461(0x84d)]:0x1;if(!_0x3510ee[_0x372461(0x1c9)])return _0x297e16;let _0x243a38=Number[_0x372461(0x2ad)](_0x3510ee[_0x372461(0x639)])&&_0x3510ee[_0x372461(0x639)]>0x0?_0x3510ee[_0x372461(0x639)]:_0x297e16;return Math[_0x372461(0x729)](_0x297e16,_0x243a38);}function _0x5aaabb(_0x6260f7){const _0x265a05=_0x57b2d2;let _0x5d66ca=Number[_0x265a05(0x2ad)](_0x6260f7['editorWidth'])&&_0x6260f7[_0x265a05(0x569)]>0x0?_0x6260f7[_0x265a05(0x569)]:0x1;if(!_0x6260f7[_0x265a05(0x1c9)])return _0x5d66ca;let _0x4c26a8=Number[_0x265a05(0x2ad)](_0x6260f7[_0x265a05(0x6ec)])&&_0x6260f7[_0x265a05(0x6ec)]>0x0?_0x6260f7[_0x265a05(0x6ec)]:0x1,_0x57c629=Number[_0x265a05(0x2ad)](_0x6260f7[_0x265a05(0x3aa)])&&_0x6260f7[_0x265a05(0x3aa)]>0x0?_0x6260f7[_0x265a05(0x3aa)]:_0x5d66ca/_0x4c26a8;return Math[_0x265a05(0x729)](_0x5d66ca,_0x57c629*_0x4c26a8);}function _0xae43bb(_0x4851b2){const _0x27017d=_0x57b2d2;var _0x552495;let _0x2fba2f=(_0x552495=_0x4851b2['tolerance'])==null?0x1:_0x552495;return Math[_0x27017d(0x469)](_0x4851b2[_0x27017d(0x5e8)]-_0x4851b2[_0x27017d(0x414)])>_0x2fba2f||Math[_0x27017d(0x469)](_0x4851b2['nextHeight']-_0x4851b2[_0x27017d(0x584)])>_0x2fba2f;}function _0x2be56a(_0x3b7c92){const _0x1d36fb=_0x57b2d2;var _0x3a4249,_0xd26735;let {adapter:_0x2b0a3e,editingParams:_0x1ad0d6}=_0x3b7c92;return!_0x2b0a3e[_0x1d36fb(0x6d7)]||!_0x1ad0d6?!0x1:(_0x3a4249=(_0xd26735=_0x2b0a3e[_0x1d36fb(0x5c5)])==null?void 0x0:_0xd26735['call'](_0x2b0a3e,_0x1ad0d6))==null?!0x0:_0x3a4249;}function _0x384b67(_0x273f08){const _0x4dc040=_0x57b2d2;var _0x2cf29e;let {adapter:_0x1f5227,editingParams:_0x4d4139}=_0x273f08;return _0x4d4139?((_0x2cf29e=_0x1f5227[_0x4dc040(0x890)])==null?void 0x0:_0x2cf29e[_0x4dc040(0x211)](_0x1f5227,_0x4d4139))===!0x0:!0x1;}function _0x3ede3e(_0x199e68){const _0x1828e2=_0x57b2d2;return _0x199e68[_0x1828e2(0x4a6)]?_0x2cafcd[_0x1828e2(0x40b)][_0x1828e2(0x2cd)]:_0x199e68[_0x1828e2(0x5f9)];}function _0x1cc934(_0x4ce96e){const _0x2e3fc4=_0x57b2d2;let {actualHeight:_0x2f6086,contentWidth:_0x22a7cd,opticalVerticalOffset:_0x41ed36,scaleX:_0xfe8686,scaleY:_0x5c9b95,textRect:_0x1e32da,verticalAlign:_0x5176fc}=_0x4ce96e,_0x3928ec=_0x385aad({'contentHeight':_0x2f6086,'verticalAlign':_0x5176fc,'verticalOffset':_0x41ed36,'viewportHeight':Math[_0x2e3fc4(0x729)](0x1,_0x1e32da[_0x2e3fc4(0x5fc)])}),_0xee9cda=_0x3928ec[_0x2e3fc4(0x407)],_0x306465=Math[_0x2e3fc4(0x729)](0x1,_0x1e32da[_0x2e3fc4(0x345)],_0x22a7cd==null?_0x1e32da[_0x2e3fc4(0x345)]:_0x22a7cd);return{'documentMarginTop':_0x3928ec['marginTop'],'editorLeft':Math[_0x2e3fc4(0x729)](0x0,_0x1e32da[_0x2e3fc4(0x6b4)])*_0xfe8686,'editorTop':(Math[_0x2e3fc4(0x729)](0x0,_0x1e32da[_0x2e3fc4(0x62a)])+_0x3928ec['contentVerticalOffset'])*_0x5c9b95,'editorWidth':_0x306465*_0xfe8686,'editorHeight':_0xee9cda*_0x5c9b95,'pageHeight':_0xee9cda};}function _0x11dfc9(_0xbac1f0){const _0x4fc83a=_0x57b2d2;var _0x2207ea;let _0x439385=_0xbac1f0[_0x4fc83a(0x818)]===_0x2cafcd[_0x4fc83a(0x829)][_0x4fc83a(0x7b8)]?_0x4fc83a(0x55c):_0xbac1f0[_0x4fc83a(0x818)]===_0x2cafcd[_0x4fc83a(0x829)][_0x4fc83a(0x699)]?_0x4fc83a(0x58c):_0x4fc83a(0x6b4);return{'left':_0xbac1f0[_0x4fc83a(0x248)],'top':_0xbac1f0[_0x4fc83a(0x3c6)]+_0xbac1f0[_0x4fc83a(0x5ce)],'width':(_0x2207ea=_0xbac1f0[_0x4fc83a(0x191)])==null?_0xbac1f0[_0x4fc83a(0x569)]:_0x2207ea,'textAlign':_0x439385};}function _0x629c2e(_0x2033f9){const _0x3a330f=_0x57b2d2;let {allowShrink:_0x4bc0fe=!0x1,hostWidth:_0x5dc597,hostHeight:_0x34f1b7,textRect:_0x131630,contentWidth:_0x5ba6d1,contentHeight:_0x3c920c}=_0x2033f9,_0x2a74b7=Number[_0x3a330f(0x2ad)](_0x5dc597)&&_0x5dc597>0x0?_0x5dc597:0x1,_0x480303=Number[_0x3a330f(0x2ad)](_0x34f1b7)&&_0x34f1b7>0x0?_0x34f1b7:0x1,_0x39cb61=Math[_0x3a330f(0x729)](0x0,_0x131630[_0x3a330f(0x6b4)]),_0x1ea04f=Math[_0x3a330f(0x729)](0x0,_0x131630['top']),_0x2c12d7=Math[_0x3a330f(0x729)](0x1,_0x131630[_0x3a330f(0x345)]),_0x293d58=Math[_0x3a330f(0x729)](0x1,_0x131630[_0x3a330f(0x5fc)]),_0x3f1460=Math['max'](0x0,_0x2a74b7-_0x39cb61-_0x2c12d7),_0x5f051d=Math['max'](0x0,_0x480303-_0x1ea04f-_0x293d58),_0xec8ff2=Math[_0x3a330f(0x729)](0x1,_0x4bc0fe?_0x5ba6d1:Math[_0x3a330f(0x729)](_0x2c12d7,_0x5ba6d1)),_0x7a2f4d=Math['max'](0x1,_0x4bc0fe?_0x3c920c:Math[_0x3a330f(0x729)](_0x293d58,_0x3c920c)),_0x7b9cc1=Math[_0x3a330f(0x50c)](_0x39cb61+_0xec8ff2+_0x3f1460),_0x3b7fa7=Math[_0x3a330f(0x50c)](_0x1ea04f+_0x7a2f4d+_0x5f051d);return{'width':_0x4bc0fe?_0x7b9cc1:Math['max'](_0x2a74b7,_0x7b9cc1),'height':_0x4bc0fe?_0x3b7fa7:Math[_0x3a330f(0x729)](_0x480303,_0x3b7fa7)};}function _0x11a37b(_0x56634b){const _0x45fc9d=_0x57b2d2;let _0xc0d589=Math['max'](0x1,_0x56634b[_0x45fc9d(0x66d)]),_0x409db0=Math[_0x45fc9d(0x729)](0x1,_0x56634b[_0x45fc9d(0x265)]);return _0x56634b[_0x45fc9d(0x89f)]==='width'?{'width':_0xc0d589,'height':_0x409db0}:{'width':_0x409db0,'height':_0xc0d589};}function _0x119c1a(_0x310f75,_0x540db9,_0xcf2d6f,_0x58b86e){const _0x56ae41=_0x57b2d2;return{'top':_0x58b86e===void 0x0?0x0:_0x540db9,'left':_0xcf2d6f===void 0x0?0x0:_0x310f75,'width':_0xcf2d6f==null?_0x310f75:_0xcf2d6f,'height':_0x58b86e==null?_0x540db9:_0x58b86e,'borderColor':'transparent','outlineColor':'transparent','backgroundColor':_0x56ae41(0x7fa)};}function _0x310c9c(_0x188f8c,_0x48f080){const _0x845de9=_0x57b2d2;var _0x10fb0f;if(!_0x188f8c)return;_0x188f8c[_0x845de9(0x70a)][_0x845de9(0x6b4)]=_0x48f080[_0x845de9(0x248)]+'px',_0x188f8c[_0x845de9(0x70a)]['top']=_0x48f080[_0x845de9(0x3c6)]+'px';let _0xf0c4b2=(_0x10fb0f=_0x48f080[_0x845de9(0x191)])==null?_0x48f080[_0x845de9(0x569)]:_0x10fb0f;_0x188f8c[_0x845de9(0x70a)]['width']=_0xf0c4b2+'px',_0x188f8c[_0x845de9(0x70a)]['height']=Math['max'](0x1,_0x48f080[_0x845de9(0x341)])+'px';}function _0x17d990(_0x27026d,..._0x17a8f3){const _0x3e237a=_0x57b2d2;_0x27026d[_0x3e237a(0x281)](..._0x17a8f3),_0x27026d[_0x3e237a(0x86f)]();}function _0x370852(_0xf4defa){const _0x34b05f=_0x57b2d2;return _0xf4defa[_0x34b05f(0x62f)]()?_0xf4defa[_0x34b05f(0x3a7)]():null;}function _0x413070(_0x14b6f3){const _0x443bc8=_0x57b2d2;var _0x3d4491,_0x13d572;let _0x256c70=_0x14b6f3==null||(_0x3d4491=_0x14b6f3[_0x443bc8(0x401)])==null||(_0x13d572=_0x3d4491[_0x443bc8(0x6b1)])==null?void 0x0:_0x13d572['call'](_0x3d4491);_0x256c70&&(_0x256c70[_0x443bc8(0x70a)][_0x443bc8(0x864)]=_0x443bc8(0x7fa));}function _0x3c1b72(_0x5754c9){const _0x3452ac=_0x57b2d2;var _0x1d70a1,_0x5a30d9;let _0xa0f559=_0x7a12a9=>{const _0x223a05=_0x4293;if(!_0x7a12a9||typeof _0x7a12a9!='object')return;let _0x589b20=_0x7a12a9;_0x589b20['pageMarginLeft']!==void 0x0&&(_0x589b20[_0x223a05(0x87e)]=0x0),_0x589b20[_0x223a05(0x88c)]!==void 0x0&&(_0x589b20['pageMarginTop']=0x0);};_0xa0f559(_0x5754c9==null?void 0x0:_0x5754c9[_0x3452ac(0x85f)]),_0x5754c9==null||(_0x1d70a1=_0x5754c9[_0x3452ac(0x582)])==null||(_0x5a30d9=_0x1d70a1[_0x3452ac(0x4ea)])==null||_0x5a30d9[_0x3452ac(0x211)](_0x1d70a1,_0xa0f559);}function _0x579c6d(_0x39b88a){const _0xfef95e=_0x57b2d2;var _0x5e648b,_0x501256,_0x4d0acd,_0x3f3050;_0x39b88a==null||(_0x5e648b=_0x39b88a['mainComponent'])==null||(_0x501256=_0x5e648b['makeDirty'])==null||_0x501256['call'](_0x5e648b,!0x0);let _0xc40716=_0x39b88a==null?void 0x0:_0x39b88a[_0xfef95e(0x229)];_0xc40716==null||(_0x4d0acd=_0xc40716[_0xfef95e(0x23f)])==null||_0x4d0acd['call'](_0xc40716,!0x0),_0xc40716==null||(_0x3f3050=_0xc40716[_0xfef95e(0x7c8)])==null||_0x3f3050[_0xfef95e(0x211)](_0xc40716);}function _0x2044f7(_0x5e0f56,_0x45a57e,_0x2c2a4c={}){const _0x4404fc=_0x57b2d2;let _0x35b198=_0x26fc1b['MetaKeys'][_0x4404fc(0x438)],_0x469770=_0x26fc1b['MetaKeys']['CTRL_COMMAND']|_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x767)];return{'keyCodes':[..._0x2c2a4c[_0x4404fc(0x835)]?[{'keyCode':_0x26fc1b['KeyCode'][_0x4404fc(0x74d)]},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['ENTER'],'metaKey':_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x767)]},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['ENTER'],'metaKey':_0x35b198}]:[{'keyCode':_0x26fc1b[_0x4404fc(0x20f)][_0x4404fc(0x74d)]}],{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['ESC']},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)][_0x4404fc(0x213)]},{'keyCode':_0x26fc1b['KeyCode'][_0x4404fc(0x4c4)]},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['A'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['B'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['I'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b['KeyCode']['U'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['X'],'metaKey':_0x469770},{'keyCode':_0x26fc1b['KeyCode'][_0x4404fc(0x514)],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)][_0x4404fc(0x5c1)],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['PERIOD'],'metaKey':_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x35f)]|_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x767)]},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['COMMA'],'metaKey':_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x35f)]|_0x26fc1b[_0x4404fc(0x49b)][_0x4404fc(0x767)]},{'keyCode':_0x26fc1b['KeyCode']['K'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['L'],'metaKey':_0x469770},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['R'],'metaKey':_0x469770},{'keyCode':_0x26fc1b['KeyCode']['E'],'metaKey':_0x469770},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['J'],'metaKey':_0x469770},{'keyCode':_0x26fc1b['KeyCode'][_0x4404fc(0x5c1)],'metaKey':_0x469770},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['Digit7'],'metaKey':_0x469770},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['Digit8'],'metaKey':_0x469770},{'keyCode':_0x26fc1b['KeyCode']['Z'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b[_0x4404fc(0x20f)]['Y'],'metaKey':_0x35b198},{'keyCode':_0x26fc1b['KeyCode']['Z'],'metaKey':_0x469770}],'handler':(_0x111730,_0x324fc8)=>{const _0xa53090=_0x4404fc;switch(_0x111730+':'+(_0x324fc8==null?0x0:_0x324fc8)){case _0x26fc1b[_0xa53090(0x20f)]['ESC']+':0':var _0x59df10;(_0x59df10=_0x2c2a4c[_0xa53090(0x8a1)])==null||_0x59df10[_0xa53090(0x211)](_0x2c2a4c);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x74d)]+':0':if(_0x2c2a4c[_0xa53090(0x835)]){var _0x53370b;(_0x53370b=_0x2c2a4c[_0xa53090(0x724)])==null||_0x53370b['call'](_0x2c2a4c);}else _0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x4cc)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x74d)]+':'+_0x26fc1b[_0xa53090(0x49b)]['SHIFT']:case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x74d)]+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019['BreakLineCommand']['id']);break;case _0x26fc1b['KeyCode'][_0xa53090(0x213)]+':0':_0x5e0f56['executeCommand'](_0x3bd019[_0xa53090(0x6cd)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x4c4)]+':0':_0x5e0f56[_0xa53090(0x893)](_0x3bd019['DeleteRightCommand']['id']);break;case _0x26fc1b['KeyCode']['A']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x86c)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['B']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x44d)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['I']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x4f3)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['U']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x327)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['X']+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x1ae)]['id']);break;case _0x26fc1b['KeyCode'][_0xa53090(0x514)]+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019['SetInlineFormatSubscriptCommand']['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['PERIOD']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x3e9)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x5c1)]+':'+(_0x26fc1b[_0xa53090(0x49b)][_0xa53090(0x35f)]|_0x26fc1b[_0xa53090(0x49b)][_0xa53090(0x767)]):_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x6b7)]['id'],{'value':_0x41cbcd(_0x2c2a4c[_0xa53090(0x21c)],0x1)});break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x514)]+':'+(_0x26fc1b['MetaKeys'][_0xa53090(0x35f)]|_0x26fc1b['MetaKeys'][_0xa53090(0x767)]):_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x6b7)]['id'],{'value':_0x41cbcd(_0x2c2a4c[_0xa53090(0x21c)],-0x1)});break;case _0x26fc1b[_0xa53090(0x20f)]['K']+':'+_0x35b198:_0x5e0f56[_0xa53090(0x893)](_0xa53090(0x4c2));break;case _0x26fc1b[_0xa53090(0x20f)]['L']+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019['AlignLeftCommand']['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['R']+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x67a)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['E']+':'+_0x469770:_0x5e0f56['executeCommand'](_0x3bd019[_0xa53090(0x83c)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['J']+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019['AlignJustifyCommand']['id']);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x5c1)]+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0xc3d1d0);break;case _0x26fc1b[_0xa53090(0x20f)][_0xa53090(0x1dc)]+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019[_0xa53090(0x3e6)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['Digit8']+':'+_0x469770:_0x5e0f56[_0xa53090(0x893)](_0x3bd019['BulletListCommand']['id']);break;case _0x26fc1b['KeyCode']['Z']+':'+_0x35b198:_0x45a57e?_0x45a57e(_0x2cafcd['UndoCommand']['id']):_0x5e0f56[_0xa53090(0x893)](_0x2cafcd[_0xa53090(0x7d7)]['id']);break;case _0x26fc1b[_0xa53090(0x20f)]['Y']+':'+_0x35b198:case _0x26fc1b[_0xa53090(0x20f)]['Z']+':'+_0x469770:_0x45a57e?_0x45a57e(_0x2cafcd['RedoCommand']['id']):_0x5e0f56[_0xa53090(0x893)](_0x2cafcd[_0xa53090(0x3e2)]['id']);break;}}};}let _0x275b45=function(_0x5e8508){const _0x21879b=_0x57b2d2;var _0xe50802,_0x3adf42,_0xd20d17;let {adapter:_0x593b32,containerWidth:_0x4bdbe5,containerHeight:_0x391ce2,editingParams:_0x4e719a,editingService:_0x3754b4,editorUnitId:_0x305e72,scaleX:_0x26a427,scaleY:_0xb060e,verticalAlignCommandId:_0x1c5daa}=_0x5e8508,_0x361452=_0x26a427||0x1,_0x5aba34=_0xb060e||0x1,_0x1e93a2=(0x0,_0x26fc1b[_0x21879b(0x755)])(_0x3bd019[_0x21879b(0x573)]),_0x6f5580=(0x0,_0x26fc1b['useDependency'])(_0x482181['IRenderManagerService']),_0x32f46d=(0x0,_0x26fc1b[_0x21879b(0x755)])(_0x2cafcd[_0x21879b(0x6a8)]),_0x58b9b4=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd['ICommandService']),_0x3aa919=(0x0,_0x26fc1b[_0x21879b(0x755)])(_0x425583[_0x21879b(0x1b6)]),_0x499da7=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd['LocaleService']),_0x4c4b9c=(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>_0x499da7['t']('shape-editor-ui.textEditor.placeholder'),[(0x0,_0x26fc1b['useObservable'])(()=>_0x499da7[_0x21879b(0x533)],_0x499da7[_0x21879b(0x18f)](),!0x1,[_0x499da7]),_0x499da7]),_0x6c9f84=(0x0,_0x26fc1b[_0x21879b(0x162)])(_0x3754b4[_0x21879b(0x59e)]),_0x816cc9=(0x0,_0x55b95c[_0x21879b(0x7b5)])(!0x1),_0x43b19b=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0xde1ba8=(0x0,_0x55b95c['useRef'])(null),_0x4ec338=(0x0,_0x55b95c['useRef'])(null),_0x15bae5=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0x56de48=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0x5549c7=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0x3d278a=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0x52dda0=(0x0,_0x55b95c[_0x21879b(0x7b5)])({'width':0x0,'height':0x0}),_0x173055=(0x0,_0x55b95c[_0x21879b(0x7b5)])(null),_0x1ee288=(0x0,_0x55b95c[_0x21879b(0x7b5)])(()=>{}),_0x160b01=(0x0,_0x55b95c[_0x21879b(0x7b5)])(()=>{}),_0x19ff5b=(0x0,_0x55b95c['useRef'])(()=>{}),[_0x46e82f,_0x4afffd]=(0x0,_0x55b95c[_0x21879b(0x614)])({'documentMarginTop':0x0,'editorLeft':0x0,'editorTop':0x0,'editorWidth':_0x4bdbe5,'editorHeight':_0x391ce2});_0x816cc9[_0x21879b(0x654)]=!!_0x6c9f84;let _0x4e6bfc=(0x0,_0x55b95c[_0x21879b(0x288)])(_0x53930f=>{const _0x2124fb=_0x21879b;_0x310c9c(_0xde1ba8[_0x2124fb(0x654)],_0x53930f),queueMicrotask(()=>{_0x4afffd(_0x278577=>_0x44a9d4(_0x278577,_0x53930f)?_0x278577:_0x53930f);});},[]),_0x14c11b=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>_0x32f46d[_0x21879b(0x67f)](_0x305e72,_0x2cafcd[_0x21879b(0x302)]['UNIVER_DOC']),[_0x305e72,_0x32f46d]),_0x3f7c12=(0x0,_0x55b95c['useCallback'])(()=>{const _0x324c68=_0x21879b;var _0x5c3df7;let _0x390544=_0x361452,_0x2637b7=_0x5aba34;if(!_0x4e719a)return{'scaleAdjust':0x1,'renderScaleX':_0x390544,'renderScaleY':_0x2637b7};let _0x7eb163=_0x6f5580[_0x324c68(0x6bc)](_0x4e719a[_0x324c68(0x848)]),_0x49fa7a=_0x7eb163==null?void 0x0:_0x7eb163[_0x324c68(0x229)]['getAncestorScale'](),_0x11c6c0=_0x7eb163==null?void 0x0:_0x7eb163['engine'][_0x324c68(0x6b1)](),_0x4db2df=_0x11c6c0?Number[_0x324c68(0x1bb)](_0x11c6c0[_0x324c68(0x70a)]['width']||''):0x0,_0x12d339=(_0x5c3df7=_0x11c6c0==null?void 0x0:_0x11c6c0[_0x324c68(0x782)]()['width'])==null?0x0:_0x5c3df7,_0x4fc0c3=_0x4db2df>0x0&&_0x12d339>0x0?_0x12d339/_0x4db2df:0x1;return{'scaleAdjust':Number[_0x324c68(0x2ad)](_0x4fc0c3)&&_0x4fc0c3>0x0?_0x4fc0c3:0x1,'renderScaleX':(_0x49fa7a==null?void 0x0:_0x49fa7a['scaleX'])||_0x390544,'renderScaleY':(_0x49fa7a==null?void 0x0:_0x49fa7a[_0x324c68(0x528)])||_0x2637b7};},[_0x361452,_0x5aba34,_0x4e719a,_0x6f5580]),_0x54a0b4=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>{const _0x14d670=_0x21879b;if(!_0x4e719a)return{'left':0x0,'top':0x0,'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34};let {unitId:_0x366885,subUnitId:_0x12db4e,shapeId:_0x4ed5b3}=_0x4e719a,_0xff01c7=_0x593b32[_0x14d670(0x737)](_0x366885,_0x12db4e,_0x4ed5b3);return _0xff01c7?_0x5f117a({'hostRect':{'left':0x0,'top':0x0,'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34},'shapeModel':_0xff01c7}):{'left':0x0,'top':0x0,'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34};},[_0x593b32,_0x4e719a,_0x4bdbe5,_0x391ce2,_0x361452,_0x5aba34]),_0x5db3e9=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>{const _0x363bb3=_0x21879b;var _0x171564,_0x2f278a;if(!_0x4e719a)return null;let {unitId:_0x361e2b,subUnitId:_0x1c8c3e,shapeId:_0x45f2e2}=_0x4e719a,_0x579742=_0x593b32[_0x363bb3(0x737)](_0x361e2b,_0x1c8c3e,_0x45f2e2);if(!_0x579742)return null;let _0x7d6ef4=(_0x171564=_0x593b32[_0x363bb3(0x7f6)])==null?void 0x0:_0x171564[_0x363bb3(0x211)](_0x593b32,_0x361e2b,_0x1c8c3e,_0x45f2e2),_0x5be7e5=_0x579742[_0x363bb3(0x19a)]();if(!_0x5be7e5)return null;let _0x5137cd=_0x26adf5(_0x7d6ef4,_0x5be7e5),_0x4dc823=(_0x2f278a=_0x593b32[_0x363bb3(0x3a9)](_0x361e2b,_0x1c8c3e,_0x45f2e2))==null?{'angle':0x0,'flipX':!0x1,'flipY':!0x1}:_0x2f278a,_0x128e87={'left':0x0,'top':0x0,'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34},_0x532a67=_0x579742[_0x363bb3(0x423)](_0x128e87),_0x4cbdfa,_0x4eee75=_0x2cafcd[_0x363bb3(0x40b)][_0x363bb3(0x2cd)],_0x42e4d1=_0x2cafcd[_0x363bb3(0x829)][_0x363bb3(0x355)];if('dataModel'in _0x5be7e5&&_0x5be7e5['dataModel']){var _0x349fdf,_0x387074,_0x49e2ea,_0x4e0557,_0x173c30,_0x3717b3;let _0x16150b=_0x18cbac(_0x5be7e5[_0x363bb3(0x53c)]);_0x16150b!=null&&_0x16150b[_0x363bb3(0x32a)]&&(_0x4cbdfa=_0x16150b[_0x363bb3(0x32a)]),_0x4eee75=(_0x349fdf=(_0x387074=_0x16150b==null?void 0x0:_0x16150b['va'])==null?_0x4cbdfa==null||(_0x49e2ea=_0x4cbdfa[_0x363bb3(0x1c3)])==null||(_0x49e2ea=_0x49e2ea[_0x363bb3(0x6d6)])==null?void 0x0:_0x49e2ea[_0x363bb3(0x5f9)]:_0x387074)==null?_0x2cafcd[_0x363bb3(0x40b)]['TOP']:_0x349fdf,_0x42e4d1=(_0x4e0557=(_0x173c30=_0x16150b==null?void 0x0:_0x16150b['ha'])==null?_0x4cbdfa==null||(_0x3717b3=_0x4cbdfa[_0x363bb3(0x1c3)])==null||(_0x3717b3=_0x3717b3[_0x363bb3(0x6d6)])==null?void 0x0:_0x3717b3[_0x363bb3(0x818)]:_0x173c30)==null?_0x2cafcd[_0x363bb3(0x829)][_0x363bb3(0x355)]:_0x4e0557;}let _0x105c91=(0x0,_0x21428d[_0x363bb3(0x3d7)])(_0x5137cd),_0x1449f2=_0x105c91[_0x363bb3(0x5c3)]==='center'?_0x436bc5({'documentData':_0x4cbdfa,'horizontalAlign':_0x42e4d1,'horizontalAnchor':_0x105c91[_0x363bb3(0x5c3)],'isHorizontal':_0x5be7e5[_0x363bb3(0x6c7)],'textRect':_0x532a67,'textWrap':_0x105c91[_0x363bb3(0x6d8)],'widthBuffer':0x2})[_0x363bb3(0x22a)]:_0x532a67;return{'shapeText':_0x5be7e5,'bodyBehavior':_0x105c91,'doc':_0x4cbdfa,'verticalAlign':_0x4eee75,'horizontalAlign':_0x42e4d1,'wrapStrategy':_0x30a71b(_0x5137cd),'autoFitNoWrap':_0x4decc8(_0x5137cd),'textRect':_0x1449f2,'transform':_0x4dc823,'isHorizontal':_0x5be7e5[_0x363bb3(0x6c7)],'isTextBox':_0x5137cd['isTextBox']===!0x0};},[_0x593b32,_0x4e719a,_0x4bdbe5,_0x391ce2,_0x361452,_0x5aba34]),_0x5ed298=(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>{const _0x1dc47f=_0x21879b;let _0x2029b6=_0x5db3e9();if(_0x2029b6!=null&&_0x2029b6['doc'])return _0x33580d(_0x2029b6[_0x1dc47f(0x32a)],{'bodyBehavior':_0x2029b6[_0x1dc47f(0x1b8)],'isHorizontal':_0x2029b6[_0x1dc47f(0x6c7)],'textRect':_0x2029b6[_0x1dc47f(0x22a)],'verticalAlign':_0x2029b6[_0x1dc47f(0x5f9)],'horizontalAlign':_0x2029b6['horizontalAlign'],'wrapStrategy':_0x2029b6[_0x1dc47f(0x766)]});let _0x5e543b=_0x396db3(_0x305e72,_0x4bdbe5/_0x361452);return _0x2029b6?_0x33580d(_0x5e543b,{'bodyBehavior':_0x2029b6[_0x1dc47f(0x1b8)],'isHorizontal':_0x2029b6[_0x1dc47f(0x6c7)],'textRect':_0x2029b6[_0x1dc47f(0x22a)],'verticalAlign':_0x2029b6[_0x1dc47f(0x5f9)],'horizontalAlign':_0x2029b6['horizontalAlign'],'wrapStrategy':_0x2029b6['wrapStrategy']}):_0x5e543b;},[_0x5db3e9,_0x4bdbe5,_0x361452]),[_0x3fe9f3,_0x4978bb]=(0x0,_0x55b95c[_0x21879b(0x614)])(()=>_0x4ff123(_0x5ed298)),_0x236566=(0x0,_0x3bd019[_0x21879b(0x6d9)])({'editorId':_0x305e72,'initialValue':_0x5ed298,'container':_0xde1ba8,'autoFocus':!0x1,'canvasStyle':{'backgroundColor':'transparent'},'isSingle':!0x1});(0x0,_0x55b95c[_0x21879b(0x877)])(()=>{const _0x36ad22=_0x21879b;if(!_0x236566)return;let _0x4eaac9=_0x6f5580[_0x36ad22(0x6bc)](_0x305e72);_0x413070(_0x4eaac9),_0x3c1b72(_0x4eaac9);},[_0x236566,_0x305e72,_0x6f5580]);let _0xc81e73=_0x3199c3(_0x305e72),_0x49ddbd=_0x4e719a?(_0xe50802=(_0x3adf42=_0x593b32[_0x21879b(0x835)])==null?void 0x0:_0x3adf42['call'](_0x593b32,_0x4e719a))==null?!0x1:_0xe50802:!0x1,_0xc844f1=(_0xd20d17=_0x5ed298[_0x21879b(0x1c3)])==null||(_0xd20d17=_0xd20d17['textStyle'])==null?void 0x0:_0xd20d17['fs'];(0x0,_0x3bd019[_0x21879b(0x6fd)])(_0xc81e73,(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>_0x2044f7(_0x58b9b4,_0x59d4a8=>{(0x0,_0x3bd019['executeEditorUndoRedoCommand'])({'commandId':_0x59d4a8,'commandService':_0x58b9b4,'editorUnitId':_0x305e72,'univerInstanceService':_0x32f46d});},{'commitOnEnter':_0x49ddbd,'cancel':()=>{const _0x39b8b1=_0x21879b;if(_0x3754b4[_0x39b8b1(0x4e6)]){_0x3754b4[_0x39b8b1(0x4e6)]();return;}_0x3754b4[_0x39b8b1(0x346)](null);},'commit':()=>{const _0x20d913=_0x21879b;if(_0x3754b4[_0x20d913(0x6e0)]){_0x3754b4[_0x20d913(0x6e0)]();return;}_0x3754b4[_0x20d913(0x346)](null);},'currentFontSize':_0xc844f1}),[_0x58b9b4,_0x49ddbd,_0xc844f1,_0x3754b4,_0x305e72,_0x32f46d]),_0x236566),(0x0,_0x3bd019[_0x21879b(0x6b3)])(_0xc81e73,!0x1,_0x236566),(0x0,_0x55b95c['useEffect'])(()=>{const _0x5770bc=_0x21879b;if(!(_0x4e719a!=null&&_0x4e719a[_0x5770bc(0x85d)]))return;let _0x2e2d81=_0x2f1810=>{const _0x45c47a=_0x5770bc;if(_0x2f1810[_0x45c47a(0x894)]===0x0&&_0x16a7ee(_0x2f1810[_0x45c47a(0x1f3)],_0x43b19b['current'])){if(_0x3754b4['completeEditing']){_0x3754b4[_0x45c47a(0x6e0)](_0x2f1810);return;}_0x3754b4[_0x45c47a(0x346)](null);}};return document[_0x5770bc(0x4ef)](_0x5770bc(0x56b),_0x2e2d81,!0x0),()=>{document['removeEventListener']('pointerdown',_0x2e2d81,!0x0);};},[_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x85d)],_0x3754b4]),(0x0,_0x55b95c['useEffect'])(()=>{const _0x5b96e0=_0x21879b;_0x52dda0[_0x5b96e0(0x654)]=_0x4e719a?{'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34}:{'width':0x0,'height':0x0};},[_0x4bdbe5,_0x391ce2,_0x361452,_0x5aba34,_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x848)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x4fe)],_0x4e719a==null?void 0x0:_0x4e719a['shapeId']]),(0x0,_0x55b95c['useEffect'])(()=>{const _0x274e6d=_0x21879b;_0x173055[_0x274e6d(0x654)]=null;},[_0x4e719a==null?void 0x0:_0x4e719a['unitId'],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x4fe)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x680)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x4a7)]]);let _0xa6e573=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>{const _0x29a9db=_0x21879b;let _0x43fffd=_0x173055[_0x29a9db(0x654)];if(_0x43fffd)return _0x173055[_0x29a9db(0x654)]=null,_0x52dda0['current']={'width':_0x43fffd[_0x29a9db(0x345)],'height':_0x43fffd[_0x29a9db(0x5fc)]},_0x43fffd;},[]),_0x3b2553=(0x0,_0x55b95c[_0x21879b(0x288)])((_0x8e1309=!0x0,_0x132ab9=!0x1)=>{const _0x51467f=_0x21879b;var _0xe6a5ea,_0x55223d,_0x284a78;if(!_0x236566)return;let _0x4c5140=_0x236566[_0x51467f(0x3ae)]()[_0x51467f(0x754)](_0x3987b4=>_0x3987b4[_0x51467f(0x64a)]),_0x3b8ca9=((_0xe6a5ea=(_0x55223d=_0x236566[_0x51467f(0x3a7)]()[_0x51467f(0x299)])==null?void 0x0:_0x55223d['dataStream']['length'])==null?0x2:_0xe6a5ea)-0x2,_0x561e2f=(_0x284a78=_0x4c5140==null?void 0x0:_0x4c5140[_0x51467f(0x8a0)])==null?_0x8e1309?_0x3b8ca9:null:_0x284a78;_0x561e2f!==null&&_0x236566[_0x51467f(0x7c4)]([{'startOffset':_0x561e2f,'endOffset':_0x561e2f}],_0x132ab9);},[_0x236566]);_0x160b01[_0x21879b(0x654)]=_0x3b2553;let _0x53ea7b=(0x0,_0x55b95c['useCallback'])(()=>{const _0xede380=_0x21879b;_0x56de48[_0xede380(0x654)]!==null&&(cancelAnimationFrame(_0x56de48['current']),_0x56de48[_0xede380(0x654)]=null),_0x56de48[_0xede380(0x654)]=requestAnimationFrame(()=>{_0x56de48['current']=null,_0x160b01['current'](!0x0,!0x0);});},[]),_0x349532=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>{const _0x1ba48a=_0x21879b;_0x5549c7[_0x1ba48a(0x654)]!==null&&(cancelAnimationFrame(_0x5549c7[_0x1ba48a(0x654)]),_0x5549c7['current']=null),_0x3d278a[_0x1ba48a(0x654)]!==null&&(window['clearTimeout'](_0x3d278a['current']),_0x3d278a[_0x1ba48a(0x654)]=null);},[]),_0xfa55bd=(0x0,_0x55b95c[_0x21879b(0x288)])(()=>{const _0x564a96=_0x21879b;var _0x56dac3,_0xa60caf,_0x996f0f,_0x5b5f3e,_0xf719a,_0x39947e,_0x3a58e6,_0x48906a,_0x31a5f5;if(!_0x236566)return;let _0x125a01=_0x6f5580[_0x564a96(0x6bc)](_0x305e72);_0x3c1b72(_0x125a01);let _0x36e012=_0x125a01==null?void 0x0:_0x125a01[_0x564a96(0x852)](_0x425583[_0x564a96(0x5d6)]);if(!_0x36e012)return;let _0x47043e=_0x36e012[_0x564a96(0x139)](),_0x25865f=_0x14c11b(),{renderScaleX:_0xd32701,renderScaleY:_0x5c4efe,scaleAdjust:_0xa9dfc9}=_0x3f7c12(),_0x56e7d2=_0x5db3e9(),_0x4c2e47=(_0x56dac3=_0x56e7d2==null?void 0x0:_0x56e7d2[_0x564a96(0x5f9)])==null?_0x2cafcd['VerticalAlign'][_0x564a96(0x2cd)]:_0x56dac3,_0x1a55f3=(_0xa60caf=_0x56e7d2==null?void 0x0:_0x56e7d2['horizontalAlign'])==null?_0x2cafcd[_0x564a96(0x829)]['LEFT']:_0xa60caf,_0xa636d5=(_0x996f0f=_0x56e7d2==null?void 0x0:_0x56e7d2[_0x564a96(0x766)])==null?_0x2cafcd[_0x564a96(0x4dc)][_0x564a96(0x199)]:_0x996f0f,_0x546877=(_0x5b5f3e=_0x56e7d2==null?void 0x0:_0x56e7d2['autoFitNoWrap'])==null?!0x1:_0x5b5f3e,_0x4299b2=(_0xf719a=_0x54a0b4())==null?{'left':0x0,'top':0x0,'width':_0x4bdbe5/_0x361452,'height':_0x391ce2/_0x5aba34}:_0xf719a,_0x280503=_0x4817a3({'shapeText':_0x56e7d2==null?void 0x0:_0x56e7d2[_0x564a96(0x41f)]}),_0x1bf3ad=_0x25865f==null?void 0x0:_0x25865f['getSnapshot'](),_0x484366=_0x4ff123(_0x1bf3ad),_0x1c44d1=_0x280503==='width'?_0x4299b2[_0x564a96(0x345)]:_0x4299b2[_0x564a96(0x5fc)],_0x2d146e=_0x546877?_0x229cd6(_0x1bf3ad)+0x2:_0x1c44d1,_0x3b75c9=_0xd4bfb3({'autoFitNoWrap':_0x546877,'maxAutoFitWidth':_0x2d146e,'textRectWidth':_0x1c44d1}),_0x3f0c8a=!0x1;if(_0x25865f){var _0x55e51f;_0x3f0c8a=_0x23e314((_0x55e51f=_0x25865f['getSnapshot']()[_0x564a96(0x1c3)])==null||(_0x55e51f=_0x55e51f[_0x564a96(0x6d6)])==null?void 0x0:_0x55e51f[_0x564a96(0x24f)]),_0x25865f[_0x564a96(0x17b)](Math[_0x564a96(0x729)](_0xd32701,_0x5c4efe)),_0x25865f['updateDocumentStyle']({'marginLeft':0x0,'marginRight':0x0,'marginBottom':0x0,'pageSize':{'width':_0x3b75c9,'height':0x1/0x0}}),_0x25865f[_0x564a96(0x517)]({'verticalAlign':_0x3ede3e({'opticalVerticalAlign':_0x3f0c8a,'verticalAlign':_0x4c2e47}),'horizontalAlign':_0x1a55f3,'centerAngle':0x0,'vertexAngle':0x0,'wrapStrategy':_0xa636d5}),_0x25865f[_0x564a96(0x2bc)]({'t':0x0});}(_0x39947e=_0x47043e[_0x564a96(0x676)])==null||_0x39947e['call'](_0x47043e),_0x47043e[_0x564a96(0x27d)]();let {actualWidth:_0x40c986,actualHeight:_0x3c61b1}=_0x47043e[_0x564a96(0x5d5)](),_0x384590=_0x1f7230(_0x125a01==null||(_0x3a58e6=_0x125a01[_0x564a96(0x852)](_0x3bd019[_0x564a96(0x5b8)]))==null?void 0x0:_0x3a58e6[_0x564a96(0x30c)]()),_0x48abab=_0x48356e(_0x456b03(_0x47043e,_0x3c61b1),_0x384590),_0x569e0c=_0x3f0c8a?_0x44b17c(_0x47043e,_0x4299b2[_0x564a96(0x5fc)],_0x4c2e47):void 0x0,_0x2091cb=_0x3d8056({'actualWidth':_0x40c986,'autoFitNoWrap':_0x546877,'measuredContentWidth':_0x2d146e,'textRectWidth':_0x1c44d1}),_0x1f0450=_0x2be56a({'adapter':_0x593b32,'editingParams':_0x4e719a}),_0x3689d4=_0x11a37b({'flowAxis':_0x280503,'flowAxisLength':_0x3b3adb({'actualWidth':_0x40c986,'allowShrink':_0x1f0450,'autoFitNoWrap':_0x546877,'measuredContentWidth':_0x2d146e,'renderedContentWidth':_0x2091cb}),'crossAxisLength':_0x48abab}),_0x484552=_0x1cc934({'actualHeight':_0x48abab,'contentWidth':_0x2091cb,'opticalVerticalOffset':_0x569e0c,'scaleX':_0x361452,'scaleY':_0x5aba34,'textRect':_0x4299b2,'verticalAlign':_0x4c2e47}),_0x43ac5f=_0x4bdbe5/_0x361452,_0x373a35=_0x391ce2/_0x5aba34,_0x420028=_0x629c2e({'hostWidth':_0x43ac5f,'hostHeight':_0x373a35,'textRect':_0x4299b2,'contentWidth':_0x3689d4[_0x564a96(0x345)],'contentHeight':_0x3689d4['height'],'allowShrink':_0x1f0450}),_0x2e95b4=_0x56e7d2!=null&&_0x56e7d2['isTextBox']&&_0x484366?_0x71376b({'isHorizontal':_0x56e7d2[_0x564a96(0x6c7)],'placeholderWidth':_0x38f98f(_0x1bf3ad==null?_0x5ed298:_0x1bf3ad,_0x4c4b9c)}):null,_0x4f17f8=Math['ceil'](Math[_0x564a96(0x729)](_0x420028[_0x564a96(0x345)],(_0x48906a=_0x2e95b4==null?void 0x0:_0x2e95b4[_0x564a96(0x345)])==null?0x0:_0x48906a)),_0xd8f4d1=Math[_0x564a96(0x50c)](Math[_0x564a96(0x729)](_0x420028['height'],(_0x31a5f5=_0x2e95b4==null?void 0x0:_0x2e95b4[_0x564a96(0x5fc)])==null?0x0:_0x31a5f5)),_0x471613=_0x52dda0[_0x564a96(0x654)],_0x14ea2b=_0xae43bb({'nextWidth':_0x4f17f8,'nextHeight':_0xd8f4d1,'baselineWidth':_0x43ac5f,'baselineHeight':_0x373a35}),_0x196547=_0xae43bb({'nextWidth':_0x4f17f8,'nextHeight':_0xd8f4d1,'baselineWidth':_0x471613[_0x564a96(0x345)],'baselineHeight':_0x471613['height']}),_0x3e721f=_0x4e719a&&_0x593b32[_0x564a96(0x6d7)]&&_0x14ea2b&&_0x196547,_0x5adcc6=_0x384b67({'adapter':_0x593b32,'editingParams':_0x4e719a}),_0x338c69=_0xae43bb({'nextWidth':_0x43ac5f,'nextHeight':_0xd8f4d1,'baselineWidth':_0x43ac5f,'baselineHeight':_0x373a35}),_0x26c5d6=_0xae43bb({'nextWidth':_0x43ac5f,'nextHeight':_0xd8f4d1,'baselineWidth':_0x43ac5f,'baselineHeight':_0x471613[_0x564a96(0x5fc)]}),_0x593ae2=_0x4e719a&&_0x593b32[_0x564a96(0x450)]&&_0xd8f4d1>_0x373a35&&_0xd8f4d1>_0x471613['height']&&_0x338c69&&_0x26c5d6,_0x21d914=_0x5aaabb({'autoFitNoWrap':_0x546877,'editorWidth':_0x484552[_0x564a96(0x569)],'measurePageWidth':_0x3b75c9,'renderedContentWidth':_0x2091cb,'scaleX':_0x361452});if(_0x4e6bfc({'documentMarginTop':_0x484552[_0x564a96(0x5ce)]*_0x5aba34,'editorLeft':_0x484552[_0x564a96(0x248)],'editorTop':_0x484552[_0x564a96(0x3c6)],'editorWidth':_0x484552['editorWidth'],'editorHeight':_0x484552['editorHeight'],'editorSurfaceWidth':_0x21d914}),_0x25865f){let _0x34ef1e=_0x32f2ef({'autoFitNoWrap':_0x546877,'measurePageWidth':_0x3b75c9,'renderedContentWidth':_0x2091cb,'textRectWidth':_0x1c44d1});_0x25865f[_0x564a96(0x892)]({'marginLeft':0x0,'marginRight':0x0,'marginBottom':0x0,'pageSize':{'width':_0x34ef1e,'height':_0x484552[_0x564a96(0x3bd)]}}),_0x25865f[_0x564a96(0x2bc)]({'t':_0x484552[_0x564a96(0x5ce)]}),_0x47043e[_0x564a96(0x27d)]();}if(_0x125a01){_0x484552[_0x564a96(0x569)];let _0x6f12e=_0x484552[_0x564a96(0x341)];_0x125a01[_0x564a96(0x229)][_0x564a96(0x739)]({'width':_0x21d914*_0xa9dfc9/_0xd32701,'height':_0x6f12e*_0xa9dfc9/_0x5c4efe,'scaleX':_0xd32701*_0xa9dfc9,'scaleY':_0x5c4efe*_0xa9dfc9}),_0x125a01[_0x564a96(0x85f)]&&_0x125a01[_0x564a96(0x85f)]['resize'](_0x21d914*_0xa9dfc9/_0xd32701,_0x6f12e*_0xa9dfc9/_0x5c4efe),_0x579c6d(_0x125a01);}if(_0x5adcc6&&_0x4e719a&&_0x593b32[_0x564a96(0x6d7)]){var _0x4d1ee1;let _0x1394e6={'unitId':_0x4e719a[_0x564a96(0x848)],'subUnitId':_0x4e719a['subUnitId'],'shapeId':_0x4e719a[_0x564a96(0x680)],'width':_0x4f17f8,'height':_0xd8f4d1};_0x173055[_0x564a96(0x654)]=_0x1394e6,(_0x4d1ee1=_0x593b32['previewHostSize'])==null||_0x4d1ee1[_0x564a96(0x211)](_0x593b32,_0x1394e6);}if(_0x3e721f&&_0x4e719a&&_0x593b32['updateHostSize']){if(_0x5adcc6)return;_0x173055[_0x564a96(0x654)]=null,_0x52dda0[_0x564a96(0x654)]={'width':_0x4f17f8,'height':_0xd8f4d1},_0x593b32['updateHostSize']({'unitId':_0x4e719a[_0x564a96(0x848)],'subUnitId':_0x4e719a[_0x564a96(0x4fe)],'shapeId':_0x4e719a['shapeId'],'width':_0x4f17f8,'height':_0xd8f4d1}),_0x53ea7b();}else{if(_0x593ae2&&_0x4e719a&&_0x593b32[_0x564a96(0x450)]){if(_0x5adcc6)return;_0x173055[_0x564a96(0x654)]=null,_0x52dda0[_0x564a96(0x654)]={'width':_0x43ac5f,'height':_0xd8f4d1},_0x593b32[_0x564a96(0x450)]({'unitId':_0x4e719a[_0x564a96(0x848)],'subUnitId':_0x4e719a[_0x564a96(0x4fe)],'shapeId':_0x4e719a[_0x564a96(0x680)],'height':_0xd8f4d1}),_0x53ea7b();}}},[_0x236566,_0x593b32,_0x4e719a,_0x6f5580,_0x14c11b,_0x3f7c12,_0x5db3e9,_0x54a0b4,_0x4bdbe5,_0x391ce2,_0x361452,_0x5aba34,_0x5ed298,_0x4c4b9c,_0x53ea7b,_0x4e6bfc]);_0x1ee288[_0x21879b(0x654)]=_0xfa55bd;let _0x5362b6=(0x0,_0x55b95c[_0x21879b(0x288)])((_0x59b1a7=!0x1)=>{_0x349532(),_0x5549c7['current']=requestAnimationFrame(()=>{const _0x219766=_0x4293;_0xfa55bd(),_0x59b1a7&&_0x3b2553(!0x1),_0x5549c7[_0x219766(0x654)]=null,_0x3d278a['current']=window[_0x219766(0x2fd)](()=>{const _0x3a884a=_0x219766;_0xfa55bd(),_0x59b1a7&&_0x3b2553(!0x1),_0x3d278a[_0x3a884a(0x654)]=null;},0x14);});},[_0xfa55bd,_0x349532,_0x3b2553]);_0x19ff5b['current']=_0x5362b6,(0x0,_0x55b95c['useEffect'])(()=>{const _0x11a18d=_0x21879b;if(!(_0x4e719a!=null&&_0x4e719a['visible'])||!_0x236566)return;let _0xeb606=!0x1,_0x44b158=_0x3aa919[_0x11a18d(0x563)][_0x11a18d(0x556)](_0x284e77=>{if(!_0xeb606){_0xeb606=!0x0;return;}!_0x284e77||_0x284e77['unitId']!==_0x305e72||_0x284e77['isSync']||(_0x4978bb(_0x4ff123(_0x370852(_0x236566))),_0x19ff5b['current'](!0x1));});return()=>{const _0x210433=_0x11a18d;_0x44b158[_0x210433(0x331)]();};},[_0x3aa919,_0x236566,_0x305e72,_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x680)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x4a7)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x4fe)],_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x848)],_0x4e719a==null?void 0x0:_0x4e719a['visible']]);let _0x4eb3f3=(0x0,_0x55b95c['useCallback'])(()=>{const _0x378228=_0x21879b;_0x349532(),_0x1ee288[_0x378228(0x654)]();},[_0x349532]);(0x0,_0x55b95c[_0x21879b(0x877)])(()=>{const _0x3435e1=_0x21879b;if(!_0x236566||!_0x4e719a)return;let {shapeId:_0x2ceed4,unitId:_0x447f0d}=_0x4e719a;if(_0x6c9f84){var _0x3d80cb,_0x111cd0,_0x125118,_0x50a78f,_0xd4f0b9,_0x39c0d2,_0x3c25c1,_0x566eb5;let _0xba675f=_0x5db3e9(),_0x424152=_0x370852(_0x236566);if(!_0x424152)return;let _0x40922e=(_0x3d80cb=(_0x111cd0=_0xba675f==null?void 0x0:_0xba675f['verticalAlign'])==null?(_0x125118=_0x4ec338['current'])==null?void 0x0:_0x125118['va']:_0x111cd0)==null?_0x2cafcd[_0x3435e1(0x40b)][_0x3435e1(0x2cd)]:_0x3d80cb,{horizontalAlign:_0x4187a6,verticalAlign:_0x3fdb55}=_0x44406c(_0x424152,{'verticalAlign':_0x40922e,'horizontalAlign':(_0x50a78f=(_0xd4f0b9=_0xba675f==null?void 0x0:_0xba675f[_0x3435e1(0x818)])==null?(_0x39c0d2=_0x4ec338[_0x3435e1(0x654)])==null?void 0x0:_0x39c0d2['ha']:_0xd4f0b9)==null?_0x2cafcd[_0x3435e1(0x829)][_0x3435e1(0x355)]:_0x50a78f}),_0xa82e72=_0x23e314((_0x3c25c1=_0x424152[_0x3435e1(0x1c3)])==null||(_0x3c25c1=_0x3c25c1['renderConfig'])==null?void 0x0:_0x3c25c1[_0x3435e1(0x24f)])?_0x40922e:_0x3fdb55,_0x5565ef={'va':_0xa82e72,'ha':_0x4187a6,'doc':_0x4173d7(_0x424152,{'bodyBehavior':_0xba675f==null?void 0x0:_0xba675f['bodyBehavior'],'verticalAlign':_0xa82e72,'horizontalAlign':_0x4187a6})};_0x4eb3f3();let _0x739229=_0xa6e573();_0x593b32['updateShapeText']({'unitId':_0x447f0d,'subUnitId':_0x4e719a['subUnitId'],'shapeId':_0x2ceed4,'shapeText':_0x324761({'shapeText':_0xba675f==null?void 0x0:_0xba675f[_0x3435e1(0x41f)],'isHorizontal':_0xba675f==null?void 0x0:_0xba675f['isHorizontal'],'dataModel':_0x5565ef}),'oldShapeText':_0x324761({'shapeText':_0xba675f==null?void 0x0:_0xba675f[_0x3435e1(0x41f)],'isHorizontal':_0xba675f==null?void 0x0:_0xba675f[_0x3435e1(0x6c7)],'dataModel':(_0x566eb5=_0x4ec338[_0x3435e1(0x654)])==null?void 0x0:_0x566eb5}),..._0x739229?{'hostSize':_0x739229}:null}),_0x3754b4[_0x3435e1(0x346)](null);return;}let _0x21ee73=_0x5db3e9();if(_0x21ee73!=null&&_0x21ee73[_0x3435e1(0x32a)]){_0x4ec338['current']={'va':_0x21ee73['verticalAlign'],'ha':_0x21ee73[_0x3435e1(0x818)],'doc':_0x50c764(_0x21ee73[_0x3435e1(0x32a)])};let _0x4469a5=_0x33580d(_0x21ee73[_0x3435e1(0x32a)],{'bodyBehavior':_0x21ee73['bodyBehavior'],'isHorizontal':_0x21ee73['isHorizontal'],'textRect':_0x21ee73['textRect'],'verticalAlign':_0x21ee73[_0x3435e1(0x5f9)],'horizontalAlign':_0x21ee73['horizontalAlign'],'wrapStrategy':_0x21ee73[_0x3435e1(0x766)]});return _0x17d990(_0x236566,_0x4469a5,null),_0x4978bb(_0x4ff123(_0x4469a5)),()=>{const _0x3a430c=_0x3435e1;var _0x3682bd,_0x5c4e15,_0x41f53b,_0xdda114,_0x599263,_0x36c1d7,_0x114364,_0x250ee1;if(_0x816cc9[_0x3a430c(0x654)])return;let _0x1fb4f2=_0x5db3e9(),_0x146228=_0x370852(_0x236566);if(!_0x146228)return;let _0x507193=(_0x3682bd=(_0x5c4e15=_0x1fb4f2==null?void 0x0:_0x1fb4f2[_0x3a430c(0x5f9)])==null?(_0x41f53b=_0x4ec338[_0x3a430c(0x654)])==null?void 0x0:_0x41f53b['va']:_0x5c4e15)==null?_0x2cafcd['VerticalAlign'][_0x3a430c(0x2cd)]:_0x3682bd,{horizontalAlign:_0x306b29,verticalAlign:_0x5db371}=_0x44406c(_0x146228,{'verticalAlign':_0x507193,'horizontalAlign':(_0xdda114=(_0x599263=_0x1fb4f2==null?void 0x0:_0x1fb4f2[_0x3a430c(0x818)])==null?(_0x36c1d7=_0x4ec338[_0x3a430c(0x654)])==null?void 0x0:_0x36c1d7['ha']:_0x599263)==null?_0x2cafcd[_0x3a430c(0x829)][_0x3a430c(0x355)]:_0xdda114}),_0xe1d609=_0x23e314((_0x114364=_0x146228[_0x3a430c(0x1c3)])==null||(_0x114364=_0x114364['renderConfig'])==null?void 0x0:_0x114364[_0x3a430c(0x24f)])?_0x507193:_0x5db371,_0x3d5ebb={'va':_0xe1d609,'ha':_0x306b29,'doc':_0x4173d7(_0x146228,{'bodyBehavior':_0x1fb4f2==null?void 0x0:_0x1fb4f2[_0x3a430c(0x1b8)],'verticalAlign':_0xe1d609,'horizontalAlign':_0x306b29})};_0x4eb3f3();let _0x522956=_0xa6e573();_0x593b32[_0x3a430c(0x4b2)]({'unitId':_0x447f0d,'subUnitId':_0x4e719a[_0x3a430c(0x4fe)],'shapeId':_0x2ceed4,'shapeText':_0x324761({'shapeText':_0x1fb4f2==null?void 0x0:_0x1fb4f2['shapeText'],'isHorizontal':_0x1fb4f2==null?void 0x0:_0x1fb4f2[_0x3a430c(0x6c7)],'dataModel':_0x3d5ebb}),'oldShapeText':_0x324761({'shapeText':_0x1fb4f2==null?void 0x0:_0x1fb4f2[_0x3a430c(0x41f)],'isHorizontal':_0x1fb4f2==null?void 0x0:_0x1fb4f2['isHorizontal'],'dataModel':(_0x250ee1=_0x4ec338['current'])==null?void 0x0:_0x250ee1}),..._0x522956?{'hostSize':_0x522956}:null});};}else _0x17d990(_0x236566,_0x5ed298,null),_0x4978bb(_0x4ff123(_0x5ed298));},[_0x236566,_0x4e719a,_0x6c9f84]);let _0x2c1b30=_0x3c6ded({'editorUnitId':_0x305e72,'editingParams':_0x4e719a});(0x0,_0x55b95c[_0x21879b(0x877)])(()=>{const _0x21ba80=_0x21879b;if(!(!_0x236566||!_0x2c1b30||!(_0x4e719a!=null&&_0x4e719a['visible'])))return _0x1e93a2[_0x21ba80(0x64c)](!0x0),_0x1ee288[_0x21ba80(0x654)](),_0x15bae5[_0x21ba80(0x654)]=requestAnimationFrame(()=>{const _0x368a18=_0x21ba80;_0x1e93a2[_0x368a18(0x2fe)](_0x305e72),_0x160b01[_0x368a18(0x654)](!0x0,!0x0),_0x236566['focus'](),_0x19ff5b['current'](),_0x15bae5['current']=null;}),()=>{const _0x25edd7=_0x21ba80;_0x15bae5[_0x25edd7(0x654)]!==null&&(cancelAnimationFrame(_0x15bae5[_0x25edd7(0x654)]),_0x15bae5[_0x25edd7(0x654)]=null),_0x56de48[_0x25edd7(0x654)]!==null&&(cancelAnimationFrame(_0x56de48['current']),_0x56de48[_0x25edd7(0x654)]=null),_0x349532(),_0x1e93a2['blur'](!0x0);};},[_0x236566,_0x1e93a2,_0x305e72,_0x2c1b30,_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x85d)],_0x349532]),(0x0,_0x55b95c[_0x21879b(0x877)])(()=>{const _0x17a7fa=_0x21879b;if(!_0x236566)return;let _0x596460=_0x58b9b4[_0x17a7fa(0x4e8)](_0x315974=>{const _0x584676=_0x17a7fa;_0x315974['id']===_0x425583[_0x584676(0x26c)]['id']&&_0x315974[_0x584676(0x5e4)][_0x584676(0x848)]===_0x305e72&&_0x4e719a&&(_0x4e719a['visible']?(_0xfa55bd(),_0x5362b6()):_0x3754b4[_0x584676(0x346)]({..._0x4e719a,'visible':!0x0})),_0x1c5daa&&_0x315974['id']===_0x1c5daa&&_0x5362b6(!0x0);});return()=>{const _0x390a91=_0x17a7fa;_0x596460[_0x390a91(0x5a6)]();};},[_0x236566,_0xfa55bd,_0x4e719a,_0x5362b6,_0x3754b4,_0x305e72,_0x1c5daa]),(0x0,_0x55b95c[_0x21879b(0x877)])(()=>(_0xfa55bd(),_0x5362b6(),()=>{_0x349532();}),[_0xfa55bd,_0x5362b6,_0x349532]);let _0x47ddbf=(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>{const _0x1c7202=_0x21879b;var _0x164d36,_0x176d5a;let _0x1a94d2=(_0x164d36=_0x46e82f[_0x1c7202(0x191)])==null?_0x46e82f[_0x1c7202(0x569)]:_0x164d36;return{..._0x119c1a(_0x46e82f['editorLeft'],_0x46e82f[_0x1c7202(0x3c6)],_0x1a94d2,Math[_0x1c7202(0x729)](0x1,_0x46e82f['editorHeight'])),..._0x4e719a?(_0x176d5a=_0x593b32['getEditingContentStyle'])==null?void 0x0:_0x176d5a[_0x1c7202(0x211)](_0x593b32,_0x4e719a):void 0x0};},[_0x593b32,_0x4e719a,_0x46e82f['editorHeight'],_0x46e82f[_0x21879b(0x248)],_0x46e82f[_0x21879b(0x191)],_0x46e82f['editorTop'],_0x46e82f[_0x21879b(0x569)]]),_0x3a6f9b=(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>{const _0x24f5d7=_0x21879b;let _0x44f3f4=_0x5db3e9(),_0x1dfdda=_0x44f3f4==null?void 0x0:_0x44f3f4[_0x24f5d7(0x261)];return _0x1dfdda&&_0x1dfdda||{'angle':0x0,'flipX':!0x1,'flipY':!0x1};},[_0x5db3e9]),_0x272bb0=(0x0,_0x55b95c[_0x21879b(0x81b)])(()=>{const _0x5c8ec2=_0x21879b;var _0x5c9b4c,_0x52ae77;return _0x11dfc9({'documentMarginTop':_0x46e82f[_0x5c8ec2(0x5ce)],'editorLeft':_0x46e82f[_0x5c8ec2(0x248)],'editorSurfaceWidth':_0x46e82f['editorSurfaceWidth'],'editorTop':_0x46e82f['editorTop'],'editorWidth':_0x46e82f['editorWidth'],'horizontalAlign':(_0x5c9b4c=(_0x52ae77=_0x5db3e9())==null?void 0x0:_0x52ae77['horizontalAlign'])==null?_0x2cafcd[_0x5c8ec2(0x829)]['LEFT']:_0x5c9b4c});},[_0x5db3e9,_0x46e82f]);return(0x0,_0x43e701[_0x21879b(0x39b)])(_0x21879b(0x3ec),{'ref':_0x43b19b,'data-u-comp':_0x21879b(0x65c),'className':'univer-relative\x20univer-size-full\x20univer-overflow-visible','style':{'transform':'rotate('+_0x3a6f9b[_0x21879b(0x66c)]+_0x21879b(0x257)+(_0x3a6f9b[_0x21879b(0x16d)]?-0x1:0x1)+')'},'children':[(0x0,_0x43e701[_0x21879b(0x715)])(_0x21879b(0x3ec),{'ref':_0xde1ba8,'className':'univer-absolute','data-u-comp':_0x21879b(0x515),'style':_0x47ddbf,'data-editorid':_0x305e72}),(_0x4e719a==null?void 0x0:_0x4e719a[_0x21879b(0x85d)])&&_0x3fe9f3&&(0x0,_0x43e701[_0x21879b(0x715)])(_0x21879b(0x3ec),{'aria-hidden':_0x21879b(0x519),'className':_0x21879b(0x479),'data-u-comp':'shape-text-editor-placeholder','style':{..._0x272bb0,'fontSize':_0xc844f1==null?0xe:_0xc844f1,'lineHeight':1.5},'children':_0x4c4b9c})]});};function _0x3c04bd(_0x24b63d,_0x1a3200){const _0x10a725=_0x57b2d2;return Math[_0x10a725(0x469)](_0x24b63d-_0x1a3200)<=0.001;}function _0x21e6f6(_0x2abfab,_0x2c38e2){const _0x347ede=_0x57b2d2;return _0x3c04bd(_0x2abfab[_0x347ede(0x6b4)],_0x2c38e2['left'])&&_0x3c04bd(_0x2abfab[_0x347ede(0x62a)],_0x2c38e2[_0x347ede(0x62a)])&&_0x3c04bd(_0x2abfab[_0x347ede(0x345)],_0x2c38e2[_0x347ede(0x345)])&&_0x3c04bd(_0x2abfab[_0x347ede(0x5fc)],_0x2c38e2[_0x347ede(0x5fc)])&&_0x3c04bd(_0x2abfab['angle'],_0x2c38e2['angle'])&&_0x3c04bd(_0x2abfab[_0x347ede(0x6ec)],_0x2c38e2[_0x347ede(0x6ec)])&&_0x3c04bd(_0x2abfab[_0x347ede(0x528)],_0x2c38e2[_0x347ede(0x528)]);}function _0x43e7a1(_0x5319e9,_0x4575e7){const _0x35538a=_0x57b2d2;return _0x4575e7?{..._0x5319e9,'left':_0x5319e9[_0x35538a(0x6b4)]+_0x4575e7[_0x35538a(0x6b4)],'top':_0x5319e9['top']+_0x4575e7[_0x35538a(0x62a)]}:_0x5319e9;}let _0x98ff67={'left':-0x270f,'top':-0x270f,'width':0x64,'height':0x64,'angle':0x0,'scaleX':0x1,'scaleY':0x1};function _0x1feb68(_0x46db9b,_0x3fb377,_0x296fd6,_0x115e45,_0x1e59c4){const _0x429910=_0x57b2d2;let {scaleX:_0xd1532f,scaleY:_0x2c54e2}=_0x296fd6['getAncestorScale'](),{startColumn:_0x52d8db,startRow:_0x722d83,xSplit:_0x5c2773,ySplit:_0x54966e}=_0x115e45[_0x429910(0x259)][_0x429910(0x344)](),_0x20ff61=_0x296fd6[_0x429910(0x6d3)](_0x1e59c4[_0x429910(0x1c0)]),_0x341ac1=_0x296fd6[_0x429910(0x6d3)](_0x1e59c4[_0x429910(0x3c7)]),_0x4b1191=_0x296fd6[_0x429910(0x6d3)](_0x1e59c4[_0x429910(0x62a)]),_0x11e29a=_0x296fd6[_0x429910(0x6d3)](_0x1e59c4['left']),{rowHeaderWidth:_0x3dd4ae,columnHeaderHeight:_0x86d24e}=_0x115e45,_0x5c54f2=_0x115e45[_0x429910(0x827)](_0x722d83)+_0x86d24e,_0x3e1ccc=_0x115e45[_0x429910(0x1be)](_0x52d8db)+_0x3dd4ae,_0x4e39b6=_0x115e45[_0x429910(0x827)](_0x722d83-_0x54966e)+_0x86d24e,_0x338ebd=_0x115e45[_0x429910(0x1be)](_0x52d8db-_0x5c2773)+_0x3dd4ae,_0x293b03=[],_0x45cc8d=(_0x1ea517,_0x21cc54,_0x14aba4)=>{if(!_0x1ea517)return null;let {viewportScrollX:_0x22795a,viewportScrollY:_0xba0cfa}=_0x1ea517,_0x24be61,_0x4c3a62;return _0x24be61=_0x21cc54?(_0x46db9b-(_0x338ebd-_0x3dd4ae))*_0xd1532f:(_0x46db9b-_0x22795a)*_0xd1532f,_0x4c3a62=_0x14aba4?(_0x3fb377-(_0x4e39b6-_0x86d24e))*_0x2c54e2:(_0x3fb377-_0xba0cfa)*_0x2c54e2,{'domX':_0x24be61,'domY':_0x4c3a62};},_0x28289b=_0x46db9b<_0x3e1ccc&&_0x5c2773>0x0,_0x21554a=_0x3fb377<_0x5c54f2&&_0x54966e>0x0,_0x2ee0ac=_0x46db9b>=_0x3e1ccc||_0x5c2773===0x0,_0x1cbdee=_0x3fb377>=_0x5c54f2||_0x54966e===0x0;if(_0x28289b&&_0x21554a&&_0x341ac1){let _0x174c12=_0x45cc8d(_0x341ac1,!0x0,!0x0);_0x174c12&&_0x293b03[_0x429910(0x43d)](_0x174c12);}if(_0x21554a&&_0x2ee0ac&&_0x4b1191){let _0x5e1ef2=_0x45cc8d(_0x4b1191,!0x1,!0x0);_0x5e1ef2&&_0x293b03[_0x429910(0x43d)](_0x5e1ef2);}if(_0x28289b&&_0x1cbdee&&_0x11e29a){let _0x2cb92b=_0x45cc8d(_0x11e29a,!0x0,!0x1);_0x2cb92b&&_0x293b03[_0x429910(0x43d)](_0x2cb92b);}if(_0x2ee0ac&&_0x1cbdee&&_0x20ff61){let _0x1af244=_0x45cc8d(_0x20ff61,!0x1,!0x1);_0x1af244&&_0x293b03[_0x429910(0x43d)](_0x1af244);}if(_0x293b03[_0x429910(0x1bf)]===0x0){var _0x37c448,_0x3f01f4;return{'domX':(_0x46db9b-((_0x37c448=_0x20ff61==null?void 0x0:_0x20ff61[_0x429910(0x722)])==null?0x0:_0x37c448))*_0xd1532f,'domY':(_0x3fb377-((_0x3f01f4=_0x20ff61==null?void 0x0:_0x20ff61['viewportScrollY'])==null?0x0:_0x3f01f4))*_0x2c54e2};}let _0x2b70ae=_0x293b03[0x0][_0x429910(0x736)],_0x20d828=_0x293b03[0x0][_0x429910(0x51f)];for(let _0xda2c3f of _0x293b03)_0xda2c3f[_0x429910(0x736)]>_0x2b70ae&&(_0x2b70ae=_0xda2c3f[_0x429910(0x736)]),_0xda2c3f[_0x429910(0x51f)]>_0x20d828&&(_0x20d828=_0xda2c3f['domY']);return{'domX':_0x2b70ae,'domY':_0x20d828};}function _0x11b6b0(_0x2e24db,_0x3d4e21,_0x18709c,_0x1b1579,_0x4bd278,_0x23132b,_0x305d24,_0x1b2696){const _0x140c11=_0x57b2d2;let {scaleX:_0x55490f,scaleY:_0x3d4799}=_0x23132b[_0x140c11(0x876)]();if(!_0x1b2696||!_0x305d24[_0x140c11(0x3c7)]||!_0x305d24['top']||!_0x305d24[_0x140c11(0x6b4)]){var _0x1b4bd4,_0x51779c;let _0x1a9078=_0x23132b['getViewport'](_0x305d24['main']),_0x353dfc=(_0x1b4bd4=_0x1a9078==null?void 0x0:_0x1a9078['viewportScrollX'])==null?0x0:_0x1b4bd4,_0x5a6222=(_0x51779c=_0x1a9078==null?void 0x0:_0x1a9078[_0x140c11(0x19e)])==null?0x0:_0x51779c;return{'left':(_0x2e24db-_0x353dfc)*_0x55490f,'top':(_0x3d4e21-_0x5a6222)*_0x3d4799,'width':_0x18709c*_0x55490f,'height':_0x1b1579*_0x3d4799,'angle':_0x4bd278,'scaleX':_0x55490f,'scaleY':_0x3d4799};}let {domX:_0x2ddf03,domY:_0x536013}=_0x1feb68(_0x2e24db,_0x3d4e21,_0x23132b,_0x1b2696,_0x305d24);return{'left':_0x2ddf03,'top':_0x536013,'width':_0x18709c*_0x55490f,'height':_0x1b1579*_0x3d4799,'angle':_0x4bd278,'scaleX':_0x55490f,'scaleY':_0x3d4799};}function _0x5c25c9(_0x6227b3){const _0x442f2a=_0x57b2d2;let {editingParams:_0x3d84ee,scene:_0x206294,skeleton:_0xecb159,viewportKeys:_0x427dd8,getShapeTransform:_0x2b84a4,getPositionOffset:_0x7cd3f0}=_0x6227b3,[_0x10337d,_0x3fd93d]=(0x0,_0x55b95c['useState'])(_0x98ff67),_0x325074=(0x0,_0x55b95c['useRef'])(_0x10337d);_0x325074[_0x442f2a(0x654)]=_0x10337d;let _0x1abc42=(0x0,_0x55b95c[_0x442f2a(0x288)])(()=>{const _0x5ab569=_0x442f2a;var _0x1ec8bf;if(!_0x3d84ee||!_0x206294){_0x21e6f6(_0x325074[_0x5ab569(0x654)],_0x98ff67)||_0x3fd93d(_0x98ff67);return;}let _0x46d7be=_0x2b84a4();if(!_0x46d7be){_0x21e6f6(_0x325074['current'],_0x98ff67)||_0x3fd93d(_0x98ff67);return;}let {left:_0x4117d9,top:_0x3f663a,width:_0x58e14e,height:_0x23b2d4,angle:_0x39ab0d}=_0x46d7be;if(!_0x3d84ee[_0x5ab569(0x85d)]){let {scaleX:_0x3d7b2d,scaleY:_0x1bfd80}=_0x206294['getAncestorScale'](),_0x20d316={'left':-0x270f,'top':-0x270f,'width':_0x58e14e*_0x3d7b2d,'height':_0x23b2d4*_0x1bfd80,'angle':0x0,'scaleX':_0x3d7b2d,'scaleY':_0x1bfd80};_0x3fd93d(_0x4a3114=>_0x21e6f6(_0x4a3114,_0x20d316)?_0x4a3114:_0x20d316);return;}let _0x1e9644=_0x43e7a1(_0x11b6b0(_0x4117d9,_0x3f663a,_0x58e14e,_0x23b2d4,_0x39ab0d,_0x206294,_0x427dd8,_0xecb159),(_0x1ec8bf=_0x7cd3f0==null?void 0x0:_0x7cd3f0())==null?null:_0x1ec8bf);_0x3fd93d(_0x34cd62=>_0x21e6f6(_0x34cd62,_0x1e9644)?_0x34cd62:_0x1e9644);},[_0x3d84ee,_0x206294,_0xecb159,_0x427dd8,_0x2b84a4,_0x7cd3f0]);return(0x0,_0x55b95c['useEffect'])(()=>{_0x1abc42();},[_0x3d84ee,_0x1abc42]),{'position':_0x10337d,'updatePosition':_0x1abc42};}function _0x25409a(_0x12817,_0x12cd67){const _0x56fa1e=_0x57b2d2;return!!(_0x12817!=null&&_0x12817['visible'])&&!(_0x12cd67['left']===-0x270f&&_0x12cd67[_0x56fa1e(0x62a)]===-0x270f);}function _0x112b63(_0x3b96df){const _0x36a4bf=_0x57b2d2;if(!_0x3b96df||typeof _0x3b96df!=_0x36a4bf(0x60f))return!0x1;let _0x4df5e3=_0x3b96df;return typeof _0x4df5e3[_0x36a4bf(0x6b4)]==_0x36a4bf(0x511)&&typeof _0x4df5e3['top']==_0x36a4bf(0x511)&&typeof _0x4df5e3[_0x36a4bf(0x345)]==_0x36a4bf(0x511)&&typeof _0x4df5e3[_0x36a4bf(0x5fc)]==_0x36a4bf(0x511);}function _0x1adfbc(_0xb120d5,_0x57b28f){const _0x2e7ae6=_0x57b2d2;var _0x46ee0e,_0x5e80a1;let _0x45b650=(_0x46ee0e=_0xb120d5['getObject'](_0x57b28f))==null?(_0x5e80a1=_0xb120d5[_0x2e7ae6(0x419)])==null?void 0x0:_0x5e80a1[_0x2e7ae6(0x211)](_0xb120d5,_0x57b28f):_0x46ee0e;return _0x112b63(_0x45b650)?_0x45b650:null;}function _0x482c76(_0x11fd3f,_0x362f8e){const _0x10e536=_0x57b2d2;return _0x11fd3f[_0x10e536(0x672)]>=_0x362f8e[_0x10e536(0x6b4)]&&_0x11fd3f['clientX']<=_0x362f8e['right']&&_0x11fd3f['clientY']>=_0x362f8e[_0x10e536(0x62a)]&&_0x11fd3f[_0x10e536(0x7fc)]<=_0x362f8e[_0x10e536(0x6fa)];}function _0x18d6db(_0x2d035a,_0x28bc98){const _0x271f62=_0x57b2d2;if(!(_0x2d035a instanceof Node))return!0x1;let _0xc3d5=_0x28bc98==null?void 0x0:_0x28bc98[_0x271f62(0x3f1)](_0x271f62(0x716));return!!(_0xc3d5!=null&&_0xc3d5[_0x271f62(0x78d)](_0x2d035a));}function _0x5ad7ea(_0x3a126d){const _0x412431=_0x57b2d2;let _0x23b907=_0x3a126d[_0x412431(0x46b)],_0x5b62db={'bubbles':!0x0,'cancelable':!0x0,'composed':!0x0,'view':window,'detail':_0x23b907[_0x412431(0x3e7)],'screenX':_0x23b907[_0x412431(0x868)],'screenY':_0x23b907[_0x412431(0x474)],'clientX':_0x23b907[_0x412431(0x672)],'clientY':_0x23b907[_0x412431(0x7fc)],'ctrlKey':_0x23b907[_0x412431(0x593)],'shiftKey':_0x23b907[_0x412431(0x31d)],'altKey':_0x23b907[_0x412431(0x39f)],'metaKey':_0x23b907[_0x412431(0x56f)],'button':_0x23b907[_0x412431(0x894)],'buttons':_0x23b907[_0x412431(0x858)],'relatedTarget':_0x23b907[_0x412431(0x1c2)]};return typeof PointerEvent<'u'&&_0x23b907 instanceof PointerEvent?new PointerEvent(_0x23b907[_0x412431(0x1d9)],{..._0x5b62db,'pointerId':_0x23b907['pointerId'],'width':_0x23b907[_0x412431(0x345)],'height':_0x23b907[_0x412431(0x5fc)],'pressure':_0x23b907['pressure'],'tangentialPressure':_0x23b907[_0x412431(0x7f0)],'tiltX':_0x23b907[_0x412431(0x637)],'tiltY':_0x23b907[_0x412431(0x165)],'twist':_0x23b907[_0x412431(0x467)],'pointerType':_0x23b907[_0x412431(0x171)],'isPrimary':_0x23b907['isPrimary']}):new MouseEvent(_0x23b907[_0x412431(0x1d9)],_0x5b62db);}function _0x5d4ee2(_0x261020){const _0x991508=_0x57b2d2;let _0x4f21b3=_0x261020['style']['pointerEvents'],_0x1750c7=!0x1,_0x5c6da5=null,_0x518e80=()=>{const _0x4af71e=_0x4293;_0x1750c7||(_0x1750c7=!0x0,_0x261020[_0x4af71e(0x70a)]['pointerEvents']=_0x4f21b3,document['removeEventListener'](_0x4af71e(0x723),_0x518e80,!0x0),document[_0x4af71e(0x73c)](_0x4af71e(0x7bc),_0x518e80,!0x0),document[_0x4af71e(0x73c)](_0x4af71e(0x222),_0x518e80,!0x0),document['removeEventListener'](_0x4af71e(0x262),_0x518e80,!0x0),_0x5c6da5!==null&&window[_0x4af71e(0x7f2)](_0x5c6da5));};return _0x261020[_0x991508(0x70a)][_0x991508(0x3d4)]='none',document[_0x991508(0x4ef)](_0x991508(0x723),_0x518e80,!0x0),document[_0x991508(0x4ef)](_0x991508(0x7bc),_0x518e80,!0x0),document[_0x991508(0x4ef)](_0x991508(0x222),_0x518e80,!0x0),document['addEventListener']('click',_0x518e80,!0x0),_0x5c6da5=window[_0x991508(0x2fd)](_0x518e80,0x3e8),_0x518e80;}function _0x10e524(_0x4a73de,_0x4c20de){const _0x4c4a39=_0x57b2d2;let _0x4dd80b=_0x5d4ee2(_0x4c20de),_0x505696=document[_0x4c4a39(0x488)](_0x4a73de[_0x4c4a39(0x672)],_0x4a73de['clientY']);return!_0x505696||_0x505696===_0x4c20de||_0x4c20de[_0x4c4a39(0x78d)](_0x505696)?(_0x4dd80b(),!0x1):(_0x4a73de[_0x4c4a39(0x399)](),_0x4a73de[_0x4c4a39(0x3ea)](),_0x505696[_0x4c4a39(0x6d2)](_0x5ad7ea(_0x4a73de)),!0x0);}function _0x1c4f5f(_0x47a0f9){const _0x265753=_0x57b2d2;var _0x26858f;let {editingParams:_0xbe0256,positionOptions:_0x5c4d78,renderUnit:_0x4913c8,scene:_0x4795ab}=_0x47a0f9;if(!_0xbe0256)return null;let _0x108ca0=_0x4913c8?(_0x26858f=_0x5c4d78['getHostTransform'])==null?void 0x0:_0x26858f[_0x265753(0x211)](_0x5c4d78,_0x4913c8,_0xbe0256):null;if(_0x112b63(_0x108ca0)){var _0x172358;return{'left':_0x108ca0['left'],'top':_0x108ca0['top'],'width':_0x108ca0[_0x265753(0x345)],'height':_0x108ca0['height'],'angle':(_0x172358=_0x108ca0[_0x265753(0x66c)])==null?0x0:_0x172358};}return _0x4795ab?_0x1adfbc(_0x4795ab,_0xbe0256['shapeKey']):null;}let _0x20c09a=(0x0,_0x55b95c[_0x57b2d2(0x5d7)])(_0xc59e03=>{const _0x170038=_0x57b2d2;let {children:_0x1f2aed,editingParams:_0x4100ce,positionOptions:_0x429eaf,onPositionUpdate:_0x26c4e5}=_0xc59e03,_0x436b05=(0x0,_0x55b95c[_0x170038(0x7b5)])(null),_0x336612=(0x0,_0x26fc1b['useDependency'])(_0x482181['IRenderManagerService']),_0x428e18=(0x0,_0x55b95c[_0x170038(0x81b)])(()=>_0x4100ce?_0x336612[_0x170038(0x6bc)](_0x4100ce[_0x170038(0x848)]):null,[_0x4100ce,_0x336612]),_0x2ea76a=(0x0,_0x55b95c[_0x170038(0x81b)])(()=>{const _0x27cee6=_0x170038;var _0x567e44;return(_0x567e44=_0x428e18==null?void 0x0:_0x428e18[_0x27cee6(0x229)])==null?null:_0x567e44;},[_0x428e18]),_0x1c8788=(0x0,_0x55b95c[_0x170038(0x81b)])(()=>!_0x4100ce||!_0x428e18||!_0x429eaf[_0x170038(0x139)]?null:_0x429eaf[_0x170038(0x139)](_0x428e18,_0x4100ce),[_0x4100ce,_0x429eaf,_0x428e18]),_0x51ea46=(0x0,_0x55b95c[_0x170038(0x288)])(()=>{const _0xe3ed01=_0x170038;var _0x4ffccc;let _0xdc3cba=_0x1c4f5f({'editingParams':_0x4100ce,'positionOptions':_0x429eaf,'renderUnit':_0x428e18,'scene':_0x2ea76a});return _0xdc3cba?{'left':_0xdc3cba[_0xe3ed01(0x6b4)],'top':_0xdc3cba[_0xe3ed01(0x62a)],'width':_0xdc3cba['width'],'height':_0xdc3cba[_0xe3ed01(0x5fc)],'angle':(_0x4ffccc=_0xdc3cba['angle'])==null?0x0:_0x4ffccc}:null;},[_0x4100ce,_0x429eaf,_0x428e18,_0x2ea76a]),_0xcd967a=(0x0,_0x55b95c[_0x170038(0x288)])(()=>{const _0x53dd82=_0x170038;var _0x259be6,_0x199449;return!_0x4100ce||!_0x428e18||(_0x259be6=(_0x199449=_0x429eaf[_0x53dd82(0x14f)])==null?void 0x0:_0x199449[_0x53dd82(0x211)](_0x429eaf,_0x428e18,_0x4100ce))==null?null:_0x259be6;},[_0x4100ce,_0x429eaf,_0x428e18]),{position:_0x30f355,updatePosition:_0x208741}=_0x5c25c9({'editingParams':_0x4100ce,'scene':_0x2ea76a,'skeleton':_0x1c8788,'viewportKeys':_0x429eaf[_0x170038(0x589)],'getShapeTransform':_0x51ea46,'getPositionOffset':_0xcd967a}),_0x2416a6=(0x0,_0x55b95c[_0x170038(0x288)])(()=>{const _0x738f89=_0x170038;let _0x11f637=_0x436b05['current'];_0x11f637&&(_0x11f637[_0x738f89(0x70a)][_0x738f89(0x6b4)]=_0x30f355[_0x738f89(0x6b4)]+'px',_0x11f637['style'][_0x738f89(0x62a)]=_0x30f355['top']+'px',_0x11f637['style'][_0x738f89(0x345)]=_0x30f355[_0x738f89(0x345)]+'px',_0x11f637[_0x738f89(0x70a)][_0x738f89(0x5fc)]=_0x30f355[_0x738f89(0x5fc)]+'px');},[_0x30f355]);(0x0,_0x55b95c[_0x170038(0x877)])(()=>{const _0x3d06e5=_0x170038;_0x2416a6(),_0x25409a(_0x4100ce,_0x30f355)&&(_0x26c4e5==null||_0x26c4e5({'width':_0x30f355[_0x3d06e5(0x345)],'height':_0x30f355[_0x3d06e5(0x5fc)],'scaleX':_0x30f355[_0x3d06e5(0x6ec)],'scaleY':_0x30f355[_0x3d06e5(0x528)]}));},[_0x4100ce,_0x30f355,_0x2416a6,_0x26c4e5]),(0x0,_0x55b95c[_0x170038(0x877)])(()=>{const _0x4e0117=_0x170038;if(!_0x2ea76a)return;let _0x350145=_0x2ea76a['getViewport'](_0x429eaf[_0x4e0117(0x589)][_0x4e0117(0x1c0)]);if(!_0x350145)return;let _0x53642b=_0x350145['onScrollAfter$'][_0x4e0117(0x21e)](()=>{_0x208741();});return()=>{_0x53642b['unsubscribe']();};},[_0x429eaf[_0x170038(0x589)][_0x170038(0x1c0)],_0x2ea76a,_0x208741]),(0x0,_0x55b95c[_0x170038(0x877)])(()=>{const _0x3170b6=_0x170038;var _0x45fab2,_0x28e160;let _0x142afa=_0x428e18==null||(_0x45fab2=_0x428e18[_0x3170b6(0x401)])==null||(_0x45fab2=_0x45fab2[_0x3170b6(0x3b2)])==null?void 0x0:_0x45fab2[_0x3170b6(0x21e)](()=>{_0x208741();}),_0x18f25d=_0x2ea76a==null||(_0x28e160=_0x2ea76a[_0x3170b6(0x3b2)])==null?void 0x0:_0x28e160[_0x3170b6(0x21e)](()=>{_0x208741();});return()=>{const _0x571727=_0x3170b6;_0x142afa==null||_0x142afa[_0x571727(0x331)](),_0x18f25d==null||_0x18f25d[_0x571727(0x331)]();};},[_0x428e18,_0x2ea76a,_0x208741]),(0x0,_0x55b95c[_0x170038(0x877)])(()=>{const _0x9b003a=_0x170038;if(!_0x4100ce||!_0x2ea76a)return;let _0x47bfa6=_0x1adfbc(_0x2ea76a,_0x4100ce[_0x9b003a(0x4a7)]);if(_0x47bfa6!=null&&_0x47bfa6['onTransformChange$']){let _0x263853=_0x47bfa6[_0x9b003a(0x3b2)][_0x9b003a(0x21e)](()=>{_0x208741();});return()=>{_0x263853['unsubscribe']();};}},[_0x4100ce,_0x2ea76a,_0x208741]);let _0x367896=(0x0,_0x55b95c['useMemo'])(()=>({'left':_0x30f355[_0x170038(0x6b4)],'top':_0x30f355['top'],'width':_0x30f355[_0x170038(0x345)],'height':_0x30f355[_0x170038(0x5fc)],'pointerEvents':_0x4100ce!=null&&_0x4100ce[_0x170038(0x85d)]?_0x170038(0x22e):_0x170038(0x5b0)}),[_0x30f355,_0x4100ce==null?void 0x0:_0x4100ce[_0x170038(0x85d)]]),_0x11c249=(0x0,_0x55b95c[_0x170038(0x288)])(_0x12fd35=>{const _0x3e2ac7=_0x170038;let _0x315ac7=_0x436b05[_0x3e2ac7(0x654)];if(!_0x315ac7||!(_0x4100ce!=null&&_0x4100ce[_0x3e2ac7(0x85d)]))return;let _0x347eaa=_0x12fd35['target'];!(_0x347eaa instanceof Node)||!_0x315ac7['contains'](_0x347eaa)||_0x18d6db(_0x347eaa,_0x315ac7)||_0x482c76(_0x12fd35[_0x3e2ac7(0x46b)],_0x315ac7['getBoundingClientRect']())||_0x10e524(_0x12fd35,_0x315ac7);},[_0x4100ce==null?void 0x0:_0x4100ce[_0x170038(0x85d)]]);return(0x0,_0x43e701[_0x170038(0x715)])(_0x170038(0x3ec),{'ref':_0x436b05,'data-u-comp':_0x170038(0x37d),'className':_0x170038(0x326),'style':_0x367896,'onPointerDownCapture':_0x11c249,'onMouseDownCapture':_0x11c249,'onClickCapture':_0x11c249,'children':_0x1f2aed});});function _0x226f26(_0x45d4d0,_0x517044){const _0x4880cc=_0x57b2d2;return Math['abs'](_0x45d4d0[_0x4880cc(0x345)]-_0x517044[_0x4880cc(0x345)])<=0.001&&Math[_0x4880cc(0x469)](_0x45d4d0[_0x4880cc(0x5fc)]-_0x517044[_0x4880cc(0x5fc)])<=0.001&&Math[_0x4880cc(0x469)](_0x45d4d0[_0x4880cc(0x6ec)]-_0x517044['scaleX'])<=0.001&&Math[_0x4880cc(0x469)](_0x45d4d0[_0x4880cc(0x528)]-_0x517044[_0x4880cc(0x528)])<=0.001;}let _0x35d87f=(0x0,_0x55b95c['memo'])(_0x77d08e=>{const _0x11a614=_0x57b2d2;let {adapter:_0x5382d7,editorUnitId:_0x3ab3e5,editingService:_0x5cfbc3,positionOptions:_0x36863a,verticalAlignCommandId:_0x180ac3}=_0x77d08e,_0x36d688=(0x0,_0x26fc1b[_0x11a614(0x162)])(_0x5cfbc3[_0x11a614(0x30f)]),_0x596a29=(0x0,_0x26fc1b[_0x11a614(0x162)])(_0x5cfbc3[_0x11a614(0x59e)]),_0x425d39=_0x3c6ded({'editorUnitId':_0x3ab3e5,'editingParams':_0x36d688}),_0x182f20=(0x0,_0x55b95c[_0x11a614(0x7b5)])(!0x1),_0x5a4789=(0x0,_0x55b95c[_0x11a614(0x7b5)])(0x0),_0x43df9f=(_0x36d688==null?void 0x0:_0x36d688[_0x11a614(0x85d)])===!0x0;_0x43df9f&&!_0x182f20[_0x11a614(0x654)]&&(_0x5a4789[_0x11a614(0x654)]+=0x1),_0x182f20[_0x11a614(0x654)]=_0x43df9f;let _0xdb4912=_0x425d39?_0x425d39+'|'+_0x5a4789['current']:null,[_0x238425,_0xcb49fb]=(0x0,_0x55b95c[_0x11a614(0x614)])(null),_0x38fe7a=(0x0,_0x55b95c[_0x11a614(0x288)])(_0x35e50b=>{const _0x143e5d=_0x11a614;if(!_0xdb4912)return;let _0x24b44d={'width':_0x35e50b[_0x143e5d(0x345)],'height':_0x35e50b[_0x143e5d(0x5fc)],'scaleX':_0x35e50b[_0x143e5d(0x6ec)],'scaleY':_0x35e50b[_0x143e5d(0x528)]};_0xcb49fb(_0x322406=>(_0x322406==null?void 0x0:_0x322406[_0x143e5d(0x799)])===_0xdb4912&&_0x226f26(_0x322406[_0x143e5d(0x29a)],_0x24b44d)?_0x322406:{'sessionKey':_0xdb4912,'size':_0x24b44d});},[_0xdb4912]);if(!_0x36d688||!_0x36d688[_0x11a614(0x85d)]&&!_0x596a29)return null;let _0x1bdaae=(_0x238425==null?void 0x0:_0x238425[_0x11a614(0x799)])===_0xdb4912?_0x238425[_0x11a614(0x29a)]:null;return(0x0,_0x43e701[_0x11a614(0x715)])(_0x20c09a,{'editingParams':_0x36d688,'positionOptions':_0x36863a,'onPositionUpdate':_0x38fe7a,'children':_0x1bdaae?(0x0,_0x43e701[_0x11a614(0x715)])(_0x275b45,{'adapter':_0x5382d7,'containerWidth':_0x1bdaae[_0x11a614(0x345)],'containerHeight':_0x1bdaae[_0x11a614(0x5fc)],'editingParams':_0x36d688,'editingService':_0x5cfbc3,'editorUnitId':_0x3ab3e5,'scaleX':_0x1bdaae[_0x11a614(0x6ec)],'scaleY':_0x1bdaae[_0x11a614(0x528)],'verticalAlignCommandId':_0x180ac3}):null},_0xdb4912);}),_0x565c2b=_0x26fc1b['FONT_SIZE_LIST'][_0x57b2d2(0x499)](_0x33dbb4=>({'label':_0x33dbb4[_0x57b2d2(0x751)],'value':String(_0x33dbb4[_0x57b2d2(0x865)])})),_0x57d2bb=[_0x3bd019['SetInlineFormatTextFillCommand']['id'],_0x3bd019['SetInlineFormatTextBackgroundColorCommand']['id'],_0x3bd019[_0x57b2d2(0x41a)]['id'],_0x3bd019[_0x57b2d2(0x3db)]['id'],_0x3bd019[_0x57b2d2(0x6b7)]['id'],_0x3bd019[_0x57b2d2(0x44d)]['id'],_0x3bd019['SetInlineFormatItalicCommand']['id'],_0x3bd019[_0x57b2d2(0x327)]['id'],_0x3bd019[_0x57b2d2(0x1ae)]['id'],_0x3bd019[_0x57b2d2(0x2ed)]['id'],_0x3bd019[_0x57b2d2(0x3e9)]['id'],_0x425583['RichTextEditingMutation']['id'],_0x425583['SetTextSelectionsOperation']['id']],_0x11c623={'root':_0x57b2d2(0x4df),'group':_0x57b2d2(0x6f9),'divider':_0x57b2d2(0x4ee),'button':_0x57b2d2(0x640),'select':_0x57b2d2(0x690)};function _0x365e04(_0x409bd2){return _0x409bd2 instanceof HTMLElement?!!_0x409bd2['closest']('input,\x20textarea,\x20[contenteditable=\x22true\x22],\x20[role=\x22combobox\x22],\x20[data-u-comp=\x22select\x22],\x20.univer-select'):!0x1;}function _0x499cd8(_0x5f7a11){const _0x1256e0=_0x57b2d2;return!!(_0x5f7a11&&typeof _0x5f7a11==_0x1256e0(0x60f)&&_0x5f7a11['s']===_0x2cafcd[_0x1256e0(0x48f)][_0x1256e0(0x860)]);}function _0x37d4ce(_0x3c858f){const _0x11f34d=_0x57b2d2;return(0x0,_0x43e701[_0x11f34d(0x715)])(_0x11f34d(0x3ec),{'className':_0x11c623[_0x11f34d(0x6c8)],'children':_0x3c858f['children']});}function _0x3439d8(){const _0x14e97b=_0x57b2d2;return(0x0,_0x43e701['jsx'])(_0x14e97b(0x2bf),{'className':_0x11c623[_0x14e97b(0x461)]});}function _0x2a9842(_0x8ea0fc){const _0x571706=_0x57b2d2;return(0x0,_0x43e701[_0x571706(0x715)])(_0x3f5bc5[_0x571706(0x587)],{'title':(0x0,_0x26fc1b['useDependency'])(_0x2cafcd['LocaleService'])['t'](_0x8ea0fc[_0x571706(0x873)]),'placement':_0x571706(0x6fa),'children':(0x0,_0x43e701['jsx'])(_0x571706(0x894),{'type':'button','className':(0x0,_0x3f5bc5['clsx'])(_0x11c623['button'],{'univer-bg-gray-100\x20univer-text-primary-600\x20dark:!univer-bg-gray-700\x20dark:!univer-text-primary-300':_0x8ea0fc[_0x571706(0x822)]}),'onClick':_0x8ea0fc[_0x571706(0x161)],'children':_0x8ea0fc[_0x571706(0x6cc)]})});}function _0x589789(){const _0xe1563c=_0x57b2d2;var _0x258c2d,_0x285cb4,_0x20eb31,_0x21c0f8,_0x29383d,_0x4351c7;let _0x19043e=(0x0,_0x26fc1b[_0xe1563c(0x755)])(_0x2cafcd[_0xe1563c(0x7fb)]),_0x536b86=(0x0,_0x26fc1b[_0xe1563c(0x755)])(_0x425583[_0xe1563c(0x581)]),_0x6ae526=(0x0,_0x26fc1b['useDependency'])(_0x2cafcd['IUniverInstanceService']),[_0x1e01c6,_0x23b764]=(0x0,_0x55b95c[_0xe1563c(0x614)])({'cl':{'rgb':_0x28d47e}});(0x0,_0x55b95c['useEffect'])(()=>{const _0x1d2c1d=_0xe1563c;let _0x37c3cf=()=>{const _0x41bdfd=_0x4293;var _0x4dc213,_0x28d0a5,_0x2d9c54,_0x29c57a,_0x281c81,_0x555c47,_0x287081;let _0x2e3b8d=(_0x4dc213=_0x536b86[_0x41bdfd(0x153)]())==null?[]:_0x4dc213,_0x1a5ebd=_0x2e3b8d[_0x41bdfd(0x1bf)]>0x0?_0x2e3b8d[_0x41bdfd(0x7aa)](_0x1c173d=>_0x1c173d['startOffset']!=null&&_0x1c173d[_0x41bdfd(0x4e9)]!=null):_0x536b86['getDocRanges'](),_0xebfe75=(_0x28d0a5=_0x1a5ebd['find'](_0x39a91d=>_0x39a91d['isActive']))==null?_0x1a5ebd[0x0]:_0x28d0a5;if(!_0xebfe75){_0x23b764({'cl':{'rgb':_0x28d47e}});return;}let _0x28ff48=_0x6ae526[_0x41bdfd(0x4b9)](_0x2cafcd[_0x41bdfd(0x302)][_0x41bdfd(0x7e9)]);if(!_0x28ff48){_0x23b764({'cl':{'rgb':_0x28d47e}});return;}let _0x5d9f1e=(_0x2d9c54=_0x28ff48[_0x41bdfd(0x7d1)](_0xebfe75[_0x41bdfd(0x5f8)]))==null?void 0x0:_0x2d9c54[_0x41bdfd(0x181)]();if(!_0x5d9f1e){_0x23b764({'cl':{'rgb':_0x28d47e}});return;}let _0x3d384b=(_0x29c57a=_0x28ff48[_0x41bdfd(0x4e3)]()['documentStyle'])==null?void 0x0:_0x29c57a[_0x41bdfd(0x491)];_0x23b764((0x0,_0x3bd019['getStyleInTextRange'])(_0x5d9f1e,_0xebfe75,{..._0x3d384b,'ff':(_0x281c81=_0x3d384b==null?void 0x0:_0x3d384b['ff'])==null?_0x2cafcd[_0x41bdfd(0x571)]['ff']:_0x281c81,'fs':(_0x555c47=_0x3d384b==null?void 0x0:_0x3d384b['fs'])==null?_0x2cafcd[_0x41bdfd(0x571)]['fs']:_0x555c47,'cl':(_0x287081=_0x3d384b==null?void 0x0:_0x3d384b['cl'])==null?{'rgb':_0x28d47e}:_0x287081}));};_0x37c3cf();let _0x56f030=_0x19043e[_0x1d2c1d(0x4e8)](_0x50f56f=>{const _0x4cdc0d=_0x1d2c1d;_0x57d2bb[_0x4cdc0d(0x349)](_0x50f56f['id'])&&_0x37c3cf();}),_0x2e8b5d=_0x536b86[_0x1d2c1d(0x2d2)][_0x1d2c1d(0x556)](_0x37c3cf);return()=>{const _0x4e8e1c=_0x1d2c1d;_0x56f030['dispose'](),_0x2e8b5d[_0x4e8e1c(0x331)]();};},[_0x19043e,_0x536b86,_0x6ae526]);let _0x5aa638=(_0x5417fb,_0x484ee9)=>{const _0xce595c=_0xe1563c;_0x19043e[_0xce595c(0x893)](_0x5417fb,_0x484ee9===void 0x0?void 0x0:{'value':_0x484ee9});},_0x1d4bbf=(_0x258c2d=_0x1e01c6['ff'])==null?_0x2cafcd['DEFAULT_STYLES']['ff']:_0x258c2d,_0x196532=(_0x285cb4=_0x1e01c6['fs'])==null?_0x2cafcd[_0xe1563c(0x571)]['fs']:_0x285cb4,_0x2712ed=_0x1e01c6['bl']===_0x2cafcd[_0xe1563c(0x48f)][_0xe1563c(0x860)],_0x508a33=_0x1e01c6['it']===_0x2cafcd[_0xe1563c(0x48f)][_0xe1563c(0x860)],_0x17a263=_0x499cd8(_0x1e01c6['ul']),_0x594e26=_0x499cd8(_0x1e01c6['st']),_0x2c8ec4=_0x1e01c6['va']===_0x2cafcd[_0xe1563c(0x564)][_0xe1563c(0x5be)],_0x51b0d4=_0x1e01c6['va']===_0x2cafcd[_0xe1563c(0x564)][_0xe1563c(0x79d)],_0x2255c0=(_0x20eb31=(_0x21c0f8=_0x1e01c6['bg'])==null?void 0x0:_0x21c0f8['rgb'])==null?_0x561de7:_0x20eb31;return(0x0,_0x43e701['jsxs'])(_0xe1563c(0x3ec),{'onMouseDown':_0x16fc01=>{const _0x23b831=_0xe1563c;_0x16fc01['stopPropagation'](),_0x365e04(_0x16fc01[_0x23b831(0x1f3)])||_0x16fc01['preventDefault']();},'className':(0x0,_0x3f5bc5['clsx'])(_0x11c623['root'],_0x3f5bc5[_0xe1563c(0x152)]),'children':[(0x0,_0x43e701[_0xe1563c(0x715)])(_0x37d4ce,{'children':(0x0,_0x43e701['jsx'])(_0x3ddfac,{})}),(0x0,_0x43e701['jsx'])(_0x3439d8,{}),(0x0,_0x43e701[_0xe1563c(0x39b)])(_0x37d4ce,{'children':[(0x0,_0x43e701['jsx'])(_0x26fc1b['FontFamilyDropdown'],{'ariaLabel':_0xe1563c(0x643),'className':'univer-w-28','inputClassName':_0xe1563c(0x765),'title':_0x1d4bbf,'value':_0x1d4bbf,'onChange':_0x1a1bd0=>_0x5aa638(_0x3bd019[_0xe1563c(0x3db)]['id'],_0x1a1bd0),'onMouseDown':_0x56b283=>{const _0x3ff49a=_0xe1563c;_0x56b283[_0x3ff49a(0x3ea)]();},'onPointerDown':_0x3e5b52=>{const _0x325165=_0xe1563c;_0x3e5b52[_0x325165(0x3ea)]();}}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x3f5bc5[_0xe1563c(0x1bc)],{'className':(0x0,_0x3f5bc5[_0xe1563c(0x679)])(_0x11c623[_0xe1563c(0x5ba)],_0xe1563c(0x35a)),'value':String(_0x196532),'options':_0x565c2b,'onChange':_0x1e0b34=>{const _0x42a9b3=_0xe1563c;let _0x112079=Number(_0x1e0b34);Number[_0x42a9b3(0x23a)](_0x112079)||_0x5aa638(_0x3bd019[_0x42a9b3(0x6b7)]['id'],_0x112079);}})]}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x3439d8,{}),(0x0,_0x43e701[_0xe1563c(0x39b)])(_0x37d4ce,{'children':[(0x0,_0x43e701[_0xe1563c(0x715)])(_0x2a9842,{'titleKey':'shape-editor-ui.toolbar.bold','active':_0x2712ed,'onClick':()=>_0x5aa638(_0x3bd019[_0xe1563c(0x44d)]['id']),'children':(0x0,_0x43e701['jsx'])(_0x3eece8,{})}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x2a9842,{'titleKey':'shape-editor-ui.toolbar.italic','active':_0x508a33,'onClick':()=>_0x5aa638(_0x3bd019[_0xe1563c(0x4f3)]['id']),'children':(0x0,_0x43e701[_0xe1563c(0x715)])(_0xc2160d,{})}),(0x0,_0x43e701['jsx'])(_0x2a9842,{'titleKey':'shape-editor-ui.toolbar.underline','active':_0x17a263,'onClick':()=>_0x5aa638(_0x3bd019['SetInlineFormatUnderlineCommand']['id']),'children':(0x0,_0x43e701[_0xe1563c(0x715)])(_0x99aa5b,{})}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x2a9842,{'titleKey':_0xe1563c(0x4c9),'active':_0x594e26,'onClick':()=>_0x5aa638(_0x3bd019['SetInlineFormatStrikethroughCommand']['id']),'children':(0x0,_0x43e701[_0xe1563c(0x715)])(_0x580161,{})})]}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x3439d8,{}),(0x0,_0x43e701['jsxs'])(_0x37d4ce,{'children':[(0x0,_0x43e701[_0xe1563c(0x715)])(_0x2a9842,{'titleKey':_0xe1563c(0x4ed),'active':_0x2c8ec4,'onClick':()=>_0x5aa638(_0x3bd019['SetInlineFormatSubscriptCommand']['id']),'children':(0x0,_0x43e701[_0xe1563c(0x39b)])(_0xe1563c(0x2bf),{'className':_0xe1563c(0x5f7),'children':['X',(0x0,_0x43e701[_0xe1563c(0x715)])(_0xe1563c(0x85e),{'children':'2'})]})}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x2a9842,{'titleKey':_0xe1563c(0x5eb),'active':_0x51b0d4,'onClick':()=>_0x5aa638(_0x3bd019[_0xe1563c(0x3e9)]['id']),'children':(0x0,_0x43e701[_0xe1563c(0x39b)])(_0xe1563c(0x2bf),{'className':_0xe1563c(0x5f7),'children':['X',(0x0,_0x43e701[_0xe1563c(0x715)])(_0xe1563c(0x2f6),{'children':'2'})]})})]}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x3439d8,{}),(0x0,_0x43e701[_0xe1563c(0x39b)])(_0x37d4ce,{'children':[(0x0,_0x43e701['jsx'])(_0x48afe6,{'titleKey':_0xe1563c(0x664),'textStyle':_0x1e01c6,'fallbackColor':(_0x29383d=(_0x4351c7=_0x1e01c6['cl'])==null?void 0x0:_0x4351c7[_0xe1563c(0x838)])==null?_0x28d47e:_0x29383d,'onChange':_0x5d05a7=>{const _0x56b096=_0xe1563c;_0x19043e[_0x56b096(0x893)](_0x3bd019[_0x56b096(0x3cb)]['id'],{'value':_0x5d05a7}),_0x23b764(_0x77aace=>({..._0x77aace,..._0x5d05a7}));}}),(0x0,_0x43e701[_0xe1563c(0x715)])(_0x58cd07,{'titleKey':_0xe1563c(0x798),'color':_0x2255c0,'onApply':()=>_0x5aa638(_0x3bd019[_0xe1563c(0x409)]['id'],_0x2255c0),'onReset':()=>{const _0x554c21=_0xe1563c;_0x19043e['executeCommand'](_0x3bd019[_0x554c21(0x41a)]['id']),_0x23b764(_0x53339c=>({..._0x53339c,'bg':{'rgb':null}}));},'onChange':_0x4ddfa3=>{_0x5aa638(_0x3bd019['SetInlineFormatTextBackgroundColorCommand']['id'],_0x4ddfa3),_0x23b764(_0x188076=>({..._0x188076,'bg':{'rgb':_0x4ddfa3}}));}})]})]});}_0x680801[_0x57b2d2(0x64b)]=_0x3ddfac,_0x680801[_0x57b2d2(0x79f)]=_0x3b7064,_0x680801['SHAPE_EDITOR_TRANSFORMER_CONFIG']=_0x4d5d0f,_0x680801[_0x57b2d2(0x1a4)]=_0x472d0a,_0x680801[_0x57b2d2(0x59f)]=_0x561de7,_0x680801[_0x57b2d2(0x57a)]=_0x28d47e,_0x680801[_0x57b2d2(0x558)]=0x10,_0x680801['SHAPE_TEXT_EDITOR_QUOTE_COMMAND_ID']=_0xc3d1d0,_0x680801[_0x57b2d2(0x5af)]=0x10,_0x680801[_0x57b2d2(0x51e)]=_0x4c57c8,_0x680801[_0x57b2d2(0x430)]=_0x4b8bcf,_0x680801[_0x57b2d2(0x164)]=_0x35d0e5,_0x680801[_0x57b2d2(0x5e0)]=_0x38669c,_0x680801[_0x57b2d2(0x730)]=_0x24519e,_0x680801[_0x57b2d2(0x705)]=_0x31e04e,_0x680801['ShapeFloatingToolbarFontSizeSelect']=_0x4a74b6,_0x680801['ShapeFloatingToolbarIcon']=_0x3f5933,_0x680801[_0x57b2d2(0x2aa)]=_0x4fd9d2,_0x680801[_0x57b2d2(0x29d)]=_0x7a37e8,_0x680801[_0x57b2d2(0x50b)]=_0x296811,_0x680801['ShapeImageFillEditor']=_0x42a348,_0x680801[_0x57b2d2(0x212)]=_0x1a2c7b,_0x680801['ShapePickerDropdown']=_0x1622eb,_0x680801[_0x57b2d2(0x2ea)]=_0x202702,_0x680801['ShapeStrokePanelButton']=_0x1edc0d,_0x680801[_0x57b2d2(0x4ae)]=_0x43c6b9,_0x680801['ShapeTextEditorContainer']=_0x35d87f,_0x680801[_0x57b2d2(0x50e)]=_0x13b104,_0x680801['ShapeTextFloatToolbar']=_0x589789,_0x680801[_0x57b2d2(0x2ac)]=_0x48afe6,_0x680801[_0x57b2d2(0x731)]=_0x571029,Object[_0x57b2d2(0x81c)](_0x680801,'UniverShapeEditorUIPlugin',{'enumerable':!0x0,'get':function(){return _0x161fb0;}}),_0x680801[_0x57b2d2(0x42b)]=_0x556634,_0x680801['buildShapeTextDataUpdate']=_0x400403,_0x680801[_0x57b2d2(0x3f7)]=_0x552899,_0x680801['createShapeTextBoxShapeData']=_0x1ed8d8,_0x680801[_0x57b2d2(0x683)]=_0x387299,_0x680801[_0x57b2d2(0x777)]=_0x112c5a,_0x680801['getShapeTextOpticalVerticalOffset']=_0x44b17c,_0x680801['isShapeTextEditorDocumentEmpty']=_0x4ff123,_0x680801[_0x57b2d2(0x6e6)]=_0x23e314,_0x680801['normalizeShapeTextModel']=_0x18cbac,_0x680801['plainShapeTextToDocumentData']=_0x39b5de,_0x680801[_0x57b2d2(0x787)]=_0x33580d,_0x680801['resolveShapeTextBoxResizePolicy']=_0x43bc7c,_0x680801[_0x57b2d2(0x7f5)]=_0x44406c,_0x680801[_0x57b2d2(0x610)]=_0x1cac3d,_0x680801[_0x57b2d2(0x3d9)]=_0x385aad,_0x680801[_0x57b2d2(0x363)]=_0x26adf5,_0x680801['resolveShapeTextEditorFlowAxis']=_0x4817a3,_0x680801[_0x57b2d2(0x26f)]=_0x5f117a,_0x680801['resolveShapeTextEditorWrapStrategy']=_0x30a71b,_0x680801[_0x57b2d2(0x445)]=_0x436bc5,_0x680801[_0x57b2d2(0x33e)]=_0x31cc82,_0x680801[_0x57b2d2(0x2b0)]=_0x5ee2f3,_0x680801[_0x57b2d2(0x380)]=_0x406f9d,_0x680801[_0x57b2d2(0x7a5)]=_0x4decc8,_0x680801[_0x57b2d2(0x200)]=_0x5401d6,_0x680801['stripShapeTextDocumentLayout']=_0x4173d7,_0x680801[_0x57b2d2(0x509)]=_0x32c64c;}));
|