@powerlines/plugin-rollup 0.7.299 → 0.7.301

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 (65) hide show
  1. package/dist/core/src/lib/logger.mjs +40 -0
  2. package/dist/core/src/lib/logger.mjs.map +1 -0
  3. package/dist/core/src/lib/unplugin/helpers.mjs +19 -0
  4. package/dist/core/src/lib/unplugin/helpers.mjs.map +1 -0
  5. package/dist/core/src/lib/unplugin/index.mjs +5 -0
  6. package/dist/core/src/lib/unplugin/module-resolution.mjs +66 -0
  7. package/dist/core/src/lib/unplugin/module-resolution.mjs.map +1 -0
  8. package/dist/core/src/lib/unplugin/plugin.mjs +71 -0
  9. package/dist/core/src/lib/unplugin/plugin.mjs.map +1 -0
  10. package/dist/core/src/lib/utilities/source-file.mjs +22 -0
  11. package/dist/core/src/lib/utilities/source-file.mjs.map +1 -0
  12. package/dist/core/src/types/api.d.mts +103 -0
  13. package/dist/core/src/types/api.d.mts.map +1 -0
  14. package/dist/core/src/types/commands.d.mts +10 -0
  15. package/dist/core/src/types/commands.d.mts.map +1 -0
  16. package/dist/core/src/types/config.d.mts +551 -0
  17. package/dist/core/src/types/config.d.mts.map +1 -0
  18. package/dist/core/src/types/context.d.mts +511 -0
  19. package/dist/core/src/types/context.d.mts.map +1 -0
  20. package/dist/core/src/types/fs.d.mts +487 -0
  21. package/dist/core/src/types/fs.d.mts.map +1 -0
  22. package/dist/core/src/types/hooks.d.mts +99 -0
  23. package/dist/core/src/types/hooks.d.mts.map +1 -0
  24. package/dist/core/src/types/index.d.mts +9 -0
  25. package/dist/core/src/types/plugin.d.mts +204 -0
  26. package/dist/core/src/types/plugin.d.mts.map +1 -0
  27. package/dist/core/src/types/tsconfig.d.mts +70 -0
  28. package/dist/core/src/types/tsconfig.d.mts.map +1 -0
  29. package/dist/core/src/types/unplugin.d.mts +25 -0
  30. package/dist/core/src/types/unplugin.d.mts.map +1 -0
  31. package/dist/core/src/types/unplugin.mjs +22 -0
  32. package/dist/core/src/types/unplugin.mjs.map +1 -0
  33. package/dist/helpers/index.d.mts +2 -1
  34. package/dist/helpers/index.mjs +2 -1
  35. package/dist/helpers/resolve-options.d.mts +23 -0
  36. package/dist/helpers/resolve-options.d.mts.map +1 -0
  37. package/dist/helpers/resolve-options.mjs +116 -0
  38. package/dist/helpers/resolve-options.mjs.map +1 -0
  39. package/dist/helpers/unplugin.mjs +2 -1
  40. package/dist/helpers/unplugin.mjs.map +1 -1
  41. package/dist/index.d.mts +6 -3
  42. package/dist/index.d.mts.map +1 -1
  43. package/dist/index.mjs +4 -7
  44. package/dist/index.mjs.map +1 -1
  45. package/dist/types/build.d.mts +8 -0
  46. package/dist/types/build.d.mts.map +1 -0
  47. package/dist/types/build.mjs +1 -0
  48. package/dist/types/index.d.mts +3 -2
  49. package/dist/types/plugin.d.mts +13 -6
  50. package/dist/types/plugin.d.mts.map +1 -1
  51. package/package.json +33 -93
  52. package/dist/_virtual/rolldown_runtime.cjs +0 -29
  53. package/dist/helpers/index.cjs +0 -3
  54. package/dist/helpers/index.d.cts +0 -2
  55. package/dist/helpers/unplugin.cjs +0 -11
  56. package/dist/helpers/unplugin.d.cts +0 -8
  57. package/dist/helpers/unplugin.d.cts.map +0 -1
  58. package/dist/index.cjs +0 -38
  59. package/dist/index.d.cts +0 -14
  60. package/dist/index.d.cts.map +0 -1
  61. package/dist/types/index.cjs +0 -0
  62. package/dist/types/index.d.cts +0 -2
  63. package/dist/types/plugin.cjs +0 -0
  64. package/dist/types/plugin.d.cts +0 -14
  65. package/dist/types/plugin.d.cts.map +0 -1
