smartbi-toolkit 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. package/README.md +41 -0
  2. package/dist/index.d.ts +2 -2
  3. package/dist/index.js +99 -0
  4. package/dist/main.d.ts +0 -1
  5. package/dist/main.js +18 -0
  6. package/dist/methods/AnalysisReportService.d.ts +93 -0
  7. package/dist/methods/AnalysisReportService.js +126 -0
  8. package/dist/methods/BusinessThemeService.d.ts +8 -0
  9. package/dist/methods/BusinessThemeService.js +11 -0
  10. package/dist/methods/BusinessViewService.d.ts +94 -0
  11. package/dist/methods/BusinessViewService.js +120 -0
  12. package/dist/methods/CatalogService.d.ts +1 -89
  13. package/dist/methods/CatalogService.js +224 -0
  14. package/dist/methods/ClientCombinedReportService.d.ts +63 -0
  15. package/dist/methods/ClientCombinedReportService.js +82 -0
  16. package/dist/methods/ClientInsightService.d.ts +83 -0
  17. package/dist/methods/ClientInsightService.js +107 -0
  18. package/dist/methods/ClientReportService.d.ts +162 -0
  19. package/dist/methods/ClientReportService.js +206 -0
  20. package/dist/methods/CombinedReportService.d.ts +7 -0
  21. package/dist/methods/CombinedReportService.js +10 -0
  22. package/dist/methods/DataSourceService.d.ts +178 -0
  23. package/dist/methods/DataSourceService.js +220 -0
  24. package/dist/methods/GraphicReportService.d.ts +6 -0
  25. package/dist/methods/GraphicReportService.js +10 -0
  26. package/dist/methods/InsightReport.d.ts +71 -0
  27. package/dist/methods/InsightReport.js +98 -0
  28. package/dist/methods/MetadataService.d.ts +37 -0
  29. package/dist/methods/MetadataService.js +47 -0
  30. package/dist/methods/OfficeReport.d.ts +49 -0
  31. package/dist/methods/OfficeReport.js +65 -0
  32. package/dist/methods/OfficeReportService.d.ts +36 -0
  33. package/dist/methods/OfficeReportService.js +46 -0
  34. package/dist/methods/OltpMetadataService.d.ts +19 -0
  35. package/dist/methods/OltpMetadataService.js +25 -0
  36. package/dist/methods/ParameterService.d.ts +12 -0
  37. package/dist/methods/ParameterService.js +18 -0
  38. package/dist/methods/PoolService.d.ts +11 -0
  39. package/dist/methods/PoolService.js +17 -0
  40. package/dist/methods/PortalService.d.ts +66 -0
  41. package/dist/methods/PortalService.js +89 -0
  42. package/dist/methods/Report.d.ts +178 -0
  43. package/dist/methods/Report.js +230 -0
  44. package/dist/methods/SSReport.d.ts +86 -0
  45. package/dist/methods/SSReport.js +114 -0
  46. package/dist/methods/ScheduleTaskService.d.ts +12 -0
  47. package/dist/methods/ScheduleTaskService.js +18 -0
  48. package/dist/methods/SimpleReportService.d.ts +12 -0
  49. package/dist/methods/SimpleReportService.js +18 -0
  50. package/dist/methods/SpreadSheetReportService.d.ts +43 -0
  51. package/dist/methods/SpreadSheetReportService.js +55 -0
  52. package/dist/methods/SystemConfigService.d.ts +28 -0
  53. package/dist/methods/SystemConfigService.js +24 -0
  54. package/dist/methods/TimeConsuming.d.ts +6 -0
  55. package/dist/methods/TimeConsuming.js +9 -0
  56. package/dist/methods/TimeConsumingService.d.ts +5 -0
  57. package/dist/methods/TimeConsumingService.js +9 -0
  58. package/dist/methods/UserManagerService.d.ts +258 -0
  59. package/dist/methods/UserManagerService.js +332 -0
  60. package/dist/types.d.ts +442 -0
  61. package/dist/types.js +125 -0
  62. package/dist/vite-plugin-smartbi/index.d.ts +36 -0
  63. package/dist/vite-plugin-smartbi/index.js +107 -0
  64. package/package.json +129 -11
  65. package/dist/CatalogService.es.js +0 -112
  66. package/dist/SmartbiToolbox.es.js +0 -51
  67. package/dist/index.d.ts.map +0 -1
  68. package/dist/main.d.ts.map +0 -1
  69. package/dist/methods/CatalogService.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,35 +1,153 @@
