@pax2pay/model-banking 0.1.217 → 0.1.219
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/Card/Preset.ts +9 -1
- package/Card/Stack.ts +7 -1
- package/Operation/Creatable.ts +9 -5
- package/Transaction/Incoming.ts +1 -1
- package/dist/Card/Preset.d.ts +3 -3
- package/dist/Card/Preset.js +9 -1
- package/dist/Card/Preset.js.map +1 -1
- package/dist/Card/Stack.d.ts +3 -3
- package/dist/Card/Stack.js +7 -1
- package/dist/Card/Stack.js.map +1 -1
- package/dist/Operation/Creatable.js +7 -5
- package/dist/Operation/Creatable.js.map +1 -1
- package/dist/Transaction/Incoming.js +1 -1
- package/dist/Transaction/Incoming.js.map +1 -1
- package/package.json +1 -1
package/Card/Preset.ts
CHANGED
|
@@ -5,13 +5,21 @@ export type Preset = typeof Preset.names[number]
|
|
|
5
5
|
|
|
6
6
|
// "realm-scheme-interchange"
|
|
7
7
|
export namespace Preset {
|
|
8
|
-
export const names = [
|
|
8
|
+
export const names = [
|
|
9
|
+
"p2p-mc-200",
|
|
10
|
+
"test-mc-200",
|
|
11
|
+
"test-ta-mq-200",
|
|
12
|
+
"test-pg-200",
|
|
13
|
+
"test-ta-pg-200",
|
|
14
|
+
"test-ta-mc-200",
|
|
15
|
+
] as const
|
|
9
16
|
export const type = isly.string(names)
|
|
10
17
|
export const is = type.is
|
|
11
18
|
export const flaw = type.flaw
|
|
12
19
|
export const presets: Record<Preset, Stack> = {
|
|
13
20
|
"p2p-mc-200": "uk-mc-tpl-marqeta",
|
|
14
21
|
"test-mc-200": "testUK-marqeta",
|
|
22
|
+
"test-ta-mq-200": "testUK-tpl-marqeta",
|
|
15
23
|
"test-pg-200": "test-paxgiro",
|
|
16
24
|
"test-ta-mc-200": "test-tpl-paxgiro",
|
|
17
25
|
"test-ta-pg-200": "test-tpl-paxgiro",
|
package/Card/Stack.ts
CHANGED
|
@@ -3,7 +3,13 @@ import { isly } from "isly"
|
|
|
3
3
|
export type Stack = typeof Stack.stacks[number]
|
|
4
4
|
|
|
5
5
|
export namespace Stack {
|
|
6
|
-
export const stacks = [
|
|
6
|
+
export const stacks = [
|
|
7
|
+
"test-paxgiro",
|
|
8
|
+
"test-tpl-paxgiro",
|
|
9
|
+
"testUK-marqeta",
|
|
10
|
+
"testUK-tpl-marqeta",
|
|
11
|
+
"uk-mc-tpl-marqeta",
|
|
12
|
+
] as const
|
|
7
13
|
export const type = isly.string(stacks)
|
|
8
14
|
export const is = type.is
|
|
9
15
|
export const flaw = type.flaw
|
package/Operation/Creatable.ts
CHANGED
|
@@ -37,7 +37,11 @@ export namespace Creatable {
|
|
|
37
37
|
export const is = type.is
|
|
38
38
|
export const flaw = type.flaw
|
|
39
39
|
export function fromRefund(account: string, entry: Settlement.Entry.Refund.Creatable, stack: Card.Stack): Creatable {
|
|
40
|
-
|
|
40
|
+
// The Entry.Refund.Creatable has negative amount and fee
|
|
41
|
+
// The operation amounts should always be positive
|
|
42
|
+
const [currency, entryAmount] = entry.amount
|
|
43
|
+
const operationAmount = Math.abs(entryAmount)
|
|
44
|
+
const operationFee = Math.abs(entry.fee.other[currency] ?? 0)
|
|
41
45
|
return {
|
|
42
46
|
account: account,
|
|
43
47
|
currency,
|
|
@@ -45,22 +49,22 @@ export namespace Creatable {
|
|
|
45
49
|
changes: {
|
|
46
50
|
actual: {
|
|
47
51
|
type: "add",
|
|
48
|
-
amount: isoly.Currency.add(currency,
|
|
52
|
+
amount: isoly.Currency.add(currency, operationAmount, operationFee),
|
|
49
53
|
status: "pending",
|
|
50
54
|
},
|
|
51
55
|
incomingReserved: {
|
|
52
56
|
type: "add",
|
|
53
|
-
amount: isoly.Currency.add(currency,
|
|
57
|
+
amount: isoly.Currency.add(currency, operationAmount, operationFee),
|
|
54
58
|
status: "pending",
|
|
55
59
|
},
|
|
56
60
|
[`fee_${stack}_${entry.batch}`]: {
|
|
57
61
|
type: "subtract" as const,
|
|
58
|
-
amount:
|
|
62
|
+
amount: operationFee,
|
|
59
63
|
status: "pending" as const,
|
|
60
64
|
},
|
|
61
65
|
[`settle_${stack}_${entry.batch}`]: {
|
|
62
66
|
type: "subtract" as const,
|
|
63
|
-
amount:
|
|
67
|
+
amount: operationAmount,
|
|
64
68
|
status: "pending" as const,
|
|
65
69
|
},
|
|
66
70
|
},
|
package/Transaction/Incoming.ts
CHANGED
|
@@ -23,7 +23,7 @@ export namespace Incoming {
|
|
|
23
23
|
return {
|
|
24
24
|
account: card,
|
|
25
25
|
currency,
|
|
26
|
-
amount: isoly.Currency.add(currency, amount, entry.fee.other[currency] ?? 0),
|
|
26
|
+
amount: isoly.Currency.add(currency, -amount, -(entry.fee.other[currency] ?? 0)),
|
|
27
27
|
posted: isoly.DateTime.now(),
|
|
28
28
|
counterpart: { type: "card", merchant: entry.merchant, acquirer: entry.acquirer },
|
|
29
29
|
description: "Refund transaction.",
|
package/dist/Card/Preset.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import { isly } from "isly";
|
|
|
2
2
|
import { Stack } from "./Stack";
|
|
3
3
|
export type Preset = typeof Preset.names[number];
|
|
4
4
|
export declare namespace Preset {
|
|
5
|
-
const names: readonly ["p2p-mc-200", "test-mc-200", "test-pg-200", "test-ta-pg-200", "test-ta-mc-200"];
|
|
6
|
-
const type: isly.Type<"p2p-mc-200" | "test-mc-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200">;
|
|
7
|
-
const is: isly.Type.IsFunction<"p2p-mc-200" | "test-mc-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200">;
|
|
5
|
+
const names: readonly ["p2p-mc-200", "test-mc-200", "test-ta-mq-200", "test-pg-200", "test-ta-pg-200", "test-ta-mc-200"];
|
|
6
|
+
const type: isly.Type<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200">;
|
|
7
|
+
const is: isly.Type.IsFunction<"p2p-mc-200" | "test-mc-200" | "test-ta-mq-200" | "test-pg-200" | "test-ta-pg-200" | "test-ta-mc-200">;
|
|
8
8
|
const flaw: isly.Type.FlawFunction;
|
|
9
9
|
const presets: Record<Preset, Stack>;
|
|
10
10
|
}
|
package/dist/Card/Preset.js
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
2
|
export var Preset;
|
|
3
3
|
(function (Preset) {
|
|
4
|
-
Preset.names = [
|
|
4
|
+
Preset.names = [
|
|
5
|
+
"p2p-mc-200",
|
|
6
|
+
"test-mc-200",
|
|
7
|
+
"test-ta-mq-200",
|
|
8
|
+
"test-pg-200",
|
|
9
|
+
"test-ta-pg-200",
|
|
10
|
+
"test-ta-mc-200",
|
|
11
|
+
];
|
|
5
12
|
Preset.type = isly.string(Preset.names);
|
|
6
13
|
Preset.is = Preset.type.is;
|
|
7
14
|
Preset.flaw = Preset.type.flaw;
|
|
8
15
|
Preset.presets = {
|
|
9
16
|
"p2p-mc-200": "uk-mc-tpl-marqeta",
|
|
10
17
|
"test-mc-200": "testUK-marqeta",
|
|
18
|
+
"test-ta-mq-200": "testUK-tpl-marqeta",
|
|
11
19
|
"test-pg-200": "test-paxgiro",
|
|
12
20
|
"test-ta-mc-200": "test-tpl-paxgiro",
|
|
13
21
|
"test-ta-pg-200": "test-tpl-paxgiro",
|
package/dist/Card/Preset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Preset.js","sourceRoot":"../","sources":["Card/Preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,MAAM,
|
|
1
|
+
{"version":3,"file":"Preset.js","sourceRoot":"../","sources":["Card/Preset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,MAAM,CAoBtB;AApBD,WAAiB,MAAM;IACT,YAAK,GAAG;QACpB,YAAY;QACZ,aAAa;QACb,gBAAgB;QAChB,aAAa;QACb,gBAAgB;QAChB,gBAAgB;KACP,CAAA;IACG,WAAI,GAAG,IAAI,CAAC,MAAM,CAAC,OAAA,KAAK,CAAC,CAAA;IACzB,SAAE,GAAG,OAAA,IAAI,CAAC,EAAE,CAAA;IACZ,WAAI,GAAG,OAAA,IAAI,CAAC,IAAI,CAAA;IAChB,cAAO,GAA0B;QAC7C,YAAY,EAAE,mBAAmB;QACjC,aAAa,EAAE,gBAAgB;QAC/B,gBAAgB,EAAE,oBAAoB;QACtC,aAAa,EAAE,cAAc;QAC7B,gBAAgB,EAAE,kBAAkB;QACpC,gBAAgB,EAAE,kBAAkB;KACpC,CAAA;AACF,CAAC,EApBgB,MAAM,KAAN,MAAM,QAoBtB"}
|
package/dist/Card/Stack.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
2
|
export type Stack = typeof Stack.stacks[number];
|
|
3
3
|
export declare namespace Stack {
|
|
4
|
-
const stacks: readonly ["test-paxgiro", "test-tpl-paxgiro", "testUK-marqeta", "uk-mc-tpl-marqeta"];
|
|
5
|
-
const type: isly.Type<"test-paxgiro" | "test-tpl-paxgiro" | "testUK-marqeta" | "uk-mc-tpl-marqeta">;
|
|
6
|
-
const is: isly.Type.IsFunction<"test-paxgiro" | "test-tpl-paxgiro" | "testUK-marqeta" | "uk-mc-tpl-marqeta">;
|
|
4
|
+
const stacks: readonly ["test-paxgiro", "test-tpl-paxgiro", "testUK-marqeta", "testUK-tpl-marqeta", "uk-mc-tpl-marqeta"];
|
|
5
|
+
const type: isly.Type<"test-paxgiro" | "test-tpl-paxgiro" | "testUK-marqeta" | "testUK-tpl-marqeta" | "uk-mc-tpl-marqeta">;
|
|
6
|
+
const is: isly.Type.IsFunction<"test-paxgiro" | "test-tpl-paxgiro" | "testUK-marqeta" | "testUK-tpl-marqeta" | "uk-mc-tpl-marqeta">;
|
|
7
7
|
const flaw: isly.Type.FlawFunction;
|
|
8
8
|
}
|
package/dist/Card/Stack.js
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { isly } from "isly";
|
|
2
2
|
export var Stack;
|
|
3
3
|
(function (Stack) {
|
|
4
|
-
Stack.stacks = [
|
|
4
|
+
Stack.stacks = [
|
|
5
|
+
"test-paxgiro",
|
|
6
|
+
"test-tpl-paxgiro",
|
|
7
|
+
"testUK-marqeta",
|
|
8
|
+
"testUK-tpl-marqeta",
|
|
9
|
+
"uk-mc-tpl-marqeta",
|
|
10
|
+
];
|
|
5
11
|
Stack.type = isly.string(Stack.stacks);
|
|
6
12
|
Stack.is = Stack.type.is;
|
|
7
13
|
Stack.flaw = Stack.type.flaw;
|
package/dist/Card/Stack.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Stack.js","sourceRoot":"../","sources":["Card/Stack.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,KAAK,
|
|
1
|
+
{"version":3,"file":"Stack.js","sourceRoot":"../","sources":["Card/Stack.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAI3B,MAAM,KAAW,KAAK,CAWrB;AAXD,WAAiB,KAAK;IACR,YAAM,GAAG;QACrB,cAAc;QACd,kBAAkB;QAClB,gBAAgB;QAChB,oBAAoB;QACpB,mBAAmB;KACV,CAAA;IACG,UAAI,GAAG,IAAI,CAAC,MAAM,CAAC,MAAA,MAAM,CAAC,CAAA;IAC1B,QAAE,GAAG,MAAA,IAAI,CAAC,EAAE,CAAA;IACZ,UAAI,GAAG,MAAA,IAAI,CAAC,IAAI,CAAA;AAC9B,CAAC,EAXgB,KAAK,KAAL,KAAK,QAWrB"}
|
|
@@ -27,7 +27,9 @@ export var Creatable;
|
|
|
27
27
|
Creatable.is = Creatable.type.is;
|
|
28
28
|
Creatable.flaw = Creatable.type.flaw;
|
|
29
29
|
function fromRefund(account, entry, stack) {
|
|
30
|
-
const [currency,
|
|
30
|
+
const [currency, entryAmount] = entry.amount;
|
|
31
|
+
const operationAmount = Math.abs(entryAmount);
|
|
32
|
+
const operationFee = Math.abs(entry.fee.other[currency] ?? 0);
|
|
31
33
|
return {
|
|
32
34
|
account: account,
|
|
33
35
|
currency,
|
|
@@ -35,22 +37,22 @@ export var Creatable;
|
|
|
35
37
|
changes: {
|
|
36
38
|
actual: {
|
|
37
39
|
type: "add",
|
|
38
|
-
amount: isoly.Currency.add(currency,
|
|
40
|
+
amount: isoly.Currency.add(currency, operationAmount, operationFee),
|
|
39
41
|
status: "pending",
|
|
40
42
|
},
|
|
41
43
|
incomingReserved: {
|
|
42
44
|
type: "add",
|
|
43
|
-
amount: isoly.Currency.add(currency,
|
|
45
|
+
amount: isoly.Currency.add(currency, operationAmount, operationFee),
|
|
44
46
|
status: "pending",
|
|
45
47
|
},
|
|
46
48
|
[`fee_${stack}_${entry.batch}`]: {
|
|
47
49
|
type: "subtract",
|
|
48
|
-
amount:
|
|
50
|
+
amount: operationFee,
|
|
49
51
|
status: "pending",
|
|
50
52
|
},
|
|
51
53
|
[`settle_${stack}_${entry.batch}`]: {
|
|
52
54
|
type: "subtract",
|
|
53
|
-
amount:
|
|
55
|
+
amount: operationAmount,
|
|
54
56
|
status: "pending",
|
|
55
57
|
},
|
|
56
58
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Operation/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAG3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AASnC,MAAM,KAAW,SAAS,
|
|
1
|
+
{"version":3,"file":"Creatable.js","sourceRoot":"../","sources":["Operation/Creatable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAA;AAClC,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAG3B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AASnC,MAAM,KAAW,SAAS,CA0DzB;AA1DD,WAAiB,SAAS;IACZ,eAAK,GAAG;QACpB,UAAU;QACV,kBAAkB;QAClB,UAAU;QACV,kBAAkB;QAClB,eAAe;QACf,SAAS;QACT,QAAQ;QACR,QAAQ;QACR,QAAQ;QACR,QAAQ;QACR,SAAS;QACT,SAAS;KACA,CAAA;IAEG,cAAI,GAAG,IAAI,CAAC,MAAM,CAAY;QAC1C,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC;QACjE,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC1D,OAAO,EAAE,OAAO,CAAC,IAAI;QACrB,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,UAAA,KAAK,CAAC;KACxB,CAAC,CAAA;IACW,YAAE,GAAG,UAAA,IAAI,CAAC,EAAE,CAAA;IACZ,cAAI,GAAG,UAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,UAAU,CAAC,OAAe,EAAE,KAAwC,EAAE,KAAiB;QAGtG,MAAM,CAAC,QAAQ,EAAE,WAAW,CAAC,GAAG,KAAK,CAAC,MAAM,CAAA;QAC5C,MAAM,eAAe,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,CAAA;QAC7C,MAAM,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAA;QAC7D,OAAO;YACN,OAAO,EAAE,OAAO;YAChB,QAAQ;YACR,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE;gBACR,MAAM,EAAE;oBACP,IAAI,EAAE,KAAK;oBACX,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,eAAe,EAAE,YAAY,CAAC;oBACnE,MAAM,EAAE,SAAS;iBACjB;gBACD,gBAAgB,EAAE;oBACjB,IAAI,EAAE,KAAK;oBACX,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,eAAe,EAAE,YAAY,CAAC;oBACnE,MAAM,EAAE,SAAS;iBACjB;gBACD,CAAC,OAAO,KAAK,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;oBAChC,IAAI,EAAE,UAAmB;oBACzB,MAAM,EAAE,YAAY;oBACpB,MAAM,EAAE,SAAkB;iBAC1B;gBACD,CAAC,UAAU,KAAK,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC,EAAE;oBACnC,IAAI,EAAE,UAAmB;oBACzB,MAAM,EAAE,eAAe;oBACvB,MAAM,EAAE,SAAkB;iBAC1B;aACD;SACD,CAAA;IACF,CAAC;IAjCe,oBAAU,aAiCzB,CAAA;AACF,CAAC,EA1DgB,SAAS,KAAT,SAAS,QA0DzB"}
|
|
@@ -17,7 +17,7 @@ export var Incoming;
|
|
|
17
17
|
return {
|
|
18
18
|
account: card,
|
|
19
19
|
currency,
|
|
20
|
-
amount: isoly.Currency.add(currency, amount, entry.fee.other[currency] ?? 0),
|
|
20
|
+
amount: isoly.Currency.add(currency, -amount, -(entry.fee.other[currency] ?? 0)),
|
|
21
21
|
posted: isoly.DateTime.now(),
|
|
22
22
|
counterpart: { type: "card", merchant: entry.merchant, acquirer: entry.acquirer },
|
|
23
23
|
description: "Refund transaction.",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAO/D,MAAM,KAAW,QAAQ,CAmBxB;AAnBD,WAAiB,QAAQ;IACX,aAAI,GAAG,oBAAoB,CAAC,IAAI,CAAC,MAAM,CAAW;QAC9D,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;QACrC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,oBAAoB,CAAC,IAAI,CAAC,QAAQ,EAAE;KAC/C,CAAC,CAAA;IACW,WAAE,GAAG,SAAA,IAAI,CAAC,EAAE,CAAA;IACZ,aAAI,GAAG,SAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,UAAU,CAAC,KAAwC,EAAE,IAAe;QACnF,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAA;QACvC,OAAO;YACN,OAAO,EAAE,IAAI;YACb,QAAQ;YACR,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"Incoming.js","sourceRoot":"../","sources":["Transaction/Incoming.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,OAAO,CAAA;AAC7B,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAC3B,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC/D,OAAO,EAAE,SAAS,IAAI,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAO/D,MAAM,KAAW,QAAQ,CAmBxB;AAnBD,WAAiB,QAAQ;IACX,aAAI,GAAG,oBAAoB,CAAC,IAAI,CAAC,MAAM,CAAW;QAC9D,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,EAAE,CAAC;QACrC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,SAAS,EAAE,oBAAoB,CAAC,IAAI,CAAC,QAAQ,EAAE;KAC/C,CAAC,CAAA;IACW,WAAE,GAAG,SAAA,IAAI,CAAC,EAAE,CAAA;IACZ,aAAI,GAAG,SAAA,IAAI,CAAC,IAAI,CAAA;IAC7B,SAAgB,UAAU,CAAC,KAAwC,EAAE,IAAe;QACnF,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAA;QACvC,OAAO;YACN,OAAO,EAAE,IAAI;YACb,QAAQ;YACR,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC;YAChF,MAAM,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE;YAC5B,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE;YACjF,WAAW,EAAE,qBAAqB;SAClC,CAAA;IACF,CAAC;IAVe,mBAAU,aAUzB,CAAA;AACF,CAAC,EAnBgB,QAAQ,KAAR,QAAQ,QAmBxB"}
|