@xyo-network/previous-hash-store-storage 2.84.5 → 2.84.7
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/dist/browser/index.cjs +1 -1
- package/dist/node/index.cjs +78 -0
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.js +5 -42
- package/dist/node/index.js.map +1 -1
- package/package.json +10 -10
- package/dist/node/index.mjs +0 -41
- package/dist/node/index.mjs.map +0 -1
package/dist/browser/index.cjs
CHANGED
|
@@ -35,7 +35,7 @@ __export(src_exports, {
|
|
|
35
35
|
module.exports = __toCommonJS(src_exports);
|
|
36
36
|
|
|
37
37
|
// src/StoragePreviousHashStore.ts
|
|
38
|
-
var import_store2 = __toESM(require("store2"));
|
|
38
|
+
var import_store2 = __toESM(require("store2"), 1);
|
|
39
39
|
var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
40
40
|
static DefaultNamespace = "xyo-previous-hash-store";
|
|
41
41
|
static DefaultStorageType = "local";
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
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 __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/index.ts
|
|
31
|
+
var src_exports = {};
|
|
32
|
+
__export(src_exports, {
|
|
33
|
+
StoragePreviousHashStore: () => StoragePreviousHashStore
|
|
34
|
+
});
|
|
35
|
+
module.exports = __toCommonJS(src_exports);
|
|
36
|
+
|
|
37
|
+
// src/StoragePreviousHashStore.ts
|
|
38
|
+
var import_store2 = __toESM(require("store2"), 1);
|
|
39
|
+
var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
40
|
+
static DefaultNamespace = "xyo-previous-hash-store";
|
|
41
|
+
static DefaultStorageType = "local";
|
|
42
|
+
_namespace = _StoragePreviousHashStore.DefaultNamespace;
|
|
43
|
+
_storage;
|
|
44
|
+
_type = _StoragePreviousHashStore.DefaultStorageType;
|
|
45
|
+
constructor(opts) {
|
|
46
|
+
if (opts == null ? void 0 : opts.namespace)
|
|
47
|
+
this._namespace = opts.namespace;
|
|
48
|
+
if (opts == null ? void 0 : opts.type)
|
|
49
|
+
this._type = opts.type;
|
|
50
|
+
this._storage = import_store2.default[this.type].namespace(this.namespace);
|
|
51
|
+
}
|
|
52
|
+
get namespace() {
|
|
53
|
+
return this._namespace;
|
|
54
|
+
}
|
|
55
|
+
get type() {
|
|
56
|
+
return this._type;
|
|
57
|
+
}
|
|
58
|
+
get storage() {
|
|
59
|
+
if (!(this == null ? void 0 : this._storage))
|
|
60
|
+
this._storage = import_store2.default[this.type].namespace(this.namespace);
|
|
61
|
+
return this._storage;
|
|
62
|
+
}
|
|
63
|
+
async getItem(address) {
|
|
64
|
+
const value = await this.storage.get(address);
|
|
65
|
+
return value ?? null;
|
|
66
|
+
}
|
|
67
|
+
async removeItem(address) {
|
|
68
|
+
await this.storage.remove(address);
|
|
69
|
+
}
|
|
70
|
+
async setItem(address, previousHash) {
|
|
71
|
+
await this.storage.set(address, previousHash);
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
75
|
+
0 && (module.exports = {
|
|
76
|
+
StoragePreviousHashStore
|
|
77
|
+
});
|
|
78
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/StoragePreviousHashStore.ts"],"sourcesContent":["export * from './StoragePreviousHashStore'\n","import { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport store, { StoreBase } from 'store2'\n\nexport type Storage = 'local' | 'session' | 'page'\n\nexport type StoragePreviousHashOpts = {\n namespace?: string\n type?: Storage\n}\n\nexport class StoragePreviousHashStore implements PreviousHashStore {\n static readonly DefaultNamespace = 'xyo-previous-hash-store'\n static readonly DefaultStorageType: Storage = 'local'\n private _namespace = StoragePreviousHashStore.DefaultNamespace\n private _storage: StoreBase | undefined\n private _type: Storage = StoragePreviousHashStore.DefaultStorageType\n\n constructor(opts?: StoragePreviousHashOpts) {\n if (opts?.namespace) this._namespace = opts.namespace\n if (opts?.type) this._type = opts.type\n this._storage = store[this.type].namespace(this.namespace)\n }\n\n get namespace() {\n return this._namespace\n }\n\n get type(): Storage {\n return this._type\n }\n\n private get storage(): StoreBase {\n if (!this?._storage) this._storage = store[this.type].namespace(this.namespace)\n return this._storage\n }\n\n async getItem(address: string): Promise<string | null> {\n const value = await this.storage.get(address)\n return value ?? null\n }\n async removeItem(address: string): Promise<void> {\n await this.storage.remove(address)\n }\n async setItem(address: string, previousHash: string): Promise<void> {\n await this.storage.set(address, previousHash)\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCA,oBAAiC;AAS1B,IAAM,2BAAN,MAAM,0BAAsD;AAAA,EACjE,OAAgB,mBAAmB;AAAA,EACnC,OAAgB,qBAA8B;AAAA,EACtC,aAAa,0BAAyB;AAAA,EACtC;AAAA,EACA,QAAiB,0BAAyB;AAAA,EAElD,YAAY,MAAgC;AAC1C,QAAI,6BAAM;AAAW,WAAK,aAAa,KAAK;AAC5C,QAAI,6BAAM;AAAM,WAAK,QAAQ,KAAK;AAClC,SAAK,WAAW,cAAAA,QAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAAA,EAC3D;AAAA,EAEA,IAAI,YAAY;AACd,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAI,OAAgB;AAClB,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAY,UAAqB;AAC/B,QAAI,EAAC,6BAAM;AAAU,WAAK,WAAW,cAAAA,QAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAC9E,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,MAAM,QAAQ,SAAyC;AACrD,UAAM,QAAQ,MAAM,KAAK,QAAQ,IAAI,OAAO;AAC5C,WAAO,SAAS;AAAA,EAClB;AAAA,EACA,MAAM,WAAW,SAAgC;AAC/C,UAAM,KAAK,QAAQ,OAAO,OAAO;AAAA,EACnC;AAAA,EACA,MAAM,QAAQ,SAAiB,cAAqC;AAClE,UAAM,KAAK,QAAQ,IAAI,SAAS,YAAY;AAAA,EAC9C;AACF;","names":["store"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,41 +1,5 @@
|
|
|
1
|
-
"use strict";
|
|
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 __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
|
|
30
|
-
// src/index.ts
|
|
31
|
-
var src_exports = {};
|
|
32
|
-
__export(src_exports, {
|
|
33
|
-
StoragePreviousHashStore: () => StoragePreviousHashStore
|
|
34
|
-
});
|
|
35
|
-
module.exports = __toCommonJS(src_exports);
|
|
36
|
-
|
|
37
1
|
// src/StoragePreviousHashStore.ts
|
|
38
|
-
|
|
2
|
+
import store from "store2";
|
|
39
3
|
var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
40
4
|
static DefaultNamespace = "xyo-previous-hash-store";
|
|
41
5
|
static DefaultStorageType = "local";
|
|
@@ -47,7 +11,7 @@ var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
|
47
11
|
this._namespace = opts.namespace;
|
|
48
12
|
if (opts == null ? void 0 : opts.type)
|
|
49
13
|
this._type = opts.type;
|
|
50
|
-
this._storage =
|
|
14
|
+
this._storage = store[this.type].namespace(this.namespace);
|
|
51
15
|
}
|
|
52
16
|
get namespace() {
|
|
53
17
|
return this._namespace;
|
|
@@ -57,7 +21,7 @@ var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
|
57
21
|
}
|
|
58
22
|
get storage() {
|
|
59
23
|
if (!(this == null ? void 0 : this._storage))
|
|
60
|
-
this._storage =
|
|
24
|
+
this._storage = store[this.type].namespace(this.namespace);
|
|
61
25
|
return this._storage;
|
|
62
26
|
}
|
|
63
27
|
async getItem(address) {
|
|
@@ -71,8 +35,7 @@ var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
|
71
35
|
await this.storage.set(address, previousHash);
|
|
72
36
|
}
|
|
73
37
|
};
|
|
74
|
-
|
|
75
|
-
0 && (module.exports = {
|
|
38
|
+
export {
|
|
76
39
|
StoragePreviousHashStore
|
|
77
|
-
}
|
|
40
|
+
};
|
|
78
41
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/
|
|
1
|
+
{"version":3,"sources":["../../src/StoragePreviousHashStore.ts"],"sourcesContent":["import { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport store, { StoreBase } from 'store2'\n\nexport type Storage = 'local' | 'session' | 'page'\n\nexport type StoragePreviousHashOpts = {\n namespace?: string\n type?: Storage\n}\n\nexport class StoragePreviousHashStore implements PreviousHashStore {\n static readonly DefaultNamespace = 'xyo-previous-hash-store'\n static readonly DefaultStorageType: Storage = 'local'\n private _namespace = StoragePreviousHashStore.DefaultNamespace\n private _storage: StoreBase | undefined\n private _type: Storage = StoragePreviousHashStore.DefaultStorageType\n\n constructor(opts?: StoragePreviousHashOpts) {\n if (opts?.namespace) this._namespace = opts.namespace\n if (opts?.type) this._type = opts.type\n this._storage = store[this.type].namespace(this.namespace)\n }\n\n get namespace() {\n return this._namespace\n }\n\n get type(): Storage {\n return this._type\n }\n\n private get storage(): StoreBase {\n if (!this?._storage) this._storage = store[this.type].namespace(this.namespace)\n return this._storage\n }\n\n async getItem(address: string): Promise<string | null> {\n const value = await this.storage.get(address)\n return value ?? null\n }\n async removeItem(address: string): Promise<void> {\n await this.storage.remove(address)\n }\n async setItem(address: string, previousHash: string): Promise<void> {\n await this.storage.set(address, previousHash)\n }\n}\n"],"mappings":";AACA,OAAO,WAA0B;AAS1B,IAAM,2BAAN,MAAM,0BAAsD;AAAA,EACjE,OAAgB,mBAAmB;AAAA,EACnC,OAAgB,qBAA8B;AAAA,EACtC,aAAa,0BAAyB;AAAA,EACtC;AAAA,EACA,QAAiB,0BAAyB;AAAA,EAElD,YAAY,MAAgC;AAC1C,QAAI,6BAAM;AAAW,WAAK,aAAa,KAAK;AAC5C,QAAI,6BAAM;AAAM,WAAK,QAAQ,KAAK;AAClC,SAAK,WAAW,MAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAAA,EAC3D;AAAA,EAEA,IAAI,YAAY;AACd,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAI,OAAgB;AAClB,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAY,UAAqB;AAC/B,QAAI,EAAC,6BAAM;AAAU,WAAK,WAAW,MAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAC9E,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,MAAM,QAAQ,SAAyC;AACrD,UAAM,QAAQ,MAAM,KAAK,QAAQ,IAAI,OAAO;AAC5C,WAAO,SAAS;AAAA,EAClB;AAAA,EACA,MAAM,WAAW,SAAgC;AAC/C,UAAM,KAAK,QAAQ,OAAO,OAAO;AAAA,EACnC;AAAA,EACA,MAAM,QAAQ,SAAiB,cAAqC;AAClE,UAAM,KAAK,QAAQ,IAAI,SAAS,YAAY;AAAA,EAC9C;AACF;","names":[]}
|
package/package.json
CHANGED
|
@@ -11,16 +11,15 @@
|
|
|
11
11
|
},
|
|
12
12
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@xyo-network/previous-hash-store-model": "~2.84.
|
|
14
|
+
"@xyo-network/previous-hash-store-model": "~2.84.7",
|
|
15
15
|
"store2": "^2.14.2"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^3.2.
|
|
19
|
-
"@xylabs/tsconfig": "^3.2.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^3.2.24",
|
|
19
|
+
"@xylabs/tsconfig": "^3.2.24",
|
|
20
20
|
"typescript": "^5.3.3",
|
|
21
21
|
"uuid": "^9.0.1"
|
|
22
22
|
},
|
|
23
|
-
"docs": "dist/docs.json",
|
|
24
23
|
"exports": {
|
|
25
24
|
".": {
|
|
26
25
|
"browser": {
|
|
@@ -35,19 +34,19 @@
|
|
|
35
34
|
},
|
|
36
35
|
"node": {
|
|
37
36
|
"require": {
|
|
38
|
-
"types": "./dist/node/index.d.
|
|
39
|
-
"default": "./dist/node/index.
|
|
37
|
+
"types": "./dist/node/index.d.cts",
|
|
38
|
+
"default": "./dist/node/index.cjs"
|
|
40
39
|
},
|
|
41
40
|
"import": {
|
|
42
41
|
"types": "./dist/node/index.d.mts",
|
|
43
|
-
"default": "./dist/node/index.
|
|
42
|
+
"default": "./dist/node/index.js"
|
|
44
43
|
}
|
|
45
44
|
}
|
|
46
45
|
},
|
|
47
46
|
"./package.json": "./package.json"
|
|
48
47
|
},
|
|
49
|
-
"main": "dist/node/index.
|
|
50
|
-
"module": "dist/node/index.
|
|
48
|
+
"main": "dist/node/index.cjs",
|
|
49
|
+
"module": "dist/node/index.js",
|
|
51
50
|
"homepage": "https://xyo.network",
|
|
52
51
|
"license": "LGPL-3.0-only",
|
|
53
52
|
"publishConfig": {
|
|
@@ -59,5 +58,6 @@
|
|
|
59
58
|
},
|
|
60
59
|
"sideEffects": false,
|
|
61
60
|
"types": "dist/node/index.d.ts",
|
|
62
|
-
"version": "2.84.
|
|
61
|
+
"version": "2.84.7",
|
|
62
|
+
"type": "module"
|
|
63
63
|
}
|
package/dist/node/index.mjs
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
// src/StoragePreviousHashStore.ts
|
|
2
|
-
import store from "store2";
|
|
3
|
-
var StoragePreviousHashStore = class _StoragePreviousHashStore {
|
|
4
|
-
static DefaultNamespace = "xyo-previous-hash-store";
|
|
5
|
-
static DefaultStorageType = "local";
|
|
6
|
-
_namespace = _StoragePreviousHashStore.DefaultNamespace;
|
|
7
|
-
_storage;
|
|
8
|
-
_type = _StoragePreviousHashStore.DefaultStorageType;
|
|
9
|
-
constructor(opts) {
|
|
10
|
-
if (opts == null ? void 0 : opts.namespace)
|
|
11
|
-
this._namespace = opts.namespace;
|
|
12
|
-
if (opts == null ? void 0 : opts.type)
|
|
13
|
-
this._type = opts.type;
|
|
14
|
-
this._storage = store[this.type].namespace(this.namespace);
|
|
15
|
-
}
|
|
16
|
-
get namespace() {
|
|
17
|
-
return this._namespace;
|
|
18
|
-
}
|
|
19
|
-
get type() {
|
|
20
|
-
return this._type;
|
|
21
|
-
}
|
|
22
|
-
get storage() {
|
|
23
|
-
if (!(this == null ? void 0 : this._storage))
|
|
24
|
-
this._storage = store[this.type].namespace(this.namespace);
|
|
25
|
-
return this._storage;
|
|
26
|
-
}
|
|
27
|
-
async getItem(address) {
|
|
28
|
-
const value = await this.storage.get(address);
|
|
29
|
-
return value ?? null;
|
|
30
|
-
}
|
|
31
|
-
async removeItem(address) {
|
|
32
|
-
await this.storage.remove(address);
|
|
33
|
-
}
|
|
34
|
-
async setItem(address, previousHash) {
|
|
35
|
-
await this.storage.set(address, previousHash);
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
export {
|
|
39
|
-
StoragePreviousHashStore
|
|
40
|
-
};
|
|
41
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/StoragePreviousHashStore.ts"],"sourcesContent":["import { PreviousHashStore } from '@xyo-network/previous-hash-store-model'\nimport store, { StoreBase } from 'store2'\n\nexport type Storage = 'local' | 'session' | 'page'\n\nexport type StoragePreviousHashOpts = {\n namespace?: string\n type?: Storage\n}\n\nexport class StoragePreviousHashStore implements PreviousHashStore {\n static readonly DefaultNamespace = 'xyo-previous-hash-store'\n static readonly DefaultStorageType: Storage = 'local'\n private _namespace = StoragePreviousHashStore.DefaultNamespace\n private _storage: StoreBase | undefined\n private _type: Storage = StoragePreviousHashStore.DefaultStorageType\n\n constructor(opts?: StoragePreviousHashOpts) {\n if (opts?.namespace) this._namespace = opts.namespace\n if (opts?.type) this._type = opts.type\n this._storage = store[this.type].namespace(this.namespace)\n }\n\n get namespace() {\n return this._namespace\n }\n\n get type(): Storage {\n return this._type\n }\n\n private get storage(): StoreBase {\n if (!this?._storage) this._storage = store[this.type].namespace(this.namespace)\n return this._storage\n }\n\n async getItem(address: string): Promise<string | null> {\n const value = await this.storage.get(address)\n return value ?? null\n }\n async removeItem(address: string): Promise<void> {\n await this.storage.remove(address)\n }\n async setItem(address: string, previousHash: string): Promise<void> {\n await this.storage.set(address, previousHash)\n }\n}\n"],"mappings":";AACA,OAAO,WAA0B;AAS1B,IAAM,2BAAN,MAAM,0BAAsD;AAAA,EACjE,OAAgB,mBAAmB;AAAA,EACnC,OAAgB,qBAA8B;AAAA,EACtC,aAAa,0BAAyB;AAAA,EACtC;AAAA,EACA,QAAiB,0BAAyB;AAAA,EAElD,YAAY,MAAgC;AAC1C,QAAI,6BAAM;AAAW,WAAK,aAAa,KAAK;AAC5C,QAAI,6BAAM;AAAM,WAAK,QAAQ,KAAK;AAClC,SAAK,WAAW,MAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAAA,EAC3D;AAAA,EAEA,IAAI,YAAY;AACd,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAI,OAAgB;AAClB,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,IAAY,UAAqB;AAC/B,QAAI,EAAC,6BAAM;AAAU,WAAK,WAAW,MAAM,KAAK,IAAI,EAAE,UAAU,KAAK,SAAS;AAC9E,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,MAAM,QAAQ,SAAyC;AACrD,UAAM,QAAQ,MAAM,KAAK,QAAQ,IAAI,OAAO;AAC5C,WAAO,SAAS;AAAA,EAClB;AAAA,EACA,MAAM,WAAW,SAAgC;AAC/C,UAAM,KAAK,QAAQ,OAAO,OAAO;AAAA,EACnC;AAAA,EACA,MAAM,QAAQ,SAAiB,cAAqC;AAClE,UAAM,KAAK,QAAQ,IAAI,SAAS,YAAY;AAAA,EAC9C;AACF;","names":[]}
|