1
1
  {
2
2
  "name": "smartbi-toolkit",
3
3
  "private": false,
4
- "version": "1.0.1",
4
+ "version": "1.1.0",
5
+ "keys": [
6
+ "smartbi",
7
+ "扩展包",
8
+ "ext",
9
+ "typescript"
10
+ ],
5
11
  "type": "module",
6
- "module": "./dist/SmartbiToolbox.es.js",
12
+ "module": "./dist/index.js",
7
13
  "types": "./dist/index.d.ts",
8
14
  "exports": {
9
15
  ".": {
10
- "import": "./dist/SmartbiToolbox.es.js",
16
+ "import": "./dist/index.js",
11
17
  "types": "./dist/index.d.ts"
12
18
  },
19
+ "./VitePluginSmartbi": {
20
+ "import": "./dist/vite-plugin-smartbi/index.js",
21
+ "types": "./dist/vite-plugin-smartbi/index.d.ts"
22
+ },
23
+ "./AnalysisReportService": {
24
+ "import": "./dist/methods/AnalysisReportService.js",
25
+ "types": "./dist/methods/AnalysisReportService.d.ts"
26
+ },
27
+ "./BusinessThemeService": {
28
+ "import": "./dist/methods/BusinessThemeService.js",
29
+ "types": "./dist/methods/BusinessThemeService.d.ts"
30
+ },
31
+ "./BusinessViewService": {
32
+ "import": "./dist/methods/BusinessViewService.js",
33
+ "types": "./dist/methods/BusinessViewService.d.ts"
34
+ },
13
35
  "./CatalogService": {
14
- "import": "./dist/CatalogService.es.js",
36
+ "import": "./dist/methods/CatalogService.js",
15
37
  "types": "./dist/methods/CatalogService.d.ts"
38
+ },
39
+ "./ClientCombinedReportService": {
40
+ "import": "./dist/methods/ClientCombinedReportService.js",
41
+ "types": "./dist/methods/ClientCombinedReportService.d.ts"
42
+ },
43
+ "./ClientInsightService": {
44
+ "import": "./dist/methods/ClientInsightService.js",
45
+ "types": "./dist/methods/ClientInsightService.d.ts"
46
+ },
47
+ "./ClientReportService": {
48
+ "import": "./dist/methods/ClientReportService.js",
49
+ "types": "./dist/methods/ClientReportService.d.ts"
50
+ },
51
+ "./CombinedReportService": {
52
+ "import": "./dist/methods/CombinedReportService.js",
53
+ "types": "./dist/methods/CombinedReportService.d.ts"
54
+ },
55
+ "./DataSourceService": {
56
+ "import": "./dist/methods/DataSourceService.js",
57
+ "types": "./dist/methods/DataSourceService.d.ts"
58
+ },
59
+ "./GraphicReportService": {
60
+ "import": "./dist/methods/GraphicReportService.js",
61
+ "types": "./dist/methods/GraphicReportService.d.ts"
62
+ },
63
+ "./InsightReport": {
64
+ "import": "./dist/methods/InsightReport.js",
65
+ "types": "./dist/methods/InsightReport.d.ts"
66
+ },
67
+ "./MetadataService": {
68
+ "import": "./dist/methods/MetadataService.js",
69
+ "types": "./dist/methods/MetadataService.d.ts"
70
+ },
71
+ "./OfficeReport": {
72
+ "import": "./dist/methods/OfficeReport.js",
73
+ "types": "./dist/methods/OfficeReport.d.ts"
74
+ },
75
+ "./OfficeReportService": {
76
+ "import": "./dist/methods/OfficeReportService.js",
77
+ "types": "./dist/methods/OfficeReportService.d.ts"
78
+ },
79
+ "./OltpMetadataService": {
80
+ "import": "./dist/methods/OltpMetadataService.js",
81
+ "types": "./dist/methods/OltpMetadataService.d.ts"
82
+ },
83
+ "./ParameterService": {
84
+ "import": "./dist/methods/ParameterService.js",
85
+ "types": "./dist/methods/ParameterService.d.ts"
86
+ },
87
+ "./PoolService": {
88
+ "import": "./dist/methods/PoolService.js",
89
+ "types": "./dist/methods/PoolService.d.ts"
90
+ },
91
+ "./PortalService": {
92
+ "import": "./dist/methods/PortalService.js",
93
+ "types": "./dist/methods/PortalService.d.ts"
94
+ },
95
+ "./Report": {
96
+ "import": "./dist/methods/Report.js",
97
+ "types": "./dist/methods/Report.d.ts"
98
+ },
99
+ "./SSReport": {
100
+ "import": "./dist/methods/SSReport.js",
101
+ "types": "./dist/methods/SSReport.d.ts"
102
+ },
103
+ "./ScheduleTaskService": {
104
+ "import": "./dist/methods/ScheduleTaskService.js",
105
+ "types": "./dist/methods/ScheduleTaskService.d.ts"
106
+ },
107
+ "./SimpleReportService": {
108
+ "import": "./dist/methods/SimpleReportService.js",
109
+ "types": "./dist/methods/SimpleReportService.d.ts"
110
+ },
111
+ "./SpreadSheetReportService": {
112
+ "import": "./dist/methods/SpreadSheetReportService.js",
113
+ "types": "./dist/methods/SpreadSheetReportService.d.ts"
114
+ },
115
+ "./SystemConfigService": {
116
+ "import": "./dist/methods/SystemConfigService.js",
117
+ "types": "./dist/methods/SystemConfigService.d.ts"
118
+ },
119
+ "./TimeConsuming": {
120
+ "import": "./dist/methods/TimeConsuming.js",
121
+ "types": "./dist/methods/TimeConsuming.d.ts"
122
+ },
123
+ "./TimeConsumingService": {
124
+ "import": "./dist/methods/TimeConsumingService.js",
125
+ "types": "./dist/methods/TimeConsumingService.d.ts"
126
+ },
127
+ "./UserManagerService": {
128
+ "import": "./dist/methods/UserManagerService.js",
129
+ "types": "./dist/methods/UserManagerService.d.ts"
16
130
  }
17
131
  },
18
132
  "scripts": {
19
- "dev": "vite",
20
- "b": "tsc",
21
- "build": "tsc && vite build",
22
- "preview": "vite preview"
133
+ "build": "tsc"
23
134
  },
24
135
  "files": [
25
136
  "dist"
26
137
  ],
27
138
  "devDependencies": {
139
+ "@types/fs-extra": "^11.0.4",
140
+ "@types/node": "^25.0.10",
28
141
  "typescript": "~5.9.3",
29
- "vite": "8.0.0-beta.8",
30
- "vite-plugin-dts": "^4.5.4"
142
+ "vite": "8.0.0-beta.9"
143
+ },
144
+ "peerDependencies": {
145
+ "axios": "^1.3.6",
146
+ "chalk": "^5.2.0"
31
147
  },
32
148
  "dependencies": {
33
- "axios": "^1.13.2"
149
+ "axios": "^1.13.2",
150
+ "chalk": "^5.6.2",
151
+ "fs-extra": "^11.3.3"
34
152
  }
35
153
  }
