@tuki-io/tuki-widgets 0.0.176 → 0.0.178
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 +24 -24
- package/contact-center/cc-script-editor/cc-script-editor.component.d.ts +53 -0
- package/contact-center/cc-script-editor/cc-script-editor.module.d.ts +20 -0
- package/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.d.ts +35 -0
- package/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.d.ts +38 -0
- package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.d.ts +34 -0
- package/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.d.ts +9 -0
- package/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.d.ts +27 -0
- package/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.d.ts +27 -0
- package/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.d.ts +14 -0
- package/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.d.ts +11 -0
- package/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.d.ts +24 -0
- package/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.d.ts +66 -0
- package/contact-center/cc-script-editor/constants/cytoscape.config.d.ts +2 -0
- package/contact-center/cc-script-editor/constants/wxcc-api.constants.d.ts +15 -0
- package/contact-center/cc-script-editor/services/wxcc-activity-creation.service.d.ts +21 -0
- package/contact-center/cc-script-editor/services/wxcc-activity-manage.service.d.ts +8 -0
- package/contact-center/cc-script-editor/services/wxcc-flow-api.service.d.ts +43 -0
- package/contact-center/cc-script-editor/services/wxcc2graph.service.d.ts +42 -0
- package/contact-center/cc-script-editor/types/extended-activity.d.ts +47 -0
- package/contact-center/cc-script-editor/types/wxcc-activity.d.ts +96 -0
- package/contact-center/cc-script-editor/types/wxcc.d.ts +161 -0
- package/contact-center/cc-script-editor/utils/node-html-template.d.ts +3 -0
- package/contact-center/cc-script-editor/utils/node-mappings.d.ts +54 -0
- package/contact-center/public-api.d.ts +2 -0
- package/contact-center/shared/material.module.d.ts +2 -1
- package/esm2020/contact-center/cc-script-editor/cc-script-editor.component.mjs +193 -0
- package/esm2020/contact-center/cc-script-editor/cc-script-editor.module.mjs +83 -0
- package/esm2020/contact-center/cc-script-editor/components/dialogs/add-node-dialog/add-node-dialog.component.mjs +60 -0
- package/esm2020/contact-center/cc-script-editor/components/dialogs/link-node-dialog/link-node-dialog.component.mjs +83 -0
- package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.component.mjs +104 -0
- package/esm2020/contact-center/cc-script-editor/components/floating-toolbar/floating-toolbar.module.mjs +28 -0
- package/esm2020/contact-center/cc-script-editor/components/node-action-toolbar/node-action-toolbar.component.mjs +65 -0
- package/esm2020/contact-center/cc-script-editor/components/node-details-sidebar/node-details-sidebar.component.mjs +97 -0
- package/esm2020/contact-center/cc-script-editor/components/node-search-panel/node-search-panel.component.mjs +43 -0
- package/esm2020/contact-center/cc-script-editor/components/wxcc-actions-bar/wxcc-actions-bar.component.mjs +27 -0
- package/esm2020/contact-center/cc-script-editor/components/wxcc-file-selection-bar/wxcc-file-selection-bar.component.mjs +61 -0
- package/esm2020/contact-center/cc-script-editor/components/wxcc-flowchart/wxcc-flowchart.component.mjs +434 -0
- package/esm2020/contact-center/cc-script-editor/constants/cytoscape.config.mjs +72 -0
- package/esm2020/contact-center/cc-script-editor/constants/wxcc-api.constants.mjs +14 -0
- package/esm2020/contact-center/cc-script-editor/mock/data/QWC_ir.json +912 -0
- package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-creation.service.mjs +82 -0
- package/esm2020/contact-center/cc-script-editor/services/wxcc-activity-manage.service.mjs +162 -0
- package/esm2020/contact-center/cc-script-editor/services/wxcc-flow-api.service.mjs +79 -0
- package/esm2020/contact-center/cc-script-editor/services/wxcc2graph.service.mjs +144 -0
- package/esm2020/contact-center/cc-script-editor/types/extended-activity.mjs +4 -0
- package/esm2020/contact-center/cc-script-editor/types/wxcc-activity.mjs +2 -0
- package/esm2020/contact-center/cc-script-editor/types/wxcc.mjs +6 -0
- package/esm2020/contact-center/cc-script-editor/utils/node-html-template.mjs +76 -0
- package/esm2020/contact-center/cc-script-editor/utils/node-mappings.mjs +109 -0
- package/esm2020/contact-center/public-api.mjs +3 -1
- package/esm2020/contact-center/shared/material.module.mjs +8 -4
- package/esm2020/lib/widgets.component.mjs +9 -9
- package/esm2020/lib/widgets.module.mjs +1 -1
- package/esm2020/lib/widgets.service.mjs +1 -1
- package/esm2020/public-api.mjs +1 -1
- package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +2 -2
- package/esm2020/user-device-manage/public-api.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/device.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/line-association.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/line-directory.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/line.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/notification.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/recording-options.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/site-defaults.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +1 -1
- package/esm2020/user-device-manage/src/classes/types.mjs +1 -1
- package/esm2020/user-device-manage/src/common-functions.mjs +1 -1
- package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +3 -3
- package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +3 -3
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +3 -3
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +1 -1
- package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +2 -2
- package/esm2020/user-device-manage/src/environments/environment.mjs +1 -1
- package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +1 -1
- package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +1 -1
- package/esm2020/user-device-manage/src/material.module.mjs +1 -1
- package/esm2020/user-device-manage/src/notifications/notification.component.mjs +3 -3
- package/esm2020/user-device-manage/src/services/device.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/notification.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/site-settings.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/utils.service.mjs +1 -1
- package/esm2020/user-device-manage/src/services/validation.service.mjs +1 -1
- package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +1 -1
- package/esm2020/user-manage/public-api.mjs +1 -1
- package/esm2020/user-manage/src/classes/device.mjs +1 -1
- package/esm2020/user-manage/src/classes/line-association.mjs +1 -1
- package/esm2020/user-manage/src/classes/line-call-info-display.mjs +1 -1
- package/esm2020/user-manage/src/classes/notification.mjs +1 -1
- package/esm2020/user-manage/src/classes/recording-options.mjs +1 -1
- package/esm2020/user-manage/src/classes/table-data.mjs +1 -1
- package/esm2020/user-manage/src/classes/translation-pattern.mjs +1 -1
- package/esm2020/user-manage/src/classes/user-list.mjs +1 -1
- package/esm2020/user-manage/src/common-functions.mjs +1 -1
- package/esm2020/user-manage/src/environments/environment.mjs +1 -1
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +1 -1
- package/esm2020/user-manage/src/material.module.mjs +1 -1
- package/esm2020/user-manage/src/notifications/notification.component.mjs +3 -3
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +1 -1
- package/esm2020/user-manage/src/services/dns.service.mjs +1 -1
- package/esm2020/user-manage/src/services/line.service.mjs +1 -1
- package/esm2020/user-manage/src/services/notification.service.mjs +1 -1
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +1 -1
- package/esm2020/user-manage/src/services/site-settings.service.mjs +1 -1
- package/esm2020/user-manage/src/services/sorting-utils.service.mjs +1 -1
- package/esm2020/user-manage/src/services/utils.service.mjs +1 -1
- package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +3 -3
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +2 -2
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +1 -1
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +3 -3
- package/esm2020/users-list/public-api.mjs +1 -1
- package/esm2020/users-list/src/classes/app-location.mjs +1 -1
- package/esm2020/users-list/src/classes/device.mjs +1 -1
- package/esm2020/users-list/src/classes/line.mjs +1 -1
- package/esm2020/users-list/src/classes/notification.mjs +1 -1
- package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
- package/esm2020/users-list/src/classes/table-data.mjs +1 -1
- package/esm2020/users-list/src/classes/user-list.mjs +1 -1
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +3 -3
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +3 -3
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +3 -3
- package/esm2020/users-list/src/services/api-webex.service.mjs +1 -1
- package/esm2020/users-list/src/services/api.service.mjs +1 -1
- package/esm2020/users-list/src/services/events-communication.service.mjs +1 -1
- package/esm2020/users-list/src/services/notification.service.mjs +1 -1
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +1 -1
- package/esm2020/users-list/src/services/site-settings.service.mjs +1 -1
- package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +3 -3
- package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +1 -1
- package/esm2020/users-list/src/utils/common-functions.mjs +1 -1
- package/esm2020/users-list/src/utils/utils.service.mjs +1 -1
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs +2948 -3
- package/fesm2015/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +2 -2
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +10 -10
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +8 -8
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +8 -8
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets.mjs +8 -8
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs +2974 -3
- package/fesm2020/tuki-io-tuki-widgets-contact-center.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +2 -2
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +10 -10
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +8 -8
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +8 -8
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets.mjs +8 -8
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const BASE = '/api/uccx/migration';
|
|
2
|
+
function buildUrl(customerId, uccxIp, fileName, action, state, format) {
|
|
3
|
+
return `${BASE}/customer/${customerId}/uccx/${uccxIp}/filename/${fileName}/${action}/type/${state}/wxcc${format ? '/ir' : ''}/json`;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Any WxCC flowchart api endpoint should go here
|
|
7
|
+
*/
|
|
8
|
+
export const WXCC_FLOWCHART_API = {
|
|
9
|
+
GET_DATA: (params, state = 'ORIG', format) => buildUrl(params.customerId, params.uccxIp, params.fileName, 'get', state, format),
|
|
10
|
+
SAVE_DRAFT: (params, format) => buildUrl(params.customerId, params.uccxIp, params.fileName, 'save', 'DRAFT', format),
|
|
11
|
+
RESET_DRAFT: (params, format) => `${BASE}/customer/${params.customerId}/uccx/${params.uccxIp}/filename/${params.fileName}${format ? '' : '/wxcc'}/reset/draft`,
|
|
12
|
+
COMPLETE_FLOW: (params, format) => buildUrl(params.customerId, params.uccxIp, params.fileName, 'save', 'COMPLETED', format)
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3hjYy1hcGkuY29uc3RhbnRzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL2NvbnRhY3QtY2VudGVyL2NjLXNjcmlwdC1lZGl0b3IvY29uc3RhbnRzL3d4Y2MtYXBpLmNvbnN0YW50cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFTQSxNQUFNLElBQUksR0FBRyxxQkFBcUIsQ0FBQztBQUVuQyxTQUFTLFFBQVEsQ0FDYixVQUFrQixFQUNsQixNQUFjLEVBQ2QsUUFBZ0IsRUFDaEIsTUFBc0IsRUFDdEIsS0FBZ0IsRUFDaEIsTUFBeUI7SUFFekIsT0FBTyxHQUFHLElBQUksYUFBYSxVQUFVLFNBQVMsTUFBTSxhQUFhLFFBQVEsSUFBSSxNQUFNLFNBQVMsS0FBSyxRQUFRLE1BQU0sQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxFQUFFLE9BQU8sQ0FBQztBQUN4SSxDQUFDO0FBQ0Q7O0dBRUc7QUFDSCxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRztJQUM5QixRQUFRLEVBQUUsQ0FBQyxNQUF5QixFQUFFLFFBQW1CLE1BQU0sRUFBRSxNQUFhLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FDdkYsTUFBTSxDQUFDLFVBQVUsRUFDakIsTUFBTSxDQUFDLE1BQU0sRUFDYixNQUFNLENBQUMsUUFBUSxFQUNmLEtBQUssRUFDTCxLQUFLLEVBQ0wsTUFBTSxDQUNUO0lBQ0QsVUFBVSxFQUFFLENBQUMsTUFBeUIsRUFBRSxNQUFhLEVBQUUsRUFBRSxDQUFDLFFBQVEsQ0FDOUQsTUFBTSxDQUFDLFVBQVUsRUFDakIsTUFBTSxDQUFDLE1BQU0sRUFDYixNQUFNLENBQUMsUUFBUSxFQUNmLE1BQU0sRUFDTixPQUFPLEVBQ1AsTUFBTSxDQUNUO0lBQ0QsV0FBVyxFQUFFLENBQUMsTUFBeUIsRUFBRSxNQUFhLEVBQUUsRUFBRSxDQUN0RCxHQUFHLElBQUksYUFBYSxNQUFNLENBQUMsVUFBVSxTQUFTLE1BQU0sQ0FBQyxNQUFNLGFBQWEsTUFBTSxDQUFDLFFBQVEsR0FBRyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxjQUFjO0lBQ2pJLGFBQWEsRUFBRSxDQUFDLE1BQXlCLEVBQUUsTUFBYSxFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQ2pFLE1BQU0sQ0FBQyxVQUFVLEVBQ2pCLE1BQU0sQ0FBQyxNQUFNLEVBQ2IsTUFBTSxDQUFDLFFBQVEsRUFDZixNQUFNLEVBQ04sV0FBVyxFQUNYLE1BQU0sQ0FDVDtDQUNKLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJcclxuZXhwb3J0IHR5cGUgV3hDQ0Jhc2VVUkxQYXJhbXMgPSB7XHJcbiAgICBjdXN0b21lcklkOiBudW1iZXI7XHJcbiAgICB1Y2N4SXA6IHN0cmluZztcclxuICAgIGZpbGVOYW1lOiBzdHJpbmc7XHJcbn07XHJcblxyXG5leHBvcnQgdHlwZSBGaWxlU3RhdGUgPSAnT1JJRycgfCAnRFJBRlQnIHwgJ0NPTVBMRVRFRCc7XHJcblxyXG5jb25zdCBCQVNFID0gJy9hcGkvdWNjeC9taWdyYXRpb24nO1xyXG5cclxuZnVuY3Rpb24gYnVpbGRVcmwoXHJcbiAgICBjdXN0b21lcklkOiBudW1iZXIsXHJcbiAgICB1Y2N4SXA6IHN0cmluZyxcclxuICAgIGZpbGVOYW1lOiBzdHJpbmcsXHJcbiAgICBhY3Rpb246ICdnZXQnIHwgJ3NhdmUnLFxyXG4gICAgc3RhdGU6IEZpbGVTdGF0ZSxcclxuICAgIGZvcm1hdD86ICdpcicgfCB1bmRlZmluZWRcclxuKTogc3RyaW5nIHtcclxuICAgIHJldHVybiBgJHtCQVNFfS9jdXN0b21lci8ke2N1c3RvbWVySWR9L3VjY3gvJHt1Y2N4SXB9L2ZpbGVuYW1lLyR7ZmlsZU5hbWV9LyR7YWN0aW9ufS90eXBlLyR7c3RhdGV9L3d4Y2Mke2Zvcm1hdCA/ICcvaXInIDogJyd9L2pzb25gO1xyXG59XHJcbi8qKlxyXG4gKiBBbnkgV3hDQyBmbG93Y2hhcnQgYXBpIGVuZHBvaW50IHNob3VsZCBnbyBoZXJlXHJcbiAqL1xyXG5leHBvcnQgY29uc3QgV1hDQ19GTE9XQ0hBUlRfQVBJID0ge1xyXG4gICAgR0VUX0RBVEE6IChwYXJhbXM6IFd4Q0NCYXNlVVJMUGFyYW1zLCBzdGF0ZTogRmlsZVN0YXRlID0gJ09SSUcnLCBmb3JtYXQ/OiAnaXInKSA9PiBidWlsZFVybChcclxuICAgICAgICBwYXJhbXMuY3VzdG9tZXJJZCxcclxuICAgICAgICBwYXJhbXMudWNjeElwLFxyXG4gICAgICAgIHBhcmFtcy5maWxlTmFtZSxcclxuICAgICAgICAnZ2V0JyxcclxuICAgICAgICBzdGF0ZSxcclxuICAgICAgICBmb3JtYXRcclxuICAgICksXHJcbiAgICBTQVZFX0RSQUZUOiAocGFyYW1zOiBXeENDQmFzZVVSTFBhcmFtcywgZm9ybWF0PzogJ2lyJykgPT4gYnVpbGRVcmwoXHJcbiAgICAgICAgcGFyYW1zLmN1c3RvbWVySWQsXHJcbiAgICAgICAgcGFyYW1zLnVjY3hJcCxcclxuICAgICAgICBwYXJhbXMuZmlsZU5hbWUsXHJcbiAgICAgICAgJ3NhdmUnLFxyXG4gICAgICAgICdEUkFGVCcsXHJcbiAgICAgICAgZm9ybWF0XHJcbiAgICApLFxyXG4gICAgUkVTRVRfRFJBRlQ6IChwYXJhbXM6IFd4Q0NCYXNlVVJMUGFyYW1zLCBmb3JtYXQ/OiAnaXInKSA9PlxyXG4gICAgICAgIGAke0JBU0V9L2N1c3RvbWVyLyR7cGFyYW1zLmN1c3RvbWVySWR9L3VjY3gvJHtwYXJhbXMudWNjeElwfS9maWxlbmFtZS8ke3BhcmFtcy5maWxlTmFtZX0ke2Zvcm1hdCA/ICcnIDogJy93eGNjJ30vcmVzZXQvZHJhZnRgLFxyXG4gICAgQ09NUExFVEVfRkxPVzogKHBhcmFtczogV3hDQ0Jhc2VVUkxQYXJhbXMsIGZvcm1hdD86ICdpcicpID0+IGJ1aWxkVXJsKFxyXG4gICAgICAgIHBhcmFtcy5jdXN0b21lcklkLFxyXG4gICAgICAgIHBhcmFtcy51Y2N4SXAsXHJcbiAgICAgICAgcGFyYW1zLmZpbGVOYW1lLFxyXG4gICAgICAgICdzYXZlJyxcclxuICAgICAgICAnQ09NUExFVEVEJyxcclxuICAgICAgICBmb3JtYXRcclxuICAgIClcclxufTsiXX0=
|