@@ -0,0 +1,8 @@
1
+ import { RollupOptions as RollupOptions$1 } from "rollup";
2
+
3
+ //#region src/types/build.d.ts
4
+ type RollupOptions = Omit<RollupOptions$1, "entry" | "external" | "input" | "output" | "logLevel">;
5
+ declare type __ΩRollupOptions = any[];
6
+ //#endregion
7
+ export { RollupOptions, __ΩRollupOptions };
8
+ //# sourceMappingURL=build.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build.d.mts","names":[],"sources":["../../src/types/build.ts"],"sourcesContent":[],"mappings":";;;KAoBY,aAAA,GAAgB,KAC1B"}
@@ -0,0 +1 @@
1
+ export { };
@@ -1,2 +1,3 @@
1
- import { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig } from "./plugin.mjs";
2
- export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig };
1
+ import { RollupOptions, __ΩRollupOptions } from "./build.mjs";
2
+ import { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, RollupPluginUserConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig, __ΩRollupPluginUserConfig } from "./plugin.mjs";
3
+ export { RollupOptions, RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, RollupPluginUserConfig, __ΩRollupOptions, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig, __ΩRollupPluginUserConfig };
@@ -1,14 +1,21 @@
1
- import { RollupBuildConfig } from "powerlines/types/build";
2
- import { PluginContext } from "powerlines/types/context";
3
- import { RollupResolvedConfig } from "powerlines/types/resolved";
1
+ import { PluginContext } from "../core/src/types/context.mjs";
2
+ import { ResolvedConfig, UserConfig } from "../core/src/types/config.mjs";
3
+ import "../core/src/types/index.mjs";
4
+ import { RollupOptions } from "./build.mjs";
4
5
 
5
6
  //#region src/types/plugin.d.ts
6
- type RollupPluginOptions = Partial<RollupBuildConfig>;
7
- type RollupPluginResolvedConfig = RollupResolvedConfig;
7
+ type RollupPluginOptions = Partial<RollupOptions>;
8
+ interface RollupPluginUserConfig extends UserConfig {
9
+ rollup: RollupPluginOptions;
10
+ }
11
+ interface RollupPluginResolvedConfig extends ResolvedConfig {
12
+ rollup: RollupOptions;
13
+ }
8
14
  type RollupPluginContext<TResolvedConfig extends RollupPluginResolvedConfig = RollupPluginResolvedConfig> = PluginContext<TResolvedConfig>;
9
15
  declare type __ΩRollupPluginOptions = any[];
16
+ declare type __ΩRollupPluginUserConfig = any[];
10
17
  declare type __ΩRollupPluginResolvedConfig = any[];
11
18
  declare type __ΩRollupPluginContext = any[];
12
19
  //#endregion
13
- export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig };
20
+ export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, RollupPluginUserConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig, __ΩRollupPluginUserConfig };
14
21
  //# sourceMappingURL=plugin.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;KAsBY,mBAAA,GAAsB,QAAQ;KAE9B,0BAAA,GAA6B;AAF7B,KAIA,mBAJmB,CAAA,wBAM3B,0BANqC,GAMR,0BANQ,CAAA,GAOrC,aAPqC,CAOvB,eAPuB,CAAA;AAE7B,sCAA6B,GAAA,EAAA;AAE7B,6CAAmB,GAAA,EAAA;AAE3B,sCAAA,GAAA,EAAA"}