@@ -1,112 +0,0 @@
1
- import { smartbi } from "./SmartbiToolbox.es.js";
2
- const AccessType = {
3
- REF: "REF",
4
- READ: "READ",
5
- WRITE: "WRITE"
6
- }, CatalogElementType = {
7
- FOLDER: "FOLDER",
8
- SIMPLE_REPORT: "SIMPLE_REPORT",
9
- ANALYSIS_REPORT: "ANALYSIS_REPORT",
10
- COMBINED_QUERY: "COMBINED_QUERY",
11
- INSIGHT: "INSIGHT",
12
- OLAP_REPORT: "OLAP_REPORT",
13
- DASHBOARD: "DASHBOARD",
14
- SMARTBIX_PAGE: "SMARTBIX_PAGE",
15
- DATASET: "DATASET",
16
- VISUAL: "VISUAL",
17
- SQL: "SQL",
18
- PROCEDURE: "PROCEDURE",
19
- NATIVE_SQL: "NATIVE_SQL",
20
- JAVA: "JAVA",
21
- SMARTBIX_DATASET: "SMARTBIX_DATASET",
22
- AUGMENTED_DATASET: "AUGMENTED_DATASET",
23
- BUSINESS_VIEW: "BUSINESS_VIEW",
24
- BUSINESS_SUBJECT: "BUSINESS_SUBJECT",
25
- BUSINESS_QUERY: "BUSINESS_QUERY",
26
- SPREADSHEET_REPORT: "SPREADSHEET_REPORT",
27
- WEB_SPREADSHEET_REPORT: "WEB_SPREADSHEET_REPORT",
28
- DATA_PROCESS: "SMARTBI_DATAPROCESS",
29
- ETL_AUTOMATION: "ETL_AUTOMATION",
30
- JOB_FLOW: "JOB_FLOW",
31
- DATA_MINING: "SMARTBI_MINING",
32
- URL_LINK: "URL",
33
- EXCEL_IMPORT_TEMPLATE: "excelimport",
34
- TXT_QUERY_OBJECT: "TXTQUERYOBJECT",
35
- TXT_DATA_SOURCE: "TXTDATASOURCE",
36
- SCHEMA: "SCHEMA",
37
- OLD_DATASET: "OLD_DATASET"
38
- }, PermissionType = {
39
- REF: "REF",
40
- READ: "READ",
41
- WRITE: "WRITE"
42
- }, PermissionDescendType = {
43
- ALL: "ALL",
44
- NONE: "NONE",
45
- READ_WRITE: "READ_WRITE"
46
- }, isCatalogElementAccessible = (y, b) => smartbi("CatalogService", "isCatalogElementAccessible", [y, b]), getRootElements = () => smartbi("CatalogService", "getRootElements", []), getChildElements = (y) => smartbi("CatalogService", "getChildElements", [y]), createFolder = (y, b, x, S, C, w) => smartbi("CatalogService", "createFolder", [
47
- y,
48
- b,
49
- x,
50
- S,
51
- C,
52
- w
53
- ]), createFolderById = (y, b, x, S, C, w, T) => smartbi("CatalogService", "createFolderById", [
54
- y,
55
- b,
56
- x,
57
- S,
58
- C,
59
- w,
60
- T
61
- ]), getCatalogElementById = (y) => smartbi("CatalogService", "getCatalogElementById", [y]), getCatalogElementByType = (y) => smartbi("CatalogService", "getCatalogElementByType", [y]), getChildElementsByTypes = (y, b) => smartbi("CatalogService", "getChildElementsByTypes", [y, b.toString()]), getAssignedPermissions = (y) => smartbi("CatalogService", "getAssignedPermissions", [y]), getInheritedPermissions = (y) => smartbi("CatalogService", "getInheritedPermissions", [y]), deleteCatalogElement = (y) => smartbi("CatalogService", "deleteCatalogElement", [y]), searchCatalogElementLikeAlias = (y, b) => smartbi("CatalogService", "searchCatalogElementLikeAlias", [y, b]), setAssignedPermissionByGroup = (y, b, x, S, C, w) => smartbi("CatalogService", "setAssignedPermissionByGroup", [
62
- y,
63
- b,
64
- x,
65
- S,
66
- C,
67
- w
68
- ]), setAssignedPermissionByRole = (y, b, x, S, C) => smartbi("CatalogService", "setAssignedPermissionByRole", [
69
- y,
70
- b,
71
- x,
72
- S,
73
- C
74
- ]), setAssignedPermissionByUser = (y, b, x, S, C) => smartbi("CatalogService", "setAssignedPermissionByUser", [
75
- y,
76
- b,
77
- x,
78
- S,
79
- C
80
- ]), updateCatalogElementImage = (y, b) => smartbi("CatalogService", "updateCatalogElementImage", [y, b]), updateCatalogNode = (y, b, x) => smartbi("CatalogService", "updateCatalogNode", [
81
- y,
82
- b,
83
- x
84
- ]), createURLLink = (y, b, x, S, C, w) => smartbi("CatalogService", "createURLLink", [
85
- y,
86
- b,
87
- x,
88
- S,
89
- C,
90
- w
91
- ]), updateURLLink = (y, b, x, S, C) => smartbi("CatalogService", "updateURLLink", [
92
- y,
93
- b,
94
- x,
95
- S,
96
- C
97
- ]), copyAndPasteReturnNewId = (y, b, x, S, C) => smartbi("CatalogService", "copyAndPasteReturnNewId", [
98
- y,
99
- b,
100
- x,
101
- S,
102
- C
103
- ]), createCatalogElement = (y, b, x, S, C, w, T) => smartbi("CatalogService", "createCatalogElement", [
104
- y,
105
- b,
106
- x,
107
- S,
108
- C,
109
- w,
110
- T
111
- ]);
112
- export { AccessType, CatalogElementType, PermissionDescendType, PermissionType, copyAndPasteReturnNewId, createCatalogElement, createFolder, createFolderById, createURLLink, deleteCatalogElement, getAssignedPermissions, getCatalogElementById, getCatalogElementByType, getChildElements, getChildElementsByTypes, getInheritedPermissions, getRootElements, isCatalogElementAccessible, searchCatalogElementLikeAlias, setAssignedPermissionByGroup, setAssignedPermissionByRole, setAssignedPermissionByUser, updateCatalogElementImage, updateCatalogNode, updateURLLink };
@@ -1,51 +0,0 @@
1
- import axios from "axios";
2
- var __smartbi_env = {
3
- username: "",
4
- password: "",
5
- smartbiPath: "/smartbi"
6
- };
7
- const setSmartbiEnv = ({ path: e = "/smartbi", dev: r, noop: i = 3e3 }) => {
8
- console.log(e, r, i), __smartbi_env.username = r?.username || "", __smartbi_env.password = r?.password || "", r && console.log("请勿将账号信息直接赋值到username和password中,避免暴露账号密码,如需要,可考虑从环境变量.env文件中获取");
9
- }, { emit, on, handler, setStatus } = (() => {
10
- let e = /* @__PURE__ */ new Set(), n = "offline";
11
- return {
12
- setStatus(e) {
13
- n = e;
14
- },
15
- emit() {
16
- e.forEach((e) => {
17
- e();
18
- }), e.clear();
19
- },
20
- on(n) {
21
- e.add(n);
22
- },
23
- handler(e) {
24
- return new Promise((r) => {
25
- e ? n === "offline" ? (n = "pending", login().then(() => {
26
- emit(), r();
27
- })) : n === "online" ? r() : n === "pending" && on(() => {
28
- r();
29
- }) : r();
30
- });
31
- }
32
- };
33
- })(), smartbi = (r, i, a, o = !0) => new Promise((s, c) => {
34
- handler(o).then(() => axios.post(`${__smartbi_env.smartbiPath}/vision/RMIServlet`, {
35
- className: r,
36
- methodName: i,
37
- params: JSON.stringify(a)
38
- }, { headers: {
39
- "Content-Type": "application/x-www-form-urlencoded",
40
- "X-Requested-With": "XMLHttpRequest"
41
- } })).then((e) => {
42
- e.data.retCode === 0 ? s(e.data.result) : (console.error("smartbi返回状态错误"), console.error(e.data.stackTrace), c(Error(e.data.stackTrace)));
43
- }).catch((e) => {
44
- c(e);
45
- });
46
- }), login = (e) => new Promise((r) => {
47
- smartbi("UserService", "login", [e?.username || __smartbi_env.username, e?.password || __smartbi_env.password], !1).then((e) => {
48
- setStatus("online"), r(e);
49
- });
50
- });
51
- export { emit, handler, login, on, setSmartbiEnv, setStatus, smartbi };
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,UAAU,GAAG;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CACpB,CAAA;AASD,eAAO,MAAM,aAAa,GAAI,sBAIG;IAC7B,IAAI,CAAC,EAAE,UAAU,GAAG,EAAE,GAAG,MAAM,CAAC;IAChC,GAAG,CAAC,EAAE,UAAU,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB,SAOA,CAAA;AACD,KAAK,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAA;AAC9C,KAAK,SAAS,GAAG,MAAM,IAAI,CAAA;AAwC3B,eAAO,MAAO,IAAI,cAAE,EAAE,SA1BL,SAAS,WA0BF,OAAO,iBAvBD,OAAO,KAAG,OAAO,CAAC,IAAI,CAAC,EAuBpB,SAAS,UAnCjB,MAAM,SAmC0B,CAAA;AACzD,eAAO,MAAM,OAAO,GAAI,CAAC,EACrB,WAAW,MAAM,EACjB,YAAY,MAAM,EAClB,QAAQ,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,CAAC,EAC3D,eAAc,OAAc,KAC7B,OAAO,CAAC,CAAC,CA4BX,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,KAAK,GAAI,OAAO;IACzB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAA;CACnB,qBAOA,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"CatalogService.d.ts","sourceRoot":"","sources":["../../src/methods/CatalogService.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,eAAe;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAC;IAC7B,UAAU,CAAC,EAAE,IAAI,CAAC;IAClB,UAAU,CAAC,EAAE,IAAI,CAAC;IAElB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,mBAAmB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,IAAI,CAAC;IAEhB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,uBAAuB;IACpC,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;IAEnB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IAEd,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACtB;AAGD,MAAM,MAAM,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAGlD,eAAO,MAAM,UAAU;;;;CAItB,CAAC;AAGF,MAAM,MAAM,kBAAkB,GAExB,QAAQ,GAGR,eAAe,GACf,iBAAiB,GACjB,gBAAgB,GAChB,SAAS,GACT,aAAa,GAGb,WAAW,GACX,eAAe,GAGf,SAAS,GACT,QAAQ,GACR,KAAK,GACL,WAAW,GACX,YAAY,GACZ,MAAM,GACN,kBAAkB,GAClB,mBAAmB,GAGnB,eAAe,GACf,kBAAkB,GAClB,gBAAgB,GAGhB,oBAAoB,GACpB,wBAAwB,GAGxB,qBAAqB,GACrB,gBAAgB,GAChB,UAAU,GACV,gBAAgB,GAGhB,KAAK,GACL,aAAa,GACb,gBAAgB,GAChB,eAAe,GACf,QAAQ,GAGR,aAAa,CAAC;AAGpB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiD9B,CAAC;AAGF,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAGtD,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAGF,MAAM,MAAM,qBAAqB,GAAG,KAAK,GAAG,MAAM,GAAG,YAAY,CAAC;AAGlE,eAAO,MAAM,qBAAqB;;;;CAIjC,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC;AAIrC;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,0BAA0B,GAAI,WAAW,MAAM,EAAE,MAAM,UAAU,KAAG,OAAO,CAAC,OAAO,CAE/F,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,eAAe,QAAO,OAAO,CAAC,eAAe,EAAE,CAE3D,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,GAAI,QAAQ,MAAM,KAAG,OAAO,CAAC,eAAe,EAAE,CAE1E,CAAA;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,YAAY,GACrB,cAAc,MAAM,EACpB,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,MAAM,EACZ,MAAM,kBAAkB,GAAG,MAAM,EACjC,gBAAgB,cAAc,KAC/B,OAAO,CAAC,eAAe,CAEzB,CAAA;AAED;;;;;;;;;;GAUG;AACH,eAAO,MAAM,gBAAgB,GACzB,cAAc,MAAM,EACpB,IAAI,MAAM,EACV,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,MAAM,EACZ,MAAM,kBAAkB,GAAG,MAAM,EACjC,gBAAgB,cAAc,KAC/B,OAAO,CAAC,eAAe,CAEzB,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,GAAI,WAAW,MAAM,KAAG,OAAO,CAAC,eAAe,CAEhF,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,GAAI,MAAM,kBAAkB,GAAG,MAAM,KAAG,OAAO,CAAC,eAAe,EAAE,CAEpG,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,GAAI,cAAc,MAAM,EAAE,OAAO,CAAC,kBAAkB,GAAG,MAAM,CAAC,EAAE,KAAG,OAAO,CAAC,eAAe,EAAE,CAE/H,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,GAAI,OAAO,MAAM,KAAG,OAAO,CAAC,mBAAmB,CAEjF,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,GAAI,OAAO,MAAM,KAAG,OAAO,CAAC,uBAAuB,EAAE,CAExF,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,oBAAoB,GAAI,IAAI,MAAM,KAAG,OAAO,CAAC,IAAI,CAE7D,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,6BAA6B,GAAI,OAAO,MAAM,EAAE,SAAS,MAAM,KAAG,OAAO,CAAC,oBAAoB,EAAE,CAE5G,CAAA;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,4BAA4B,GACrC,WAAW,MAAM,EACjB,SAAS,MAAM,EACf,MAAM,cAAc,EACpB,WAAW,OAAO,EAClB,uBAAuB,qBAAqB,EAC5C,gBAAgB,OAAO,KACxB,OAAO,CAAC,IAAI,CAEd,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,2BAA2B,GACpC,WAAW,MAAM,EACjB,QAAQ,MAAM,EACd,MAAM,cAAc,EACpB,WAAW,OAAO,EAClB,uBAAuB,qBAAqB,KAC7C,OAAO,CAAC,IAAI,CAEd,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,2BAA2B,GACpC,WAAW,MAAM,EACjB,QAAQ,MAAM,EACd,MAAM,cAAc,EACpB,WAAW,OAAO,EAClB,uBAAuB,qBAAqB,KAC7C,OAAO,CAAC,IAAI,CAEd,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB,GAAI,IAAI,MAAM,EAAE,OAAO,MAAM,KAAG,OAAO,CAAC,IAAI,CAEjF,CAAA;AAED;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,GAAI,IAAI,MAAM,EAAE,gBAAgB,MAAM,EAAE,eAAe,MAAM,KAAG,OAAO,CAAC,IAAI,CAEzG,CAAA;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,aAAa,GACtB,gBAAgB,MAAM,EACtB,SAAS,MAAM,EACf,UAAU,MAAM,EAChB,SAAS,MAAM,EACf,KAAK,MAAM,EACX,SAAS,MAAM,KAChB,OAAO,CAAC,MAAM,CAEhB,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,aAAa,GACtB,OAAO,MAAM,EACb,UAAU,MAAM,EAChB,SAAS,MAAM,EACf,KAAK,MAAM,EACX,SAAS,MAAM,KAChB,OAAO,CAAC,IAAI,CAEd,CAAA;AAED;;;;;;;;GAQG;AACH,eAAO,MAAM,uBAAuB,GAChC,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,MAAM,KACb,OAAO,CAAC,MAAM,CAEhB,CAAA;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,oBAAoB,GAC7B,UAAU,MAAM,EAChB,IAAI,MAAM,EACV,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,MAAM,EACZ,OAAO,MAAM,EACb,MAAM,kBAAkB,GAAG,MAAM,KAClC,OAAO,CAAC,eAAe,CAEzB,CAAA"}