1
+ {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;;KAyBY,mBAAA,GAAsB,QAAQ;UAEzB,sBAAA,SAA+B;UACtC;;AAHE,UAMK,0BAAA,SAAmC,cANX,CAAA;EAExB,MAAA,EAKP,aALO;AAIjB;AAIY,KAAA,mBAAmB,CAAA,wBACL,0BADK,GAE3B,0BAF2B,CAAA,GAG3B,aAH2B,CAGb,eAHa,CAAA;AACL,sCAAA,GAAA,EAAA;AACtB,yCAAA,GAAA,EAAA;AACc,6CAAA,GAAA,EAAA;AAAd,sCAAA,GAAA,EAAA"}
package/package.json CHANGED
@@ -1,18 +1,24 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-rollup",
3
- "version": "0.7.299",
4
- "type": "module",
3
+ "version": "0.7.301",
4
+ "private": false,
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
+ "keywords": ["rollup", "powerlines", "storm-software", "powerlines-plugin"],
7
+ "homepage": "https://stormsoftware.com",
8
+ "bugs": {
9
+ "url": "https://stormsoftware.com/support",
10
+ "email": "support@stormsoftware.com"
11
+ },
6
12
  "repository": {
7
13
  "type": "github",
8
14
  "url": "https://github.com/storm-software/powerlines.git",
9
15
  "directory": "packages/plugin-rollup"
10
16
  },
11
- "homepage": "https://stormsoftware.com",
12
- "bugs": {
13
- "url": "https://stormsoftware.com/support",
14
- "email": "support@stormsoftware.com"
17
+ "funding": {
18
+ "type": "github",
19
+ "url": "https://github.com/sponsors/storm-software"
15
20
  },
21
+ "license": "Apache-2.0",
16
22
  "author": {
17
23
  "name": "Storm Software",
18
24
  "email": "contact@stormsoftware.com",
@@ -32,91 +38,30 @@
32
38
  "url": "https://stormsoftware.com"
33
39
  }
34
40
  ],
35
- "funding": {
36
- "type": "github",
37
- "url": "https://github.com/sponsors/storm-software"
38
- },
39
- "license": "Apache-2.0",
40
- "private": false,
41
- "main": "./dist/index.cjs",
42
- "module": "./dist/index.mjs",
41
+ "type": "module",
43
42
  "exports": {
44
- ".": {
45
- "require": {
46
- "types": "./dist/index.d.cts",
47
- "default": "./dist/index.cjs"
48
- },
49
- "import": {
50
- "types": "./dist/index.d.mts",
51
- "default": "./dist/index.mjs"
52
- },
53
- "default": {
54
- "types": "./dist/index.d.mts",
55
- "default": "./dist/index.mjs"
56
- }
57
- },
58
- "./helpers": {
59
- "require": {
60
- "types": "./dist/helpers/index.d.cts",
61
- "default": "./dist/helpers/index.cjs"
62
- },
63
- "import": {
64
- "types": "./dist/helpers/index.d.mts",
65
- "default": "./dist/helpers/index.mjs"
66
- },
67
- "default": {
68
- "types": "./dist/helpers/index.d.mts",
69
- "default": "./dist/helpers/index.mjs"
70
- }
71
- },
72
- "./helpers/unplugin": {
73
- "require": {
74
- "types": "./dist/helpers/unplugin.d.cts",
75
- "default": "./dist/helpers/unplugin.cjs"
76
- },
77
- "import": {
78
- "types": "./dist/helpers/unplugin.d.mts",
79
- "default": "./dist/helpers/unplugin.mjs"
80
- },
81
- "default": {
82
- "types": "./dist/helpers/unplugin.d.mts",
83
- "default": "./dist/helpers/unplugin.mjs"
84
- }
85
- },
86
- "./package.json": "./package.json",
87
- "./types": {
88
- "require": {
89
- "types": "./dist/types/index.d.cts",
90
- "default": "./dist/types/index.cjs"
91
- },
92
- "import": {
93
- "types": "./dist/types/index.d.mts",
94
- "default": "./dist/types/index.mjs"
95
- },
96
- "default": {
97
- "types": "./dist/types/index.d.mts",
98
- "default": "./dist/types/index.mjs"
99
- }
100
- },
101
- "./types/plugin": {
102
- "require": {
103
- "types": "./dist/types/plugin.d.cts",
104
- "default": "./dist/types/plugin.cjs"
105
- },
106
- "import": {
107
- "types": "./dist/types/plugin.d.mts",
108
- "default": "./dist/types/plugin.mjs"
109
- },
110
- "default": {
111
- "types": "./dist/types/plugin.d.mts",
112
- "default": "./dist/types/plugin.mjs"
113
- }
114
- }
43
+ ".": "./dist/index.mjs",
44
+ "./helpers": "./dist/helpers/index.mjs",
45
+ "./helpers/resolve-options": "./dist/helpers/resolve-options.mjs",
46
+ "./helpers/unplugin": "./dist/helpers/unplugin.mjs",
47
+ "./types": "./dist/types/index.mjs",
48
+ "./types/build": "./dist/types/build.mjs",
49
+ "./types/plugin": "./dist/types/plugin.mjs",
50
+ "./*": "./*"
115
51
  },
52
+ "main": "./dist/index.mjs",
53
+ "module": "./dist/index.mjs",
54
+ "types": "./dist/index.d.mts",
116
55
  "typings": "dist/index.d.mts",
117
56
  "files": ["dist/**/*"],
118
- "keywords": ["rollup", "powerlines", "storm-software", "powerlines-plugin"],
119
57
  "dependencies": {
58
+ "@rollup/plugin-alias": "^6.0.0",
59
+ "@rollup/plugin-babel": "^6.1.0",
60
+ "@rollup/plugin-inject": "^5.0.5",
61
+ "@rollup/plugin-node-resolve": "^16.0.3",
62
+ "@rollup/plugin-replace": "^6.0.3",
63
+ "rollup-plugin-typescript2": "^0.36.0",
64
+ "@powerlines/plugin-babel": "^0.12.300",
120
65
  "@stryke/convert": "^0.6.40",
121
66
  "@stryke/fs": "^0.33.43",
122
67
  "@stryke/path": "^0.26.6",
@@ -124,15 +69,10 @@
124
69
  "@stryke/types": "^0.10.39",
125
70
  "defu": "^6.1.4",
126
71
  "jiti": "^2.6.1",
127
- "powerlines": "^0.38.56",
128
72
  "rollup": "^4.59.0",
129
73
  "unplugin": "3.0.0-beta.3"
130
74
  },
131
- "devDependencies": {
132
- "@powerlines/plugin-plugin": "^0.12.240",
133
- "@types/node": "^25.3.0"
134
- },
75
+ "devDependencies": { "@types/node": "^25.3.2" },
135
76
  "publishConfig": { "access": "public" },
136
- "types": "./dist/index.d.cts",
137
- "gitHead": "256020b11a6afd9decac143ca57eaba68d102906"
77
+ "gitHead": "0dcb16f054b8a69915b074578e6d4dfa3ecc1529"
138
78
  }
@@ -1,29 +0,0 @@
1
- //#region rolldown:runtime
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __copyProps = (to, from, except, desc) => {
9
- if (from && typeof from === "object" || typeof from === "function") {
10
- for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
11
- key = keys[i];
12
- if (!__hasOwnProp.call(to, key) && key !== except) {
13
- __defProp(to, key, {
14
- get: ((k) => from[k]).bind(null, key),
15
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
- });
17
- }
18
- }
19
- }
20
- return to;
21
- };
22
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
23
- value: mod,
24
- enumerable: true
25
- }) : target, mod));
26
-
27
- //#endregion
28
-
29
- exports.__toESM = __toESM;
@@ -1,3 +0,0 @@
1
- const require_helpers_unplugin = require('./unplugin.cjs');
2
-
3
- exports.createRollupPlugin = require_helpers_unplugin.createRollupPlugin;
@@ -1,2 +0,0 @@
1
- import { createRollupPlugin } from "./unplugin.cjs";
2
- export { createRollupPlugin };
@@ -1,11 +0,0 @@
1
- const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
2
- let powerlines_lib_unplugin = require("powerlines/lib/unplugin");
3
- let unplugin = require("unplugin");
4
-
5
- //#region src/helpers/unplugin.ts
6
- function createRollupPlugin(context) {
7
- return (0, unplugin.createEsbuildPlugin)((0, powerlines_lib_unplugin.createUnplugin)(context))({});
8
- }
9
-
10
- //#endregion
11
- exports.createRollupPlugin = createRollupPlugin;
@@ -1,8 +0,0 @@
1
- import { RollupPluginContext } from "../types/plugin.cjs";
2
- import * as esbuild0 from "esbuild";
3
-
4
- //#region src/helpers/unplugin.d.ts
5
- declare function createRollupPlugin(context: RollupPluginContext): esbuild0.Plugin;
6
- //#endregion
7
- export { createRollupPlugin };
8
- //# sourceMappingURL=unplugin.d.cts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"unplugin.d.cts","names":[],"sources":["../../src/helpers/unplugin.ts"],"sourcesContent":[],"mappings":";;;;iBAsBgB,kBAAA,UAA4B,sBAAmB,QAAA,CAAA"}
package/dist/index.cjs DELETED
@@ -1,38 +0,0 @@
1
- Object.defineProperty(exports, '__esModule', { value: true });
2
- const require_rolldown_runtime = require('./_virtual/rolldown_runtime.cjs');
3
- const require_helpers_unplugin = require('./helpers/unplugin.cjs');
4
- require('./helpers/index.cjs');
5
- let __stryke_convert_to_array = require("@stryke/convert/to-array");
6
- let defu = require("defu");
7
- defu = require_rolldown_runtime.__toESM(defu);
8
- let powerlines_lib_build_rollup = require("powerlines/lib/build/rollup");
9
- let rollup = require("rollup");
10
-
11
- //#region src/index.ts
12
- /**
13
- * A Powerlines plugin to assist in developing other Powerlines plugins.
14
- */
15
- const plugin = (options = {}) => {
16
- return {
17
- name: "rollup",
18
- config() {
19
- return {
20
- output: { format: ["cjs", "esm"] },
21
- build: {
22
- ...options,
23
- variant: "rollup"
24
- }
25
- };
26
- },
27
- async build() {
28
- const result = await (0, rollup.rollup)((0, defu.default)({ plugins: [require_helpers_unplugin.createRollupPlugin(this)] }, (0, powerlines_lib_build_rollup.extractRollupConfig)(this)));
29
- await Promise.all((0, __stryke_convert_to_array.toArray)(this.config.output.format).map(async (format) => result.write({ format })));
30
- }
31
- };
32
- };
33
- var src_default = plugin;
34
-
35
- //#endregion
36
- exports.createRollupPlugin = require_helpers_unplugin.createRollupPlugin;
37
- exports.default = src_default;
38
- exports.plugin = plugin;
package/dist/index.d.cts DELETED
@@ -1,14 +0,0 @@
1
- import { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig } from "./types/plugin.cjs";
2
- import { createRollupPlugin } from "./helpers/unplugin.cjs";
3
- import "./helpers/index.cjs";
4
- import "./types/index.cjs";
5
- import { Plugin } from "powerlines/types/plugin";
6
-
7
- //#region src/index.d.ts
8
- /**
9
- * A Powerlines plugin to assist in developing other Powerlines plugins.
10
- */
11
- declare const plugin: <TContext extends RollupPluginContext = RollupPluginContext>(options?: RollupPluginOptions) => Plugin<TContext>;
12
- //#endregion
13
- export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig, createRollupPlugin, plugin as default, plugin };
14
- //# sourceMappingURL=index.d.cts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;AAiCa,cAAA,MAqCZ,EAAA,CAAA,iBApCkB,mBAoClB,GApCwC,mBAoCxC,CAAA,CAAA,OAAA,CAAA,EAlCU,mBAkCV,EAAA,GAjCE,MAiCF,CAjCS,QAiCT,CAAA"}
File without changes
@@ -1,2 +0,0 @@
1
- import { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig } from "./plugin.cjs";
2
- export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig };
File without changes
@@ -1,14 +0,0 @@
1
- import { RollupBuildConfig } from "powerlines/types/build";
2
- import { PluginContext } from "powerlines/types/context";
3
- import { RollupResolvedConfig } from "powerlines/types/resolved";
4
-
5
- //#region src/types/plugin.d.ts
6
- type RollupPluginOptions = Partial<RollupBuildConfig>;
7
- type RollupPluginResolvedConfig = RollupResolvedConfig;
8
- type RollupPluginContext<TResolvedConfig extends RollupPluginResolvedConfig = RollupPluginResolvedConfig> = PluginContext<TResolvedConfig>;
9
- declare type __ΩRollupPluginOptions = any[];
10
- declare type __ΩRollupPluginResolvedConfig = any[];
11
- declare type __ΩRollupPluginContext = any[];
12
- //#endregion
13
- export { RollupPluginContext, RollupPluginOptions, RollupPluginResolvedConfig, __ΩRollupPluginContext, __ΩRollupPluginOptions, __ΩRollupPluginResolvedConfig };
14
- //# sourceMappingURL=plugin.d.cts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;;KAsBY,mBAAA,GAAsB,QAAQ;KAE9B,0BAAA,GAA6B;AAF7B,KAIA,mBAJmB,CAAA,wBAM3B,0BANqC,GAMR,0BANQ,CAAA,GAOrC,aAPqC,CAOvB,eAPuB,CAAA;AAE7B,sCAA6B,GAAA,EAAA;AAE7B,6CAAmB,GAAA,EAAA;AAE3B,sCAAA,GAAA,EAAA"}